Sequencer.cc (9467:8da5ee073b92) Sequencer.cc (9499:b03b556a8fbb)
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

663 RubyAccessMode_Supervisor, pkt,
664 PrefetchBit_No, proc_id);
665
666 DPRINTFR(ProtocolTrace, "%15s %3s %10s%20s %6s>%-6s %s %s\n",
667 curTick(), m_version, "Seq", "Begin", "", "",
668 msg->getPhysicalAddress(),
669 RubyRequestType_to_string(secondary_type));
670
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

663 RubyAccessMode_Supervisor, pkt,
664 PrefetchBit_No, proc_id);
665
666 DPRINTFR(ProtocolTrace, "%15s %3s %10s%20s %6s>%-6s %s %s\n",
667 curTick(), m_version, "Seq", "Begin", "", "",
668 msg->getPhysicalAddress(),
669 RubyRequestType_to_string(secondary_type));
670
671 Time latency = 0; // initialzed to an null value
671 Cycles latency(0); // initialzed to an null value
672
673 if (secondary_type == RubyRequestType_IFETCH)
674 latency = m_instCache_ptr->getLatency();
675 else
676 latency = m_dataCache_ptr->getLatency();
677
678 // Send the message to the cache controller
679 assert(latency > 0);

--- 53 unchanged lines hidden ---
672
673 if (secondary_type == RubyRequestType_IFETCH)
674 latency = m_instCache_ptr->getLatency();
675 else
676 latency = m_dataCache_ptr->getLatency();
677
678 // Send the message to the cache controller
679 assert(latency > 0);

--- 53 unchanged lines hidden ---