projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
523420b
)
Put the InternalProcReg type into the MiscRegFile, which is the only place it's used.
author
Gabe Black
<gblack@eecs.umich.edu>
Fri, 10 Mar 2006 21:47:00 +0000
(16:47 -0500)
committer
Gabe Black
<gblack@eecs.umich.edu>
Fri, 10 Mar 2006 21:47:00 +0000
(16:47 -0500)
--HG--
extra : convert_revision :
e5a942c2fbf951dc13a5aee9d2ac85982ff3e9c9
arch/alpha/isa_traits.hh
patch
|
blob
|
history
diff --git
a/arch/alpha/isa_traits.hh
b/arch/alpha/isa_traits.hh
index ab2722f83d795c2eacda39abead92f332b14fd64..787546e438998b70af3c3205aec6e8152de337cf 100644
(file)
--- a/
arch/alpha/isa_traits.hh
+++ b/
arch/alpha/isa_traits.hh
@@
-185,12
+185,14
@@
extern const int reg_redir[NumIntRegs];
#if FULL_SYSTEM
protected:
+ typedef uint64_t InternalProcReg;
+
InternalProcReg ipr[NumInternalProcRegs]; // Internal processor regs
private:
-
Mis
cReg readIpr(int idx, Fault &fault, ExecContext *xc);
+
InternalPro
cReg readIpr(int idx, Fault &fault, ExecContext *xc);
- Fault setIpr(int idx,
uint64_t
val, ExecContext *xc);
+ Fault setIpr(int idx,
InternalProcReg
val, ExecContext *xc);
void copyIprs(ExecContext *xc);
#endif