From: Gabe Black Date: Tue, 17 Jul 2007 22:27:28 +0000 (-0700) Subject: Add symbols for each of the flags a microop could set and each condition it could... X-Git-Tag: m5_2.0_beta4~297^2~52 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bbf7163dd9a9c2a17cb8873f7620f2b17841ac26;p=gem5.git Add symbols for each of the flags a microop could set and each condition it could check. --HG-- extra : convert_revision : 1f542b8aadfd5146539cadef631b49d77f578472 --- diff --git a/src/arch/x86/isa/microasm.isa b/src/arch/x86/isa/microasm.isa index afe8ae64c..213468b0b 100644 --- a/src/arch/x86/isa/microasm.isa +++ b/src/arch/x86/isa/microasm.isa @@ -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 &&