diff options
author | Korey Sewell <ksewell@umich.edu> | 2006-02-22 03:33:35 -0500 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2006-02-22 03:33:35 -0500 |
commit | 54b47bc5ae7993558412de6c458727171b630594 (patch) | |
tree | affc1cb390f20d4637445c22cc43ab5158d2adb2 /cpu | |
parent | 37cd6695ebdf37d6806fbb8764cfef30dce4688f (diff) | |
download | gem5-54b47bc5ae7993558412de6c458727171b630594.tar.xz |
MIPS Compiles scons/MIPS_SE/arch/mips/decoder.do!!!!!!
arch/mips/faults.hh:
remove nonsense
arch/mips/isa/base.isa:
define R31
arch/mips/isa/bitfields.isa:
forgotten bitfields
arch/mips/isa/decoder.isa:
INT64 -> int64_t
arch/mips/isa/formats.isa:
fix comments
arch/mips/isa/formats/branch.isa:
Branch -> BranchLikely
RB -> RT
arch/mips/isa/formats/fp.isa:
Make FP ops generates
arch/mips/isa/formats/mem.isa:
RA,RB -> RS,RT
arch/mips/isa/formats/noop.isa:
Rc -> Rd
arch/mips/isa/formats/util.isa:
forgot brace and semicolon
arch/mips/isa/includes.isa:
remove unnecessary files
arch/mips/isa_traits.hh:
spacing
cpu/static_inst.hh:
add cond_delay_slot flag
--HG--
extra : convert_revision : 3bc7353b437f9a764e85cc462bed86c9d654eb37
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/static_inst.hh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpu/static_inst.hh b/cpu/static_inst.hh index 5106dcf06..db9e73714 100644 --- a/cpu/static_inst.hh +++ b/cpu/static_inst.hh @@ -109,6 +109,8 @@ class StaticInstBase : public RefCounted IsCall, ///< Subroutine call. IsReturn, ///< Subroutine return. + IsCondDelaySlot,///< Conditional Delay-Slot Instruction + IsThreadSync, ///< Thread synchronization operation. IsSerializing, ///< Serializes pipeline: won't execute until all |