ghc-8.4.2: The GHC API

Safe HaskellNone
LanguageHaskell2010

CmmNode

Contents

Synopsis

Documentation

data CmmNode e x where Source #

Instances
Outputable CmmGraph # 
Instance details

Defined in PprCmm

NonLocal CmmNode # 
Instance details

Defined in CmmNode

DefinerOfRegs GlobalReg (CmmNode e x) # 
Instance details

Defined in CmmNode

Methods

foldRegsDefd :: DynFlags -> (b -> GlobalReg -> b) -> b -> CmmNode e x -> b Source #

DefinerOfRegs LocalReg (CmmNode e x) # 
Instance details

Defined in CmmNode

Methods

foldRegsDefd :: DynFlags -> (b -> LocalReg -> b) -> b -> CmmNode e x -> b Source #

UserOfRegs GlobalReg (CmmNode e x) # 
Instance details

Defined in CmmNode

Methods

foldRegsUsed :: DynFlags -> (b -> GlobalReg -> b) -> b -> CmmNode e x -> b Source #

UserOfRegs LocalReg (CmmNode e x) # 
Instance details

Defined in CmmNode

Methods

foldRegsUsed :: DynFlags -> (b -> LocalReg -> b) -> b -> CmmNode e x -> b Source #

Eq (CmmNode e x) # 
Instance details

Defined in CmmNode

Methods

(==) :: CmmNode e x -> CmmNode e x -> Bool #

(/=) :: CmmNode e x -> CmmNode e x -> Bool #

Outputable (CmmNode e x) # 
Instance details

Defined in PprCmm

Methods

ppr :: CmmNode e x -> SDoc Source #

pprPrec :: Rational -> CmmNode e x -> SDoc Source #

Outputable (Block CmmNode C C) # 
Instance details

Defined in PprCmm

Outputable (Block CmmNode C O) # 
Instance details

Defined in PprCmm

Outputable (Block CmmNode O C) # 
Instance details

Defined in PprCmm

Outputable (Block CmmNode O O) # 
Instance details

Defined in PprCmm

Outputable (Graph CmmNode e x) # 
Instance details

Defined in PprCmm

type CmmTickish = Tickish () Source #

Tickish in Cmm context (annotations only)

data Convention Source #

A convention maps a list of values (function arguments or return values) to registers or stack locations.

Constructors

NativeDirectCall

top-level Haskell functions use NativeDirectCall, which maps arguments to registers starting with R2, according to how many registers are available on the platform. This convention ignores R1, because for a top-level function call the function closure is implicit, and doesn't need to be passed.

NativeNodeCall

non-top-level Haskell functions, which pass the address of the function closure in R1 (regardless of whether R1 is a real register or not), and the rest of the arguments in registers or on the stack.

NativeReturn

a native return. The convention for returns depends on how many values are returned: for just one value returned, the appropriate register is used (R1, F1, etc.). regardless of whether it is a real register or not. For multiple values returned, they are mapped to registers or the stack.

Slow

Slow entry points: all args pushed on the stack

GC

Entry to the garbage collector: uses the node reg! (TODO: I don't think we need this --SDM)

Instances
Eq Convention # 
Instance details

Defined in CmmNode

Outputable Convention # 
Instance details

Defined in PprCmm

data ForeignTarget Source #

Instances
Eq ForeignTarget # 
Instance details

Defined in CmmNode

Outputable ForeignTarget # 
Instance details

Defined in PprCmm

(Ord r, UserOfRegs r CmmReg) => UserOfRegs r ForeignTarget # 
Instance details

Defined in CmmNode

Methods

foldRegsUsed :: DynFlags -> (b -> r -> b) -> b -> ForeignTarget -> b Source #

data CmmReturnInfo Source #

Instances
Eq CmmReturnInfo # 
Instance details

Defined in CmmNode

Outputable CmmReturnInfo # 
Instance details

Defined in PprCmm

mapExp :: (CmmExpr -> CmmExpr) -> CmmNode e x -> CmmNode e x Source #

foldExp :: (CmmExpr -> z -> z) -> CmmNode e x -> z -> z Source #

foldExpDeep :: (CmmExpr -> z -> z) -> CmmNode e x -> z -> z Source #

wrapRecExpf :: (CmmExpr -> z -> z) -> CmmExpr -> z -> z Source #

Tick scopes

data CmmTickScope Source #

Tick scope identifier, allowing us to reason about what annotations in a Cmm block should scope over. We especially take care to allow optimisations to reorganise blocks without losing tick association in the process.

Constructors

GlobalScope

The global scope is the "root" of the scope graph. Every scope is a sub-scope of the global scope. It doesn't make sense to add ticks to this scope. On the other hand, this means that setting this scope on a block means no ticks apply to it.

SubScope !Unique CmmTickScope

Constructs a new sub-scope to an existing scope. This allows us to translate Core-style scoping rules (see tickishScoped) into the Cmm world. Suppose the following code:

tick1 case ... of A -> tick2 ... B -> tick3 ...

We want the top-level tick annotation to apply to blocks generated for the A and B alternatives. We can achieve that by generating tick1 into a block with scope a, while the code for alternatives A and B gets generated into sub-scopes a/b and a/c respectively.

CombinedScope CmmTickScope CmmTickScope

A combined scope scopes over everything that the two given scopes cover. It is therefore a sub-scope of either scope. This is required for optimisations. Consider common block elimination:

A -> tick2 case ... of C -> [common] B -> tick3 case ... of D -> [common]

We will generate code for the C and D alternatives, and figure out afterwards that it's actually common code. Scoping rules dictate that the resulting common block needs to be covered by both tick2 and tick3, therefore we need to construct a scope that is a child to *both* scope. Now we can do that - if we assign the scopes ac and bd to the common-ed up blocks, the new block could have a combined tick scope ac+bd, which both tick2 and tick3 apply to.

isTickSubScope :: CmmTickScope -> CmmTickScope -> Bool Source #

Checks whether two tick scopes are sub-scopes of each other. True if the two scopes are equal.

combineTickScopes :: CmmTickScope -> CmmTickScope -> CmmTickScope Source #

Combine two tick scopes. The new scope should be sub-scope of both parameters. We simplfy automatically if one tick scope is a sub-scope of the other already.