cpu_impl.hh (7678:f19b6a3a8cec) cpu_impl.hh (7679:f26cc2c68b48)
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

204#if THE_ISA == ALPHA_ISA
205 curStaticInst = StaticInst::decode(makeExtMI(machInst,
206 thread->readPC()));
207#elif THE_ISA == SPARC_ISA
208 curStaticInst = StaticInst::decode(makeExtMI(machInst,
209 thread->getTC()));
210#endif
211
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

204#if THE_ISA == ALPHA_ISA
205 curStaticInst = StaticInst::decode(makeExtMI(machInst,
206 thread->readPC()));
207#elif THE_ISA == SPARC_ISA
208 curStaticInst = StaticInst::decode(makeExtMI(machInst,
209 thread->getTC()));
210#endif
211
212#if FULL_SYSTEM
213 thread->setInst(machInst);
214#endif // FULL_SYSTEM
215
216 fault = inst->getFault();
217 }
218
219 // Discard fetch's memReq.
220 delete memReq;
221 memReq = NULL;
222
223 // Either the instruction was a fault and we should process the fault,

--- 262 unchanged lines hidden ---
212 fault = inst->getFault();
213 }
214
215 // Discard fetch's memReq.
216 delete memReq;
217 memReq = NULL;
218
219 // Either the instruction was a fault and we should process the fault,

--- 262 unchanged lines hidden ---