lsq_unit_impl.hh (5336:c7e21f4e5a2e) lsq_unit_impl.hh (5529:9ae69b9cd7fd)
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;

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

107 : loads(0), stores(0), storesToWB(0), stalled(false),
108 isStoreBlocked(false), isLoadBlocked(false),
109 loadBlockedHandled(false)
110{
111}
112
113template<class Impl>
114void
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;

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

107 : loads(0), stores(0), storesToWB(0), stalled(false),
108 isStoreBlocked(false), isLoadBlocked(false),
109 loadBlockedHandled(false)
110{
111}
112
113template<class Impl>
114void
115LSQUnit<Impl>::init(O3CPU *cpu_ptr, IEW *iew_ptr, Params *params, LSQ *lsq_ptr,
116 unsigned maxLQEntries, unsigned maxSQEntries, unsigned id)
115LSQUnit<Impl>::init(O3CPU *cpu_ptr, IEW *iew_ptr, DerivO3CPUParams *params,
116 LSQ *lsq_ptr, unsigned maxLQEntries, unsigned maxSQEntries,
117 unsigned id)
117{
118 cpu = cpu_ptr;
119 iewStage = iew_ptr;
120
121 DPRINTF(LSQUnit, "Creating LSQUnit%i object.\n",id);
122
123 switchedOut = false;
124

--- 890 unchanged lines hidden ---
118{
119 cpu = cpu_ptr;
120 iewStage = iew_ptr;
121
122 DPRINTF(LSQUnit, "Creating LSQUnit%i object.\n",id);
123
124 switchedOut = false;
125

--- 890 unchanged lines hidden ---