ghc-8.6.4: The GHC API

Safe HaskellNone
LanguageHaskell2010

GraphBase

Description

Types for the general graph colorer.

Synopsis

Documentation

type Triv k cls color = cls -> UniqSet k -> UniqSet color -> Bool Source #

A fn to check if a node is trivially colorable For graphs who's color classes are disjoint then a node is 'trivially colorable' when it has less neighbors and exclusions than available colors for that node.

For graph's who's color classes overlap, ie some colors alias other colors, then this can be a bit more tricky. There is a general way to calculate this, but it's likely be too slow for use in the code. The coloring algorithm takes a canned function which can be optimised by the user to be specific to the specific graph being colored.

for details, see "A Generalised Algorithm for Graph-Coloring Register Allocation" Smith, Ramsey, Holloway - PLDI 2004.

data Graph k cls color Source #

The Interference graph. There used to be more fields, but they were turfed out in a previous revision. maybe we'll want more later..

Constructors

Graph 

Fields

initGraph :: Graph k cls color Source #

An empty graph.

graphMapModify :: (UniqFM (Node k cls color) -> UniqFM (Node k cls color)) -> Graph k cls color -> Graph k cls color Source #

Modify the finite map holding the nodes in the graph.

data Node k cls color Source #

Graph nodes. Represents a thing that can conflict with another thing. For the register allocater the nodes represent registers.

Constructors

Node 

Fields

newNode :: k -> cls -> Node k cls color Source #

An empty node.