Sequencer.cc (9465:4ae4f3f4b870) Sequencer.cc (9466:23e13ad7091f)
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;

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

652 }
653
654 // If valid, copy the pc to the ruby request
655 Addr pc = 0;
656 if (pkt->req->hasPC()) {
657 pc = pkt->req->getPC();
658 }
659
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;

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

652 }
653
654 // If valid, copy the pc to the ruby request
655 Addr pc = 0;
656 if (pkt->req->hasPC()) {
657 pc = pkt->req->getPC();
658 }
659
660 RubyRequest *msg = new RubyRequest(pkt->getAddr(),
660 RubyRequest *msg = new RubyRequest(curCycle(), pkt->getAddr(),
661 pkt->getPtr<uint8_t>(true),
662 pkt->getSize(), pc, secondary_type,
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(),

--- 64 unchanged lines hidden ---
661 pkt->getPtr<uint8_t>(true),
662 pkt->getSize(), pc, secondary_type,
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(),

--- 64 unchanged lines hidden ---