Deleted Added
sdiff udiff text old ( 9516:8bb2deb544a5 ) new ( 9527:68154bc0e0ea )
full compact
1/*
2 * Copyright (c) 2010-2012 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

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

55#include "cpu/base.hh"
56#include "cpu/exetrace.hh"
57#include "cpu/timebuf.hh"
58#include "debug/Activity.hh"
59#include "debug/Commit.hh"
60#include "debug/CommitRate.hh"
61#include "debug/Drain.hh"
62#include "debug/ExecFaulting.hh"
63#include "params/DerivO3CPU.hh"
64#include "sim/faults.hh"
65#include "sim/full_system.hh"
66
67using namespace std;
68
69template <class Impl>
70DefaultCommit<Impl>::TrapEvent::TrapEvent(DefaultCommit<Impl> *_commit,

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

1262 renameMap[tid]->setEntry(head_inst->flattenedDestRegIdx(i),
1263 head_inst->renamedDestRegIdx(i));
1264 }
1265
1266 // Finally clear the head ROB entry.
1267 rob->retireHead(tid);
1268
1269#if TRACING_ON
1270 head_inst->commitTick = curTick() - head_inst->fetchTick;
1271#endif
1272
1273 // If this was a store, record it for this cycle.
1274 if (head_inst->isStore())
1275 committedStores[tid] = true;
1276
1277 // Return true to indicate that we have committed an instruction.
1278 return true;

--- 259 unchanged lines hidden ---