Deleted Added
sdiff udiff text old ( 12065:e3e51756dfef ) new ( 12395:322bb93e5f06 )
full compact
1/*
2 * Copyright (c) 2017 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

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

355 panic("Incorrect packet type received from memory controller!");
356 }
357
358 getMemoryQueue()->enqueue(msg, clockEdge(), cyclesToTicks(Cycles(1)));
359 delete pkt->req;
360 delete pkt;
361}
362
363MachineID
364AbstractController::mapAddressToMachine(Addr addr, MachineType mtype) const
365{
366 NodeID node = m_net_ptr->addressToNodeID(addr, mtype);
367 MachineID mach = {mtype, node};
368 return mach;
369}
370

--- 16 unchanged lines hidden ---