fetch1.hh (10259:ebb376f73dd2) fetch1.hh (10379:c00f6d7e2681)
1/*
2 * Copyright (c) 2013-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

--- 149 unchanged lines hidden (view full) ---

158
159 /** Interface for ITLB responses. We can handle delay, so don't
160 * do anything */
161 void markDelayed() { }
162
163 /** Interface for ITLB responses. Populates self and then passes
164 * the request on to the ports' handleTLBResponse member
165 * function */
1/*
2 * Copyright (c) 2013-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

--- 149 unchanged lines hidden (view full) ---

158
159 /** Interface for ITLB responses. We can handle delay, so don't
160 * do anything */
161 void markDelayed() { }
162
163 /** Interface for ITLB responses. Populates self and then passes
164 * the request on to the ports' handleTLBResponse member
165 * function */
166 void finish(Fault fault_, RequestPtr request_, ThreadContext *tc,
167 BaseTLB::Mode mode);
166 void finish(const Fault &fault_, RequestPtr request_,
167 ThreadContext *tc, BaseTLB::Mode mode);
168
169 public:
170 FetchRequest(Fetch1 &fetch_, InstId id_, TheISA::PCState pc_) :
171 SenderState(),
172 fetch(fetch_),
173 state(NotIssued),
174 id(id_),
175 packet(NULL),

--- 206 unchanged lines hidden ---
168
169 public:
170 FetchRequest(Fetch1 &fetch_, InstId id_, TheISA::PCState pc_) :
171 SenderState(),
172 fetch(fetch_),
173 state(NotIssued),
174 id(id_),
175 packet(NULL),

--- 206 unchanged lines hidden ---