free_list.cc (8229:78bf55f23338) free_list.cc (8232:b28d06a175be)
1/*
2 * Copyright (c) 2004-2005 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;

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

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/trace.hh"
32#include "cpu/o3/free_list.hh"
1/*
2 * Copyright (c) 2004-2005 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;

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

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/trace.hh"
32#include "cpu/o3/free_list.hh"
33#include "debug/FreeList.hh"
33
34SimpleFreeList::SimpleFreeList(ThreadID activeThreads,
35 unsigned _numLogicalIntRegs,
36 unsigned _numPhysicalIntRegs,
37 unsigned _numLogicalFloatRegs,
38 unsigned _numPhysicalFloatRegs)
39 : numLogicalIntRegs(_numLogicalIntRegs),
40 numPhysicalIntRegs(_numPhysicalIntRegs),

--- 31 unchanged lines hidden ---
34
35SimpleFreeList::SimpleFreeList(ThreadID activeThreads,
36 unsigned _numLogicalIntRegs,
37 unsigned _numPhysicalIntRegs,
38 unsigned _numLogicalFloatRegs,
39 unsigned _numPhysicalFloatRegs)
40 : numLogicalIntRegs(_numLogicalIntRegs),
41 numPhysicalIntRegs(_numPhysicalIntRegs),

--- 31 unchanged lines hidden ---