base.cc (4762:c94e103c83ad) base.cc (4776:8c8407243a2c)
1/*
2 * Copyright (c) 2002-2005 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;

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

412 curStaticInst = curMacroStaticInst->
413 fetchMicroop(thread->readMicroPC());
414 }
415
416 //If we decoded an instruction this "tick", record information about it.
417 if(curStaticInst)
418 {
419#if TRACING_ON
1/*
2 * Copyright (c) 2002-2005 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;

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

412 curStaticInst = curMacroStaticInst->
413 fetchMicroop(thread->readMicroPC());
414 }
415
416 //If we decoded an instruction this "tick", record information about it.
417 if(curStaticInst)
418 {
419#if TRACING_ON
420 traceData = Trace::getInstRecord(curTick, tc, curStaticInst,
420 traceData = tracer->getInstRecord(curTick, tc, curStaticInst,
421 thread->readPC());
422
423 DPRINTF(Decode,"Decode: Decoded %s instruction: 0x%x\n",
424 curStaticInst->getName(), curStaticInst->machInst);
425#endif // TRACING_ON
426
427#if FULL_SYSTEM
428 thread->setInst(inst);

--- 83 unchanged lines hidden ---
421 thread->readPC());
422
423 DPRINTF(Decode,"Decode: Decoded %s instruction: 0x%x\n",
424 curStaticInst->getName(), curStaticInst->machInst);
425#endif // TRACING_ON
426
427#if FULL_SYSTEM
428 thread->setInst(inst);

--- 83 unchanged lines hidden ---