diff options
author | Andreas Klebinger <klebinger.andreas@gmx.at> | 2020-11-27 22:53:25 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-12-08 22:43:21 -0500 |
commit | aef44d7fbef92159960daf73c53dbc3c8d21ecbf (patch) | |
tree | 5233aa9a324585e53c5fbe4cfa3ed1128d91fcf1 | |
parent | 6e3da80055dd7b3fc3bdc576088fdd16129bdac7 (diff) | |
download | haskell-aef44d7fbef92159960daf73c53dbc3c8d21ecbf.tar.gz |
Cmm.Sink: Optimize retaining of assignments, live sets.
Sinking requires us to track live local regs after each
cmm statement. We used to do this via "Set LocalReg".
However we can replace this with a solution based on IntSet
which is overall more efficient without losing much. The thing
we lose is width of the variables, which isn't used by the sinking
pass anyway.
I also reworked how we keep assignments to regs mentioned in
skipped assignments. I put the details into
Note [Keeping assignemnts mentioned in skipped RHSs].
The gist of it is instead of keeping track of it via the use count
which is a `IntMap Int` we now use the live regs set (IntSet) which
is quite a bit faster.
I think it also matches the semantics a lot better. The skipped
(not discarded) assignment does in fact keep the regs on it's rhs
alive so keeping track of this in the live set seems like the clearer
solution as well.
Improves allocations for T3294 by yet another 1%.
-rw-r--r-- | compiler/GHC/Cmm/LRegSet.hs | 53 | ||||
-rw-r--r-- | compiler/GHC/Cmm/Liveness.hs | 69 | ||||
-rw-r--r-- | compiler/GHC/Cmm/Sink.hs | 99 | ||||
-rw-r--r-- | compiler/GHC/Utils/Outputable.hs | 4 | ||||
-rw-r--r-- | compiler/ghc.cabal.in | 1 |
5 files changed, 174 insertions, 52 deletions
diff --git a/compiler/GHC/Cmm/LRegSet.hs b/compiler/GHC/Cmm/LRegSet.hs new file mode 100644 index 0000000000..ed495623f1 --- /dev/null +++ b/compiler/GHC/Cmm/LRegSet.hs @@ -0,0 +1,53 @@ +{-# LANGUAGE GADTs #-} +{-# LANGUAGE ScopedTypeVariables #-} + +module GHC.Cmm.LRegSet ( + LRegSet, + LRegKey, + + emptyLRegSet, + nullLRegSet, + insertLRegSet, + elemLRegSet, + + deleteFromLRegSet, + sizeLRegSet, + + plusLRegSet, + elemsLRegSet + ) where + +import GHC.Prelude +import GHC.Types.Unique +import GHC.Cmm.Expr + +import Data.IntSet as IntSet + +-- Compact sets for membership tests of local variables. + +type LRegSet = IntSet.IntSet +type LRegKey = Int + +emptyLRegSet :: LRegSet +emptyLRegSet = IntSet.empty + +nullLRegSet :: LRegSet -> Bool +nullLRegSet = IntSet.null + +insertLRegSet :: LocalReg -> LRegSet -> LRegSet +insertLRegSet l = IntSet.insert (getKey (getUnique l)) + +elemLRegSet :: LocalReg -> LRegSet -> Bool +elemLRegSet l = IntSet.member (getKey (getUnique l)) + +deleteFromLRegSet :: LRegSet -> LocalReg -> LRegSet +deleteFromLRegSet set reg = IntSet.delete (getKey . getUnique $ reg) set + +sizeLRegSet :: IntSet -> Int +sizeLRegSet = IntSet.size + +plusLRegSet :: IntSet -> IntSet -> IntSet +plusLRegSet = IntSet.union + +elemsLRegSet :: IntSet -> [Int] +elemsLRegSet = IntSet.toList diff --git a/compiler/GHC/Cmm/Liveness.hs b/compiler/GHC/Cmm/Liveness.hs index 0ec38509ba..f047ea4367 100644 --- a/compiler/GHC/Cmm/Liveness.hs +++ b/compiler/GHC/Cmm/Liveness.hs @@ -6,9 +6,12 @@ module GHC.Cmm.Liveness ( CmmLocalLive , cmmLocalLiveness + , cmmLocalLivenessL , cmmGlobalLiveness , liveLattice + , liveLatticeL , gen_kill + , gen_killL ) where @@ -22,11 +25,14 @@ import GHC.Cmm.Dataflow.Block import GHC.Cmm.Dataflow.Collections import GHC.Cmm.Dataflow import GHC.Cmm.Dataflow.Label +import GHC.Cmm.LRegSet import GHC.Data.Maybe import GHC.Utils.Outputable import GHC.Utils.Panic +import GHC.Types.Unique + ----------------------------------------------------------------------------- -- Calculating what variables are live on entry to a basic block ----------------------------------------------------------------------------- @@ -92,3 +98,66 @@ xferLive platform (BlockCC eNode middle xNode) fBase = in mapSingleton (entryLabel eNode) result {-# SPECIALIZE xferLive :: Platform -> TransferFun (CmmLive LocalReg) #-} {-# SPECIALIZE xferLive :: Platform -> TransferFun (CmmLive GlobalReg) #-} + +----------------------------------------------------------------------------- +-- | Specialization that only retains the keys for local variables. +-- +-- Local variablas are mostly glorified Ints, and some parts of the compiler +-- really don't care about anything but the Int part. So we can avoid some +-- overhead by computing a IntSet instead of a Set LocalReg which (unsurprisingly) +-- is quite a bit faster. +----------------------------------------------------------------------------- + +type BlockEntryLivenessL = LabelMap LRegSet + +-- | The dataflow lattice +liveLatticeL :: DataflowLattice LRegSet +liveLatticeL = DataflowLattice emptyLRegSet add + where + add (OldFact old) (NewFact new) = + let !join = plusLRegSet old new + in changedIf (sizeLRegSet join > sizeLRegSet old) join + + +cmmLocalLivenessL :: Platform -> CmmGraph -> BlockEntryLivenessL +cmmLocalLivenessL platform graph = + check $ analyzeCmmBwd liveLatticeL (xferLiveL platform) graph mapEmpty + where + entry = g_entry graph + check facts = + noLiveOnEntryL entry (expectJust "check" $ mapLookup entry facts) facts + +-- | On entry to the procedure, there had better not be any LocalReg's live-in. +noLiveOnEntryL :: BlockId -> LRegSet -> a -> a +noLiveOnEntryL bid in_fact x = + if nullLRegSet in_fact then x + else pprPanic "LocalReg's live-in to graph" (ppr bid <+> ppr reg_uniques) + where + -- We convert the int's to uniques so that the printing matches that + -- of registers. + reg_uniques = map mkUniqueGrimily $ elemsLRegSet in_fact + + + + +gen_killL + :: (DefinerOfRegs LocalReg n, UserOfRegs LocalReg n) + => Platform -> n -> LRegSet -> LRegSet +gen_killL platform node set = + let !afterKill = foldRegsDefd platform deleteFromLRegSet set node + in foldRegsUsed platform (flip insertLRegSet) afterKill node +{-# INLINE gen_killL #-} + +xferLiveL + :: ( UserOfRegs LocalReg (CmmNode O O) + , DefinerOfRegs LocalReg (CmmNode O O) + , UserOfRegs LocalReg (CmmNode O C) + , DefinerOfRegs LocalReg (CmmNode O C) + ) + => Platform -> TransferFun LRegSet +xferLiveL platform (BlockCC eNode middle xNode) fBase = + let joined = gen_killL platform xNode $! joinOutFacts liveLatticeL xNode fBase + !result = foldNodesBwdOO (gen_killL platform) middle joined + in mapSingleton (entryLabel eNode) result + + diff --git a/compiler/GHC/Cmm/Sink.hs b/compiler/GHC/Cmm/Sink.hs index cf20291fae..cd13d6b655 100644 --- a/compiler/GHC/Cmm/Sink.hs +++ b/compiler/GHC/Cmm/Sink.hs @@ -1,5 +1,6 @@ {-# LANGUAGE GADTs #-} {-# LANGUAGE ScopedTypeVariables #-} + module GHC.Cmm.Sink ( cmmSink ) where @@ -9,6 +10,7 @@ import GHC.Prelude import GHC.Cmm import GHC.Cmm.Opt import GHC.Cmm.Liveness +import GHC.Cmm.LRegSet import GHC.Cmm.Utils import GHC.Cmm.Dataflow.Block import GHC.Cmm.Dataflow.Label @@ -17,32 +19,14 @@ import GHC.Cmm.Dataflow.Graph import GHC.Platform.Regs import GHC.Platform -import GHC.Types.Unique import GHC.Types.Unique.FM import qualified Data.IntSet as IntSet import Data.List (partition) -import qualified Data.Set as Set import Data.Maybe import GHC.Exts (inline) --- Compact sets for membership tests of local variables. - -type LRegSet = IntSet.IntSet - -emptyLRegSet :: LRegSet -emptyLRegSet = IntSet.empty - -nullLRegSet :: LRegSet -> Bool -nullLRegSet = IntSet.null - -insertLRegSet :: LocalReg -> LRegSet -> LRegSet -insertLRegSet l = IntSet.insert (getKey (getUnique l)) - -elemLRegSet :: LocalReg -> LRegSet -> Bool -elemLRegSet l = IntSet.member (getKey (getUnique l)) - -- ----------------------------------------------------------------------------- -- Sinking and inlining @@ -170,8 +154,8 @@ type Assignments = [Assignment] cmmSink :: Platform -> CmmGraph -> CmmGraph cmmSink platform graph = ofBlockList (g_entry graph) $ sink mapEmpty $ blocks where - liveness = cmmLocalLiveness platform graph - getLive l = mapFindWithDefault Set.empty l liveness + liveness = cmmLocalLivenessL platform graph + getLive l = mapFindWithDefault emptyLRegSet l liveness blocks = revPostorder graph @@ -191,8 +175,8 @@ cmmSink platform graph = ofBlockList (g_entry graph) $ sink mapEmpty $ blocks -- Annotate the middle nodes with the registers live *after* -- the node. This will help us decide whether we can inline -- an assignment in the current node or not. - live = Set.unions (map getLive succs) - live_middle = gen_kill platform last live + live = IntSet.unions (map getLive succs) + live_middle = gen_killL platform last live ann_middles = annotate platform live_middle (blockToList middle) -- Now sink and inline in this block @@ -204,7 +188,7 @@ cmmSink platform graph = ofBlockList (g_entry graph) $ sink mapEmpty $ blocks -- one predecessor), so identify the join points and the set -- of registers live in them. (joins, nonjoins) = partition (`mapMember` join_pts) succs - live_in_joins = Set.unions (map getLive joins) + live_in_joins = IntSet.unions (map getLive joins) -- We do not want to sink an assignment into multiple branches, -- so identify the set of registers live in multiple successors. @@ -213,26 +197,28 @@ cmmSink platform graph = ofBlockList (g_entry graph) $ sink mapEmpty $ blocks -- now live in multiple branches. init_live_sets = map getLive nonjoins live_in_multi live_sets r = - case filter (Set.member r) live_sets of + case filter (elemLRegSet r) live_sets of (_one:_two:_) -> True _ -> False -- Now, drop any assignments that we will not sink any further. (dropped_last, assigs'') = dropAssignments platform drop_if init_live_sets assigs' + drop_if :: (LocalReg, CmmExpr, AbsMem) + -> [LRegSet] -> (Bool, [LRegSet]) drop_if a@(r,rhs,_) live_sets = (should_drop, live_sets') where should_drop = conflicts platform a final_last || not (isTrivial platform rhs) && live_in_multi live_sets r - || r `Set.member` live_in_joins + || r `elemLRegSet` live_in_joins live_sets' | should_drop = live_sets | otherwise = map upd live_sets - upd set | r `Set.member` set = set `Set.union` live_rhs + upd set | r `elemLRegSet` set = set `IntSet.union` live_rhs | otherwise = set - live_rhs = foldRegsUsed platform extendRegSet emptyRegSet rhs + live_rhs = foldRegsUsed platform (flip insertLRegSet) emptyLRegSet rhs final_middle = foldl' blockSnoc middle' dropped_last @@ -269,9 +255,9 @@ isTrivial _ _ = False -- -- annotate each node with the set of registers live *after* the node -- -annotate :: Platform -> LocalRegSet -> [CmmNode O O] -> [(LocalRegSet, CmmNode O O)] +annotate :: Platform -> LRegSet -> [CmmNode O O] -> [(LRegSet, CmmNode O O)] annotate platform live nodes = snd $ foldr ann (live,[]) nodes - where ann n (live,nodes) = (gen_kill platform n live, (live,n) : nodes) + where ann n (live,nodes) = (gen_killL platform n live, (live,n) : nodes) -- -- Find the blocks that have multiple successors (join points) @@ -288,13 +274,13 @@ findJoinPoints blocks = mapFilter (>1) succ_counts -- filter the list of assignments to remove any assignments that -- are not live in a continuation. -- -filterAssignments :: Platform -> LocalRegSet -> Assignments -> Assignments +filterAssignments :: Platform -> LRegSet -> Assignments -> Assignments filterAssignments platform live assigs = reverse (go assigs []) where go [] kept = kept go (a@(r,_,_):as) kept | needed = go as (a:kept) | otherwise = go as kept where - needed = r `Set.member` live + needed = r `elemLRegSet` live || any (conflicts platform a) (map toNode kept) -- Note that we must keep assignments that are -- referred to by other assignments we have @@ -315,7 +301,7 @@ filterAssignments platform live assigs = reverse (go assigs []) -- walk :: Platform - -> [(LocalRegSet, CmmNode O O)] -- nodes of the block, annotated with + -> [(LRegSet, CmmNode O O)] -- nodes of the block, annotated with -- the set of registers live *after* -- this node. @@ -369,11 +355,11 @@ shouldSink _ _other = Nothing -- out of inlining, but the inliner will see that r is live -- after the instruction and choose not to inline r in the rhs. -- -shouldDiscard :: CmmNode e x -> LocalRegSet -> Bool +shouldDiscard :: CmmNode e x -> LRegSet -> Bool shouldDiscard node live = case node of CmmAssign r (CmmReg r') | r == r' -> True - CmmAssign (CmmLocal r) _ -> not (r `Set.member` live) + CmmAssign (CmmLocal r) _ -> not (r `elemLRegSet` live) _otherwise -> False @@ -407,7 +393,8 @@ dropAssignments platform should_drop state assigs tryToInline :: forall x. Platform - -> LocalRegSet -- set of registers live after this + -> LRegSet -- set of registers live after this + -- -> LocalRegSet -- set of registers live after this -- node. We cannot inline anything -- that is live after the node, unless -- it is small enough to duplicate. @@ -418,36 +405,42 @@ tryToInline , Assignments -- Remaining assignments ) -tryToInline platform live node assigs = go usages node emptyLRegSet assigs +tryToInline platform liveAfter node assigs = + -- pprTrace "tryToInline assig length:" (ppr $ length assigs) $ + go usages liveAfter node emptyLRegSet assigs where usages :: UniqFM LocalReg Int -- Maps each LocalReg to a count of how often it is used usages = foldLocalRegsUsed platform addUsage emptyUFM node - go _usages node _skipped [] = (node, []) + go :: UniqFM LocalReg Int -> LRegSet -> CmmNode O x -> LRegSet -> Assignments + -> (CmmNode O x, Assignments) + go _usages _live node _skipped [] = (node, []) - go usages node skipped (a@(l,rhs,_) : rest) - | cannot_inline = dont_inline - | occurs_none = discard -- Note [discard during inlining] - | occurs_once = inline_and_discard - | isTrivial platform rhs = inline_and_keep - | otherwise = dont_inline + go usages live node skipped (a@(l,rhs,_) : rest) + | cannot_inline = dont_inline + | occurs_none = discard -- Note [discard during inlining] + | occurs_once = inline_and_discard + | isTrivial platform rhs = inline_and_keep + | otherwise = dont_inline where - inline_and_discard = go usages' inl_node skipped rest + inline_and_discard = go usages' live inl_node skipped rest where usages' = foldLocalRegsUsed platform addUsage usages rhs - discard = go usages node skipped rest + discard = go usages live node skipped rest dont_inline = keep node -- don't inline the assignment, keep it inline_and_keep = keep inl_node -- inline the assignment, keep it keep :: CmmNode O x -> (CmmNode O x, Assignments) keep node' = (final_node, a : rest') - where (final_node, rest') = go usages' node' (insertLRegSet l skipped) rest + where (final_node, rest') = go usages live' node' (insertLRegSet l skipped) rest -- Avoid discarding of assignments to vars on the rhs. -- See Note [Keeping assignemnts mentioned in skipped RHSs] - usages' = foldLocalRegsUsed platform (\m r -> addToUFM m r 2) - usages rhs + -- usages' = foldLocalRegsUsed platform (\m r -> addToUFM m r 2) + -- usages rhs + live' = inline foldLocalRegsUsed platform (\m r -> insertLRegSet r m) + live rhs cannot_inline = skipped `regsUsedIn` rhs -- Note [dependent assignments] || l `elemLRegSet` skipped @@ -455,7 +448,7 @@ tryToInline platform live node assigs = go usages node emptyLRegSet assigs -- How often is l used in the current node. l_usages = lookupUFM usages l - l_live = l `elemRegSet` live + l_live = l `elemLRegSet` live occurs_once = not l_live && l_usages == Just 1 occurs_none = not l_live && l_usages == Nothing @@ -483,9 +476,11 @@ tryToInline platform live node assigs = go usages node emptyLRegSet assigs referencing a variable which hasn't been mentioned after inlining. - We use a hack to do this, which is setting all regs used on the - RHS to two uses. Since we only discard assignments to variables - which are used once or never this prevents discarding of the + We use a hack to do this. + + We pretend the regs from the rhs are live after the current + node. Since we only discard assignments to variables + which are dead after the current block this prevents discarding of the assignment. It still allows inlining should e1 be a trivial rhs however. diff --git a/compiler/GHC/Utils/Outputable.hs b/compiler/GHC/Utils/Outputable.hs index 7cbd0c4ffd..e88d9c42b6 100644 --- a/compiler/GHC/Utils/Outputable.hs +++ b/compiler/GHC/Utils/Outputable.hs @@ -115,6 +115,7 @@ import Data.Int import qualified Data.IntMap as IM import Data.Set (Set) import qualified Data.Set as Set +import qualified Data.IntSet as IntSet import Data.String import Data.Word import System.IO ( Handle ) @@ -863,6 +864,9 @@ instance (Outputable a) => Outputable (NonEmpty a) where instance (Outputable a) => Outputable (Set a) where ppr s = braces (fsep (punctuate comma (map ppr (Set.toList s)))) +instance Outputable IntSet.IntSet where + ppr s = braces (fsep (punctuate comma (map ppr (IntSet.toList s)))) + instance (Outputable a, Outputable b) => Outputable (a, b) where ppr (x,y) = parens (sep [ppr x <> comma, ppr y]) diff --git a/compiler/ghc.cabal.in b/compiler/ghc.cabal.in index 86b86774a4..273678e3f4 100644 --- a/compiler/ghc.cabal.in +++ b/compiler/ghc.cabal.in @@ -205,6 +205,7 @@ Library GHC.Cmm.Switch GHC.Cmm.Switch.Implement GHC.CmmToAsm + GHC.Cmm.LRegSet GHC.CmmToAsm.BlockLayout GHC.CmmToAsm.CFG GHC.CmmToAsm.CFG.Dominators |