Mercurial > lcfOS
annotate python/codegen/interferencegraph.py @ 296:9417caea2eb3
Directorized some backend files
author | Windel Bouwman |
---|---|
date | Sun, 01 Dec 2013 13:36:58 +0100 |
parents | python/interferencegraph.py@02385f62f250 |
children |
rev | line source |
---|---|
296 | 1 from .graph import Graph, Node |
277 | 2 |
3 | |
296 | 4 class InterferenceGraphNode(Node): |
277 | 5 def __init__(self, g, varname): |
6 super().__init__(g) | |
278
9fca39eebe50
First implementation of regalloc with coalsesc
Windel Bouwman
parents:
277
diff
changeset
|
7 self.temps = [varname] |
9fca39eebe50
First implementation of regalloc with coalsesc
Windel Bouwman
parents:
277
diff
changeset
|
8 self.moves = set() |
279 | 9 self.color = None |
277 | 10 |
11 def __repr__(self): | |
279 | 12 return '{}({})'.format(self.temps, self.color) |
277 | 13 |
14 | |
296 | 15 class InterferenceGraph(Graph): |
277 | 16 """ |
17 Interference graph. | |
18 """ | |
19 def __init__(self, flowgraph): | |
296 | 20 """ Create a new interference graph from a flowgraph """ |
278
9fca39eebe50
First implementation of regalloc with coalsesc
Windel Bouwman
parents:
277
diff
changeset
|
21 super().__init__() |
277 | 22 # Calculate liveness in CFG: |
23 ### | |
24 # Liveness: | |
25 # in[n] = use[n] UNION (out[n] - def[n]) | |
26 # out[n] = for s in n.succ in union in[s] | |
27 ### | |
28 for n in flowgraph.nodes: | |
29 n.live_in = set() | |
30 n.live_out = set() | |
31 | |
32 # Dataflow fixed point iteration: | |
33 change = True | |
34 while change: | |
35 change = False | |
36 for n in flowgraph.nodes: | |
37 _in = n.live_in | |
38 _out = n.live_out | |
39 n.live_in = n.uses | (n.live_out - n.defs) | |
40 if n.Succ: | |
41 n.live_out = set.union(*(s.live_in for s in n.Succ)) | |
42 else: | |
43 n.live_out = set() | |
44 change = change or (_in != n.live_in) or (_out != n.live_out) | |
45 | |
46 # Construct interference graph: | |
47 for n in flowgraph.nodes: | |
48 for tmp in n.live_out: | |
49 n1 = self.getNode(tmp) | |
50 for tmp2 in (n.live_out - {tmp}): | |
51 n2 = self.getNode(tmp2) | |
52 self.addEdge(n1, n2) | |
53 | |
279 | 54 def to_dot(self, f): |
55 """ Generate graphviz dot representation """ | |
296 | 56 for n in self.nodes: |
57 print('{} [label="{}" shape=box3d];'.format(id(n), n), file=f) | |
279 | 58 for n, m in self.edges: |
59 print('{} -> {};'.format(id(n), id(m)), file=f) | |
60 | |
61 def to_txt(self): | |
62 for node in self.nodes: | |
63 print('{} interferes: {}'.format(node, node.Adjecent)) | |
64 | |
277 | 65 def getNode(self, tmp): |
278
9fca39eebe50
First implementation of regalloc with coalsesc
Windel Bouwman
parents:
277
diff
changeset
|
66 # Linear search |
9fca39eebe50
First implementation of regalloc with coalsesc
Windel Bouwman
parents:
277
diff
changeset
|
67 # TODO: can be improved for speed! |
9fca39eebe50
First implementation of regalloc with coalsesc
Windel Bouwman
parents:
277
diff
changeset
|
68 for n in self.nodes: |
9fca39eebe50
First implementation of regalloc with coalsesc
Windel Bouwman
parents:
277
diff
changeset
|
69 if tmp in n.temps: |
9fca39eebe50
First implementation of regalloc with coalsesc
Windel Bouwman
parents:
277
diff
changeset
|
70 return n |
9fca39eebe50
First implementation of regalloc with coalsesc
Windel Bouwman
parents:
277
diff
changeset
|
71 n = InterferenceGraphNode(self, tmp) |
277 | 72 self.addNode(n) |
73 return n | |
74 | |
278
9fca39eebe50
First implementation of regalloc with coalsesc
Windel Bouwman
parents:
277
diff
changeset
|
75 def Combine(self, n, m): |
9fca39eebe50
First implementation of regalloc with coalsesc
Windel Bouwman
parents:
277
diff
changeset
|
76 """ Combine n and m into n """ |
9fca39eebe50
First implementation of regalloc with coalsesc
Windel Bouwman
parents:
277
diff
changeset
|
77 n.temps.extend(m.temps) |
9fca39eebe50
First implementation of regalloc with coalsesc
Windel Bouwman
parents:
277
diff
changeset
|
78 n.moves.update(m.moves) |
279 | 79 # Reroute all edges: |
80 e1 = [e for e in self.edges if e[0] is m] | |
81 e2 = [e for e in self.edges if e[1] is m] | |
82 for e in e1: | |
83 self.edges.remove(e) | |
84 self.addEdge(n, e[1]) | |
85 for e in e2: | |
86 self.edges.remove(e) | |
87 self.addEdge(n, e[0]) | |
88 # Remove node m: | |
278
9fca39eebe50
First implementation of regalloc with coalsesc
Windel Bouwman
parents:
277
diff
changeset
|
89 self.delNode(m) |