1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348
|
(*
* Some basic local CFG transformations. See the signature for descriptions.
*
* -- Allen
*)
functor CFGUtil
(structure CFG : CONTROL_FLOW_GRAPH
structure InsnProps : INSN_PROPERTIES
sharing CFG.I = InsnProps.I
) : CFG_UTIL =
struct
structure CFG = CFG
structure I = CFG.I
structure W = CFG.W
structure G = Graph
structure H = HashArray
structure S = BitSet
exception Can'tMerge
fun error msg = MLRiscErrorMsg.error("CFGUtil",msg)
fun labelOf(G.GRAPH cfg) node = CFG.defineLabel(#node_info cfg node)
fun copyEdge(CFG.EDGE{a,w,k}) = CFG.EDGE{a=ref(!a),w=ref(!w),k=k}
(*=====================================================================
*
* Check whether block i must preceed block j in any linear layout.
* This may be true if i falls through to j (transitively)
*
*=====================================================================*)
fun mustPreceed (G.GRAPH cfg) (i,j) =
let val visited = H.array(23,false)
fun chase [] = false
| chase((u,v,CFG.EDGE{k=(CFG.FALLSTHRU|CFG.BRANCH false),...})::_) =
if H.sub(visited,u) then false
else u = i orelse (H.update(visited,u,true); chase(#in_edges cfg u))
| chase(_::es) = chase es
in i = j orelse chase(#in_edges cfg j)
end
(*=====================================================================
*
* Predicates on nodes and edges
*
*=====================================================================*)
fun isMerge (G.GRAPH cfg) node = length(#in_edges cfg node) > 1
fun isSplit (G.GRAPH cfg) node = length(#out_edges cfg node) > 1
(*
fun hasSideExits (G.GRAPH cfg) node =
List.exists (fn (_,_,CFG.EDGE{k=CFG.SIDEEXIT _,...}) => true
| _ => false) (#out_edges cfg node)
*)
fun hasSideExits _ _ = false
fun isCriticalEdge CFG (_,_,CFG.EDGE{k=CFG.ENTRY,...}) = false
| isCriticalEdge CFG (_,_,CFG.EDGE{k=CFG.EXIT,...}) = false
| isCriticalEdge CFG (i,j,_) = isSplit CFG i andalso isMerge CFG j
(*=====================================================================
*
* Update the label of the branch instruction in a certain block
* to be consistent with the control flow edges. This doesn't work
* on hyperblocks!!!
*
*=====================================================================*)
fun updateJumpLabel(CFG as G.GRAPH cfg) =
let val labelOf = labelOf CFG
fun update node =
case #node_info cfg node of
CFG.BLOCK{insns=ref [],...} => ()
| CFG.BLOCK{kind=CFG.START,...} => ()
| CFG.BLOCK{kind=CFG.STOP,...} => ()
| CFG.BLOCK{insns=insns as ref(jmp::rest),...} =>
(case #out_edges cfg node of
[] => ()
| [(_,_,CFG.EDGE{k=(CFG.ENTRY | CFG.EXIT),...})] => ()
| [(i,j,_)] =>
if InsnProps.instrKind jmp = InsnProps.IK_JUMP then
insns := InsnProps.setTargets(jmp,[labelOf j])::rest
else ()
| [(_,i,CFG.EDGE{k=CFG.BRANCH x,...}),
(_,j,CFG.EDGE{k=CFG.BRANCH y,...})] =>
let val (i,j) = if x then (j,i) else (i,j)
in insns :=
InsnProps.setTargets(jmp,[labelOf i,labelOf j])::rest
end
| es =>
let fun gt ((_,_,CFG.EDGE{k=CFG.SWITCH i,...}),
(_,_,CFG.EDGE{k=CFG.SWITCH j,...})) = i > j
| gt _ = error "gt"
val es = ListMergeSort.sort gt es
val labels = map (fn (_,j,_) => labelOf j) es
in insns := InsnProps.setTargets(jmp,labels)::rest;
error "updateJumpLabel"
end
)
in update
end
(*=====================================================================
*
* Merge a control flow edge i -> j.
* Raise Can't Merge if it is illegal.
* After merging blocks i and j will become block i.
*
*=====================================================================*)
fun mergeEdge (CFG as G.GRAPH cfg) (i,j,e as CFG.EDGE{w,k,...}) =
let val _ = case k of
(CFG.ENTRY | CFG.EXIT) => raise Can'tMerge
| _ => ()
val _ = case (#out_edges cfg i,#in_edges cfg j) of
([(_,j',_)],[(i',_,_)]) =>
if j' <> j orelse i' <> i then raise Can'tMerge
else ()
| _ => raise Can'tMerge
val _ = if mustPreceed CFG (i,j) then raise Can'tMerge else ()
val CFG.BLOCK{data=d2,insns=i2,annotations=a2,...} =
#node_info cfg j
val _ = case !d2 of [] => () | _ => raise Can'tMerge
val CFG.BLOCK{data=d1,insns=i1,annotations=a1,...} =
#node_info cfg i
(* If both blocks have annotations then don't merge them.
* But instead, just try to removed the jump instruction instead.
*)
val canMerge = case (!a1, !a2) of
(_::_, _::_) => false
| _ => true
val insns1 = case !i1 of
[] => []
| insns as jmp::rest =>
if InsnProps.instrKind jmp = InsnProps.IK_JUMP
then rest else insns
in if canMerge then
(i1 := !i2 @ insns1;
a1 := !a1 @ !a2;
#set_out_edges cfg
(i,map (fn (_,j',e) => (i,j',e)) (#out_edges cfg j));
#remove_node cfg j;
updateJumpLabel CFG i
)
else (* Just eliminate the jump instruction at the end *)
(i1 := insns1;
#set_out_edges cfg
(i,map (fn (i,j,CFG.EDGE{w,a,...}) =>
(i,j,CFG.EDGE{k=CFG.FALLSTHRU,w=w,a=a}))
(#out_edges cfg i))
);
true
end handle Can'tMerge => false
(*=====================================================================
*
* Eliminate the jump at the end of a basic block if feasible
*
*=====================================================================*)
fun eliminateJump (CFG as G.GRAPH cfg) i =
(case #out_edges cfg i of
[e as (i,j,CFG.EDGE{k,w,a})] =>
(case CFG.fallsThruFrom(CFG,j) of
SOME _ => false
| NONE =>
if mustPreceed CFG (j,i) then false
else
let val CFG.BLOCK{insns,...} = #node_info cfg i
val CFG.BLOCK{data,...} = #node_info cfg j
in case (!data,!insns) of
([],jmp::rest) =>
if InsnProps.instrKind jmp = InsnProps.IK_JUMP then
(insns := rest;
CFG.removeEdge CFG e;
#add_edge cfg (i,j,CFG.EDGE{k=CFG.FALLSTHRU,w=w,a=a});
true
)
else false
| _ => false
end
)
| _ => false
)
(*=====================================================================
*
* Insert a jump at the end of a basic block if feasible
*
*=====================================================================*)
fun insertJump (CFG as G.GRAPH cfg) i =
(case #out_edges cfg i of
[e as (i,j,CFG.EDGE{k=CFG.FALLSTHRU,w,a,...})] =>
let val CFG.BLOCK{insns,...} = #node_info cfg i
in insns := InsnProps.jump(labelOf CFG j) :: !insns;
CFG.removeEdge CFG e;
#add_edge cfg (i,j,CFG.EDGE{k=CFG.JUMP,w=w,a=a});
true
end
| _ => false
)
(*=====================================================================
*
* Split a control flow edge, return a new edge and the new block
*
*=====================================================================*)
fun splitEdge (CFG as G.GRAPH cfg)
{kind, edge=(i,j,e as CFG.EDGE{w,...}),jump} =
let val k = #new_id cfg ()
val jump = jump orelse i = j orelse
(case CFG.fallsThruFrom(CFG,j) of
NONE => false
| SOME _ => true)
val insns = ref(if jump then [InsnProps.jump(labelOf CFG j)] else [])
val node =
CFG.BLOCK{id=k, kind=kind,
freq= ref(!w), data=ref [], labels = ref [],
insns=insns, annotations=ref []}
val kind = if jump then CFG.JUMP else CFG.FALLSTHRU
val edge = (k,j,CFG.EDGE{w=ref(!w),a=ref [],k=kind})
in CFG.removeEdge CFG (i,j,e);
#add_edge cfg (i,k,e);
#add_node cfg (k,node);
#add_edge cfg edge;
updateJumpLabel CFG i;
{node=(k,node),edge=edge}
end
(*=====================================================================
*
* Split all critical edges in the CFG
*
*=====================================================================*)
fun splitAllCriticalEdges (CFG as G.GRAPH cfg) =
let val changed = ref false
in #forall_edges cfg
(fn e => if isCriticalEdge CFG e then
(splitEdge CFG {edge=e,kind=CFG.NORMAL,jump=false}; changed := true)
else ());
if !changed then CFG.changed CFG else ()
end
(*=====================================================================
*
* Tail duplicate a region until there are no side entry edges
* entering into the region. Return the set of new edges and nodes
*
*=====================================================================*)
fun tailDuplicate (CFG as G.GRAPH cfg : CFG.cfg)
{subgraph=G.GRAPH subgraph : CFG.cfg,root} =
let exception NotFound
val blockMap = H.array'(10,fn v => raise NotFound)
val _ = print("[root "^Int.toString root^"]\n")
fun duplicate v =
H.sub(blockMap,v) handle NotFound =>
let val w = #new_id cfg ()
val w' = CFG.copyBlock(w,#node_info cfg v)
in #add_node cfg (w,w');
H.update(blockMap,v,(w,w'));
app (#add_edge cfg)
(map (fn (i,j,e) => (w,j,copyEdge e)) (#out_edges cfg v));
updateJumpLabel CFG w;
(w,w')
end
fun process((n,_)::rest,ns,Ns,Es) =
process(rest,collect(#entry_edges subgraph n,ns),Ns,Es)
| process([],ns,Ns,Es) = dupl(ns,Ns,Es,false)
and collect([],ns) = ns
| collect((i,_,_)::es,ns) = collect(es,if i = root then ns else i::ns)
and dupl([],Ns,Es,changed) = (Ns,Es,changed)
| dupl(n::ns,Ns,Es,changed) =
redirect(#out_edges cfg n,ns,Ns,Es,changed)
and redirect([],ns,Ns,Es,changed) = dupl(ns,Ns,Es,changed)
| redirect((u,v,e)::es,ns,Ns,Es,changed) =
if v <> root andalso
#has_edge cfg (u,v) andalso
#has_node subgraph v andalso
not(#has_edge subgraph (u,v)) then
(*
* u -> v is a side entry edge, duplicate v
*)
let val _ = print("[tail duplicating "^Int.toString u^" -> "^
Int.toString v^"]\n")
val (w,w') = duplicate v
in CFG.removeEdge CFG (u,v,e);
#add_edge cfg (u,w,e);
updateJumpLabel CFG u;
redirect(es,w::ns,(w,w')::Ns,(u,w,e)::Es,true)
end
else redirect(es,ns,Ns,Es,changed)
fun iter(Ns,Es) =
let val (Ns,Es,changed) = process(#nodes subgraph (),[],Ns,Es)
in if changed then (CFG.changed CFG; iter(Ns,Es))
else {nodes=Ns,edges=Es}
end
in iter([],[])
end
(*=====================================================================
*
* Remove unreachable code in the CFG
*
*=====================================================================*)
fun removeUnreachableCode(CFG as G.GRAPH cfg) =
let val N = #capacity cfg ()
val visited = S.create N
fun mark n = if S.markAndTest(visited,n) then ()
else app mark (#succ cfg n)
val changed = ref false
fun remove(b,CFG.BLOCK{data,insns,...}) =
if S.contains(visited,b) then ()
else
(changed :=true;
case #in_edges cfg b of
[] => #remove_node cfg b
| _ => (insns := []; #set_out_edges cfg (b,[]))
)
in app mark (#entries cfg ());
#forall_nodes cfg remove;
if !changed then CFG.changed CFG else ()
end
(*=====================================================================
*
* Merge all edges in the CFG.
* Merge higher frequency edges first
*
*=====================================================================*)
fun mergeAllEdges(CFG as G.GRAPH cfg) =
let val mergeEdge = mergeEdge CFG
fun higherFreq((_,_,CFG.EDGE{w=x,...}),(_,_,CFG.EDGE{w=y,...}))= !x < !y
fun mergeAll([],changed) = changed
| mergeAll(e::es,changed) = mergeAll(es,mergeEdge e orelse changed)
(* note: sort expects the gt operator and sorts in ascending order *)
val changed = mergeAll(ListMergeSort.sort higherFreq (#edges cfg ()),
false)
in if changed then CFG.changed CFG else ()
end
end
|