summaryrefslogtreecommitdiff
path: root/src/arch/arm/isa/formats/branch.isa
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2010-06-02 12:58:02 -0500
committerGabe Black <gblack@eecs.umich.edu>2010-06-02 12:58:02 -0500
commitbf903ec9a111bab252744696dc83ecf8d8922505 (patch)
tree83cff9539121f760ea814ec323c14bf306ec21ab /src/arch/arm/isa/formats/branch.isa
parent36ca0658a412671ee18cde40b8d264e319fb4710 (diff)
downloadgem5-bf903ec9a111bab252744696dc83ecf8d8922505.tar.xz
ARM: Get rid of the unused Jump format.
Diffstat (limited to 'src/arch/arm/isa/formats/branch.isa')
-rw-r--r--src/arch/arm/isa/formats/branch.isa21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/arch/arm/isa/formats/branch.isa b/src/arch/arm/isa/formats/branch.isa
index 5f1b541ff..efe91f039 100644
--- a/src/arch/arm/isa/formats/branch.isa
+++ b/src/arch/arm/isa/formats/branch.isa
@@ -108,24 +108,3 @@ def format BranchExchange(code,*opt_flags) {{
exec_output = BasicExecute.subst(iop)
}};
-def format Jump(code, *opt_flags) {{
- #Build Instruction Flags
- #Use Link Flag to Add Link Code
- inst_flags = ('IsIndirectControl', 'IsUncondControl')
- for x in opt_flags:
- if x == 'Link':
- code = 'LR = NPC;\n' + code
- elif x == 'ClearHazards':
- code += '/* Code Needed to Clear Execute & Inst Hazards */\n'
- else:
- inst_flags += (x, )
-
- iop = InstObjParams(name, Name, 'Jump', code, inst_flags)
- header_output = BasicDeclare.subst(iop)
- decoder_output = BasicConstructor.subst(iop)
- decode_block = BasicDecode.subst(iop)
- exec_output = BasicExecute.subst(iop)
- #exec_output = PredOpExecute.subst(iop)
-}};
-
-