OLD | NEW |
---|---|
1 //===- subzero/src/IceCfg.cpp - Control flow graph implementation ---------===// | 1 //===- subzero/src/IceCfg.cpp - Control flow graph implementation ---------===// |
2 // | 2 // |
3 // The Subzero Code Generator | 3 // The Subzero Code Generator |
4 // | 4 // |
5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
7 // | 7 // |
8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
9 /// | 9 /// |
10 /// \file | 10 /// \file |
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
264 ++Dest; | 264 ++Dest; |
265 } | 265 } |
266 } | 266 } |
267 Nodes.resize(Dest); | 267 Nodes.resize(Dest); |
268 | 268 |
269 TimerMarker T(TimerStack::TT_phiValidation, this); | 269 TimerMarker T(TimerStack::TT_phiValidation, this); |
270 for (CfgNode *Node : Nodes) | 270 for (CfgNode *Node : Nodes) |
271 Node->validatePhis(); | 271 Node->validatePhis(); |
272 } | 272 } |
273 | 273 |
274 /// Renumber the non-deleted instructions in the Cfg. This needs to be done in | |
275 /// preparation for live range analysis. The instruction numbers in a block | |
276 /// must be monotonically increasing. The range of instruction numbers in a | |
277 /// block, from lowest to highest, must not overlap with the range of any other | |
278 /// block. | |
279 /// | |
280 /// Also, if the configuration specifies to do so, remove/unlink all deleted | |
281 /// instructions from the Cfg, to speed up later passes over the instructions. | |
John
2016/03/14 13:27:15
Maybe document the .h file instead?
Jim Stichnoth
2016/03/14 13:51:15
Done.
| |
274 void Cfg::renumberInstructions() { | 282 void Cfg::renumberInstructions() { |
275 TimerMarker T(TimerStack::TT_renumberInstructions, this); | 283 TimerMarker T(TimerStack::TT_renumberInstructions, this); |
276 NextInstNumber = Inst::NumberInitial; | 284 NextInstNumber = Inst::NumberInitial; |
277 for (CfgNode *Node : Nodes) | 285 for (CfgNode *Node : Nodes) |
278 Node->renumberInstructions(); | 286 Node->renumberInstructions(); |
279 // Make sure the entry node is the first node and therefore got the lowest | 287 // Make sure the entry node is the first node and therefore got the lowest |
280 // instruction numbers, to facilitate live range computation of function | 288 // instruction numbers, to facilitate live range computation of function |
281 // arguments. We want to model function arguments as being live on entry to | 289 // arguments. We want to model function arguments as being live on entry to |
282 // the function, otherwise an argument whose only use is in the first | 290 // the function, otherwise an argument whose only use is in the first |
283 // instruction will be assigned a trivial live range and the register | 291 // instruction will be assigned a trivial live range and the register |
(...skipping 854 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1138 } | 1146 } |
1139 } | 1147 } |
1140 // Print each basic block | 1148 // Print each basic block |
1141 for (CfgNode *Node : Nodes) | 1149 for (CfgNode *Node : Nodes) |
1142 Node->dump(this); | 1150 Node->dump(this); |
1143 if (isVerbose(IceV_Instructions)) | 1151 if (isVerbose(IceV_Instructions)) |
1144 Str << "}\n"; | 1152 Str << "}\n"; |
1145 } | 1153 } |
1146 | 1154 |
1147 } // end of namespace Ice | 1155 } // end of namespace Ice |
OLD | NEW |