ExtMaster.cc (11158:a84eecaaa866) ExtMaster.cc (11315:10647f5d0f7f)
1// Copyright (c) 2015 ARM Limited
2// All rights reserved.
3//
4// The license below extends only to copyright in the software and shall
5// not be construed as granting a license to any other intellectual
6// property including but not limited to intellectual property relating
7// to a hardware implementation of the functionality of the software
8// licensed hereunder. You may use the software subject to the license

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

39//
40// Copyright (c) 2009-2014, Sandia Corporation
41// All rights reserved.
42//
43// For license information, see the LICENSE file in the current directory.
44
45#include "gem5.hh"
46
1// Copyright (c) 2015 ARM Limited
2// All rights reserved.
3//
4// The license below extends only to copyright in the software and shall
5// not be construed as granting a license to any other intellectual
6// property including but not limited to intellectual property relating
7// to a hardware implementation of the functionality of the software
8// licensed hereunder. You may use the software subject to the license

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

39//
40// Copyright (c) 2009-2014, Sandia Corporation
41// All rights reserved.
42//
43// For license information, see the LICENSE file in the current directory.
44
45#include "gem5.hh"
46
47#ifdef fatal // gem5 sets this
48#undef fatal
49#endif
50
47#include <sst_config.h>
48
49#include <mem/packet.hh>
50
51#include <sst/core/component.h>
52#include <sst/core/params.h>
53#include <sst/core/link.h>
54#include <sst/elements/memHierarchy/memNIC.h>
55
51#include <sst_config.h>
52
53#include <mem/packet.hh>
54
55#include <sst/core/component.h>
56#include <sst/core/params.h>
57#include <sst/core/link.h>
58#include <sst/elements/memHierarchy/memNIC.h>
59
56#ifdef fatal // gem5 sets this
57#undef fatal
58#endif
59
60using namespace SST;
61using namespace SST::gem5;
62using namespace SST::MemHierarchy;
63
64ExtMaster::ExtMaster(gem5Component *g, Output &o, ::ExternalMaster& p,
65 std::string &n) :
66 Port(n, p), out(o), port(p), simPhase(CONSTRUCTION),
67 gem5(g), name(n)

--- 173 unchanged lines hidden ---
60using namespace SST;
61using namespace SST::gem5;
62using namespace SST::MemHierarchy;
63
64ExtMaster::ExtMaster(gem5Component *g, Output &o, ::ExternalMaster& p,
65 std::string &n) :
66 Port(n, p), out(o), port(p), simPhase(CONSTRUCTION),
67 gem5(g), name(n)

--- 173 unchanged lines hidden ---