mem.isa (10196:be0e1724eb39) mem.isa (11303:f694764d656d)
1// -*- mode:c++ -*-
2
3// Copyright (c) 2007 MIPS Technologies, Inc.
4// All rights reserved.
5//
6// Redistribution and use in source and binary forms, with or without
7// modification, are permitted provided that the following conditions are
8// met: redistributions of source code must retain the above copyright

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

248 return fault;
249 }
250
251 %(op_src_decl)s;
252 %(op_rd)s;
253 %(ea_code)s;
254
255 if (fault == NoFault) {
1// -*- mode:c++ -*-
2
3// Copyright (c) 2007 MIPS Technologies, Inc.
4// All rights reserved.
5//
6// Redistribution and use in source and binary forms, with or without
7// modification, are permitted provided that the following conditions are
8// met: redistributions of source code must retain the above copyright

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

248 return fault;
249 }
250
251 %(op_src_decl)s;
252 %(op_rd)s;
253 %(ea_code)s;
254
255 if (fault == NoFault) {
256 fault = readMemTiming(xc, traceData, EA, Mem, memAccessFlags);
256 fault = initiateMemRead(xc, traceData, EA, Mem, memAccessFlags);
257 }
258
259 return fault;
260 }
261}};
262
263def template LoadCompleteAcc {{
264 Fault %(class_name)s::completeAcc(Packet *pkt,

--- 337 unchanged lines hidden ---
257 }
258
259 return fault;
260 }
261}};
262
263def template LoadCompleteAcc {{
264 Fault %(class_name)s::completeAcc(Packet *pkt,

--- 337 unchanged lines hidden ---