ruby: clean up a few warnings

This commit is contained in:
Nathan Binkert 2009-05-11 10:38:45 -07:00
parent 8b9f70b9e4
commit e40b8e34c8
13 changed files with 11 additions and 12 deletions

View file

@ -294,7 +294,7 @@ void MessageBuffer::pop()
{ {
DEBUG_MSG(QUEUE_COMP,MedPrio,"pop from " + m_name); DEBUG_MSG(QUEUE_COMP,MedPrio,"pop from " + m_name);
assert(isReady()); assert(isReady());
Time ready_time = m_prio_heap.extractMin().m_time; m_prio_heap.extractMin();
// record previous size and time so the current buffer size isn't adjusted until next cycle // record previous size and time so the current buffer size isn't adjusted until next cycle
if (m_time_last_time_pop < g_eventQueue_ptr->getTime()) { if (m_time_last_time_pop < g_eventQueue_ptr->getTime()) {
m_size_at_cycle_start = m_size; m_size_at_cycle_start = m_size;

View file

@ -159,7 +159,7 @@ double SIM_reg_stat_energy(power_array_info *info, power_array *arr, double n_re
//crossbar //crossbar
double SIM_crossbar_stat_energy(power_crossbar *crsbar, double n_data) double SIM_crossbar_stat_energy(power_crossbar *crsbar, double n_data)
{ {
double Eavg = 0, Eatomic, Estatic; double Eavg = 0, Eatomic;
if (n_data > crsbar->n_out) { if (n_data > crsbar->n_out) {
n_data = crsbar->n_out; n_data = crsbar->n_out;

View file

@ -134,7 +134,6 @@ void PerfectSwitch::wakeup()
int highest_prio_vnet = m_virtual_networks-1; int highest_prio_vnet = m_virtual_networks-1;
int lowest_prio_vnet = 0; int lowest_prio_vnet = 0;
int decrementer = 1; int decrementer = 1;
bool schedule_wakeup = false;
NetworkMessage* net_msg_ptr = NULL; NetworkMessage* net_msg_ptr = NULL;
// invert priorities to avoid starvation seen in the component network // invert priorities to avoid starvation seen in the component network

View file

@ -57,7 +57,7 @@ static const int DEFAULT_BW_MULTIPLIER = 1; // Just to be consistent with above
// of the network. // of the network.
// Helper functions based on chapter 29 of Cormen et al. // Helper functions based on chapter 29 of Cormen et al.
static Matrix extend_shortest_path(const Matrix& current_dist, Matrix& latencies, Matrix& inter_switches); static void extend_shortest_path(Matrix& current_dist, Matrix& latencies, Matrix& inter_switches);
static Matrix shortest_path(const Matrix& weights, Matrix& latencies, Matrix& inter_switches); static Matrix shortest_path(const Matrix& weights, Matrix& latencies, Matrix& inter_switches);
static bool link_is_shortest_path_to_node(SwitchID src, SwitchID next, SwitchID final, const Matrix& weights, const Matrix& dist); static bool link_is_shortest_path_to_node(SwitchID src, SwitchID next, SwitchID final, const Matrix& weights, const Matrix& dist);
static NetDest shortest_path_to_node(SwitchID src, SwitchID next, const Matrix& weights, const Matrix& dist); static NetDest shortest_path_to_node(SwitchID src, SwitchID next, const Matrix& weights, const Matrix& dist);

View file

@ -707,7 +707,7 @@ void Profiler::profileConflictingRequests(const Address& addr)
assert(addr == line_address(addr)); assert(addr == line_address(addr));
Time last_time = m_ruby_start; Time last_time = m_ruby_start;
if (m_conflicting_map_ptr->exist(addr)) { if (m_conflicting_map_ptr->exist(addr)) {
Time last_time = m_conflicting_map_ptr->lookup(addr); last_time = m_conflicting_map_ptr->lookup(addr);
} }
Time current_time = g_eventQueue_ptr->getTime(); Time current_time = g_eventQueue_ptr->getTime();
assert (current_time - last_time > 0); assert (current_time - last_time > 0);

View file

@ -141,6 +141,7 @@ void profileGetS(const Address& datablock, const Address& PC, const Set& owner,
void profileOverflow(const Address & addr, MachineID mach) void profileOverflow(const Address & addr, MachineID mach)
{ {
#if 0
if(mach.type == MACHINETYPE_L1CACHE_ENUM){ if(mach.type == MACHINETYPE_L1CACHE_ENUM){
// for L1 overflows // for L1 overflows
int proc_num = L1CacheMachIDToProcessorNum(mach); int proc_num = L1CacheMachIDToProcessorNum(mach);
@ -156,6 +157,7 @@ void profileOverflow(const Address & addr, MachineID mach)
// g_system_ptr->getChip(chip_num)->m_L1Cache_xact_mgr_vec[p]->profileOverflow(addr, false); // g_system_ptr->getChip(chip_num)->m_L1Cache_xact_mgr_vec[p]->profileOverflow(addr, false);
} }
} }
#endif
} }

View file

@ -258,7 +258,6 @@ void MemoryControl::enqueueMemRef (MemoryNode& memRef) {
Time arrival_time = memRef.m_time; Time arrival_time = memRef.m_time;
uint64 at = arrival_time; uint64 at = arrival_time;
bool is_mem_read = memRef.m_is_mem_read; bool is_mem_read = memRef.m_is_mem_read;
bool dirtyWB = memRef.m_is_dirty_wb;
physical_address_t addr = memRef.m_addr; physical_address_t addr = memRef.m_addr;
int bank = getBank(addr); int bank = getBank(addr);
if (m_debug) { if (m_debug) {

View file

@ -181,7 +181,6 @@ int NodePersistentTable::countStarvingForAddress(const Address& address) const
int NodePersistentTable::countReadStarvingForAddress(const Address& address) const int NodePersistentTable::countReadStarvingForAddress(const Address& address) const
{ {
int count = 0;
if (m_map_ptr->exist(address)) { if (m_map_ptr->exist(address)) {
NodePersistentTableEntry& entry = m_map_ptr->lookup(address); NodePersistentTableEntry& entry = m_map_ptr->lookup(address);
return (entry.m_starving.count() - entry.m_request_to_write.count()); return (entry.m_starving.count() - entry.m_request_to_write.count());

View file

@ -182,7 +182,6 @@ int PersistentTable::countStarvingForAddress(const Address& address) const
int PersistentTable::countReadStarvingForAddress(const Address& address) const int PersistentTable::countReadStarvingForAddress(const Address& address) const
{ {
int count = 0;
if (m_map_ptr->exist(address)) { if (m_map_ptr->exist(address)) {
PersistentTableEntry& entry = m_map_ptr->lookup(address); PersistentTableEntry& entry = m_map_ptr->lookup(address);
return (entry.m_starving.count() - entry.m_request_to_write.count()); return (entry.m_starving.count() - entry.m_request_to_write.count());

View file

@ -210,7 +210,7 @@ void StoreBuffer::callBack(const Address& addr, DataBlock& data)
assert(line_address(m_pending_address) == addr); assert(line_address(m_pending_address) == addr);
assert(line_address(peek().m_subblock.getAddress()) == addr); assert(line_address(peek().m_subblock.getAddress()) == addr);
CacheRequestType type = peek().m_type; CacheRequestType type = peek().m_type;
int threadID = peek().m_thread; //int threadID = peek().m_thread;
assert((type == CacheRequestType_ST) || (type == CacheRequestType_ATOMIC)); assert((type == CacheRequestType_ST) || (type == CacheRequestType_ATOMIC));
m_pending = false; m_pending = false;

View file

@ -112,8 +112,6 @@ void DetermInvGenerator::performCallback(NodeID proc, SubBlock& data)
if (m_status == DetermInvGeneratorStatus_Load_Pending) { if (m_status == DetermInvGeneratorStatus_Load_Pending) {
m_driver.recordLoadLatency(g_eventQueue_ptr->getTime() - m_last_transition); m_driver.recordLoadLatency(g_eventQueue_ptr->getTime() - m_last_transition);
NodeID firstByte = data.readByte(); // dummy read
m_driver.loadCompleted(m_node, data.getAddress()); m_driver.loadCompleted(m_node, data.getAddress());
if (!m_driver.isStoreReady(m_node, m_address)) { // if we don't have to store, we are done for this transaction if (!m_driver.isStoreReady(m_node, m_address)) { // if we don't have to store, we are done for this transaction

View file

@ -253,7 +253,9 @@ void DeterministicDriver::checkForDeadlock()
for (int processor=0; processor<size; processor++) { for (int processor=0; processor<size; processor++) {
if ((current_time - m_last_progress_vector[processor]) > g_DEADLOCK_THRESHOLD) { if ((current_time - m_last_progress_vector[processor]) > g_DEADLOCK_THRESHOLD) {
WARN_EXPR(processor); WARN_EXPR(processor);
#ifndef NDEBUG
Sequencer* seq_ptr = g_system_ptr->getChip(processor/RubyConfig::numberOfProcsPerChip())->getSequencer(processor%RubyConfig::numberOfProcsPerChip()); Sequencer* seq_ptr = g_system_ptr->getChip(processor/RubyConfig::numberOfProcsPerChip())->getSequencer(processor%RubyConfig::numberOfProcsPerChip());
#endif
assert(seq_ptr != NULL); assert(seq_ptr != NULL);
// if (seq_ptr->isRequestPending()) { // if (seq_ptr->isRequestPending()) {
// WARN_EXPR(seq_ptr->pendingAddress()); // WARN_EXPR(seq_ptr->pendingAddress());

View file

@ -175,7 +175,6 @@ Address SyntheticDriver::pickAddress(NodeID node)
Address addr; Address addr;
// FIXME - make this a parameter of the workload // FIXME - make this a parameter of the workload
bool done = false;
int lock_number = 0; int lock_number = 0;
int counter = 0; int counter = 0;
while (1) { while (1) {
@ -241,7 +240,9 @@ void SyntheticDriver::checkForDeadlock()
for (int processor=0; processor<size; processor++) { for (int processor=0; processor<size; processor++) {
if ((current_time - m_last_progress_vector[processor]) > g_DEADLOCK_THRESHOLD) { if ((current_time - m_last_progress_vector[processor]) > g_DEADLOCK_THRESHOLD) {
WARN_EXPR(processor); WARN_EXPR(processor);
#ifndef NDEBUG
Sequencer* seq_ptr = g_system_ptr->getChip(processor/RubyConfig::numberOfProcsPerChip())->getSequencer(processor%RubyConfig::numberOfProcsPerChip()); Sequencer* seq_ptr = g_system_ptr->getChip(processor/RubyConfig::numberOfProcsPerChip())->getSequencer(processor%RubyConfig::numberOfProcsPerChip());
#endif
assert(seq_ptr != NULL); assert(seq_ptr != NULL);
// if (seq_ptr->isRequestPending()) { // if (seq_ptr->isRequestPending()) {
// WARN_EXPR(seq_ptr->pendingAddress()); // WARN_EXPR(seq_ptr->pendingAddress());