{-# LANGUAGE BangPatterns, CPP, MultiWayIf #-}
{-# OPTIONS_GHC -Wno-incomplete-uni-patterns #-}
module GHC.CoreToStg.Prep (
corePrepPgm, corePrepExpr, cvtLitInteger, cvtLitNatural,
lookupMkIntegerName, lookupIntegerSDataConName,
lookupMkNaturalName, lookupNaturalSDataConName
) where
#include "HsVersions.h"
import GHC.Prelude
import GHC.Platform
import GHC.Core.Opt.OccurAnal
import GHC.Driver.Types
import GHC.Builtin.Names
import GHC.Types.Id.Make ( realWorldPrimId )
import GHC.Core.Utils
import GHC.Core.Opt.Arity
import GHC.Core.FVs
import GHC.Core.Opt.Monad ( CoreToDo(..) )
import GHC.Core.Lint ( endPassIO )
import GHC.Core
import GHC.Core.Make hiding( FloatBind(..) )
import GHC.Core.Type
import GHC.Types.Literal
import GHC.Core.Coercion
import GHC.Tc.Utils.Env
import GHC.Core.TyCon
import GHC.Types.Demand
import GHC.Types.Var
import GHC.Types.Var.Set
import GHC.Types.Var.Env
import GHC.Types.Id
import GHC.Types.Id.Info
import GHC.Builtin.Types
import GHC.Core.DataCon
import GHC.Types.Basic
import GHC.Unit.Module
import GHC.Types.Unique.Supply
import GHC.Data.Maybe
import GHC.Data.OrdList
import GHC.Utils.Error
import GHC.Driver.Session
import GHC.Driver.Ways
import GHC.Utils.Misc
import GHC.Utils.Outputable
import GHC.Data.FastString
import GHC.Types.Name ( NamedThing(..), nameSrcSpan, isInternalName )
import GHC.Types.SrcLoc ( SrcSpan(..), realSrcLocSpan, mkRealSrcLoc )
import Data.Bits
import GHC.Utils.Monad ( mapAccumLM )
import Control.Monad
import GHC.Types.CostCentre ( CostCentre, ccFromThisModule )
import qualified Data.Set as S
type CpeArg = CoreExpr
type CpeApp = CoreExpr
type CpeBody = CoreExpr
type CpeRhs = CoreExpr
corePrepPgm :: HscEnv -> Module -> ModLocation -> CoreProgram -> [TyCon]
-> IO (CoreProgram, S.Set CostCentre)
corePrepPgm :: HscEnv
-> Module
-> ModLocation
-> CoreProgram
-> [TyCon]
-> IO (CoreProgram, Set CostCentre)
corePrepPgm HscEnv
hsc_env Module
this_mod ModLocation
mod_loc CoreProgram
binds [TyCon]
data_tycons =
DynFlags
-> SDoc
-> ((CoreProgram, Set CostCentre) -> ())
-> IO (CoreProgram, Set CostCentre)
-> IO (CoreProgram, Set CostCentre)
forall (m :: * -> *) a.
MonadIO m =>
DynFlags -> SDoc -> (a -> ()) -> m a -> m a
External instance of the constraint type MonadIO IO
withTiming DynFlags
dflags
(String -> SDoc
text String
"CorePrep"SDoc -> SDoc -> SDoc
<+>SDoc -> SDoc
brackets (Module -> SDoc
forall a. Outputable a => a -> SDoc
External instance of the constraint type Outputable Module
ppr Module
this_mod))
(() -> (CoreProgram, Set CostCentre) -> ()
forall a b. a -> b -> a
const ()) (IO (CoreProgram, Set CostCentre)
-> IO (CoreProgram, Set CostCentre))
-> IO (CoreProgram, Set CostCentre)
-> IO (CoreProgram, Set CostCentre)
forall a b. (a -> b) -> a -> b
$ do
UniqSupply
us <- Char -> IO UniqSupply
mkSplitUniqSupply Char
's'
CorePrepEnv
initialCorePrepEnv <- DynFlags -> HscEnv -> IO CorePrepEnv
mkInitialCorePrepEnv DynFlags
dflags HscEnv
hsc_env
let cost_centres :: Set CostCentre
cost_centres
| Way
WayProf Way -> Set Way -> Bool
forall a. Ord a => a -> Set a -> Bool
External instance of the constraint type Ord Way
`S.member` DynFlags -> Set Way
ways DynFlags
dflags
= Module -> CoreProgram -> Set CostCentre
collectCostCentres Module
this_mod CoreProgram
binds
| Bool
otherwise
= Set CostCentre
forall a. Set a
S.empty
implicit_binds :: CoreProgram
implicit_binds = DynFlags -> ModLocation -> [TyCon] -> CoreProgram
mkDataConWorkers DynFlags
dflags ModLocation
mod_loc [TyCon]
data_tycons
binds_out :: CoreProgram
binds_out = UniqSupply -> UniqSM CoreProgram -> CoreProgram
forall a. UniqSupply -> UniqSM a -> a
initUs_ UniqSupply
us (UniqSM CoreProgram -> CoreProgram)
-> UniqSM CoreProgram -> CoreProgram
forall a b. (a -> b) -> a -> b
$ do
Floats
floats1 <- CorePrepEnv -> CoreProgram -> UniqSM Floats
corePrepTopBinds CorePrepEnv
initialCorePrepEnv CoreProgram
binds
Floats
floats2 <- CorePrepEnv -> CoreProgram -> UniqSM Floats
corePrepTopBinds CorePrepEnv
initialCorePrepEnv CoreProgram
implicit_binds
CoreProgram -> UniqSM CoreProgram
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (Floats -> CoreProgram
deFloatTop (Floats
floats1 Floats -> Floats -> Floats
`appendFloats` Floats
floats2))
HscEnv
-> PrintUnqualified
-> CoreToDo
-> CoreProgram
-> [CoreRule]
-> IO ()
endPassIO HscEnv
hsc_env PrintUnqualified
alwaysQualify CoreToDo
CorePrep CoreProgram
binds_out []
(CoreProgram, Set CostCentre) -> IO (CoreProgram, Set CostCentre)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad IO
return (CoreProgram
binds_out, Set CostCentre
cost_centres)
where
dflags :: DynFlags
dflags = HscEnv -> DynFlags
hsc_dflags HscEnv
hsc_env
corePrepExpr :: DynFlags -> HscEnv -> CoreExpr -> IO CoreExpr
corePrepExpr :: DynFlags -> HscEnv -> CpeRhs -> IO CpeRhs
corePrepExpr DynFlags
dflags HscEnv
hsc_env CpeRhs
expr =
DynFlags -> SDoc -> (CpeRhs -> ()) -> IO CpeRhs -> IO CpeRhs
forall (m :: * -> *) a.
MonadIO m =>
DynFlags -> SDoc -> (a -> ()) -> m a -> m a
External instance of the constraint type MonadIO IO
withTiming DynFlags
dflags (String -> SDoc
text String
"CorePrep [expr]") (() -> CpeRhs -> ()
forall a b. a -> b -> a
const ()) (IO CpeRhs -> IO CpeRhs) -> IO CpeRhs -> IO CpeRhs
forall a b. (a -> b) -> a -> b
$ do
UniqSupply
us <- Char -> IO UniqSupply
mkSplitUniqSupply Char
's'
CorePrepEnv
initialCorePrepEnv <- DynFlags -> HscEnv -> IO CorePrepEnv
mkInitialCorePrepEnv DynFlags
dflags HscEnv
hsc_env
let new_expr :: CpeRhs
new_expr = UniqSupply -> UniqSM CpeRhs -> CpeRhs
forall a. UniqSupply -> UniqSM a -> a
initUs_ UniqSupply
us (CorePrepEnv -> CpeRhs -> UniqSM CpeRhs
cpeBodyNF CorePrepEnv
initialCorePrepEnv CpeRhs
expr)
DynFlags -> DumpFlag -> String -> DumpFormat -> SDoc -> IO ()
dumpIfSet_dyn DynFlags
dflags DumpFlag
Opt_D_dump_prep String
"CorePrep" DumpFormat
FormatCore (CpeRhs -> SDoc
forall a. Outputable a => a -> SDoc
External instance of the constraint type forall b. OutputableBndr b => Outputable (Expr b)
External instance of the constraint type OutputableBndr Id
ppr CpeRhs
new_expr)
CpeRhs -> IO CpeRhs
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad IO
return CpeRhs
new_expr
corePrepTopBinds :: CorePrepEnv -> [CoreBind] -> UniqSM Floats
corePrepTopBinds :: CorePrepEnv -> CoreProgram -> UniqSM Floats
corePrepTopBinds CorePrepEnv
initialCorePrepEnv CoreProgram
binds
= CorePrepEnv -> CoreProgram -> UniqSM Floats
go CorePrepEnv
initialCorePrepEnv CoreProgram
binds
where
go :: CorePrepEnv -> CoreProgram -> UniqSM Floats
go CorePrepEnv
_ [] = Floats -> UniqSM Floats
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return Floats
emptyFloats
go CorePrepEnv
env (CoreBind
bind : CoreProgram
binds) = do (CorePrepEnv
env', Floats
floats, Maybe CoreBind
maybe_new_bind)
<- TopLevelFlag
-> CorePrepEnv
-> CoreBind
-> UniqSM (CorePrepEnv, Floats, Maybe CoreBind)
cpeBind TopLevelFlag
TopLevel CorePrepEnv
env CoreBind
bind
MASSERT(isNothing maybe_new_bind)
Floats
floatss <- CorePrepEnv -> CoreProgram -> UniqSM Floats
go CorePrepEnv
env' CoreProgram
binds
Floats -> UniqSM Floats
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (Floats
floats Floats -> Floats -> Floats
`appendFloats` Floats
floatss)
mkDataConWorkers :: DynFlags -> ModLocation -> [TyCon] -> [CoreBind]
mkDataConWorkers :: DynFlags -> ModLocation -> [TyCon] -> CoreProgram
mkDataConWorkers DynFlags
dflags ModLocation
mod_loc [TyCon]
data_tycons
= [ Id -> CpeRhs -> CoreBind
forall b. b -> Expr b -> Bind b
NonRec Id
id (Name -> CpeRhs -> CpeRhs
forall {b}. Name -> Expr b -> Expr b
tick_it (DataCon -> Name
forall a. NamedThing a => a -> Name
External instance of the constraint type NamedThing DataCon
getName DataCon
data_con) (Id -> CpeRhs
forall b. Id -> Expr b
Var Id
id))
| TyCon
tycon <- [TyCon]
data_tycons,
DataCon
data_con <- TyCon -> [DataCon]
tyConDataCons TyCon
tycon,
let id :: Id
id = DataCon -> Id
dataConWorkId DataCon
data_con
]
where
tick_it :: Name -> Expr b -> Expr b
tick_it Name
name
| DynFlags -> Int
debugLevel DynFlags
dflags Int -> Int -> Bool
forall a. Eq a => a -> a -> Bool
External instance of the constraint type Eq Int
== Int
0 = Expr b -> Expr b
forall a. a -> a
id
| RealSrcSpan RealSrcSpan
span Maybe BufSpan
_ <- Name -> SrcSpan
nameSrcSpan Name
name = RealSrcSpan -> Expr b -> Expr b
forall {b}. RealSrcSpan -> Expr b -> Expr b
tick RealSrcSpan
span
| Just String
file <- ModLocation -> Maybe String
ml_hs_file ModLocation
mod_loc = RealSrcSpan -> Expr b -> Expr b
forall {b}. RealSrcSpan -> Expr b -> Expr b
tick (String -> RealSrcSpan
span1 String
file)
| Bool
otherwise = RealSrcSpan -> Expr b -> Expr b
forall {b}. RealSrcSpan -> Expr b -> Expr b
tick (String -> RealSrcSpan
span1 String
"???")
where tick :: RealSrcSpan -> Expr b -> Expr b
tick RealSrcSpan
span = Tickish Id -> Expr b -> Expr b
forall b. Tickish Id -> Expr b -> Expr b
Tick (RealSrcSpan -> String -> Tickish Id
forall id. RealSrcSpan -> String -> Tickish id
SourceNote RealSrcSpan
span (String -> Tickish Id) -> String -> Tickish Id
forall a b. (a -> b) -> a -> b
$ DynFlags -> SDoc -> String
showSDoc DynFlags
dflags (Name -> SDoc
forall a. Outputable a => a -> SDoc
External instance of the constraint type Outputable Name
ppr Name
name))
span1 :: String -> RealSrcSpan
span1 String
file = RealSrcLoc -> RealSrcSpan
realSrcLocSpan (RealSrcLoc -> RealSrcSpan) -> RealSrcLoc -> RealSrcSpan
forall a b. (a -> b) -> a -> b
$ FastString -> Int -> Int -> RealSrcLoc
mkRealSrcLoc (String -> FastString
mkFastString String
file) Int
1 Int
1
cpeBind :: TopLevelFlag -> CorePrepEnv -> CoreBind
-> UniqSM (CorePrepEnv,
Floats,
Maybe CoreBind)
cpeBind :: TopLevelFlag
-> CorePrepEnv
-> CoreBind
-> UniqSM (CorePrepEnv, Floats, Maybe CoreBind)
cpeBind TopLevelFlag
top_lvl CorePrepEnv
env (NonRec Id
bndr CpeRhs
rhs)
| Bool -> Bool
not (Id -> Bool
isJoinId Id
bndr)
= do { (CorePrepEnv
env1, Id
bndr1) <- CorePrepEnv -> Id -> UniqSM (CorePrepEnv, Id)
cpCloneBndr CorePrepEnv
env Id
bndr
; let dmd :: Demand
dmd = Id -> Demand
idDemandInfo Id
bndr
is_unlifted :: Bool
is_unlifted = HasDebugCallStack => Type -> Bool
Type -> Bool
External instance of the constraint type HasDebugCallStack
isUnliftedType (Id -> Type
idType Id
bndr)
; (Floats
floats, CpeRhs
rhs1) <- TopLevelFlag
-> RecFlag
-> Demand
-> Bool
-> CorePrepEnv
-> Id
-> CpeRhs
-> UniqSM (Floats, CpeRhs)
cpePair TopLevelFlag
top_lvl RecFlag
NonRecursive
Demand
dmd Bool
is_unlifted
CorePrepEnv
env Id
bndr1 CpeRhs
rhs
; let triv_rhs :: Bool
triv_rhs = CpeRhs -> Bool
cpExprIsTrivial CpeRhs
rhs1
env2 :: CorePrepEnv
env2 | Bool
triv_rhs = CorePrepEnv -> Id -> CpeRhs -> CorePrepEnv
extendCorePrepEnvExpr CorePrepEnv
env1 Id
bndr CpeRhs
rhs1
| Bool
otherwise = CorePrepEnv
env1
floats1 :: Floats
floats1 | Bool
triv_rhs, Name -> Bool
isInternalName (Id -> Name
idName Id
bndr)
= Floats
floats
| Bool
otherwise
= Floats -> FloatingBind -> Floats
addFloat Floats
floats FloatingBind
new_float
new_float :: FloatingBind
new_float = Demand -> Bool -> Id -> CpeRhs -> FloatingBind
mkFloat Demand
dmd Bool
is_unlifted Id
bndr1 CpeRhs
rhs1
; (CorePrepEnv, Floats, Maybe CoreBind)
-> UniqSM (CorePrepEnv, Floats, Maybe CoreBind)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (CorePrepEnv
env2, Floats
floats1, Maybe CoreBind
forall a. Maybe a
Nothing) }
| Bool
otherwise
= ASSERT(not (isTopLevel top_lvl))
do { (CorePrepEnv
_, Id
bndr1) <- CorePrepEnv -> Id -> UniqSM (CorePrepEnv, Id)
cpCloneBndr CorePrepEnv
env Id
bndr
; (Id
bndr2, CpeRhs
rhs1) <- CorePrepEnv -> Id -> CpeRhs -> UniqSM (Id, CpeRhs)
cpeJoinPair CorePrepEnv
env Id
bndr1 CpeRhs
rhs
; (CorePrepEnv, Floats, Maybe CoreBind)
-> UniqSM (CorePrepEnv, Floats, Maybe CoreBind)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (CorePrepEnv -> Id -> Id -> CorePrepEnv
extendCorePrepEnv CorePrepEnv
env Id
bndr Id
bndr2,
Floats
emptyFloats,
CoreBind -> Maybe CoreBind
forall a. a -> Maybe a
Just (Id -> CpeRhs -> CoreBind
forall b. b -> Expr b -> Bind b
NonRec Id
bndr2 CpeRhs
rhs1)) }
cpeBind TopLevelFlag
top_lvl CorePrepEnv
env (Rec [(Id, CpeRhs)]
pairs)
| Bool -> Bool
not (Id -> Bool
isJoinId ([Id] -> Id
forall a. [a] -> a
head [Id]
bndrs))
= do { (CorePrepEnv
env', [Id]
bndrs1) <- CorePrepEnv -> [Id] -> UniqSM (CorePrepEnv, [Id])
cpCloneBndrs CorePrepEnv
env [Id]
bndrs
; [(Floats, CpeRhs)]
stuff <- (Id -> CpeRhs -> UniqSM (Floats, CpeRhs))
-> [Id] -> [CpeRhs] -> UniqSM [(Floats, CpeRhs)]
forall (m :: * -> *) a b c.
Applicative m =>
(a -> b -> m c) -> [a] -> [b] -> m [c]
External instance of the constraint type Applicative UniqSM
zipWithM (TopLevelFlag
-> RecFlag
-> Demand
-> Bool
-> CorePrepEnv
-> Id
-> CpeRhs
-> UniqSM (Floats, CpeRhs)
cpePair TopLevelFlag
top_lvl RecFlag
Recursive Demand
topDmd Bool
False CorePrepEnv
env')
[Id]
bndrs1 [CpeRhs]
rhss
; let ([Floats]
floats_s, [CpeRhs]
rhss1) = [(Floats, CpeRhs)] -> ([Floats], [CpeRhs])
forall a b. [(a, b)] -> ([a], [b])
unzip [(Floats, CpeRhs)]
stuff
all_pairs :: [(Id, CpeRhs)]
all_pairs = (FloatingBind -> [(Id, CpeRhs)] -> [(Id, CpeRhs)])
-> [(Id, CpeRhs)] -> OrdList FloatingBind -> [(Id, CpeRhs)]
forall a b. (a -> b -> b) -> b -> OrdList a -> b
foldrOL FloatingBind -> [(Id, CpeRhs)] -> [(Id, CpeRhs)]
add_float ([Id]
bndrs1 [Id] -> [CpeRhs] -> [(Id, CpeRhs)]
forall a b. [a] -> [b] -> [(a, b)]
`zip` [CpeRhs]
rhss1)
([Floats] -> OrdList FloatingBind
concatFloats [Floats]
floats_s)
; (CorePrepEnv, Floats, Maybe CoreBind)
-> UniqSM (CorePrepEnv, Floats, Maybe CoreBind)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (CorePrepEnv -> [(Id, Id)] -> CorePrepEnv
extendCorePrepEnvList CorePrepEnv
env ([Id]
bndrs [Id] -> [Id] -> [(Id, Id)]
forall a b. [a] -> [b] -> [(a, b)]
`zip` [Id]
bndrs1),
FloatingBind -> Floats
unitFloat (CoreBind -> FloatingBind
FloatLet ([(Id, CpeRhs)] -> CoreBind
forall b. [(b, Expr b)] -> Bind b
Rec [(Id, CpeRhs)]
all_pairs)),
Maybe CoreBind
forall a. Maybe a
Nothing) }
| Bool
otherwise
= do { (CorePrepEnv
env', [Id]
bndrs1) <- CorePrepEnv -> [Id] -> UniqSM (CorePrepEnv, [Id])
cpCloneBndrs CorePrepEnv
env [Id]
bndrs
; [(Id, CpeRhs)]
pairs1 <- (Id -> CpeRhs -> UniqSM (Id, CpeRhs))
-> [Id] -> [CpeRhs] -> UniqSM [(Id, CpeRhs)]
forall (m :: * -> *) a b c.
Applicative m =>
(a -> b -> m c) -> [a] -> [b] -> m [c]
External instance of the constraint type Applicative UniqSM
zipWithM (CorePrepEnv -> Id -> CpeRhs -> UniqSM (Id, CpeRhs)
cpeJoinPair CorePrepEnv
env') [Id]
bndrs1 [CpeRhs]
rhss
; let bndrs2 :: [Id]
bndrs2 = ((Id, CpeRhs) -> Id) -> [(Id, CpeRhs)] -> [Id]
forall a b. (a -> b) -> [a] -> [b]
map (Id, CpeRhs) -> Id
forall a b. (a, b) -> a
fst [(Id, CpeRhs)]
pairs1
; (CorePrepEnv, Floats, Maybe CoreBind)
-> UniqSM (CorePrepEnv, Floats, Maybe CoreBind)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (CorePrepEnv -> [(Id, Id)] -> CorePrepEnv
extendCorePrepEnvList CorePrepEnv
env' ([Id]
bndrs [Id] -> [Id] -> [(Id, Id)]
forall a b. [a] -> [b] -> [(a, b)]
`zip` [Id]
bndrs2),
Floats
emptyFloats,
CoreBind -> Maybe CoreBind
forall a. a -> Maybe a
Just ([(Id, CpeRhs)] -> CoreBind
forall b. [(b, Expr b)] -> Bind b
Rec [(Id, CpeRhs)]
pairs1)) }
where
([Id]
bndrs, [CpeRhs]
rhss) = [(Id, CpeRhs)] -> ([Id], [CpeRhs])
forall a b. [(a, b)] -> ([a], [b])
unzip [(Id, CpeRhs)]
pairs
add_float :: FloatingBind -> [(Id, CpeRhs)] -> [(Id, CpeRhs)]
add_float (FloatLet (NonRec Id
b CpeRhs
r)) [(Id, CpeRhs)]
prs2 = (Id
b,CpeRhs
r) (Id, CpeRhs) -> [(Id, CpeRhs)] -> [(Id, CpeRhs)]
forall a. a -> [a] -> [a]
: [(Id, CpeRhs)]
prs2
add_float (FloatLet (Rec [(Id, CpeRhs)]
prs1)) [(Id, CpeRhs)]
prs2 = [(Id, CpeRhs)]
prs1 [(Id, CpeRhs)] -> [(Id, CpeRhs)] -> [(Id, CpeRhs)]
forall a. [a] -> [a] -> [a]
++ [(Id, CpeRhs)]
prs2
add_float FloatingBind
b [(Id, CpeRhs)]
_ = String -> SDoc -> [(Id, CpeRhs)]
forall a. HasCallStack => String -> SDoc -> a
pprPanic String
"cpeBind" (FloatingBind -> SDoc
forall a. Outputable a => a -> SDoc
Instance of class: Outputable of the constraint type Outputable FloatingBind
ppr FloatingBind
b)
cpePair :: TopLevelFlag -> RecFlag -> Demand -> Bool
-> CorePrepEnv -> OutId -> CoreExpr
-> UniqSM (Floats, CpeRhs)
cpePair :: TopLevelFlag
-> RecFlag
-> Demand
-> Bool
-> CorePrepEnv
-> Id
-> CpeRhs
-> UniqSM (Floats, CpeRhs)
cpePair TopLevelFlag
top_lvl RecFlag
is_rec Demand
dmd Bool
is_unlifted CorePrepEnv
env Id
bndr CpeRhs
rhs
= ASSERT(not (isJoinId bndr))
do { (Floats
floats1, CpeRhs
rhs1) <- CorePrepEnv -> CpeRhs -> UniqSM (Floats, CpeRhs)
cpeRhsE CorePrepEnv
env CpeRhs
rhs
; (Floats
floats2, CpeRhs
rhs2) <- Floats -> CpeRhs -> UniqSM (Floats, CpeRhs)
float_from_rhs Floats
floats1 CpeRhs
rhs1
; (Floats
floats3, CpeRhs
rhs3)
<- if CpeRhs -> Int
manifestArity CpeRhs
rhs1 Int -> Int -> Bool
forall a. Ord a => a -> a -> Bool
External instance of the constraint type Ord Int
<= Int
arity
then (Floats, CpeRhs) -> UniqSM (Floats, CpeRhs)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (Floats
floats2, Int -> CpeRhs -> CpeRhs
cpeEtaExpand Int
arity CpeRhs
rhs2)
else WARN(True, text "CorePrep: silly extra arguments:" <+> ppr bndr)
(do { Id
v <- Type -> UniqSM Id
newVar (Id -> Type
idType Id
bndr)
; let float :: FloatingBind
float = Demand -> Bool -> Id -> CpeRhs -> FloatingBind
mkFloat Demand
topDmd Bool
False Id
v CpeRhs
rhs2
; (Floats, CpeRhs) -> UniqSM (Floats, CpeRhs)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return ( Floats -> FloatingBind -> Floats
addFloat Floats
floats2 FloatingBind
float
, Int -> CpeRhs -> CpeRhs
cpeEtaExpand Int
arity (Id -> CpeRhs
forall b. Id -> Expr b
Var Id
v)) })
; let (Floats
floats4, CpeRhs
rhs4) = Floats -> CpeRhs -> (Floats, CpeRhs)
wrapTicks Floats
floats3 CpeRhs
rhs3
; (Floats, CpeRhs) -> UniqSM (Floats, CpeRhs)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (Floats
floats4, CpeRhs
rhs4) }
where
arity :: Int
arity = Id -> Int
idArity Id
bndr
float_from_rhs :: Floats -> CpeRhs -> UniqSM (Floats, CpeRhs)
float_from_rhs Floats
floats CpeRhs
rhs
| Floats -> Bool
isEmptyFloats Floats
floats = (Floats, CpeRhs) -> UniqSM (Floats, CpeRhs)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (Floats
emptyFloats, CpeRhs
rhs)
| TopLevelFlag -> Bool
isTopLevel TopLevelFlag
top_lvl = Floats -> CpeRhs -> UniqSM (Floats, CpeRhs)
float_top Floats
floats CpeRhs
rhs
| Bool
otherwise = Floats -> CpeRhs -> UniqSM (Floats, CpeRhs)
float_nested Floats
floats CpeRhs
rhs
float_nested :: Floats -> CpeRhs -> UniqSM (Floats, CpeRhs)
float_nested Floats
floats CpeRhs
rhs
| RecFlag -> Demand -> Bool -> Floats -> CpeRhs -> Bool
wantFloatNested RecFlag
is_rec Demand
dmd Bool
is_unlifted Floats
floats CpeRhs
rhs
= (Floats, CpeRhs) -> UniqSM (Floats, CpeRhs)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (Floats
floats, CpeRhs
rhs)
| Bool
otherwise = Floats -> CpeRhs -> UniqSM (Floats, CpeRhs)
dontFloat Floats
floats CpeRhs
rhs
float_top :: Floats -> CpeRhs -> UniqSM (Floats, CpeRhs)
float_top Floats
floats CpeRhs
rhs
| Floats -> Bool
allLazyTop Floats
floats
= (Floats, CpeRhs) -> UniqSM (Floats, CpeRhs)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (Floats
floats, CpeRhs
rhs)
| Just (Floats, CpeRhs)
floats <- Floats -> CpeRhs -> Maybe (Floats, CpeRhs)
canFloat Floats
floats CpeRhs
rhs
= (Floats, CpeRhs) -> UniqSM (Floats, CpeRhs)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (Floats, CpeRhs)
floats
| Bool
otherwise
= Floats -> CpeRhs -> UniqSM (Floats, CpeRhs)
dontFloat Floats
floats CpeRhs
rhs
dontFloat :: Floats -> CpeRhs -> UniqSM (Floats, CpeBody)
dontFloat :: Floats -> CpeRhs -> UniqSM (Floats, CpeRhs)
dontFloat Floats
floats1 CpeRhs
rhs
= do { (Floats
floats2, CpeRhs
body) <- CpeRhs -> UniqSM (Floats, CpeRhs)
rhsToBody CpeRhs
rhs
; (Floats, CpeRhs) -> UniqSM (Floats, CpeRhs)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (Floats
emptyFloats, Floats -> CpeRhs -> CpeRhs
wrapBinds Floats
floats1 (CpeRhs -> CpeRhs) -> CpeRhs -> CpeRhs
forall a b. (a -> b) -> a -> b
$
Floats -> CpeRhs -> CpeRhs
wrapBinds Floats
floats2 CpeRhs
body) }
cpeJoinPair :: CorePrepEnv -> JoinId -> CoreExpr
-> UniqSM (JoinId, CpeRhs)
cpeJoinPair :: CorePrepEnv -> Id -> CpeRhs -> UniqSM (Id, CpeRhs)
cpeJoinPair CorePrepEnv
env Id
bndr CpeRhs
rhs
= ASSERT(isJoinId bndr)
do { let Just Int
join_arity = Id -> Maybe Int
isJoinId_maybe Id
bndr
([Id]
bndrs, CpeRhs
body) = Int -> CpeRhs -> ([Id], CpeRhs)
forall b. Int -> Expr b -> ([b], Expr b)
collectNBinders Int
join_arity CpeRhs
rhs
; (CorePrepEnv
env', [Id]
bndrs') <- CorePrepEnv -> [Id] -> UniqSM (CorePrepEnv, [Id])
cpCloneBndrs CorePrepEnv
env [Id]
bndrs
; CpeRhs
body' <- CorePrepEnv -> CpeRhs -> UniqSM CpeRhs
cpeBodyNF CorePrepEnv
env' CpeRhs
body
; let rhs' :: CpeRhs
rhs' = [Id] -> CpeRhs -> CpeRhs
mkCoreLams [Id]
bndrs' CpeRhs
body'
bndr' :: Id
bndr' = Id
bndr Id -> Unfolding -> Id
`setIdUnfolding` Unfolding
evaldUnfolding
Id -> Int -> Id
`setIdArity` (Id -> Bool) -> [Id] -> Int
forall a. (a -> Bool) -> [a] -> Int
count Id -> Bool
isId [Id]
bndrs
; (Id, CpeRhs) -> UniqSM (Id, CpeRhs)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (Id
bndr', CpeRhs
rhs') }
cpeRhsE :: CorePrepEnv -> CoreExpr -> UniqSM (Floats, CpeRhs)
cpeRhsE :: CorePrepEnv -> CpeRhs -> UniqSM (Floats, CpeRhs)
cpeRhsE CorePrepEnv
_env expr :: CpeRhs
expr@(Type {}) = (Floats, CpeRhs) -> UniqSM (Floats, CpeRhs)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (Floats
emptyFloats, CpeRhs
expr)
cpeRhsE CorePrepEnv
_env expr :: CpeRhs
expr@(Coercion {}) = (Floats, CpeRhs) -> UniqSM (Floats, CpeRhs)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (Floats
emptyFloats, CpeRhs
expr)
cpeRhsE CorePrepEnv
env (Lit (LitNumber LitNumType
LitNumInteger Integer
i Type
_))
= CorePrepEnv -> CpeRhs -> UniqSM (Floats, CpeRhs)
cpeRhsE CorePrepEnv
env (Platform -> Id -> Maybe DataCon -> Integer -> CpeRhs
cvtLitInteger (DynFlags -> Platform
targetPlatform (CorePrepEnv -> DynFlags
cpe_dynFlags CorePrepEnv
env)) (CorePrepEnv -> Id
getMkIntegerId CorePrepEnv
env)
(CorePrepEnv -> Maybe DataCon
cpe_integerSDataCon CorePrepEnv
env) Integer
i)
cpeRhsE CorePrepEnv
env (Lit (LitNumber LitNumType
LitNumNatural Integer
i Type
_))
= CorePrepEnv -> CpeRhs -> UniqSM (Floats, CpeRhs)
cpeRhsE CorePrepEnv
env (Platform -> Id -> Maybe DataCon -> Integer -> CpeRhs
cvtLitNatural (DynFlags -> Platform
targetPlatform (CorePrepEnv -> DynFlags
cpe_dynFlags CorePrepEnv
env)) (CorePrepEnv -> Id
getMkNaturalId CorePrepEnv
env)
(CorePrepEnv -> Maybe DataCon
cpe_naturalSDataCon CorePrepEnv
env) Integer
i)
cpeRhsE CorePrepEnv
_env expr :: CpeRhs
expr@(Lit {}) = (Floats, CpeRhs) -> UniqSM (Floats, CpeRhs)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (Floats
emptyFloats, CpeRhs
expr)
cpeRhsE CorePrepEnv
env expr :: CpeRhs
expr@(Var {}) = CorePrepEnv -> CpeRhs -> UniqSM (Floats, CpeRhs)
cpeApp CorePrepEnv
env CpeRhs
expr
cpeRhsE CorePrepEnv
env expr :: CpeRhs
expr@(App {}) = CorePrepEnv -> CpeRhs -> UniqSM (Floats, CpeRhs)
cpeApp CorePrepEnv
env CpeRhs
expr
cpeRhsE CorePrepEnv
env (Let CoreBind
bind CpeRhs
body)
= do { (CorePrepEnv
env', Floats
bind_floats, Maybe CoreBind
maybe_bind') <- TopLevelFlag
-> CorePrepEnv
-> CoreBind
-> UniqSM (CorePrepEnv, Floats, Maybe CoreBind)
cpeBind TopLevelFlag
NotTopLevel CorePrepEnv
env CoreBind
bind
; (Floats
body_floats, CpeRhs
body') <- CorePrepEnv -> CpeRhs -> UniqSM (Floats, CpeRhs)
cpeRhsE CorePrepEnv
env' CpeRhs
body
; let expr' :: CpeRhs
expr' = case Maybe CoreBind
maybe_bind' of Just CoreBind
bind' -> CoreBind -> CpeRhs -> CpeRhs
forall b. Bind b -> Expr b -> Expr b
Let CoreBind
bind' CpeRhs
body'
Maybe CoreBind
Nothing -> CpeRhs
body'
; (Floats, CpeRhs) -> UniqSM (Floats, CpeRhs)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (Floats
bind_floats Floats -> Floats -> Floats
`appendFloats` Floats
body_floats, CpeRhs
expr') }
cpeRhsE CorePrepEnv
env (Tick Tickish Id
tickish CpeRhs
expr)
| Tickish Id -> TickishPlacement
forall id. Tickish id -> TickishPlacement
tickishPlace Tickish Id
tickish TickishPlacement -> TickishPlacement -> Bool
forall a. Eq a => a -> a -> Bool
External instance of the constraint type Eq TickishPlacement
== TickishPlacement
PlaceNonLam Bool -> Bool -> Bool
&& Tickish Id
tickish Tickish Id -> TickishScoping -> Bool
forall id. Tickish id -> TickishScoping -> Bool
`tickishScopesLike` TickishScoping
SoftScope
= do { (Floats
floats, CpeRhs
body) <- CorePrepEnv -> CpeRhs -> UniqSM (Floats, CpeRhs)
cpeRhsE CorePrepEnv
env CpeRhs
expr
; (Floats, CpeRhs) -> UniqSM (Floats, CpeRhs)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (FloatingBind -> Floats
unitFloat (Tickish Id -> FloatingBind
FloatTick Tickish Id
tickish) Floats -> Floats -> Floats
`appendFloats` Floats
floats, CpeRhs
body) }
| Bool
otherwise
= do { CpeRhs
body <- CorePrepEnv -> CpeRhs -> UniqSM CpeRhs
cpeBodyNF CorePrepEnv
env CpeRhs
expr
; (Floats, CpeRhs) -> UniqSM (Floats, CpeRhs)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (Floats
emptyFloats, Tickish Id -> CpeRhs -> CpeRhs
mkTick Tickish Id
tickish' CpeRhs
body) }
where
tickish' :: Tickish Id
tickish' | Breakpoint Int
n [Id]
fvs <- Tickish Id
tickish
= Int -> [Id] -> Tickish Id
forall id. Int -> [id] -> Tickish id
Breakpoint Int
n ((Id -> Id) -> [Id] -> [Id]
forall a b. (a -> b) -> [a] -> [b]
map (HasDebugCallStack => CpeRhs -> Id
CpeRhs -> Id
External instance of the constraint type HasDebugCallStack
getIdFromTrivialExpr (CpeRhs -> Id) -> (Id -> CpeRhs) -> Id -> Id
forall b c a. (b -> c) -> (a -> b) -> a -> c
. CorePrepEnv -> Id -> CpeRhs
lookupCorePrepEnv CorePrepEnv
env) [Id]
fvs)
| Bool
otherwise
= Tickish Id
tickish
cpeRhsE CorePrepEnv
env (Cast CpeRhs
expr Coercion
co)
= do { (Floats
floats, CpeRhs
expr') <- CorePrepEnv -> CpeRhs -> UniqSM (Floats, CpeRhs)
cpeRhsE CorePrepEnv
env CpeRhs
expr
; (Floats, CpeRhs) -> UniqSM (Floats, CpeRhs)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (Floats
floats, CpeRhs -> Coercion -> CpeRhs
forall b. Expr b -> Coercion -> Expr b
Cast CpeRhs
expr' Coercion
co) }
cpeRhsE CorePrepEnv
env expr :: CpeRhs
expr@(Lam {})
= do { let ([Id]
bndrs,CpeRhs
body) = CpeRhs -> ([Id], CpeRhs)
forall b. Expr b -> ([b], Expr b)
collectBinders CpeRhs
expr
; (CorePrepEnv
env', [Id]
bndrs') <- CorePrepEnv -> [Id] -> UniqSM (CorePrepEnv, [Id])
cpCloneBndrs CorePrepEnv
env [Id]
bndrs
; CpeRhs
body' <- CorePrepEnv -> CpeRhs -> UniqSM CpeRhs
cpeBodyNF CorePrepEnv
env' CpeRhs
body
; (Floats, CpeRhs) -> UniqSM (Floats, CpeRhs)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (Floats
emptyFloats, [Id] -> CpeRhs -> CpeRhs
forall b. [b] -> Expr b -> Expr b
mkLams [Id]
bndrs' CpeRhs
body') }
cpeRhsE CorePrepEnv
env (Case CpeRhs
scrut Id
bndr Type
ty [Alt Id]
alts)
| CpeRhs -> Bool
isUnsafeEqualityProof CpeRhs
scrut
, [(AltCon
con, [Id]
bs, CpeRhs
rhs)] <- [Alt Id]
alts
= do { (Floats
floats1, CpeRhs
scrut') <- CorePrepEnv -> CpeRhs -> UniqSM (Floats, CpeRhs)
cpeBody CorePrepEnv
env CpeRhs
scrut
; (CorePrepEnv
env1, Id
bndr') <- CorePrepEnv -> Id -> UniqSM (CorePrepEnv, Id)
cpCloneBndr CorePrepEnv
env Id
bndr
; (CorePrepEnv
env2, [Id]
bs') <- CorePrepEnv -> [Id] -> UniqSM (CorePrepEnv, [Id])
cpCloneBndrs CorePrepEnv
env1 [Id]
bs
; (Floats
floats2, CpeRhs
rhs') <- CorePrepEnv -> CpeRhs -> UniqSM (Floats, CpeRhs)
cpeBody CorePrepEnv
env2 CpeRhs
rhs
; let case_float :: FloatingBind
case_float = CpeRhs -> Id -> AltCon -> [Id] -> Bool -> FloatingBind
FloatCase CpeRhs
scrut' Id
bndr' AltCon
con [Id]
bs' Bool
True
floats' :: Floats
floats' = (Floats
floats1 Floats -> FloatingBind -> Floats
`addFloat` FloatingBind
case_float)
Floats -> Floats -> Floats
`appendFloats` Floats
floats2
; (Floats, CpeRhs) -> UniqSM (Floats, CpeRhs)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (Floats
floats', CpeRhs
rhs') }
| Bool
otherwise
= do { (Floats
floats, CpeRhs
scrut') <- CorePrepEnv -> CpeRhs -> UniqSM (Floats, CpeRhs)
cpeBody CorePrepEnv
env CpeRhs
scrut
; (CorePrepEnv
env', Id
bndr2) <- CorePrepEnv -> Id -> UniqSM (CorePrepEnv, Id)
cpCloneBndr CorePrepEnv
env Id
bndr
; let alts' :: [Alt Id]
alts'
| GeneralFlag -> DynFlags -> Bool
gopt GeneralFlag
Opt_CatchBottoms (CorePrepEnv -> DynFlags
cpe_dynFlags CorePrepEnv
env)
, Bool -> Bool
not ([Alt Id] -> Bool
forall b. [Alt b] -> Bool
altsAreExhaustive [Alt Id]
alts)
= [Alt Id] -> Maybe CpeRhs -> [Alt Id]
forall a b. [(AltCon, [a], b)] -> Maybe b -> [(AltCon, [a], b)]
addDefault [Alt Id]
alts (CpeRhs -> Maybe CpeRhs
forall a. a -> Maybe a
Just CpeRhs
err)
| Bool
otherwise = [Alt Id]
alts
where err :: CpeRhs
err = Id -> Type -> String -> CpeRhs
mkRuntimeErrorApp Id
rUNTIME_ERROR_ID Type
ty
String
"Bottoming expression returned"
; [Alt Id]
alts'' <- (Alt Id -> UniqSM (Alt Id)) -> [Alt Id] -> UniqSM [Alt Id]
forall (t :: * -> *) (m :: * -> *) a b.
(Traversable t, Monad m) =>
(a -> m b) -> t a -> m (t b)
External instance of the constraint type Monad UniqSM
External instance of the constraint type Traversable []
mapM (CorePrepEnv -> Alt Id -> UniqSM (Alt Id)
forall {a}.
CorePrepEnv -> (a, [Id], CpeRhs) -> UniqSM (a, [Id], CpeRhs)
sat_alt CorePrepEnv
env') [Alt Id]
alts'
; (Floats, CpeRhs) -> UniqSM (Floats, CpeRhs)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (Floats
floats, CpeRhs -> Id -> Type -> [Alt Id] -> CpeRhs
forall b. Expr b -> b -> Type -> [Alt b] -> Expr b
Case CpeRhs
scrut' Id
bndr2 Type
ty [Alt Id]
alts'') }
where
sat_alt :: CorePrepEnv -> (a, [Id], CpeRhs) -> UniqSM (a, [Id], CpeRhs)
sat_alt CorePrepEnv
env (a
con, [Id]
bs, CpeRhs
rhs)
= do { (CorePrepEnv
env2, [Id]
bs') <- CorePrepEnv -> [Id] -> UniqSM (CorePrepEnv, [Id])
cpCloneBndrs CorePrepEnv
env [Id]
bs
; CpeRhs
rhs' <- CorePrepEnv -> CpeRhs -> UniqSM CpeRhs
cpeBodyNF CorePrepEnv
env2 CpeRhs
rhs
; (a, [Id], CpeRhs) -> UniqSM (a, [Id], CpeRhs)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (a
con, [Id]
bs', CpeRhs
rhs') }
cvtLitInteger :: Platform -> Id -> Maybe DataCon -> Integer -> CoreExpr
cvtLitInteger :: Platform -> Id -> Maybe DataCon -> Integer -> CpeRhs
cvtLitInteger Platform
platform Id
_ (Just DataCon
sdatacon) Integer
i
| Platform -> Integer -> Bool
platformInIntRange Platform
platform Integer
i
= DataCon -> [CpeRhs] -> CpeRhs
forall b. DataCon -> [Arg b] -> Arg b
mkConApp DataCon
sdatacon [Literal -> CpeRhs
forall b. Literal -> Expr b
Lit (Platform -> Integer -> Literal
mkLitInt Platform
platform Integer
i)]
cvtLitInteger Platform
platform Id
mk_integer Maybe DataCon
_ Integer
i
= CpeRhs -> [CpeRhs] -> CpeRhs
forall b. Expr b -> [Expr b] -> Expr b
mkApps (Id -> CpeRhs
forall b. Id -> Expr b
Var Id
mk_integer) [CpeRhs
forall {b}. Expr b
isNonNegative, CpeRhs
ints]
where isNonNegative :: Expr b
isNonNegative = if Integer
i Integer -> Integer -> Bool
forall a. Ord a => a -> a -> Bool
External instance of the constraint type Ord Integer
< Integer
0 then DataCon -> [Expr b] -> Expr b
forall b. DataCon -> [Arg b] -> Arg b
mkConApp DataCon
falseDataCon []
else DataCon -> [Expr b] -> Expr b
forall b. DataCon -> [Arg b] -> Arg b
mkConApp DataCon
trueDataCon []
ints :: CpeRhs
ints = Type -> [CpeRhs] -> CpeRhs
mkListExpr Type
intTy (Integer -> [CpeRhs]
forall {b}. Integer -> [Expr b]
f (Integer -> Integer
forall a. Num a => a -> a
External instance of the constraint type Num Integer
abs Integer
i))
f :: Integer -> [Expr b]
f Integer
0 = []
f Integer
x = let low :: Integer
low = Integer
x Integer -> Integer -> Integer
forall a. Bits a => a -> a -> a
External instance of the constraint type Bits Integer
.&. Integer
mask
high :: Integer
high = Integer
x Integer -> Int -> Integer
forall a. Bits a => a -> Int -> a
External instance of the constraint type Bits Integer
`shiftR` Int
bits
in DataCon -> [Expr b] -> Expr b
forall b. DataCon -> [Arg b] -> Arg b
mkConApp DataCon
intDataCon [Literal -> Expr b
forall b. Literal -> Expr b
Lit (Platform -> Integer -> Literal
mkLitInt Platform
platform Integer
low)] Expr b -> [Expr b] -> [Expr b]
forall a. a -> [a] -> [a]
: Integer -> [Expr b]
f Integer
high
bits :: Int
bits = Int
31
mask :: Integer
mask = Integer
2 Integer -> Int -> Integer
forall a b. (Num a, Integral b) => a -> b -> a
External instance of the constraint type Integral Int
External instance of the constraint type Num Integer
^ Int
bits Integer -> Integer -> Integer
forall a. Num a => a -> a -> a
External instance of the constraint type Num Integer
- Integer
1
cvtLitNatural :: Platform -> Id -> Maybe DataCon -> Integer -> CoreExpr
cvtLitNatural :: Platform -> Id -> Maybe DataCon -> Integer -> CpeRhs
cvtLitNatural Platform
platform Id
_ (Just DataCon
sdatacon) Integer
i
| Platform -> Integer -> Bool
platformInWordRange Platform
platform Integer
i
= DataCon -> [CpeRhs] -> CpeRhs
forall b. DataCon -> [Arg b] -> Arg b
mkConApp DataCon
sdatacon [Literal -> CpeRhs
forall b. Literal -> Expr b
Lit (Platform -> Integer -> Literal
mkLitWord Platform
platform Integer
i)]
cvtLitNatural Platform
platform Id
mk_natural Maybe DataCon
_ Integer
i
= CpeRhs -> [CpeRhs] -> CpeRhs
forall b. Expr b -> [Expr b] -> Expr b
mkApps (Id -> CpeRhs
forall b. Id -> Expr b
Var Id
mk_natural) [CpeRhs
words]
where words :: CpeRhs
words = Type -> [CpeRhs] -> CpeRhs
mkListExpr Type
wordTy (Integer -> [CpeRhs]
forall {b}. Integer -> [Expr b]
f Integer
i)
f :: Integer -> [Expr b]
f Integer
0 = []
f Integer
x = let low :: Integer
low = Integer
x Integer -> Integer -> Integer
forall a. Bits a => a -> a -> a
External instance of the constraint type Bits Integer
.&. Integer
mask
high :: Integer
high = Integer
x Integer -> Int -> Integer
forall a. Bits a => a -> Int -> a
External instance of the constraint type Bits Integer
`shiftR` Int
bits
in DataCon -> [Expr b] -> Expr b
forall b. DataCon -> [Arg b] -> Arg b
mkConApp DataCon
wordDataCon [Literal -> Expr b
forall b. Literal -> Expr b
Lit (Platform -> Integer -> Literal
mkLitWord Platform
platform Integer
low)] Expr b -> [Expr b] -> [Expr b]
forall a. a -> [a] -> [a]
: Integer -> [Expr b]
f Integer
high
bits :: Int
bits = Int
32
mask :: Integer
mask = Integer
2 Integer -> Int -> Integer
forall a b. (Num a, Integral b) => a -> b -> a
External instance of the constraint type Integral Int
External instance of the constraint type Num Integer
^ Int
bits Integer -> Integer -> Integer
forall a. Num a => a -> a -> a
External instance of the constraint type Num Integer
- Integer
1
cpeBodyNF :: CorePrepEnv -> CoreExpr -> UniqSM CpeBody
cpeBodyNF :: CorePrepEnv -> CpeRhs -> UniqSM CpeRhs
cpeBodyNF CorePrepEnv
env CpeRhs
expr
= do { (Floats
floats, CpeRhs
body) <- CorePrepEnv -> CpeRhs -> UniqSM (Floats, CpeRhs)
cpeBody CorePrepEnv
env CpeRhs
expr
; CpeRhs -> UniqSM CpeRhs
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (Floats -> CpeRhs -> CpeRhs
wrapBinds Floats
floats CpeRhs
body) }
cpeBody :: CorePrepEnv -> CoreExpr -> UniqSM (Floats, CpeBody)
cpeBody :: CorePrepEnv -> CpeRhs -> UniqSM (Floats, CpeRhs)
cpeBody CorePrepEnv
env CpeRhs
expr
= do { (Floats
floats1, CpeRhs
rhs) <- CorePrepEnv -> CpeRhs -> UniqSM (Floats, CpeRhs)
cpeRhsE CorePrepEnv
env CpeRhs
expr
; (Floats
floats2, CpeRhs
body) <- CpeRhs -> UniqSM (Floats, CpeRhs)
rhsToBody CpeRhs
rhs
; (Floats, CpeRhs) -> UniqSM (Floats, CpeRhs)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (Floats
floats1 Floats -> Floats -> Floats
`appendFloats` Floats
floats2, CpeRhs
body) }
rhsToBody :: CpeRhs -> UniqSM (Floats, CpeBody)
rhsToBody :: CpeRhs -> UniqSM (Floats, CpeRhs)
rhsToBody (Tick Tickish Id
t CpeRhs
expr)
| Tickish Id -> TickishScoping
forall id. Tickish id -> TickishScoping
tickishScoped Tickish Id
t TickishScoping -> TickishScoping -> Bool
forall a. Eq a => a -> a -> Bool
External instance of the constraint type Eq TickishScoping
== TickishScoping
NoScope
= do { (Floats
floats, CpeRhs
expr') <- CpeRhs -> UniqSM (Floats, CpeRhs)
rhsToBody CpeRhs
expr
; (Floats, CpeRhs) -> UniqSM (Floats, CpeRhs)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (Floats
floats, Tickish Id -> CpeRhs -> CpeRhs
mkTick Tickish Id
t CpeRhs
expr') }
rhsToBody (Cast CpeRhs
e Coercion
co)
= do { (Floats
floats, CpeRhs
e') <- CpeRhs -> UniqSM (Floats, CpeRhs)
rhsToBody CpeRhs
e
; (Floats, CpeRhs) -> UniqSM (Floats, CpeRhs)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (Floats
floats, CpeRhs -> Coercion -> CpeRhs
forall b. Expr b -> Coercion -> Expr b
Cast CpeRhs
e' Coercion
co) }
rhsToBody expr :: CpeRhs
expr@(Lam {})
| Just CpeRhs
no_lam_result <- [Id] -> CpeRhs -> Maybe CpeRhs
tryEtaReducePrep [Id]
bndrs CpeRhs
body
= (Floats, CpeRhs) -> UniqSM (Floats, CpeRhs)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (Floats
emptyFloats, CpeRhs
no_lam_result)
| (Id -> Bool) -> [Id] -> Bool
forall (t :: * -> *) a. Foldable t => (a -> Bool) -> t a -> Bool
External instance of the constraint type Foldable []
all Id -> Bool
isTyVar [Id]
bndrs
= (Floats, CpeRhs) -> UniqSM (Floats, CpeRhs)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (Floats
emptyFloats, CpeRhs
expr)
| Bool
otherwise
= do { Id
fn <- Type -> UniqSM Id
newVar (CpeRhs -> Type
exprType CpeRhs
expr)
; let rhs :: CpeRhs
rhs = Int -> CpeRhs -> CpeRhs
cpeEtaExpand (CpeRhs -> Int
exprArity CpeRhs
expr) CpeRhs
expr
float :: FloatingBind
float = CoreBind -> FloatingBind
FloatLet (Id -> CpeRhs -> CoreBind
forall b. b -> Expr b -> Bind b
NonRec Id
fn CpeRhs
rhs)
; (Floats, CpeRhs) -> UniqSM (Floats, CpeRhs)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (FloatingBind -> Floats
unitFloat FloatingBind
float, Id -> CpeRhs
forall b. Id -> Expr b
Var Id
fn) }
where
([Id]
bndrs,CpeRhs
body) = CpeRhs -> ([Id], CpeRhs)
forall b. Expr b -> ([b], Expr b)
collectBinders CpeRhs
expr
rhsToBody CpeRhs
expr = (Floats, CpeRhs) -> UniqSM (Floats, CpeRhs)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (Floats
emptyFloats, CpeRhs
expr)
data ArgInfo = CpeApp CoreArg
| CpeCast Coercion
| CpeTick (Tickish Id)
cpeApp :: CorePrepEnv -> CoreExpr -> UniqSM (Floats, CpeRhs)
cpeApp :: CorePrepEnv -> CpeRhs -> UniqSM (Floats, CpeRhs)
cpeApp CorePrepEnv
top_env CpeRhs
expr
= do { let (CpeRhs
terminal, [ArgInfo]
args, Int
depth) = CpeRhs -> (CpeRhs, [ArgInfo], Int)
collect_args CpeRhs
expr
; CorePrepEnv
-> CpeRhs -> [ArgInfo] -> Int -> UniqSM (Floats, CpeRhs)
cpe_app CorePrepEnv
top_env CpeRhs
terminal [ArgInfo]
args Int
depth
}
where
collect_args :: CoreExpr -> (CoreExpr, [ArgInfo], Int)
collect_args :: CpeRhs -> (CpeRhs, [ArgInfo], Int)
collect_args CpeRhs
e = CpeRhs -> [ArgInfo] -> Int -> (CpeRhs, [ArgInfo], Int)
forall {c}.
Num c =>
CpeRhs -> [ArgInfo] -> c -> (CpeRhs, [ArgInfo], c)
External instance of the constraint type Num Int
go CpeRhs
e [] Int
0
where
go :: CpeRhs -> [ArgInfo] -> c -> (CpeRhs, [ArgInfo], c)
go (App CpeRhs
fun CpeRhs
arg) [ArgInfo]
as !c
depth
= CpeRhs -> [ArgInfo] -> c -> (CpeRhs, [ArgInfo], c)
go CpeRhs
fun (CpeRhs -> ArgInfo
CpeApp CpeRhs
arg ArgInfo -> [ArgInfo] -> [ArgInfo]
forall a. a -> [a] -> [a]
: [ArgInfo]
as)
(if CpeRhs -> Bool
forall b. Expr b -> Bool
isTyCoArg CpeRhs
arg then c
depth else c
depth c -> c -> c
forall a. Num a => a -> a -> a
Evidence bound by a type signature of the constraint type Num c
+ c
1)
go (Cast CpeRhs
fun Coercion
co) [ArgInfo]
as c
depth
= CpeRhs -> [ArgInfo] -> c -> (CpeRhs, [ArgInfo], c)
go CpeRhs
fun (Coercion -> ArgInfo
CpeCast Coercion
co ArgInfo -> [ArgInfo] -> [ArgInfo]
forall a. a -> [a] -> [a]
: [ArgInfo]
as) c
depth
go (Tick Tickish Id
tickish CpeRhs
fun) [ArgInfo]
as c
depth
| Tickish Id -> TickishPlacement
forall id. Tickish id -> TickishPlacement
tickishPlace Tickish Id
tickish TickishPlacement -> TickishPlacement -> Bool
forall a. Eq a => a -> a -> Bool
External instance of the constraint type Eq TickishPlacement
== TickishPlacement
PlaceNonLam
Bool -> Bool -> Bool
&& Tickish Id
tickish Tickish Id -> TickishScoping -> Bool
forall id. Tickish id -> TickishScoping -> Bool
`tickishScopesLike` TickishScoping
SoftScope
= CpeRhs -> [ArgInfo] -> c -> (CpeRhs, [ArgInfo], c)
go CpeRhs
fun (Tickish Id -> ArgInfo
CpeTick Tickish Id
tickish ArgInfo -> [ArgInfo] -> [ArgInfo]
forall a. a -> [a] -> [a]
: [ArgInfo]
as) c
depth
go CpeRhs
terminal [ArgInfo]
as c
depth = (CpeRhs
terminal, [ArgInfo]
as, c
depth)
cpe_app :: CorePrepEnv
-> CoreExpr
-> [ArgInfo]
-> Int
-> UniqSM (Floats, CpeRhs)
cpe_app :: CorePrepEnv
-> CpeRhs -> [ArgInfo] -> Int -> UniqSM (Floats, CpeRhs)
cpe_app CorePrepEnv
env (Var Id
f) (CpeApp Type{} : CpeApp CpeRhs
arg : [ArgInfo]
args) Int
depth
| Id
f Id -> Unique -> Bool
forall a. Uniquable a => a -> Unique -> Bool
External instance of the constraint type Uniquable Id
`hasKey` Unique
lazyIdKey
Bool -> Bool -> Bool
|| Id
f Id -> Unique -> Bool
forall a. Uniquable a => a -> Unique -> Bool
External instance of the constraint type Uniquable Id
`hasKey` Unique
noinlineIdKey
= let (CpeRhs
terminal, [ArgInfo]
args', Int
depth') = CpeRhs -> (CpeRhs, [ArgInfo], Int)
collect_args CpeRhs
arg
in CorePrepEnv
-> CpeRhs -> [ArgInfo] -> Int -> UniqSM (Floats, CpeRhs)
cpe_app CorePrepEnv
env CpeRhs
terminal ([ArgInfo]
args' [ArgInfo] -> [ArgInfo] -> [ArgInfo]
forall a. [a] -> [a] -> [a]
++ [ArgInfo]
args) (Int
depth Int -> Int -> Int
forall a. Num a => a -> a -> a
External instance of the constraint type Num Int
+ Int
depth' Int -> Int -> Int
forall a. Num a => a -> a -> a
External instance of the constraint type Num Int
- Int
1)
cpe_app CorePrepEnv
env (Var Id
f) [CpeApp _runtimeRep :: CpeRhs
_runtimeRep@Type{}, CpeApp _type :: CpeRhs
_type@Type{}, CpeApp CpeRhs
arg] Int
1
| Id
f Id -> Unique -> Bool
forall a. Uniquable a => a -> Unique -> Bool
External instance of the constraint type Uniquable Id
`hasKey` Unique
runRWKey
= case CpeRhs
arg of
Lam Id
s CpeRhs
body -> CorePrepEnv
-> CpeRhs -> [ArgInfo] -> Int -> UniqSM (Floats, CpeRhs)
cpe_app (CorePrepEnv -> Id -> Id -> CorePrepEnv
extendCorePrepEnv CorePrepEnv
env Id
s Id
realWorldPrimId) CpeRhs
body [] Int
0
CpeRhs
_ -> CorePrepEnv
-> CpeRhs -> [ArgInfo] -> Int -> UniqSM (Floats, CpeRhs)
cpe_app CorePrepEnv
env CpeRhs
arg [CpeRhs -> ArgInfo
CpeApp (Id -> CpeRhs
forall b. Id -> Expr b
Var Id
realWorldPrimId)] Int
1
cpe_app CorePrepEnv
env (Var Id
v) [ArgInfo]
args Int
depth
= do { Id
v1 <- Id -> UniqSM Id
fiddleCCall Id
v
; let e2 :: CpeRhs
e2 = CorePrepEnv -> Id -> CpeRhs
lookupCorePrepEnv CorePrepEnv
env Id
v1
hd :: Maybe Id
hd = CpeRhs -> Maybe Id
getIdFromTrivialExpr_maybe CpeRhs
e2
; (CpeRhs
app, Floats
floats) <- [ArgInfo]
-> CpeRhs -> Type -> Floats -> [Demand] -> UniqSM (CpeRhs, Floats)
rebuild_app [ArgInfo]
args CpeRhs
e2 (CpeRhs -> Type
exprType CpeRhs
e2) Floats
emptyFloats [Demand]
stricts
; Maybe Id -> CpeRhs -> Floats -> Int -> UniqSM (Floats, CpeRhs)
forall {a}. Maybe Id -> CpeRhs -> a -> Int -> UniqSM (a, CpeRhs)
mb_saturate Maybe Id
hd CpeRhs
app Floats
floats Int
depth }
where
stricts :: [Demand]
stricts = case Id -> StrictSig
idStrictness Id
v of
StrictSig (DmdType DmdEnv
_ [Demand]
demands Divergence
_)
| [Demand] -> Int -> Ordering
forall a. [a] -> Int -> Ordering
listLengthCmp [Demand]
demands Int
depth Ordering -> Ordering -> Bool
forall a. Eq a => a -> a -> Bool
External instance of the constraint type Eq Ordering
/= Ordering
GT -> [Demand]
demands
| Bool
otherwise -> []
cpe_app CorePrepEnv
env CpeRhs
fun [] Int
_ = CorePrepEnv -> CpeRhs -> UniqSM (Floats, CpeRhs)
cpeRhsE CorePrepEnv
env CpeRhs
fun
cpe_app CorePrepEnv
env CpeRhs
fun [ArgInfo]
args Int
depth
= do { (Floats
fun_floats, CpeRhs
fun') <- CorePrepEnv -> Demand -> CpeRhs -> Type -> UniqSM (Floats, CpeRhs)
cpeArg CorePrepEnv
env Demand
evalDmd CpeRhs
fun Type
ty
; (CpeRhs
app, Floats
floats) <- [ArgInfo]
-> CpeRhs -> Type -> Floats -> [Demand] -> UniqSM (CpeRhs, Floats)
rebuild_app [ArgInfo]
args CpeRhs
fun' Type
ty Floats
fun_floats []
; Maybe Id -> CpeRhs -> Floats -> Int -> UniqSM (Floats, CpeRhs)
forall {a}. Maybe Id -> CpeRhs -> a -> Int -> UniqSM (a, CpeRhs)
mb_saturate Maybe Id
forall a. Maybe a
Nothing CpeRhs
app Floats
floats Int
depth }
where
ty :: Type
ty = CpeRhs -> Type
exprType CpeRhs
fun
mb_saturate :: Maybe Id -> CpeRhs -> a -> Int -> UniqSM (a, CpeRhs)
mb_saturate Maybe Id
head CpeRhs
app a
floats Int
depth =
case Maybe Id
head of
Just Id
fn_id -> do { CpeRhs
sat_app <- Id -> CpeRhs -> Int -> UniqSM CpeRhs
maybeSaturate Id
fn_id CpeRhs
app Int
depth
; (a, CpeRhs) -> UniqSM (a, CpeRhs)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (a
floats, CpeRhs
sat_app) }
Maybe Id
_other -> (a, CpeRhs) -> UniqSM (a, CpeRhs)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (a
floats, CpeRhs
app)
rebuild_app
:: [ArgInfo]
-> CpeApp
-> Type
-> Floats
-> [Demand]
-> UniqSM (CpeApp, Floats)
rebuild_app :: [ArgInfo]
-> CpeRhs -> Type -> Floats -> [Demand] -> UniqSM (CpeRhs, Floats)
rebuild_app [] CpeRhs
app Type
_ Floats
floats [Demand]
ss = do
MASSERT(null ss)
(CpeRhs, Floats) -> UniqSM (CpeRhs, Floats)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (CpeRhs
app, Floats
floats)
rebuild_app (ArgInfo
a : [ArgInfo]
as) CpeRhs
fun' Type
fun_ty Floats
floats [Demand]
ss = case ArgInfo
a of
CpeApp arg :: CpeRhs
arg@(Type Type
arg_ty) ->
[ArgInfo]
-> CpeRhs -> Type -> Floats -> [Demand] -> UniqSM (CpeRhs, Floats)
rebuild_app [ArgInfo]
as (CpeRhs -> CpeRhs -> CpeRhs
forall b. Expr b -> Expr b -> Expr b
App CpeRhs
fun' CpeRhs
arg) (HasDebugCallStack => Type -> Type -> Type
Type -> Type -> Type
External instance of the constraint type HasDebugCallStack
piResultTy Type
fun_ty Type
arg_ty) Floats
floats [Demand]
ss
CpeApp arg :: CpeRhs
arg@(Coercion {}) ->
[ArgInfo]
-> CpeRhs -> Type -> Floats -> [Demand] -> UniqSM (CpeRhs, Floats)
rebuild_app [ArgInfo]
as (CpeRhs -> CpeRhs -> CpeRhs
forall b. Expr b -> Expr b -> Expr b
App CpeRhs
fun' CpeRhs
arg) (Type -> Type
funResultTy Type
fun_ty) Floats
floats [Demand]
ss
CpeApp CpeRhs
arg -> do
let (Demand
ss1, [Demand]
ss_rest)
= case ([Demand]
ss, CpeRhs -> Bool
isLazyExpr CpeRhs
arg) of
(Demand
_ : [Demand]
ss_rest, Bool
True) -> (Demand
topDmd, [Demand]
ss_rest)
(Demand
ss1 : [Demand]
ss_rest, Bool
False) -> (Demand
ss1, [Demand]
ss_rest)
([], Bool
_) -> (Demand
topDmd, [])
(Type
arg_ty, Type
res_ty) =
case Type -> Maybe (Type, Type)
splitFunTy_maybe Type
fun_ty of
Just (Type, Type)
as -> (Type, Type)
as
Maybe (Type, Type)
Nothing -> String -> SDoc -> (Type, Type)
forall a. HasCallStack => String -> SDoc -> a
pprPanic String
"cpeBody" (Type -> SDoc
forall a. Outputable a => a -> SDoc
External instance of the constraint type Outputable Type
ppr Type
fun_ty SDoc -> SDoc -> SDoc
$$ CpeRhs -> SDoc
forall a. Outputable a => a -> SDoc
External instance of the constraint type forall b. OutputableBndr b => Outputable (Expr b)
External instance of the constraint type OutputableBndr Id
ppr CpeRhs
expr)
(Floats
fs, CpeRhs
arg') <- CorePrepEnv -> Demand -> CpeRhs -> Type -> UniqSM (Floats, CpeRhs)
cpeArg CorePrepEnv
top_env Demand
ss1 CpeRhs
arg Type
arg_ty
[ArgInfo]
-> CpeRhs -> Type -> Floats -> [Demand] -> UniqSM (CpeRhs, Floats)
rebuild_app [ArgInfo]
as (CpeRhs -> CpeRhs -> CpeRhs
forall b. Expr b -> Expr b -> Expr b
App CpeRhs
fun' CpeRhs
arg') Type
res_ty (Floats
fs Floats -> Floats -> Floats
`appendFloats` Floats
floats) [Demand]
ss_rest
CpeCast Coercion
co ->
let ty2 :: Type
ty2 = Coercion -> Type
coercionRKind Coercion
co
in [ArgInfo]
-> CpeRhs -> Type -> Floats -> [Demand] -> UniqSM (CpeRhs, Floats)
rebuild_app [ArgInfo]
as (CpeRhs -> Coercion -> CpeRhs
forall b. Expr b -> Coercion -> Expr b
Cast CpeRhs
fun' Coercion
co) Type
ty2 Floats
floats [Demand]
ss
CpeTick Tickish Id
tickish ->
[ArgInfo]
-> CpeRhs -> Type -> Floats -> [Demand] -> UniqSM (CpeRhs, Floats)
rebuild_app [ArgInfo]
as CpeRhs
fun' Type
fun_ty (Floats -> FloatingBind -> Floats
addFloat Floats
floats (Tickish Id -> FloatingBind
FloatTick Tickish Id
tickish)) [Demand]
ss
isLazyExpr :: CoreExpr -> Bool
isLazyExpr :: CpeRhs -> Bool
isLazyExpr (Cast CpeRhs
e Coercion
_) = CpeRhs -> Bool
isLazyExpr CpeRhs
e
isLazyExpr (Tick Tickish Id
_ CpeRhs
e) = CpeRhs -> Bool
isLazyExpr CpeRhs
e
isLazyExpr (Var Id
f `App` CpeRhs
_ `App` CpeRhs
_) = Id
f Id -> Unique -> Bool
forall a. Uniquable a => a -> Unique -> Bool
External instance of the constraint type Uniquable Id
`hasKey` Unique
lazyIdKey
isLazyExpr CpeRhs
_ = Bool
False
okCpeArg :: CoreExpr -> Bool
okCpeArg :: CpeRhs -> Bool
okCpeArg (Lit Literal
_) = Bool
False
okCpeArg CpeRhs
expr = Bool -> Bool
not (CpeRhs -> Bool
cpExprIsTrivial CpeRhs
expr)
cpExprIsTrivial :: CoreExpr -> Bool
cpExprIsTrivial :: CpeRhs -> Bool
cpExprIsTrivial CpeRhs
e
| Tick Tickish Id
t CpeRhs
e <- CpeRhs
e
, Bool -> Bool
not (Tickish Id -> Bool
forall id. Tickish id -> Bool
tickishIsCode Tickish Id
t)
= CpeRhs -> Bool
cpExprIsTrivial CpeRhs
e
| Case CpeRhs
scrut Id
_ Type
_ [Alt Id]
alts <- CpeRhs
e
, CpeRhs -> Bool
isUnsafeEqualityProof CpeRhs
scrut
, [(AltCon
_,[Id]
_,CpeRhs
rhs)] <- [Alt Id]
alts
= CpeRhs -> Bool
cpExprIsTrivial CpeRhs
rhs
| Bool
otherwise
= CpeRhs -> Bool
exprIsTrivial CpeRhs
e
isUnsafeEqualityProof :: CoreExpr -> Bool
isUnsafeEqualityProof :: CpeRhs -> Bool
isUnsafeEqualityProof CpeRhs
e
| Var Id
v `App` Type Type
_ `App` Type Type
_ `App` Type Type
_ <- CpeRhs
e
= Id -> Name
idName Id
v Name -> Name -> Bool
forall a. Eq a => a -> a -> Bool
External instance of the constraint type Eq Name
== Name
unsafeEqualityProofName
| Bool
otherwise
= Bool
False
cpeArg :: CorePrepEnv -> Demand
-> CoreArg -> Type -> UniqSM (Floats, CpeArg)
cpeArg :: CorePrepEnv -> Demand -> CpeRhs -> Type -> UniqSM (Floats, CpeRhs)
cpeArg CorePrepEnv
env Demand
dmd CpeRhs
arg Type
arg_ty
= do { (Floats
floats1, CpeRhs
arg1) <- CorePrepEnv -> CpeRhs -> UniqSM (Floats, CpeRhs)
cpeRhsE CorePrepEnv
env CpeRhs
arg
; (Floats
floats2, CpeRhs
arg2) <- if Floats -> CpeRhs -> Bool
want_float Floats
floats1 CpeRhs
arg1
then (Floats, CpeRhs) -> UniqSM (Floats, CpeRhs)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (Floats
floats1, CpeRhs
arg1)
else Floats -> CpeRhs -> UniqSM (Floats, CpeRhs)
dontFloat Floats
floats1 CpeRhs
arg1
; if CpeRhs -> Bool
okCpeArg CpeRhs
arg2
then do { Id
v <- Type -> UniqSM Id
newVar Type
arg_ty
; let arg3 :: CpeRhs
arg3 = Int -> CpeRhs -> CpeRhs
cpeEtaExpand (CpeRhs -> Int
exprArity CpeRhs
arg2) CpeRhs
arg2
arg_float :: FloatingBind
arg_float = Demand -> Bool -> Id -> CpeRhs -> FloatingBind
mkFloat Demand
dmd Bool
is_unlifted Id
v CpeRhs
arg3
; (Floats, CpeRhs) -> UniqSM (Floats, CpeRhs)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (Floats -> FloatingBind -> Floats
addFloat Floats
floats2 FloatingBind
arg_float, Id -> CpeRhs
forall b. Id -> Expr b
varToCoreExpr Id
v) }
else (Floats, CpeRhs) -> UniqSM (Floats, CpeRhs)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (Floats
floats2, CpeRhs
arg2)
}
where
is_unlifted :: Bool
is_unlifted = HasDebugCallStack => Type -> Bool
Type -> Bool
External instance of the constraint type HasDebugCallStack
isUnliftedType Type
arg_ty
want_float :: Floats -> CpeRhs -> Bool
want_float = RecFlag -> Demand -> Bool -> Floats -> CpeRhs -> Bool
wantFloatNested RecFlag
NonRecursive Demand
dmd Bool
is_unlifted
maybeSaturate :: Id -> CpeApp -> Int -> UniqSM CpeRhs
maybeSaturate :: Id -> CpeRhs -> Int -> UniqSM CpeRhs
maybeSaturate Id
fn CpeRhs
expr Int
n_args
| Id -> Bool
hasNoBinding Id
fn
= CpeRhs -> UniqSM CpeRhs
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return CpeRhs
sat_expr
| Bool
otherwise
= CpeRhs -> UniqSM CpeRhs
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return CpeRhs
expr
where
fn_arity :: Int
fn_arity = Id -> Int
idArity Id
fn
excess_arity :: Int
excess_arity = Int
fn_arity Int -> Int -> Int
forall a. Num a => a -> a -> a
External instance of the constraint type Num Int
- Int
n_args
sat_expr :: CpeRhs
sat_expr = Int -> CpeRhs -> CpeRhs
cpeEtaExpand Int
excess_arity CpeRhs
expr
cpeEtaExpand :: Arity -> CpeRhs -> CpeRhs
cpeEtaExpand :: Int -> CpeRhs -> CpeRhs
cpeEtaExpand Int
arity CpeRhs
expr
| Int
arity Int -> Int -> Bool
forall a. Eq a => a -> a -> Bool
External instance of the constraint type Eq Int
== Int
0 = CpeRhs
expr
| Bool
otherwise = Int -> CpeRhs -> CpeRhs
etaExpand Int
arity CpeRhs
expr
tryEtaReducePrep :: [CoreBndr] -> CoreExpr -> Maybe CoreExpr
tryEtaReducePrep :: [Id] -> CpeRhs -> Maybe CpeRhs
tryEtaReducePrep [Id]
bndrs expr :: CpeRhs
expr@(App CpeRhs
_ CpeRhs
_)
| CpeRhs -> Bool
forall b. Expr b -> Bool
ok_to_eta_reduce CpeRhs
f
, Int
n_remaining Int -> Int -> Bool
forall a. Ord a => a -> a -> Bool
External instance of the constraint type Ord Int
>= Int
0
, [Bool] -> Bool
forall (t :: * -> *). Foldable t => t Bool -> Bool
External instance of the constraint type Foldable []
and ((Id -> CpeRhs -> Bool) -> [Id] -> [CpeRhs] -> [Bool]
forall a b c. (a -> b -> c) -> [a] -> [b] -> [c]
zipWith Id -> CpeRhs -> Bool
forall {b}. Id -> Expr b -> Bool
ok [Id]
bndrs [CpeRhs]
last_args)
, Bool -> Bool
not ((Id -> Bool) -> [Id] -> Bool
forall (t :: * -> *) a. Foldable t => (a -> Bool) -> t a -> Bool
External instance of the constraint type Foldable []
any (Id -> VarSet -> Bool
`elemVarSet` VarSet
fvs_remaining) [Id]
bndrs)
, CpeRhs -> Bool
exprIsHNF CpeRhs
remaining_expr
= CpeRhs -> Maybe CpeRhs
forall a. a -> Maybe a
Just CpeRhs
remaining_expr
where
(CpeRhs
f, [CpeRhs]
args) = CpeRhs -> (CpeRhs, [CpeRhs])
forall b. Expr b -> (Expr b, [Expr b])
collectArgs CpeRhs
expr
remaining_expr :: CpeRhs
remaining_expr = CpeRhs -> [CpeRhs] -> CpeRhs
forall b. Expr b -> [Expr b] -> Expr b
mkApps CpeRhs
f [CpeRhs]
remaining_args
fvs_remaining :: VarSet
fvs_remaining = CpeRhs -> VarSet
exprFreeVars CpeRhs
remaining_expr
([CpeRhs]
remaining_args, [CpeRhs]
last_args) = Int -> [CpeRhs] -> ([CpeRhs], [CpeRhs])
forall a. Int -> [a] -> ([a], [a])
splitAt Int
n_remaining [CpeRhs]
args
n_remaining :: Int
n_remaining = [CpeRhs] -> Int
forall (t :: * -> *) a. Foldable t => t a -> Int
External instance of the constraint type Foldable []
length [CpeRhs]
args Int -> Int -> Int
forall a. Num a => a -> a -> a
External instance of the constraint type Num Int
- [Id] -> Int
forall (t :: * -> *) a. Foldable t => t a -> Int
External instance of the constraint type Foldable []
length [Id]
bndrs
ok :: Id -> Expr b -> Bool
ok Id
bndr (Var Id
arg) = Id
bndr Id -> Id -> Bool
forall a. Eq a => a -> a -> Bool
External instance of the constraint type Eq Id
== Id
arg
ok Id
_ Expr b
_ = Bool
False
ok_to_eta_reduce :: Expr b -> Bool
ok_to_eta_reduce (Var Id
f) = Bool -> Bool
not (Id -> Bool
hasNoBinding Id
f)
ok_to_eta_reduce Expr b
_ = Bool
False
tryEtaReducePrep [Id]
bndrs (Tick Tickish Id
tickish CpeRhs
e)
| Tickish Id -> Bool
forall id. Tickish id -> Bool
tickishFloatable Tickish Id
tickish
= (CpeRhs -> CpeRhs) -> Maybe CpeRhs -> Maybe CpeRhs
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
External instance of the constraint type Functor Maybe
fmap (Tickish Id -> CpeRhs -> CpeRhs
mkTick Tickish Id
tickish) (Maybe CpeRhs -> Maybe CpeRhs) -> Maybe CpeRhs -> Maybe CpeRhs
forall a b. (a -> b) -> a -> b
$ [Id] -> CpeRhs -> Maybe CpeRhs
tryEtaReducePrep [Id]
bndrs CpeRhs
e
tryEtaReducePrep [Id]
_ CpeRhs
_ = Maybe CpeRhs
forall a. Maybe a
Nothing
data FloatingBind
= FloatLet CoreBind
| FloatCase
CpeBody
Id
AltCon [Var]
Bool
| FloatTick (Tickish Id)
data Floats = Floats OkToSpec (OrdList FloatingBind)
instance Outputable FloatingBind where
ppr :: FloatingBind -> SDoc
ppr (FloatLet CoreBind
b) = CoreBind -> SDoc
forall a. Outputable a => a -> SDoc
External instance of the constraint type forall b. OutputableBndr b => Outputable (Bind b)
External instance of the constraint type OutputableBndr Id
ppr CoreBind
b
ppr (FloatCase CpeRhs
r Id
b AltCon
k [Id]
bs Bool
ok) = String -> SDoc
text String
"case" SDoc -> SDoc -> SDoc
<> SDoc -> SDoc
braces (Bool -> SDoc
forall a. Outputable a => a -> SDoc
External instance of the constraint type Outputable Bool
ppr Bool
ok) SDoc -> SDoc -> SDoc
<+> CpeRhs -> SDoc
forall a. Outputable a => a -> SDoc
External instance of the constraint type forall b. OutputableBndr b => Outputable (Expr b)
External instance of the constraint type OutputableBndr Id
ppr CpeRhs
r
SDoc -> SDoc -> SDoc
<+> String -> SDoc
text String
"of"SDoc -> SDoc -> SDoc
<+> Id -> SDoc
forall a. Outputable a => a -> SDoc
External instance of the constraint type Outputable Id
ppr Id
b SDoc -> SDoc -> SDoc
<> String -> SDoc
text String
"@"
SDoc -> SDoc -> SDoc
<> case [Id]
bs of
[] -> AltCon -> SDoc
forall a. Outputable a => a -> SDoc
External instance of the constraint type Outputable AltCon
ppr AltCon
k
[Id]
_ -> SDoc -> SDoc
parens (AltCon -> SDoc
forall a. Outputable a => a -> SDoc
External instance of the constraint type Outputable AltCon
ppr AltCon
k SDoc -> SDoc -> SDoc
<+> [Id] -> SDoc
forall a. Outputable a => a -> SDoc
External instance of the constraint type forall a. Outputable a => Outputable [a]
External instance of the constraint type Outputable Id
ppr [Id]
bs)
ppr (FloatTick Tickish Id
t) = Tickish Id -> SDoc
forall a. Outputable a => a -> SDoc
External instance of the constraint type forall id. Outputable id => Outputable (Tickish id)
External instance of the constraint type Outputable Id
ppr Tickish Id
t
instance Outputable Floats where
ppr :: Floats -> SDoc
ppr (Floats OkToSpec
flag OrdList FloatingBind
fs) = String -> SDoc
text String
"Floats" SDoc -> SDoc -> SDoc
<> SDoc -> SDoc
brackets (OkToSpec -> SDoc
forall a. Outputable a => a -> SDoc
Instance of class: Outputable of the constraint type Outputable OkToSpec
ppr OkToSpec
flag) SDoc -> SDoc -> SDoc
<+>
SDoc -> SDoc
braces ([SDoc] -> SDoc
vcat ((FloatingBind -> SDoc) -> [FloatingBind] -> [SDoc]
forall a b. (a -> b) -> [a] -> [b]
map FloatingBind -> SDoc
forall a. Outputable a => a -> SDoc
Instance of class: Outputable of the constraint type Outputable FloatingBind
ppr (OrdList FloatingBind -> [FloatingBind]
forall a. OrdList a -> [a]
fromOL OrdList FloatingBind
fs)))
instance Outputable OkToSpec where
ppr :: OkToSpec -> SDoc
ppr OkToSpec
OkToSpec = String -> SDoc
text String
"OkToSpec"
ppr OkToSpec
IfUnboxedOk = String -> SDoc
text String
"IfUnboxedOk"
ppr OkToSpec
NotOkToSpec = String -> SDoc
text String
"NotOkToSpec"
data OkToSpec
= OkToSpec
| IfUnboxedOk
| NotOkToSpec
mkFloat :: Demand -> Bool -> Id -> CpeRhs -> FloatingBind
mkFloat :: Demand -> Bool -> Id -> CpeRhs -> FloatingBind
mkFloat Demand
dmd Bool
is_unlifted Id
bndr CpeRhs
rhs
| Bool
is_strict
, Bool -> Bool
not Bool
is_hnf = CpeRhs -> Id -> AltCon -> [Id] -> Bool -> FloatingBind
FloatCase CpeRhs
rhs Id
bndr AltCon
DEFAULT [] (CpeRhs -> Bool
exprOkForSpeculation CpeRhs
rhs)
| Bool
is_unlifted = ASSERT2( exprOkForSpeculation rhs, ppr rhs )
CpeRhs -> Id -> AltCon -> [Id] -> Bool -> FloatingBind
FloatCase CpeRhs
rhs Id
bndr AltCon
DEFAULT [] Bool
True
| Bool
is_hnf = CoreBind -> FloatingBind
FloatLet (Id -> CpeRhs -> CoreBind
forall b. b -> Expr b -> Bind b
NonRec Id
bndr CpeRhs
rhs)
| Bool
otherwise = CoreBind -> FloatingBind
FloatLet (Id -> CpeRhs -> CoreBind
forall b. b -> Expr b -> Bind b
NonRec (Id -> Demand -> Id
setIdDemandInfo Id
bndr Demand
dmd) CpeRhs
rhs)
where
is_hnf :: Bool
is_hnf = CpeRhs -> Bool
exprIsHNF CpeRhs
rhs
is_strict :: Bool
is_strict = Demand -> Bool
forall s u. JointDmd (Str s) (Use u) -> Bool
isStrictDmd Demand
dmd
emptyFloats :: Floats
emptyFloats :: Floats
emptyFloats = OkToSpec -> OrdList FloatingBind -> Floats
Floats OkToSpec
OkToSpec OrdList FloatingBind
forall a. OrdList a
nilOL
isEmptyFloats :: Floats -> Bool
isEmptyFloats :: Floats -> Bool
isEmptyFloats (Floats OkToSpec
_ OrdList FloatingBind
bs) = OrdList FloatingBind -> Bool
forall a. OrdList a -> Bool
isNilOL OrdList FloatingBind
bs
wrapBinds :: Floats -> CpeBody -> CpeBody
wrapBinds :: Floats -> CpeRhs -> CpeRhs
wrapBinds (Floats OkToSpec
_ OrdList FloatingBind
binds) CpeRhs
body
= (FloatingBind -> CpeRhs -> CpeRhs)
-> CpeRhs -> OrdList FloatingBind -> CpeRhs
forall a b. (a -> b -> b) -> b -> OrdList a -> b
foldrOL FloatingBind -> CpeRhs -> CpeRhs
mk_bind CpeRhs
body OrdList FloatingBind
binds
where
mk_bind :: FloatingBind -> CpeRhs -> CpeRhs
mk_bind (FloatCase CpeRhs
rhs Id
bndr AltCon
con [Id]
bs Bool
_) CpeRhs
body = CpeRhs -> Id -> Type -> [Alt Id] -> CpeRhs
forall b. Expr b -> b -> Type -> [Alt b] -> Expr b
Case CpeRhs
rhs Id
bndr (CpeRhs -> Type
exprType CpeRhs
body) [(AltCon
con,[Id]
bs,CpeRhs
body)]
mk_bind (FloatLet CoreBind
bind) CpeRhs
body = CoreBind -> CpeRhs -> CpeRhs
forall b. Bind b -> Expr b -> Expr b
Let CoreBind
bind CpeRhs
body
mk_bind (FloatTick Tickish Id
tickish) CpeRhs
body = Tickish Id -> CpeRhs -> CpeRhs
mkTick Tickish Id
tickish CpeRhs
body
addFloat :: Floats -> FloatingBind -> Floats
addFloat :: Floats -> FloatingBind -> Floats
addFloat (Floats OkToSpec
ok_to_spec OrdList FloatingBind
floats) FloatingBind
new_float
= OkToSpec -> OrdList FloatingBind -> Floats
Floats (OkToSpec -> OkToSpec -> OkToSpec
combine OkToSpec
ok_to_spec (FloatingBind -> OkToSpec
check FloatingBind
new_float)) (OrdList FloatingBind
floats OrdList FloatingBind -> FloatingBind -> OrdList FloatingBind
forall a. OrdList a -> a -> OrdList a
`snocOL` FloatingBind
new_float)
where
check :: FloatingBind -> OkToSpec
check (FloatLet {}) = OkToSpec
OkToSpec
check (FloatCase CpeRhs
_ Id
_ AltCon
_ [Id]
_ Bool
ok_for_spec)
| Bool
ok_for_spec = OkToSpec
IfUnboxedOk
| Bool
otherwise = OkToSpec
NotOkToSpec
check FloatTick{} = OkToSpec
OkToSpec
unitFloat :: FloatingBind -> Floats
unitFloat :: FloatingBind -> Floats
unitFloat = Floats -> FloatingBind -> Floats
addFloat Floats
emptyFloats
appendFloats :: Floats -> Floats -> Floats
appendFloats :: Floats -> Floats -> Floats
appendFloats (Floats OkToSpec
spec1 OrdList FloatingBind
floats1) (Floats OkToSpec
spec2 OrdList FloatingBind
floats2)
= OkToSpec -> OrdList FloatingBind -> Floats
Floats (OkToSpec -> OkToSpec -> OkToSpec
combine OkToSpec
spec1 OkToSpec
spec2) (OrdList FloatingBind
floats1 OrdList FloatingBind
-> OrdList FloatingBind -> OrdList FloatingBind
forall a. OrdList a -> OrdList a -> OrdList a
`appOL` OrdList FloatingBind
floats2)
concatFloats :: [Floats] -> OrdList FloatingBind
concatFloats :: [Floats] -> OrdList FloatingBind
concatFloats = (Floats -> OrdList FloatingBind -> OrdList FloatingBind)
-> OrdList FloatingBind -> [Floats] -> OrdList FloatingBind
forall (t :: * -> *) a b.
Foldable t =>
(a -> b -> b) -> b -> t a -> b
External instance of the constraint type Foldable []
foldr (\ (Floats OkToSpec
_ OrdList FloatingBind
bs1) OrdList FloatingBind
bs2 -> OrdList FloatingBind
-> OrdList FloatingBind -> OrdList FloatingBind
forall a. OrdList a -> OrdList a -> OrdList a
appOL OrdList FloatingBind
bs1 OrdList FloatingBind
bs2) OrdList FloatingBind
forall a. OrdList a
nilOL
combine :: OkToSpec -> OkToSpec -> OkToSpec
combine :: OkToSpec -> OkToSpec -> OkToSpec
combine OkToSpec
NotOkToSpec OkToSpec
_ = OkToSpec
NotOkToSpec
combine OkToSpec
_ OkToSpec
NotOkToSpec = OkToSpec
NotOkToSpec
combine OkToSpec
IfUnboxedOk OkToSpec
_ = OkToSpec
IfUnboxedOk
combine OkToSpec
_ OkToSpec
IfUnboxedOk = OkToSpec
IfUnboxedOk
combine OkToSpec
_ OkToSpec
_ = OkToSpec
OkToSpec
deFloatTop :: Floats -> [CoreBind]
deFloatTop :: Floats -> CoreProgram
deFloatTop (Floats OkToSpec
_ OrdList FloatingBind
floats)
= (FloatingBind -> CoreProgram -> CoreProgram)
-> CoreProgram -> OrdList FloatingBind -> CoreProgram
forall a b. (a -> b -> b) -> b -> OrdList a -> b
foldrOL FloatingBind -> CoreProgram -> CoreProgram
get [] OrdList FloatingBind
floats
where
get :: FloatingBind -> CoreProgram -> CoreProgram
get (FloatLet CoreBind
b) CoreProgram
bs = CoreBind -> CoreBind
get_bind CoreBind
b CoreBind -> CoreProgram -> CoreProgram
forall a. a -> [a] -> [a]
: CoreProgram
bs
get (FloatCase CpeRhs
body Id
var AltCon
_ [Id]
_ Bool
_) CoreProgram
bs = CoreBind -> CoreBind
get_bind (Id -> CpeRhs -> CoreBind
forall b. b -> Expr b -> Bind b
NonRec Id
var CpeRhs
body) CoreBind -> CoreProgram -> CoreProgram
forall a. a -> [a] -> [a]
: CoreProgram
bs
get FloatingBind
b CoreProgram
_ = String -> SDoc -> CoreProgram
forall a. HasCallStack => String -> SDoc -> a
pprPanic String
"corePrepPgm" (FloatingBind -> SDoc
forall a. Outputable a => a -> SDoc
Instance of class: Outputable of the constraint type Outputable FloatingBind
ppr FloatingBind
b)
get_bind :: CoreBind -> CoreBind
get_bind (NonRec Id
x CpeRhs
e) = Id -> CpeRhs -> CoreBind
forall b. b -> Expr b -> Bind b
NonRec Id
x (CpeRhs -> CpeRhs
occurAnalyseExpr CpeRhs
e)
get_bind (Rec [(Id, CpeRhs)]
xes) = [(Id, CpeRhs)] -> CoreBind
forall b. [(b, Expr b)] -> Bind b
Rec [(Id
x, CpeRhs -> CpeRhs
occurAnalyseExpr CpeRhs
e) | (Id
x, CpeRhs
e) <- [(Id, CpeRhs)]
xes]
canFloat :: Floats -> CpeRhs -> Maybe (Floats, CpeRhs)
canFloat :: Floats -> CpeRhs -> Maybe (Floats, CpeRhs)
canFloat (Floats OkToSpec
ok_to_spec OrdList FloatingBind
fs) CpeRhs
rhs
| OkToSpec
OkToSpec <- OkToSpec
ok_to_spec
, Just OrdList FloatingBind
fs' <- OrdList FloatingBind
-> [FloatingBind] -> Maybe (OrdList FloatingBind)
go OrdList FloatingBind
forall a. OrdList a
nilOL (OrdList FloatingBind -> [FloatingBind]
forall a. OrdList a -> [a]
fromOL OrdList FloatingBind
fs)
= (Floats, CpeRhs) -> Maybe (Floats, CpeRhs)
forall a. a -> Maybe a
Just (OkToSpec -> OrdList FloatingBind -> Floats
Floats OkToSpec
OkToSpec OrdList FloatingBind
fs', CpeRhs
rhs)
| Bool
otherwise
= Maybe (Floats, CpeRhs)
forall a. Maybe a
Nothing
where
go :: OrdList FloatingBind -> [FloatingBind]
-> Maybe (OrdList FloatingBind)
go :: OrdList FloatingBind
-> [FloatingBind] -> Maybe (OrdList FloatingBind)
go (OrdList FloatingBind
fbs_out) [] = OrdList FloatingBind -> Maybe (OrdList FloatingBind)
forall a. a -> Maybe a
Just OrdList FloatingBind
fbs_out
go OrdList FloatingBind
fbs_out (fb :: FloatingBind
fb@(FloatLet CoreBind
_) : [FloatingBind]
fbs_in)
= OrdList FloatingBind
-> [FloatingBind] -> Maybe (OrdList FloatingBind)
go (OrdList FloatingBind
fbs_out OrdList FloatingBind -> FloatingBind -> OrdList FloatingBind
forall a. OrdList a -> a -> OrdList a
`snocOL` FloatingBind
fb) [FloatingBind]
fbs_in
go OrdList FloatingBind
fbs_out (ft :: FloatingBind
ft@FloatTick{} : [FloatingBind]
fbs_in)
= OrdList FloatingBind
-> [FloatingBind] -> Maybe (OrdList FloatingBind)
go (OrdList FloatingBind
fbs_out OrdList FloatingBind -> FloatingBind -> OrdList FloatingBind
forall a. OrdList a -> a -> OrdList a
`snocOL` FloatingBind
ft) [FloatingBind]
fbs_in
go OrdList FloatingBind
_ (FloatCase{} : [FloatingBind]
_) = Maybe (OrdList FloatingBind)
forall a. Maybe a
Nothing
wantFloatNested :: RecFlag -> Demand -> Bool -> Floats -> CpeRhs -> Bool
wantFloatNested :: RecFlag -> Demand -> Bool -> Floats -> CpeRhs -> Bool
wantFloatNested RecFlag
is_rec Demand
dmd Bool
is_unlifted Floats
floats CpeRhs
rhs
= Floats -> Bool
isEmptyFloats Floats
floats
Bool -> Bool -> Bool
|| Demand -> Bool
forall s u. JointDmd (Str s) (Use u) -> Bool
isStrictDmd Demand
dmd
Bool -> Bool -> Bool
|| Bool
is_unlifted
Bool -> Bool -> Bool
|| (RecFlag -> Floats -> Bool
allLazyNested RecFlag
is_rec Floats
floats Bool -> Bool -> Bool
&& CpeRhs -> Bool
exprIsHNF CpeRhs
rhs)
allLazyTop :: Floats -> Bool
allLazyTop :: Floats -> Bool
allLazyTop (Floats OkToSpec
OkToSpec OrdList FloatingBind
_) = Bool
True
allLazyTop Floats
_ = Bool
False
allLazyNested :: RecFlag -> Floats -> Bool
allLazyNested :: RecFlag -> Floats -> Bool
allLazyNested RecFlag
_ (Floats OkToSpec
OkToSpec OrdList FloatingBind
_) = Bool
True
allLazyNested RecFlag
_ (Floats OkToSpec
NotOkToSpec OrdList FloatingBind
_) = Bool
False
allLazyNested RecFlag
is_rec (Floats OkToSpec
IfUnboxedOk OrdList FloatingBind
_) = RecFlag -> Bool
isNonRec RecFlag
is_rec
data CorePrepEnv
= CPE { CorePrepEnv -> DynFlags
cpe_dynFlags :: DynFlags
, CorePrepEnv -> IdEnv CpeRhs
cpe_env :: IdEnv CoreExpr
, CorePrepEnv -> Id
cpe_mkIntegerId :: Id
, CorePrepEnv -> Id
cpe_mkNaturalId :: Id
, CorePrepEnv -> Maybe DataCon
cpe_integerSDataCon :: Maybe DataCon
, CorePrepEnv -> Maybe DataCon
cpe_naturalSDataCon :: Maybe DataCon
}
lookupMkIntegerName :: DynFlags -> HscEnv -> IO Id
lookupMkIntegerName :: DynFlags -> HscEnv -> IO Id
lookupMkIntegerName DynFlags
dflags HscEnv
hsc_env
= DynFlags -> IO Id -> IO Id
forall a. DynFlags -> IO a -> IO a
guardIntegerUse DynFlags
dflags (IO Id -> IO Id) -> IO Id -> IO Id
forall a b. (a -> b) -> a -> b
$ (TyThing -> Id) -> IO TyThing -> IO Id
forall (m :: * -> *) a1 r. Monad m => (a1 -> r) -> m a1 -> m r
External instance of the constraint type Monad IO
liftM HasDebugCallStack => TyThing -> Id
TyThing -> Id
External instance of the constraint type HasDebugCallStack
tyThingId (IO TyThing -> IO Id) -> IO TyThing -> IO Id
forall a b. (a -> b) -> a -> b
$
HscEnv -> Name -> IO TyThing
lookupGlobal HscEnv
hsc_env Name
mkIntegerName
lookupMkNaturalName :: DynFlags -> HscEnv -> IO Id
lookupMkNaturalName :: DynFlags -> HscEnv -> IO Id
lookupMkNaturalName DynFlags
dflags HscEnv
hsc_env
= DynFlags -> IO Id -> IO Id
forall a. DynFlags -> IO a -> IO a
guardNaturalUse DynFlags
dflags (IO Id -> IO Id) -> IO Id -> IO Id
forall a b. (a -> b) -> a -> b
$ (TyThing -> Id) -> IO TyThing -> IO Id
forall (m :: * -> *) a1 r. Monad m => (a1 -> r) -> m a1 -> m r
External instance of the constraint type Monad IO
liftM HasDebugCallStack => TyThing -> Id
TyThing -> Id
External instance of the constraint type HasDebugCallStack
tyThingId (IO TyThing -> IO Id) -> IO TyThing -> IO Id
forall a b. (a -> b) -> a -> b
$
HscEnv -> Name -> IO TyThing
lookupGlobal HscEnv
hsc_env Name
mkNaturalName
lookupIntegerSDataConName :: DynFlags -> HscEnv -> IO (Maybe DataCon)
lookupIntegerSDataConName :: DynFlags -> HscEnv -> IO (Maybe DataCon)
lookupIntegerSDataConName DynFlags
dflags HscEnv
hsc_env = case DynFlags -> IntegerLibrary
integerLibrary DynFlags
dflags of
IntegerLibrary
IntegerGMP -> DynFlags -> IO (Maybe DataCon) -> IO (Maybe DataCon)
forall a. DynFlags -> IO a -> IO a
guardIntegerUse DynFlags
dflags (IO (Maybe DataCon) -> IO (Maybe DataCon))
-> IO (Maybe DataCon) -> IO (Maybe DataCon)
forall a b. (a -> b) -> a -> b
$ (TyThing -> Maybe DataCon) -> IO TyThing -> IO (Maybe DataCon)
forall (m :: * -> *) a1 r. Monad m => (a1 -> r) -> m a1 -> m r
External instance of the constraint type Monad IO
liftM (DataCon -> Maybe DataCon
forall a. a -> Maybe a
Just (DataCon -> Maybe DataCon)
-> (TyThing -> DataCon) -> TyThing -> Maybe DataCon
forall b c a. (b -> c) -> (a -> b) -> a -> c
. HasDebugCallStack => TyThing -> DataCon
TyThing -> DataCon
External instance of the constraint type HasDebugCallStack
tyThingDataCon) (IO TyThing -> IO (Maybe DataCon))
-> IO TyThing -> IO (Maybe DataCon)
forall a b. (a -> b) -> a -> b
$
HscEnv -> Name -> IO TyThing
lookupGlobal HscEnv
hsc_env Name
integerSDataConName
IntegerLibrary
IntegerSimple -> Maybe DataCon -> IO (Maybe DataCon)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad IO
return Maybe DataCon
forall a. Maybe a
Nothing
lookupNaturalSDataConName :: DynFlags -> HscEnv -> IO (Maybe DataCon)
lookupNaturalSDataConName :: DynFlags -> HscEnv -> IO (Maybe DataCon)
lookupNaturalSDataConName DynFlags
dflags HscEnv
hsc_env = case DynFlags -> IntegerLibrary
integerLibrary DynFlags
dflags of
IntegerLibrary
IntegerGMP -> DynFlags -> IO (Maybe DataCon) -> IO (Maybe DataCon)
forall a. DynFlags -> IO a -> IO a
guardNaturalUse DynFlags
dflags (IO (Maybe DataCon) -> IO (Maybe DataCon))
-> IO (Maybe DataCon) -> IO (Maybe DataCon)
forall a b. (a -> b) -> a -> b
$ (TyThing -> Maybe DataCon) -> IO TyThing -> IO (Maybe DataCon)
forall (m :: * -> *) a1 r. Monad m => (a1 -> r) -> m a1 -> m r
External instance of the constraint type Monad IO
liftM (DataCon -> Maybe DataCon
forall a. a -> Maybe a
Just (DataCon -> Maybe DataCon)
-> (TyThing -> DataCon) -> TyThing -> Maybe DataCon
forall b c a. (b -> c) -> (a -> b) -> a -> c
. HasDebugCallStack => TyThing -> DataCon
TyThing -> DataCon
External instance of the constraint type HasDebugCallStack
tyThingDataCon) (IO TyThing -> IO (Maybe DataCon))
-> IO TyThing -> IO (Maybe DataCon)
forall a b. (a -> b) -> a -> b
$
HscEnv -> Name -> IO TyThing
lookupGlobal HscEnv
hsc_env Name
naturalSDataConName
IntegerLibrary
IntegerSimple -> Maybe DataCon -> IO (Maybe DataCon)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad IO
return Maybe DataCon
forall a. Maybe a
Nothing
guardIntegerUse :: DynFlags -> IO a -> IO a
guardIntegerUse :: DynFlags -> IO a -> IO a
guardIntegerUse DynFlags
dflags IO a
act
| DynFlags -> Unit
thisPackage DynFlags
dflags Unit -> Unit -> Bool
forall a. Eq a => a -> a -> Bool
External instance of the constraint type Eq Unit
== Unit
primUnitId
= a -> IO a
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad IO
return (a -> IO a) -> a -> IO a
forall a b. (a -> b) -> a -> b
$ String -> a
forall a. String -> a
panic String
"Can't use Integer in ghc-prim"
| DynFlags -> Unit
thisPackage DynFlags
dflags Unit -> Unit -> Bool
forall a. Eq a => a -> a -> Bool
External instance of the constraint type Eq Unit
== Unit
integerUnitId
= a -> IO a
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad IO
return (a -> IO a) -> a -> IO a
forall a b. (a -> b) -> a -> b
$ String -> a
forall a. String -> a
panic String
"Can't use Integer in integer-*"
| Bool
otherwise = IO a
act
guardNaturalUse :: DynFlags -> IO a -> IO a
guardNaturalUse :: DynFlags -> IO a -> IO a
guardNaturalUse DynFlags
dflags IO a
act
| DynFlags -> Unit
thisPackage DynFlags
dflags Unit -> Unit -> Bool
forall a. Eq a => a -> a -> Bool
External instance of the constraint type Eq Unit
== Unit
primUnitId
= a -> IO a
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad IO
return (a -> IO a) -> a -> IO a
forall a b. (a -> b) -> a -> b
$ String -> a
forall a. String -> a
panic String
"Can't use Natural in ghc-prim"
| DynFlags -> Unit
thisPackage DynFlags
dflags Unit -> Unit -> Bool
forall a. Eq a => a -> a -> Bool
External instance of the constraint type Eq Unit
== Unit
integerUnitId
= a -> IO a
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad IO
return (a -> IO a) -> a -> IO a
forall a b. (a -> b) -> a -> b
$ String -> a
forall a. String -> a
panic String
"Can't use Natural in integer-*"
| DynFlags -> Unit
thisPackage DynFlags
dflags Unit -> Unit -> Bool
forall a. Eq a => a -> a -> Bool
External instance of the constraint type Eq Unit
== Unit
baseUnitId
= a -> IO a
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad IO
return (a -> IO a) -> a -> IO a
forall a b. (a -> b) -> a -> b
$ String -> a
forall a. String -> a
panic String
"Can't use Natural in base"
| Bool
otherwise = IO a
act
mkInitialCorePrepEnv :: DynFlags -> HscEnv -> IO CorePrepEnv
mkInitialCorePrepEnv :: DynFlags -> HscEnv -> IO CorePrepEnv
mkInitialCorePrepEnv DynFlags
dflags HscEnv
hsc_env
= do Id
mkIntegerId <- DynFlags -> HscEnv -> IO Id
lookupMkIntegerName DynFlags
dflags HscEnv
hsc_env
Id
mkNaturalId <- DynFlags -> HscEnv -> IO Id
lookupMkNaturalName DynFlags
dflags HscEnv
hsc_env
Maybe DataCon
integerSDataCon <- DynFlags -> HscEnv -> IO (Maybe DataCon)
lookupIntegerSDataConName DynFlags
dflags HscEnv
hsc_env
Maybe DataCon
naturalSDataCon <- DynFlags -> HscEnv -> IO (Maybe DataCon)
lookupNaturalSDataConName DynFlags
dflags HscEnv
hsc_env
CorePrepEnv -> IO CorePrepEnv
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad IO
return (CorePrepEnv -> IO CorePrepEnv) -> CorePrepEnv -> IO CorePrepEnv
forall a b. (a -> b) -> a -> b
$ CPE :: DynFlags
-> IdEnv CpeRhs
-> Id
-> Id
-> Maybe DataCon
-> Maybe DataCon
-> CorePrepEnv
CPE {
cpe_dynFlags :: DynFlags
cpe_dynFlags = DynFlags
dflags,
cpe_env :: IdEnv CpeRhs
cpe_env = IdEnv CpeRhs
forall a. VarEnv a
emptyVarEnv,
cpe_mkIntegerId :: Id
cpe_mkIntegerId = Id
mkIntegerId,
cpe_mkNaturalId :: Id
cpe_mkNaturalId = Id
mkNaturalId,
cpe_integerSDataCon :: Maybe DataCon
cpe_integerSDataCon = Maybe DataCon
integerSDataCon,
cpe_naturalSDataCon :: Maybe DataCon
cpe_naturalSDataCon = Maybe DataCon
naturalSDataCon
}
extendCorePrepEnv :: CorePrepEnv -> Id -> Id -> CorePrepEnv
extendCorePrepEnv :: CorePrepEnv -> Id -> Id -> CorePrepEnv
extendCorePrepEnv CorePrepEnv
cpe Id
id Id
id'
= CorePrepEnv
cpe { cpe_env :: IdEnv CpeRhs
cpe_env = IdEnv CpeRhs -> Id -> CpeRhs -> IdEnv CpeRhs
forall a. VarEnv a -> Id -> a -> VarEnv a
extendVarEnv (CorePrepEnv -> IdEnv CpeRhs
cpe_env CorePrepEnv
cpe) Id
id (Id -> CpeRhs
forall b. Id -> Expr b
Var Id
id') }
extendCorePrepEnvExpr :: CorePrepEnv -> Id -> CoreExpr -> CorePrepEnv
extendCorePrepEnvExpr :: CorePrepEnv -> Id -> CpeRhs -> CorePrepEnv
extendCorePrepEnvExpr CorePrepEnv
cpe Id
id CpeRhs
expr
= CorePrepEnv
cpe { cpe_env :: IdEnv CpeRhs
cpe_env = IdEnv CpeRhs -> Id -> CpeRhs -> IdEnv CpeRhs
forall a. VarEnv a -> Id -> a -> VarEnv a
extendVarEnv (CorePrepEnv -> IdEnv CpeRhs
cpe_env CorePrepEnv
cpe) Id
id CpeRhs
expr }
extendCorePrepEnvList :: CorePrepEnv -> [(Id,Id)] -> CorePrepEnv
extendCorePrepEnvList :: CorePrepEnv -> [(Id, Id)] -> CorePrepEnv
extendCorePrepEnvList CorePrepEnv
cpe [(Id, Id)]
prs
= CorePrepEnv
cpe { cpe_env :: IdEnv CpeRhs
cpe_env = IdEnv CpeRhs -> [(Id, CpeRhs)] -> IdEnv CpeRhs
forall a. VarEnv a -> [(Id, a)] -> VarEnv a
extendVarEnvList (CorePrepEnv -> IdEnv CpeRhs
cpe_env CorePrepEnv
cpe)
(((Id, Id) -> (Id, CpeRhs)) -> [(Id, Id)] -> [(Id, CpeRhs)]
forall a b. (a -> b) -> [a] -> [b]
map (\(Id
id, Id
id') -> (Id
id, Id -> CpeRhs
forall b. Id -> Expr b
Var Id
id')) [(Id, Id)]
prs) }
lookupCorePrepEnv :: CorePrepEnv -> Id -> CoreExpr
lookupCorePrepEnv :: CorePrepEnv -> Id -> CpeRhs
lookupCorePrepEnv CorePrepEnv
cpe Id
id
= case IdEnv CpeRhs -> Id -> Maybe CpeRhs
forall a. VarEnv a -> Id -> Maybe a
lookupVarEnv (CorePrepEnv -> IdEnv CpeRhs
cpe_env CorePrepEnv
cpe) Id
id of
Maybe CpeRhs
Nothing -> Id -> CpeRhs
forall b. Id -> Expr b
Var Id
id
Just CpeRhs
exp -> CpeRhs
exp
getMkIntegerId :: CorePrepEnv -> Id
getMkIntegerId :: CorePrepEnv -> Id
getMkIntegerId = CorePrepEnv -> Id
cpe_mkIntegerId
getMkNaturalId :: CorePrepEnv -> Id
getMkNaturalId :: CorePrepEnv -> Id
getMkNaturalId = CorePrepEnv -> Id
cpe_mkNaturalId
cpCloneBndrs :: CorePrepEnv -> [InVar] -> UniqSM (CorePrepEnv, [OutVar])
cpCloneBndrs :: CorePrepEnv -> [Id] -> UniqSM (CorePrepEnv, [Id])
cpCloneBndrs CorePrepEnv
env [Id]
bs = (CorePrepEnv -> Id -> UniqSM (CorePrepEnv, Id))
-> CorePrepEnv -> [Id] -> UniqSM (CorePrepEnv, [Id])
forall (m :: * -> *) acc x y.
Monad m =>
(acc -> x -> m (acc, y)) -> acc -> [x] -> m (acc, [y])
External instance of the constraint type Monad UniqSM
mapAccumLM CorePrepEnv -> Id -> UniqSM (CorePrepEnv, Id)
cpCloneBndr CorePrepEnv
env [Id]
bs
cpCloneBndr :: CorePrepEnv -> InVar -> UniqSM (CorePrepEnv, OutVar)
cpCloneBndr :: CorePrepEnv -> Id -> UniqSM (CorePrepEnv, Id)
cpCloneBndr CorePrepEnv
env Id
bndr
| Bool -> Bool
not (Id -> Bool
isId Id
bndr)
= (CorePrepEnv, Id) -> UniqSM (CorePrepEnv, Id)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (CorePrepEnv
env, Id
bndr)
| Bool
otherwise
= do { Id
bndr' <- Id -> UniqSM Id
forall {m :: * -> *}. MonadUnique m => Id -> m Id
External instance of the constraint type MonadUnique UniqSM
clone_it Id
bndr
; let unfolding' :: Unfolding
unfolding' = Unfolding -> Unfolding
zapUnfolding (Id -> Unfolding
realIdUnfolding Id
bndr)
bndr'' :: Id
bndr'' = Id
bndr' Id -> Unfolding -> Id
`setIdUnfolding` Unfolding
unfolding'
Id -> RuleInfo -> Id
`setIdSpecialisation` RuleInfo
emptyRuleInfo
; (CorePrepEnv, Id) -> UniqSM (CorePrepEnv, Id)
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (CorePrepEnv -> Id -> Id -> CorePrepEnv
extendCorePrepEnv CorePrepEnv
env Id
bndr Id
bndr'', Id
bndr'') }
where
clone_it :: Id -> m Id
clone_it Id
bndr
| Id -> Bool
isLocalId Id
bndr, Bool -> Bool
not (Id -> Bool
isCoVar Id
bndr)
= do { Unique
uniq <- m Unique
forall (m :: * -> *). MonadUnique m => m Unique
Evidence bound by a type signature of the constraint type MonadUnique m
getUniqueM; Id -> m Id
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type forall (m :: * -> *). MonadUnique m => Monad m
Evidence bound by a type signature of the constraint type MonadUnique m
return (Id -> Unique -> Id
setVarUnique Id
bndr Unique
uniq) }
| Bool
otherwise
= Id -> m Id
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type forall (m :: * -> *). MonadUnique m => Monad m
Evidence bound by a type signature of the constraint type MonadUnique m
return Id
bndr
fiddleCCall :: Id -> UniqSM Id
fiddleCCall :: Id -> UniqSM Id
fiddleCCall Id
id
| Id -> Bool
isFCallId Id
id = (Id
id Id -> Unique -> Id
`setVarUnique`) (Unique -> Id) -> UniqSM Unique -> UniqSM Id
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
External instance of the constraint type Functor UniqSM
<$> UniqSM Unique
forall (m :: * -> *). MonadUnique m => m Unique
External instance of the constraint type MonadUnique UniqSM
getUniqueM
| Bool
otherwise = Id -> UniqSM Id
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return Id
id
newVar :: Type -> UniqSM Id
newVar :: Type -> UniqSM Id
newVar Type
ty
= Type -> ()
seqType Type
ty () -> UniqSM Id -> UniqSM Id
`seq` do
Unique
uniq <- UniqSM Unique
forall (m :: * -> *). MonadUnique m => m Unique
External instance of the constraint type MonadUnique UniqSM
getUniqueM
Id -> UniqSM Id
forall (m :: * -> *) a. Monad m => a -> m a
External instance of the constraint type Monad UniqSM
return (FastString -> Unique -> Type -> Id
mkSysLocalOrCoVar (String -> FastString
fsLit String
"sat") Unique
uniq Type
ty)
wrapTicks :: Floats -> CoreExpr -> (Floats, CoreExpr)
wrapTicks :: Floats -> CpeRhs -> (Floats, CpeRhs)
wrapTicks (Floats OkToSpec
flag OrdList FloatingBind
floats0) CpeRhs
expr =
(OkToSpec -> OrdList FloatingBind -> Floats
Floats OkToSpec
flag ([FloatingBind] -> OrdList FloatingBind
forall a. [a] -> OrdList a
toOL ([FloatingBind] -> OrdList FloatingBind)
-> [FloatingBind] -> OrdList FloatingBind
forall a b. (a -> b) -> a -> b
$ [FloatingBind] -> [FloatingBind]
forall a. [a] -> [a]
reverse [FloatingBind]
floats1), (Tickish Id -> CpeRhs -> CpeRhs)
-> CpeRhs -> [Tickish Id] -> CpeRhs
forall (t :: * -> *) a b.
Foldable t =>
(a -> b -> b) -> b -> t a -> b
External instance of the constraint type Foldable []
foldr Tickish Id -> CpeRhs -> CpeRhs
mkTick CpeRhs
expr ([Tickish Id] -> [Tickish Id]
forall a. [a] -> [a]
reverse [Tickish Id]
ticks1))
where ([FloatingBind]
floats1, [Tickish Id]
ticks1) = (([FloatingBind], [Tickish Id])
-> FloatingBind -> ([FloatingBind], [Tickish Id]))
-> ([FloatingBind], [Tickish Id])
-> OrdList FloatingBind
-> ([FloatingBind], [Tickish Id])
forall b a. (b -> a -> b) -> b -> OrdList a -> b
foldlOL ([FloatingBind], [Tickish Id])
-> FloatingBind -> ([FloatingBind], [Tickish Id])
go ([], []) (OrdList FloatingBind -> ([FloatingBind], [Tickish Id]))
-> OrdList FloatingBind -> ([FloatingBind], [Tickish Id])
forall a b. (a -> b) -> a -> b
$ OrdList FloatingBind
floats0
go :: ([FloatingBind], [Tickish Id])
-> FloatingBind -> ([FloatingBind], [Tickish Id])
go ([FloatingBind]
floats, [Tickish Id]
ticks) (FloatTick Tickish Id
t)
= ASSERT(tickishPlace t == PlaceNonLam)
([FloatingBind]
floats, if (Tickish Id -> Bool) -> [Tickish Id] -> Bool
forall (t :: * -> *) a. Foldable t => (a -> Bool) -> t a -> Bool
External instance of the constraint type Foldable []
any ((Tickish Id -> Tickish Id -> Bool)
-> Tickish Id -> Tickish Id -> Bool
forall a b c. (a -> b -> c) -> b -> a -> c
flip Tickish Id -> Tickish Id -> Bool
forall b. Eq b => Tickish b -> Tickish b -> Bool
External instance of the constraint type Eq Id
tickishContains Tickish Id
t) [Tickish Id]
ticks
then [Tickish Id]
ticks else Tickish Id
tTickish Id -> [Tickish Id] -> [Tickish Id]
forall a. a -> [a] -> [a]
:[Tickish Id]
ticks)
go ([FloatingBind]
floats, [Tickish Id]
ticks) FloatingBind
f
= ((Tickish Id -> FloatingBind -> FloatingBind)
-> FloatingBind -> [Tickish Id] -> FloatingBind
forall (t :: * -> *) a b.
Foldable t =>
(a -> b -> b) -> b -> t a -> b
External instance of the constraint type Foldable []
foldr Tickish Id -> FloatingBind -> FloatingBind
wrap FloatingBind
f ([Tickish Id] -> [Tickish Id]
forall a. [a] -> [a]
reverse [Tickish Id]
ticks)FloatingBind -> [FloatingBind] -> [FloatingBind]
forall a. a -> [a] -> [a]
:[FloatingBind]
floats, [Tickish Id]
ticks)
wrap :: Tickish Id -> FloatingBind -> FloatingBind
wrap Tickish Id
t (FloatLet CoreBind
bind) = CoreBind -> FloatingBind
FloatLet (Tickish Id -> CoreBind -> CoreBind
wrapBind Tickish Id
t CoreBind
bind)
wrap Tickish Id
t (FloatCase CpeRhs
r Id
b AltCon
con [Id]
bs Bool
ok) = CpeRhs -> Id -> AltCon -> [Id] -> Bool -> FloatingBind
FloatCase (Tickish Id -> CpeRhs -> CpeRhs
mkTick Tickish Id
t CpeRhs
r) Id
b AltCon
con [Id]
bs Bool
ok
wrap Tickish Id
_ FloatingBind
other = String -> SDoc -> FloatingBind
forall a. HasCallStack => String -> SDoc -> a
pprPanic String
"wrapTicks: unexpected float!"
(FloatingBind -> SDoc
forall a. Outputable a => a -> SDoc
Instance of class: Outputable of the constraint type Outputable FloatingBind
ppr FloatingBind
other)
wrapBind :: Tickish Id -> CoreBind -> CoreBind
wrapBind Tickish Id
t (NonRec Id
binder CpeRhs
rhs) = Id -> CpeRhs -> CoreBind
forall b. b -> Expr b -> Bind b
NonRec Id
binder (Tickish Id -> CpeRhs -> CpeRhs
mkTick Tickish Id
t CpeRhs
rhs)
wrapBind Tickish Id
t (Rec [(Id, CpeRhs)]
pairs) = [(Id, CpeRhs)] -> CoreBind
forall b. [(b, Expr b)] -> Bind b
Rec ((CpeRhs -> CpeRhs) -> [(Id, CpeRhs)] -> [(Id, CpeRhs)]
forall b c a. (b -> c) -> [(a, b)] -> [(a, c)]
mapSnd (Tickish Id -> CpeRhs -> CpeRhs
mkTick Tickish Id
t) [(Id, CpeRhs)]
pairs)
collectCostCentres :: Module -> CoreProgram -> S.Set CostCentre
collectCostCentres :: Module -> CoreProgram -> Set CostCentre
collectCostCentres Module
mod_name
= (Set CostCentre -> CoreBind -> Set CostCentre)
-> Set CostCentre -> CoreProgram -> Set CostCentre
forall (t :: * -> *) b a.
Foldable t =>
(b -> a -> b) -> b -> t a -> b
External instance of the constraint type Foldable []
foldl' Set CostCentre -> CoreBind -> Set CostCentre
go_bind Set CostCentre
forall a. Set a
S.empty
where
go :: Set CostCentre -> CpeRhs -> Set CostCentre
go Set CostCentre
cs CpeRhs
e = case CpeRhs
e of
Var{} -> Set CostCentre
cs
Lit{} -> Set CostCentre
cs
App CpeRhs
e1 CpeRhs
e2 -> Set CostCentre -> CpeRhs -> Set CostCentre
go (Set CostCentre -> CpeRhs -> Set CostCentre
go Set CostCentre
cs CpeRhs
e1) CpeRhs
e2
Lam Id
_ CpeRhs
e -> Set CostCentre -> CpeRhs -> Set CostCentre
go Set CostCentre
cs CpeRhs
e
Let CoreBind
b CpeRhs
e -> Set CostCentre -> CpeRhs -> Set CostCentre
go (Set CostCentre -> CoreBind -> Set CostCentre
go_bind Set CostCentre
cs CoreBind
b) CpeRhs
e
Case CpeRhs
scrt Id
_ Type
_ [Alt Id]
alts -> Set CostCentre -> [Alt Id] -> Set CostCentre
go_alts (Set CostCentre -> CpeRhs -> Set CostCentre
go Set CostCentre
cs CpeRhs
scrt) [Alt Id]
alts
Cast CpeRhs
e Coercion
_ -> Set CostCentre -> CpeRhs -> Set CostCentre
go Set CostCentre
cs CpeRhs
e
Tick (ProfNote CostCentre
cc Bool
_ Bool
_) CpeRhs
e ->
Set CostCentre -> CpeRhs -> Set CostCentre
go (if CostCentre -> Module -> Bool
ccFromThisModule CostCentre
cc Module
mod_name then CostCentre -> Set CostCentre -> Set CostCentre
forall a. Ord a => a -> Set a -> Set a
External instance of the constraint type Ord CostCentre
S.insert CostCentre
cc Set CostCentre
cs else Set CostCentre
cs) CpeRhs
e
Tick Tickish Id
_ CpeRhs
e -> Set CostCentre -> CpeRhs -> Set CostCentre
go Set CostCentre
cs CpeRhs
e
Type{} -> Set CostCentre
cs
Coercion{} -> Set CostCentre
cs
go_alts :: Set CostCentre -> [Alt Id] -> Set CostCentre
go_alts = (Set CostCentre -> Alt Id -> Set CostCentre)
-> Set CostCentre -> [Alt Id] -> Set CostCentre
forall (t :: * -> *) b a.
Foldable t =>
(b -> a -> b) -> b -> t a -> b
External instance of the constraint type Foldable []
foldl' (\Set CostCentre
cs (AltCon
_con, [Id]
_bndrs, CpeRhs
e) -> Set CostCentre -> CpeRhs -> Set CostCentre
go Set CostCentre
cs CpeRhs
e)
go_bind :: S.Set CostCentre -> CoreBind -> S.Set CostCentre
go_bind :: Set CostCentre -> CoreBind -> Set CostCentre
go_bind Set CostCentre
cs (NonRec Id
b CpeRhs
e) =
Set CostCentre -> CpeRhs -> Set CostCentre
go (Set CostCentre
-> (CpeRhs -> Set CostCentre) -> Maybe CpeRhs -> Set CostCentre
forall b a. b -> (a -> b) -> Maybe a -> b
maybe Set CostCentre
cs (Set CostCentre -> CpeRhs -> Set CostCentre
go Set CostCentre
cs) (Id -> Maybe CpeRhs
get_unf Id
b)) CpeRhs
e
go_bind Set CostCentre
cs (Rec [(Id, CpeRhs)]
bs) =
(Set CostCentre -> (Id, CpeRhs) -> Set CostCentre)
-> Set CostCentre -> [(Id, CpeRhs)] -> Set CostCentre
forall (t :: * -> *) b a.
Foldable t =>
(b -> a -> b) -> b -> t a -> b
External instance of the constraint type Foldable []
foldl' (\Set CostCentre
cs' (Id
b, CpeRhs
e) -> Set CostCentre -> CpeRhs -> Set CostCentre
go (Set CostCentre
-> (CpeRhs -> Set CostCentre) -> Maybe CpeRhs -> Set CostCentre
forall b a. b -> (a -> b) -> Maybe a -> b
maybe Set CostCentre
cs' (Set CostCentre -> CpeRhs -> Set CostCentre
go Set CostCentre
cs') (Id -> Maybe CpeRhs
get_unf Id
b)) CpeRhs
e) Set CostCentre
cs [(Id, CpeRhs)]
bs
get_unf :: Id -> Maybe CpeRhs
get_unf = Unfolding -> Maybe CpeRhs
maybeUnfoldingTemplate (Unfolding -> Maybe CpeRhs)
-> (Id -> Unfolding) -> Id -> Maybe CpeRhs
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Id -> Unfolding
realIdUnfolding