093c21159f84441fd19daf314ed065003a7d5efe
[ghc-hetmet.git] / compiler / nativeGen / RegAlloc / Graph / Main.hs
1 {-# OPTIONS -fno-warn-missing-signatures #-}
2 -- | Graph coloring register allocator.
3 --
4 -- TODO: The colors in graphviz graphs for x86_64 and ppc could be nicer.
5 --
6
7 module RegAlloc.Graph.Main ( 
8         regAlloc
9
10
11 where
12
13 import qualified GraphColor     as Color
14 import RegAlloc.Liveness
15 import RegAlloc.Graph.Spill
16 import RegAlloc.Graph.SpillClean
17 import RegAlloc.Graph.SpillCost
18 import RegAlloc.Graph.Stats
19 import RegAlloc.Graph.TrivColorable
20 import Instruction
21 import TargetReg
22 import RegClass
23 import Reg
24
25
26 import UniqSupply
27 import UniqSet
28 import UniqFM
29 import Bag
30 import Outputable
31 import DynFlags
32
33 import Data.List
34 import Data.Maybe
35 import Control.Monad
36
37 -- | The maximum number of build\/spill cycles we'll allow.
38 --      We should only need 3 or 4 cycles tops.
39 --      If we run for any longer than this we're probably in an infinite loop,
40 --      It's probably better just to bail out and report a bug at this stage.
41 maxSpinCount    :: Int
42 maxSpinCount    = 10
43
44
45 -- | The top level of the graph coloring register allocator.
46 --      
47 regAlloc
48         :: (Outputable instr, Instruction instr)
49         => DynFlags
50         -> UniqFM (UniqSet RealReg)     -- ^ the registers we can use for allocation
51         -> UniqSet Int                  -- ^ the set of available spill slots.
52         -> [LiveCmmTop instr]           -- ^ code annotated with liveness information.
53         -> UniqSM ( [NatCmmTop instr], [RegAllocStats instr] )
54            -- ^ code with registers allocated and stats for each stage of
55            -- allocation
56                 
57 regAlloc dflags regsFree slotsFree code
58  = do
59         -- TODO: the regClass function is currently hard coded to the default target
60         --       architecture. Would prefer to determine this from dflags.
61         --       There are other uses of targetRegClass later in this module.
62         let triv = trivColorable 
63                         targetVirtualRegSqueeze
64                         targetRealRegSqueeze
65
66         (code_final, debug_codeGraphs, _)
67                 <- regAlloc_spin dflags 0 
68                         triv
69                         regsFree slotsFree [] code
70         
71         return  ( code_final
72                 , reverse debug_codeGraphs )
73
74 regAlloc_spin 
75         dflags 
76         spinCount 
77         (triv           :: Color.Triv VirtualReg RegClass RealReg)
78         (regsFree       :: UniqFM (UniqSet RealReg))
79         slotsFree 
80         debug_codeGraphs 
81         code
82  = do
83         -- if any of these dump flags are turned on we want to hang on to
84         --      intermediate structures in the allocator - otherwise tell the
85         --      allocator to ditch them early so we don't end up creating space leaks.
86         let dump = or
87                 [ dopt Opt_D_dump_asm_regalloc_stages dflags
88                 , dopt Opt_D_dump_asm_stats dflags
89                 , dopt Opt_D_dump_asm_conflicts dflags ]
90
91         -- check that we're not running off down the garden path.
92         when (spinCount > maxSpinCount)
93          $ pprPanic "regAlloc_spin: max build/spill cycle count exceeded."
94                 (  text "It looks like the register allocator is stuck in an infinite loop."
95                 $$ text "max cycles  = " <> int maxSpinCount
96                 $$ text "regsFree    = " <> (hcat       $ punctuate space $ map ppr
97                                                 $ uniqSetToList $ unionManyUniqSets $ eltsUFM regsFree)
98                 $$ text "slotsFree   = " <> ppr (sizeUniqSet slotsFree))
99
100         -- build a conflict graph from the code.
101         (graph  :: Color.Graph VirtualReg RegClass RealReg)
102                 <- {-# SCC "BuildGraph" #-} buildGraph code
103
104         -- VERY IMPORTANT:
105         --      We really do want the graph to be fully evaluated _before_ we start coloring.
106         --      If we don't do this now then when the call to Color.colorGraph forces bits of it,
107         --      the heap will be filled with half evaluated pieces of graph and zillions of apply thunks.
108         --
109         seqGraph graph `seq` return ()
110
111
112         -- build a map of the cost of spilling each instruction
113         --      this will only actually be computed if we have to spill something.
114         let spillCosts  = foldl' plusSpillCostInfo zeroSpillCostInfo
115                         $ map slurpSpillCostInfo code
116
117         -- the function to choose regs to leave uncolored
118         let spill       = chooseSpill spillCosts
119
120         -- record startup state
121         let stat1       =
122                 if spinCount == 0
123                  then   Just $ RegAllocStatsStart
124                         { raLiveCmm     = code
125                         , raGraph       = graph
126                         , raSpillCosts  = spillCosts }
127                  else   Nothing
128         
129         -- try and color the graph 
130         let (graph_colored, rsSpill, rmCoalesce)
131                         = {-# SCC "ColorGraph" #-}
132                            Color.colorGraph
133                                 (dopt Opt_RegsIterative dflags)
134                                 spinCount
135                                 regsFree triv spill graph
136
137         -- rewrite regs in the code that have been coalesced
138         let patchF reg  
139                 | RegVirtual vr <- reg
140                 = case lookupUFM rmCoalesce vr of
141                         Just vr'        -> patchF (RegVirtual vr')
142                         Nothing         -> reg
143                         
144                 | otherwise
145                 = reg
146
147         let code_coalesced
148                         = map (patchEraseLive patchF) code
149
150
151         -- see if we've found a coloring
152         if isEmptyUniqSet rsSpill
153          then do
154                 -- if -fasm-lint is turned on then validate the graph
155                 let graph_colored_lint  =
156                         if dopt Opt_DoAsmLinting dflags
157                                 then Color.validateGraph (text "")
158                                         True    -- require all nodes to be colored
159                                         graph_colored
160                                 else graph_colored
161
162                 -- patch the registers using the info in the graph
163                 let code_patched        = map (patchRegsFromGraph graph_colored_lint) code_coalesced
164
165                 -- clean out unneeded SPILL/RELOADs
166                 let code_spillclean     = map cleanSpills code_patched
167
168                 -- strip off liveness information, 
169                 --      and rewrite SPILL/RELOAD pseudos into real instructions along the way
170                 let code_final          = map stripLive code_spillclean
171
172 --              let spillNatTop         = mapGenBlockTop spillNatBlock
173 --              let code_final          = map spillNatTop code_nat
174                 
175                 -- record what happened in this stage for debugging
176                 let stat                =
177                         RegAllocStatsColored
178                         { raGraph               = graph
179                         , raGraphColored        = graph_colored_lint
180                         , raCoalesced           = rmCoalesce
181                         , raCodeCoalesced       = code_coalesced
182                         , raPatched             = code_patched
183                         , raSpillClean          = code_spillclean
184                         , raFinal               = code_final
185                         , raSRMs                = foldl' addSRM (0, 0, 0) $ map countSRMs code_spillclean }
186
187
188                 let statList =
189                         if dump then [stat] ++ maybeToList stat1 ++ debug_codeGraphs
190                                 else []
191
192                 -- space leak avoidance
193                 seqList statList `seq` return ()
194
195                 return  ( code_final
196                         , statList
197                         , graph_colored_lint)
198
199          -- we couldn't find a coloring, time to spill something
200          else do
201                 -- if -fasm-lint is turned on then validate the graph
202                 let graph_colored_lint  =
203                         if dopt Opt_DoAsmLinting dflags
204                                 then Color.validateGraph (text "")
205                                         False   -- don't require nodes to be colored
206                                         graph_colored
207                                 else graph_colored
208
209                 -- spill the uncolored regs
210                 (code_spilled, slotsFree', spillStats)
211                         <- regSpill code_coalesced slotsFree rsSpill
212
213                 -- recalculate liveness
214 --              let code_nat    = map stripLive code_spilled
215                 code_relive     <- mapM regLiveness code_spilled
216
217                 -- record what happened in this stage for debugging
218                 let stat        =
219                         RegAllocStatsSpill
220                         { raGraph       = graph_colored_lint
221                         , raCoalesced   = rmCoalesce
222                         , raSpillStats  = spillStats
223                         , raSpillCosts  = spillCosts
224                         , raSpilled     = code_spilled }
225                                 
226                 let statList =
227                         if dump
228                                 then [stat] ++ maybeToList stat1 ++ debug_codeGraphs
229                                 else []
230
231                 -- space leak avoidance
232                 seqList statList `seq` return ()
233
234                 regAlloc_spin dflags (spinCount + 1) triv regsFree slotsFree'
235                         statList
236                         code_relive
237
238
239
240 -- | Build a graph from the liveness and coalesce information in this code.
241
242 buildGraph 
243         :: Instruction instr
244         => [LiveCmmTop instr]
245         -> UniqSM (Color.Graph VirtualReg RegClass RealReg)
246         
247 buildGraph code
248  = do
249         -- Slurp out the conflicts and reg->reg moves from this code
250         let (conflictList, moveList) =
251                 unzip $ map slurpConflicts code
252
253         -- Slurp out the spill/reload coalesces
254         let moveList2           = map slurpReloadCoalesce code
255
256         -- Add the reg-reg conflicts to the graph
257         let conflictBag         = unionManyBags conflictList
258         let graph_conflict      = foldrBag graphAddConflictSet Color.initGraph conflictBag
259
260         -- Add the coalescences edges to the graph.
261         let moveBag             = unionBags (unionManyBags moveList2) (unionManyBags moveList)
262         let graph_coalesce      = foldrBag graphAddCoalesce graph_conflict moveBag
263                         
264         return  graph_coalesce
265
266
267 -- | Add some conflict edges to the graph.
268 --      Conflicts between virtual and real regs are recorded as exclusions.
269 --
270 graphAddConflictSet 
271         :: UniqSet Reg
272         -> Color.Graph VirtualReg RegClass RealReg
273         -> Color.Graph VirtualReg RegClass RealReg
274         
275 graphAddConflictSet set graph
276  = let  virtuals        = mkUniqSet 
277                         [ vr | RegVirtual vr <- uniqSetToList set ]
278  
279         graph1  = Color.addConflicts virtuals classOfVirtualReg graph
280
281         graph2  = foldr (\(r1, r2) -> Color.addExclusion r1 classOfVirtualReg r2)
282                         graph1
283                         [ (vr, rr) 
284                                 | RegVirtual vr <- uniqSetToList set
285                                 , RegReal    rr <- uniqSetToList set]
286
287    in   graph2
288         
289
290 -- | Add some coalesence edges to the graph
291 --      Coalesences between virtual and real regs are recorded as preferences.
292 --
293 graphAddCoalesce 
294         :: (Reg, Reg) 
295         -> Color.Graph VirtualReg RegClass RealReg
296         -> Color.Graph VirtualReg RegClass RealReg
297         
298 graphAddCoalesce (r1, r2) graph
299         | RegReal rr            <- r1
300         , RegVirtual vr         <- r2
301         = Color.addPreference (vr, classOfVirtualReg vr) rr graph
302         
303         | RegReal rr            <- r2
304         , RegVirtual vr         <- r1
305         = Color.addPreference (vr, classOfVirtualReg vr) rr graph
306         
307         | RegVirtual vr1        <- r1
308         , RegVirtual vr2        <- r2
309         = Color.addCoalesce 
310                 (vr1, classOfVirtualReg vr1) 
311                 (vr2, classOfVirtualReg vr2) 
312                 graph
313
314         -- We can't coalesce two real regs, but there could well be existing
315         --      hreg,hreg moves in the input code. We'll just ignore these
316         --      for coalescing purposes.
317         | RegReal _             <- r1
318         , RegReal _             <- r2
319         = graph
320
321 graphAddCoalesce _ _
322         = panic "graphAddCoalesce: bogus"
323         
324
325 -- | Patch registers in code using the reg -> reg mapping in this graph.
326 patchRegsFromGraph 
327         :: (Outputable instr, Instruction instr)
328         => Color.Graph VirtualReg RegClass RealReg
329         -> LiveCmmTop instr -> LiveCmmTop instr
330
331 patchRegsFromGraph graph code
332  = let
333         -- a function to lookup the hardreg for a virtual reg from the graph.
334         patchF reg
335                 -- leave real regs alone.
336                 | RegReal{}     <- reg
337                 = reg
338
339                 -- this virtual has a regular node in the graph.
340                 | RegVirtual vr <- reg
341                 , Just node     <- Color.lookupNode graph vr
342                 = case Color.nodeColor node of
343                         Just color      -> RegReal    color
344                         Nothing         -> RegVirtual vr
345                         
346                 -- no node in the graph for this virtual, bad news.
347                 | otherwise
348                 = pprPanic "patchRegsFromGraph: register mapping failed." 
349                         (  text "There is no node in the graph for register " <> ppr reg
350                         $$ ppr code
351                         $$ Color.dotGraph 
352                                 (\_ -> text "white") 
353                                 (trivColorable 
354                                         targetVirtualRegSqueeze
355                                         targetRealRegSqueeze)
356                                 graph)
357
358    in   patchEraseLive patchF code
359    
360
361 -----
362 -- for when laziness just isn't what you wanted...
363 --
364 seqGraph :: Color.Graph VirtualReg RegClass RealReg -> ()
365 seqGraph graph          = seqNodes (eltsUFM (Color.graphMap graph))
366
367 seqNodes :: [Color.Node VirtualReg RegClass RealReg] -> ()
368 seqNodes ns
369  = case ns of
370         []              -> ()
371         (n : ns)        -> seqNode n `seq` seqNodes ns
372
373 seqNode :: Color.Node VirtualReg RegClass RealReg -> ()
374 seqNode node
375         =     seqVirtualReg     (Color.nodeId node)
376         `seq` seqRegClass       (Color.nodeClass node)
377         `seq` seqMaybeRealReg   (Color.nodeColor node)
378         `seq` (seqVirtualRegList (uniqSetToList (Color.nodeConflicts node)))
379         `seq` (seqRealRegList    (uniqSetToList (Color.nodeExclusions node)))
380         `seq` (seqRealRegList (Color.nodePreference node))
381         `seq` (seqVirtualRegList (uniqSetToList (Color.nodeCoalesce node)))
382
383 seqVirtualReg :: VirtualReg -> ()
384 seqVirtualReg reg = reg `seq` ()
385
386 seqRealReg :: RealReg -> ()
387 seqRealReg reg = reg `seq` ()
388
389 seqRegClass :: RegClass -> ()
390 seqRegClass c = c `seq` ()
391
392 seqMaybeRealReg :: Maybe RealReg -> ()
393 seqMaybeRealReg mr
394  = case mr of
395         Nothing         -> ()
396         Just r          -> seqRealReg r
397
398 seqVirtualRegList :: [VirtualReg] -> ()
399 seqVirtualRegList rs
400  = case rs of
401         []              -> ()
402         (r : rs)        -> seqVirtualReg r `seq` seqVirtualRegList rs
403
404 seqRealRegList :: [RealReg] -> ()
405 seqRealRegList rs
406  = case rs of
407         []              -> ()
408         (r : rs)        -> seqRealReg r `seq` seqRealRegList rs
409
410 seqList :: [a] -> ()
411 seqList ls
412  = case ls of
413         []              -> ()
414         (r : rs)        -> r `seq` seqList rs
415
416