X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=compiler%2FnativeGen%2FRegAllocColor.hs;h=5a3401f1fdeb8cea5f6d32134a007af9b9dc0c90;hp=45727c5070a9603549504085edafd2c75a681c66;hb=682d5e9674ec8cf94b3af815a752fa03c9a9d6fe;hpb=eeea62298b2ee975f84f1d50c71ac458ffb7c6a4 diff --git a/compiler/nativeGen/RegAllocColor.hs b/compiler/nativeGen/RegAllocColor.hs index 45727c5..5a3401f 100644 --- a/compiler/nativeGen/RegAllocColor.hs +++ b/compiler/nativeGen/RegAllocColor.hs @@ -23,6 +23,7 @@ where import qualified GraphColor as Color import RegLiveness import RegSpill +import RegSpillClean import RegAllocStats import MachRegs import MachInstrs @@ -108,6 +109,9 @@ regAlloc_spin dump (spinCount :: Int) triv regsFree slotsFree debug_codeGraphs c -- patch the registers using the info in the graph let code_patched = map (patchRegsFromGraph graph_colored) code + -- clean out unneeded SPILL/RELOADs + let code_spillclean = map cleanSpills code_patched + -- strip off liveness information let code_nat = map stripLive code_patched @@ -119,10 +123,11 @@ regAlloc_spin dump (spinCount :: Int) triv regsFree slotsFree debug_codeGraphs c let stat = RegAllocStatsColored { raGraph = graph_colored - , raPatchedCmm = code_patched - , raFinalCmm = code_final } + , raPatched = code_patched + , raSpillClean = code_spillclean + , raFinal = code_final } - return ( code_nat + return ( code_final , if dump then [stat] ++ maybeToList stat1 ++ debug_codeGraphs else []