]>
Commit | Line | Data |
---|---|---|
6ade8b0a | 1 | (* L3 Compiler |
12aa4087 JW |
2 | * Takes a interference graph and generates an ordering for coloring |
3 | * Author: Joshua Wise <jwise@andrew.cmu.edu> | |
0a24e44d | 4 | * Author: Chris Lu <czl@aundrew.cmu.edu> |
12aa4087 JW |
5 | *) |
6 | ||
7 | signature COLORORDER = | |
8 | sig | |
6ade8b0a JW |
9 | structure OperSet : ORD_SET |
10 | where type Key.ord_key = x86.oper | |
11 | structure LiveMap : ORD_MAP | |
12 | where type Key.ord_key = int | |
13 | structure TempMap : ORD_MAP | |
14 | where type Key.ord_key = Temp.temp | |
15 | ||
16 | type igraph = OperSet.set TempMap.map | |
0a24e44d | 17 | type ordering = Temp.temp list |
12aa4087 | 18 | |
6ade8b0a | 19 | val colororder : Igraph.graph * Temp.temp list -> ordering |
12aa4087 JW |
20 | end |
21 | ||
22 | structure ColorOrder :> COLORORDER = | |
23 | struct | |
24 | structure T = Temp | |
25 | structure X = x86 | |
26 | ||
6ade8b0a JW |
27 | structure OperSet = Igraph.OperSet |
28 | structure LiveMap = Igraph.LiveMap | |
29 | structure TempMap = Igraph.TempMap | |
30 | ||
31 | type igraph = OperSet.set TempMap.map | |
0a24e44d | 32 | type ordering = Temp.temp list |
12aa4087 | 33 | |
6ade8b0a | 34 | fun colororder (graph,temps) = |
12aa4087 | 35 | let |
6ade8b0a | 36 | val initialWeights = TempMap.mapi (fn (t, _) => (t, 0)) graph |
12aa4087 JW |
37 | |
38 | fun sortWeights weights = (* Sort the weights such that the largest is at left, ready to be grabbed. *) | |
39 | ListMergeSort.sort (fn ((_, a), (_, b)) => a < b) weights | |
0a24e44d | 40 | |
12aa4087 JW |
41 | (* Chooses one temporary to pick, and updates the weights. *) |
42 | fun orderOne (weights : (Temp.temp * int) list) : Temp.temp * (Temp.temp * int) list = | |
43 | let | |
44 | val sorted = sortWeights weights | |
45 | val (chosen, w) = List.hd sorted (* Grab the temp with the highest weight. *) | |
12aa4087 | 46 | val remaining = List.tl sorted |
0a24e44d | 47 | val neighbors = (* Grab all the neighbors for some given temp. *) |
6ade8b0a JW |
48 | (OperSet.listItems |
49 | (valOf (TempMap.find (graph, chosen)))) | |
12aa4087 JW |
50 | val newWeights = |
51 | List.map | |
52 | (fn (t, wt) => | |
53 | (t, | |
54 | if (List.exists | |
6ade8b0a | 55 | (fn X.TEMP t' => (T.eq (t, t')) |
12aa4087 JW |
56 | | _ => false) |
57 | neighbors) | |
58 | then (wt + 1) | |
59 | else wt | |
60 | ) | |
61 | ) remaining | |
62 | in | |
63 | (chosen, newWeights) | |
64 | end | |
65 | ||
66 | (* Recursively order until we run out of things to order. *) | |
67 | fun keepOrdering (nil : (Temp.temp * int) list) : Temp.temp list = nil | |
68 | | keepOrdering (weights) = | |
69 | let | |
70 | val (chosen, newWeights) = orderOne weights | |
71 | in | |
72 | chosen :: (keepOrdering newWeights) | |
73 | end | |
6ade8b0a JW |
74 | |
75 | val ordered = keepOrdering (TempMap.listItems initialWeights) | |
12aa4087 | 76 | in |
6ade8b0a | 77 | ordered @ (List.filter (fn a => not (List.exists (fn b => Temp.eq (a,b)) ordered)) temps) |
12aa4087 JW |
78 | end |
79 | end |