lsq_impl.hh (2689:dbf969c18a65) lsq_impl.hh (2698:d5f35d41e017)
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;

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

131{
132 iewStage = iew_ptr;
133
134 for (int tid=0; tid < numThreads; tid++) {
135 thread[tid].setIEW(iew_ptr);
136 }
137}
138
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;

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

131{
132 iewStage = iew_ptr;
133
134 for (int tid=0; tid < numThreads; tid++) {
135 thread[tid].setIEW(iew_ptr);
136 }
137}
138
139#if 0
140template<class Impl>
141void
142LSQ<Impl>::setPageTable(PageTable *pt_ptr)
143{
144 for (int tid=0; tid < numThreads; tid++) {
145 thread[tid].setPageTable(pt_ptr);
146 }
147}
148#endif
149
150template <class Impl>
151void
152LSQ<Impl>::switchOut()
153{
154 for (int tid = 0; tid < numThreads; tid++) {
155 thread[tid].switchOut();
156 }
157}

--- 383 unchanged lines hidden ---
139template <class Impl>
140void
141LSQ<Impl>::switchOut()
142{
143 for (int tid = 0; tid < numThreads; tid++) {
144 thread[tid].switchOut();
145 }
146}

--- 383 unchanged lines hidden ---