fetch.hh (13429:a1e199fd8122) | fetch.hh (13453:4a7a060ea26e) |
---|---|
1/* 2 * Copyright (c) 2010-2012, 2014 ARM Limited 3 * All rights reserved 4 * 5 * The license below extends only to copyright in the software and shall 6 * not be construed as granting a license to any other intellectual 7 * property including but not limited to intellectual property relating 8 * to a hardware implementation of the functionality of the software --- 107 unchanged lines hidden (view full) --- 116 { 117 private: 118 DefaultFetch<Impl> *fetch; 119 Fault fault; 120 RequestPtr req; 121 122 public: 123 FinishTranslationEvent(DefaultFetch<Impl> *_fetch) | 1/* 2 * Copyright (c) 2010-2012, 2014 ARM Limited 3 * All rights reserved 4 * 5 * The license below extends only to copyright in the software and shall 6 * not be construed as granting a license to any other intellectual 7 * property including but not limited to intellectual property relating 8 * to a hardware implementation of the functionality of the software --- 107 unchanged lines hidden (view full) --- 116 { 117 private: 118 DefaultFetch<Impl> *fetch; 119 Fault fault; 120 RequestPtr req; 121 122 public: 123 FinishTranslationEvent(DefaultFetch<Impl> *_fetch) |
124 : fetch(_fetch) | 124 : fetch(_fetch), req(nullptr) |
125 {} 126 127 void setFault(Fault _fault) 128 { 129 fault = _fault; 130 } 131 132 void setReq(const RequestPtr &_req) --- 446 unchanged lines hidden --- | 125 {} 126 127 void setFault(Fault _fault) 128 { 129 fault = _fault; 130 } 131 132 void setReq(const RequestPtr &_req) --- 446 unchanged lines hidden --- |