port.cc (8948:e95ee70f876c) port.cc (8949:3fa1ee293096)
1/*
2 * Copyright (c) 2012 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

115{
116 return _slavePort->recvFunctional(pkt);
117}
118
119void
120MasterPort::printAddr(Addr a)
121{
122 Request req(a, 1, 0, Request::funcMasterId);
1/*
2 * Copyright (c) 2012 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

115{
116 return _slavePort->recvFunctional(pkt);
117}
118
119void
120MasterPort::printAddr(Addr a)
121{
122 Request req(a, 1, 0, Request::funcMasterId);
123 Packet pkt(&req, MemCmd::PrintReq, Packet::Broadcast);
123 Packet pkt(&req, MemCmd::PrintReq);
124 Packet::PrintReqState prs(std::cerr);
125 pkt.senderState = &prs;
126
127 sendFunctional(&pkt);
128}
129
130/**
131 * Slave port

--- 50 unchanged lines hidden ---
124 Packet::PrintReqState prs(std::cerr);
125 pkt.senderState = &prs;
126
127 sendFunctional(&pkt);
128}
129
130/**
131 * Slave port

--- 50 unchanged lines hidden ---