port.cc (13769:b8f532287e81) | port.cc (13771:10d990934f15) |
---|---|
1/* 2 * Copyright (c) 2012,2015,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 --- 37 unchanged lines hidden (view full) --- 46 * @file 47 * Port object definitions. 48 */ 49#include "mem/port.hh" 50 51#include "base/trace.hh" 52#include "mem/mem_object.hh" 53 | 1/* 2 * Copyright (c) 2012,2015,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 --- 37 unchanged lines hidden (view full) --- 46 * @file 47 * Port object definitions. 48 */ 49#include "mem/port.hh" 50 51#include "base/trace.hh" 52#include "mem/mem_object.hh" 53 |
54Port::Port(const std::string &_name, PortID _id) 55 : portName(_name), id(_id) 56{ 57} 58 59Port::~Port() 60{ 61} 62 | |
63BaseMasterPort::BaseMasterPort(const std::string &name, PortID _id) 64 : Port(name, _id), _baseSlavePort(NULL) 65{ 66} 67 68BaseMasterPort::~BaseMasterPort() 69{ 70} --- 211 unchanged lines hidden --- | 54BaseMasterPort::BaseMasterPort(const std::string &name, PortID _id) 55 : Port(name, _id), _baseSlavePort(NULL) 56{ 57} 58 59BaseMasterPort::~BaseMasterPort() 60{ 61} --- 211 unchanged lines hidden --- |