isa.hh (9461:67a6ba6604c8) isa.hh (9553:2e1e5364dae3)
1/*
2 * Copyright (c) 2009 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;

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

154 // Keep a List of CPU Events that need to be deallocated
155 std::queue<CP0Event*> cp0EventRemoveList;
156
157 static std::string miscRegNames[NumMiscRegs];
158
159 public:
160 void startup(ThreadContext *tc) {}
161
1/*
2 * Copyright (c) 2009 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;

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

154 // Keep a List of CPU Events that need to be deallocated
155 std::queue<CP0Event*> cp0EventRemoveList;
156
157 static std::string miscRegNames[NumMiscRegs];
158
159 public:
160 void startup(ThreadContext *tc) {}
161
162 /// Explicitly import the otherwise hidden startup
163 using SimObject::startup;
164
162 const Params *params() const;
163
164 ISA(Params *p);
165
166 int
167 flattenIntIndex(int reg)
168 {
169 return reg;
170 }
171
172 int
173 flattenFloatIndex(int reg)
174 {
175 return reg;
176 }
177 };
178}
179
180#endif
165 const Params *params() const;
166
167 ISA(Params *p);
168
169 int
170 flattenIntIndex(int reg)
171 {
172 return reg;
173 }
174
175 int
176 flattenFloatIndex(int reg)
177 {
178 return reg;
179 }
180 };
181}
182
183#endif