base.cc (10693:c0979b2ebda5) base.cc (11486:f09bb73b3050)
1/*
2 * Copyright (c) 2013 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

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

41 * Ron Dreslinski
42 */
43
44/**
45 * @file
46 * Definitions of BaseTags.
47 */
48
1/*
2 * Copyright (c) 2013 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

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

41 * Ron Dreslinski
42 */
43
44/**
45 * @file
46 * Definitions of BaseTags.
47 */
48
49#include "cpu/smt.hh" //maxThreadsPerCPU
50#include "mem/cache/tags/base.hh"
49#include "mem/cache/tags/base.hh"
50
51#include "cpu/smt.hh" //maxThreadsPerCPU
51#include "mem/cache/base.hh"
52#include "sim/sim_exit.hh"
53
54using namespace std;
55
56BaseTags::BaseTags(const Params *p)
57 : ClockedObject(p), blkSize(p->block_size), size(p->size),
58 accessLatency(p->hit_latency), cache(nullptr), warmupBound(0),

--- 105 unchanged lines hidden ---
52#include "mem/cache/base.hh"
53#include "sim/sim_exit.hh"
54
55using namespace std;
56
57BaseTags::BaseTags(const Params *p)
58 : ClockedObject(p), blkSize(p->block_size), size(p->size),
59 accessLatency(p->hit_latency), cache(nullptr), warmupBound(0),

--- 105 unchanged lines hidden ---