ghc-lib-9.8.2.20240223: The GHC API, decoupled from GHC versions
Safe HaskellSafe-Inferred
LanguageHaskell2010

GHC.StgToCmm.Utils

Synopsis

Documentation

emitDataLits :: CLabel -> [CmmLit] -> FCode () Source #

Emit a data-segment data block

emitRODataLits :: CLabel -> [CmmLit] -> FCode () Source #

Emit a read-only data block

callerSaves :: Platform -> GlobalReg -> Bool #

Returns True if this global register is stored in a caller-saves machine register.

get_GlobalReg_addr :: Platform -> GlobalReg -> CmmExpr Source #

We map STG registers onto appropriate CmmExprs. Either they map to real machine registers or stored as offsets from BaseReg. Given a GlobalReg, get_GlobalReg_addr always produces the register table address for it.

addToMem :: CmmType -> CmmExpr -> Int -> CmmAGraph Source #

addToMem rep ptr n adds n to the integer pointed-to by ptr.

addToMemE :: CmmType -> CmmExpr -> CmmExpr -> CmmAGraph Source #

addToMemE rep ptr n adds n to the integer pointed-to by ptr.

Update remembered set operations

emitUpdRemSetPush Source #

Arguments

:: CmmExpr

value of pointer which was overwritten

-> FCode () 

Emit code to add an entry to a now-overwritten pointer to the update remembered set.

emitUpdRemSetPushThunk Source #

Arguments

:: CmmExpr

the thunk

-> FCode () 

convertInfoProvMap :: StgToCmmConfig -> Module -> InfoTableProvMap -> IPEStats -> [CmmInfoTable] -> (IPEStats, [InfoProvEnt]) Source #

Convert source information collected about identifiers in Debug to entries suitable for placing into the info table provenance table.

The initial stats given to this function will (or should) only contain stats for stack info tables skipped during generateCgIPEStub. As the fold progresses, counts of tables per closure type will be accumulated.

cmmInfoTableToInfoProvEnt :: Module -> CmmInfoTable -> InfoProvEnt Source #

A bare bones InfoProvEnt for things which don't have a good source location

data IPEStats Source #

Constructors

IPEStats 

Instances

Instances details
Monoid IPEStats Source # 
Instance details

Defined in GHC.StgToCmm.Utils

Semigroup IPEStats Source # 
Instance details

Defined in GHC.StgToCmm.Utils

Outputable IPEStats Source # 
Instance details

Defined in GHC.StgToCmm.Utils

Methods

ppr :: IPEStats -> SDoc #