isa.hh (9425:a24092160ec7) isa.hh (9461:67a6ba6604c8)
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;

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

152 void updateCPU(BaseCPU *cpu);
153
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:
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;

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

152 void updateCPU(BaseCPU *cpu);
153
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
160 const Params *params() const;
161
162 ISA(Params *p);
163
164 int
165 flattenIntIndex(int reg)
166 {
167 return reg;
168 }
169
170 int
171 flattenFloatIndex(int reg)
172 {
173 return reg;
174 }
175 };
176}
177
178#endif
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