lsq_impl.hh (3014:b4309193255a) lsq_impl.hh (3125:febd811bccc6)
1/*
2 * Copyright (c) 2005-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;

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

162 //Initialize LSQs
163 for (int tid=0; tid < numThreads; tid++) {
164 thread[tid].regStats();
165 }
166}
167
168template<class Impl>
169void
1/*
2 * Copyright (c) 2005-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;

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

162 //Initialize LSQs
163 for (int tid=0; tid < numThreads; tid++) {
164 thread[tid].regStats();
165 }
166}
167
168template<class Impl>
169void
170LSQ<Impl>::regStats()
171{
172 //Initialize LSQs
173 for (int tid=0; tid < numThreads; tid++) {
174 thread[tid].regStats();
175 }
176}
177
178template<class Impl>
179void
170LSQ<Impl>::setActiveThreads(std::list<unsigned> *at_ptr)
171{
172 activeThreads = at_ptr;
173 assert(activeThreads != 0);
174}
175
176template<class Impl>
177void

--- 416 unchanged lines hidden ---
180LSQ<Impl>::setActiveThreads(std::list<unsigned> *at_ptr)
181{
182 activeThreads = at_ptr;
183 assert(activeThreads != 0);
184}
185
186template<class Impl>
187void

--- 416 unchanged lines hidden ---