lsq_impl.hh (5489:94a7bb476fca) lsq_impl.hh (5494:85c8d296c1cb)
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;

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

107 // Speculatively clear the retry Tid. This will get set again if
108 // the LSQUnit was unable to complete its access.
109 lsq->retryTid = -1;
110 lsq->thread[curr_retry_tid].recvRetry();
111}
112
113template <class Impl>
114LSQ<Impl>::LSQ(O3CPU *cpu_ptr, IEW *iew_ptr, Params *params)
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;

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

107 // Speculatively clear the retry Tid. This will get set again if
108 // the LSQUnit was unable to complete its access.
109 lsq->retryTid = -1;
110 lsq->thread[curr_retry_tid].recvRetry();
111}
112
113template <class Impl>
114LSQ<Impl>::LSQ(O3CPU *cpu_ptr, IEW *iew_ptr, Params *params)
115 : cpu(cpu_ptr), iewStage(iew_ptr), dcachePort(this, cpu_ptr),
115 : cpu(cpu_ptr), iewStage(iew_ptr), dcachePort(this),
116 LQEntries(params->LQEntries),
117 SQEntries(params->SQEntries),
118 numThreads(params->numberOfThreads),
119 retryTid(-1)
120{
121 dcachePort.snoopRangeSent = false;
122
123 //**********************************************/

--- 504 unchanged lines hidden ---
116 LQEntries(params->LQEntries),
117 SQEntries(params->SQEntries),
118 numThreads(params->numberOfThreads),
119 retryTid(-1)
120{
121 dcachePort.snoopRangeSent = false;
122
123 //**********************************************/

--- 504 unchanged lines hidden ---