external_master.cc (10478:7135f938ff28) external_master.cc (11793:ef606668d247)
1/*
2 * Copyright (c) 2012-2014 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

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

33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 *
37 * Authors: Andrew Bardsley
38 * Curtis Dunham
39 */
40
1/*
2 * Copyright (c) 2012-2014 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

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

33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 *
37 * Authors: Andrew Bardsley
38 * Curtis Dunham
39 */
40
41#include "mem/external_master.hh"
42
41#include <cctype>
42#include <iomanip>
43
44#include "debug/ExternalPort.hh"
43#include <cctype>
44#include <iomanip>
45
46#include "debug/ExternalPort.hh"
45#include "mem/external_master.hh"
46
47std::map<std::string, ExternalMaster::Handler *>
48 ExternalMaster::portHandlers;
49
50ExternalMaster::ExternalMaster(ExternalMasterParams *params) :
51 MemObject(params),
52 externalPort(NULL),
53 portName(params->name + ".port"),

--- 54 unchanged lines hidden ---
47
48std::map<std::string, ExternalMaster::Handler *>
49 ExternalMaster::portHandlers;
50
51ExternalMaster::ExternalMaster(ExternalMasterParams *params) :
52 MemObject(params),
53 externalPort(NULL),
54 portName(params->name + ".port"),

--- 54 unchanged lines hidden ---