diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-03-16 13:58:50 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-03-16 13:58:50 -0500 |
commit | 558cc7f775dc404e4152212b5c6459ad9f4bb269 (patch) | |
tree | 5007156780781c8aee15344ea2348428733a5682 /arch/alpha | |
parent | 67a1b7a61b42abb9be2fb075ec0d4cc2f6414926 (diff) | |
download | gem5-558cc7f775dc404e4152212b5c6459ad9f4bb269.tar.xz |
Fixups towards compiling.
arch/alpha/types.hh:
Moved the DependenceTags enum from types to constants.
arch/sparc/faults.cc:
arch/sparc/faults.hh:
Corrected a misspelling of PriviledgeOpcode and PrivilegedAction.
arch/sparc/isa/formats.isa:
Fixups towards compiling. Added a few additional instruction formats.
--HG--
extra : convert_revision : 4c5506877b71b8a5c8c45db41192cf759cdac374
Diffstat (limited to 'arch/alpha')
-rw-r--r-- | arch/alpha/types.hh | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/arch/alpha/types.hh b/arch/alpha/types.hh index 3cd93c6b0..d4cb482d8 100644 --- a/arch/alpha/types.hh +++ b/arch/alpha/types.hh @@ -38,19 +38,6 @@ namespace AlphaISA typedef uint64_t ExtMachInst; typedef uint8_t RegIndex; - // These enumerate all the registers for dependence tracking. - enum DependenceTags { - // 0..31 are the integer regs 0..31 - // 32..63 are the FP regs 0..31, i.e. use (reg + FP_Base_DepTag) - FP_Base_DepTag = 40, - Ctrl_Base_DepTag = 72, - Fpcr_DepTag = 72, // floating point control register - Uniq_DepTag = 73, - Lock_Flag_DepTag = 74, - Lock_Addr_DepTag = 75, - IPR_Base_DepTag = 76 - }; - typedef uint64_t IntReg; // floating point register file entry type |