projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8ecea59
)
X86: Get rid of BasicOperate format which wasn't used and referred to SparcStaticInst
author
Gabe Black
<gblack@eecs.umich.edu>
Wed, 10 Oct 2007 00:21:04 +0000
(17:21 -0700)
committer
Gabe Black
<gblack@eecs.umich.edu>
Wed, 10 Oct 2007 00:21:04 +0000
(17:21 -0700)
--HG--
extra : convert_revision :
5d2eac9a4b3f0fe5e3c3554d91acf8fee368c9dc
src/arch/x86/isa/formats/basic.isa
patch
|
blob
|
history
diff --git
a/src/arch/x86/isa/formats/basic.isa
b/src/arch/x86/isa/formats/basic.isa
index ea224d638448e363830d0b0e0b6fb19152cfca7f..7aea7085fdab01e5dd175a2afeb674261fb52aef 100644
(file)
--- a/
src/arch/x86/isa/formats/basic.isa
+++ b/
src/arch/x86/isa/formats/basic.isa
@@
-147,12
+147,3
@@
def template BasicDecode {{
def template BasicDecodeWithMnemonic {{
return new %(class_name)s("%(mnemonic)s", machInst);
}};
-
-// The most basic instruction format... used only for a few misc. insts
-def format BasicOperate(code, *flags) {{
- iop = InstObjParams(name, Name, 'SparcStaticInst', code, flags)
- header_output = BasicDeclare.subst(iop)
- decoder_output = BasicConstructor.subst(iop)
- decode_block = BasicDecode.subst(iop)
- exec_output = BasicExecute.subst(iop)
-}};