| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
GHC.Prof.Types
- data Profile = Profile {}
- data TotalTime = TotalTime {}
- newtype TotalAlloc = TotalAlloc {}
- data AggregateCostCentre = AggregateCostCentre {}
- data CostCentre = CostCentre {
- costCentreName :: !Text
- costCentreModule :: !Text
- costCentreSrc :: !(Maybe Text)
- costCentreNo :: !CostCentreNo
- costCentreEntries :: !Integer
- costCentreIndTime :: !Scientific
- costCentreIndAlloc :: !Scientific
- costCentreInhTime :: !Scientific
- costCentreInhAlloc :: !Scientific
- costCentreTicks :: !(Maybe Integer)
- costCentreBytes :: !(Maybe Integer)
- type CostCentreNo = Int
- data CostCentreTree = CostCentreTree {
- costCentreNodes :: !(IntMap CostCentre)
- costCentreParents :: !(IntMap CostCentreNo)
- costCentreChildren :: !(IntMap (Seq CostCentre))
- costCentreCallSites :: !(Map (Text, Text) (Seq CostCentre))
- costCentreAggregate :: !(Map (Text, Text) AggregateCostCentre)
- emptyCostCentreTree :: CostCentreTree
- data Callee = Callee {
- calleeName :: Text
- calleeModule :: Text
- calleeEntries :: !Integer
- calleeTime :: !Scientific
- calleeAlloc :: !Scientific
- calleeTicks :: !(Maybe Integer)
- calleeBytes :: !(Maybe Integer)
- data CallSite = CallSite {}
Documentation
Top-level profiling report
Constructors
| Profile | |
total time in the profiling reports
Constructors
| TotalTime | |
Fields
| |
newtype TotalAlloc Source #
total alloc in the profiling reports
Constructors
| TotalAlloc | |
Fields
| |
Instances
data AggregateCostCentre Source #
Constructors
| AggregateCostCentre | |
Fields
| |
Instances
data CostCentre Source #
Cost-centre node
Constructors
| CostCentre | |
Fields
| |
Instances
type CostCentreNo = Int Source #
data CostCentreTree Source #
Constructors
| CostCentreTree | |
Fields
| |
Instances
Constructors
| Callee | |
Fields
| |
Constructors
| CallSite | |
Fields
| |