simple_mem.cc (11793:ef606668d247) simple_mem.cc (11800:54436a1784dc)
1/*
2 * Copyright (c) 2010-2013, 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

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

40 * Authors: Ron Dreslinski
41 * Ali Saidi
42 * Andreas Hansson
43 */
44
45#include "mem/simple_mem.hh"
46
47#include "base/random.hh"
1/*
2 * Copyright (c) 2010-2013, 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

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

40 * Authors: Ron Dreslinski
41 * Ali Saidi
42 * Andreas Hansson
43 */
44
45#include "mem/simple_mem.hh"
46
47#include "base/random.hh"
48#include "base/trace.hh"
48#include "debug/Drain.hh"
49
50using namespace std;
51
52SimpleMemory::SimpleMemory(const SimpleMemoryParams* p) :
53 AbstractMemory(p),
54 port(name() + ".port", *this), latency(p->latency),
55 latency_var(p->latency_var), bandwidth(p->bandwidth), isBusy(false),

--- 241 unchanged lines hidden ---
49#include "debug/Drain.hh"
50
51using namespace std;
52
53SimpleMemory::SimpleMemory(const SimpleMemoryParams* p) :
54 AbstractMemory(p),
55 port(name() + ".port", *this), latency(p->latency),
56 latency_var(p->latency_var), bandwidth(p->bandwidth), isBusy(false),

--- 241 unchanged lines hidden ---