commit_impl.hh (8890:9cf2327b7f5d) commit_impl.hh (9046:a1104cc13db2)
1/*
2 * Copyright (c) 2010-2011 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

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

1239#if TRACING_ON
1240 // Print info needed by the pipeline activity viewer.
1241 DPRINTFR(O3PipeView, "O3PipeView:fetch:%llu:0x%08llx:%d:%llu:%s\n",
1242 head_inst->fetchTick,
1243 head_inst->instAddr(),
1244 head_inst->microPC(),
1245 head_inst->seqNum,
1246 head_inst->staticInst->disassemble(head_inst->instAddr()));
1/*
2 * Copyright (c) 2010-2011 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

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

1239#if TRACING_ON
1240 // Print info needed by the pipeline activity viewer.
1241 DPRINTFR(O3PipeView, "O3PipeView:fetch:%llu:0x%08llx:%d:%llu:%s\n",
1242 head_inst->fetchTick,
1243 head_inst->instAddr(),
1244 head_inst->microPC(),
1245 head_inst->seqNum,
1246 head_inst->staticInst->disassemble(head_inst->instAddr()));
1247 DPRINTFR(O3PipeView, "O3PipeView:decode:%llu\n", head_inst->decodeTick);
1248 DPRINTFR(O3PipeView, "O3PipeView:rename:%llu\n", head_inst->renameTick);
1249 DPRINTFR(O3PipeView, "O3PipeView:dispatch:%llu\n", head_inst->dispatchTick);
1250 DPRINTFR(O3PipeView, "O3PipeView:issue:%llu\n", head_inst->issueTick);
1251 DPRINTFR(O3PipeView, "O3PipeView:complete:%llu\n", head_inst->completeTick);
1247 DPRINTFR(O3PipeView, "O3PipeView:decode:%llu\n", head_inst->fetchTick + head_inst->decodeTick);
1248 DPRINTFR(O3PipeView, "O3PipeView:rename:%llu\n", head_inst->fetchTick + head_inst->renameTick);
1249 DPRINTFR(O3PipeView, "O3PipeView:dispatch:%llu\n", head_inst->fetchTick + head_inst->dispatchTick);
1250 DPRINTFR(O3PipeView, "O3PipeView:issue:%llu\n", head_inst->fetchTick + head_inst->issueTick);
1251 DPRINTFR(O3PipeView, "O3PipeView:complete:%llu\n", head_inst->fetchTick + head_inst->completeTick);
1252 DPRINTFR(O3PipeView, "O3PipeView:retire:%llu\n", curTick());
1253#endif
1254
1255 // If this was a store, record it for this cycle.
1256 if (head_inst->isStore())
1257 committedStores[tid] = true;
1258
1259 // Return true to indicate that we have committed an instruction.

--- 254 unchanged lines hidden ---
1252 DPRINTFR(O3PipeView, "O3PipeView:retire:%llu\n", curTick());
1253#endif
1254
1255 // If this was a store, record it for this cycle.
1256 if (head_inst->isStore())
1257 committedStores[tid] = true;
1258
1259 // Return true to indicate that we have committed an instruction.

--- 254 unchanged lines hidden ---