base.cc (7725:00ea9430643b) base.cc (7823:dac01f14f20f)
1/*
2 * Copyright (c) 2010 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

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

325 //Read the next micro op from the macro op
326 curStaticInst = curMacroStaticInst->fetchMicroop(pcState.microPC());
327 }
328
329 //If we decoded an instruction this "tick", record information about it.
330 if(curStaticInst)
331 {
332#if TRACING_ON
1/*
2 * Copyright (c) 2010 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

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

325 //Read the next micro op from the macro op
326 curStaticInst = curMacroStaticInst->fetchMicroop(pcState.microPC());
327 }
328
329 //If we decoded an instruction this "tick", record information about it.
330 if(curStaticInst)
331 {
332#if TRACING_ON
333 traceData = tracer->getInstRecord(curTick, tc,
333 traceData = tracer->getInstRecord(curTick(), tc,
334 curStaticInst, thread->pcState(), curMacroStaticInst);
335
336 DPRINTF(Decode,"Decode: Decoded %s instruction: 0x%x\n",
337 curStaticInst->getName(), curStaticInst->machInst);
338#endif // TRACING_ON
339 }
340}
341

--- 94 unchanged lines hidden ---
334 curStaticInst, thread->pcState(), curMacroStaticInst);
335
336 DPRINTF(Decode,"Decode: Decoded %s instruction: 0x%x\n",
337 curStaticInst->getName(), curStaticInst->machInst);
338#endif // TRACING_ON
339 }
340}
341

--- 94 unchanged lines hidden ---