base.hh (10994:51ff41f6a4a5) base.hh (11001:80f018934c3a)
1/*
2 * Copyright (c) 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

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

32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
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: Andreas Sandberg
38 */
39
1/*
2 * Copyright (c) 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

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

32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
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: Andreas Sandberg
38 */
39
40#ifndef __MEM_PROBES_STACK_BASE_HH__
41#define __MEM_PROBES_STACK_BASE_HH__
40#ifndef __MEM_PROBES_BASE_HH__
41#define __MEM_PROBES_BASE_HH__
42
43#include <memory>
44#include <vector>
45
46#include "mem/packet.hh"
47#include "sim/probe/probe.hh"
48#include "sim/sim_object.hh"
49

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

89
90 protected:
91 BaseMemProbe &parent;
92 };
93
94 std::vector<std::unique_ptr<PacketListener>> listeners;
95};
96
42
43#include <memory>
44#include <vector>
45
46#include "mem/packet.hh"
47#include "sim/probe/probe.hh"
48#include "sim/sim_object.hh"
49

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

89
90 protected:
91 BaseMemProbe &parent;
92 };
93
94 std::vector<std::unique_ptr<PacketListener>> listeners;
95};
96
97#endif // __MEM_PROBES_STACK_BASE_HH__
97#endif // __MEM_PROBES_BASE_HH__