port.cc revision 13782:9f6654f478e2
19814Sandreas.hansson@arm.com/*
22292SN/A * Copyright (c) 2011-2012,2015,2017 ARM Limited
310333Smitch.hayenga@arm.com * All rights reserved
410239Sbinhpham@cs.rutgers.edu *
57597Sminkyu.jeong@arm.com * The license below extends only to copyright in the software and shall
67597Sminkyu.jeong@arm.com * not be construed as granting a license to any other intellectual
77597Sminkyu.jeong@arm.com * property including but not limited to intellectual property relating
87597Sminkyu.jeong@arm.com * to a hardware implementation of the functionality of the software
97597Sminkyu.jeong@arm.com * licensed hereunder.  You may use the software subject to the license
107597Sminkyu.jeong@arm.com * terms below provided that you ensure that this notice is replicated
117597Sminkyu.jeong@arm.com * unmodified and in its entirety in all distributions of the software,
127597Sminkyu.jeong@arm.com * modified or unmodified, in source code or in binary form.
137597Sminkyu.jeong@arm.com *
147597Sminkyu.jeong@arm.com * Copyright (c) 2002-2005 The Regents of The University of Michigan
157597Sminkyu.jeong@arm.com * All rights reserved.
162292SN/A *
172292SN/A * Redistribution and use in source and binary forms, with or without
182292SN/A * modification, are permitted provided that the following conditions are
192292SN/A * met: redistributions of source code must retain the above copyright
202292SN/A * notice, this list of conditions and the following disclaimer;
212292SN/A * redistributions in binary form must reproduce the above copyright
222292SN/A * notice, this list of conditions and the following disclaimer in the
232292SN/A * documentation and/or other materials provided with the distribution;
242292SN/A * neither the name of the copyright holders nor the names of its
252292SN/A * contributors may be used to endorse or promote products derived from
262292SN/A * this software without specific prior written permission.
272292SN/A *
282292SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
292292SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
302292SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
312292SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
322292SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
332292SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
342292SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
352292SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
362292SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
372292SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
382292SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
392292SN/A *
402292SN/A * Authors: Ron Dreslinski
412689Sktlim@umich.edu *          Andreas Hansson
422689Sktlim@umich.edu *          William Wang
432689Sktlim@umich.edu */
442292SN/A
452292SN/A/**
469944Smatt.horsnell@ARM.com * @file
479944Smatt.horsnell@ARM.com * Port Object Declaration.
489944Smatt.horsnell@ARM.com */
498591Sgblack@eecs.umich.edu
503326Sktlim@umich.edu#include "sim/port.hh"
518229Snate@binkert.org
526658Snate@binkert.orgPort::Port(const std::string& _name, PortID _id) :
538887Sgeoffrey.blake@arm.com    portName(_name), id(_id), _connected(false)
542907Sktlim@umich.edu{}
552292SN/APort::~Port() {}
568232Snate@binkert.org