Add symbols for each of the flags a microop could set and each condition it could...
authorGabe Black <gblack@eecs.umich.edu>
Tue, 17 Jul 2007 22:27:28 +0000 (15:27 -0700)
committerGabe Black <gblack@eecs.umich.edu>
Tue, 17 Jul 2007 22:27:28 +0000 (15:27 -0700)
--HG--
extra : convert_revision : 1f542b8aadfd5146539cadef631b49d77f578472

src/arch/x86/isa/microasm.isa

index afe8ae64cfb406e4655a9ce8bc06265f688fa105..213468b0bf6cfc63562f7742ff935115d5eb8f8d 100644 (file)
@@ -96,6 +96,19 @@ let {{
         assembler.symbols["r%s" % reg] = "INTREG_R%s" % reg.upper()
     assembler.symbols.update(symbols)
 
+    for flag in ('CF', 'PF', 'ECF', 'AF', 'EZF', 'ZF', 'SF', 'OF'):
+        assembler.symbols[flag] = flag + "Bit"
+
+    for cond in ('True', 'False', 'ECF', 'EZF', 'SZnZF',
+                 'MSTRZ', 'STRZ', 'MSTRC', 'STRZnZF',
+                 'OF', 'CF', 'ZF', 'CvZF',
+                 'SF', 'PF', 'SxOF', 'SxOvZF'):
+        assembler.symbols["C%s" % cond] = "ConditionTests::%s" % cond
+        assembler.symbols["nC%s" % cond] = "ConditionTests::Not%s" % cond
+
+    assembler.symbols["CTrue"] = "ConditionTests::True"
+    assembler.symbols["CFalse"] = "ConditionTests::False"
+
     # Code literal which forces a default 64 bit operand size in 64 bit mode.
     assembler.symbols["oszIn64Override"] = '''
     if (machInst.mode.submode == SixtyFourBitMode &&