base_set_assoc.cc (11055:54071fd5c397) base_set_assoc.cc (11486:f09bb73b3050)
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

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

40 * Authors: Erik Hallnor
41 */
42
43/**
44 * @file
45 * Definitions of a base set associative tag store.
46 */
47
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

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

40 * Authors: Erik Hallnor
41 */
42
43/**
44 * @file
45 * Definitions of a base set associative tag store.
46 */
47
48#include "mem/cache/tags/base_set_assoc.hh"
49
48#include <string>
49
50#include "base/intmath.hh"
50#include <string>
51
52#include "base/intmath.hh"
51#include "mem/cache/tags/base_set_assoc.hh"
52#include "sim/core.hh"
53
54using namespace std;
55
56BaseSetAssoc::BaseSetAssoc(const Params *p)
57 :BaseTags(p), assoc(p->assoc), allocAssoc(p->assoc),
58 numSets(p->size / (p->block_size * p->assoc)),
59 sequentialAccess(p->sequential_access)

--- 139 unchanged lines hidden ---
53#include "sim/core.hh"
54
55using namespace std;
56
57BaseSetAssoc::BaseSetAssoc(const Params *p)
58 :BaseTags(p), assoc(p->assoc), allocAssoc(p->assoc),
59 numSets(p->size / (p->block_size * p->assoc)),
60 sequentialAccess(p->sequential_access)

--- 139 unchanged lines hidden ---