| Safe Haskell | None | 
|---|---|
| Language | Haskell2010 | 
CostCentre
Synopsis
- data CostCentre
 - type CcName = FastString
 - data CCFlavour
 - data CostCentreStack
 - type CollectedCCs = ([CostCentre], [CostCentreStack])
 - emptyCollectedCCs :: CollectedCCs
 - collectCC :: CostCentre -> CostCentreStack -> CollectedCCs -> CollectedCCs
 - currentCCS :: CostCentreStack
 - dontCareCCS :: CostCentreStack
 - isCurrentCCS :: CostCentreStack -> Bool
 - maybeSingletonCCS :: CostCentreStack -> Maybe CostCentre
 - mkUserCC :: FastString -> Module -> SrcSpan -> CCFlavour -> CostCentre
 - mkAutoCC :: Id -> Module -> CostCentre
 - mkAllCafsCC :: Module -> SrcSpan -> CostCentre
 - mkSingletonCCS :: CostCentre -> CostCentreStack
 - isCafCCS :: CostCentreStack -> Bool
 - isCafCC :: CostCentre -> Bool
 - isSccCountCC :: CostCentre -> Bool
 - sccAbleCC :: CostCentre -> Bool
 - ccFromThisModule :: CostCentre -> Module -> Bool
 - pprCostCentreCore :: CostCentre -> SDoc
 - costCentreUserName :: CostCentre -> String
 - costCentreUserNameFS :: CostCentre -> FastString
 - costCentreSrcSpan :: CostCentre -> SrcSpan
 - cmpCostCentre :: CostCentre -> CostCentre -> Ordering
 
Documentation
data CostCentre Source #
Constructors
| NormalCC | |
Fields 
  | |
| AllCafsCC | |
Instances
| Eq CostCentre Source # | |
Defined in CostCentre  | |
| Data CostCentre Source # | |
Defined in CostCentre Methods gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> CostCentre -> c CostCentre # gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c CostCentre # toConstr :: CostCentre -> Constr # dataTypeOf :: CostCentre -> DataType # dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c CostCentre) # dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c CostCentre) # gmapT :: (forall b. Data b => b -> b) -> CostCentre -> CostCentre # gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> CostCentre -> r # gmapQr :: forall r r'. (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> CostCentre -> r # gmapQ :: (forall d. Data d => d -> u) -> CostCentre -> [u] # gmapQi :: Int -> (forall d. Data d => d -> u) -> CostCentre -> u # gmapM :: Monad m => (forall d. Data d => d -> m d) -> CostCentre -> m CostCentre # gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> CostCentre -> m CostCentre # gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> CostCentre -> m CostCentre #  | |
| Ord CostCentre Source # | |
Defined in CostCentre Methods compare :: CostCentre -> CostCentre -> Ordering # (<) :: CostCentre -> CostCentre -> Bool # (<=) :: CostCentre -> CostCentre -> Bool # (>) :: CostCentre -> CostCentre -> Bool # (>=) :: CostCentre -> CostCentre -> Bool # max :: CostCentre -> CostCentre -> CostCentre # min :: CostCentre -> CostCentre -> CostCentre #  | |
| Outputable CostCentre Source # | |
Defined in CostCentre  | |
| Binary CostCentre Source # | |
Defined in CostCentre Methods put_ :: BinHandle -> CostCentre -> IO () Source # put :: BinHandle -> CostCentre -> IO (Bin CostCentre) Source #  | |
type CcName = FastString Source #
The flavour of a cost centre.
Index fields represent 0-based indices giving source-code ordering of centres with the same module, name, and flavour.
Constructors
| CafCC | Auto-generated top-level thunk  | 
| ExprCC !CostCentreIndex | Explicitly annotated expression  | 
| DeclCC !CostCentreIndex | Explicitly annotated declaration  | 
| HpcCC !CostCentreIndex | Generated by HPC for coverage  | 
Instances
| Eq CCFlavour Source # | |
| Data CCFlavour Source # | |
Defined in CostCentre Methods gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> CCFlavour -> c CCFlavour # gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c CCFlavour # toConstr :: CCFlavour -> Constr # dataTypeOf :: CCFlavour -> DataType # dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c CCFlavour) # dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c CCFlavour) # gmapT :: (forall b. Data b => b -> b) -> CCFlavour -> CCFlavour # gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> CCFlavour -> r # gmapQr :: forall r r'. (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> CCFlavour -> r # gmapQ :: (forall d. Data d => d -> u) -> CCFlavour -> [u] # gmapQi :: Int -> (forall d. Data d => d -> u) -> CCFlavour -> u # gmapM :: Monad m => (forall d. Data d => d -> m d) -> CCFlavour -> m CCFlavour # gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> CCFlavour -> m CCFlavour # gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> CCFlavour -> m CCFlavour #  | |
| Ord CCFlavour Source # | |
| Binary CCFlavour Source # | |
data CostCentreStack Source #
A Cost Centre Stack is something that can be attached to a closure. This is either:
- the current cost centre stack (CCCS)
 - a pre-defined cost centre stack (there are several pre-defined CCSs, see below).
 
Instances
| Eq CostCentreStack Source # | |
Defined in CostCentre Methods (==) :: CostCentreStack -> CostCentreStack -> Bool # (/=) :: CostCentreStack -> CostCentreStack -> Bool #  | |
| Ord CostCentreStack Source # | |
Defined in CostCentre Methods compare :: CostCentreStack -> CostCentreStack -> Ordering # (<) :: CostCentreStack -> CostCentreStack -> Bool # (<=) :: CostCentreStack -> CostCentreStack -> Bool # (>) :: CostCentreStack -> CostCentreStack -> Bool # (>=) :: CostCentreStack -> CostCentreStack -> Bool # max :: CostCentreStack -> CostCentreStack -> CostCentreStack # min :: CostCentreStack -> CostCentreStack -> CostCentreStack #  | |
| Outputable CostCentreStack Source # | |
Defined in CostCentre  | |
type CollectedCCs = ([CostCentre], [CostCentreStack]) Source #
collectCC :: CostCentre -> CostCentreStack -> CollectedCCs -> CollectedCCs Source #
isCurrentCCS :: CostCentreStack -> Bool Source #
mkUserCC :: FastString -> Module -> SrcSpan -> CCFlavour -> CostCentre Source #
mkAllCafsCC :: Module -> SrcSpan -> CostCentre Source #
isCafCCS :: CostCentreStack -> Bool Source #
isCafCC :: CostCentre -> Bool Source #
isSccCountCC :: CostCentre -> Bool Source #
Is this a cost-centre which records scc counts
sccAbleCC :: CostCentre -> Bool Source #
Is this a cost-centre which can be sccd ?
ccFromThisModule :: CostCentre -> Module -> Bool Source #
pprCostCentreCore :: CostCentre -> SDoc Source #
Print a flavour in Core
cmpCostCentre :: CostCentre -> CostCentre -> Ordering Source #