store_set.cc (2674:6d4afef73a20) store_set.cc (2678:1f86b91dc3bb)
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;

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

24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Kevin Lim
29 */
30
31#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;

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

24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Kevin Lim
29 */
30
31#include "base/intmath.hh"
32#include "base/misc.hh"
32#include "base/trace.hh"
33#include "cpu/o3/store_set.hh"
34
35StoreSet::StoreSet(int _SSIT_size, int _LFST_size)
36 : SSITSize(_SSIT_size), LFSTSize(_LFST_size)
37{
38 DPRINTF(StoreSet, "StoreSet: Creating store set object.\n");
39 DPRINTF(StoreSet, "StoreSet: SSIT size: %i, LFST size: %i.\n",

--- 308 unchanged lines hidden ---
33#include "base/trace.hh"
34#include "cpu/o3/store_set.hh"
35
36StoreSet::StoreSet(int _SSIT_size, int _LFST_size)
37 : SSITSize(_SSIT_size), LFSTSize(_LFST_size)
38{
39 DPRINTF(StoreSet, "StoreSet: Creating store set object.\n");
40 DPRINTF(StoreSet, "StoreSet: SSIT size: %i, LFST size: %i.\n",

--- 308 unchanged lines hidden ---