blob: 90569352c41a0e05a60706331514c670ea1c099e [file] [log] [blame]
Brian Carlstrom7940e442013-07-12 13:46:57 -07001/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Dragos Sbirleadb063062013-07-23 16:29:09 -070016#include "base/stringprintf.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070017#include "file_output_stream.h"
Brian Carlstrom1db91132013-07-12 18:05:20 -070018#include "instruction_tools.h"
Dragos Sbirlea0e260a32013-06-21 09:20:34 -070019#include "sea.h"
20#include "code_gen.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070021
22#define MAX_REACHING_DEF_ITERERATIONS (10)
Dragos Sbirlea0e260a32013-06-21 09:20:34 -070023// TODO: When development is done, this define should not
24// be needed, it is currently used as a cutoff
25// for cases where the iterative fixed point algorithm
26// does not reach a fixed point because of a bug.
Brian Carlstrom7940e442013-07-12 13:46:57 -070027
28namespace sea_ir {
29
Brian Carlstrom7940e442013-07-12 13:46:57 -070030int SeaNode::current_max_node_id_ = 0;
31
Dragos Sbirlea0e260a32013-06-21 09:20:34 -070032void IRVisitor::Traverse(Region* region) {
33 std::vector<PhiInstructionNode*>* phis = region->GetPhiNodes();
34 for (std::vector<PhiInstructionNode*>::const_iterator cit = phis->begin();
35 cit != phis->end(); cit++) {
36 (*cit)->Accept(this);
37 }
38
39 std::vector<InstructionNode*>* instructions = region->GetInstructions();
40 for (std::vector<InstructionNode*>::const_iterator cit = instructions->begin();
41 cit != instructions->end(); cit++) {
42 (*cit)->Accept(this);
43 }
44}
45
46void IRVisitor::Traverse(SeaGraph* graph) {
47 for (std::vector<Region*>::const_iterator cit = ordered_regions_.begin();
48 cit != ordered_regions_.end(); cit++ ) {
49 (*cit)->Accept(this);
50 }
51}
Brian Carlstrom7940e442013-07-12 13:46:57 -070052
Dragos Sbirlea6bee4452013-07-26 12:05:03 -070053SeaGraph* SeaGraph::GetCurrentGraph(const art::DexFile& dex_file) {
54 return new SeaGraph(dex_file);
Brian Carlstrom7940e442013-07-12 13:46:57 -070055}
56
57void SeaGraph::DumpSea(std::string filename) const {
Brian Carlstrom1db91132013-07-12 18:05:20 -070058 LOG(INFO) << "Starting to write SEA string to file.";
Brian Carlstrom7940e442013-07-12 13:46:57 -070059 std::string result;
Dragos Sbirlea6bee4452013-07-26 12:05:03 -070060 result += "digraph seaOfNodes {\ncompound=true\n";
Brian Carlstrom7940e442013-07-12 13:46:57 -070061 for (std::vector<Region*>::const_iterator cit = regions_.begin(); cit != regions_.end(); cit++) {
Dragos Sbirlea6bee4452013-07-26 12:05:03 -070062 (*cit)->ToDot(result, dex_file_);
Brian Carlstrom7940e442013-07-12 13:46:57 -070063 }
64 result += "}\n";
65 art::File* file = art::OS::OpenFile(filename.c_str(), true, true);
66 art::FileOutputStream fos(file);
67 fos.WriteFully(result.c_str(), result.size());
68 LOG(INFO) << "Written SEA string to file.";
69}
70
71void SeaGraph::AddEdge(Region* src, Region* dst) const {
72 src->AddSuccessor(dst);
73 dst->AddPredecessor(src);
74}
75
Brian Carlstrom1db91132013-07-12 18:05:20 -070076void SeaGraph::ComputeRPO(Region* current_region, int& current_rpo) {
77 current_region->SetRPO(VISITING);
78 std::vector<sea_ir::Region*>* succs = current_region->GetSuccessors();
79 for (std::vector<sea_ir::Region*>::iterator succ_it = succs->begin();
80 succ_it != succs->end(); ++succ_it) {
81 if (NOT_VISITED == (*succ_it)->GetRPO()) {
82 SeaGraph::ComputeRPO(*succ_it, current_rpo);
83 }
84 }
85 current_region->SetRPO(current_rpo--);
86}
87
88void SeaGraph::ComputeIDominators() {
89 bool changed = true;
90 while (changed) {
91 changed = false;
92 // Entry node has itself as IDOM.
93 std::vector<Region*>::iterator crt_it;
94 std::set<Region*> processedNodes;
95 // Find and mark the entry node(s).
96 for (crt_it = regions_.begin(); crt_it != regions_.end(); ++crt_it) {
97 if ((*crt_it)->GetPredecessors()->size() == 0) {
98 processedNodes.insert(*crt_it);
99 (*crt_it)->SetIDominator(*crt_it);
100 }
101 }
102 for (crt_it = regions_.begin(); crt_it != regions_.end(); ++crt_it) {
103 if ((*crt_it)->GetPredecessors()->size() == 0) {
104 continue;
105 }
106 // NewIDom = first (processed) predecessor of b.
107 Region* new_dom = NULL;
108 std::vector<Region*>* preds = (*crt_it)->GetPredecessors();
109 DCHECK(NULL != preds);
110 Region* root_pred = NULL;
111 for (std::vector<Region*>::iterator pred_it = preds->begin();
112 pred_it != preds->end(); ++pred_it) {
113 if (processedNodes.end() != processedNodes.find((*pred_it))) {
114 root_pred = *pred_it;
115 new_dom = root_pred;
116 break;
117 }
118 }
119 // For all other predecessors p of b, if idom is not set,
120 // then NewIdom = Intersect(p, NewIdom)
121 for (std::vector<Region*>::const_iterator pred_it = preds->begin();
122 pred_it != preds->end(); ++pred_it) {
123 DCHECK(NULL != *pred_it);
124 // if IDOMS[p] != UNDEFINED
125 if ((*pred_it != root_pred) && (*pred_it)->GetIDominator() != NULL) {
126 DCHECK(NULL != new_dom);
127 new_dom = SeaGraph::Intersect(*pred_it, new_dom);
128 }
129 }
130 DCHECK(NULL != *crt_it);
131 if ((*crt_it)->GetIDominator() != new_dom) {
132 (*crt_it)->SetIDominator(new_dom);
133 changed = true;
134 }
135 processedNodes.insert(*crt_it);
136 }
137 }
138
139 // For easily ordering of regions we need edges dominator->dominated.
140 for (std::vector<Region*>::iterator region_it = regions_.begin();
141 region_it != regions_.end(); region_it++) {
142 Region* idom = (*region_it)->GetIDominator();
143 if (idom != *region_it) {
144 idom->AddToIDominatedSet(*region_it);
145 }
146 }
147}
148
149Region* SeaGraph::Intersect(Region* i, Region* j) {
150 Region* finger1 = i;
151 Region* finger2 = j;
152 while (finger1 != finger2) {
153 while (finger1->GetRPO() > finger2->GetRPO()) {
154 DCHECK(NULL != finger1);
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700155 finger1 = finger1->GetIDominator(); // should have: finger1 != NULL
Brian Carlstrom1db91132013-07-12 18:05:20 -0700156 DCHECK(NULL != finger1);
157 }
158 while (finger1->GetRPO() < finger2->GetRPO()) {
159 DCHECK(NULL != finger2);
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700160 finger2 = finger2->GetIDominator(); // should have: finger1 != NULL
Brian Carlstrom1db91132013-07-12 18:05:20 -0700161 DCHECK(NULL != finger2);
162 }
163 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700164 return finger1; // finger1 should be equal to finger2 at this point.
Brian Carlstrom1db91132013-07-12 18:05:20 -0700165}
166
Brian Carlstrom7940e442013-07-12 13:46:57 -0700167void SeaGraph::ComputeDownExposedDefs() {
168 for (std::vector<Region*>::iterator region_it = regions_.begin();
169 region_it != regions_.end(); region_it++) {
170 (*region_it)->ComputeDownExposedDefs();
171 }
172}
173
174void SeaGraph::ComputeReachingDefs() {
175 // Iterate until the reaching definitions set doesn't change anymore.
176 // (See Cooper & Torczon, "Engineering a Compiler", second edition, page 487)
177 bool changed = true;
178 int iteration = 0;
179 while (changed && (iteration < MAX_REACHING_DEF_ITERERATIONS)) {
180 iteration++;
181 changed = false;
182 // TODO: optimize the ordering if this becomes performance bottleneck.
183 for (std::vector<Region*>::iterator regions_it = regions_.begin();
184 regions_it != regions_.end();
185 regions_it++) {
186 changed |= (*regions_it)->UpdateReachingDefs();
187 }
188 }
189 DCHECK(!changed) << "Reaching definitions computation did not reach a fixed point.";
190}
191
192
Brian Carlstrom1db91132013-07-12 18:05:20 -0700193void SeaGraph::BuildMethodSeaGraph(const art::DexFile::CodeItem* code_item,
Dragos Sbirlea0e260a32013-06-21 09:20:34 -0700194 const art::DexFile& dex_file, uint32_t class_def_idx, uint32_t method_idx) {
195 class_def_idx_ = class_def_idx;
196 method_idx_ = method_idx;
197
Brian Carlstrom7940e442013-07-12 13:46:57 -0700198 const uint16_t* code = code_item->insns_;
199 const size_t size_in_code_units = code_item->insns_size_in_code_units_;
Brian Carlstrom1db91132013-07-12 18:05:20 -0700200 // This maps target instruction pointers to their corresponding region objects.
Brian Carlstrom7940e442013-07-12 13:46:57 -0700201 std::map<const uint16_t*, Region*> target_regions;
202 size_t i = 0;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700203 // Pass: Find the start instruction of basic blocks
204 // by locating targets and flow-though instructions of branches.
205 while (i < size_in_code_units) {
206 const art::Instruction* inst = art::Instruction::At(&code[i]);
Brian Carlstrom1db91132013-07-12 18:05:20 -0700207 if (inst->IsBranch() || inst->IsUnconditional()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700208 int32_t offset = inst->GetTargetOffset();
Brian Carlstrom1db91132013-07-12 18:05:20 -0700209 if (target_regions.end() == target_regions.find(&code[i + offset])) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700210 Region* region = GetNewRegion();
Brian Carlstrom1db91132013-07-12 18:05:20 -0700211 target_regions.insert(std::pair<const uint16_t*, Region*>(&code[i + offset], region));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700212 }
Brian Carlstrom1db91132013-07-12 18:05:20 -0700213 if (inst->CanFlowThrough()
214 && (target_regions.end() == target_regions.find(&code[i + inst->SizeInCodeUnits()]))) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700215 Region* region = GetNewRegion();
Brian Carlstrom1db91132013-07-12 18:05:20 -0700216 target_regions.insert(
217 std::pair<const uint16_t*, Region*>(&code[i + inst->SizeInCodeUnits()], region));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700218 }
219 }
220 i += inst->SizeInCodeUnits();
221 }
Dragos Sbirlea0e260a32013-06-21 09:20:34 -0700222
223
224 Region* r = GetNewRegion();
225 // Insert one SignatureNode per function argument,
226 // to serve as placeholder definitions in dataflow analysis.
227 for (unsigned int crt_offset = 0; crt_offset < code_item->ins_size_; crt_offset++) {
228 SignatureNode* parameter_def_node =
229 new sea_ir::SignatureNode(code_item->registers_size_ - 1 - crt_offset);
230 AddParameterNode(parameter_def_node);
231 r->AddChild(parameter_def_node);
232 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700233 // Pass: Assign instructions to region nodes and
234 // assign branches their control flow successors.
235 i = 0;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700236 sea_ir::InstructionNode* last_node = NULL;
237 sea_ir::InstructionNode* node = NULL;
238 while (i < size_in_code_units) {
Dragos Sbirlea0e260a32013-06-21 09:20:34 -0700239 const art::Instruction* inst = art::Instruction::At(&code[i]);
Dragos Sbirleac16c5b42013-07-26 18:08:35 -0700240 std::vector<InstructionNode*> sea_instructions_for_dalvik =
241 sea_ir::InstructionNode::Create(inst);
Dragos Sbirlea0e260a32013-06-21 09:20:34 -0700242 for (std::vector<InstructionNode*>::const_iterator cit = sea_instructions_for_dalvik.begin();
243 sea_instructions_for_dalvik.end() != cit; ++cit) {
244 last_node = node;
245 node = *cit;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700246
Dragos Sbirlea0e260a32013-06-21 09:20:34 -0700247 if (inst->IsBranch() || inst->IsUnconditional()) {
248 int32_t offset = inst->GetTargetOffset();
249 std::map<const uint16_t*, Region*>::iterator it = target_regions.find(&code[i + offset]);
250 DCHECK(it != target_regions.end());
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700251 AddEdge(r, it->second); // Add edge to branch target.
Brian Carlstrom7940e442013-07-12 13:46:57 -0700252 }
Dragos Sbirlea0e260a32013-06-21 09:20:34 -0700253 std::map<const uint16_t*, Region*>::iterator it = target_regions.find(&code[i]);
254 if (target_regions.end() != it) {
255 // Get the already created region because this is a branch target.
256 Region* nextRegion = it->second;
257 if (last_node->GetInstruction()->IsBranch()
258 && last_node->GetInstruction()->CanFlowThrough()) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700259 AddEdge(r, it->second); // Add flow-through edge.
Dragos Sbirlea0e260a32013-06-21 09:20:34 -0700260 }
261 r = nextRegion;
262 }
263 bool definesRegister = (0 != InstructionTools::instruction_attributes_[inst->Opcode()]
264 && (1 << kDA));
265 LOG(INFO)<< inst->GetDexPc(code) << "*** " << inst->DumpString(&dex_file)
266 << " region:" <<r->StringId() << "Definition?" << definesRegister << std::endl;
267 r->AddChild(node);
268 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700269 i += inst->SizeInCodeUnits();
270 }
Brian Carlstrom1db91132013-07-12 18:05:20 -0700271}
Brian Carlstrom7940e442013-07-12 13:46:57 -0700272
Brian Carlstrom1db91132013-07-12 18:05:20 -0700273void SeaGraph::ComputeRPO() {
274 int rpo_id = regions_.size() - 1;
275 for (std::vector<Region*>::const_iterator crt_it = regions_.begin(); crt_it != regions_.end();
276 ++crt_it) {
277 if ((*crt_it)->GetPredecessors()->size() == 0) {
278 ComputeRPO(*crt_it, rpo_id);
279 }
280 }
281}
282
283// Performs the renaming phase in traditional SSA transformations.
284// See: Cooper & Torczon, "Engineering a Compiler", second edition, page 505.)
285void SeaGraph::RenameAsSSA() {
286 utils::ScopedHashtable<int, InstructionNode*> scoped_table;
287 scoped_table.OpenScope();
288 for (std::vector<Region*>::iterator region_it = regions_.begin(); region_it != regions_.end();
289 region_it++) {
290 if ((*region_it)->GetIDominator() == *region_it) {
291 RenameAsSSA(*region_it, &scoped_table);
292 }
293 }
Brian Carlstrom1db91132013-07-12 18:05:20 -0700294 scoped_table.CloseScope();
295}
296
297void SeaGraph::ConvertToSSA() {
298 // Pass: find global names.
299 // The map @block maps registers to the blocks in which they are defined.
300 std::map<int, std::set<Region*> > blocks;
301 // The set @globals records registers whose use
302 // is in a different block than the corresponding definition.
303 std::set<int> globals;
304 for (std::vector<Region*>::iterator region_it = regions_.begin(); region_it != regions_.end();
305 region_it++) {
306 std::set<int> var_kill;
307 std::vector<InstructionNode*>* instructions = (*region_it)->GetInstructions();
308 for (std::vector<InstructionNode*>::iterator inst_it = instructions->begin();
309 inst_it != instructions->end(); inst_it++) {
310 std::vector<int> used_regs = (*inst_it)->GetUses();
311 for (std::size_t i = 0; i < used_regs.size(); i++) {
312 int used_reg = used_regs[i];
313 if (var_kill.find(used_reg) == var_kill.end()) {
314 globals.insert(used_reg);
315 }
316 }
317 const int reg_def = (*inst_it)->GetResultRegister();
318 if (reg_def != NO_REGISTER) {
319 var_kill.insert(reg_def);
320 }
321
322 blocks.insert(std::pair<int, std::set<Region*> >(reg_def, std::set<Region*>()));
323 std::set<Region*>* reg_def_blocks = &(blocks.find(reg_def)->second);
324 reg_def_blocks->insert(*region_it);
325 }
326 }
327
328 // Pass: Actually add phi-nodes to regions.
329 for (std::set<int>::const_iterator globals_it = globals.begin();
330 globals_it != globals.end(); globals_it++) {
331 int global = *globals_it;
332 // Copy the set, because we will modify the worklist as we go.
333 std::set<Region*> worklist((*(blocks.find(global))).second);
Dragos Sbirleac16c5b42013-07-26 18:08:35 -0700334 for (std::set<Region*>::const_iterator b_it = worklist.begin();
335 b_it != worklist.end(); b_it++) {
Brian Carlstrom1db91132013-07-12 18:05:20 -0700336 std::set<Region*>* df = (*b_it)->GetDominanceFrontier();
337 for (std::set<Region*>::const_iterator df_it = df->begin(); df_it != df->end(); df_it++) {
338 if ((*df_it)->InsertPhiFor(global)) {
339 // Check that the dominance frontier element is in the worklist already
340 // because we only want to break if the element is actually not there yet.
341 if (worklist.find(*df_it) == worklist.end()) {
342 worklist.insert(*df_it);
343 b_it = worklist.begin();
344 break;
345 }
346 }
347 }
348 }
349 }
350 // Pass: Build edges to the definition corresponding to each use.
351 // (This corresponds to the renaming phase in traditional SSA transformations.
352 // See: Cooper & Torczon, "Engineering a Compiler", second edition, page 505.)
353 RenameAsSSA();
354}
355
356void SeaGraph::RenameAsSSA(Region* crt_region,
357 utils::ScopedHashtable<int, InstructionNode*>* scoped_table) {
358 scoped_table->OpenScope();
359 // Rename phi nodes defined in the current region.
360 std::vector<PhiInstructionNode*>* phis = crt_region->GetPhiNodes();
361 for (std::vector<PhiInstructionNode*>::iterator phi_it = phis->begin();
362 phi_it != phis->end(); phi_it++) {
363 int reg_no = (*phi_it)->GetRegisterNumber();
364 scoped_table->Add(reg_no, (*phi_it));
365 }
366 // Rename operands of instructions from the current region.
367 std::vector<InstructionNode*>* instructions = crt_region->GetInstructions();
368 for (std::vector<InstructionNode*>::const_iterator instructions_it = instructions->begin();
369 instructions_it != instructions->end(); instructions_it++) {
370 InstructionNode* current_instruction = (*instructions_it);
371 // Rename uses.
372 std::vector<int> used_regs = current_instruction->GetUses();
373 for (std::vector<int>::const_iterator reg_it = used_regs.begin();
374 reg_it != used_regs.end(); reg_it++) {
375 int current_used_reg = (*reg_it);
376 InstructionNode* definition = scoped_table->Lookup(current_used_reg);
377 current_instruction->RenameToSSA(current_used_reg, definition);
378 }
379 // Update scope table with latest definitions.
380 std::vector<int> def_regs = current_instruction->GetDefinitions();
381 for (std::vector<int>::const_iterator reg_it = def_regs.begin();
382 reg_it != def_regs.end(); reg_it++) {
383 int current_defined_reg = (*reg_it);
384 scoped_table->Add(current_defined_reg, current_instruction);
385 }
386 }
387 // Fill in uses of phi functions in CFG successor regions.
388 const std::vector<Region*>* successors = crt_region->GetSuccessors();
389 for (std::vector<Region*>::const_iterator successors_it = successors->begin();
390 successors_it != successors->end(); successors_it++) {
391 Region* successor = (*successors_it);
392 successor->SetPhiDefinitionsForUses(scoped_table, crt_region);
393 }
394
395 // Rename all successors in the dominators tree.
396 const std::set<Region*>* dominated_nodes = crt_region->GetIDominatedSet();
397 for (std::set<Region*>::const_iterator dominated_nodes_it = dominated_nodes->begin();
398 dominated_nodes_it != dominated_nodes->end(); dominated_nodes_it++) {
399 Region* dominated_node = (*dominated_nodes_it);
400 RenameAsSSA(dominated_node, scoped_table);
401 }
402 scoped_table->CloseScope();
403}
404
Dragos Sbirlea0e260a32013-06-21 09:20:34 -0700405void SeaGraph::GenerateLLVM() {
406 // Pass: Generate LLVM IR.
407 CodeGenPrepassVisitor code_gen_prepass_visitor;
408 std::cout << "Generating code..." << std::endl;
409 std::cout << "=== PRE VISITING ===" << std::endl;
410 Accept(&code_gen_prepass_visitor);
411 CodeGenVisitor code_gen_visitor(code_gen_prepass_visitor.GetData());
412 std::cout << "=== VISITING ===" << std::endl;
413 Accept(&code_gen_visitor);
414 std::cout << "=== POST VISITING ===" << std::endl;
415 CodeGenPostpassVisitor code_gen_postpass_visitor(code_gen_visitor.GetData());
416 Accept(&code_gen_postpass_visitor);
417 code_gen_postpass_visitor.Write(std::string("my_file.llvm"));
418}
419
Brian Carlstrom1db91132013-07-12 18:05:20 -0700420void SeaGraph::CompileMethod(const art::DexFile::CodeItem* code_item,
421 uint32_t class_def_idx, uint32_t method_idx, const art::DexFile& dex_file) {
422 // Two passes: Builds the intermediate structure (non-SSA) of the sea-ir for the function.
Dragos Sbirlea0e260a32013-06-21 09:20:34 -0700423 BuildMethodSeaGraph(code_item, dex_file, class_def_idx, method_idx);
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700424 // Pass: Compute reverse post-order of regions.
Brian Carlstrom1db91132013-07-12 18:05:20 -0700425 ComputeRPO();
426 // Multiple passes: compute immediate dominators.
427 ComputeIDominators();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700428 // Pass: compute downward-exposed definitions.
429 ComputeDownExposedDefs();
Brian Carlstrom1db91132013-07-12 18:05:20 -0700430 // Multiple Passes (iterative fixed-point algorithm): Compute reaching definitions
Brian Carlstrom7940e442013-07-12 13:46:57 -0700431 ComputeReachingDefs();
Brian Carlstrom1db91132013-07-12 18:05:20 -0700432 // Pass (O(nlogN)): Compute the dominance frontier for region nodes.
433 ComputeDominanceFrontier();
434 // Two Passes: Phi node insertion.
435 ConvertToSSA();
Dragos Sbirlea0e260a32013-06-21 09:20:34 -0700436 // Pass: Generate LLVM IR.
437 GenerateLLVM();
Brian Carlstrom1db91132013-07-12 18:05:20 -0700438}
439
Brian Carlstrom1db91132013-07-12 18:05:20 -0700440void SeaGraph::ComputeDominanceFrontier() {
441 for (std::vector<Region*>::iterator region_it = regions_.begin();
442 region_it != regions_.end(); region_it++) {
443 std::vector<Region*>* preds = (*region_it)->GetPredecessors();
444 if (preds->size() > 1) {
445 for (std::vector<Region*>::iterator pred_it = preds->begin();
446 pred_it != preds->end(); pred_it++) {
447 Region* runner = *pred_it;
448 while (runner != (*region_it)->GetIDominator()) {
449 runner->AddToDominanceFrontier(*region_it);
450 runner = runner->GetIDominator();
451 }
452 }
453 }
454 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700455}
456
457Region* SeaGraph::GetNewRegion() {
458 Region* new_region = new Region();
459 AddRegion(new_region);
460 return new_region;
461}
462
463void SeaGraph::AddRegion(Region* r) {
464 DCHECK(r) << "Tried to add NULL region to SEA graph.";
465 regions_.push_back(r);
466}
467
Dragos Sbirlea0e260a32013-06-21 09:20:34 -0700468/*
Brian Carlstrom1db91132013-07-12 18:05:20 -0700469void SeaNode::AddSuccessor(Region* successor) {
470 DCHECK(successor) << "Tried to add NULL successor to SEA node.";
471 successors_.push_back(successor);
472 return;
473}
474
475void SeaNode::AddPredecessor(Region* predecessor) {
476 DCHECK(predecessor) << "Tried to add NULL predecessor to SEA node.";
477 predecessors_.push_back(predecessor);
478}
Dragos Sbirlea0e260a32013-06-21 09:20:34 -0700479*/
Brian Carlstrom7940e442013-07-12 13:46:57 -0700480void Region::AddChild(sea_ir::InstructionNode* instruction) {
481 DCHECK(instruction) << "Tried to add NULL instruction to region node.";
482 instructions_.push_back(instruction);
Dragos Sbirlea0e260a32013-06-21 09:20:34 -0700483 instruction->SetRegion(this);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700484}
485
486SeaNode* Region::GetLastChild() const {
487 if (instructions_.size() > 0) {
488 return instructions_.back();
489 }
490 return NULL;
491}
492
Dragos Sbirlea6bee4452013-07-26 12:05:03 -0700493void Region::ToDot(std::string& result, const art::DexFile& dex_file) const {
494 result += "\n// Region: \nsubgraph " + StringId() + " { label=\"region " + StringId() + "(rpo=";
Dragos Sbirleadb063062013-07-23 16:29:09 -0700495 result += art::StringPrintf("%d", rpo_number_);
Brian Carlstrom1db91132013-07-12 18:05:20 -0700496 if (NULL != GetIDominator()) {
497 result += " dom=" + GetIDominator()->StringId();
498 }
Dragos Sbirlea6bee4452013-07-26 12:05:03 -0700499 result += ")\";\n";
500
501 for (std::vector<PhiInstructionNode*>::const_iterator cit = phi_instructions_.begin();
502 cit != phi_instructions_.end(); cit++) {
503 result += (*cit)->StringId() +";\n";
504 }
505
506 for (std::vector<InstructionNode*>::const_iterator cit = instructions_.begin();
507 cit != instructions_.end(); cit++) {
508 result += (*cit)->StringId() +";\n";
Dragos Sbirlea6bee4452013-07-26 12:05:03 -0700509 }
510
511 result += "} // End Region.\n";
Brian Carlstrom1db91132013-07-12 18:05:20 -0700512
513 // Save phi-nodes.
514 for (std::vector<PhiInstructionNode*>::const_iterator cit = phi_instructions_.begin();
515 cit != phi_instructions_.end(); cit++) {
Dragos Sbirlea6bee4452013-07-26 12:05:03 -0700516 (*cit)->ToDot(result, dex_file);
Brian Carlstrom1db91132013-07-12 18:05:20 -0700517 }
518
519 // Save instruction nodes.
Brian Carlstrom7940e442013-07-12 13:46:57 -0700520 for (std::vector<InstructionNode*>::const_iterator cit = instructions_.begin();
521 cit != instructions_.end(); cit++) {
Dragos Sbirlea6bee4452013-07-26 12:05:03 -0700522 (*cit)->ToDot(result, dex_file);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700523 }
524
525 for (std::vector<Region*>::const_iterator cit = successors_.begin(); cit != successors_.end();
526 cit++) {
527 DCHECK(NULL != *cit) << "Null successor found for SeaNode" << GetLastChild()->StringId() << ".";
Dragos Sbirlea6bee4452013-07-26 12:05:03 -0700528 result += GetLastChild()->StringId() + " -> " + (*cit)->GetLastChild()->StringId() +
529 "[lhead=" + (*cit)->StringId() + ", " + "ltail=" + StringId() + "];\n\n";
Brian Carlstrom7940e442013-07-12 13:46:57 -0700530 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700531}
532
Brian Carlstrom7940e442013-07-12 13:46:57 -0700533void Region::ComputeDownExposedDefs() {
534 for (std::vector<InstructionNode*>::const_iterator inst_it = instructions_.begin();
535 inst_it != instructions_.end(); inst_it++) {
536 int reg_no = (*inst_it)->GetResultRegister();
537 std::map<int, InstructionNode*>::iterator res = de_defs_.find(reg_no);
538 if ((reg_no != NO_REGISTER) && (res == de_defs_.end())) {
539 de_defs_.insert(std::pair<int, InstructionNode*>(reg_no, *inst_it));
540 } else {
541 res->second = *inst_it;
542 }
543 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700544 for (std::map<int, sea_ir::InstructionNode*>::const_iterator cit = de_defs_.begin();
545 cit != de_defs_.end(); cit++) {
546 (*cit).second->MarkAsDEDef();
547 }
548}
549
Brian Carlstrom7940e442013-07-12 13:46:57 -0700550const std::map<int, sea_ir::InstructionNode*>* Region::GetDownExposedDefs() const {
551 return &de_defs_;
552}
553
554std::map<int, std::set<sea_ir::InstructionNode*>* >* Region::GetReachingDefs() {
555 return &reaching_defs_;
556}
557
558bool Region::UpdateReachingDefs() {
559 std::map<int, std::set<sea_ir::InstructionNode*>* > new_reaching;
560 for (std::vector<Region*>::const_iterator pred_it = predecessors_.begin();
561 pred_it != predecessors_.end(); pred_it++) {
562 // The reaching_defs variable will contain reaching defs __for current predecessor only__
563 std::map<int, std::set<sea_ir::InstructionNode*>* > reaching_defs;
Dragos Sbirleac16c5b42013-07-26 18:08:35 -0700564 std::map<int, std::set<sea_ir::InstructionNode*>* >* pred_reaching =
565 (*pred_it)->GetReachingDefs();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700566 const std::map<int, InstructionNode*>* de_defs = (*pred_it)->GetDownExposedDefs();
567
568 // The definitions from the reaching set of the predecessor
569 // may be shadowed by downward exposed definitions from the predecessor,
570 // otherwise the defs from the reaching set are still good.
571 for (std::map<int, InstructionNode*>::const_iterator de_def = de_defs->begin();
572 de_def != de_defs->end(); de_def++) {
573 std::set<InstructionNode*>* solo_def;
574 solo_def = new std::set<InstructionNode*>();
575 solo_def->insert(de_def->second);
576 reaching_defs.insert(
577 std::pair<int const, std::set<InstructionNode*>*>(de_def->first, solo_def));
578 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700579 reaching_defs.insert(pred_reaching->begin(), pred_reaching->end());
580
581 // Now we combine the reaching map coming from the current predecessor (reaching_defs)
582 // with the accumulated set from all predecessors so far (from new_reaching).
Dragos Sbirleac16c5b42013-07-26 18:08:35 -0700583 std::map<int, std::set<sea_ir::InstructionNode*>*>::iterator reaching_it =
584 reaching_defs.begin();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700585 for (; reaching_it != reaching_defs.end(); reaching_it++) {
586 std::map<int, std::set<sea_ir::InstructionNode*>*>::iterator crt_entry =
587 new_reaching.find(reaching_it->first);
588 if (new_reaching.end() != crt_entry) {
589 crt_entry->second->insert(reaching_it->second->begin(), reaching_it->second->end());
590 } else {
591 new_reaching.insert(
592 std::pair<int, std::set<sea_ir::InstructionNode*>*>(
593 reaching_it->first,
594 reaching_it->second) );
595 }
596 }
597 }
598 bool changed = false;
599 // Because the sets are monotonically increasing,
600 // we can compare sizes instead of using set comparison.
601 // TODO: Find formal proof.
602 int old_size = 0;
603 if (-1 == reaching_defs_size_) {
Dragos Sbirleac16c5b42013-07-26 18:08:35 -0700604 std::map<int, std::set<sea_ir::InstructionNode*>*>::iterator reaching_it =
605 reaching_defs_.begin();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700606 for (; reaching_it != reaching_defs_.end(); reaching_it++) {
607 old_size += (*reaching_it).second->size();
608 }
609 } else {
610 old_size = reaching_defs_size_;
611 }
612 int new_size = 0;
613 std::map<int, std::set<sea_ir::InstructionNode*>*>::iterator reaching_it = new_reaching.begin();
614 for (; reaching_it != new_reaching.end(); reaching_it++) {
615 new_size += (*reaching_it).second->size();
616 }
617 if (old_size != new_size) {
618 changed = true;
619 }
620 if (changed) {
621 reaching_defs_ = new_reaching;
622 reaching_defs_size_ = new_size;
623 }
624 return changed;
625}
626
Brian Carlstrom1db91132013-07-12 18:05:20 -0700627bool Region::InsertPhiFor(int reg_no) {
628 if (!ContainsPhiFor(reg_no)) {
629 phi_set_.insert(reg_no);
630 PhiInstructionNode* new_phi = new PhiInstructionNode(reg_no);
Dragos Sbirlea0e260a32013-06-21 09:20:34 -0700631 new_phi->SetRegion(this);
Brian Carlstrom1db91132013-07-12 18:05:20 -0700632 phi_instructions_.push_back(new_phi);
633 return true;
634 }
635 return false;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700636}
637
Brian Carlstrom1db91132013-07-12 18:05:20 -0700638void Region::SetPhiDefinitionsForUses(
639 const utils::ScopedHashtable<int, InstructionNode*>* scoped_table, Region* predecessor) {
640 int predecessor_id = -1;
641 for (unsigned int crt_pred_id = 0; crt_pred_id < predecessors_.size(); crt_pred_id++) {
642 if (predecessors_.at(crt_pred_id) == predecessor) {
643 predecessor_id = crt_pred_id;
644 }
645 }
646 DCHECK_NE(-1, predecessor_id);
647 for (std::vector<PhiInstructionNode*>::iterator phi_it = phi_instructions_.begin();
648 phi_it != phi_instructions_.end(); phi_it++) {
649 PhiInstructionNode* phi = (*phi_it);
650 int reg_no = phi->GetRegisterNumber();
651 InstructionNode* definition = scoped_table->Lookup(reg_no);
652 phi->RenameToSSA(reg_no, definition, predecessor_id);
653 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700654}
655
Dragos Sbirlea0e260a32013-06-21 09:20:34 -0700656std::vector<InstructionNode*> InstructionNode::Create(const art::Instruction* in) {
657 std::vector<InstructionNode*> sea_instructions;
658 switch (in->Opcode()) {
659 case art::Instruction::CONST_4:
660 sea_instructions.push_back(new ConstInstructionNode(in));
661 break;
662 case art::Instruction::RETURN:
663 sea_instructions.push_back(new ReturnInstructionNode(in));
664 break;
665 case art::Instruction::IF_NE:
666 sea_instructions.push_back(new IfNeInstructionNode(in));
667 break;
668 case art::Instruction::ADD_INT_LIT8:
669 sea_instructions.push_back(new UnnamedConstInstructionNode(in, in->VRegB_22b()));
670 sea_instructions.push_back(new AddIntLitInstructionNode(in));
671 break;
672 case art::Instruction::MOVE_RESULT:
673 sea_instructions.push_back(new MoveResultInstructionNode(in));
674 break;
675 case art::Instruction::INVOKE_STATIC:
676 sea_instructions.push_back(new InvokeStaticInstructionNode(in));
677 break;
678 case art::Instruction::ADD_INT:
679 sea_instructions.push_back(new AddIntInstructionNode(in));
680 break;
681 case art::Instruction::GOTO:
682 sea_instructions.push_back(new GotoInstructionNode(in));
683 break;
684 case art::Instruction::IF_EQZ:
685 sea_instructions.push_back(new IfEqzInstructionNode(in));
686 break;
687 default:
688 // Default, generic IR instruction node; default case should never be reached
689 // when support for all instructions ahs been added.
690 sea_instructions.push_back(new InstructionNode(in));
691 }
692 return sea_instructions;
693}
694
Dragos Sbirleae2245322013-07-29 14:16:14 -0700695void InstructionNode::ToDotSSAEdges(std::string& result) const {
696 // SSA definitions:
697 for (std::map<int, InstructionNode*>::const_iterator def_it = definition_edges_.begin();
698 def_it != definition_edges_.end(); def_it++) {
699 if (NULL != def_it->second) {
700 result += def_it->second->StringId() + " -> " + StringId() + "[color=gray,label=\"";
701 result += art::StringPrintf("vR = %d", def_it->first);
702 result += "\"] ; // ssa edge\n";
703 }
704 }
705
706 // SSA used-by:
707 if (DotConversion::SaveUseEdges()) {
708 for (std::vector<InstructionNode*>::const_iterator cit = used_in_.begin(); cit != used_in_.end();
709 cit++) {
710 result += (*cit)->StringId() + " -> " + StringId() + "[color=gray,label=\"";
711 result += "\"] ; // SSA used-by edge\n";
712 }
713 }
714}
715
Dragos Sbirlea6bee4452013-07-26 12:05:03 -0700716void InstructionNode::ToDot(std::string& result, const art::DexFile& dex_file) const {
Dragos Sbirlea0e260a32013-06-21 09:20:34 -0700717 result += "// Instruction ("+StringId()+"): \n" + StringId() +
Dragos Sbirlea6bee4452013-07-26 12:05:03 -0700718 " [label=\"" + instruction_->DumpString(&dex_file) + "\"";
Brian Carlstrom1db91132013-07-12 18:05:20 -0700719 if (de_def_) {
720 result += "style=bold";
721 }
722 result += "];\n";
Dragos Sbirleae2245322013-07-29 14:16:14 -0700723
724 ToDotSSAEdges(result);
Brian Carlstrom1db91132013-07-12 18:05:20 -0700725}
726
727void InstructionNode::MarkAsDEDef() {
728 de_def_ = true;
729}
730
731int InstructionNode::GetResultRegister() const {
Dragos Sbirlea0e260a32013-06-21 09:20:34 -0700732 if (instruction_->HasVRegA() && InstructionTools::IsDefinition(instruction_)) {
Brian Carlstrom1db91132013-07-12 18:05:20 -0700733 return instruction_->VRegA();
734 }
735 return NO_REGISTER;
736}
737
738std::vector<int> InstructionNode::GetDefinitions() const {
739 // TODO: Extend this to handle instructions defining more than one register (if any)
740 // The return value should be changed to pointer to field then; for now it is an object
741 // so that we avoid possible memory leaks from allocating objects dynamically.
742 std::vector<int> definitions;
743 int result = GetResultRegister();
744 if (NO_REGISTER != result) {
745 definitions.push_back(result);
746 }
747 return definitions;
748}
749
750std::vector<int> InstructionNode::GetUses() {
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700751 std::vector<int> uses; // Using vector<> instead of set<> because order matters.
Brian Carlstrom1db91132013-07-12 18:05:20 -0700752 if (!InstructionTools::IsDefinition(instruction_) && (instruction_->HasVRegA())) {
753 int vA = instruction_->VRegA();
754 uses.push_back(vA);
755 }
756 if (instruction_->HasVRegB()) {
757 int vB = instruction_->VRegB();
758 uses.push_back(vB);
759 }
760 if (instruction_->HasVRegC()) {
761 int vC = instruction_->VRegC();
762 uses.push_back(vC);
763 }
Brian Carlstrom1db91132013-07-12 18:05:20 -0700764 return uses;
765}
766
Dragos Sbirlea6bee4452013-07-26 12:05:03 -0700767void PhiInstructionNode::ToDot(std::string& result, const art::DexFile& dex_file) const {
Brian Carlstrom1db91132013-07-12 18:05:20 -0700768 result += "// PhiInstruction: \n" + StringId() +
769 " [label=\"" + "PHI(";
Dragos Sbirlea81f79a62013-07-23 14:31:47 -0700770 result += art::StringPrintf("%d", register_no_);
Brian Carlstrom1db91132013-07-12 18:05:20 -0700771 result += ")\"";
772 result += "];\n";
Dragos Sbirleae2245322013-07-29 14:16:14 -0700773 ToDotSSAEdges(result);
Brian Carlstrom1db91132013-07-12 18:05:20 -0700774}
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700775} // namespace sea_ir