From bf903ec9a111bab252744696dc83ecf8d8922505 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Wed, 2 Jun 2010 12:58:02 -0500 Subject: ARM: Get rid of the unused Jump format. --- src/arch/arm/isa/formats/branch.isa | 21 --------------------- 1 file changed, 21 deletions(-) (limited to 'src/arch/arm/isa/formats') 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) -}}; - - -- cgit v1.2.3