From: Gabe Black Date: Tue, 18 Aug 2009 01:15:13 +0000 (-0700) Subject: X86: Remove some FIXMEs from IDIV that have been fixed. X-Git-Tag: Calvin_Submission~140 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a9b2bf51193ce6739d32a5e3990a30ff37b1da85;p=gem5.git X86: Remove some FIXMEs from IDIV that have been fixed. --- diff --git a/src/arch/x86/isa/insts/general_purpose/arithmetic/multiply_and_divide.py b/src/arch/x86/isa/insts/general_purpose/arithmetic/multiply_and_divide.py index 86f1946ba..368e27ab5 100644 --- a/src/arch/x86/isa/insts/general_purpose/arithmetic/multiply_and_divide.py +++ b/src/arch/x86/isa/insts/general_purpose/arithmetic/multiply_and_divide.py @@ -677,7 +677,6 @@ def macroop IDIV_M ld t8, seg, sib, disp #Find the sign of the divisor - #FIXME!!! This depends on shifts setting the carry flag correctly. slli t0, t8, 1, flags=(ECF,) # Negate divisor @@ -686,7 +685,6 @@ def macroop IDIV_M mov t3, t3, t8, flags=(nCECF,) #Find the sign of the dividend - #FIXME!!! This depends on shifts setting the carry flag correctly. slli t0, rdx, 1, flags=(ECF,) # Put the dividend's absolute value into t1 and t2 @@ -753,7 +751,6 @@ def macroop IDIV_P ld t8, seg, riprel, disp #Find the sign of the divisor - #FIXME!!! This depends on shifts setting the carry flag correctly. slli t0, t8, 1, flags=(ECF,) # Negate divisor @@ -762,7 +759,6 @@ def macroop IDIV_P mov t3, t3, t4, flags=(nCECF,) #Find the sign of the dividend - #FIXME!!! This depends on shifts setting the carry flag correctly. slli t0, rdx, 1, flags=(ECF,) # Put the dividend's absolute value into t1 and t2