store_set.cc (11793:ef606668d247) store_set.cc (12334:e0ab29a34764)
1/*
2 * Copyright (c) 2004-2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Kevin Lim
29 */
30
31#include "cpu/o3/store_set.hh"
32
33#include "base/intmath.hh"
1/*
2 * Copyright (c) 2004-2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Kevin Lim
29 */
30
31#include "cpu/o3/store_set.hh"
32
33#include "base/intmath.hh"
34#include "base/misc.hh"
34#include "base/logging.hh"
35#include "base/trace.hh"
36#include "debug/StoreSet.hh"
37
38StoreSet::StoreSet(uint64_t clear_period, int _SSIT_size, int _LFST_size)
39 : clearPeriod(clear_period), SSITSize(_SSIT_size), LFSTSize(_LFST_size)
40{
41 DPRINTF(StoreSet, "StoreSet: Creating store set object.\n");
42 DPRINTF(StoreSet, "StoreSet: SSIT size: %i, LFST size: %i.\n",

--- 326 unchanged lines hidden ---
35#include "base/trace.hh"
36#include "debug/StoreSet.hh"
37
38StoreSet::StoreSet(uint64_t clear_period, int _SSIT_size, int _LFST_size)
39 : clearPeriod(clear_period), SSITSize(_SSIT_size), LFSTSize(_LFST_size)
40{
41 DPRINTF(StoreSet, "StoreSet: Creating store set object.\n");
42 DPRINTF(StoreSet, "StoreSet: SSIT size: %i, LFST size: %i.\n",

--- 326 unchanged lines hidden ---