Add new LLVM code generator to GHC. (Version 2)
[ghc-hetmet.git] / compiler / nativeGen / X86 / CodeGen.hs
1 {-# OPTIONS -w #-}
2 -- The above warning supression flag is a temporary kludge.
3 -- While working on this module you are encouraged to remove it and fix
4 -- any warnings in the module. See
5 --     http://hackage.haskell.org/trac/ghc/wiki/Commentary/CodingStyle#Warnings
6 -- for details
7
8 -----------------------------------------------------------------------------
9 --
10 -- Generating machine code (instruction selection)
11 --
12 -- (c) The University of Glasgow 1996-2004
13 --
14 -----------------------------------------------------------------------------
15
16 -- This is a big module, but, if you pay attention to
17 -- (a) the sectioning, (b) the type signatures, and
18 -- (c) the #if blah_TARGET_ARCH} things, the
19 -- structure should not be too overwhelming.
20
21 module X86.CodeGen ( 
22         cmmTopCodeGen, 
23         InstrBlock 
24
25
26 where
27
28 #include "HsVersions.h"
29 #include "nativeGen/NCG.h"
30 #include "../includes/MachDeps.h"
31
32 -- NCG stuff:
33 import X86.Instr
34 import X86.Cond
35 import X86.Regs
36 import X86.RegInfo
37 import X86.Ppr
38 import Instruction
39 import PIC
40 import NCGMonad
41 import Size
42 import Reg
43 import RegClass
44 import Platform
45
46 -- Our intermediate code:
47 import BasicTypes
48 import BlockId
49 import PprCmm           ( pprExpr )
50 import Cmm
51 import CLabel
52 import ClosureInfo      ( C_SRT(..) )
53
54 -- The rest:
55 import StaticFlags      ( opt_PIC )
56 import ForeignCall      ( CCallConv(..) )
57 import OrdList
58 import Pretty
59 import qualified Outputable as O
60 import Outputable
61 import FastString
62 import FastBool         ( isFastTrue )
63 import Constants        ( wORD_SIZE )
64 import DynFlags
65
66 import Debug.Trace      ( trace )
67
68 import Control.Monad    ( mapAndUnzipM )
69 import Data.Maybe       ( fromJust )
70 import Data.Bits
71 import Data.Word
72 import Data.Int
73
74 sse2Enabled :: NatM Bool
75 #if x86_64_TARGET_ARCH
76 -- SSE2 is fixed on for x86_64.  It would be possible to make it optional,
77 -- but we'd need to fix at least the foreign call code where the calling
78 -- convention specifies the use of xmm regs, and possibly other places.
79 sse2Enabled = return True
80 #else
81 sse2Enabled = do
82   dflags <- getDynFlagsNat
83   return (dopt Opt_SSE2 dflags)
84 #endif
85
86 if_sse2 :: NatM a -> NatM a -> NatM a
87 if_sse2 sse2 x87 = do
88   b <- sse2Enabled
89   if b then sse2 else x87
90
91 cmmTopCodeGen 
92         :: DynFlags
93         -> RawCmmTop
94         -> NatM [NatCmmTop Instr]
95
96 cmmTopCodeGen dynflags 
97         (CmmProc info lab params (ListGraph blocks)) = do
98   (nat_blocks,statics) <- mapAndUnzipM basicBlockCodeGen blocks
99   picBaseMb <- getPicBaseMaybeNat
100   let proc = CmmProc info lab params (ListGraph $ concat nat_blocks)
101       tops = proc : concat statics
102       os   = platformOS $ targetPlatform dynflags
103
104   case picBaseMb of
105       Just picBase -> initializePicBase_x86 ArchX86 os picBase tops
106       Nothing -> return tops
107   
108 cmmTopCodeGen _ (CmmData sec dat) = do
109   return [CmmData sec dat]  -- no translation, we just use CmmStatic
110
111
112 basicBlockCodeGen 
113         :: CmmBasicBlock 
114         -> NatM ( [NatBasicBlock Instr]
115                 , [NatCmmTop Instr])
116
117 basicBlockCodeGen (BasicBlock id stmts) = do
118   instrs <- stmtsToInstrs stmts
119   -- code generation may introduce new basic block boundaries, which
120   -- are indicated by the NEWBLOCK instruction.  We must split up the
121   -- instruction stream into basic blocks again.  Also, we extract
122   -- LDATAs here too.
123   let
124         (top,other_blocks,statics) = foldrOL mkBlocks ([],[],[]) instrs
125         
126         mkBlocks (NEWBLOCK id) (instrs,blocks,statics) 
127           = ([], BasicBlock id instrs : blocks, statics)
128         mkBlocks (LDATA sec dat) (instrs,blocks,statics) 
129           = (instrs, blocks, CmmData sec dat:statics)
130         mkBlocks instr (instrs,blocks,statics)
131           = (instr:instrs, blocks, statics)
132   -- in
133   return (BasicBlock id top : other_blocks, statics)
134
135
136 stmtsToInstrs :: [CmmStmt] -> NatM InstrBlock
137 stmtsToInstrs stmts
138    = do instrss <- mapM stmtToInstrs stmts
139         return (concatOL instrss)
140
141
142 stmtToInstrs :: CmmStmt -> NatM InstrBlock
143 stmtToInstrs stmt = case stmt of
144     CmmNop         -> return nilOL
145     CmmComment s   -> return (unitOL (COMMENT s))
146
147     CmmAssign reg src
148       | isFloatType ty -> assignReg_FltCode size reg src
149 #if WORD_SIZE_IN_BITS==32
150       | isWord64 ty    -> assignReg_I64Code      reg src
151 #endif
152       | otherwise        -> assignReg_IntCode size reg src
153         where ty = cmmRegType reg
154               size = cmmTypeSize ty
155
156     CmmStore addr src
157       | isFloatType ty -> assignMem_FltCode size addr src
158 #if WORD_SIZE_IN_BITS==32
159       | isWord64 ty      -> assignMem_I64Code      addr src
160 #endif
161       | otherwise        -> assignMem_IntCode size addr src
162         where ty = cmmExprType src
163               size = cmmTypeSize ty
164
165     CmmCall target result_regs args _ _
166        -> genCCall target result_regs args
167
168     CmmBranch id          -> genBranch id
169     CmmCondBranch arg id  -> genCondJump id arg
170     CmmSwitch arg ids     -> genSwitch arg ids
171     CmmJump arg params    -> genJump arg
172     CmmReturn params      ->
173       panic "stmtToInstrs: return statement should have been cps'd away"
174
175
176 --------------------------------------------------------------------------------
177 -- | 'InstrBlock's are the insn sequences generated by the insn selectors.
178 --      They are really trees of insns to facilitate fast appending, where a
179 --      left-to-right traversal yields the insns in the correct order.
180 --
181 type InstrBlock 
182         = OrdList Instr
183
184
185 -- | Condition codes passed up the tree.
186 --
187 data CondCode   
188         = CondCode Bool Cond InstrBlock
189
190
191 -- | a.k.a "Register64"
192 --      Reg is the lower 32-bit temporary which contains the result. 
193 --      Use getHiVRegFromLo to find the other VRegUnique.  
194 --
195 --      Rules of this simplified insn selection game are therefore that
196 --      the returned Reg may be modified
197 --
198 data ChildCode64        
199    = ChildCode64 
200         InstrBlock
201         Reg             
202
203
204 -- | Register's passed up the tree.  If the stix code forces the register
205 --      to live in a pre-decided machine register, it comes out as @Fixed@;
206 --      otherwise, it comes out as @Any@, and the parent can decide which
207 --      register to put it in.
208 --
209 data Register
210         = Fixed Size Reg InstrBlock
211         | Any   Size (Reg -> InstrBlock)
212
213
214 swizzleRegisterRep :: Register -> Size -> Register
215 swizzleRegisterRep (Fixed _ reg code) size = Fixed size reg code
216 swizzleRegisterRep (Any _ codefn)     size = Any   size codefn
217
218
219 -- | Grab the Reg for a CmmReg
220 getRegisterReg :: Bool -> CmmReg -> Reg
221
222 getRegisterReg use_sse2 (CmmLocal (LocalReg u pk))
223   = let sz = cmmTypeSize pk in
224     if isFloatSize sz && not use_sse2
225        then RegVirtual (mkVirtualReg u FF80)
226        else RegVirtual (mkVirtualReg u sz)
227
228 getRegisterReg _ (CmmGlobal mid)
229   = case globalRegMaybe mid of
230         Just reg -> RegReal $ reg
231         Nothing  -> pprPanic "getRegisterReg-memory" (ppr $ CmmGlobal mid)
232         -- By this stage, the only MagicIds remaining should be the
233         -- ones which map to a real machine register on this
234         -- platform.  Hence ...
235
236
237 -- | Memory addressing modes passed up the tree.
238 data Amode 
239         = Amode AddrMode InstrBlock
240
241 {-
242 Now, given a tree (the argument to an CmmLoad) that references memory,
243 produce a suitable addressing mode.
244
245 A Rule of the Game (tm) for Amodes: use of the addr bit must
246 immediately follow use of the code part, since the code part puts
247 values in registers which the addr then refers to.  So you can't put
248 anything in between, lest it overwrite some of those registers.  If
249 you need to do some other computation between the code part and use of
250 the addr bit, first store the effective address from the amode in a
251 temporary, then do the other computation, and then use the temporary:
252
253     code
254     LEA amode, tmp
255     ... other computation ...
256     ... (tmp) ...
257 -}
258
259
260 -- | Check whether an integer will fit in 32 bits.
261 --      A CmmInt is intended to be truncated to the appropriate 
262 --      number of bits, so here we truncate it to Int64.  This is
263 --      important because e.g. -1 as a CmmInt might be either
264 --      -1 or 18446744073709551615.
265 --
266 is32BitInteger :: Integer -> Bool
267 is32BitInteger i = i64 <= 0x7fffffff && i64 >= -0x80000000
268   where i64 = fromIntegral i :: Int64
269
270
271 -- | Convert a BlockId to some CmmStatic data
272 jumpTableEntry :: Maybe BlockId -> CmmStatic
273 jumpTableEntry Nothing = CmmStaticLit (CmmInt 0 wordWidth)
274 jumpTableEntry (Just (BlockId id)) = CmmStaticLit (CmmLabel blockLabel)
275     where blockLabel = mkAsmTempLabel id
276
277
278 -- -----------------------------------------------------------------------------
279 -- General things for putting together code sequences
280
281 -- Expand CmmRegOff.  ToDo: should we do it this way around, or convert
282 -- CmmExprs into CmmRegOff?
283 mangleIndexTree :: CmmExpr -> CmmExpr
284 mangleIndexTree (CmmRegOff reg off)
285   = CmmMachOp (MO_Add width) [CmmReg reg, CmmLit (CmmInt (fromIntegral off) width)]
286   where width = typeWidth (cmmRegType reg)
287
288 -- | The dual to getAnyReg: compute an expression into a register, but
289 --      we don't mind which one it is.
290 getSomeReg :: CmmExpr -> NatM (Reg, InstrBlock)
291 getSomeReg expr = do
292   r <- getRegister expr
293   case r of
294     Any rep code -> do
295         tmp <- getNewRegNat rep
296         return (tmp, code tmp)
297     Fixed _ reg code -> 
298         return (reg, code)
299
300
301
302
303
304 assignMem_I64Code :: CmmExpr -> CmmExpr -> NatM InstrBlock
305 assignMem_I64Code addrTree valueTree = do
306   Amode addr addr_code <- getAmode addrTree
307   ChildCode64 vcode rlo <- iselExpr64 valueTree
308   let 
309         rhi = getHiVRegFromLo rlo
310
311         -- Little-endian store
312         mov_lo = MOV II32 (OpReg rlo) (OpAddr addr)
313         mov_hi = MOV II32 (OpReg rhi) (OpAddr (fromJust (addrOffset addr 4)))
314   -- in
315   return (vcode `appOL` addr_code `snocOL` mov_lo `snocOL` mov_hi)
316
317
318 assignReg_I64Code :: CmmReg  -> CmmExpr -> NatM InstrBlock
319 assignReg_I64Code (CmmLocal (LocalReg u_dst pk)) valueTree = do
320    ChildCode64 vcode r_src_lo <- iselExpr64 valueTree
321    let 
322          r_dst_lo = RegVirtual $ mkVirtualReg u_dst II32
323          r_dst_hi = getHiVRegFromLo r_dst_lo
324          r_src_hi = getHiVRegFromLo r_src_lo
325          mov_lo = MOV II32 (OpReg r_src_lo) (OpReg r_dst_lo)
326          mov_hi = MOV II32 (OpReg r_src_hi) (OpReg r_dst_hi)
327    -- in
328    return (
329         vcode `snocOL` mov_lo `snocOL` mov_hi
330      )
331
332 assignReg_I64Code lvalue valueTree
333    = panic "assignReg_I64Code(i386): invalid lvalue"
334
335
336
337
338 iselExpr64        :: CmmExpr -> NatM ChildCode64
339 iselExpr64 (CmmLit (CmmInt i _)) = do
340   (rlo,rhi) <- getNewRegPairNat II32
341   let
342         r = fromIntegral (fromIntegral i :: Word32)
343         q = fromIntegral ((fromIntegral i `shiftR` 32) :: Word32)
344         code = toOL [
345                 MOV II32 (OpImm (ImmInteger r)) (OpReg rlo),
346                 MOV II32 (OpImm (ImmInteger q)) (OpReg rhi)
347                 ]
348   -- in
349   return (ChildCode64 code rlo)
350
351 iselExpr64 (CmmLoad addrTree ty) | isWord64 ty = do
352    Amode addr addr_code <- getAmode addrTree
353    (rlo,rhi) <- getNewRegPairNat II32
354    let 
355         mov_lo = MOV II32 (OpAddr addr) (OpReg rlo)
356         mov_hi = MOV II32 (OpAddr (fromJust (addrOffset addr 4))) (OpReg rhi)
357    -- in
358    return (
359             ChildCode64 (addr_code `snocOL` mov_lo `snocOL` mov_hi) 
360                         rlo
361      )
362
363 iselExpr64 (CmmReg (CmmLocal (LocalReg vu ty))) | isWord64 ty
364    = return (ChildCode64 nilOL (RegVirtual $ mkVirtualReg vu II32))
365          
366 -- we handle addition, but rather badly
367 iselExpr64 (CmmMachOp (MO_Add _) [e1, CmmLit (CmmInt i _)]) = do
368    ChildCode64 code1 r1lo <- iselExpr64 e1
369    (rlo,rhi) <- getNewRegPairNat II32
370    let
371         r = fromIntegral (fromIntegral i :: Word32)
372         q = fromIntegral ((fromIntegral i `shiftR` 32) :: Word32)
373         r1hi = getHiVRegFromLo r1lo
374         code =  code1 `appOL`
375                 toOL [ MOV II32 (OpReg r1lo) (OpReg rlo),
376                        ADD II32 (OpImm (ImmInteger r)) (OpReg rlo),
377                        MOV II32 (OpReg r1hi) (OpReg rhi),
378                        ADC II32 (OpImm (ImmInteger q)) (OpReg rhi) ]
379    -- in
380    return (ChildCode64 code rlo)
381
382 iselExpr64 (CmmMachOp (MO_Add _) [e1,e2]) = do
383    ChildCode64 code1 r1lo <- iselExpr64 e1
384    ChildCode64 code2 r2lo <- iselExpr64 e2
385    (rlo,rhi) <- getNewRegPairNat II32
386    let
387         r1hi = getHiVRegFromLo r1lo
388         r2hi = getHiVRegFromLo r2lo
389         code =  code1 `appOL`
390                 code2 `appOL`
391                 toOL [ MOV II32 (OpReg r1lo) (OpReg rlo),
392                        ADD II32 (OpReg r2lo) (OpReg rlo),
393                        MOV II32 (OpReg r1hi) (OpReg rhi),
394                        ADC II32 (OpReg r2hi) (OpReg rhi) ]
395    -- in
396    return (ChildCode64 code rlo)
397
398 iselExpr64 (CmmMachOp (MO_UU_Conv _ W64) [expr]) = do
399      fn <- getAnyReg expr
400      r_dst_lo <-  getNewRegNat II32
401      let r_dst_hi = getHiVRegFromLo r_dst_lo
402          code = fn r_dst_lo
403      return (
404              ChildCode64 (code `snocOL` 
405                           MOV II32 (OpImm (ImmInt 0)) (OpReg r_dst_hi))
406                           r_dst_lo
407             )
408
409 iselExpr64 expr
410    = pprPanic "iselExpr64(i386)" (ppr expr)
411
412
413
414 --------------------------------------------------------------------------------
415 getRegister :: CmmExpr -> NatM Register
416
417 #if !x86_64_TARGET_ARCH
418     -- on x86_64, we have %rip for PicBaseReg, but it's not a full-featured
419     -- register, it can only be used for rip-relative addressing.
420 getRegister (CmmReg (CmmGlobal PicBaseReg))
421   = do
422       reg <- getPicBaseNat archWordSize
423       return (Fixed archWordSize reg nilOL)
424 #endif
425
426 getRegister (CmmReg reg) 
427   = do use_sse2 <- sse2Enabled
428        let
429          sz = cmmTypeSize (cmmRegType reg)
430          size | not use_sse2 && isFloatSize sz = FF80
431               | otherwise                      = sz
432        --
433        return (Fixed sz (getRegisterReg use_sse2 reg) nilOL)
434   
435
436 getRegister tree@(CmmRegOff _ _) 
437   = getRegister (mangleIndexTree tree)
438
439
440 #if WORD_SIZE_IN_BITS==32
441     -- for 32-bit architectuers, support some 64 -> 32 bit conversions:
442     -- TO_W_(x), TO_W_(x >> 32)
443
444 getRegister (CmmMachOp (MO_UU_Conv W64 W32)
445              [CmmMachOp (MO_U_Shr W64) [x,CmmLit (CmmInt 32 _)]]) = do
446   ChildCode64 code rlo <- iselExpr64 x
447   return $ Fixed II32 (getHiVRegFromLo rlo) code
448
449 getRegister (CmmMachOp (MO_SS_Conv W64 W32)
450              [CmmMachOp (MO_U_Shr W64) [x,CmmLit (CmmInt 32 _)]]) = do
451   ChildCode64 code rlo <- iselExpr64 x
452   return $ Fixed II32 (getHiVRegFromLo rlo) code
453
454 getRegister (CmmMachOp (MO_UU_Conv W64 W32) [x]) = do
455   ChildCode64 code rlo <- iselExpr64 x
456   return $ Fixed II32 rlo code
457
458 getRegister (CmmMachOp (MO_SS_Conv W64 W32) [x]) = do
459   ChildCode64 code rlo <- iselExpr64 x
460   return $ Fixed II32 rlo code       
461
462 #endif
463
464
465 getRegister (CmmLit lit@(CmmFloat f w)) =
466   if_sse2 float_const_sse2 float_const_x87
467  where
468   float_const_sse2
469     | f == 0.0 = do
470       let
471           size = floatSize w
472           code dst = unitOL  (XOR size (OpReg dst) (OpReg dst))
473         -- I don't know why there are xorpd, xorps, and pxor instructions.
474         -- They all appear to do the same thing --SDM
475       return (Any size code)
476
477    | otherwise = do
478       Amode addr code <- memConstant (widthInBytes w) lit
479       loadFloatAmode True w addr code
480
481   float_const_x87 = case w of
482     W64
483       | f == 0.0 ->
484         let code dst = unitOL (GLDZ dst)
485         in  return (Any FF80 code)
486     
487       | f == 1.0 ->
488         let code dst = unitOL (GLD1 dst)
489         in  return (Any FF80 code)
490     
491     _otherwise -> do
492       Amode addr code <- memConstant (widthInBytes w) lit
493       loadFloatAmode False w addr code
494
495 -- catch simple cases of zero- or sign-extended load
496 getRegister (CmmMachOp (MO_UU_Conv W8 W32) [CmmLoad addr _]) = do
497   code <- intLoadCode (MOVZxL II8) addr
498   return (Any II32 code)
499
500 getRegister (CmmMachOp (MO_SS_Conv W8 W32) [CmmLoad addr _]) = do
501   code <- intLoadCode (MOVSxL II8) addr
502   return (Any II32 code)
503
504 getRegister (CmmMachOp (MO_UU_Conv W16 W32) [CmmLoad addr _]) = do
505   code <- intLoadCode (MOVZxL II16) addr
506   return (Any II32 code)
507
508 getRegister (CmmMachOp (MO_SS_Conv W16 W32) [CmmLoad addr _]) = do
509   code <- intLoadCode (MOVSxL II16) addr
510   return (Any II32 code)
511
512
513 #if x86_64_TARGET_ARCH
514
515 -- catch simple cases of zero- or sign-extended load
516 getRegister (CmmMachOp (MO_UU_Conv W8 W64) [CmmLoad addr _]) = do
517   code <- intLoadCode (MOVZxL II8) addr
518   return (Any II64 code)
519
520 getRegister (CmmMachOp (MO_SS_Conv W8 W64) [CmmLoad addr _]) = do
521   code <- intLoadCode (MOVSxL II8) addr
522   return (Any II64 code)
523
524 getRegister (CmmMachOp (MO_UU_Conv W16 W64) [CmmLoad addr _]) = do
525   code <- intLoadCode (MOVZxL II16) addr
526   return (Any II64 code)
527
528 getRegister (CmmMachOp (MO_SS_Conv W16 W64) [CmmLoad addr _]) = do
529   code <- intLoadCode (MOVSxL II16) addr
530   return (Any II64 code)
531
532 getRegister (CmmMachOp (MO_UU_Conv W32 W64) [CmmLoad addr _]) = do
533   code <- intLoadCode (MOV II32) addr -- 32-bit loads zero-extend
534   return (Any II64 code)
535
536 getRegister (CmmMachOp (MO_SS_Conv W32 W64) [CmmLoad addr _]) = do
537   code <- intLoadCode (MOVSxL II32) addr
538   return (Any II64 code)
539
540 getRegister (CmmMachOp (MO_Add W64) [CmmReg (CmmGlobal PicBaseReg),
541                                      CmmLit displacement])
542     = return $ Any II64 (\dst -> unitOL $
543         LEA II64 (OpAddr (ripRel (litToImm displacement))) (OpReg dst))
544
545 #endif /* x86_64_TARGET_ARCH */
546
547
548
549
550
551 getRegister (CmmMachOp mop [x]) = do -- unary MachOps
552     sse2 <- sse2Enabled
553     case mop of
554       MO_F_Neg w
555          | sse2      -> sse2NegCode w x
556          | otherwise -> trivialUFCode FF80 (GNEG FF80) x
557
558       MO_S_Neg w -> triv_ucode NEGI (intSize w)
559       MO_Not w   -> triv_ucode NOT  (intSize w)
560
561       -- Nop conversions
562       MO_UU_Conv W32 W8  -> toI8Reg  W32 x
563       MO_SS_Conv W32 W8  -> toI8Reg  W32 x
564       MO_UU_Conv W16 W8  -> toI8Reg  W16 x
565       MO_SS_Conv W16 W8  -> toI8Reg  W16 x
566       MO_UU_Conv W32 W16 -> toI16Reg W32 x
567       MO_SS_Conv W32 W16 -> toI16Reg W32 x
568
569 #if x86_64_TARGET_ARCH
570       MO_UU_Conv W64 W32 -> conversionNop II64 x
571       MO_SS_Conv W64 W32 -> conversionNop II64 x
572       MO_UU_Conv W64 W16 -> toI16Reg W64 x
573       MO_SS_Conv W64 W16 -> toI16Reg W64 x
574       MO_UU_Conv W64 W8  -> toI8Reg  W64 x
575       MO_SS_Conv W64 W8  -> toI8Reg  W64 x
576 #endif
577
578       MO_UU_Conv rep1 rep2 | rep1 == rep2 -> conversionNop (intSize rep1) x
579       MO_SS_Conv rep1 rep2 | rep1 == rep2 -> conversionNop (intSize rep1) x
580
581       -- widenings
582       MO_UU_Conv W8  W32 -> integerExtend W8  W32 MOVZxL x
583       MO_UU_Conv W16 W32 -> integerExtend W16 W32 MOVZxL x
584       MO_UU_Conv W8  W16 -> integerExtend W8  W16 MOVZxL x
585
586       MO_SS_Conv W8  W32 -> integerExtend W8  W32 MOVSxL x
587       MO_SS_Conv W16 W32 -> integerExtend W16 W32 MOVSxL x
588       MO_SS_Conv W8  W16 -> integerExtend W8  W16 MOVSxL x
589
590 #if x86_64_TARGET_ARCH
591       MO_UU_Conv W8  W64 -> integerExtend W8  W64 MOVZxL x
592       MO_UU_Conv W16 W64 -> integerExtend W16 W64 MOVZxL x
593       MO_UU_Conv W32 W64 -> integerExtend W32 W64 MOVZxL x
594       MO_SS_Conv W8  W64 -> integerExtend W8  W64 MOVSxL x
595       MO_SS_Conv W16 W64 -> integerExtend W16 W64 MOVSxL x
596       MO_SS_Conv W32 W64 -> integerExtend W32 W64 MOVSxL x
597         -- for 32-to-64 bit zero extension, amd64 uses an ordinary movl.
598         -- However, we don't want the register allocator to throw it
599         -- away as an unnecessary reg-to-reg move, so we keep it in
600         -- the form of a movzl and print it as a movl later.
601 #endif
602
603       MO_FF_Conv W32 W64
604         | sse2      -> coerceFP2FP W64 x
605         | otherwise -> conversionNop FF80 x 
606
607       MO_FF_Conv W64 W32
608         | sse2      -> coerceFP2FP W32 x
609         | otherwise -> conversionNop FF80 x 
610
611       MO_FS_Conv from to -> coerceFP2Int from to x
612       MO_SF_Conv from to -> coerceInt2FP from to x
613
614       other -> pprPanic "getRegister" (pprMachOp mop)
615    where
616         triv_ucode :: (Size -> Operand -> Instr) -> Size -> NatM Register
617         triv_ucode instr size = trivialUCode size (instr size) x
618
619         -- signed or unsigned extension.
620         integerExtend :: Width -> Width
621                       -> (Size -> Operand -> Operand -> Instr)
622                       -> CmmExpr -> NatM Register
623         integerExtend from to instr expr = do
624             (reg,e_code) <- if from == W8 then getByteReg expr
625                                           else getSomeReg expr
626             let 
627                 code dst = 
628                   e_code `snocOL`
629                   instr (intSize from) (OpReg reg) (OpReg dst)
630             return (Any (intSize to) code)
631
632         toI8Reg :: Width -> CmmExpr -> NatM Register
633         toI8Reg new_rep expr
634             = do codefn <- getAnyReg expr
635                  return (Any (intSize new_rep) codefn)
636                 -- HACK: use getAnyReg to get a byte-addressable register.
637                 -- If the source was a Fixed register, this will add the
638                 -- mov instruction to put it into the desired destination.
639                 -- We're assuming that the destination won't be a fixed
640                 -- non-byte-addressable register; it won't be, because all
641                 -- fixed registers are word-sized.
642
643         toI16Reg = toI8Reg -- for now
644
645         conversionNop :: Size -> CmmExpr -> NatM Register
646         conversionNop new_size expr
647             = do e_code <- getRegister expr
648                  return (swizzleRegisterRep e_code new_size)
649
650
651 getRegister e@(CmmMachOp mop [x, y]) = do -- dyadic MachOps
652   sse2 <- sse2Enabled
653   case mop of
654       MO_F_Eq w -> condFltReg EQQ x y
655       MO_F_Ne w -> condFltReg NE x y
656       MO_F_Gt w -> condFltReg GTT x y
657       MO_F_Ge w -> condFltReg GE x y
658       MO_F_Lt w -> condFltReg LTT x y
659       MO_F_Le w -> condFltReg LE x y
660
661       MO_Eq rep   -> condIntReg EQQ x y
662       MO_Ne rep   -> condIntReg NE x y
663
664       MO_S_Gt rep -> condIntReg GTT x y
665       MO_S_Ge rep -> condIntReg GE x y
666       MO_S_Lt rep -> condIntReg LTT x y
667       MO_S_Le rep -> condIntReg LE x y
668
669       MO_U_Gt rep -> condIntReg GU  x y
670       MO_U_Ge rep -> condIntReg GEU x y
671       MO_U_Lt rep -> condIntReg LU  x y
672       MO_U_Le rep -> condIntReg LEU x y
673
674       MO_F_Add w  | sse2      -> trivialFCode_sse2 w ADD  x y
675                   | otherwise -> trivialFCode_x87  w GADD x y
676       MO_F_Sub w  | sse2      -> trivialFCode_sse2 w SUB  x y
677                   | otherwise -> trivialFCode_x87  w GSUB x y
678       MO_F_Quot w | sse2      -> trivialFCode_sse2 w FDIV x y
679                   | otherwise -> trivialFCode_x87  w GDIV x y
680       MO_F_Mul w  | sse2      -> trivialFCode_sse2 w MUL x y
681                   | otherwise -> trivialFCode_x87  w GMUL x y
682
683       MO_Add rep -> add_code rep x y
684       MO_Sub rep -> sub_code rep x y
685
686       MO_S_Quot rep -> div_code rep True  True  x y
687       MO_S_Rem  rep -> div_code rep True  False x y
688       MO_U_Quot rep -> div_code rep False True  x y
689       MO_U_Rem  rep -> div_code rep False False x y
690
691       MO_S_MulMayOflo rep -> imulMayOflo rep x y
692
693       MO_Mul rep -> triv_op rep IMUL
694       MO_And rep -> triv_op rep AND
695       MO_Or  rep -> triv_op rep OR
696       MO_Xor rep -> triv_op rep XOR
697
698         {- Shift ops on x86s have constraints on their source, it
699            either has to be Imm, CL or 1
700             => trivialCode is not restrictive enough (sigh.)
701         -}         
702       MO_Shl rep   -> shift_code rep SHL x y {-False-}
703       MO_U_Shr rep -> shift_code rep SHR x y {-False-}
704       MO_S_Shr rep -> shift_code rep SAR x y {-False-}
705
706       other -> pprPanic "getRegister(x86) - binary CmmMachOp (1)" (pprMachOp mop)
707   where
708     --------------------
709     triv_op width instr = trivialCode width op (Just op) x y
710                         where op   = instr (intSize width)
711
712     imulMayOflo :: Width -> CmmExpr -> CmmExpr -> NatM Register
713     imulMayOflo rep a b = do
714          (a_reg, a_code) <- getNonClobberedReg a
715          b_code <- getAnyReg b
716          let 
717              shift_amt  = case rep of
718                            W32 -> 31
719                            W64 -> 63
720                            _ -> panic "shift_amt"
721
722              size = intSize rep
723              code = a_code `appOL` b_code eax `appOL`
724                         toOL [
725                            IMUL2 size (OpReg a_reg),   -- result in %edx:%eax
726                            SAR size (OpImm (ImmInt shift_amt)) (OpReg eax),
727                                 -- sign extend lower part
728                            SUB size (OpReg edx) (OpReg eax)
729                                 -- compare against upper
730                            -- eax==0 if high part == sign extended low part
731                         ]
732          -- in
733          return (Fixed size eax code)
734
735     --------------------
736     shift_code :: Width
737                -> (Size -> Operand -> Operand -> Instr)
738                -> CmmExpr
739                -> CmmExpr
740                -> NatM Register
741
742     {- Case1: shift length as immediate -}
743     shift_code width instr x y@(CmmLit lit) = do
744           x_code <- getAnyReg x
745           let
746                size = intSize width
747                code dst
748                   = x_code dst `snocOL` 
749                     instr size (OpImm (litToImm lit)) (OpReg dst)
750           -- in
751           return (Any size code)
752         
753     {- Case2: shift length is complex (non-immediate)
754       * y must go in %ecx.
755       * we cannot do y first *and* put its result in %ecx, because
756         %ecx might be clobbered by x.
757       * if we do y second, then x cannot be 
758         in a clobbered reg.  Also, we cannot clobber x's reg
759         with the instruction itself.
760       * so we can either:
761         - do y first, put its result in a fresh tmp, then copy it to %ecx later
762         - do y second and put its result into %ecx.  x gets placed in a fresh
763           tmp.  This is likely to be better, becuase the reg alloc can
764           eliminate this reg->reg move here (it won't eliminate the other one,
765           because the move is into the fixed %ecx).
766     -}
767     shift_code width instr x y{-amount-} = do
768         x_code <- getAnyReg x
769         let size = intSize width
770         tmp <- getNewRegNat size
771         y_code <- getAnyReg y
772         let 
773            code = x_code tmp `appOL`
774                   y_code ecx `snocOL`
775                   instr size (OpReg ecx) (OpReg tmp)
776         -- in
777         return (Fixed size tmp code)
778
779     --------------------
780     add_code :: Width -> CmmExpr -> CmmExpr -> NatM Register
781     add_code rep x (CmmLit (CmmInt y _))
782         | is32BitInteger y = add_int rep x y
783     add_code rep x y = trivialCode rep (ADD size) (Just (ADD size)) x y
784       where size = intSize rep
785
786     --------------------
787     sub_code :: Width -> CmmExpr -> CmmExpr -> NatM Register
788     sub_code rep x (CmmLit (CmmInt y _))
789         | is32BitInteger (-y) = add_int rep x (-y)
790     sub_code rep x y = trivialCode rep (SUB (intSize rep)) Nothing x y
791
792     -- our three-operand add instruction:
793     add_int width x y = do
794         (x_reg, x_code) <- getSomeReg x
795         let
796             size = intSize width
797             imm = ImmInt (fromInteger y)
798             code dst
799                = x_code `snocOL`
800                  LEA size
801                         (OpAddr (AddrBaseIndex (EABaseReg x_reg) EAIndexNone imm))
802                         (OpReg dst)
803         -- 
804         return (Any size code)
805
806     ----------------------
807     div_code width signed quotient x y = do
808            (y_op, y_code) <- getRegOrMem y -- cannot be clobbered
809            x_code <- getAnyReg x
810            let
811              size = intSize width
812              widen | signed    = CLTD size
813                    | otherwise = XOR size (OpReg edx) (OpReg edx)
814
815              instr | signed    = IDIV
816                    | otherwise = DIV
817
818              code = y_code `appOL`
819                     x_code eax `appOL`
820                     toOL [widen, instr size y_op]
821
822              result | quotient  = eax
823                     | otherwise = edx
824
825            -- in
826            return (Fixed size result code)
827
828
829 getRegister (CmmLoad mem pk)
830   | isFloatType pk
831   = do
832     Amode addr mem_code <- getAmode mem
833     use_sse2 <- sse2Enabled
834     loadFloatAmode use_sse2 (typeWidth pk) addr mem_code
835
836 #if i386_TARGET_ARCH
837 getRegister (CmmLoad mem pk)
838   | not (isWord64 pk)
839   = do 
840     code <- intLoadCode instr mem
841     return (Any size code)
842   where
843     width = typeWidth pk
844     size = intSize width
845     instr = case width of
846                 W8     -> MOVZxL II8
847                 _other -> MOV size
848         -- We always zero-extend 8-bit loads, if we
849         -- can't think of anything better.  This is because
850         -- we can't guarantee access to an 8-bit variant of every register
851         -- (esi and edi don't have 8-bit variants), so to make things
852         -- simpler we do our 8-bit arithmetic with full 32-bit registers.
853 #endif
854
855 #if x86_64_TARGET_ARCH
856 -- Simpler memory load code on x86_64
857 getRegister (CmmLoad mem pk)
858   = do 
859     code <- intLoadCode (MOV size) mem
860     return (Any size code)
861   where size = intSize $ typeWidth pk
862 #endif
863
864 getRegister (CmmLit (CmmInt 0 width))
865   = let
866         size = intSize width
867
868         -- x86_64: 32-bit xor is one byte shorter, and zero-extends to 64 bits
869         adj_size = case size of II64 -> II32; _ -> size
870         size1 = IF_ARCH_i386( size, adj_size ) 
871         code dst 
872            = unitOL (XOR size1 (OpReg dst) (OpReg dst))
873     in
874         return (Any size code)
875
876 #if x86_64_TARGET_ARCH
877   -- optimisation for loading small literals on x86_64: take advantage
878   -- of the automatic zero-extension from 32 to 64 bits, because the 32-bit
879   -- instruction forms are shorter.
880 getRegister (CmmLit lit) 
881   | isWord64 (cmmLitType lit), not (isBigLit lit)
882   = let 
883         imm = litToImm lit
884         code dst = unitOL (MOV II32 (OpImm imm) (OpReg dst))
885     in
886         return (Any II64 code)
887   where
888    isBigLit (CmmInt i _) = i < 0 || i > 0xffffffff
889    isBigLit _ = False
890         -- note1: not the same as (not.is32BitLit), because that checks for
891         -- signed literals that fit in 32 bits, but we want unsigned
892         -- literals here.
893         -- note2: all labels are small, because we're assuming the
894         -- small memory model (see gcc docs, -mcmodel=small).
895 #endif
896
897 getRegister (CmmLit lit)
898   = let 
899         size = cmmTypeSize (cmmLitType lit)
900         imm = litToImm lit
901         code dst = unitOL (MOV size (OpImm imm) (OpReg dst))
902     in
903         return (Any size code)
904
905 getRegister other = pprPanic "getRegister(x86)" (ppr other)
906
907
908 intLoadCode :: (Operand -> Operand -> Instr) -> CmmExpr
909    -> NatM (Reg -> InstrBlock)
910 intLoadCode instr mem = do
911   Amode src mem_code <- getAmode mem
912   return (\dst -> mem_code `snocOL` instr (OpAddr src) (OpReg dst))
913
914 -- Compute an expression into *any* register, adding the appropriate
915 -- move instruction if necessary.
916 getAnyReg :: CmmExpr -> NatM (Reg -> InstrBlock)
917 getAnyReg expr = do
918   r <- getRegister expr
919   anyReg r
920
921 anyReg :: Register -> NatM (Reg -> InstrBlock)
922 anyReg (Any _ code)          = return code
923 anyReg (Fixed rep reg fcode) = return (\dst -> fcode `snocOL` reg2reg rep reg dst)
924
925 -- A bit like getSomeReg, but we want a reg that can be byte-addressed.
926 -- Fixed registers might not be byte-addressable, so we make sure we've
927 -- got a temporary, inserting an extra reg copy if necessary.
928 getByteReg :: CmmExpr -> NatM (Reg, InstrBlock)
929 #if x86_64_TARGET_ARCH
930 getByteReg = getSomeReg -- all regs are byte-addressable on x86_64
931 #else
932 getByteReg expr = do
933   r <- getRegister expr
934   case r of
935     Any rep code -> do
936         tmp <- getNewRegNat rep
937         return (tmp, code tmp)
938     Fixed rep reg code 
939         | isVirtualReg reg -> return (reg,code)
940         | otherwise -> do
941             tmp <- getNewRegNat rep
942             return (tmp, code `snocOL` reg2reg rep reg tmp)
943         -- ToDo: could optimise slightly by checking for byte-addressable
944         -- real registers, but that will happen very rarely if at all.
945 #endif
946
947 -- Another variant: this time we want the result in a register that cannot
948 -- be modified by code to evaluate an arbitrary expression.
949 getNonClobberedReg :: CmmExpr -> NatM (Reg, InstrBlock)
950 getNonClobberedReg expr = do
951   r <- getRegister expr
952   case r of
953     Any rep code -> do
954         tmp <- getNewRegNat rep
955         return (tmp, code tmp)
956     Fixed rep reg code
957         -- only free regs can be clobbered
958         | RegReal (RealRegSingle rr) <- reg
959         , isFastTrue (freeReg rr) 
960         -> do
961                 tmp <- getNewRegNat rep
962                 return (tmp, code `snocOL` reg2reg rep reg tmp)
963         | otherwise -> 
964                 return (reg, code)
965
966 reg2reg :: Size -> Reg -> Reg -> Instr
967 reg2reg size src dst 
968   | size == FF80 = GMOV src dst
969   | otherwise    = MOV size (OpReg src) (OpReg dst)
970
971
972 --------------------------------------------------------------------------------
973 getAmode :: CmmExpr -> NatM Amode
974 getAmode tree@(CmmRegOff _ _) = getAmode (mangleIndexTree tree)
975
976 #if x86_64_TARGET_ARCH
977
978 getAmode (CmmMachOp (MO_Add W64) [CmmReg (CmmGlobal PicBaseReg),
979                                      CmmLit displacement])
980     = return $ Amode (ripRel (litToImm displacement)) nilOL
981
982 #endif
983
984
985 -- This is all just ridiculous, since it carefully undoes 
986 -- what mangleIndexTree has just done.
987 getAmode (CmmMachOp (MO_Sub rep) [x, CmmLit lit@(CmmInt i _)])
988   | is32BitLit lit
989   -- ASSERT(rep == II32)???
990   = do (x_reg, x_code) <- getSomeReg x
991        let off = ImmInt (-(fromInteger i))
992        return (Amode (AddrBaseIndex (EABaseReg x_reg) EAIndexNone off) x_code)
993   
994 getAmode (CmmMachOp (MO_Add rep) [x, CmmLit lit@(CmmInt i _)])
995   | is32BitLit lit
996   -- ASSERT(rep == II32)???
997   = do (x_reg, x_code) <- getSomeReg x
998        let off = ImmInt (fromInteger i)
999        return (Amode (AddrBaseIndex (EABaseReg x_reg) EAIndexNone off) x_code)
1000
1001 -- Turn (lit1 << n  + lit2) into  (lit2 + lit1 << n) so it will be 
1002 -- recognised by the next rule.
1003 getAmode (CmmMachOp (MO_Add rep) [a@(CmmMachOp (MO_Shl _) _),
1004                                   b@(CmmLit _)])
1005   = getAmode (CmmMachOp (MO_Add rep) [b,a])
1006
1007 getAmode (CmmMachOp (MO_Add rep) [x, CmmMachOp (MO_Shl _) 
1008                                         [y, CmmLit (CmmInt shift _)]])
1009   | shift == 0 || shift == 1 || shift == 2 || shift == 3
1010   = x86_complex_amode x y shift 0
1011
1012 getAmode (CmmMachOp (MO_Add rep) 
1013                 [x, CmmMachOp (MO_Add _)
1014                         [CmmMachOp (MO_Shl _) [y, CmmLit (CmmInt shift _)],
1015                          CmmLit (CmmInt offset _)]])
1016   | shift == 0 || shift == 1 || shift == 2 || shift == 3
1017   && is32BitInteger offset
1018   = x86_complex_amode x y shift offset
1019
1020 getAmode (CmmMachOp (MO_Add rep) [x,y])
1021   = x86_complex_amode x y 0 0
1022
1023 getAmode (CmmLit lit) | is32BitLit lit
1024   = return (Amode (ImmAddr (litToImm lit) 0) nilOL)
1025
1026 getAmode expr = do
1027   (reg,code) <- getSomeReg expr
1028   return (Amode (AddrBaseIndex (EABaseReg reg) EAIndexNone (ImmInt 0)) code)
1029
1030
1031 x86_complex_amode :: CmmExpr -> CmmExpr -> Integer -> Integer -> NatM Amode
1032 x86_complex_amode base index shift offset
1033   = do (x_reg, x_code) <- getNonClobberedReg base
1034         -- x must be in a temp, because it has to stay live over y_code
1035         -- we could compre x_reg and y_reg and do something better here...
1036        (y_reg, y_code) <- getSomeReg index
1037        let
1038            code = x_code `appOL` y_code
1039            base = case shift of 0 -> 1; 1 -> 2; 2 -> 4; 3 -> 8
1040        return (Amode (AddrBaseIndex (EABaseReg x_reg) (EAIndex y_reg base) (ImmInt (fromIntegral offset)))
1041                code)
1042
1043
1044
1045
1046 -- -----------------------------------------------------------------------------
1047 -- getOperand: sometimes any operand will do.
1048
1049 -- getNonClobberedOperand: the value of the operand will remain valid across
1050 -- the computation of an arbitrary expression, unless the expression
1051 -- is computed directly into a register which the operand refers to
1052 -- (see trivialCode where this function is used for an example).
1053
1054 getNonClobberedOperand :: CmmExpr -> NatM (Operand, InstrBlock)
1055 getNonClobberedOperand (CmmLit lit) = do
1056   use_sse2 <- sse2Enabled
1057   if use_sse2 && isSuitableFloatingPointLit lit
1058     then do
1059       let CmmFloat _ w = lit
1060       Amode addr code <- memConstant (widthInBytes w) lit
1061       return (OpAddr addr, code)
1062      else do
1063
1064   if is32BitLit lit && not (isFloatType (cmmLitType lit))
1065     then return (OpImm (litToImm lit), nilOL)
1066     else getNonClobberedOperand_generic (CmmLit lit)
1067
1068 getNonClobberedOperand (CmmLoad mem pk) = do
1069   use_sse2 <- sse2Enabled
1070   if (not (isFloatType pk) || use_sse2)
1071       && IF_ARCH_i386(not (isWord64 pk), True)
1072     then do
1073       Amode src mem_code <- getAmode mem
1074       (src',save_code) <- 
1075         if (amodeCouldBeClobbered src) 
1076                 then do
1077                    tmp <- getNewRegNat archWordSize
1078                    return (AddrBaseIndex (EABaseReg tmp) EAIndexNone (ImmInt 0),
1079                            unitOL (LEA II32 (OpAddr src) (OpReg tmp)))
1080                 else
1081                    return (src, nilOL)
1082       return (OpAddr src', save_code `appOL` mem_code)
1083     else do
1084       getNonClobberedOperand_generic (CmmLoad mem pk)
1085
1086 getNonClobberedOperand e = getNonClobberedOperand_generic e
1087
1088 getNonClobberedOperand_generic :: CmmExpr -> NatM (Operand, InstrBlock)
1089 getNonClobberedOperand_generic e = do
1090     (reg, code) <- getNonClobberedReg e
1091     return (OpReg reg, code)
1092
1093 amodeCouldBeClobbered :: AddrMode -> Bool
1094 amodeCouldBeClobbered amode = any regClobbered (addrModeRegs amode)
1095
1096 regClobbered (RegReal (RealRegSingle rr)) = isFastTrue (freeReg rr)
1097 regClobbered _ = False
1098
1099 -- getOperand: the operand is not required to remain valid across the
1100 -- computation of an arbitrary expression.
1101 getOperand :: CmmExpr -> NatM (Operand, InstrBlock)
1102
1103 getOperand (CmmLit lit) = do
1104   use_sse2 <- sse2Enabled
1105   if (use_sse2 && isSuitableFloatingPointLit lit)
1106     then do
1107       let CmmFloat _ w = lit
1108       Amode addr code <- memConstant (widthInBytes w) lit
1109       return (OpAddr addr, code)
1110     else do
1111
1112   if is32BitLit lit && not (isFloatType (cmmLitType lit))
1113     then return (OpImm (litToImm lit), nilOL)
1114     else getOperand_generic (CmmLit lit)
1115
1116 getOperand (CmmLoad mem pk) = do
1117   use_sse2 <- sse2Enabled
1118   if (not (isFloatType pk) || use_sse2) && IF_ARCH_i386(not (isWord64 pk), True)
1119      then do
1120        Amode src mem_code <- getAmode mem
1121        return (OpAddr src, mem_code)
1122      else
1123        getOperand_generic (CmmLoad mem pk)
1124
1125 getOperand e = getOperand_generic e
1126
1127 getOperand_generic e = do
1128     (reg, code) <- getSomeReg e
1129     return (OpReg reg, code)
1130
1131 isOperand :: CmmExpr -> Bool
1132 isOperand (CmmLoad _ _) = True
1133 isOperand (CmmLit lit)  = is32BitLit lit
1134                           || isSuitableFloatingPointLit lit
1135 isOperand _             = False
1136
1137 memConstant :: Int -> CmmLit -> NatM Amode
1138 memConstant align lit = do
1139 #ifdef x86_64_TARGET_ARCH
1140   lbl <- getNewLabelNat
1141   let addr = ripRel (ImmCLbl lbl)
1142       addr_code = nilOL
1143 #else
1144   lbl <- getNewLabelNat
1145   dflags <- getDynFlagsNat
1146   dynRef <- cmmMakeDynamicReference dflags addImportNat DataReference lbl
1147   Amode addr addr_code <- getAmode dynRef
1148 #endif
1149   let code =
1150         LDATA ReadOnlyData
1151                 [CmmAlign align,
1152                  CmmDataLabel lbl,
1153                  CmmStaticLit lit]
1154         `consOL` addr_code
1155   return (Amode addr code)
1156
1157
1158 loadFloatAmode :: Bool -> Width -> AddrMode -> InstrBlock -> NatM Register
1159 loadFloatAmode use_sse2 w addr addr_code = do
1160   let size = floatSize w
1161       code dst = addr_code `snocOL`
1162                  if use_sse2
1163                     then MOV size (OpAddr addr) (OpReg dst)
1164                     else GLD size addr dst
1165   -- in
1166   return (Any (if use_sse2 then size else FF80) code)
1167
1168
1169 -- if we want a floating-point literal as an operand, we can
1170 -- use it directly from memory.  However, if the literal is
1171 -- zero, we're better off generating it into a register using
1172 -- xor.
1173 isSuitableFloatingPointLit (CmmFloat f _) = f /= 0.0
1174 isSuitableFloatingPointLit _ = False
1175
1176 getRegOrMem :: CmmExpr -> NatM (Operand, InstrBlock)
1177 getRegOrMem e@(CmmLoad mem pk) = do
1178   use_sse2 <- sse2Enabled
1179   if (not (isFloatType pk) || use_sse2) && IF_ARCH_i386(not (isWord64 pk), True)
1180      then do
1181        Amode src mem_code <- getAmode mem
1182        return (OpAddr src, mem_code)
1183      else do
1184        (reg, code) <- getNonClobberedReg e
1185        return (OpReg reg, code)
1186 getRegOrMem e = do
1187     (reg, code) <- getNonClobberedReg e
1188     return (OpReg reg, code)
1189
1190 #if x86_64_TARGET_ARCH
1191 is32BitLit (CmmInt i W64) = is32BitInteger i
1192    -- assume that labels are in the range 0-2^31-1: this assumes the
1193    -- small memory model (see gcc docs, -mcmodel=small).
1194 #endif
1195 is32BitLit x = True
1196
1197
1198
1199
1200 -- Set up a condition code for a conditional branch.
1201
1202 getCondCode :: CmmExpr -> NatM CondCode
1203
1204 -- yes, they really do seem to want exactly the same!
1205
1206 getCondCode (CmmMachOp mop [x, y])
1207   = 
1208     case mop of
1209       MO_F_Eq W32 -> condFltCode EQQ x y
1210       MO_F_Ne W32 -> condFltCode NE  x y
1211       MO_F_Gt W32 -> condFltCode GTT x y
1212       MO_F_Ge W32 -> condFltCode GE  x y
1213       MO_F_Lt W32 -> condFltCode LTT x y
1214       MO_F_Le W32 -> condFltCode LE  x y
1215
1216       MO_F_Eq W64 -> condFltCode EQQ x y
1217       MO_F_Ne W64 -> condFltCode NE  x y
1218       MO_F_Gt W64 -> condFltCode GTT x y
1219       MO_F_Ge W64 -> condFltCode GE  x y
1220       MO_F_Lt W64 -> condFltCode LTT x y
1221       MO_F_Le W64 -> condFltCode LE  x y
1222
1223       MO_Eq rep -> condIntCode EQQ  x y
1224       MO_Ne rep -> condIntCode NE   x y
1225
1226       MO_S_Gt rep -> condIntCode GTT  x y
1227       MO_S_Ge rep -> condIntCode GE   x y
1228       MO_S_Lt rep -> condIntCode LTT  x y
1229       MO_S_Le rep -> condIntCode LE   x y
1230
1231       MO_U_Gt rep -> condIntCode GU   x y
1232       MO_U_Ge rep -> condIntCode GEU  x y
1233       MO_U_Lt rep -> condIntCode LU   x y
1234       MO_U_Le rep -> condIntCode LEU  x y
1235
1236       other -> pprPanic "getCondCode(x86,x86_64,sparc)" (ppr (CmmMachOp mop [x,y]))
1237
1238 getCondCode other =  pprPanic "getCondCode(2)(x86,sparc)" (ppr other)
1239
1240
1241
1242
1243 -- @cond(Int|Flt)Code@: Turn a boolean expression into a condition, to be
1244 -- passed back up the tree.
1245
1246 condIntCode :: Cond -> CmmExpr -> CmmExpr -> NatM CondCode
1247
1248 -- memory vs immediate
1249 condIntCode cond (CmmLoad x pk) (CmmLit lit) | is32BitLit lit = do
1250     Amode x_addr x_code <- getAmode x
1251     let
1252         imm  = litToImm lit
1253         code = x_code `snocOL`
1254                   CMP (cmmTypeSize pk) (OpImm imm) (OpAddr x_addr)
1255     --
1256     return (CondCode False cond code)
1257
1258 -- anything vs zero, using a mask
1259 -- TODO: Add some sanity checking!!!!
1260 condIntCode cond (CmmMachOp (MO_And rep) [x,o2]) (CmmLit (CmmInt 0 pk))
1261     | (CmmLit lit@(CmmInt mask pk2)) <- o2, is32BitLit lit
1262     = do
1263       (x_reg, x_code) <- getSomeReg x
1264       let
1265          code = x_code `snocOL`
1266                 TEST (intSize pk) (OpImm (ImmInteger mask)) (OpReg x_reg)
1267       --
1268       return (CondCode False cond code)
1269
1270 -- anything vs zero
1271 condIntCode cond x (CmmLit (CmmInt 0 pk)) = do
1272     (x_reg, x_code) <- getSomeReg x
1273     let
1274         code = x_code `snocOL`
1275                   TEST (intSize pk) (OpReg x_reg) (OpReg x_reg)
1276     --
1277     return (CondCode False cond code)
1278
1279 -- anything vs operand
1280 condIntCode cond x y | isOperand y = do
1281     (x_reg, x_code) <- getNonClobberedReg x
1282     (y_op,  y_code) <- getOperand y    
1283     let
1284         code = x_code `appOL` y_code `snocOL`
1285                   CMP (cmmTypeSize (cmmExprType x)) y_op (OpReg x_reg)
1286     -- in
1287     return (CondCode False cond code)
1288
1289 -- anything vs anything
1290 condIntCode cond x y = do
1291   (y_reg, y_code) <- getNonClobberedReg y
1292   (x_op, x_code) <- getRegOrMem x
1293   let
1294         code = y_code `appOL`
1295                x_code `snocOL`
1296                   CMP (cmmTypeSize (cmmExprType x)) (OpReg y_reg) x_op
1297   -- in
1298   return (CondCode False cond code)
1299
1300
1301
1302 --------------------------------------------------------------------------------
1303 condFltCode :: Cond -> CmmExpr -> CmmExpr -> NatM CondCode
1304
1305 condFltCode cond x y 
1306   = if_sse2 condFltCode_sse2 condFltCode_x87
1307   where
1308
1309   condFltCode_x87
1310     = ASSERT(cond `elem` ([EQQ, NE, LE, LTT, GE, GTT])) do
1311     (x_reg, x_code) <- getNonClobberedReg x
1312     (y_reg, y_code) <- getSomeReg y
1313     use_sse2 <- sse2Enabled
1314     let
1315         code = x_code `appOL` y_code `snocOL`
1316                 GCMP cond x_reg y_reg
1317     -- The GCMP insn does the test and sets the zero flag if comparable
1318     -- and true.  Hence we always supply EQQ as the condition to test.
1319     return (CondCode True EQQ code)
1320   
1321   -- in the SSE2 comparison ops (ucomiss, ucomisd) the left arg may be
1322   -- an operand, but the right must be a reg.  We can probably do better
1323   -- than this general case...
1324   condFltCode_sse2 = do
1325     (x_reg, x_code) <- getNonClobberedReg x
1326     (y_op, y_code) <- getOperand y
1327     let
1328         code = x_code `appOL`
1329                y_code `snocOL`
1330                   CMP (floatSize $ cmmExprWidth x) y_op (OpReg x_reg)
1331         -- NB(1): we need to use the unsigned comparison operators on the
1332         -- result of this comparison.
1333     -- in
1334     return (CondCode True (condToUnsigned cond) code)
1335
1336 -- -----------------------------------------------------------------------------
1337 -- Generating assignments
1338
1339 -- Assignments are really at the heart of the whole code generation
1340 -- business.  Almost all top-level nodes of any real importance are
1341 -- assignments, which correspond to loads, stores, or register
1342 -- transfers.  If we're really lucky, some of the register transfers
1343 -- will go away, because we can use the destination register to
1344 -- complete the code generation for the right hand side.  This only
1345 -- fails when the right hand side is forced into a fixed register
1346 -- (e.g. the result of a call).
1347
1348 assignMem_IntCode :: Size -> CmmExpr -> CmmExpr -> NatM InstrBlock
1349 assignReg_IntCode :: Size -> CmmReg  -> CmmExpr -> NatM InstrBlock
1350
1351 assignMem_FltCode :: Size -> CmmExpr -> CmmExpr -> NatM InstrBlock
1352 assignReg_FltCode :: Size -> CmmReg  -> CmmExpr -> NatM InstrBlock
1353
1354
1355 -- integer assignment to memory
1356
1357 -- specific case of adding/subtracting an integer to a particular address.
1358 -- ToDo: catch other cases where we can use an operation directly on a memory 
1359 -- address.
1360 assignMem_IntCode pk addr (CmmMachOp op [CmmLoad addr2 _,
1361                                                  CmmLit (CmmInt i _)])
1362    | addr == addr2, pk /= II64 || is32BitInteger i,
1363      Just instr <- check op
1364    = do Amode amode code_addr <- getAmode addr
1365         let code = code_addr `snocOL`
1366                    instr pk (OpImm (ImmInt (fromIntegral i))) (OpAddr amode)
1367         return code
1368    where
1369         check (MO_Add _) = Just ADD
1370         check (MO_Sub _) = Just SUB
1371         check _ = Nothing
1372         -- ToDo: more?
1373
1374 -- general case
1375 assignMem_IntCode pk addr src = do
1376     Amode addr code_addr <- getAmode addr
1377     (code_src, op_src)   <- get_op_RI src
1378     let
1379         code = code_src `appOL`
1380                code_addr `snocOL`
1381                   MOV pk op_src (OpAddr addr)
1382         -- NOTE: op_src is stable, so it will still be valid
1383         -- after code_addr.  This may involve the introduction 
1384         -- of an extra MOV to a temporary register, but we hope
1385         -- the register allocator will get rid of it.
1386     --
1387     return code
1388   where
1389     get_op_RI :: CmmExpr -> NatM (InstrBlock,Operand)   -- code, operator
1390     get_op_RI (CmmLit lit) | is32BitLit lit
1391       = return (nilOL, OpImm (litToImm lit))
1392     get_op_RI op
1393       = do (reg,code) <- getNonClobberedReg op
1394            return (code, OpReg reg)
1395
1396
1397 -- Assign; dst is a reg, rhs is mem
1398 assignReg_IntCode pk reg (CmmLoad src _) = do
1399   load_code <- intLoadCode (MOV pk) src
1400   return (load_code (getRegisterReg False{-no sse2-} reg))
1401
1402 -- dst is a reg, but src could be anything
1403 assignReg_IntCode pk reg src = do
1404   code <- getAnyReg src
1405   return (code (getRegisterReg False{-no sse2-} reg))
1406
1407
1408 -- Floating point assignment to memory
1409 assignMem_FltCode pk addr src = do
1410   (src_reg, src_code) <- getNonClobberedReg src
1411   Amode addr addr_code <- getAmode addr
1412   use_sse2 <- sse2Enabled
1413   let
1414         code = src_code `appOL`
1415                addr_code `snocOL`
1416                 if use_sse2 then MOV pk (OpReg src_reg) (OpAddr addr)
1417                             else GST pk src_reg addr
1418   return code
1419
1420 -- Floating point assignment to a register/temporary
1421 assignReg_FltCode pk reg src = do
1422   use_sse2 <- sse2Enabled
1423   src_code <- getAnyReg src
1424   return (src_code (getRegisterReg use_sse2 reg))
1425
1426
1427 genJump :: CmmExpr{-the branch target-} -> NatM InstrBlock
1428
1429 genJump (CmmLoad mem pk) = do
1430   Amode target code <- getAmode mem
1431   return (code `snocOL` JMP (OpAddr target))
1432
1433 genJump (CmmLit lit) = do
1434   return (unitOL (JMP (OpImm (litToImm lit))))
1435
1436 genJump expr = do
1437   (reg,code) <- getSomeReg expr
1438   return (code `snocOL` JMP (OpReg reg))
1439
1440
1441 -- -----------------------------------------------------------------------------
1442 --  Unconditional branches
1443
1444 genBranch :: BlockId -> NatM InstrBlock
1445 genBranch = return . toOL . mkJumpInstr
1446
1447
1448
1449 -- -----------------------------------------------------------------------------
1450 --  Conditional jumps
1451
1452 {-
1453 Conditional jumps are always to local labels, so we can use branch
1454 instructions.  We peek at the arguments to decide what kind of
1455 comparison to do.
1456
1457 I386: First, we have to ensure that the condition
1458 codes are set according to the supplied comparison operation.
1459 -}
1460
1461 genCondJump
1462     :: BlockId      -- the branch target
1463     -> CmmExpr      -- the condition on which to branch
1464     -> NatM InstrBlock
1465
1466 genCondJump id bool = do
1467   CondCode is_float cond cond_code <- getCondCode bool
1468   use_sse2 <- sse2Enabled
1469   if not is_float || not use_sse2
1470     then
1471         return (cond_code `snocOL` JXX cond id)
1472     else do
1473         lbl <- getBlockIdNat
1474
1475         -- see comment with condFltReg
1476         let code = case cond of
1477                         NE  -> or_unordered
1478                         GU  -> plain_test
1479                         GEU -> plain_test
1480                         _   -> and_ordered
1481
1482             plain_test = unitOL (
1483                   JXX cond id
1484                 )
1485             or_unordered = toOL [
1486                   JXX cond id,
1487                   JXX PARITY id
1488                 ]
1489             and_ordered = toOL [
1490                   JXX PARITY lbl,
1491                   JXX cond id,
1492                   JXX ALWAYS lbl,
1493                   NEWBLOCK lbl
1494                 ]
1495         return (cond_code `appOL` code)
1496
1497
1498 -- -----------------------------------------------------------------------------
1499 --  Generating C calls
1500
1501 -- Now the biggest nightmare---calls.  Most of the nastiness is buried in
1502 -- @get_arg@, which moves the arguments to the correct registers/stack
1503 -- locations.  Apart from that, the code is easy.
1504 -- 
1505 -- (If applicable) Do not fill the delay slots here; you will confuse the
1506 -- register allocator.
1507
1508 genCCall
1509     :: CmmCallTarget            -- function to call
1510     -> HintedCmmFormals         -- where to put the result
1511     -> HintedCmmActuals         -- arguments (of mixed type)
1512     -> NatM InstrBlock
1513
1514 -- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
1515
1516 #if i386_TARGET_ARCH
1517
1518 genCCall (CmmPrim MO_WriteBarrier) _ _ = return nilOL
1519         -- write barrier compiles to no code on x86/x86-64; 
1520         -- we keep it this long in order to prevent earlier optimisations.
1521
1522 -- we only cope with a single result for foreign calls
1523 genCCall (CmmPrim op) [CmmHinted r _] args = do
1524   l1 <- getNewLabelNat
1525   l2 <- getNewLabelNat
1526   sse2 <- sse2Enabled
1527   if sse2
1528     then
1529       outOfLineFloatOp op r args
1530     else case op of
1531         MO_F32_Sqrt -> actuallyInlineFloatOp GSQRT FF32 args
1532         MO_F64_Sqrt -> actuallyInlineFloatOp GSQRT FF64 args
1533         
1534         MO_F32_Sin  -> actuallyInlineFloatOp (\s -> GSIN s l1 l2) FF32 args
1535         MO_F64_Sin  -> actuallyInlineFloatOp (\s -> GSIN s l1 l2) FF64 args
1536
1537         MO_F32_Cos  -> actuallyInlineFloatOp (\s -> GCOS s l1 l2) FF32 args
1538         MO_F64_Cos  -> actuallyInlineFloatOp (\s -> GCOS s l1 l2) FF64 args
1539
1540         MO_F32_Tan  -> actuallyInlineFloatOp (\s -> GTAN s l1 l2) FF32 args
1541         MO_F64_Tan  -> actuallyInlineFloatOp (\s -> GTAN s l1 l2) FF64 args
1542         
1543         other_op    -> outOfLineFloatOp op r args
1544
1545  where
1546   actuallyInlineFloatOp instr size [CmmHinted x _]
1547         = do res <- trivialUFCode size (instr size) x
1548              any <- anyReg res
1549              return (any (getRegisterReg False (CmmLocal r)))
1550
1551 genCCall target dest_regs args = do
1552     let
1553         sizes               = map (arg_size . cmmExprType . hintlessCmm) (reverse args)
1554 #if !darwin_TARGET_OS        
1555         tot_arg_size        = sum sizes
1556 #else
1557         raw_arg_size        = sum sizes
1558         tot_arg_size        = roundTo 16 raw_arg_size
1559         arg_pad_size        = tot_arg_size - raw_arg_size
1560     delta0 <- getDeltaNat
1561     setDeltaNat (delta0 - arg_pad_size)
1562 #endif
1563
1564     use_sse2 <- sse2Enabled
1565     push_codes <- mapM (push_arg use_sse2) (reverse args)
1566     delta <- getDeltaNat
1567
1568     -- in
1569     -- deal with static vs dynamic call targets
1570     (callinsns,cconv) <-
1571       case target of
1572         -- CmmPrim -> ...
1573         CmmCallee (CmmLit (CmmLabel lbl)) conv
1574            -> -- ToDo: stdcall arg sizes
1575               return (unitOL (CALL (Left fn_imm) []), conv)
1576            where fn_imm = ImmCLbl lbl
1577         CmmCallee expr conv
1578            -> do { (dyn_r, dyn_c) <- getSomeReg expr
1579                  ; ASSERT( isWord32 (cmmExprType expr) )
1580                    return (dyn_c `snocOL` CALL (Right dyn_r) [], conv) }
1581
1582     let push_code
1583 #if darwin_TARGET_OS
1584             | arg_pad_size /= 0
1585             = toOL [SUB II32 (OpImm (ImmInt arg_pad_size)) (OpReg esp),
1586                     DELTA (delta0 - arg_pad_size)]
1587               `appOL` concatOL push_codes
1588             | otherwise
1589 #endif
1590             = concatOL push_codes
1591         call = callinsns `appOL`
1592                toOL (
1593                         -- Deallocate parameters after call for ccall;
1594                         -- but not for stdcall (callee does it)
1595                   (if cconv == StdCallConv || tot_arg_size==0 then [] else 
1596                    [ADD II32 (OpImm (ImmInt tot_arg_size)) (OpReg esp)])
1597                   ++
1598                   [DELTA (delta + tot_arg_size)]
1599                )
1600     -- in
1601     setDeltaNat (delta + tot_arg_size)
1602
1603     let
1604         -- assign the results, if necessary
1605         assign_code []     = nilOL
1606         assign_code [CmmHinted dest _hint]
1607           | isFloatType ty = 
1608              if use_sse2
1609                 then let tmp_amode = AddrBaseIndex (EABaseReg esp)
1610                                                    EAIndexNone
1611                                                    (ImmInt 0)
1612                          sz = floatSize w
1613                      in toOL [ SUB II32 (OpImm (ImmInt b)) (OpReg esp),
1614                                GST sz fake0 tmp_amode,
1615                                MOV sz (OpAddr tmp_amode) (OpReg r_dest),
1616                                ADD II32 (OpImm (ImmInt b)) (OpReg esp)]
1617                 else unitOL (GMOV fake0 r_dest)
1618           | isWord64 ty    = toOL [MOV II32 (OpReg eax) (OpReg r_dest),
1619                                     MOV II32 (OpReg edx) (OpReg r_dest_hi)]
1620           | otherwise      = unitOL (MOV (intSize w) (OpReg eax) (OpReg r_dest))
1621           where 
1622                 ty = localRegType dest
1623                 w  = typeWidth ty
1624                 b  = widthInBytes w
1625                 r_dest_hi = getHiVRegFromLo r_dest
1626                 r_dest    = getRegisterReg use_sse2 (CmmLocal dest)
1627         assign_code many = pprPanic "genCCall.assign_code - too many return values:" (ppr many)
1628
1629     return (push_code `appOL` 
1630             call `appOL` 
1631             assign_code dest_regs)
1632
1633   where
1634     arg_size :: CmmType -> Int  -- Width in bytes
1635     arg_size ty = widthInBytes (typeWidth ty)
1636
1637     roundTo a x | x `mod` a == 0 = x
1638                 | otherwise = x + a - (x `mod` a)
1639
1640
1641     push_arg :: Bool -> HintedCmmActual {-current argument-}
1642                     -> NatM InstrBlock  -- code
1643
1644     push_arg use_sse2 (CmmHinted arg _hint) -- we don't need the hints on x86
1645       | isWord64 arg_ty = do
1646         ChildCode64 code r_lo <- iselExpr64 arg
1647         delta <- getDeltaNat
1648         setDeltaNat (delta - 8)
1649         let 
1650             r_hi = getHiVRegFromLo r_lo
1651         -- in
1652         return (       code `appOL`
1653                        toOL [PUSH II32 (OpReg r_hi), DELTA (delta - 4),
1654                              PUSH II32 (OpReg r_lo), DELTA (delta - 8),
1655                              DELTA (delta-8)]
1656             )
1657
1658       | isFloatType arg_ty = do
1659         (reg, code) <- getSomeReg arg
1660         delta <- getDeltaNat
1661         setDeltaNat (delta-size)
1662         return (code `appOL`
1663                         toOL [SUB II32 (OpImm (ImmInt size)) (OpReg esp),
1664                               DELTA (delta-size),
1665                               let addr = AddrBaseIndex (EABaseReg esp) 
1666                                                         EAIndexNone
1667                                                         (ImmInt 0)
1668                                   size = floatSize (typeWidth arg_ty)
1669                               in
1670                               if use_sse2 
1671                                  then MOV size (OpReg reg) (OpAddr addr)
1672                                  else GST size reg addr
1673                              ]
1674                        )
1675
1676       | otherwise = do
1677         (operand, code) <- getOperand arg
1678         delta <- getDeltaNat
1679         setDeltaNat (delta-size)
1680         return (code `snocOL`
1681                 PUSH II32 operand `snocOL`
1682                 DELTA (delta-size))
1683
1684       where
1685          arg_ty = cmmExprType arg
1686          size = arg_size arg_ty -- Byte size
1687
1688 #elif x86_64_TARGET_ARCH
1689
1690 genCCall (CmmPrim MO_WriteBarrier) _ _ = return nilOL
1691         -- write barrier compiles to no code on x86/x86-64; 
1692         -- we keep it this long in order to prevent earlier optimisations.
1693
1694
1695 genCCall (CmmPrim op) [CmmHinted r _] args = 
1696   outOfLineFloatOp op r args
1697
1698 genCCall target dest_regs args = do
1699
1700         -- load up the register arguments
1701     (stack_args, aregs, fregs, load_args_code)
1702          <- load_args args allArgRegs allFPArgRegs nilOL
1703
1704     let
1705         fp_regs_used  = reverse (drop (length fregs) (reverse allFPArgRegs))
1706         int_regs_used = reverse (drop (length aregs) (reverse allArgRegs))
1707         arg_regs = [eax] ++ int_regs_used ++ fp_regs_used
1708                 -- for annotating the call instruction with
1709
1710         sse_regs = length fp_regs_used
1711
1712         tot_arg_size = arg_size * length stack_args
1713
1714         -- On entry to the called function, %rsp should be aligned
1715         -- on a 16-byte boundary +8 (i.e. the first stack arg after
1716         -- the return address is 16-byte aligned).  In STG land
1717         -- %rsp is kept 16-byte aligned (see StgCRun.c), so we just
1718         -- need to make sure we push a multiple of 16-bytes of args,
1719         -- plus the return address, to get the correct alignment.
1720         -- Urg, this is hard.  We need to feed the delta back into
1721         -- the arg pushing code.
1722     (real_size, adjust_rsp) <-
1723         if tot_arg_size `rem` 16 == 0
1724             then return (tot_arg_size, nilOL)
1725             else do -- we need to adjust...
1726                 delta <- getDeltaNat
1727                 setDeltaNat (delta-8)
1728                 return (tot_arg_size+8, toOL [
1729                                 SUB II64 (OpImm (ImmInt 8)) (OpReg rsp),
1730                                 DELTA (delta-8)
1731                         ])
1732
1733         -- push the stack args, right to left
1734     push_code <- push_args (reverse stack_args) nilOL
1735     delta <- getDeltaNat
1736
1737     -- deal with static vs dynamic call targets
1738     (callinsns,cconv) <-
1739       case target of
1740         -- CmmPrim -> ...
1741         CmmCallee (CmmLit (CmmLabel lbl)) conv
1742            -> -- ToDo: stdcall arg sizes
1743               return (unitOL (CALL (Left fn_imm) arg_regs), conv)
1744            where fn_imm = ImmCLbl lbl
1745         CmmCallee expr conv
1746            -> do (dyn_r, dyn_c) <- getSomeReg expr
1747                  return (dyn_c `snocOL` CALL (Right dyn_r) arg_regs, conv)
1748
1749     let
1750         -- The x86_64 ABI requires us to set %al to the number of SSE2
1751         -- registers that contain arguments, if the called routine
1752         -- is a varargs function.  We don't know whether it's a
1753         -- varargs function or not, so we have to assume it is.
1754         --
1755         -- It's not safe to omit this assignment, even if the number
1756         -- of SSE2 regs in use is zero.  If %al is larger than 8
1757         -- on entry to a varargs function, seg faults ensue.
1758         assign_eax n = unitOL (MOV II32 (OpImm (ImmInt n)) (OpReg eax))
1759
1760     let call = callinsns `appOL`
1761                toOL (
1762                         -- Deallocate parameters after call for ccall;
1763                         -- but not for stdcall (callee does it)
1764                   (if cconv == StdCallConv || real_size==0 then [] else 
1765                    [ADD (intSize wordWidth) (OpImm (ImmInt real_size)) (OpReg esp)])
1766                   ++
1767                   [DELTA (delta + real_size)]
1768                )
1769     -- in
1770     setDeltaNat (delta + real_size)
1771
1772     let
1773         -- assign the results, if necessary
1774         assign_code []     = nilOL
1775         assign_code [CmmHinted dest _hint] = 
1776           case typeWidth rep of
1777                 W32 | isFloatType rep -> unitOL (MOV (floatSize W32) (OpReg xmm0) (OpReg r_dest))
1778                 W64 | isFloatType rep -> unitOL (MOV (floatSize W64) (OpReg xmm0) (OpReg r_dest))
1779                 _ -> unitOL (MOV (cmmTypeSize rep) (OpReg rax) (OpReg r_dest))
1780           where 
1781                 rep = localRegType dest
1782                 r_dest = getRegisterReg True (CmmLocal dest)
1783         assign_code many = panic "genCCall.assign_code many"
1784
1785     return (load_args_code      `appOL` 
1786             adjust_rsp          `appOL`
1787             push_code           `appOL`
1788             assign_eax sse_regs `appOL`
1789             call                `appOL` 
1790             assign_code dest_regs)
1791
1792   where
1793     arg_size = 8 -- always, at the mo
1794
1795     load_args :: [CmmHinted CmmExpr]
1796               -> [Reg]                  -- int regs avail for args
1797               -> [Reg]                  -- FP regs avail for args
1798               -> InstrBlock
1799               -> NatM ([CmmHinted CmmExpr],[Reg],[Reg],InstrBlock)
1800     load_args args [] [] code     =  return (args, [], [], code)
1801         -- no more regs to use
1802     load_args [] aregs fregs code =  return ([], aregs, fregs, code)
1803         -- no more args to push
1804     load_args ((CmmHinted arg hint) : rest) aregs fregs code
1805         | isFloatType arg_rep = 
1806         case fregs of
1807           [] -> push_this_arg
1808           (r:rs) -> do
1809              arg_code <- getAnyReg arg
1810              load_args rest aregs rs (code `appOL` arg_code r)
1811         | otherwise =
1812         case aregs of
1813           [] -> push_this_arg
1814           (r:rs) -> do
1815              arg_code <- getAnyReg arg
1816              load_args rest rs fregs (code `appOL` arg_code r)
1817         where
1818           arg_rep = cmmExprType arg
1819
1820           push_this_arg = do
1821             (args',ars,frs,code') <- load_args rest aregs fregs code
1822             return ((CmmHinted arg hint):args', ars, frs, code')
1823
1824     push_args [] code = return code
1825     push_args ((CmmHinted arg hint):rest) code
1826        | isFloatType arg_rep = do
1827          (arg_reg, arg_code) <- getSomeReg arg
1828          delta <- getDeltaNat
1829          setDeltaNat (delta-arg_size)
1830          let code' = code `appOL` arg_code `appOL` toOL [
1831                         SUB (intSize wordWidth) (OpImm (ImmInt arg_size)) (OpReg rsp) ,
1832                         DELTA (delta-arg_size),
1833                         MOV (floatSize width) (OpReg arg_reg) (OpAddr  (spRel 0))]
1834          push_args rest code'
1835
1836        | otherwise = do
1837        -- we only ever generate word-sized function arguments.  Promotion
1838        -- has already happened: our Int8# type is kept sign-extended
1839        -- in an Int#, for example.
1840          ASSERT(width == W64) return ()
1841          (arg_op, arg_code) <- getOperand arg
1842          delta <- getDeltaNat
1843          setDeltaNat (delta-arg_size)
1844          let code' = code `appOL` arg_code `appOL` toOL [
1845                                 PUSH II64 arg_op, 
1846                                 DELTA (delta-arg_size)]
1847          push_args rest code'
1848         where
1849           arg_rep = cmmExprType arg
1850           width = typeWidth arg_rep
1851
1852 #else
1853 genCCall        = panic "X86.genCCAll: not defined"
1854
1855 #endif /* x86_64_TARGET_ARCH */
1856
1857
1858
1859
1860 outOfLineFloatOp :: CallishMachOp -> CmmFormal -> HintedCmmActuals -> NatM InstrBlock
1861 outOfLineFloatOp mop res args
1862   = do
1863       dflags <- getDynFlagsNat
1864       targetExpr <- cmmMakeDynamicReference dflags addImportNat CallReference lbl
1865       let target = CmmCallee targetExpr CCallConv
1866      
1867       stmtToInstrs (CmmCall target [CmmHinted res NoHint] args CmmUnsafe CmmMayReturn)
1868   where
1869         -- Assume we can call these functions directly, and that they're not in a dynamic library.
1870         -- TODO: Why is this ok? Under linux this code will be in libm.so
1871         --       Is is because they're really implemented as a primitive instruction by the assembler??  -- BL 2009/12/31 
1872         lbl = mkForeignLabel fn Nothing ForeignLabelInThisPackage IsFunction
1873
1874         fn = case mop of
1875               MO_F32_Sqrt  -> fsLit "sqrtf"
1876               MO_F32_Sin   -> fsLit "sinf"
1877               MO_F32_Cos   -> fsLit "cosf"
1878               MO_F32_Tan   -> fsLit "tanf"
1879               MO_F32_Exp   -> fsLit "expf"
1880               MO_F32_Log   -> fsLit "logf"
1881
1882               MO_F32_Asin  -> fsLit "asinf"
1883               MO_F32_Acos  -> fsLit "acosf"
1884               MO_F32_Atan  -> fsLit "atanf"
1885
1886               MO_F32_Sinh  -> fsLit "sinhf"
1887               MO_F32_Cosh  -> fsLit "coshf"
1888               MO_F32_Tanh  -> fsLit "tanhf"
1889               MO_F32_Pwr   -> fsLit "powf"
1890
1891               MO_F64_Sqrt  -> fsLit "sqrt"
1892               MO_F64_Sin   -> fsLit "sin"
1893               MO_F64_Cos   -> fsLit "cos"
1894               MO_F64_Tan   -> fsLit "tan"
1895               MO_F64_Exp   -> fsLit "exp"
1896               MO_F64_Log   -> fsLit "log"
1897
1898               MO_F64_Asin  -> fsLit "asin"
1899               MO_F64_Acos  -> fsLit "acos"
1900               MO_F64_Atan  -> fsLit "atan"
1901
1902               MO_F64_Sinh  -> fsLit "sinh"
1903               MO_F64_Cosh  -> fsLit "cosh"
1904               MO_F64_Tanh  -> fsLit "tanh"
1905               MO_F64_Pwr   -> fsLit "pow"
1906
1907
1908
1909
1910
1911 -- -----------------------------------------------------------------------------
1912 -- Generating a table-branch
1913
1914 genSwitch :: CmmExpr -> [Maybe BlockId] -> NatM InstrBlock
1915
1916 genSwitch expr ids
1917   | opt_PIC
1918   = do
1919         (reg,e_code) <- getSomeReg expr
1920         lbl <- getNewLabelNat
1921         dflags <- getDynFlagsNat
1922         dynRef <- cmmMakeDynamicReference dflags addImportNat DataReference lbl
1923         (tableReg,t_code) <- getSomeReg $ dynRef
1924         let
1925             jumpTable = map jumpTableEntryRel ids
1926             
1927             jumpTableEntryRel Nothing
1928                 = CmmStaticLit (CmmInt 0 wordWidth)
1929             jumpTableEntryRel (Just (BlockId id))
1930                 = CmmStaticLit (CmmLabelDiffOff blockLabel lbl 0)
1931                 where blockLabel = mkAsmTempLabel id
1932
1933             op = OpAddr (AddrBaseIndex (EABaseReg tableReg)
1934                                        (EAIndex reg wORD_SIZE) (ImmInt 0))
1935
1936 #if x86_64_TARGET_ARCH
1937 #if darwin_TARGET_OS
1938     -- on Mac OS X/x86_64, put the jump table in the text section
1939     -- to work around a limitation of the linker.
1940     -- ld64 is unable to handle the relocations for
1941     --     .quad L1 - L0
1942     -- if L0 is not preceded by a non-anonymous label in its section.
1943     
1944             code = e_code `appOL` t_code `appOL` toOL [
1945                             ADD (intSize wordWidth) op (OpReg tableReg),
1946                             JMP_TBL (OpReg tableReg) [ id | Just id <- ids ],
1947                             LDATA Text (CmmDataLabel lbl : jumpTable)
1948                     ]
1949 #else
1950     -- HACK: On x86_64 binutils<2.17 is only able to generate PC32
1951     -- relocations, hence we only get 32-bit offsets in the jump
1952     -- table. As these offsets are always negative we need to properly
1953     -- sign extend them to 64-bit. This hack should be removed in
1954     -- conjunction with the hack in PprMach.hs/pprDataItem once
1955     -- binutils 2.17 is standard.
1956             code = e_code `appOL` t_code `appOL` toOL [
1957                             LDATA ReadOnlyData (CmmDataLabel lbl : jumpTable),
1958                             MOVSxL II32
1959                                    (OpAddr (AddrBaseIndex (EABaseReg tableReg)
1960                                                           (EAIndex reg wORD_SIZE) (ImmInt 0)))
1961                                    (OpReg reg),
1962                             ADD (intSize wordWidth) (OpReg reg) (OpReg tableReg),
1963                             JMP_TBL (OpReg tableReg) [ id | Just id <- ids ]
1964                    ]
1965 #endif
1966 #else
1967             code = e_code `appOL` t_code `appOL` toOL [
1968                             LDATA ReadOnlyData (CmmDataLabel lbl : jumpTable),
1969                             ADD (intSize wordWidth) op (OpReg tableReg),
1970                             JMP_TBL (OpReg tableReg) [ id | Just id <- ids ]
1971                     ]
1972 #endif
1973         return code
1974   | otherwise
1975   = do
1976         (reg,e_code) <- getSomeReg expr
1977         lbl <- getNewLabelNat
1978         let
1979             jumpTable = map jumpTableEntry ids
1980             op = OpAddr (AddrBaseIndex EABaseNone (EAIndex reg wORD_SIZE) (ImmCLbl lbl))
1981             code = e_code `appOL` toOL [
1982                     LDATA ReadOnlyData (CmmDataLabel lbl : jumpTable),
1983                     JMP_TBL op [ id | Just id <- ids ]
1984                  ]
1985         -- in
1986         return code
1987
1988
1989 -- -----------------------------------------------------------------------------
1990 -- 'condIntReg' and 'condFltReg': condition codes into registers
1991
1992 -- Turn those condition codes into integers now (when they appear on
1993 -- the right hand side of an assignment).
1994 -- 
1995 -- (If applicable) Do not fill the delay slots here; you will confuse the
1996 -- register allocator.
1997
1998 condIntReg :: Cond -> CmmExpr -> CmmExpr -> NatM Register
1999
2000 condIntReg cond x y = do
2001   CondCode _ cond cond_code <- condIntCode cond x y
2002   tmp <- getNewRegNat II8
2003   let 
2004         code dst = cond_code `appOL` toOL [
2005                     SETCC cond (OpReg tmp),
2006                     MOVZxL II8 (OpReg tmp) (OpReg dst)
2007                   ]
2008   -- in
2009   return (Any II32 code)
2010
2011
2012
2013 condFltReg :: Cond -> CmmExpr -> CmmExpr -> NatM Register
2014 condFltReg cond x y = if_sse2 condFltReg_sse2 condFltReg_x87
2015  where
2016   condFltReg_x87 = do
2017     CondCode _ cond cond_code <- condFltCode cond x y
2018     tmp <- getNewRegNat II8
2019     let 
2020         code dst = cond_code `appOL` toOL [
2021                     SETCC cond (OpReg tmp),
2022                     MOVZxL II8 (OpReg tmp) (OpReg dst)
2023                   ]
2024     -- in
2025     return (Any II32 code)
2026   
2027   condFltReg_sse2 = do
2028     CondCode _ cond cond_code <- condFltCode cond x y
2029     tmp1 <- getNewRegNat archWordSize
2030     tmp2 <- getNewRegNat archWordSize
2031     let 
2032         -- We have to worry about unordered operands (eg. comparisons
2033         -- against NaN).  If the operands are unordered, the comparison
2034         -- sets the parity flag, carry flag and zero flag.
2035         -- All comparisons are supposed to return false for unordered
2036         -- operands except for !=, which returns true.
2037         --
2038         -- Optimisation: we don't have to test the parity flag if we
2039         -- know the test has already excluded the unordered case: eg >
2040         -- and >= test for a zero carry flag, which can only occur for
2041         -- ordered operands.
2042         --
2043         -- ToDo: by reversing comparisons we could avoid testing the
2044         -- parity flag in more cases.
2045   
2046         code dst = 
2047            cond_code `appOL` 
2048              (case cond of
2049                 NE  -> or_unordered dst
2050                 GU  -> plain_test   dst
2051                 GEU -> plain_test   dst
2052                 _   -> and_ordered  dst)
2053   
2054         plain_test dst = toOL [
2055                     SETCC cond (OpReg tmp1),
2056                     MOVZxL II8 (OpReg tmp1) (OpReg dst)
2057                  ]
2058         or_unordered dst = toOL [
2059                     SETCC cond (OpReg tmp1),
2060                     SETCC PARITY (OpReg tmp2),
2061                     OR II8 (OpReg tmp1) (OpReg tmp2),
2062                     MOVZxL II8 (OpReg tmp2) (OpReg dst)
2063                   ]
2064         and_ordered dst = toOL [
2065                     SETCC cond (OpReg tmp1),
2066                     SETCC NOTPARITY (OpReg tmp2),
2067                     AND II8 (OpReg tmp1) (OpReg tmp2),
2068                     MOVZxL II8 (OpReg tmp2) (OpReg dst)
2069                   ]
2070     -- in
2071     return (Any II32 code)
2072
2073
2074 -- -----------------------------------------------------------------------------
2075 -- 'trivial*Code': deal with trivial instructions
2076
2077 -- Trivial (dyadic: 'trivialCode', floating-point: 'trivialFCode',
2078 -- unary: 'trivialUCode', unary fl-pt:'trivialUFCode') instructions.
2079 -- Only look for constants on the right hand side, because that's
2080 -- where the generic optimizer will have put them.
2081
2082 -- Similarly, for unary instructions, we don't have to worry about
2083 -- matching an StInt as the argument, because genericOpt will already
2084 -- have handled the constant-folding.
2085
2086
2087 {-
2088 The Rules of the Game are:
2089
2090 * You cannot assume anything about the destination register dst;
2091   it may be anything, including a fixed reg.
2092
2093 * You may compute an operand into a fixed reg, but you may not 
2094   subsequently change the contents of that fixed reg.  If you
2095   want to do so, first copy the value either to a temporary
2096   or into dst.  You are free to modify dst even if it happens
2097   to be a fixed reg -- that's not your problem.
2098
2099 * You cannot assume that a fixed reg will stay live over an
2100   arbitrary computation.  The same applies to the dst reg.
2101
2102 * Temporary regs obtained from getNewRegNat are distinct from 
2103   each other and from all other regs, and stay live over 
2104   arbitrary computations.
2105
2106 --------------------
2107
2108 SDM's version of The Rules:
2109
2110 * If getRegister returns Any, that means it can generate correct
2111   code which places the result in any register, period.  Even if that
2112   register happens to be read during the computation.
2113
2114   Corollary #1: this means that if you are generating code for an
2115   operation with two arbitrary operands, you cannot assign the result
2116   of the first operand into the destination register before computing
2117   the second operand.  The second operand might require the old value
2118   of the destination register.
2119
2120   Corollary #2: A function might be able to generate more efficient
2121   code if it knows the destination register is a new temporary (and
2122   therefore not read by any of the sub-computations).
2123
2124 * If getRegister returns Any, then the code it generates may modify only:
2125         (a) fresh temporaries
2126         (b) the destination register
2127         (c) known registers (eg. %ecx is used by shifts)
2128   In particular, it may *not* modify global registers, unless the global
2129   register happens to be the destination register.
2130 -}
2131
2132 trivialCode width instr (Just revinstr) (CmmLit lit_a) b
2133   | is32BitLit lit_a = do
2134   b_code <- getAnyReg b
2135   let
2136        code dst 
2137          = b_code dst `snocOL`
2138            revinstr (OpImm (litToImm lit_a)) (OpReg dst)
2139   -- in
2140   return (Any (intSize width) code)
2141
2142 trivialCode width instr maybe_revinstr a b
2143   = genTrivialCode (intSize width) instr a b
2144
2145 -- This is re-used for floating pt instructions too.
2146 genTrivialCode rep instr a b = do
2147   (b_op, b_code) <- getNonClobberedOperand b
2148   a_code <- getAnyReg a
2149   tmp <- getNewRegNat rep
2150   let
2151      -- We want the value of b to stay alive across the computation of a.
2152      -- But, we want to calculate a straight into the destination register,
2153      -- because the instruction only has two operands (dst := dst `op` src).
2154      -- The troublesome case is when the result of b is in the same register
2155      -- as the destination reg.  In this case, we have to save b in a
2156      -- new temporary across the computation of a.
2157      code dst
2158         | dst `regClashesWithOp` b_op =
2159                 b_code `appOL`
2160                 unitOL (MOV rep b_op (OpReg tmp)) `appOL`
2161                 a_code dst `snocOL`
2162                 instr (OpReg tmp) (OpReg dst)
2163         | otherwise =
2164                 b_code `appOL`
2165                 a_code dst `snocOL`
2166                 instr b_op (OpReg dst)
2167   -- in
2168   return (Any rep code)
2169
2170 reg `regClashesWithOp` OpReg reg2   = reg == reg2
2171 reg `regClashesWithOp` OpAddr amode = any (==reg) (addrModeRegs amode)
2172 reg `regClashesWithOp` _            = False
2173
2174 -----------
2175
2176 trivialUCode rep instr x = do
2177   x_code <- getAnyReg x
2178   let
2179      code dst =
2180         x_code dst `snocOL`
2181         instr (OpReg dst)
2182   return (Any rep code)
2183
2184 -----------
2185
2186 trivialFCode_x87 width instr x y = do
2187   (x_reg, x_code) <- getNonClobberedReg x -- these work for float regs too
2188   (y_reg, y_code) <- getSomeReg y
2189   let
2190      size = FF80 -- always, on x87
2191      code dst =
2192         x_code `appOL`
2193         y_code `snocOL`
2194         instr size x_reg y_reg dst
2195   return (Any size code)
2196
2197 trivialFCode_sse2 pk instr x y
2198     = genTrivialCode size (instr size) x y
2199     where size = floatSize pk
2200
2201
2202 trivialUFCode size instr x = do
2203   (x_reg, x_code) <- getSomeReg x
2204   let
2205      code dst =
2206         x_code `snocOL`
2207         instr x_reg dst
2208   -- in
2209   return (Any size code)
2210
2211
2212 --------------------------------------------------------------------------------
2213 coerceInt2FP :: Width -> Width -> CmmExpr -> NatM Register
2214 coerceInt2FP from to x = if_sse2 coerce_sse2 coerce_x87
2215  where
2216    coerce_x87 = do
2217      (x_reg, x_code) <- getSomeReg x
2218      let
2219            opc  = case to of W32 -> GITOF; W64 -> GITOD
2220            code dst = x_code `snocOL` opc x_reg dst
2221         -- ToDo: works for non-II32 reps?
2222      return (Any FF80 code)
2223    
2224    coerce_sse2 = do
2225      (x_op, x_code) <- getOperand x  -- ToDo: could be a safe operand
2226      let
2227            opc  = case to of W32 -> CVTSI2SS; W64 -> CVTSI2SD
2228            code dst = x_code `snocOL` opc (intSize from) x_op dst
2229      -- in
2230      return (Any (floatSize to) code)
2231         -- works even if the destination rep is <II32
2232
2233 --------------------------------------------------------------------------------
2234 coerceFP2Int :: Width -> Width -> CmmExpr -> NatM Register
2235 coerceFP2Int from to x = if_sse2 coerceFP2Int_sse2 coerceFP2Int_x87
2236  where
2237    coerceFP2Int_x87 = do
2238      (x_reg, x_code) <- getSomeReg x
2239      let
2240            opc  = case from of W32 -> GFTOI; W64 -> GDTOI
2241            code dst = x_code `snocOL` opc x_reg dst
2242         -- ToDo: works for non-II32 reps?
2243      -- in
2244      return (Any (intSize to) code)
2245    
2246    coerceFP2Int_sse2 = do
2247      (x_op, x_code) <- getOperand x  -- ToDo: could be a safe operand
2248      let
2249            opc  = case from of W32 -> CVTTSS2SIQ; W64 -> CVTTSD2SIQ
2250            code dst = x_code `snocOL` opc (intSize to) x_op dst
2251      -- in
2252      return (Any (intSize to) code)
2253          -- works even if the destination rep is <II32
2254
2255
2256 --------------------------------------------------------------------------------
2257 coerceFP2FP :: Width -> CmmExpr -> NatM Register
2258 coerceFP2FP to x = do
2259   (x_reg, x_code) <- getSomeReg x
2260   let
2261         opc  = case to of W32 -> CVTSD2SS; W64 -> CVTSS2SD
2262         code dst = x_code `snocOL` opc x_reg dst
2263   -- in
2264   return (Any (floatSize to) code)
2265
2266 --------------------------------------------------------------------------------
2267
2268 sse2NegCode :: Width -> CmmExpr -> NatM Register
2269 sse2NegCode w x = do
2270   let sz = floatSize w
2271   x_code <- getAnyReg x
2272   -- This is how gcc does it, so it can't be that bad:
2273   let
2274     const | FF32 <- sz = CmmInt 0x80000000 W32
2275           | otherwise  = CmmInt 0x8000000000000000 W64
2276   Amode amode amode_code <- memConstant (widthInBytes w) const
2277   tmp <- getNewRegNat sz
2278   let
2279     code dst = x_code dst `appOL` amode_code `appOL` toOL [
2280         MOV sz (OpAddr amode) (OpReg tmp),
2281         XOR sz (OpReg tmp) (OpReg dst)
2282         ]
2283   --
2284   return (Any sz code)