summaryrefslogtreecommitdiff
path: root/src/arch/x86/isa/insts/general_purpose/input_output
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2008-10-12 15:33:17 -0700
committerGabe Black <gblack@eecs.umich.edu>2008-10-12 15:33:17 -0700
commit77c0e1d1102af4c023bcd4609022b1600cadfea5 (patch)
tree7050d67d8a3aceaedd2695dcfbe2e38580ee7d5a /src/arch/x86/isa/insts/general_purpose/input_output
parent8384ff7d6c4460a966aec3b65a0af13e71bd76a2 (diff)
downloadgem5-77c0e1d1102af4c023bcd4609022b1600cadfea5.tar.xz
X86: Create a SeqOp class of microops and make Br one of them.
Diffstat (limited to 'src/arch/x86/isa/insts/general_purpose/input_output')
-rw-r--r--src/arch/x86/isa/insts/general_purpose/input_output/string_io.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/arch/x86/isa/insts/general_purpose/input_output/string_io.py b/src/arch/x86/isa/insts/general_purpose/input_output/string_io.py
index 29b722d66..9d1d4e724 100644
--- a/src/arch/x86/isa/insts/general_purpose/input_output/string_io.py
+++ b/src/arch/x86/isa/insts/general_purpose/input_output/string_io.py
@@ -71,7 +71,7 @@ def macroop INS_M_R {
def macroop INS_E_M_R {
and t0, rcx, rcx, flags=(EZF,), dataSize=asz
- bri t0, label("end"), flags=(CEZF,)
+ br label("end"), flags=(CEZF,)
# Find the constant we need to either add or subtract from rdi
ruflag t0, 10
movi t3, t3, dsz, flags=(CEZF,), dataSize=asz
@@ -86,7 +86,7 @@ topOfLoop:
subi rcx, rcx, 1, flags=(EZF,), dataSize=asz
add rdi, rdi, t3, dataSize=asz
- bri t0, label("topOfLoop"), flags=(nCEZF,)
+ br label("topOfLoop"), flags=(nCEZF,)
end:
fault "NoFault"
};
@@ -108,7 +108,7 @@ def macroop OUTS_R_M {
def macroop OUTS_E_R_M {
and t0, rcx, rcx, flags=(EZF,), dataSize=asz
- bri t0, label("end"), flags=(CEZF,)
+ br label("end"), flags=(CEZF,)
# Find the constant we need to either add or subtract from rdi
ruflag t0, 10
movi t3, t3, dsz, flags=(CEZF,), dataSize=asz
@@ -123,7 +123,7 @@ topOfLoop:
subi rcx, rcx, 1, flags=(EZF,), dataSize=asz
add rsi, rsi, t3, dataSize=asz
- bri t0, label("topOfLoop"), flags=(nCEZF,)
+ br label("topOfLoop"), flags=(nCEZF,)
end:
fault "NoFault"
};