blob: 6857edbbe79210529830c3a475255cabda255dfc [file] [log] [blame]
buzbee311ca162013-02-28 15:56:43 -08001/*
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
Nicolas Geoffrayf3e2cc42014-02-18 18:37:26 +000017#include "mir_graph.h"
18
19#include <inttypes.h>
20
Ian Rogers6282dc12013-04-18 15:54:02 -070021#include "base/stl_util.h"
buzbee311ca162013-02-28 15:56:43 -080022#include "compiler_internals.h"
buzbee311ca162013-02-28 15:56:43 -080023#include "dex_file-inl.h"
Vladimir Marko5816ed42013-11-27 17:04:20 +000024#include "dex/quick/dex_file_to_method_inliner_map.h"
25#include "dex/quick/dex_file_method_inliner.h"
Nicolas Geoffrayf3e2cc42014-02-18 18:37:26 +000026#include "leb128.h"
Vladimir Marko5816ed42013-11-27 17:04:20 +000027
buzbee311ca162013-02-28 15:56:43 -080028namespace art {
29
30#define MAX_PATTERN_LEN 5
31
buzbee1fd33462013-03-25 13:40:45 -070032const char* MIRGraph::extended_mir_op_names_[kMirOpLast - kMirOpFirst] = {
33 "Phi",
34 "Copy",
35 "FusedCmplFloat",
36 "FusedCmpgFloat",
37 "FusedCmplDouble",
38 "FusedCmpgDouble",
39 "FusedCmpLong",
40 "Nop",
41 "OpNullCheck",
42 "OpRangeCheck",
43 "OpDivZeroCheck",
44 "Check1",
45 "Check2",
46 "Select",
47};
48
buzbee862a7602013-04-05 10:58:54 -070049MIRGraph::MIRGraph(CompilationUnit* cu, ArenaAllocator* arena)
buzbee1fd33462013-03-25 13:40:45 -070050 : reg_location_(NULL),
51 cu_(cu),
buzbee311ca162013-02-28 15:56:43 -080052 ssa_base_vregs_(NULL),
53 ssa_subscripts_(NULL),
buzbee311ca162013-02-28 15:56:43 -080054 vreg_to_ssa_map_(NULL),
55 ssa_last_defs_(NULL),
56 is_constant_v_(NULL),
57 constant_values_(NULL),
buzbee862a7602013-04-05 10:58:54 -070058 use_counts_(arena, 256, kGrowableArrayMisc),
59 raw_use_counts_(arena, 256, kGrowableArrayMisc),
buzbee311ca162013-02-28 15:56:43 -080060 num_reachable_blocks_(0),
buzbee862a7602013-04-05 10:58:54 -070061 dfs_order_(NULL),
62 dfs_post_order_(NULL),
63 dom_post_order_traversal_(NULL),
buzbee311ca162013-02-28 15:56:43 -080064 i_dom_list_(NULL),
65 def_block_matrix_(NULL),
buzbee311ca162013-02-28 15:56:43 -080066 temp_dalvik_register_v_(NULL),
Vladimir Markobfea9c22014-01-17 17:49:33 +000067 temp_scoped_alloc_(),
68 temp_insn_data_(nullptr),
69 temp_bit_vector_size_(0u),
70 temp_bit_vector_(nullptr),
buzbee862a7602013-04-05 10:58:54 -070071 block_list_(arena, 100, kGrowableArrayBlockList),
buzbee311ca162013-02-28 15:56:43 -080072 try_block_addr_(NULL),
73 entry_block_(NULL),
74 exit_block_(NULL),
buzbee311ca162013-02-28 15:56:43 -080075 num_blocks_(0),
76 current_code_item_(NULL),
buzbeeb48819d2013-09-14 16:15:25 -070077 dex_pc_to_block_map_(arena, 0, kGrowableArrayMisc),
buzbee311ca162013-02-28 15:56:43 -080078 current_method_(kInvalidEntry),
79 current_offset_(kInvalidEntry),
80 def_count_(0),
81 opcode_count_(NULL),
buzbee1fd33462013-03-25 13:40:45 -070082 num_ssa_regs_(0),
83 method_sreg_(0),
buzbee862a7602013-04-05 10:58:54 -070084 attributes_(METHOD_IS_LEAF), // Start with leaf assumption, change on encountering invoke.
85 checkstats_(NULL),
buzbeeb48819d2013-09-14 16:15:25 -070086 arena_(arena),
87 backward_branches_(0),
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -080088 forward_branches_(0),
89 compiler_temps_(arena, 6, kGrowableArrayMisc),
90 num_non_special_compiler_temps_(0),
buzbeeb1f1d642014-02-27 12:55:32 -080091 max_available_non_special_compiler_temps_(0),
Vladimir Markobe0e5462014-02-26 11:24:15 +000092 punt_to_interpreter_(false),
Vladimir Marko3d73ba22014-03-06 15:18:04 +000093 merged_df_flags_(0u),
Vladimir Markobe0e5462014-02-26 11:24:15 +000094 ifield_lowering_infos_(arena, 0u),
Vladimir Markof096aad2014-01-23 15:51:58 +000095 sfield_lowering_infos_(arena, 0u),
96 method_lowering_infos_(arena, 0u) {
buzbee862a7602013-04-05 10:58:54 -070097 try_block_addr_ = new (arena_) ArenaBitVector(arena_, 0, true /* expandable */);
Razvan A Lupusoruda7a69b2014-01-08 15:09:50 -080098 max_available_special_compiler_temps_ = std::abs(static_cast<int>(kVRegNonSpecialTempBaseReg))
99 - std::abs(static_cast<int>(kVRegTempBaseReg));
buzbee311ca162013-02-28 15:56:43 -0800100}
101
Ian Rogers6282dc12013-04-18 15:54:02 -0700102MIRGraph::~MIRGraph() {
103 STLDeleteElements(&m_units_);
104}
105
buzbee311ca162013-02-28 15:56:43 -0800106/*
107 * Parse an instruction, return the length of the instruction
108 */
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700109int MIRGraph::ParseInsn(const uint16_t* code_ptr, DecodedInstruction* decoded_instruction) {
buzbee311ca162013-02-28 15:56:43 -0800110 const Instruction* instruction = Instruction::At(code_ptr);
111 *decoded_instruction = DecodedInstruction(instruction);
112
113 return instruction->SizeInCodeUnits();
114}
115
116
117/* Split an existing block from the specified code offset into two */
buzbee0d829482013-10-11 15:24:55 -0700118BasicBlock* MIRGraph::SplitBlock(DexOffset code_offset,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700119 BasicBlock* orig_block, BasicBlock** immed_pred_block_p) {
buzbee0d829482013-10-11 15:24:55 -0700120 DCHECK_GT(code_offset, orig_block->start_offset);
buzbee311ca162013-02-28 15:56:43 -0800121 MIR* insn = orig_block->first_mir_insn;
buzbee0d829482013-10-11 15:24:55 -0700122 MIR* prev = NULL;
buzbee311ca162013-02-28 15:56:43 -0800123 while (insn) {
124 if (insn->offset == code_offset) break;
buzbee0d829482013-10-11 15:24:55 -0700125 prev = insn;
buzbee311ca162013-02-28 15:56:43 -0800126 insn = insn->next;
127 }
128 if (insn == NULL) {
129 LOG(FATAL) << "Break split failed";
130 }
buzbee862a7602013-04-05 10:58:54 -0700131 BasicBlock *bottom_block = NewMemBB(kDalvikByteCode, num_blocks_++);
132 block_list_.Insert(bottom_block);
buzbee311ca162013-02-28 15:56:43 -0800133
134 bottom_block->start_offset = code_offset;
135 bottom_block->first_mir_insn = insn;
136 bottom_block->last_mir_insn = orig_block->last_mir_insn;
137
138 /* If this block was terminated by a return, the flag needs to go with the bottom block */
139 bottom_block->terminated_by_return = orig_block->terminated_by_return;
140 orig_block->terminated_by_return = false;
141
buzbee311ca162013-02-28 15:56:43 -0800142 /* Handle the taken path */
143 bottom_block->taken = orig_block->taken;
buzbee0d829482013-10-11 15:24:55 -0700144 if (bottom_block->taken != NullBasicBlockId) {
145 orig_block->taken = NullBasicBlockId;
146 BasicBlock* bb_taken = GetBasicBlock(bottom_block->taken);
147 bb_taken->predecessors->Delete(orig_block->id);
148 bb_taken->predecessors->Insert(bottom_block->id);
buzbee311ca162013-02-28 15:56:43 -0800149 }
150
151 /* Handle the fallthrough path */
152 bottom_block->fall_through = orig_block->fall_through;
buzbee0d829482013-10-11 15:24:55 -0700153 orig_block->fall_through = bottom_block->id;
154 bottom_block->predecessors->Insert(orig_block->id);
155 if (bottom_block->fall_through != NullBasicBlockId) {
156 BasicBlock* bb_fall_through = GetBasicBlock(bottom_block->fall_through);
157 bb_fall_through->predecessors->Delete(orig_block->id);
158 bb_fall_through->predecessors->Insert(bottom_block->id);
buzbee311ca162013-02-28 15:56:43 -0800159 }
160
161 /* Handle the successor list */
buzbee0d829482013-10-11 15:24:55 -0700162 if (orig_block->successor_block_list_type != kNotUsed) {
163 bottom_block->successor_block_list_type = orig_block->successor_block_list_type;
164 bottom_block->successor_blocks = orig_block->successor_blocks;
165 orig_block->successor_block_list_type = kNotUsed;
166 orig_block->successor_blocks = NULL;
167 GrowableArray<SuccessorBlockInfo*>::Iterator iterator(bottom_block->successor_blocks);
buzbee311ca162013-02-28 15:56:43 -0800168 while (true) {
buzbee862a7602013-04-05 10:58:54 -0700169 SuccessorBlockInfo *successor_block_info = iterator.Next();
buzbee311ca162013-02-28 15:56:43 -0800170 if (successor_block_info == NULL) break;
buzbee0d829482013-10-11 15:24:55 -0700171 BasicBlock *bb = GetBasicBlock(successor_block_info->block);
172 bb->predecessors->Delete(orig_block->id);
173 bb->predecessors->Insert(bottom_block->id);
buzbee311ca162013-02-28 15:56:43 -0800174 }
175 }
176
buzbee0d829482013-10-11 15:24:55 -0700177 orig_block->last_mir_insn = prev;
178 prev->next = NULL;
buzbee311ca162013-02-28 15:56:43 -0800179
buzbee311ca162013-02-28 15:56:43 -0800180 /*
181 * Update the immediate predecessor block pointer so that outgoing edges
182 * can be applied to the proper block.
183 */
184 if (immed_pred_block_p) {
185 DCHECK_EQ(*immed_pred_block_p, orig_block);
186 *immed_pred_block_p = bottom_block;
187 }
buzbeeb48819d2013-09-14 16:15:25 -0700188
189 // Associate dex instructions in the bottom block with the new container.
Vladimir Marko4376c872014-01-23 12:39:29 +0000190 DCHECK(insn != nullptr);
191 DCHECK(insn != orig_block->first_mir_insn);
192 DCHECK(insn == bottom_block->first_mir_insn);
193 DCHECK_EQ(insn->offset, bottom_block->start_offset);
194 DCHECK(static_cast<int>(insn->dalvikInsn.opcode) == kMirOpCheck ||
195 !IsPseudoMirOp(insn->dalvikInsn.opcode));
196 DCHECK_EQ(dex_pc_to_block_map_.Get(insn->offset), orig_block->id);
197 MIR* p = insn;
198 dex_pc_to_block_map_.Put(p->offset, bottom_block->id);
199 while (p != bottom_block->last_mir_insn) {
200 p = p->next;
201 DCHECK(p != nullptr);
buzbeeb48819d2013-09-14 16:15:25 -0700202 int opcode = p->dalvikInsn.opcode;
203 /*
204 * Some messiness here to ensure that we only enter real opcodes and only the
205 * first half of a potentially throwing instruction that has been split into
Vladimir Marko4376c872014-01-23 12:39:29 +0000206 * CHECK and work portions. Since the 2nd half of a split operation is always
207 * the first in a BasicBlock, we can't hit it here.
buzbeeb48819d2013-09-14 16:15:25 -0700208 */
Vladimir Marko4376c872014-01-23 12:39:29 +0000209 if ((opcode == kMirOpCheck) || !IsPseudoMirOp(opcode)) {
210 DCHECK_EQ(dex_pc_to_block_map_.Get(p->offset), orig_block->id);
buzbeeb48819d2013-09-14 16:15:25 -0700211 dex_pc_to_block_map_.Put(p->offset, bottom_block->id);
212 }
buzbeeb48819d2013-09-14 16:15:25 -0700213 }
214
buzbee311ca162013-02-28 15:56:43 -0800215 return bottom_block;
216}
217
218/*
219 * Given a code offset, find out the block that starts with it. If the offset
220 * is in the middle of an existing block, split it into two. If immed_pred_block_p
221 * is not non-null and is the block being split, update *immed_pred_block_p to
222 * point to the bottom block so that outgoing edges can be set up properly
223 * (by the caller)
224 * Utilizes a map for fast lookup of the typical cases.
225 */
buzbee0d829482013-10-11 15:24:55 -0700226BasicBlock* MIRGraph::FindBlock(DexOffset code_offset, bool split, bool create,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700227 BasicBlock** immed_pred_block_p) {
buzbeebd663de2013-09-10 15:41:31 -0700228 if (code_offset >= cu_->code_item->insns_size_in_code_units_) {
buzbee311ca162013-02-28 15:56:43 -0800229 return NULL;
230 }
buzbeeb48819d2013-09-14 16:15:25 -0700231
232 int block_id = dex_pc_to_block_map_.Get(code_offset);
233 BasicBlock* bb = (block_id == 0) ? NULL : block_list_.Get(block_id);
234
235 if ((bb != NULL) && (bb->start_offset == code_offset)) {
236 // Does this containing block start with the desired instruction?
buzbeebd663de2013-09-10 15:41:31 -0700237 return bb;
238 }
buzbee311ca162013-02-28 15:56:43 -0800239
buzbeeb48819d2013-09-14 16:15:25 -0700240 // No direct hit.
241 if (!create) {
242 return NULL;
buzbee311ca162013-02-28 15:56:43 -0800243 }
244
buzbeeb48819d2013-09-14 16:15:25 -0700245 if (bb != NULL) {
246 // The target exists somewhere in an existing block.
247 return SplitBlock(code_offset, bb, bb == *immed_pred_block_p ? immed_pred_block_p : NULL);
248 }
249
250 // Create a new block.
buzbee862a7602013-04-05 10:58:54 -0700251 bb = NewMemBB(kDalvikByteCode, num_blocks_++);
252 block_list_.Insert(bb);
buzbee311ca162013-02-28 15:56:43 -0800253 bb->start_offset = code_offset;
buzbeeb48819d2013-09-14 16:15:25 -0700254 dex_pc_to_block_map_.Put(bb->start_offset, bb->id);
buzbee311ca162013-02-28 15:56:43 -0800255 return bb;
256}
257
buzbeeb48819d2013-09-14 16:15:25 -0700258
buzbee311ca162013-02-28 15:56:43 -0800259/* Identify code range in try blocks and set up the empty catch blocks */
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700260void MIRGraph::ProcessTryCatchBlocks() {
buzbee311ca162013-02-28 15:56:43 -0800261 int tries_size = current_code_item_->tries_size_;
buzbee0d829482013-10-11 15:24:55 -0700262 DexOffset offset;
buzbee311ca162013-02-28 15:56:43 -0800263
264 if (tries_size == 0) {
265 return;
266 }
267
268 for (int i = 0; i < tries_size; i++) {
269 const DexFile::TryItem* pTry =
270 DexFile::GetTryItems(*current_code_item_, i);
buzbee0d829482013-10-11 15:24:55 -0700271 DexOffset start_offset = pTry->start_addr_;
272 DexOffset end_offset = start_offset + pTry->insn_count_;
buzbee311ca162013-02-28 15:56:43 -0800273 for (offset = start_offset; offset < end_offset; offset++) {
buzbee862a7602013-04-05 10:58:54 -0700274 try_block_addr_->SetBit(offset);
buzbee311ca162013-02-28 15:56:43 -0800275 }
276 }
277
278 // Iterate over each of the handlers to enqueue the empty Catch blocks
279 const byte* handlers_ptr = DexFile::GetCatchHandlerData(*current_code_item_, 0);
280 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr);
281 for (uint32_t idx = 0; idx < handlers_size; idx++) {
282 CatchHandlerIterator iterator(handlers_ptr);
283 for (; iterator.HasNext(); iterator.Next()) {
284 uint32_t address = iterator.GetHandlerAddress();
285 FindBlock(address, false /* split */, true /*create*/,
286 /* immed_pred_block_p */ NULL);
287 }
288 handlers_ptr = iterator.EndDataPointer();
289 }
290}
291
292/* Process instructions with the kBranch flag */
buzbee0d829482013-10-11 15:24:55 -0700293BasicBlock* MIRGraph::ProcessCanBranch(BasicBlock* cur_block, MIR* insn, DexOffset cur_offset,
294 int width, int flags, const uint16_t* code_ptr,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700295 const uint16_t* code_end) {
buzbee0d829482013-10-11 15:24:55 -0700296 DexOffset target = cur_offset;
buzbee311ca162013-02-28 15:56:43 -0800297 switch (insn->dalvikInsn.opcode) {
298 case Instruction::GOTO:
299 case Instruction::GOTO_16:
300 case Instruction::GOTO_32:
301 target += insn->dalvikInsn.vA;
302 break;
303 case Instruction::IF_EQ:
304 case Instruction::IF_NE:
305 case Instruction::IF_LT:
306 case Instruction::IF_GE:
307 case Instruction::IF_GT:
308 case Instruction::IF_LE:
309 cur_block->conditional_branch = true;
310 target += insn->dalvikInsn.vC;
311 break;
312 case Instruction::IF_EQZ:
313 case Instruction::IF_NEZ:
314 case Instruction::IF_LTZ:
315 case Instruction::IF_GEZ:
316 case Instruction::IF_GTZ:
317 case Instruction::IF_LEZ:
318 cur_block->conditional_branch = true;
319 target += insn->dalvikInsn.vB;
320 break;
321 default:
322 LOG(FATAL) << "Unexpected opcode(" << insn->dalvikInsn.opcode << ") with kBranch set";
323 }
buzbeeb48819d2013-09-14 16:15:25 -0700324 CountBranch(target);
buzbee311ca162013-02-28 15:56:43 -0800325 BasicBlock *taken_block = FindBlock(target, /* split */ true, /* create */ true,
326 /* immed_pred_block_p */ &cur_block);
buzbee0d829482013-10-11 15:24:55 -0700327 cur_block->taken = taken_block->id;
328 taken_block->predecessors->Insert(cur_block->id);
buzbee311ca162013-02-28 15:56:43 -0800329
330 /* Always terminate the current block for conditional branches */
331 if (flags & Instruction::kContinue) {
332 BasicBlock *fallthrough_block = FindBlock(cur_offset + width,
333 /*
334 * If the method is processed
335 * in sequential order from the
336 * beginning, we don't need to
337 * specify split for continue
338 * blocks. However, this
339 * routine can be called by
340 * compileLoop, which starts
341 * parsing the method from an
342 * arbitrary address in the
343 * method body.
344 */
345 true,
346 /* create */
347 true,
348 /* immed_pred_block_p */
349 &cur_block);
buzbee0d829482013-10-11 15:24:55 -0700350 cur_block->fall_through = fallthrough_block->id;
351 fallthrough_block->predecessors->Insert(cur_block->id);
buzbee311ca162013-02-28 15:56:43 -0800352 } else if (code_ptr < code_end) {
buzbee27247762013-07-28 12:03:58 -0700353 FindBlock(cur_offset + width, /* split */ false, /* create */ true,
buzbee311ca162013-02-28 15:56:43 -0800354 /* immed_pred_block_p */ NULL);
buzbee311ca162013-02-28 15:56:43 -0800355 }
356 return cur_block;
357}
358
359/* Process instructions with the kSwitch flag */
buzbee17189ac2013-11-08 11:07:02 -0800360BasicBlock* MIRGraph::ProcessCanSwitch(BasicBlock* cur_block, MIR* insn, DexOffset cur_offset,
361 int width, int flags) {
buzbee311ca162013-02-28 15:56:43 -0800362 const uint16_t* switch_data =
363 reinterpret_cast<const uint16_t*>(GetCurrentInsns() + cur_offset + insn->dalvikInsn.vB);
364 int size;
365 const int* keyTable;
366 const int* target_table;
367 int i;
368 int first_key;
369
370 /*
371 * Packed switch data format:
372 * ushort ident = 0x0100 magic value
373 * ushort size number of entries in the table
374 * int first_key first (and lowest) switch case value
375 * int targets[size] branch targets, relative to switch opcode
376 *
377 * Total size is (4+size*2) 16-bit code units.
378 */
379 if (insn->dalvikInsn.opcode == Instruction::PACKED_SWITCH) {
380 DCHECK_EQ(static_cast<int>(switch_data[0]),
381 static_cast<int>(Instruction::kPackedSwitchSignature));
382 size = switch_data[1];
383 first_key = switch_data[2] | (switch_data[3] << 16);
384 target_table = reinterpret_cast<const int*>(&switch_data[4]);
385 keyTable = NULL; // Make the compiler happy
386 /*
387 * Sparse switch data format:
388 * ushort ident = 0x0200 magic value
389 * ushort size number of entries in the table; > 0
390 * int keys[size] keys, sorted low-to-high; 32-bit aligned
391 * int targets[size] branch targets, relative to switch opcode
392 *
393 * Total size is (2+size*4) 16-bit code units.
394 */
395 } else {
396 DCHECK_EQ(static_cast<int>(switch_data[0]),
397 static_cast<int>(Instruction::kSparseSwitchSignature));
398 size = switch_data[1];
399 keyTable = reinterpret_cast<const int*>(&switch_data[2]);
400 target_table = reinterpret_cast<const int*>(&switch_data[2 + size*2]);
401 first_key = 0; // To make the compiler happy
402 }
403
buzbee0d829482013-10-11 15:24:55 -0700404 if (cur_block->successor_block_list_type != kNotUsed) {
buzbee311ca162013-02-28 15:56:43 -0800405 LOG(FATAL) << "Successor block list already in use: "
buzbee0d829482013-10-11 15:24:55 -0700406 << static_cast<int>(cur_block->successor_block_list_type);
buzbee311ca162013-02-28 15:56:43 -0800407 }
buzbee0d829482013-10-11 15:24:55 -0700408 cur_block->successor_block_list_type =
409 (insn->dalvikInsn.opcode == Instruction::PACKED_SWITCH) ? kPackedSwitch : kSparseSwitch;
410 cur_block->successor_blocks =
Brian Carlstromdf629502013-07-17 22:39:56 -0700411 new (arena_) GrowableArray<SuccessorBlockInfo*>(arena_, size, kGrowableArraySuccessorBlocks);
buzbee311ca162013-02-28 15:56:43 -0800412
413 for (i = 0; i < size; i++) {
414 BasicBlock *case_block = FindBlock(cur_offset + target_table[i], /* split */ true,
415 /* create */ true, /* immed_pred_block_p */ &cur_block);
416 SuccessorBlockInfo *successor_block_info =
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -0700417 static_cast<SuccessorBlockInfo*>(arena_->Alloc(sizeof(SuccessorBlockInfo),
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000418 kArenaAllocSuccessor));
buzbee0d829482013-10-11 15:24:55 -0700419 successor_block_info->block = case_block->id;
buzbee311ca162013-02-28 15:56:43 -0800420 successor_block_info->key =
421 (insn->dalvikInsn.opcode == Instruction::PACKED_SWITCH) ?
422 first_key + i : keyTable[i];
buzbee0d829482013-10-11 15:24:55 -0700423 cur_block->successor_blocks->Insert(successor_block_info);
424 case_block->predecessors->Insert(cur_block->id);
buzbee311ca162013-02-28 15:56:43 -0800425 }
426
427 /* Fall-through case */
Brian Carlstromdf629502013-07-17 22:39:56 -0700428 BasicBlock* fallthrough_block = FindBlock(cur_offset + width, /* split */ false,
429 /* create */ true, /* immed_pred_block_p */ NULL);
buzbee0d829482013-10-11 15:24:55 -0700430 cur_block->fall_through = fallthrough_block->id;
431 fallthrough_block->predecessors->Insert(cur_block->id);
buzbee17189ac2013-11-08 11:07:02 -0800432 return cur_block;
buzbee311ca162013-02-28 15:56:43 -0800433}
434
435/* Process instructions with the kThrow flag */
buzbee0d829482013-10-11 15:24:55 -0700436BasicBlock* MIRGraph::ProcessCanThrow(BasicBlock* cur_block, MIR* insn, DexOffset cur_offset,
437 int width, int flags, ArenaBitVector* try_block_addr,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700438 const uint16_t* code_ptr, const uint16_t* code_end) {
buzbee862a7602013-04-05 10:58:54 -0700439 bool in_try_block = try_block_addr->IsBitSet(cur_offset);
buzbee17189ac2013-11-08 11:07:02 -0800440 bool is_throw = (insn->dalvikInsn.opcode == Instruction::THROW);
441 bool build_all_edges =
442 (cu_->disable_opt & (1 << kSuppressExceptionEdges)) || is_throw || in_try_block;
buzbee311ca162013-02-28 15:56:43 -0800443
444 /* In try block */
445 if (in_try_block) {
446 CatchHandlerIterator iterator(*current_code_item_, cur_offset);
447
buzbee0d829482013-10-11 15:24:55 -0700448 if (cur_block->successor_block_list_type != kNotUsed) {
buzbee311ca162013-02-28 15:56:43 -0800449 LOG(INFO) << PrettyMethod(cu_->method_idx, *cu_->dex_file);
450 LOG(FATAL) << "Successor block list already in use: "
buzbee0d829482013-10-11 15:24:55 -0700451 << static_cast<int>(cur_block->successor_block_list_type);
buzbee311ca162013-02-28 15:56:43 -0800452 }
453
buzbee0d829482013-10-11 15:24:55 -0700454 cur_block->successor_block_list_type = kCatch;
455 cur_block->successor_blocks =
buzbee862a7602013-04-05 10:58:54 -0700456 new (arena_) GrowableArray<SuccessorBlockInfo*>(arena_, 2, kGrowableArraySuccessorBlocks);
buzbee311ca162013-02-28 15:56:43 -0800457
Brian Carlstrom02c8cc62013-07-18 15:54:44 -0700458 for (; iterator.HasNext(); iterator.Next()) {
buzbee311ca162013-02-28 15:56:43 -0800459 BasicBlock *catch_block = FindBlock(iterator.GetHandlerAddress(), false /* split*/,
460 false /* creat */, NULL /* immed_pred_block_p */);
461 catch_block->catch_entry = true;
462 if (kIsDebugBuild) {
463 catches_.insert(catch_block->start_offset);
464 }
465 SuccessorBlockInfo *successor_block_info = reinterpret_cast<SuccessorBlockInfo*>
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000466 (arena_->Alloc(sizeof(SuccessorBlockInfo), kArenaAllocSuccessor));
buzbee0d829482013-10-11 15:24:55 -0700467 successor_block_info->block = catch_block->id;
buzbee311ca162013-02-28 15:56:43 -0800468 successor_block_info->key = iterator.GetHandlerTypeIndex();
buzbee0d829482013-10-11 15:24:55 -0700469 cur_block->successor_blocks->Insert(successor_block_info);
470 catch_block->predecessors->Insert(cur_block->id);
buzbee311ca162013-02-28 15:56:43 -0800471 }
buzbee17189ac2013-11-08 11:07:02 -0800472 } else if (build_all_edges) {
buzbee862a7602013-04-05 10:58:54 -0700473 BasicBlock *eh_block = NewMemBB(kExceptionHandling, num_blocks_++);
buzbee0d829482013-10-11 15:24:55 -0700474 cur_block->taken = eh_block->id;
buzbee862a7602013-04-05 10:58:54 -0700475 block_list_.Insert(eh_block);
buzbee311ca162013-02-28 15:56:43 -0800476 eh_block->start_offset = cur_offset;
buzbee0d829482013-10-11 15:24:55 -0700477 eh_block->predecessors->Insert(cur_block->id);
buzbee311ca162013-02-28 15:56:43 -0800478 }
479
buzbee17189ac2013-11-08 11:07:02 -0800480 if (is_throw) {
buzbee311ca162013-02-28 15:56:43 -0800481 cur_block->explicit_throw = true;
buzbee27247762013-07-28 12:03:58 -0700482 if (code_ptr < code_end) {
buzbee311ca162013-02-28 15:56:43 -0800483 // Force creation of new block following THROW via side-effect
484 FindBlock(cur_offset + width, /* split */ false, /* create */ true,
485 /* immed_pred_block_p */ NULL);
486 }
487 if (!in_try_block) {
488 // Don't split a THROW that can't rethrow - we're done.
489 return cur_block;
490 }
491 }
492
buzbee17189ac2013-11-08 11:07:02 -0800493 if (!build_all_edges) {
494 /*
495 * Even though there is an exception edge here, control cannot return to this
496 * method. Thus, for the purposes of dataflow analysis and optimization, we can
497 * ignore the edge. Doing this reduces compile time, and increases the scope
498 * of the basic-block level optimization pass.
499 */
500 return cur_block;
501 }
502
buzbee311ca162013-02-28 15:56:43 -0800503 /*
504 * Split the potentially-throwing instruction into two parts.
505 * The first half will be a pseudo-op that captures the exception
506 * edges and terminates the basic block. It always falls through.
507 * Then, create a new basic block that begins with the throwing instruction
508 * (minus exceptions). Note: this new basic block must NOT be entered into
509 * the block_map. If the potentially-throwing instruction is the target of a
510 * future branch, we need to find the check psuedo half. The new
511 * basic block containing the work portion of the instruction should
512 * only be entered via fallthrough from the block containing the
513 * pseudo exception edge MIR. Note also that this new block is
514 * not automatically terminated after the work portion, and may
515 * contain following instructions.
buzbeeb48819d2013-09-14 16:15:25 -0700516 *
517 * Note also that the dex_pc_to_block_map_ entry for the potentially
518 * throwing instruction will refer to the original basic block.
buzbee311ca162013-02-28 15:56:43 -0800519 */
buzbee862a7602013-04-05 10:58:54 -0700520 BasicBlock *new_block = NewMemBB(kDalvikByteCode, num_blocks_++);
521 block_list_.Insert(new_block);
buzbee311ca162013-02-28 15:56:43 -0800522 new_block->start_offset = insn->offset;
buzbee0d829482013-10-11 15:24:55 -0700523 cur_block->fall_through = new_block->id;
524 new_block->predecessors->Insert(cur_block->id);
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000525 MIR* new_insn = static_cast<MIR*>(arena_->Alloc(sizeof(MIR), kArenaAllocMIR));
buzbee311ca162013-02-28 15:56:43 -0800526 *new_insn = *insn;
527 insn->dalvikInsn.opcode =
528 static_cast<Instruction::Code>(kMirOpCheck);
529 // Associate the two halves
530 insn->meta.throw_insn = new_insn;
Jean Christophe Beylercdacac42014-03-13 14:54:59 -0700531 new_block->AppendMIR(new_insn);
buzbee311ca162013-02-28 15:56:43 -0800532 return new_block;
533}
534
535/* Parse a Dex method and insert it into the MIRGraph at the current insert point. */
536void MIRGraph::InlineMethod(const DexFile::CodeItem* code_item, uint32_t access_flags,
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700537 InvokeType invoke_type, uint16_t class_def_idx,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700538 uint32_t method_idx, jobject class_loader, const DexFile& dex_file) {
buzbee311ca162013-02-28 15:56:43 -0800539 current_code_item_ = code_item;
540 method_stack_.push_back(std::make_pair(current_method_, current_offset_));
541 current_method_ = m_units_.size();
542 current_offset_ = 0;
543 // TODO: will need to snapshot stack image and use that as the mir context identification.
544 m_units_.push_back(new DexCompilationUnit(cu_, class_loader, Runtime::Current()->GetClassLinker(),
Vladimir Marko2730db02014-01-27 11:15:17 +0000545 dex_file, current_code_item_, class_def_idx, method_idx, access_flags,
546 cu_->compiler_driver->GetVerifiedMethod(&dex_file, method_idx)));
buzbee311ca162013-02-28 15:56:43 -0800547 const uint16_t* code_ptr = current_code_item_->insns_;
548 const uint16_t* code_end =
549 current_code_item_->insns_ + current_code_item_->insns_size_in_code_units_;
550
551 // TODO: need to rework expansion of block list & try_block_addr when inlining activated.
buzbeeb48819d2013-09-14 16:15:25 -0700552 // TUNING: use better estimate of basic blocks for following resize.
buzbee862a7602013-04-05 10:58:54 -0700553 block_list_.Resize(block_list_.Size() + current_code_item_->insns_size_in_code_units_);
buzbeeb48819d2013-09-14 16:15:25 -0700554 dex_pc_to_block_map_.SetSize(dex_pc_to_block_map_.Size() + current_code_item_->insns_size_in_code_units_);
buzbeebd663de2013-09-10 15:41:31 -0700555
buzbee311ca162013-02-28 15:56:43 -0800556 // TODO: replace with explicit resize routine. Using automatic extension side effect for now.
buzbee862a7602013-04-05 10:58:54 -0700557 try_block_addr_->SetBit(current_code_item_->insns_size_in_code_units_);
558 try_block_addr_->ClearBit(current_code_item_->insns_size_in_code_units_);
buzbee311ca162013-02-28 15:56:43 -0800559
560 // If this is the first method, set up default entry and exit blocks.
561 if (current_method_ == 0) {
562 DCHECK(entry_block_ == NULL);
563 DCHECK(exit_block_ == NULL);
Brian Carlstrom42748892013-07-18 18:04:08 -0700564 DCHECK_EQ(num_blocks_, 0);
buzbee0d829482013-10-11 15:24:55 -0700565 // Use id 0 to represent a null block.
566 BasicBlock* null_block = NewMemBB(kNullBlock, num_blocks_++);
567 DCHECK_EQ(null_block->id, NullBasicBlockId);
568 null_block->hidden = true;
569 block_list_.Insert(null_block);
buzbee862a7602013-04-05 10:58:54 -0700570 entry_block_ = NewMemBB(kEntryBlock, num_blocks_++);
buzbee862a7602013-04-05 10:58:54 -0700571 block_list_.Insert(entry_block_);
buzbee0d829482013-10-11 15:24:55 -0700572 exit_block_ = NewMemBB(kExitBlock, num_blocks_++);
buzbee862a7602013-04-05 10:58:54 -0700573 block_list_.Insert(exit_block_);
buzbee311ca162013-02-28 15:56:43 -0800574 // TODO: deprecate all "cu->" fields; move what's left to wherever CompilationUnit is allocated.
575 cu_->dex_file = &dex_file;
576 cu_->class_def_idx = class_def_idx;
577 cu_->method_idx = method_idx;
578 cu_->access_flags = access_flags;
579 cu_->invoke_type = invoke_type;
580 cu_->shorty = dex_file.GetMethodShorty(dex_file.GetMethodId(method_idx));
581 cu_->num_ins = current_code_item_->ins_size_;
582 cu_->num_regs = current_code_item_->registers_size_ - cu_->num_ins;
583 cu_->num_outs = current_code_item_->outs_size_;
584 cu_->num_dalvik_registers = current_code_item_->registers_size_;
585 cu_->insns = current_code_item_->insns_;
586 cu_->code_item = current_code_item_;
587 } else {
588 UNIMPLEMENTED(FATAL) << "Nested inlining not implemented.";
589 /*
590 * Will need to manage storage for ins & outs, push prevous state and update
591 * insert point.
592 */
593 }
594
595 /* Current block to record parsed instructions */
buzbee862a7602013-04-05 10:58:54 -0700596 BasicBlock *cur_block = NewMemBB(kDalvikByteCode, num_blocks_++);
buzbee0d829482013-10-11 15:24:55 -0700597 DCHECK_EQ(current_offset_, 0U);
buzbee311ca162013-02-28 15:56:43 -0800598 cur_block->start_offset = current_offset_;
buzbee862a7602013-04-05 10:58:54 -0700599 block_list_.Insert(cur_block);
buzbee0d829482013-10-11 15:24:55 -0700600 // TODO: for inlining support, insert at the insert point rather than entry block.
601 entry_block_->fall_through = cur_block->id;
602 cur_block->predecessors->Insert(entry_block_->id);
buzbee311ca162013-02-28 15:56:43 -0800603
Vladimir Marko3d73ba22014-03-06 15:18:04 +0000604 /* Identify code range in try blocks and set up the empty catch blocks */
buzbee311ca162013-02-28 15:56:43 -0800605 ProcessTryCatchBlocks();
606
Vladimir Marko3d73ba22014-03-06 15:18:04 +0000607 uint64_t merged_df_flags = 0u;
608
buzbee311ca162013-02-28 15:56:43 -0800609 /* Parse all instructions and put them into containing basic blocks */
610 while (code_ptr < code_end) {
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000611 MIR *insn = static_cast<MIR *>(arena_->Alloc(sizeof(MIR), kArenaAllocMIR));
buzbee311ca162013-02-28 15:56:43 -0800612 insn->offset = current_offset_;
613 insn->m_unit_index = current_method_;
614 int width = ParseInsn(code_ptr, &insn->dalvikInsn);
615 insn->width = width;
616 Instruction::Code opcode = insn->dalvikInsn.opcode;
617 if (opcode_count_ != NULL) {
618 opcode_count_[static_cast<int>(opcode)]++;
619 }
620
buzbee311ca162013-02-28 15:56:43 -0800621 int flags = Instruction::FlagsOf(insn->dalvikInsn.opcode);
buzbeeb1f1d642014-02-27 12:55:32 -0800622 int verify_flags = Instruction::VerifyFlagsOf(insn->dalvikInsn.opcode);
buzbee311ca162013-02-28 15:56:43 -0800623
Jean Christophe Beylercc794c32014-05-02 09:34:13 -0700624 uint64_t df_flags = GetDataFlowAttributes(insn);
Vladimir Marko3d73ba22014-03-06 15:18:04 +0000625 merged_df_flags |= df_flags;
buzbee311ca162013-02-28 15:56:43 -0800626
627 if (df_flags & DF_HAS_DEFS) {
628 def_count_ += (df_flags & DF_A_WIDE) ? 2 : 1;
629 }
630
buzbee1da1e2f2013-11-15 13:37:01 -0800631 if (df_flags & DF_LVN) {
632 cur_block->use_lvn = true; // Run local value numbering on this basic block.
633 }
634
buzbee27247762013-07-28 12:03:58 -0700635 // Check for inline data block signatures
636 if (opcode == Instruction::NOP) {
637 // A simple NOP will have a width of 1 at this point, embedded data NOP > 1.
638 if ((width == 1) && ((current_offset_ & 0x1) == 0x1) && ((code_end - code_ptr) > 1)) {
639 // Could be an aligning nop. If an embedded data NOP follows, treat pair as single unit.
640 uint16_t following_raw_instruction = code_ptr[1];
641 if ((following_raw_instruction == Instruction::kSparseSwitchSignature) ||
642 (following_raw_instruction == Instruction::kPackedSwitchSignature) ||
643 (following_raw_instruction == Instruction::kArrayDataSignature)) {
644 width += Instruction::At(code_ptr + 1)->SizeInCodeUnits();
645 }
646 }
647 if (width == 1) {
648 // It is a simple nop - treat normally.
Jean Christophe Beylercdacac42014-03-13 14:54:59 -0700649 cur_block->AppendMIR(insn);
buzbee27247762013-07-28 12:03:58 -0700650 } else {
buzbee0d829482013-10-11 15:24:55 -0700651 DCHECK(cur_block->fall_through == NullBasicBlockId);
652 DCHECK(cur_block->taken == NullBasicBlockId);
buzbee27247762013-07-28 12:03:58 -0700653 // Unreachable instruction, mark for no continuation.
654 flags &= ~Instruction::kContinue;
655 }
656 } else {
Jean Christophe Beylercdacac42014-03-13 14:54:59 -0700657 cur_block->AppendMIR(insn);
buzbee27247762013-07-28 12:03:58 -0700658 }
659
buzbeeb48819d2013-09-14 16:15:25 -0700660 // Associate the starting dex_pc for this opcode with its containing basic block.
661 dex_pc_to_block_map_.Put(insn->offset, cur_block->id);
662
buzbee27247762013-07-28 12:03:58 -0700663 code_ptr += width;
664
buzbee311ca162013-02-28 15:56:43 -0800665 if (flags & Instruction::kBranch) {
666 cur_block = ProcessCanBranch(cur_block, insn, current_offset_,
667 width, flags, code_ptr, code_end);
668 } else if (flags & Instruction::kReturn) {
669 cur_block->terminated_by_return = true;
buzbee0d829482013-10-11 15:24:55 -0700670 cur_block->fall_through = exit_block_->id;
671 exit_block_->predecessors->Insert(cur_block->id);
buzbee311ca162013-02-28 15:56:43 -0800672 /*
673 * Terminate the current block if there are instructions
674 * afterwards.
675 */
676 if (code_ptr < code_end) {
677 /*
678 * Create a fallthrough block for real instructions
679 * (incl. NOP).
680 */
buzbee27247762013-07-28 12:03:58 -0700681 FindBlock(current_offset_ + width, /* split */ false, /* create */ true,
682 /* immed_pred_block_p */ NULL);
buzbee311ca162013-02-28 15:56:43 -0800683 }
684 } else if (flags & Instruction::kThrow) {
685 cur_block = ProcessCanThrow(cur_block, insn, current_offset_, width, flags, try_block_addr_,
686 code_ptr, code_end);
687 } else if (flags & Instruction::kSwitch) {
buzbee17189ac2013-11-08 11:07:02 -0800688 cur_block = ProcessCanSwitch(cur_block, insn, current_offset_, width, flags);
buzbee311ca162013-02-28 15:56:43 -0800689 }
buzbeeb1f1d642014-02-27 12:55:32 -0800690 if (verify_flags & Instruction::kVerifyVarArgRange) {
691 /*
692 * The Quick backend's runtime model includes a gap between a method's
693 * argument ("in") vregs and the rest of its vregs. Handling a range instruction
694 * which spans the gap is somewhat complicated, and should not happen
695 * in normal usage of dx. Punt to the interpreter.
696 */
697 int first_reg_in_range = insn->dalvikInsn.vC;
698 int last_reg_in_range = first_reg_in_range + insn->dalvikInsn.vA - 1;
699 if (IsInVReg(first_reg_in_range) != IsInVReg(last_reg_in_range)) {
700 punt_to_interpreter_ = true;
701 }
702 }
buzbee311ca162013-02-28 15:56:43 -0800703 current_offset_ += width;
704 BasicBlock *next_block = FindBlock(current_offset_, /* split */ false, /* create */
705 false, /* immed_pred_block_p */ NULL);
706 if (next_block) {
707 /*
708 * The next instruction could be the target of a previously parsed
709 * forward branch so a block is already created. If the current
710 * instruction is not an unconditional branch, connect them through
711 * the fall-through link.
712 */
buzbee0d829482013-10-11 15:24:55 -0700713 DCHECK(cur_block->fall_through == NullBasicBlockId ||
714 GetBasicBlock(cur_block->fall_through) == next_block ||
715 GetBasicBlock(cur_block->fall_through) == exit_block_);
buzbee311ca162013-02-28 15:56:43 -0800716
buzbee0d829482013-10-11 15:24:55 -0700717 if ((cur_block->fall_through == NullBasicBlockId) && (flags & Instruction::kContinue)) {
718 cur_block->fall_through = next_block->id;
719 next_block->predecessors->Insert(cur_block->id);
buzbee311ca162013-02-28 15:56:43 -0800720 }
721 cur_block = next_block;
722 }
723 }
Vladimir Marko3d73ba22014-03-06 15:18:04 +0000724 merged_df_flags_ = merged_df_flags;
Vladimir Marko5816ed42013-11-27 17:04:20 +0000725
buzbee311ca162013-02-28 15:56:43 -0800726 if (cu_->enable_debug & (1 << kDebugDumpCFG)) {
727 DumpCFG("/sdcard/1_post_parse_cfg/", true);
728 }
729
730 if (cu_->verbose) {
buzbee1fd33462013-03-25 13:40:45 -0700731 DumpMIRGraph();
buzbee311ca162013-02-28 15:56:43 -0800732 }
733}
734
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700735void MIRGraph::ShowOpcodeStats() {
buzbee311ca162013-02-28 15:56:43 -0800736 DCHECK(opcode_count_ != NULL);
737 LOG(INFO) << "Opcode Count";
738 for (int i = 0; i < kNumPackedOpcodes; i++) {
739 if (opcode_count_[i] != 0) {
740 LOG(INFO) << "-C- " << Instruction::Name(static_cast<Instruction::Code>(i))
741 << " " << opcode_count_[i];
742 }
743 }
744}
745
Jean Christophe Beylercc794c32014-05-02 09:34:13 -0700746uint64_t MIRGraph::GetDataFlowAttributes(Instruction::Code opcode) {
747 DCHECK_LT((size_t) opcode, (sizeof(oat_data_flow_attributes_) / sizeof(oat_data_flow_attributes_[0])));
748 return oat_data_flow_attributes_[opcode];
749}
750
751uint64_t MIRGraph::GetDataFlowAttributes(MIR* mir) {
752 DCHECK(mir != nullptr);
753 Instruction::Code opcode = mir->dalvikInsn.opcode;
754 return GetDataFlowAttributes(opcode);
755}
756
buzbee311ca162013-02-28 15:56:43 -0800757// TODO: use a configurable base prefix, and adjust callers to supply pass name.
758/* Dump the CFG into a DOT graph */
Jean Christophe Beylerd0a51552014-01-10 14:18:31 -0800759void MIRGraph::DumpCFG(const char* dir_prefix, bool all_blocks, const char *suffix) {
buzbee311ca162013-02-28 15:56:43 -0800760 FILE* file;
761 std::string fname(PrettyMethod(cu_->method_idx, *cu_->dex_file));
762 ReplaceSpecialChars(fname);
Jean Christophe Beylerd0a51552014-01-10 14:18:31 -0800763 fname = StringPrintf("%s%s%x%s.dot", dir_prefix, fname.c_str(),
764 GetBasicBlock(GetEntryBlock()->fall_through)->start_offset,
765 suffix == nullptr ? "" : suffix);
buzbee311ca162013-02-28 15:56:43 -0800766 file = fopen(fname.c_str(), "w");
767 if (file == NULL) {
768 return;
769 }
770 fprintf(file, "digraph G {\n");
771
772 fprintf(file, " rankdir=TB\n");
773
774 int num_blocks = all_blocks ? GetNumBlocks() : num_reachable_blocks_;
775 int idx;
776
777 for (idx = 0; idx < num_blocks; idx++) {
buzbee862a7602013-04-05 10:58:54 -0700778 int block_idx = all_blocks ? idx : dfs_order_->Get(idx);
buzbee311ca162013-02-28 15:56:43 -0800779 BasicBlock *bb = GetBasicBlock(block_idx);
Razvan A Lupusoru25bc2792014-03-19 14:27:59 -0700780 if (bb == NULL) continue;
buzbee311ca162013-02-28 15:56:43 -0800781 if (bb->block_type == kDead) continue;
782 if (bb->block_type == kEntryBlock) {
783 fprintf(file, " entry_%d [shape=Mdiamond];\n", bb->id);
784 } else if (bb->block_type == kExitBlock) {
785 fprintf(file, " exit_%d [shape=Mdiamond];\n", bb->id);
786 } else if (bb->block_type == kDalvikByteCode) {
787 fprintf(file, " block%04x_%d [shape=record,label = \"{ \\\n",
788 bb->start_offset, bb->id);
789 const MIR *mir;
790 fprintf(file, " {block id %d\\l}%s\\\n", bb->id,
791 bb->first_mir_insn ? " | " : " ");
792 for (mir = bb->first_mir_insn; mir; mir = mir->next) {
793 int opcode = mir->dalvikInsn.opcode;
794 fprintf(file, " {%04x %s %s %s\\l}%s\\\n", mir->offset,
buzbee1fd33462013-03-25 13:40:45 -0700795 mir->ssa_rep ? GetDalvikDisassembly(mir) :
buzbee311ca162013-02-28 15:56:43 -0800796 (opcode < kMirOpFirst) ? Instruction::Name(mir->dalvikInsn.opcode) :
buzbee1fd33462013-03-25 13:40:45 -0700797 extended_mir_op_names_[opcode - kMirOpFirst],
buzbee311ca162013-02-28 15:56:43 -0800798 (mir->optimization_flags & MIR_IGNORE_RANGE_CHECK) != 0 ? " no_rangecheck" : " ",
799 (mir->optimization_flags & MIR_IGNORE_NULL_CHECK) != 0 ? " no_nullcheck" : " ",
800 mir->next ? " | " : " ");
801 }
802 fprintf(file, " }\"];\n\n");
803 } else if (bb->block_type == kExceptionHandling) {
804 char block_name[BLOCK_NAME_LEN];
805
806 GetBlockName(bb, block_name);
807 fprintf(file, " %s [shape=invhouse];\n", block_name);
808 }
809
810 char block_name1[BLOCK_NAME_LEN], block_name2[BLOCK_NAME_LEN];
811
buzbee0d829482013-10-11 15:24:55 -0700812 if (bb->taken != NullBasicBlockId) {
buzbee311ca162013-02-28 15:56:43 -0800813 GetBlockName(bb, block_name1);
buzbee0d829482013-10-11 15:24:55 -0700814 GetBlockName(GetBasicBlock(bb->taken), block_name2);
buzbee311ca162013-02-28 15:56:43 -0800815 fprintf(file, " %s:s -> %s:n [style=dotted]\n",
816 block_name1, block_name2);
817 }
buzbee0d829482013-10-11 15:24:55 -0700818 if (bb->fall_through != NullBasicBlockId) {
buzbee311ca162013-02-28 15:56:43 -0800819 GetBlockName(bb, block_name1);
buzbee0d829482013-10-11 15:24:55 -0700820 GetBlockName(GetBasicBlock(bb->fall_through), block_name2);
buzbee311ca162013-02-28 15:56:43 -0800821 fprintf(file, " %s:s -> %s:n\n", block_name1, block_name2);
822 }
823
buzbee0d829482013-10-11 15:24:55 -0700824 if (bb->successor_block_list_type != kNotUsed) {
buzbee311ca162013-02-28 15:56:43 -0800825 fprintf(file, " succ%04x_%d [shape=%s,label = \"{ \\\n",
826 bb->start_offset, bb->id,
buzbee0d829482013-10-11 15:24:55 -0700827 (bb->successor_block_list_type == kCatch) ? "Mrecord" : "record");
828 GrowableArray<SuccessorBlockInfo*>::Iterator iterator(bb->successor_blocks);
buzbee862a7602013-04-05 10:58:54 -0700829 SuccessorBlockInfo *successor_block_info = iterator.Next();
buzbee311ca162013-02-28 15:56:43 -0800830
831 int succ_id = 0;
832 while (true) {
833 if (successor_block_info == NULL) break;
834
buzbee0d829482013-10-11 15:24:55 -0700835 BasicBlock *dest_block = GetBasicBlock(successor_block_info->block);
buzbee862a7602013-04-05 10:58:54 -0700836 SuccessorBlockInfo *next_successor_block_info = iterator.Next();
buzbee311ca162013-02-28 15:56:43 -0800837
838 fprintf(file, " {<f%d> %04x: %04x\\l}%s\\\n",
839 succ_id++,
840 successor_block_info->key,
841 dest_block->start_offset,
842 (next_successor_block_info != NULL) ? " | " : " ");
843
844 successor_block_info = next_successor_block_info;
845 }
846 fprintf(file, " }\"];\n\n");
847
848 GetBlockName(bb, block_name1);
849 fprintf(file, " %s:s -> succ%04x_%d:n [style=dashed]\n",
850 block_name1, bb->start_offset, bb->id);
851
Razvan A Lupusoru25bc2792014-03-19 14:27:59 -0700852 // Link the successor pseudo-block with all of its potential targets.
853 GrowableArray<SuccessorBlockInfo*>::Iterator iter(bb->successor_blocks);
buzbee311ca162013-02-28 15:56:43 -0800854
Razvan A Lupusoru25bc2792014-03-19 14:27:59 -0700855 succ_id = 0;
856 while (true) {
857 SuccessorBlockInfo *successor_block_info = iter.Next();
858 if (successor_block_info == NULL) break;
buzbee311ca162013-02-28 15:56:43 -0800859
Razvan A Lupusoru25bc2792014-03-19 14:27:59 -0700860 BasicBlock* dest_block = GetBasicBlock(successor_block_info->block);
buzbee311ca162013-02-28 15:56:43 -0800861
Razvan A Lupusoru25bc2792014-03-19 14:27:59 -0700862 GetBlockName(dest_block, block_name2);
863 fprintf(file, " succ%04x_%d:f%d:e -> %s:n\n", bb->start_offset,
864 bb->id, succ_id++, block_name2);
buzbee311ca162013-02-28 15:56:43 -0800865 }
866 }
867 fprintf(file, "\n");
868
869 if (cu_->verbose) {
870 /* Display the dominator tree */
871 GetBlockName(bb, block_name1);
872 fprintf(file, " cfg%s [label=\"%s\", shape=none];\n",
873 block_name1, block_name1);
874 if (bb->i_dom) {
buzbee0d829482013-10-11 15:24:55 -0700875 GetBlockName(GetBasicBlock(bb->i_dom), block_name2);
buzbee311ca162013-02-28 15:56:43 -0800876 fprintf(file, " cfg%s:s -> cfg%s:n\n\n", block_name2, block_name1);
877 }
878 }
879 }
880 fprintf(file, "}\n");
881 fclose(file);
882}
883
buzbee1fd33462013-03-25 13:40:45 -0700884/* Insert an MIR instruction to the end of a basic block */
Jean Christophe Beylercdacac42014-03-13 14:54:59 -0700885void BasicBlock::AppendMIR(MIR* mir) {
886 if (first_mir_insn == nullptr) {
887 DCHECK(last_mir_insn == nullptr);
888 last_mir_insn = first_mir_insn = mir;
889 mir->next = nullptr;
buzbee1fd33462013-03-25 13:40:45 -0700890 } else {
Jean Christophe Beylercdacac42014-03-13 14:54:59 -0700891 last_mir_insn->next = mir;
892 mir->next = nullptr;
893 last_mir_insn = mir;
buzbee1fd33462013-03-25 13:40:45 -0700894 }
895}
896
897/* Insert an MIR instruction to the head of a basic block */
Jean Christophe Beylercdacac42014-03-13 14:54:59 -0700898void BasicBlock::PrependMIR(MIR* mir) {
899 if (first_mir_insn == nullptr) {
900 DCHECK(last_mir_insn == nullptr);
901 last_mir_insn = first_mir_insn = mir;
902 mir->next = nullptr;
buzbee1fd33462013-03-25 13:40:45 -0700903 } else {
Jean Christophe Beylercdacac42014-03-13 14:54:59 -0700904 mir->next = first_mir_insn;
905 first_mir_insn = mir;
buzbee1fd33462013-03-25 13:40:45 -0700906 }
907}
908
909/* Insert a MIR instruction after the specified MIR */
Jean Christophe Beylercdacac42014-03-13 14:54:59 -0700910void BasicBlock::InsertMIRAfter(MIR* current_mir, MIR* new_mir) {
buzbee1fd33462013-03-25 13:40:45 -0700911 new_mir->next = current_mir->next;
912 current_mir->next = new_mir;
913
Jean Christophe Beylercdacac42014-03-13 14:54:59 -0700914 if (last_mir_insn == current_mir) {
buzbee1fd33462013-03-25 13:40:45 -0700915 /* Is the last MIR in the block */
Jean Christophe Beylercdacac42014-03-13 14:54:59 -0700916 last_mir_insn = new_mir;
buzbee1fd33462013-03-25 13:40:45 -0700917 }
918}
919
Jean Christophe Beylercdacac42014-03-13 14:54:59 -0700920MIR* BasicBlock::GetNextUnconditionalMir(MIRGraph* mir_graph, MIR* current) {
Razvan A Lupusoru3bc01742014-02-06 13:18:43 -0800921 MIR* next_mir = nullptr;
922
923 if (current != nullptr) {
924 next_mir = current->next;
925 }
926
927 if (next_mir == nullptr) {
928 // Only look for next MIR that follows unconditionally.
Jean Christophe Beylercdacac42014-03-13 14:54:59 -0700929 if ((taken == NullBasicBlockId) && (fall_through != NullBasicBlockId)) {
930 next_mir = mir_graph->GetBasicBlock(fall_through)->first_mir_insn;
Razvan A Lupusoru3bc01742014-02-06 13:18:43 -0800931 }
932 }
933
934 return next_mir;
935}
936
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700937char* MIRGraph::GetDalvikDisassembly(const MIR* mir) {
buzbee1fd33462013-03-25 13:40:45 -0700938 DecodedInstruction insn = mir->dalvikInsn;
939 std::string str;
940 int flags = 0;
941 int opcode = insn.opcode;
942 char* ret;
943 bool nop = false;
944 SSARepresentation* ssa_rep = mir->ssa_rep;
945 Instruction::Format dalvik_format = Instruction::k10x; // Default to no-operand format
946 int defs = (ssa_rep != NULL) ? ssa_rep->num_defs : 0;
947 int uses = (ssa_rep != NULL) ? ssa_rep->num_uses : 0;
948
949 // Handle special cases.
950 if ((opcode == kMirOpCheck) || (opcode == kMirOpCheckPart2)) {
951 str.append(extended_mir_op_names_[opcode - kMirOpFirst]);
952 str.append(": ");
953 // Recover the original Dex instruction
954 insn = mir->meta.throw_insn->dalvikInsn;
955 ssa_rep = mir->meta.throw_insn->ssa_rep;
956 defs = ssa_rep->num_defs;
957 uses = ssa_rep->num_uses;
958 opcode = insn.opcode;
959 } else if (opcode == kMirOpNop) {
960 str.append("[");
buzbee0d829482013-10-11 15:24:55 -0700961 // Recover original opcode.
962 insn.opcode = Instruction::At(current_code_item_->insns_ + mir->offset)->Opcode();
963 opcode = insn.opcode;
buzbee1fd33462013-03-25 13:40:45 -0700964 nop = true;
965 }
966
967 if (opcode >= kMirOpFirst) {
968 str.append(extended_mir_op_names_[opcode - kMirOpFirst]);
969 } else {
970 dalvik_format = Instruction::FormatOf(insn.opcode);
971 flags = Instruction::FlagsOf(insn.opcode);
972 str.append(Instruction::Name(insn.opcode));
973 }
974
975 if (opcode == kMirOpPhi) {
buzbee0d829482013-10-11 15:24:55 -0700976 BasicBlockId* incoming = mir->meta.phi_incoming;
buzbee1fd33462013-03-25 13:40:45 -0700977 str.append(StringPrintf(" %s = (%s",
978 GetSSANameWithConst(ssa_rep->defs[0], true).c_str(),
979 GetSSANameWithConst(ssa_rep->uses[0], true).c_str()));
Brian Carlstromb1eba212013-07-17 18:07:19 -0700980 str.append(StringPrintf(":%d", incoming[0]));
buzbee1fd33462013-03-25 13:40:45 -0700981 int i;
982 for (i = 1; i < uses; i++) {
983 str.append(StringPrintf(", %s:%d",
984 GetSSANameWithConst(ssa_rep->uses[i], true).c_str(),
985 incoming[i]));
986 }
987 str.append(")");
988 } else if ((flags & Instruction::kBranch) != 0) {
989 // For branches, decode the instructions to print out the branch targets.
990 int offset = 0;
991 switch (dalvik_format) {
992 case Instruction::k21t:
993 str.append(StringPrintf(" %s,", GetSSANameWithConst(ssa_rep->uses[0], false).c_str()));
994 offset = insn.vB;
995 break;
996 case Instruction::k22t:
997 str.append(StringPrintf(" %s, %s,", GetSSANameWithConst(ssa_rep->uses[0], false).c_str(),
998 GetSSANameWithConst(ssa_rep->uses[1], false).c_str()));
999 offset = insn.vC;
1000 break;
1001 case Instruction::k10t:
1002 case Instruction::k20t:
1003 case Instruction::k30t:
1004 offset = insn.vA;
1005 break;
1006 default:
1007 LOG(FATAL) << "Unexpected branch format " << dalvik_format << " from " << insn.opcode;
1008 }
1009 str.append(StringPrintf(" 0x%x (%c%x)", mir->offset + offset,
1010 offset > 0 ? '+' : '-', offset > 0 ? offset : -offset));
1011 } else {
1012 // For invokes-style formats, treat wide regs as a pair of singles
1013 bool show_singles = ((dalvik_format == Instruction::k35c) ||
1014 (dalvik_format == Instruction::k3rc));
1015 if (defs != 0) {
1016 str.append(StringPrintf(" %s", GetSSANameWithConst(ssa_rep->defs[0], false).c_str()));
1017 if (uses != 0) {
1018 str.append(", ");
1019 }
1020 }
1021 for (int i = 0; i < uses; i++) {
1022 str.append(
1023 StringPrintf(" %s", GetSSANameWithConst(ssa_rep->uses[i], show_singles).c_str()));
1024 if (!show_singles && (reg_location_ != NULL) && reg_location_[i].wide) {
1025 // For the listing, skip the high sreg.
1026 i++;
1027 }
1028 if (i != (uses -1)) {
1029 str.append(",");
1030 }
1031 }
1032 switch (dalvik_format) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001033 case Instruction::k11n: // Add one immediate from vB
buzbee1fd33462013-03-25 13:40:45 -07001034 case Instruction::k21s:
1035 case Instruction::k31i:
1036 case Instruction::k21h:
1037 str.append(StringPrintf(", #%d", insn.vB));
1038 break;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001039 case Instruction::k51l: // Add one wide immediate
Ian Rogers23b03b52014-01-24 11:10:03 -08001040 str.append(StringPrintf(", #%" PRId64, insn.vB_wide));
buzbee1fd33462013-03-25 13:40:45 -07001041 break;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001042 case Instruction::k21c: // One register, one string/type/method index
buzbee1fd33462013-03-25 13:40:45 -07001043 case Instruction::k31c:
1044 str.append(StringPrintf(", index #%d", insn.vB));
1045 break;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001046 case Instruction::k22c: // Two registers, one string/type/method index
buzbee1fd33462013-03-25 13:40:45 -07001047 str.append(StringPrintf(", index #%d", insn.vC));
1048 break;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001049 case Instruction::k22s: // Add one immediate from vC
buzbee1fd33462013-03-25 13:40:45 -07001050 case Instruction::k22b:
1051 str.append(StringPrintf(", #%d", insn.vC));
1052 break;
Brian Carlstrom02c8cc62013-07-18 15:54:44 -07001053 default: {
1054 // Nothing left to print
buzbee1fd33462013-03-25 13:40:45 -07001055 }
Brian Carlstrom02c8cc62013-07-18 15:54:44 -07001056 }
buzbee1fd33462013-03-25 13:40:45 -07001057 }
1058 if (nop) {
1059 str.append("]--optimized away");
1060 }
1061 int length = str.length() + 1;
Vladimir Marko83cc7ae2014-02-12 18:02:05 +00001062 ret = static_cast<char*>(arena_->Alloc(length, kArenaAllocDFInfo));
buzbee1fd33462013-03-25 13:40:45 -07001063 strncpy(ret, str.c_str(), length);
1064 return ret;
1065}
1066
1067/* Turn method name into a legal Linux file name */
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001068void MIRGraph::ReplaceSpecialChars(std::string& str) {
Brian Carlstrom9b7085a2013-07-18 15:15:21 -07001069 static const struct { const char before; const char after; } match[] = {
1070 {'/', '-'}, {';', '#'}, {' ', '#'}, {'$', '+'},
1071 {'(', '@'}, {')', '@'}, {'<', '='}, {'>', '='}
1072 };
buzbee1fd33462013-03-25 13:40:45 -07001073 for (unsigned int i = 0; i < sizeof(match)/sizeof(match[0]); i++) {
1074 std::replace(str.begin(), str.end(), match[i].before, match[i].after);
1075 }
1076}
1077
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001078std::string MIRGraph::GetSSAName(int ssa_reg) {
Ian Rogers39ebcb82013-05-30 16:57:23 -07001079 // TODO: This value is needed for LLVM and debugging. Currently, we compute this and then copy to
1080 // the arena. We should be smarter and just place straight into the arena, or compute the
1081 // value more lazily.
buzbee1fd33462013-03-25 13:40:45 -07001082 return StringPrintf("v%d_%d", SRegToVReg(ssa_reg), GetSSASubscript(ssa_reg));
1083}
1084
1085// Similar to GetSSAName, but if ssa name represents an immediate show that as well.
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001086std::string MIRGraph::GetSSANameWithConst(int ssa_reg, bool singles_only) {
buzbee1fd33462013-03-25 13:40:45 -07001087 if (reg_location_ == NULL) {
1088 // Pre-SSA - just use the standard name
1089 return GetSSAName(ssa_reg);
1090 }
1091 if (IsConst(reg_location_[ssa_reg])) {
1092 if (!singles_only && reg_location_[ssa_reg].wide) {
Ian Rogers23b03b52014-01-24 11:10:03 -08001093 return StringPrintf("v%d_%d#0x%" PRIx64, SRegToVReg(ssa_reg), GetSSASubscript(ssa_reg),
buzbee1fd33462013-03-25 13:40:45 -07001094 ConstantValueWide(reg_location_[ssa_reg]));
1095 } else {
Brian Carlstromb1eba212013-07-17 18:07:19 -07001096 return StringPrintf("v%d_%d#0x%x", SRegToVReg(ssa_reg), GetSSASubscript(ssa_reg),
buzbee1fd33462013-03-25 13:40:45 -07001097 ConstantValue(reg_location_[ssa_reg]));
1098 }
1099 } else {
1100 return StringPrintf("v%d_%d", SRegToVReg(ssa_reg), GetSSASubscript(ssa_reg));
1101 }
1102}
1103
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001104void MIRGraph::GetBlockName(BasicBlock* bb, char* name) {
buzbee1fd33462013-03-25 13:40:45 -07001105 switch (bb->block_type) {
1106 case kEntryBlock:
1107 snprintf(name, BLOCK_NAME_LEN, "entry_%d", bb->id);
1108 break;
1109 case kExitBlock:
1110 snprintf(name, BLOCK_NAME_LEN, "exit_%d", bb->id);
1111 break;
1112 case kDalvikByteCode:
1113 snprintf(name, BLOCK_NAME_LEN, "block%04x_%d", bb->start_offset, bb->id);
1114 break;
1115 case kExceptionHandling:
1116 snprintf(name, BLOCK_NAME_LEN, "exception%04x_%d", bb->start_offset,
1117 bb->id);
1118 break;
1119 default:
1120 snprintf(name, BLOCK_NAME_LEN, "_%d", bb->id);
1121 break;
1122 }
1123}
1124
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001125const char* MIRGraph::GetShortyFromTargetIdx(int target_idx) {
buzbee0d829482013-10-11 15:24:55 -07001126 // TODO: for inlining support, use current code unit.
buzbee1fd33462013-03-25 13:40:45 -07001127 const DexFile::MethodId& method_id = cu_->dex_file->GetMethodId(target_idx);
1128 return cu_->dex_file->GetShorty(method_id.proto_idx_);
1129}
1130
1131/* Debug Utility - dump a compilation unit */
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001132void MIRGraph::DumpMIRGraph() {
buzbee1fd33462013-03-25 13:40:45 -07001133 BasicBlock* bb;
1134 const char* block_type_names[] = {
buzbee17189ac2013-11-08 11:07:02 -08001135 "Null Block",
buzbee1fd33462013-03-25 13:40:45 -07001136 "Entry Block",
1137 "Code Block",
1138 "Exit Block",
1139 "Exception Handling",
1140 "Catch Block"
1141 };
1142
1143 LOG(INFO) << "Compiling " << PrettyMethod(cu_->method_idx, *cu_->dex_file);
1144 LOG(INFO) << cu_->insns << " insns";
1145 LOG(INFO) << GetNumBlocks() << " blocks in total";
buzbee862a7602013-04-05 10:58:54 -07001146 GrowableArray<BasicBlock*>::Iterator iterator(&block_list_);
buzbee1fd33462013-03-25 13:40:45 -07001147
1148 while (true) {
buzbee862a7602013-04-05 10:58:54 -07001149 bb = iterator.Next();
buzbee1fd33462013-03-25 13:40:45 -07001150 if (bb == NULL) break;
1151 LOG(INFO) << StringPrintf("Block %d (%s) (insn %04x - %04x%s)",
1152 bb->id,
1153 block_type_names[bb->block_type],
1154 bb->start_offset,
1155 bb->last_mir_insn ? bb->last_mir_insn->offset : bb->start_offset,
1156 bb->last_mir_insn ? "" : " empty");
buzbee0d829482013-10-11 15:24:55 -07001157 if (bb->taken != NullBasicBlockId) {
1158 LOG(INFO) << " Taken branch: block " << bb->taken
1159 << "(0x" << std::hex << GetBasicBlock(bb->taken)->start_offset << ")";
buzbee1fd33462013-03-25 13:40:45 -07001160 }
buzbee0d829482013-10-11 15:24:55 -07001161 if (bb->fall_through != NullBasicBlockId) {
1162 LOG(INFO) << " Fallthrough : block " << bb->fall_through
1163 << " (0x" << std::hex << GetBasicBlock(bb->fall_through)->start_offset << ")";
buzbee1fd33462013-03-25 13:40:45 -07001164 }
1165 }
1166}
1167
1168/*
1169 * Build an array of location records for the incoming arguments.
1170 * Note: one location record per word of arguments, with dummy
1171 * high-word loc for wide arguments. Also pull up any following
1172 * MOVE_RESULT and incorporate it into the invoke.
1173 */
1174CallInfo* MIRGraph::NewMemCallInfo(BasicBlock* bb, MIR* mir, InvokeType type,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001175 bool is_range) {
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -07001176 CallInfo* info = static_cast<CallInfo*>(arena_->Alloc(sizeof(CallInfo),
Vladimir Marko83cc7ae2014-02-12 18:02:05 +00001177 kArenaAllocMisc));
buzbee1fd33462013-03-25 13:40:45 -07001178 MIR* move_result_mir = FindMoveResult(bb, mir);
1179 if (move_result_mir == NULL) {
1180 info->result.location = kLocInvalid;
1181 } else {
1182 info->result = GetRawDest(move_result_mir);
buzbee1fd33462013-03-25 13:40:45 -07001183 move_result_mir->dalvikInsn.opcode = static_cast<Instruction::Code>(kMirOpNop);
1184 }
1185 info->num_arg_words = mir->ssa_rep->num_uses;
1186 info->args = (info->num_arg_words == 0) ? NULL : static_cast<RegLocation*>
Vladimir Marko83cc7ae2014-02-12 18:02:05 +00001187 (arena_->Alloc(sizeof(RegLocation) * info->num_arg_words, kArenaAllocMisc));
buzbee1fd33462013-03-25 13:40:45 -07001188 for (int i = 0; i < info->num_arg_words; i++) {
1189 info->args[i] = GetRawSrc(mir, i);
1190 }
1191 info->opt_flags = mir->optimization_flags;
1192 info->type = type;
1193 info->is_range = is_range;
1194 info->index = mir->dalvikInsn.vB;
1195 info->offset = mir->offset;
Vladimir Markof096aad2014-01-23 15:51:58 +00001196 info->mir = mir;
buzbee1fd33462013-03-25 13:40:45 -07001197 return info;
1198}
1199
buzbee862a7602013-04-05 10:58:54 -07001200// Allocate a new basic block.
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001201BasicBlock* MIRGraph::NewMemBB(BBType block_type, int block_id) {
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -07001202 BasicBlock* bb = static_cast<BasicBlock*>(arena_->Alloc(sizeof(BasicBlock),
Vladimir Marko83cc7ae2014-02-12 18:02:05 +00001203 kArenaAllocBB));
buzbee862a7602013-04-05 10:58:54 -07001204 bb->block_type = block_type;
1205 bb->id = block_id;
1206 // TUNING: better estimate of the exit block predecessors?
buzbee0d829482013-10-11 15:24:55 -07001207 bb->predecessors = new (arena_) GrowableArray<BasicBlockId>(arena_,
Brian Carlstromdf629502013-07-17 22:39:56 -07001208 (block_type == kExitBlock) ? 2048 : 2,
1209 kGrowableArrayPredecessors);
buzbee0d829482013-10-11 15:24:55 -07001210 bb->successor_block_list_type = kNotUsed;
buzbee862a7602013-04-05 10:58:54 -07001211 block_id_map_.Put(block_id, block_id);
1212 return bb;
1213}
buzbee1fd33462013-03-25 13:40:45 -07001214
Jean Christophe Beyler4e97c532014-01-07 10:07:18 -08001215void MIRGraph::InitializeConstantPropagation() {
1216 is_constant_v_ = new (arena_) ArenaBitVector(arena_, GetNumSSARegs(), false);
Vladimir Marko83cc7ae2014-02-12 18:02:05 +00001217 constant_values_ = static_cast<int*>(arena_->Alloc(sizeof(int) * GetNumSSARegs(), kArenaAllocDFInfo));
Jean Christophe Beyler4e97c532014-01-07 10:07:18 -08001218}
1219
1220void MIRGraph::InitializeMethodUses() {
1221 // The gate starts by initializing the use counts
1222 int num_ssa_regs = GetNumSSARegs();
1223 use_counts_.Resize(num_ssa_regs + 32);
1224 raw_use_counts_.Resize(num_ssa_regs + 32);
1225 // Initialize list
1226 for (int i = 0; i < num_ssa_regs; i++) {
1227 use_counts_.Insert(0);
1228 raw_use_counts_.Insert(0);
1229 }
1230}
1231
1232void MIRGraph::InitializeSSATransformation() {
1233 /* Compute the DFS order */
1234 ComputeDFSOrders();
1235
1236 /* Compute the dominator info */
1237 ComputeDominators();
1238
1239 /* Allocate data structures in preparation for SSA conversion */
1240 CompilerInitializeSSAConversion();
1241
1242 /* Find out the "Dalvik reg def x block" relation */
1243 ComputeDefBlockMatrix();
1244
1245 /* Insert phi nodes to dominance frontiers for all variables */
1246 InsertPhiNodes();
1247
1248 /* Rename register names by local defs and phi nodes */
1249 ClearAllVisitedFlags();
1250 DoDFSPreOrderSSARename(GetEntryBlock());
Jean Christophe Beyler4e97c532014-01-07 10:07:18 -08001251}
1252
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001253} // namespace art