timing.hh (11147:cc8d6e99cf46) timing.hh (11148:1bc3d93c7eaa)
1/*
2 * Copyright (c) 2012-2013,2015 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

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

127 finish(const Fault &fault, RequestPtr req, ThreadContext *tc,
128 BaseTLB::Mode mode)
129 {
130 cpu->sendFetch(fault, req, tc);
131 }
132 };
133 FetchTranslation fetchTranslation;
134
1/*
2 * Copyright (c) 2012-2013,2015 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

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

127 finish(const Fault &fault, RequestPtr req, ThreadContext *tc,
128 BaseTLB::Mode mode)
129 {
130 cpu->sendFetch(fault, req, tc);
131 }
132 };
133 FetchTranslation fetchTranslation;
134
135 void threadSnoop(PacketPtr pkt, ThreadID sender);
135 void sendData(RequestPtr req, uint8_t *data, uint64_t *res, bool read);
136 void sendSplitData(RequestPtr req1, RequestPtr req2, RequestPtr req,
137 uint8_t *data, bool read);
138
139 void translationFault(const Fault &fault);
140
141 PacketPtr buildPacket(RequestPtr req, bool read);
142 void buildSplitPacket(PacketPtr &pkt1, PacketPtr &pkt2,

--- 219 unchanged lines hidden ---
136 void sendData(RequestPtr req, uint8_t *data, uint64_t *res, bool read);
137 void sendSplitData(RequestPtr req1, RequestPtr req2, RequestPtr req,
138 uint8_t *data, bool read);
139
140 void translationFault(const Fault &fault);
141
142 PacketPtr buildPacket(RequestPtr req, bool read);
143 void buildSplitPacket(PacketPtr &pkt1, PacketPtr &pkt2,

--- 219 unchanged lines hidden ---