mem_checker_monitor.cc (11793:ef606668d247) mem_checker_monitor.cc (12637:bfc3cb9c7e6c)
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

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

42#include "mem/mem_checker_monitor.hh"
43
44#include <memory>
45
46#include "base/output.hh"
47#include "base/trace.hh"
48#include "debug/MemCheckerMonitor.hh"
49
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

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

42#include "mem/mem_checker_monitor.hh"
43
44#include <memory>
45
46#include "base/output.hh"
47#include "base/trace.hh"
48#include "debug/MemCheckerMonitor.hh"
49
50using namespace std;
51
52MemCheckerMonitor::MemCheckerMonitor(Params* params)
53 : MemObject(params),
54 masterPort(name() + "-master", *this),
55 slavePort(name() + "-slave", *this),
56 warnOnly(params->warn_only),
57 memchecker(params->memchecker)
58{}
59

--- 316 unchanged lines hidden ---
50MemCheckerMonitor::MemCheckerMonitor(Params* params)
51 : MemObject(params),
52 masterPort(name() + "-master", *this),
53 slavePort(name() + "-slave", *this),
54 warnOnly(params->warn_only),
55 memchecker(params->memchecker)
56{}
57

--- 316 unchanged lines hidden ---