diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2010-06-02 12:58:02 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2010-06-02 12:58:02 -0500 |
commit | bf903ec9a111bab252744696dc83ecf8d8922505 (patch) | |
tree | 83cff9539121f760ea814ec323c14bf306ec21ab /src/arch/arm/isa/formats | |
parent | 36ca0658a412671ee18cde40b8d264e319fb4710 (diff) | |
download | gem5-bf903ec9a111bab252744696dc83ecf8d8922505.tar.xz |
ARM: Get rid of the unused Jump format.
Diffstat (limited to 'src/arch/arm/isa/formats')
-rw-r--r-- | src/arch/arm/isa/formats/branch.isa | 21 |
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) -}}; - - |