ruby: remove calls to g_system_ptr->getTime()

This patch further removes calls to g_system_ptr->getTime() where ever other
clocked objects are available for providing current time.
This commit is contained in:
Nilay Vaish
2013-01-17 13:10:12 -06:00
parent 4526f33062
commit 5b6f972750
5 changed files with 10 additions and 12 deletions

View File

@@ -276,7 +276,7 @@ Check::initiateCheck()
}
void
Check::performCallback(NodeID proc, SubBlock* data)
Check::performCallback(NodeID proc, SubBlock* data, Time curTime)
{
Address address = data->getAddress();
@@ -312,8 +312,7 @@ Check::performCallback(NodeID proc, SubBlock* data)
"Time: %d\n",
proc, address, data, byte_number,
(int)m_value + byte_number,
(int)data->getByte(byte_number), *this,
g_system_ptr->getTime());
(int)data->getByte(byte_number), *this, curTime);
}
}
DPRINTF(RubyTest, "Action/check success\n");
@@ -327,8 +326,7 @@ Check::performCallback(NodeID proc, SubBlock* data)
} else {
panic("Unexpected TesterStatus: %s proc: %d data: %s m_status: %s "
"time: %d\n",
*this, proc, data, m_status, g_system_ptr->getTime());
"time: %d\n", *this, proc, data, m_status, curTime);
}
DPRINTF(RubyTest, "proc: %d, Address: 0x%x\n", proc,

View File

@@ -50,7 +50,7 @@ class Check
int _num_readers, RubyTester* _tester);
void initiate(); // Does Action or Check or nether
void performCallback(NodeID proc, SubBlock* data);
void performCallback(NodeID proc, SubBlock* data, Time curTime);
const Address& getAddress() { return m_address; }
void changeAddress(const Address& address);

View File

@@ -191,7 +191,7 @@ void
RubyTester::hitCallback(NodeID proc, SubBlock* data)
{
// Mark that we made progress
m_last_progress_vector[proc] = g_system_ptr->getTime();
m_last_progress_vector[proc] = curCycle();
DPRINTF(RubyTest, "completed request for proc: %d\n", proc);
DPRINTF(RubyTest, "addr: 0x%x, size: %d, data: ",
@@ -205,7 +205,7 @@ RubyTester::hitCallback(NodeID proc, SubBlock* data)
// back the data to make the check
Check* check_ptr = m_checkTable_ptr->getCheck(data->getAddress());
assert(check_ptr != NULL);
check_ptr->performCallback(proc, data);
check_ptr->performCallback(proc, data, curCycle());
}
void
@@ -229,7 +229,7 @@ void
RubyTester::checkForDeadlock()
{
int size = m_last_progress_vector.size();
Time current_time = g_system_ptr->getTime();
Time current_time = curCycle();
for (int processor = 0; processor < size; processor++) {
if ((current_time - m_last_progress_vector[processor]) >
m_deadlock_threshold) {