Sequencer.cc (8184:a8d64545cda6) Sequencer.cc (8188:20dbef14192d)
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;

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

666 amtype = RubyAccessMode_User;
667 break;
668 default:
669 assert(0);
670 }
671
672 Address line_addr(request.m_PhysicalAddress);
673 line_addr.makeLineAddress();
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;

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

666 amtype = RubyAccessMode_User;
667 break;
668 default:
669 assert(0);
670 }
671
672 Address line_addr(request.m_PhysicalAddress);
673 line_addr.makeLineAddress();
674 int proc_id = request.pkt->req->hasContextId() ?
675 request.pkt->req->contextId() : -1;
674 RubyRequest *msg = new RubyRequest(request.m_PhysicalAddress.getAddress(),
675 request.data, request.m_Size,
676 request.m_ProgramCounter.getAddress(),
677 ctype, amtype, request.pkt,
676 RubyRequest *msg = new RubyRequest(request.m_PhysicalAddress.getAddress(),
677 request.data, request.m_Size,
678 request.m_ProgramCounter.getAddress(),
679 ctype, amtype, request.pkt,
678 PrefetchBit_No, request.proc_id);
680 PrefetchBit_No, proc_id);
679
680 DPRINTFR(ProtocolTrace, "%7s %3s %10s%20s %6s>%-6s %s %s\n",
681 g_eventQueue_ptr->getTime(), m_version, "Seq", "Begin", "", "",
682 request.m_PhysicalAddress, RubyRequestType_to_string(request.m_Type));
683
684 Time latency = 0; // initialzed to an null value
685
686 if (request.m_Type == RubyRequestType_IFETCH)

--- 59 unchanged lines hidden ---
681
682 DPRINTFR(ProtocolTrace, "%7s %3s %10s%20s %6s>%-6s %s %s\n",
683 g_eventQueue_ptr->getTime(), m_version, "Seq", "Begin", "", "",
684 request.m_PhysicalAddress, RubyRequestType_to_string(request.m_Type));
685
686 Time latency = 0; // initialzed to an null value
687
688 if (request.m_Type == RubyRequestType_IFETCH)

--- 59 unchanged lines hidden ---