Sequencer.cc (7056:b66b558578bd) Sequencer.cc (7453:1a5db3dd0f62)
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;

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

531 amtype = AccessModeType_UserMode;
532 break;
533 default:
534 assert(0);
535 }
536
537 Address line_addr(request.paddr);
538 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;

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

531 amtype = AccessModeType_UserMode;
532 break;
533 default:
534 assert(0);
535 }
536
537 Address line_addr(request.paddr);
538 line_addr.makeLineAddress();
539 CacheMsg msg(line_addr, Address(request.paddr), ctype,
540 Address(request.pc), amtype, request.len, PrefetchBit_No,
541 request.proc_id);
539 CacheMsg *msg = new CacheMsg(line_addr, Address(request.paddr), ctype,
540 Address(request.pc), amtype, request.len, PrefetchBit_No,
541 request.proc_id);
542
543 if (Debug::getProtocolTrace()) {
544 g_system_ptr->getProfiler()->
545 profileTransition("Seq", m_version, Address(request.paddr),
546 "", "Begin", "",
547 RubyRequestType_to_string(request.type));
548 }
549

--- 53 unchanged lines hidden ---
542
543 if (Debug::getProtocolTrace()) {
544 g_system_ptr->getProfiler()->
545 profileTransition("Seq", m_version, Address(request.paddr),
546 "", "Begin", "",
547 RubyRequestType_to_string(request.type));
548 }
549

--- 53 unchanged lines hidden ---