port.cc (11321:02e930db812d) port.cc (11793:ef606668d247)
1/*
2 * Copyright (c) 2012,2015 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

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

41 * Andreas Hansson
42 * William Wang
43 */
44
45/**
46 * @file
47 * Port object definitions.
48 */
1/*
2 * Copyright (c) 2012,2015 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

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

41 * Andreas Hansson
42 * William Wang
43 */
44
45/**
46 * @file
47 * Port object definitions.
48 */
49#include "mem/port.hh"
50
49#include "base/trace.hh"
50#include "mem/mem_object.hh"
51#include "base/trace.hh"
52#include "mem/mem_object.hh"
51#include "mem/port.hh"
52
53Port::Port(const std::string &_name, MemObject& _owner, PortID _id)
54 : portName(_name), id(_id), owner(_owner)
55{
56}
57
58Port::~Port()
59{

--- 214 unchanged lines hidden ---
53
54Port::Port(const std::string &_name, MemObject& _owner, PortID _id)
55 : portName(_name), id(_id), owner(_owner)
56{
57}
58
59Port::~Port()
60{

--- 214 unchanged lines hidden ---