Deleted Added
sdiff udiff text old ( 6314:781969fbeca9 ) new ( 6315:c7295a4826d5 )
full compact
1/*
2 * Copyright (c) 2001-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;

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

94 typedef TheISA::MiscReg MiscReg;
95 typedef TheISA::FloatReg FloatReg;
96 typedef TheISA::FloatRegBits FloatRegBits;
97 public:
98 typedef ThreadContext::Status Status;
99
100 protected:
101 RegFile regs; // correct-path register context
102 TheISA::ISA isa; // one "instance" of the current ISA.
103
104 public:
105 // pointer to CPU associated with this SimpleThread
106 BaseCPU *cpu;
107
108 ProxyThreadContext<SimpleThread> *tc;
109

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

218 {
219 panic("instRead not implemented");
220 // return funcPhysMem->read(req, inst);
221 return NoFault;
222 }
223
224 void copyArchRegs(ThreadContext *tc);
225
226 void clearArchRegs() { regs.clear(); }
227
228 //
229 // New accessors for new decoder.
230 //
231 uint64_t readIntReg(int reg_idx)
232 {
233 int flatIndex = isa.flattenIntIndex(reg_idx);
234 return regs.readIntReg(flatIndex);
235 }
236
237 FloatReg readFloatReg(int reg_idx)
238 {
239 int flatIndex = isa.flattenFloatIndex(reg_idx);
240 return regs.readFloatReg(flatIndex);
241 }
242
243 FloatRegBits readFloatRegBits(int reg_idx)
244 {
245 int flatIndex = isa.flattenFloatIndex(reg_idx);
246 return regs.readFloatRegBits(flatIndex);
247 }
248
249 void setIntReg(int reg_idx, uint64_t val)
250 {
251 int flatIndex = isa.flattenIntIndex(reg_idx);
252 regs.setIntReg(flatIndex, val);
253 }
254
255 void setFloatReg(int reg_idx, FloatReg val)
256 {
257 int flatIndex = isa.flattenFloatIndex(reg_idx);
258 regs.setFloatReg(flatIndex, val);
259 }
260
261 void setFloatRegBits(int reg_idx, FloatRegBits val)
262 {
263 int flatIndex = isa.flattenFloatIndex(reg_idx);
264 regs.setFloatRegBits(flatIndex, val);
265 }
266
267 uint64_t readPC()
268 {
269 return regs.readPC();
270 }
271
272 void setPC(uint64_t val)

--- 102 unchanged lines hidden ---