71a72,76
> private:
>
> /** Descriptive name (for DPRINTF output) */
> const std::string portName;
>
73a79,91
> /**
> * Constructor.
> *
> * @param _name Port name for DPRINTF output. Should include name
> * of memory system object to which the port belongs.
> */
> Port(const std::string &_name)
> : portName(_name)
> { }
>
> /** Return port name (for DPRINTF). */
> const std::string &name() const { return portName; }
>
74a93
>
226a246,249
> FunctionalPort(const std::string &_name)
> : Port(_name)
> {}
>