blob: 347fcffc42c6e5e3a0b019d1b2222322937033af [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 */
16
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
30SeaGraph SeaGraph::graph_;
31int SeaNode::current_max_node_id_ = 0;
32
Dragos Sbirlea0e260a32013-06-21 09:20:34 -070033void IRVisitor::Traverse(Region* region) {
34 std::vector<PhiInstructionNode*>* phis = region->GetPhiNodes();
35 for (std::vector<PhiInstructionNode*>::const_iterator cit = phis->begin();
36 cit != phis->end(); cit++) {
37 (*cit)->Accept(this);
38 }
39
40 std::vector<InstructionNode*>* instructions = region->GetInstructions();
41 for (std::vector<InstructionNode*>::const_iterator cit = instructions->begin();
42 cit != instructions->end(); cit++) {
43 (*cit)->Accept(this);
44 }
45}
46
47void IRVisitor::Traverse(SeaGraph* graph) {
48 for (std::vector<Region*>::const_iterator cit = ordered_regions_.begin();
49 cit != ordered_regions_.end(); cit++ ) {
50 (*cit)->Accept(this);
51 }
52}
Brian Carlstrom7940e442013-07-12 13:46:57 -070053
54SeaGraph* SeaGraph::GetCurrentGraph() {
55 return &sea_ir::SeaGraph::graph_;
56}
57
58void SeaGraph::DumpSea(std::string filename) const {
Brian Carlstrom1db91132013-07-12 18:05:20 -070059 LOG(INFO) << "Starting to write SEA string to file.";
Brian Carlstrom7940e442013-07-12 13:46:57 -070060 std::string result;
61 result += "digraph seaOfNodes {\n";
62 for (std::vector<Region*>::const_iterator cit = regions_.begin(); cit != regions_.end(); cit++) {
63 (*cit)->ToDot(result);
64 }
65 result += "}\n";
66 art::File* file = art::OS::OpenFile(filename.c_str(), true, true);
67 art::FileOutputStream fos(file);
68 fos.WriteFully(result.c_str(), result.size());
69 LOG(INFO) << "Written SEA string to file.";
70}
71
72void SeaGraph::AddEdge(Region* src, Region* dst) const {
73 src->AddSuccessor(dst);
74 dst->AddPredecessor(src);
75}
76
Brian Carlstrom1db91132013-07-12 18:05:20 -070077void SeaGraph::ComputeRPO(Region* current_region, int& current_rpo) {
78 current_region->SetRPO(VISITING);
79 std::vector<sea_ir::Region*>* succs = current_region->GetSuccessors();
80 for (std::vector<sea_ir::Region*>::iterator succ_it = succs->begin();
81 succ_it != succs->end(); ++succ_it) {
82 if (NOT_VISITED == (*succ_it)->GetRPO()) {
83 SeaGraph::ComputeRPO(*succ_it, current_rpo);
84 }
85 }
86 current_region->SetRPO(current_rpo--);
87}
88
89void SeaGraph::ComputeIDominators() {
90 bool changed = true;
91 while (changed) {
92 changed = false;
93 // Entry node has itself as IDOM.
94 std::vector<Region*>::iterator crt_it;
95 std::set<Region*> processedNodes;
96 // Find and mark the entry node(s).
97 for (crt_it = regions_.begin(); crt_it != regions_.end(); ++crt_it) {
98 if ((*crt_it)->GetPredecessors()->size() == 0) {
99 processedNodes.insert(*crt_it);
100 (*crt_it)->SetIDominator(*crt_it);
101 }
102 }
103 for (crt_it = regions_.begin(); crt_it != regions_.end(); ++crt_it) {
104 if ((*crt_it)->GetPredecessors()->size() == 0) {
105 continue;
106 }
107 // NewIDom = first (processed) predecessor of b.
108 Region* new_dom = NULL;
109 std::vector<Region*>* preds = (*crt_it)->GetPredecessors();
110 DCHECK(NULL != preds);
111 Region* root_pred = NULL;
112 for (std::vector<Region*>::iterator pred_it = preds->begin();
113 pred_it != preds->end(); ++pred_it) {
114 if (processedNodes.end() != processedNodes.find((*pred_it))) {
115 root_pred = *pred_it;
116 new_dom = root_pred;
117 break;
118 }
119 }
120 // For all other predecessors p of b, if idom is not set,
121 // then NewIdom = Intersect(p, NewIdom)
122 for (std::vector<Region*>::const_iterator pred_it = preds->begin();
123 pred_it != preds->end(); ++pred_it) {
124 DCHECK(NULL != *pred_it);
125 // if IDOMS[p] != UNDEFINED
126 if ((*pred_it != root_pred) && (*pred_it)->GetIDominator() != NULL) {
127 DCHECK(NULL != new_dom);
128 new_dom = SeaGraph::Intersect(*pred_it, new_dom);
129 }
130 }
131 DCHECK(NULL != *crt_it);
132 if ((*crt_it)->GetIDominator() != new_dom) {
133 (*crt_it)->SetIDominator(new_dom);
134 changed = true;
135 }
136 processedNodes.insert(*crt_it);
137 }
138 }
139
140 // For easily ordering of regions we need edges dominator->dominated.
141 for (std::vector<Region*>::iterator region_it = regions_.begin();
142 region_it != regions_.end(); region_it++) {
143 Region* idom = (*region_it)->GetIDominator();
144 if (idom != *region_it) {
145 idom->AddToIDominatedSet(*region_it);
146 }
147 }
148}
149
150Region* SeaGraph::Intersect(Region* i, Region* j) {
151 Region* finger1 = i;
152 Region* finger2 = j;
153 while (finger1 != finger2) {
154 while (finger1->GetRPO() > finger2->GetRPO()) {
155 DCHECK(NULL != finger1);
156 finger1 = finger1->GetIDominator(); // should have: finger1 != NULL
157 DCHECK(NULL != finger1);
158 }
159 while (finger1->GetRPO() < finger2->GetRPO()) {
160 DCHECK(NULL != finger2);
161 finger2 = finger2->GetIDominator(); // should have: finger1 != NULL
162 DCHECK(NULL != finger2);
163 }
164 }
165 return finger1; // finger1 should be equal to finger2 at this point.
166}
167
Brian Carlstrom7940e442013-07-12 13:46:57 -0700168void SeaGraph::ComputeDownExposedDefs() {
169 for (std::vector<Region*>::iterator region_it = regions_.begin();
170 region_it != regions_.end(); region_it++) {
171 (*region_it)->ComputeDownExposedDefs();
172 }
173}
174
175void SeaGraph::ComputeReachingDefs() {
176 // Iterate until the reaching definitions set doesn't change anymore.
177 // (See Cooper & Torczon, "Engineering a Compiler", second edition, page 487)
178 bool changed = true;
179 int iteration = 0;
180 while (changed && (iteration < MAX_REACHING_DEF_ITERERATIONS)) {
181 iteration++;
182 changed = false;
183 // TODO: optimize the ordering if this becomes performance bottleneck.
184 for (std::vector<Region*>::iterator regions_it = regions_.begin();
185 regions_it != regions_.end();
186 regions_it++) {
187 changed |= (*regions_it)->UpdateReachingDefs();
188 }
189 }
190 DCHECK(!changed) << "Reaching definitions computation did not reach a fixed point.";
191}
192
193
Brian Carlstrom1db91132013-07-12 18:05:20 -0700194void SeaGraph::BuildMethodSeaGraph(const art::DexFile::CodeItem* code_item,
Dragos Sbirlea0e260a32013-06-21 09:20:34 -0700195 const art::DexFile& dex_file, uint32_t class_def_idx, uint32_t method_idx) {
196 class_def_idx_ = class_def_idx;
197 method_idx_ = method_idx;
198
Brian Carlstrom7940e442013-07-12 13:46:57 -0700199 const uint16_t* code = code_item->insns_;
200 const size_t size_in_code_units = code_item->insns_size_in_code_units_;
Brian Carlstrom1db91132013-07-12 18:05:20 -0700201 // This maps target instruction pointers to their corresponding region objects.
Brian Carlstrom7940e442013-07-12 13:46:57 -0700202 std::map<const uint16_t*, Region*> target_regions;
203 size_t i = 0;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700204 // Pass: Find the start instruction of basic blocks
205 // by locating targets and flow-though instructions of branches.
206 while (i < size_in_code_units) {
207 const art::Instruction* inst = art::Instruction::At(&code[i]);
Brian Carlstrom1db91132013-07-12 18:05:20 -0700208 if (inst->IsBranch() || inst->IsUnconditional()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700209 int32_t offset = inst->GetTargetOffset();
Brian Carlstrom1db91132013-07-12 18:05:20 -0700210 if (target_regions.end() == target_regions.find(&code[i + offset])) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700211 Region* region = GetNewRegion();
Brian Carlstrom1db91132013-07-12 18:05:20 -0700212 target_regions.insert(std::pair<const uint16_t*, Region*>(&code[i + offset], region));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700213 }
Brian Carlstrom1db91132013-07-12 18:05:20 -0700214 if (inst->CanFlowThrough()
215 && (target_regions.end() == target_regions.find(&code[i + inst->SizeInCodeUnits()]))) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700216 Region* region = GetNewRegion();
Brian Carlstrom1db91132013-07-12 18:05:20 -0700217 target_regions.insert(
218 std::pair<const uint16_t*, Region*>(&code[i + inst->SizeInCodeUnits()], region));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700219 }
220 }
221 i += inst->SizeInCodeUnits();
222 }
Dragos Sbirlea0e260a32013-06-21 09:20:34 -0700223
224
225 Region* r = GetNewRegion();
226 // Insert one SignatureNode per function argument,
227 // to serve as placeholder definitions in dataflow analysis.
228 for (unsigned int crt_offset = 0; crt_offset < code_item->ins_size_; crt_offset++) {
229 SignatureNode* parameter_def_node =
230 new sea_ir::SignatureNode(code_item->registers_size_ - 1 - crt_offset);
231 AddParameterNode(parameter_def_node);
232 r->AddChild(parameter_def_node);
233 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700234 // Pass: Assign instructions to region nodes and
235 // assign branches their control flow successors.
236 i = 0;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700237 sea_ir::InstructionNode* last_node = NULL;
238 sea_ir::InstructionNode* node = NULL;
239 while (i < size_in_code_units) {
Dragos Sbirlea0e260a32013-06-21 09:20:34 -0700240 const art::Instruction* inst = art::Instruction::At(&code[i]);
241 std::vector<InstructionNode*> sea_instructions_for_dalvik = sea_ir::InstructionNode::Create(inst);
242 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());
251 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
254 std::map<const uint16_t*, Region*>::iterator it = target_regions.find(&code[i]);
255 if (target_regions.end() != it) {
256 // Get the already created region because this is a branch target.
257 Region* nextRegion = it->second;
258 if (last_node->GetInstruction()->IsBranch()
259 && last_node->GetInstruction()->CanFlowThrough()) {
260 AddEdge(r, it->second); // Add flow-through edge.
261 }
262 r = nextRegion;
263 }
264 bool definesRegister = (0 != InstructionTools::instruction_attributes_[inst->Opcode()]
265 && (1 << kDA));
266 LOG(INFO)<< inst->GetDexPc(code) << "*** " << inst->DumpString(&dex_file)
267 << " region:" <<r->StringId() << "Definition?" << definesRegister << std::endl;
268 r->AddChild(node);
269 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700270 i += inst->SizeInCodeUnits();
271 }
Brian Carlstrom1db91132013-07-12 18:05:20 -0700272}
Brian Carlstrom7940e442013-07-12 13:46:57 -0700273
Brian Carlstrom1db91132013-07-12 18:05:20 -0700274void SeaGraph::ComputeRPO() {
275 int rpo_id = regions_.size() - 1;
276 for (std::vector<Region*>::const_iterator crt_it = regions_.begin(); crt_it != regions_.end();
277 ++crt_it) {
278 if ((*crt_it)->GetPredecessors()->size() == 0) {
279 ComputeRPO(*crt_it, rpo_id);
280 }
281 }
282}
283
284// Performs the renaming phase in traditional SSA transformations.
285// See: Cooper & Torczon, "Engineering a Compiler", second edition, page 505.)
286void SeaGraph::RenameAsSSA() {
287 utils::ScopedHashtable<int, InstructionNode*> scoped_table;
288 scoped_table.OpenScope();
289 for (std::vector<Region*>::iterator region_it = regions_.begin(); region_it != regions_.end();
290 region_it++) {
291 if ((*region_it)->GetIDominator() == *region_it) {
292 RenameAsSSA(*region_it, &scoped_table);
293 }
294 }
Brian Carlstrom1db91132013-07-12 18:05:20 -0700295 scoped_table.CloseScope();
296}
297
298void SeaGraph::ConvertToSSA() {
299 // Pass: find global names.
300 // The map @block maps registers to the blocks in which they are defined.
301 std::map<int, std::set<Region*> > blocks;
302 // The set @globals records registers whose use
303 // is in a different block than the corresponding definition.
304 std::set<int> globals;
305 for (std::vector<Region*>::iterator region_it = regions_.begin(); region_it != regions_.end();
306 region_it++) {
307 std::set<int> var_kill;
308 std::vector<InstructionNode*>* instructions = (*region_it)->GetInstructions();
309 for (std::vector<InstructionNode*>::iterator inst_it = instructions->begin();
310 inst_it != instructions->end(); inst_it++) {
311 std::vector<int> used_regs = (*inst_it)->GetUses();
312 for (std::size_t i = 0; i < used_regs.size(); i++) {
313 int used_reg = used_regs[i];
314 if (var_kill.find(used_reg) == var_kill.end()) {
315 globals.insert(used_reg);
316 }
317 }
318 const int reg_def = (*inst_it)->GetResultRegister();
319 if (reg_def != NO_REGISTER) {
320 var_kill.insert(reg_def);
321 }
322
323 blocks.insert(std::pair<int, std::set<Region*> >(reg_def, std::set<Region*>()));
324 std::set<Region*>* reg_def_blocks = &(blocks.find(reg_def)->second);
325 reg_def_blocks->insert(*region_it);
326 }
327 }
328
329 // Pass: Actually add phi-nodes to regions.
330 for (std::set<int>::const_iterator globals_it = globals.begin();
331 globals_it != globals.end(); globals_it++) {
332 int global = *globals_it;
333 // Copy the set, because we will modify the worklist as we go.
334 std::set<Region*> worklist((*(blocks.find(global))).second);
335 for (std::set<Region*>::const_iterator b_it = worklist.begin(); b_it != worklist.end(); b_it++) {
336 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 Carlstrom1db91132013-07-12 18:05:20 -0700424 //Pass: Compute reverse post-order of regions.
425 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
Brian Carlstrom7940e442013-07-12 13:46:57 -0700493void Region::ToDot(std::string& result) const {
Brian Carlstrom1db91132013-07-12 18:05:20 -0700494 result += "\n// Region: \n" + StringId() + " [label=\"region " + StringId() + "(rpo=";
495 std::stringstream ss;
496 ss << rpo_;
497 result.append(ss.str());
498 if (NULL != GetIDominator()) {
499 result += " dom=" + GetIDominator()->StringId();
500 }
501 result += ")\"];\n";
502
503 // Save phi-nodes.
504 for (std::vector<PhiInstructionNode*>::const_iterator cit = phi_instructions_.begin();
505 cit != phi_instructions_.end(); cit++) {
506 (*cit)->ToDot(result);
507 result += StringId() + " -> " + (*cit)->StringId() + "; // phi-function \n";
508 }
509
510 // Save instruction nodes.
Brian Carlstrom7940e442013-07-12 13:46:57 -0700511 for (std::vector<InstructionNode*>::const_iterator cit = instructions_.begin();
512 cit != instructions_.end(); cit++) {
513 (*cit)->ToDot(result);
Brian Carlstrom1db91132013-07-12 18:05:20 -0700514 result += StringId() + " -> " + (*cit)->StringId() + "; // region -> instruction \n";
Brian Carlstrom7940e442013-07-12 13:46:57 -0700515 }
516
517 for (std::vector<Region*>::const_iterator cit = successors_.begin(); cit != successors_.end();
518 cit++) {
519 DCHECK(NULL != *cit) << "Null successor found for SeaNode" << GetLastChild()->StringId() << ".";
520 result += GetLastChild()->StringId() + " -> " + (*cit)->StringId() + ";\n\n";
521 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700522 // Save reaching definitions.
523 for (std::map<int, std::set<sea_ir::InstructionNode*>* >::const_iterator cit =
524 reaching_defs_.begin();
525 cit != reaching_defs_.end(); cit++) {
526 for (std::set<sea_ir::InstructionNode*>::const_iterator
527 reaching_set_it = (*cit).second->begin();
528 reaching_set_it != (*cit).second->end();
529 reaching_set_it++) {
530 result += (*reaching_set_it)->StringId() +
531 " -> " + StringId() +
532 " [style=dotted]; // Reaching def.\n";
533 }
534 }
Brian Carlstrom1db91132013-07-12 18:05:20 -0700535 // Save dominance frontier.
536 for (std::set<Region*>::const_iterator cit = df_.begin(); cit != df_.end(); cit++) {
537 result += StringId() +
538 " -> " + (*cit)->StringId() +
539 " [color=gray]; // Dominance frontier.\n";
540 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700541 result += "// End Region.\n";
542}
543
Brian Carlstrom7940e442013-07-12 13:46:57 -0700544void Region::ComputeDownExposedDefs() {
545 for (std::vector<InstructionNode*>::const_iterator inst_it = instructions_.begin();
546 inst_it != instructions_.end(); inst_it++) {
547 int reg_no = (*inst_it)->GetResultRegister();
548 std::map<int, InstructionNode*>::iterator res = de_defs_.find(reg_no);
549 if ((reg_no != NO_REGISTER) && (res == de_defs_.end())) {
550 de_defs_.insert(std::pair<int, InstructionNode*>(reg_no, *inst_it));
551 } else {
552 res->second = *inst_it;
553 }
554 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700555 for (std::map<int, sea_ir::InstructionNode*>::const_iterator cit = de_defs_.begin();
556 cit != de_defs_.end(); cit++) {
557 (*cit).second->MarkAsDEDef();
558 }
559}
560
Brian Carlstrom7940e442013-07-12 13:46:57 -0700561const std::map<int, sea_ir::InstructionNode*>* Region::GetDownExposedDefs() const {
562 return &de_defs_;
563}
564
565std::map<int, std::set<sea_ir::InstructionNode*>* >* Region::GetReachingDefs() {
566 return &reaching_defs_;
567}
568
569bool Region::UpdateReachingDefs() {
570 std::map<int, std::set<sea_ir::InstructionNode*>* > new_reaching;
571 for (std::vector<Region*>::const_iterator pred_it = predecessors_.begin();
572 pred_it != predecessors_.end(); pred_it++) {
573 // The reaching_defs variable will contain reaching defs __for current predecessor only__
574 std::map<int, std::set<sea_ir::InstructionNode*>* > reaching_defs;
575 std::map<int, std::set<sea_ir::InstructionNode*>* >* pred_reaching = (*pred_it)->GetReachingDefs();
576 const std::map<int, InstructionNode*>* de_defs = (*pred_it)->GetDownExposedDefs();
577
578 // The definitions from the reaching set of the predecessor
579 // may be shadowed by downward exposed definitions from the predecessor,
580 // otherwise the defs from the reaching set are still good.
581 for (std::map<int, InstructionNode*>::const_iterator de_def = de_defs->begin();
582 de_def != de_defs->end(); de_def++) {
583 std::set<InstructionNode*>* solo_def;
584 solo_def = new std::set<InstructionNode*>();
585 solo_def->insert(de_def->second);
586 reaching_defs.insert(
587 std::pair<int const, std::set<InstructionNode*>*>(de_def->first, solo_def));
588 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700589 reaching_defs.insert(pred_reaching->begin(), pred_reaching->end());
590
591 // Now we combine the reaching map coming from the current predecessor (reaching_defs)
592 // with the accumulated set from all predecessors so far (from new_reaching).
593 std::map<int, std::set<sea_ir::InstructionNode*>*>::iterator reaching_it = reaching_defs.begin();
594 for (; reaching_it != reaching_defs.end(); reaching_it++) {
595 std::map<int, std::set<sea_ir::InstructionNode*>*>::iterator crt_entry =
596 new_reaching.find(reaching_it->first);
597 if (new_reaching.end() != crt_entry) {
598 crt_entry->second->insert(reaching_it->second->begin(), reaching_it->second->end());
599 } else {
600 new_reaching.insert(
601 std::pair<int, std::set<sea_ir::InstructionNode*>*>(
602 reaching_it->first,
603 reaching_it->second) );
604 }
605 }
606 }
607 bool changed = false;
608 // Because the sets are monotonically increasing,
609 // we can compare sizes instead of using set comparison.
610 // TODO: Find formal proof.
611 int old_size = 0;
612 if (-1 == reaching_defs_size_) {
613 std::map<int, std::set<sea_ir::InstructionNode*>*>::iterator reaching_it = reaching_defs_.begin();
614 for (; reaching_it != reaching_defs_.end(); reaching_it++) {
615 old_size += (*reaching_it).second->size();
616 }
617 } else {
618 old_size = reaching_defs_size_;
619 }
620 int new_size = 0;
621 std::map<int, std::set<sea_ir::InstructionNode*>*>::iterator reaching_it = new_reaching.begin();
622 for (; reaching_it != new_reaching.end(); reaching_it++) {
623 new_size += (*reaching_it).second->size();
624 }
625 if (old_size != new_size) {
626 changed = true;
627 }
628 if (changed) {
629 reaching_defs_ = new_reaching;
630 reaching_defs_size_ = new_size;
631 }
632 return changed;
633}
634
Brian Carlstrom1db91132013-07-12 18:05:20 -0700635bool Region::InsertPhiFor(int reg_no) {
636 if (!ContainsPhiFor(reg_no)) {
637 phi_set_.insert(reg_no);
638 PhiInstructionNode* new_phi = new PhiInstructionNode(reg_no);
Dragos Sbirlea0e260a32013-06-21 09:20:34 -0700639 new_phi->SetRegion(this);
Brian Carlstrom1db91132013-07-12 18:05:20 -0700640 phi_instructions_.push_back(new_phi);
641 return true;
642 }
643 return false;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700644}
645
Brian Carlstrom1db91132013-07-12 18:05:20 -0700646void Region::SetPhiDefinitionsForUses(
647 const utils::ScopedHashtable<int, InstructionNode*>* scoped_table, Region* predecessor) {
648 int predecessor_id = -1;
649 for (unsigned int crt_pred_id = 0; crt_pred_id < predecessors_.size(); crt_pred_id++) {
650 if (predecessors_.at(crt_pred_id) == predecessor) {
651 predecessor_id = crt_pred_id;
652 }
653 }
654 DCHECK_NE(-1, predecessor_id);
655 for (std::vector<PhiInstructionNode*>::iterator phi_it = phi_instructions_.begin();
656 phi_it != phi_instructions_.end(); phi_it++) {
657 PhiInstructionNode* phi = (*phi_it);
658 int reg_no = phi->GetRegisterNumber();
659 InstructionNode* definition = scoped_table->Lookup(reg_no);
660 phi->RenameToSSA(reg_no, definition, predecessor_id);
661 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700662}
663
Dragos Sbirlea0e260a32013-06-21 09:20:34 -0700664std::vector<InstructionNode*> InstructionNode::Create(const art::Instruction* in) {
665 std::vector<InstructionNode*> sea_instructions;
666 switch (in->Opcode()) {
667 case art::Instruction::CONST_4:
668 sea_instructions.push_back(new ConstInstructionNode(in));
669 break;
670 case art::Instruction::RETURN:
671 sea_instructions.push_back(new ReturnInstructionNode(in));
672 break;
673 case art::Instruction::IF_NE:
674 sea_instructions.push_back(new IfNeInstructionNode(in));
675 break;
676 case art::Instruction::ADD_INT_LIT8:
677 sea_instructions.push_back(new UnnamedConstInstructionNode(in, in->VRegB_22b()));
678 sea_instructions.push_back(new AddIntLitInstructionNode(in));
679 break;
680 case art::Instruction::MOVE_RESULT:
681 sea_instructions.push_back(new MoveResultInstructionNode(in));
682 break;
683 case art::Instruction::INVOKE_STATIC:
684 sea_instructions.push_back(new InvokeStaticInstructionNode(in));
685 break;
686 case art::Instruction::ADD_INT:
687 sea_instructions.push_back(new AddIntInstructionNode(in));
688 break;
689 case art::Instruction::GOTO:
690 sea_instructions.push_back(new GotoInstructionNode(in));
691 break;
692 case art::Instruction::IF_EQZ:
693 sea_instructions.push_back(new IfEqzInstructionNode(in));
694 break;
695 default:
696 // Default, generic IR instruction node; default case should never be reached
697 // when support for all instructions ahs been added.
698 sea_instructions.push_back(new InstructionNode(in));
699 }
700 return sea_instructions;
701}
702
Brian Carlstrom1db91132013-07-12 18:05:20 -0700703void InstructionNode::ToDot(std::string& result) const {
Dragos Sbirlea0e260a32013-06-21 09:20:34 -0700704 result += "// Instruction ("+StringId()+"): \n" + StringId() +
Brian Carlstrom1db91132013-07-12 18:05:20 -0700705 " [label=\"" + instruction_->DumpString(NULL) + "\"";
706 if (de_def_) {
707 result += "style=bold";
708 }
709 result += "];\n";
710 // SSA definitions:
711 for (std::map<int, InstructionNode* >::const_iterator def_it = definition_edges_.begin();
712 def_it != definition_edges_.end(); def_it++) {
713 if (NULL != def_it->second) {
714 result += def_it->second->StringId() + " -> " + StringId() +"[color=red,label=\"";
715 std::stringstream ss;
716 ss << def_it->first;
717 result.append(ss.str());
718 result += "\"] ; // ssa edge\n";
719 }
720 }
721}
722
723void InstructionNode::MarkAsDEDef() {
724 de_def_ = true;
725}
726
727int InstructionNode::GetResultRegister() const {
Dragos Sbirlea0e260a32013-06-21 09:20:34 -0700728 if (instruction_->HasVRegA() && InstructionTools::IsDefinition(instruction_)) {
Brian Carlstrom1db91132013-07-12 18:05:20 -0700729 return instruction_->VRegA();
730 }
731 return NO_REGISTER;
732}
733
734std::vector<int> InstructionNode::GetDefinitions() const {
735 // TODO: Extend this to handle instructions defining more than one register (if any)
736 // The return value should be changed to pointer to field then; for now it is an object
737 // so that we avoid possible memory leaks from allocating objects dynamically.
738 std::vector<int> definitions;
739 int result = GetResultRegister();
740 if (NO_REGISTER != result) {
741 definitions.push_back(result);
742 }
743 return definitions;
744}
745
746std::vector<int> InstructionNode::GetUses() {
747 std::vector<int> uses; // Using vector<> instead of set<> because order matters.
Brian Carlstrom1db91132013-07-12 18:05:20 -0700748 if (!InstructionTools::IsDefinition(instruction_) && (instruction_->HasVRegA())) {
749 int vA = instruction_->VRegA();
750 uses.push_back(vA);
751 }
752 if (instruction_->HasVRegB()) {
753 int vB = instruction_->VRegB();
754 uses.push_back(vB);
755 }
756 if (instruction_->HasVRegC()) {
757 int vC = instruction_->VRegC();
758 uses.push_back(vC);
759 }
Brian Carlstrom1db91132013-07-12 18:05:20 -0700760 return uses;
761}
762
763void PhiInstructionNode::ToDot(std::string& result) const {
764 result += "// PhiInstruction: \n" + StringId() +
765 " [label=\"" + "PHI(";
766 std::stringstream phi_reg_stream;
767 phi_reg_stream << register_no_;
768 result.append(phi_reg_stream.str());
769 result += ")\"";
770 result += "];\n";
771
Dragos Sbirlea0e260a32013-06-21 09:20:34 -0700772 for (std::vector<std::vector<InstructionNode*>*>::const_iterator pred_it = definition_edges_.begin();
Brian Carlstrom1db91132013-07-12 18:05:20 -0700773 pred_it != definition_edges_.end(); pred_it++) {
Dragos Sbirlea0e260a32013-06-21 09:20:34 -0700774 std::vector<InstructionNode*>* defs_from_pred = *pred_it;
775 for (std::vector<InstructionNode* >::const_iterator def_it = defs_from_pred->begin();
Brian Carlstrom1db91132013-07-12 18:05:20 -0700776 def_it != defs_from_pred->end(); def_it++) {
Dragos Sbirlea0e260a32013-06-21 09:20:34 -0700777 result += (*def_it)->StringId() + " -> " + StringId() +"[color=red,label=\"vR = ";
Brian Carlstrom1db91132013-07-12 18:05:20 -0700778 std::stringstream ss;
Dragos Sbirlea0e260a32013-06-21 09:20:34 -0700779 ss << GetRegisterNumber();
Brian Carlstrom1db91132013-07-12 18:05:20 -0700780 result.append(ss.str());
781 result += "\"] ; // phi-ssa edge\n";
Brian Carlstrom1db91132013-07-12 18:05:20 -0700782 }
783 }
784}
Brian Carlstrom7940e442013-07-12 13:46:57 -0700785} // end namespace sea_ir