From: Gabe Black Date: Mon, 23 Aug 2010 16:44:19 +0000 (-0700) Subject: X86: Add a .serializing directive that makes a macroop serializing. X-Git-Tag: stable_2012_02_02~874 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=69fc2af00600ced942d81dba082d9780e5325c9e;p=gem5.git X86: Add a .serializing directive that makes a macroop serializing. This directive really just tells the macroop to set IsSerializing and IsSerializeAfter on its final microop. --- diff --git a/src/arch/x86/isa/macroop.isa b/src/arch/x86/isa/macroop.isa index d6571c7e6..f05015834 100644 --- a/src/arch/x86/isa/macroop.isa +++ b/src/arch/x86/isa/macroop.isa @@ -139,12 +139,15 @@ let {{ self.adjust_imm += val def adjustDisp(self, val): self.adjust_disp += val + def serializing(self): + self.serializing = True def __init__(self, name): super(X86Macroop, self).__init__(name) self.directives = { "adjust_env" : self.setAdjustEnv, "adjust_imm" : self.adjustImm, - "adjust_disp" : self.adjustDisp + "adjust_disp" : self.adjustDisp, + "serializing" : self.serializing } self.declared = False self.adjust_env = "" @@ -159,6 +162,7 @@ let {{ //This is to pacify gcc in case the displacement isn't used. adjustedDisp = adjustedDisp; ''' + self.serializing = False def getAllocator(self, env): return "new X86Macroop::%s(machInst, %s)" % \ (self.name, env.getAllocator()) @@ -188,6 +192,9 @@ let {{ flags = ["IsMicroop"] if micropc == numMicroops - 1: flags.append("IsLastMicroop") + if self.serializing: + flags.append("IsSerializing") + flags.append("IsSerializeAfter") else: flags.append("IsDelayedCommit") if micropc == 0: