SeriesRequestGenerator.cc (8655:e4001326a5ba) SeriesRequestGenerator.cc (8832:247fee427324)
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
3 * Copyright (c) 2009-2010 Advanced Micro Devices, Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

54
55 RubyDirectedTester::CpuPort* port =
56 safe_cast<RubyDirectedTester::CpuPort*>(m_directed_tester->
57 getCpuPort(m_active_node));
58
59 Request::Flags flags;
60
61 // For simplicity, requests are assumed to be 1 byte-sized
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
3 * Copyright (c) 2009-2010 Advanced Micro Devices, Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

54
55 RubyDirectedTester::CpuPort* port =
56 safe_cast<RubyDirectedTester::CpuPort*>(m_directed_tester->
57 getCpuPort(m_active_node));
58
59 Request::Flags flags;
60
61 // For simplicity, requests are assumed to be 1 byte-sized
62 Request *req = new Request(m_address, 1, flags);
62 Request *req = new Request(m_address, 1, flags, masterId);
63
64 Packet::Command cmd;
65 if (m_issue_writes) {
66 cmd = MemCmd::WriteReq;
67 } else {
68 cmd = MemCmd::ReadReq;
69 }
70 PacketPtr pkt = new Packet(req, cmd, m_active_node);

--- 45 unchanged lines hidden ---
63
64 Packet::Command cmd;
65 if (m_issue_writes) {
66 cmd = MemCmd::WriteReq;
67 } else {
68 cmd = MemCmd::ReadReq;
69 }
70 PacketPtr pkt = new Packet(req, cmd, m_active_node);

--- 45 unchanged lines hidden ---