ldstop.isa (5359:8c6ff200e4c1) ldstop.isa (5727:8b9aaeac5bab)
1// Copyright (c) 2008 The Regents of The University of Michigan
2// All rights reserved.
3//
4// Redistribution and use in source and binary forms, with or without
5// modification, are permitted provided that the following conditions are
6// met: redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer;
8// redistributions in binary form must reproduce the above copyright

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

189 %(CPU_exec_context)s * xc,
190 Trace::InstRecord * traceData) const
191 {
192 Fault fault = NoFault;
193
194 %(op_decl)s;
195 %(op_rd)s;
196
1// Copyright (c) 2008 The Regents of The University of Michigan
2// All rights reserved.
3//
4// Redistribution and use in source and binary forms, with or without
5// modification, are permitted provided that the following conditions are
6// met: redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer;
8// redistributions in binary form must reproduce the above copyright

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

189 %(CPU_exec_context)s * xc,
190 Trace::InstRecord * traceData) const
191 {
192 Fault fault = NoFault;
193
194 %(op_decl)s;
195 %(op_rd)s;
196
197 Mem = pkt->get<typeof(Mem)>();
197 Mem = get(pkt);
198
199 %(code)s;
200
201 if(fault == NoFault)
202 {
203 %(op_wb)s;
204 }
205

--- 312 unchanged lines hidden ---
198
199 %(code)s;
200
201 if(fault == NoFault)
202 {
203 %(op_wb)s;
204 }
205

--- 312 unchanged lines hidden ---