Safe Haskell | None |
---|---|
Language | Haskell2010 |
This module implements some analyses of Core expressions necessary for Test.Inspection. Normally, users of this package can ignore this module.
Synopsis
- slice :: [(Var, CoreExpr)] -> Var -> Slice
- pprSlice :: Slice -> SDoc
- pprSliceDifference :: Slice -> Slice -> SDoc
- eqSlice :: Bool -> Slice -> Slice -> Bool
- freeOfType :: Slice -> [Name] -> Maybe (Var, CoreExpr)
- freeOfTerm :: Slice -> [Name] -> Maybe (Var, CoreExpr)
- doesNotAllocate :: Slice -> Maybe (Var, CoreExpr)
- doesNotContainTypeClasses :: Slice -> [Name] -> Maybe (Var, CoreExpr)
Documentation
slice :: [(Var, CoreExpr)] -> Var -> Slice Source #
Selects those bindings that define the given variable (with this variable first)
pprSliceDifference :: Slice -> Slice -> SDoc Source #
Pretty-print two slices, after removing variables occurring in both
This is a heuristic, which only works if both slices have auxiliary variables in the right order. (This is mostly to work-around the buggy CSE in GHC-8.0) It also breaks if there is shadowing.
freeOfType :: Slice -> [Name] -> Maybe (Var, CoreExpr) Source #
Returns True
if the given core expression mentions no type constructor
anywhere that has the given name.
freeOfTerm :: Slice -> [Name] -> Maybe (Var, CoreExpr) Source #
Returns True
if the given core expression mentions no term variable
anywhere that has the given name.
doesNotAllocate :: Slice -> Maybe (Var, CoreExpr) Source #
True if the given variable binding does not allocate, if called fully satisfied.
It currently does not look through function calls, which of course could allocate. It should probably at least look through local function calls.
The variable is important to know the arity of the function.