ghc-7.0.4: The GHC API

ZipCfg

Synopsis

Documentation

data Graph m l Source

Constructors

Graph 

Fields

g_entry :: ZTail m l
 
g_blocks :: BlockEnv (Block m l)
 

Instances

data LGraph m l Source

Constructors

LGraph 

Fields

lg_entry :: BlockId
 
lg_blocks :: BlockEnv (Block m l)
 

Instances

data FGraph m l Source

Constructors

FGraph 

Fields

fg_entry :: BlockId
 
fg_focus :: ZBlock m l
 
fg_others :: BlockEnv (Block m l)
 

data Block m l Source

Blocks and flow graphs; see Note [Kinds of graphs]

Constructors

Block 

Fields

bid :: BlockId
 
tail :: ZTail m l
 

Instances

data ZBlock m l Source

And now the zipper. The focus is between the head and tail. We cannot ever focus on an inter-block edge.

Constructors

ZBlock (ZHead m) (ZTail m l) 

Instances

data ZHead m Source

Constructors

ZFirst BlockId 
ZHead (ZHead m) m 

data ZTail m l Source

Constructors

ZLast (ZLast l) 
ZTail m (ZTail m l) 

Instances

data ZLast l Source

A basic block is a first node, followed by zero or more middle nodes, followed by a last node.

Constructors

LastExit 
LastOther l 

insertBlock :: Block m l -> BlockEnv (Block m l) -> BlockEnv (Block m l)Source

insertBlock should not be used to replace an existing block but only to insert a new one

class HavingSuccessors b whereSource

We can't make a graph out of just any old 'last node' type. A last node has to be able to find its successors, and we need to be able to create and identify unconditional branches. We put these capabilities in a type class. Moreover, the property of having successors is also shared by Blocks and ZTails, so it is useful to have that property in a type class of its own.

Methods

succs :: b -> [BlockId]Source

fold_succs :: (BlockId -> a -> a) -> b -> a -> aSource

class HavingSuccessors l => LastNode l whereSource

Methods

mkBranchNode :: BlockId -> lSource

isBranchNode :: l -> BoolSource

branchNodeTargetSource

Arguments

:: l 
-> BlockId

N.B. This interface seems to make for more congenial clients than a single function of type 'l -> Maybe BlockId'

Instances

zip :: ZBlock m l -> Block m lSource

unzip :: Block m l -> ZBlock m lSource

last :: ZBlock m l -> ZLast lSource

goto_end :: ZBlock m l -> (ZHead m, ZLast l)Source

zipht :: ZHead m -> ZTail m l -> Block m lSource

Take a head and tail and go to beginning or end. The asymmetry in the types and names is a bit unfortunate, but 'Block m l' is effectively '(BlockId, ZTail m l)' and is accepted in many more places.

splice_tail :: Graph m l -> ZTail m l -> Graph m lSource

splice_head :: ZHead m -> LGraph m l -> (LGraph m l, ZHead m)Source

We can splice a single-entry, single-exit LGraph onto a head or a tail. For a head, we have a head h followed by a LGraph g. The entry node of g gets joined to h, forming the entry into the new LGraph. The exit of g becomes the new head. For both arguments and results, the order of values is the order of control flow: before splicing, the head flows into the LGraph; after splicing, the LGraph flows into the head. Splicing a tail is the dual operation. (In order to maintain the order-means-control-flow convention, the orders are reversed.)

For example, assume head = [L: x:=0] grph = (M, [M: stuff, blocks, N: y:=x; LastExit]) tail = [return (y,x)]

Then splice_head head grph = ((L, [L: x:=0; goto M, M: stuff, blocks]) , N: y:=x)

Then splice_tail grph tail = ( stuff , (???, [blocks, N: y:=x; return (y,x)])

splice_head' :: ZHead m -> Graph m l -> (BlockEnv (Block m l), ZHead m)Source

of_block_list :: BlockId -> [Block m l] -> LGraph m lSource

A safe operation

Conversion to and from the environment form is convenient. For layout or dataflow, however, one will want to use postorder_dfs in order to get the blocks in an order that relates to the control flow in the procedure.

graphOfLGraph :: LastNode l => LGraph m l -> Graph m lSource

Conversion from LGraph to Graph

map_blocks :: (Block m l -> Block m' l') -> LGraph m l -> LGraph m' l'Source

map_one_block :: (BlockId -> BlockId) -> (m -> m') -> (l -> l') -> Block m l -> Block m' l'Source

map_nodes :: (BlockId -> BlockId) -> (m -> m') -> (l -> l') -> LGraph m l -> LGraph m' l'Source

mapM_blocks :: Monad mm => (Block m l -> mm (Block m' l')) -> LGraph m l -> mm (LGraph m' l')Source

postorder_dfs :: LastNode l => LGraph m l -> [Block m l]Source

Traversal: postorder_dfs returns a list of blocks reachable from the entry node. This list has the following property:

Say a back reference exists if one of a block's control-flow successors precedes it in the output list

Then there are as few back references as possible

The output is suitable for use in a forward dataflow problem. For a backward problem, simply reverse the list. (postorder_dfs is sufficiently tricky to implement that one doesn't want to try and maintain both forward and backward versions.)

postorder_dfs_from_except :: forall m b l. (HavingSuccessors b, LastNode l) => BlockEnv (Block m l) -> b -> BlockSet -> [Block m l]Source

This is the most important traversal over this data structure. It drops unreachable code and puts blocks in an order that is good for solving forward dataflow problems quickly. The reverse order is good for solving backward dataflow problems quickly. The forward order is also reasonably good for emitting instructions, except that it will not usually exploit Forrest Baskett's trick of eliminating the unconditional branch from a loop. For that you would need a more serious analysis, probably based on dominators, to identify loop headers.

The ubiquity of postorder_dfs is one reason for the ubiquity of the LGraph representation, when for most purposes the plain Graph representation is more mathematically elegant (but results in more complicated code).

Here's an easy way to go wrong! Consider A -> [B,C] B -> D C -> D Then ordinary dfs would give [A,B,D,C] which has a back ref from C to D. Better to get [A,B,C,D]

fold_layout :: LastNode l => (Block m l -> Maybe BlockId -> a -> a) -> a -> LGraph m l -> aSource

For layout, we fold over pairs of 'Block m l' and 'Maybe BlockId' in layout order. The 'Maybe BlockId', if present, identifies the block that will be the layout successor of the current block. This may be useful to help an emitter omit the final goto of a block that flows directly to its layout successor.

For example: fold_layout f z [ L1:B1, L2:B2, L3:B3 ] = z $ f (L1:B1) (Just L2) $ f (L2:B2) (Just L3) $ f (L3:B3) Nothing where a $ f = f a

fold_blocks :: (Block m l -> a -> a) -> a -> LGraph m l -> aSource

We can also fold over blocks in an unspecified order. The ZipCfgExtras module provides a monadic version, which we haven't needed (else it would be here).

fold_fwd_block :: (BlockId -> a -> a) -> (m -> a -> a) -> (ZLast l -> a -> a) -> Block m l -> a -> aSource

Fold from first to last

translate :: Monad tm => (m -> tm (LGraph m' l')) -> (l -> tm (LGraph m' l')) -> LGraph m l -> tm (LGraph m' l')Source

These translation functions are speculative. I hope eventually they will be used in the native-code back ends ---NR

entry :: LGraph m l -> FGraph m lSource