X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=compiler%2FnativeGen%2FX86%2FRegs.hs;h=bed9dc5c6e3f77f0470f1892d27448b970d0e2a0;hp=64d835b2ebe1bff7d5b3a75b94fcb224d1088f5f;hb=335b9f366ac440259318777c4c07e4fa42fbbec6;hpb=d9f7177402769968e8f42b49c1941661e18c5773 diff --git a/compiler/nativeGen/X86/Regs.hs b/compiler/nativeGen/X86/Regs.hs index 64d835b..bed9dc5 100644 --- a/compiler/nativeGen/X86/Regs.hs +++ b/compiler/nativeGen/X86/Regs.hs @@ -49,11 +49,6 @@ where #include "nativeGen/NCG.h" #include "HsVersions.h" -#if i386_TARGET_ARCH -# define STOLEN_X86_REGS 4 --- HACK: go for the max -#endif - #include "../includes/stg/MachRegs.h" import Reg @@ -88,58 +83,23 @@ virtualRegSqueeze cls vr -> case vr of VirtualRegI{} -> _ILIT(1) VirtualRegHi{} -> _ILIT(1) - VirtualRegD{} -> _ILIT(0) - VirtualRegF{} -> _ILIT(0) - - -- We don't use floats on this arch, but we can't - -- return error because the return type is unboxed... - RcFloat - -> case vr of - VirtualRegI{} -> _ILIT(0) - VirtualRegHi{} -> _ILIT(0) - VirtualRegD{} -> _ILIT(0) - VirtualRegF{} -> _ILIT(0) + _other -> _ILIT(0) RcDouble -> case vr of - VirtualRegI{} -> _ILIT(0) - VirtualRegHi{} -> _ILIT(0) VirtualRegD{} -> _ILIT(1) VirtualRegF{} -> _ILIT(0) + _other -> _ILIT(0) -{-# INLINE realRegSqueeze #-} -realRegSqueeze :: RegClass -> RealReg -> FastInt - -#if defined(i386_TARGET_ARCH) -realRegSqueeze cls rr - = case cls of - RcInteger - -> case rr of - RealRegSingle regNo - | regNo < 8 -> _ILIT(1) -- first fp reg is 8 - | otherwise -> _ILIT(0) - - RealRegPair{} -> _ILIT(0) - - -- We don't use floats on this arch, but we can't - -- return error because the return type is unboxed... - RcFloat - -> case rr of - RealRegSingle regNo - | regNo < 8 -> _ILIT(0) - | otherwise -> _ILIT(0) - - RealRegPair{} -> _ILIT(0) + RcDoubleSSE + -> case vr of + VirtualRegSSE{} -> _ILIT(1) + _other -> _ILIT(0) - RcDouble - -> case rr of - RealRegSingle regNo - | regNo < 8 -> _ILIT(0) - | otherwise -> _ILIT(1) - - RealRegPair{} -> _ILIT(0) + _other -> _ILIT(0) -#elif defined(x86_64_TARGET_ARCH) +{-# INLINE realRegSqueeze #-} +realRegSqueeze :: RegClass -> RealReg -> FastInt realRegSqueeze cls rr = case cls of RcInteger @@ -150,29 +110,20 @@ realRegSqueeze cls rr RealRegPair{} -> _ILIT(0) - -- We don't use floats on this arch, but we can't - -- return error because the return type is unboxed... - RcFloat + RcDouble -> case rr of RealRegSingle regNo - | regNo < 16 -> _ILIT(0) + | regNo >= 16 && regNo < 24 -> _ILIT(1) | otherwise -> _ILIT(0) RealRegPair{} -> _ILIT(0) - RcDouble + RcDoubleSSE -> case rr of - RealRegSingle regNo - | regNo < 16 -> _ILIT(0) - | otherwise -> _ILIT(1) - - RealRegPair{} -> _ILIT(0) - -#else -realRegSqueeze _ _ = _ILIT(0) -#endif - + RealRegSingle regNo | regNo >= 24 -> _ILIT(1) + _otherwise -> _ILIT(0) + _other -> _ILIT(0) -- ----------------------------------------------------------------------------- -- Immediates @@ -275,87 +226,48 @@ spRel _ = panic "X86.Regs.spRel: not defined for this architecture" argRegs :: RegNo -> [Reg] argRegs _ = panic "MachRegs.argRegs(x86): should not be used!" - - - - -- | The complete set of machine registers. allMachRegNos :: [RegNo] - -#if i386_TARGET_ARCH -allMachRegNos = [0..13] - -#elif x86_64_TARGET_ARCH -allMachRegNos = [0..31] - +#if i386_TARGET_ARCH +allMachRegNos = [0..7] ++ floatregs -- not %r8..%r15 #else -allMachRegNos = panic "X86.Regs.callClobberedRegs: not defined for this architecture" - +allMachRegNos = [0..15] ++ floatregs #endif - + where floatregs = fakes ++ xmms; fakes = [16..21]; xmms = [24..39] -- | Take the class of a register. {-# INLINE classOfRealReg #-} classOfRealReg :: RealReg -> RegClass - -#if i386_TARGET_ARCH -- On x86, we might want to have an 8-bit RegClass, which would -- contain just regs 1-4 (the others don't have 8-bit versions). -- However, we can get away without this at the moment because the -- only allocatable integer regs are also 8-bit compatible (1, 3, 4). classOfRealReg reg = case reg of - RealRegSingle i -> if i < 8 then RcInteger else RcDouble - RealRegPair{} -> panic "X86.Regs.classOfRealReg: RegPairs on this arch" + RealRegSingle i + | i < 16 -> RcInteger + | i < 24 -> RcDouble + | otherwise -> RcDoubleSSE -#elif x86_64_TARGET_ARCH --- On x86, we might want to have an 8-bit RegClass, which would --- contain just regs 1-4 (the others don't have 8-bit versions). --- However, we can get away without this at the moment because the --- only allocatable integer regs are also 8-bit compatible (1, 3, 4). -classOfRealReg reg - = case reg of - RealRegSingle i -> if i < 16 then RcInteger else RcDouble RealRegPair{} -> panic "X86.Regs.classOfRealReg: RegPairs on this arch" -#else -classOfRealReg _ = panic "X86.Regs.regClass: not defined for this architecture" - -#endif - - -- | Get the name of the register with this number. showReg :: RegNo -> String - -#if i386_TARGET_ARCH -showReg n - = if n >= 0 && n < 14 - then regNames !! n - else "%unknown_x86_real_reg_" ++ show n - -regNames :: [String] -regNames - = ["%eax", "%ebx", "%ecx", "%edx", "%esi", "%edi", "%ebp", "%esp", - "%fake0", "%fake1", "%fake2", "%fake3", "%fake4", "%fake5", "%fake6"] - -#elif x86_64_TARGET_ARCH showReg n - | n >= 16 = "%xmm" ++ show (n-16) + | n >= 24 = "%xmm" ++ show (n-24) + | n >= 16 = "%fake" ++ show (n-16) | n >= 8 = "%r" ++ show n | otherwise = regNames !! n regNames :: [String] regNames - = ["%rax", "%rbx", "%rcx", "%rdx", "%rsi", "%rdi", "%rbp", "%rsp" ] - -#else -showReg _ = panic "X86.Regs.showReg: not defined for this architecture" - +#if i386_TARGET_ARCH + = ["%eax", "%ebx", "%ecx", "%edx", "%esi", "%edi", "%ebp", "%esp"] +#elif x86_64_TARGET_ARCH + = ["%rax", "%rbx", "%rcx", "%rdx", "%rsi", "%rdi", "%rbp", "%rsp" ] #endif - - -- machine specific ------------------------------------------------------------ @@ -385,12 +297,12 @@ esi = regSingle 4 edi = regSingle 5 ebp = regSingle 6 esp = regSingle 7 -fake0 = regSingle 8 -fake1 = regSingle 9 -fake2 = regSingle 10 -fake3 = regSingle 11 -fake4 = regSingle 12 -fake5 = regSingle 13 +fake0 = regSingle 16 +fake1 = regSingle 17 +fake2 = regSingle 18 +fake3 = regSingle 19 +fake4 = regSingle 20 +fake5 = regSingle 21 @@ -423,25 +335,25 @@ r12 = regSingle 12 r13 = regSingle 13 r14 = regSingle 14 r15 = regSingle 15 -xmm0 = regSingle 16 -xmm1 = regSingle 17 -xmm2 = regSingle 18 -xmm3 = regSingle 19 -xmm4 = regSingle 20 -xmm5 = regSingle 21 -xmm6 = regSingle 22 -xmm7 = regSingle 23 -xmm8 = regSingle 24 -xmm9 = regSingle 25 -xmm10 = regSingle 26 -xmm11 = regSingle 27 -xmm12 = regSingle 28 -xmm13 = regSingle 29 -xmm14 = regSingle 30 -xmm15 = regSingle 31 +xmm0 = regSingle 24 +xmm1 = regSingle 25 +xmm2 = regSingle 26 +xmm3 = regSingle 27 +xmm4 = regSingle 28 +xmm5 = regSingle 29 +xmm6 = regSingle 30 +xmm7 = regSingle 31 +xmm8 = regSingle 32 +xmm9 = regSingle 33 +xmm10 = regSingle 34 +xmm11 = regSingle 35 +xmm12 = regSingle 36 +xmm13 = regSingle 37 +xmm14 = regSingle 38 +xmm15 = regSingle 39 allFPArgRegs :: [Reg] -allFPArgRegs = map regSingle [16 .. 23] +allFPArgRegs = map regSingle [24 .. 31] ripRel :: Displacement -> AddrMode ripRel imm = AddrBaseIndex EABaseRip EAIndexNone imm @@ -460,7 +372,7 @@ esp = rsp -} xmm :: RegNo -> Reg -xmm n = regSingle (16+n) +xmm n = regSingle (24+n) @@ -482,12 +394,6 @@ callClobberedRegs :: [Reg] #define edi 5 #define ebp 6 #define esp 7 -#define fake0 8 -#define fake1 9 -#define fake2 10 -#define fake3 11 -#define fake4 12 -#define fake5 13 #endif #if x86_64_TARGET_ARCH @@ -507,24 +413,31 @@ callClobberedRegs :: [Reg] #define r13 13 #define r14 14 #define r15 15 -#define xmm0 16 -#define xmm1 17 -#define xmm2 18 -#define xmm3 19 -#define xmm4 20 -#define xmm5 21 -#define xmm6 22 -#define xmm7 23 -#define xmm8 24 -#define xmm9 25 -#define xmm10 26 -#define xmm11 27 -#define xmm12 28 -#define xmm13 29 -#define xmm14 30 -#define xmm15 31 #endif +#define fake0 16 +#define fake1 17 +#define fake2 18 +#define fake3 19 +#define fake4 20 +#define fake5 21 + +#define xmm0 24 +#define xmm1 25 +#define xmm2 26 +#define xmm3 27 +#define xmm4 28 +#define xmm5 29 +#define xmm6 30 +#define xmm7 31 +#define xmm8 32 +#define xmm9 33 +#define xmm10 34 +#define xmm11 35 +#define xmm12 36 +#define xmm13 37 +#define xmm14 38 +#define xmm15 39 #if i386_TARGET_ARCH @@ -697,13 +610,13 @@ allArgRegs = panic "X86.Regs.allArgRegs: not defined for this architecture" #if i386_TARGET_ARCH -- caller-saves registers callClobberedRegs - = map regSingle [eax,ecx,edx,fake0,fake1,fake2,fake3,fake4,fake5] + = map regSingle ([eax,ecx,edx] ++ [16..39]) #elif x86_64_TARGET_ARCH -- all xmm regs are caller-saves -- caller-saves registers callClobberedRegs - = map regSingle ([rax,rcx,rdx,rsi,rdi,r8,r9,r10,r11] ++ [16..31]) + = map regSingle ([rax,rcx,rdx,rsi,rdi,r8,r9,r10,r11] ++ [16..39]) #else callClobberedRegs