blob: 34f140b31c514b9500fc81397bbf2ed9691c9530 [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
buzbee1da1e2f2013-11-15 13:37:01 -0800624 uint64_t df_flags = oat_data_flow_attributes_[insn->dalvikInsn.opcode];
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
746// TODO: use a configurable base prefix, and adjust callers to supply pass name.
747/* Dump the CFG into a DOT graph */
Jean Christophe Beylerd0a51552014-01-10 14:18:31 -0800748void MIRGraph::DumpCFG(const char* dir_prefix, bool all_blocks, const char *suffix) {
buzbee311ca162013-02-28 15:56:43 -0800749 FILE* file;
750 std::string fname(PrettyMethod(cu_->method_idx, *cu_->dex_file));
751 ReplaceSpecialChars(fname);
Jean Christophe Beylerd0a51552014-01-10 14:18:31 -0800752 fname = StringPrintf("%s%s%x%s.dot", dir_prefix, fname.c_str(),
753 GetBasicBlock(GetEntryBlock()->fall_through)->start_offset,
754 suffix == nullptr ? "" : suffix);
buzbee311ca162013-02-28 15:56:43 -0800755 file = fopen(fname.c_str(), "w");
756 if (file == NULL) {
757 return;
758 }
759 fprintf(file, "digraph G {\n");
760
761 fprintf(file, " rankdir=TB\n");
762
763 int num_blocks = all_blocks ? GetNumBlocks() : num_reachable_blocks_;
764 int idx;
765
766 for (idx = 0; idx < num_blocks; idx++) {
buzbee862a7602013-04-05 10:58:54 -0700767 int block_idx = all_blocks ? idx : dfs_order_->Get(idx);
buzbee311ca162013-02-28 15:56:43 -0800768 BasicBlock *bb = GetBasicBlock(block_idx);
769 if (bb == NULL) break;
770 if (bb->block_type == kDead) continue;
771 if (bb->block_type == kEntryBlock) {
772 fprintf(file, " entry_%d [shape=Mdiamond];\n", bb->id);
773 } else if (bb->block_type == kExitBlock) {
774 fprintf(file, " exit_%d [shape=Mdiamond];\n", bb->id);
775 } else if (bb->block_type == kDalvikByteCode) {
776 fprintf(file, " block%04x_%d [shape=record,label = \"{ \\\n",
777 bb->start_offset, bb->id);
778 const MIR *mir;
779 fprintf(file, " {block id %d\\l}%s\\\n", bb->id,
780 bb->first_mir_insn ? " | " : " ");
781 for (mir = bb->first_mir_insn; mir; mir = mir->next) {
782 int opcode = mir->dalvikInsn.opcode;
783 fprintf(file, " {%04x %s %s %s\\l}%s\\\n", mir->offset,
buzbee1fd33462013-03-25 13:40:45 -0700784 mir->ssa_rep ? GetDalvikDisassembly(mir) :
buzbee311ca162013-02-28 15:56:43 -0800785 (opcode < kMirOpFirst) ? Instruction::Name(mir->dalvikInsn.opcode) :
buzbee1fd33462013-03-25 13:40:45 -0700786 extended_mir_op_names_[opcode - kMirOpFirst],
buzbee311ca162013-02-28 15:56:43 -0800787 (mir->optimization_flags & MIR_IGNORE_RANGE_CHECK) != 0 ? " no_rangecheck" : " ",
788 (mir->optimization_flags & MIR_IGNORE_NULL_CHECK) != 0 ? " no_nullcheck" : " ",
789 mir->next ? " | " : " ");
790 }
791 fprintf(file, " }\"];\n\n");
792 } else if (bb->block_type == kExceptionHandling) {
793 char block_name[BLOCK_NAME_LEN];
794
795 GetBlockName(bb, block_name);
796 fprintf(file, " %s [shape=invhouse];\n", block_name);
797 }
798
799 char block_name1[BLOCK_NAME_LEN], block_name2[BLOCK_NAME_LEN];
800
buzbee0d829482013-10-11 15:24:55 -0700801 if (bb->taken != NullBasicBlockId) {
buzbee311ca162013-02-28 15:56:43 -0800802 GetBlockName(bb, block_name1);
buzbee0d829482013-10-11 15:24:55 -0700803 GetBlockName(GetBasicBlock(bb->taken), block_name2);
buzbee311ca162013-02-28 15:56:43 -0800804 fprintf(file, " %s:s -> %s:n [style=dotted]\n",
805 block_name1, block_name2);
806 }
buzbee0d829482013-10-11 15:24:55 -0700807 if (bb->fall_through != NullBasicBlockId) {
buzbee311ca162013-02-28 15:56:43 -0800808 GetBlockName(bb, block_name1);
buzbee0d829482013-10-11 15:24:55 -0700809 GetBlockName(GetBasicBlock(bb->fall_through), block_name2);
buzbee311ca162013-02-28 15:56:43 -0800810 fprintf(file, " %s:s -> %s:n\n", block_name1, block_name2);
811 }
812
buzbee0d829482013-10-11 15:24:55 -0700813 if (bb->successor_block_list_type != kNotUsed) {
buzbee311ca162013-02-28 15:56:43 -0800814 fprintf(file, " succ%04x_%d [shape=%s,label = \"{ \\\n",
815 bb->start_offset, bb->id,
buzbee0d829482013-10-11 15:24:55 -0700816 (bb->successor_block_list_type == kCatch) ? "Mrecord" : "record");
817 GrowableArray<SuccessorBlockInfo*>::Iterator iterator(bb->successor_blocks);
buzbee862a7602013-04-05 10:58:54 -0700818 SuccessorBlockInfo *successor_block_info = iterator.Next();
buzbee311ca162013-02-28 15:56:43 -0800819
820 int succ_id = 0;
821 while (true) {
822 if (successor_block_info == NULL) break;
823
buzbee0d829482013-10-11 15:24:55 -0700824 BasicBlock *dest_block = GetBasicBlock(successor_block_info->block);
buzbee862a7602013-04-05 10:58:54 -0700825 SuccessorBlockInfo *next_successor_block_info = iterator.Next();
buzbee311ca162013-02-28 15:56:43 -0800826
827 fprintf(file, " {<f%d> %04x: %04x\\l}%s\\\n",
828 succ_id++,
829 successor_block_info->key,
830 dest_block->start_offset,
831 (next_successor_block_info != NULL) ? " | " : " ");
832
833 successor_block_info = next_successor_block_info;
834 }
835 fprintf(file, " }\"];\n\n");
836
837 GetBlockName(bb, block_name1);
838 fprintf(file, " %s:s -> succ%04x_%d:n [style=dashed]\n",
839 block_name1, bb->start_offset, bb->id);
840
buzbee0d829482013-10-11 15:24:55 -0700841 if (bb->successor_block_list_type == kPackedSwitch ||
842 bb->successor_block_list_type == kSparseSwitch) {
843 GrowableArray<SuccessorBlockInfo*>::Iterator iter(bb->successor_blocks);
buzbee311ca162013-02-28 15:56:43 -0800844
845 succ_id = 0;
846 while (true) {
buzbee862a7602013-04-05 10:58:54 -0700847 SuccessorBlockInfo *successor_block_info = iter.Next();
buzbee311ca162013-02-28 15:56:43 -0800848 if (successor_block_info == NULL) break;
849
buzbee0d829482013-10-11 15:24:55 -0700850 BasicBlock* dest_block = GetBasicBlock(successor_block_info->block);
buzbee311ca162013-02-28 15:56:43 -0800851
852 GetBlockName(dest_block, block_name2);
853 fprintf(file, " succ%04x_%d:f%d:e -> %s:n\n", bb->start_offset,
854 bb->id, succ_id++, block_name2);
855 }
856 }
857 }
858 fprintf(file, "\n");
859
860 if (cu_->verbose) {
861 /* Display the dominator tree */
862 GetBlockName(bb, block_name1);
863 fprintf(file, " cfg%s [label=\"%s\", shape=none];\n",
864 block_name1, block_name1);
865 if (bb->i_dom) {
buzbee0d829482013-10-11 15:24:55 -0700866 GetBlockName(GetBasicBlock(bb->i_dom), block_name2);
buzbee311ca162013-02-28 15:56:43 -0800867 fprintf(file, " cfg%s:s -> cfg%s:n\n\n", block_name2, block_name1);
868 }
869 }
870 }
871 fprintf(file, "}\n");
872 fclose(file);
873}
874
buzbee1fd33462013-03-25 13:40:45 -0700875/* Insert an MIR instruction to the end of a basic block */
Jean Christophe Beylercdacac42014-03-13 14:54:59 -0700876void BasicBlock::AppendMIR(MIR* mir) {
877 if (first_mir_insn == nullptr) {
878 DCHECK(last_mir_insn == nullptr);
879 last_mir_insn = first_mir_insn = mir;
880 mir->next = nullptr;
buzbee1fd33462013-03-25 13:40:45 -0700881 } else {
Jean Christophe Beylercdacac42014-03-13 14:54:59 -0700882 last_mir_insn->next = mir;
883 mir->next = nullptr;
884 last_mir_insn = mir;
buzbee1fd33462013-03-25 13:40:45 -0700885 }
886}
887
888/* Insert an MIR instruction to the head of a basic block */
Jean Christophe Beylercdacac42014-03-13 14:54:59 -0700889void BasicBlock::PrependMIR(MIR* mir) {
890 if (first_mir_insn == nullptr) {
891 DCHECK(last_mir_insn == nullptr);
892 last_mir_insn = first_mir_insn = mir;
893 mir->next = nullptr;
buzbee1fd33462013-03-25 13:40:45 -0700894 } else {
Jean Christophe Beylercdacac42014-03-13 14:54:59 -0700895 mir->next = first_mir_insn;
896 first_mir_insn = mir;
buzbee1fd33462013-03-25 13:40:45 -0700897 }
898}
899
900/* Insert a MIR instruction after the specified MIR */
Jean Christophe Beylercdacac42014-03-13 14:54:59 -0700901void BasicBlock::InsertMIRAfter(MIR* current_mir, MIR* new_mir) {
buzbee1fd33462013-03-25 13:40:45 -0700902 new_mir->next = current_mir->next;
903 current_mir->next = new_mir;
904
Jean Christophe Beylercdacac42014-03-13 14:54:59 -0700905 if (last_mir_insn == current_mir) {
buzbee1fd33462013-03-25 13:40:45 -0700906 /* Is the last MIR in the block */
Jean Christophe Beylercdacac42014-03-13 14:54:59 -0700907 last_mir_insn = new_mir;
buzbee1fd33462013-03-25 13:40:45 -0700908 }
909}
910
Jean Christophe Beylercdacac42014-03-13 14:54:59 -0700911MIR* BasicBlock::GetNextUnconditionalMir(MIRGraph* mir_graph, MIR* current) {
Razvan A Lupusoru3bc01742014-02-06 13:18:43 -0800912 MIR* next_mir = nullptr;
913
914 if (current != nullptr) {
915 next_mir = current->next;
916 }
917
918 if (next_mir == nullptr) {
919 // Only look for next MIR that follows unconditionally.
Jean Christophe Beylercdacac42014-03-13 14:54:59 -0700920 if ((taken == NullBasicBlockId) && (fall_through != NullBasicBlockId)) {
921 next_mir = mir_graph->GetBasicBlock(fall_through)->first_mir_insn;
Razvan A Lupusoru3bc01742014-02-06 13:18:43 -0800922 }
923 }
924
925 return next_mir;
926}
927
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700928char* MIRGraph::GetDalvikDisassembly(const MIR* mir) {
buzbee1fd33462013-03-25 13:40:45 -0700929 DecodedInstruction insn = mir->dalvikInsn;
930 std::string str;
931 int flags = 0;
932 int opcode = insn.opcode;
933 char* ret;
934 bool nop = false;
935 SSARepresentation* ssa_rep = mir->ssa_rep;
936 Instruction::Format dalvik_format = Instruction::k10x; // Default to no-operand format
937 int defs = (ssa_rep != NULL) ? ssa_rep->num_defs : 0;
938 int uses = (ssa_rep != NULL) ? ssa_rep->num_uses : 0;
939
940 // Handle special cases.
941 if ((opcode == kMirOpCheck) || (opcode == kMirOpCheckPart2)) {
942 str.append(extended_mir_op_names_[opcode - kMirOpFirst]);
943 str.append(": ");
944 // Recover the original Dex instruction
945 insn = mir->meta.throw_insn->dalvikInsn;
946 ssa_rep = mir->meta.throw_insn->ssa_rep;
947 defs = ssa_rep->num_defs;
948 uses = ssa_rep->num_uses;
949 opcode = insn.opcode;
950 } else if (opcode == kMirOpNop) {
951 str.append("[");
buzbee0d829482013-10-11 15:24:55 -0700952 // Recover original opcode.
953 insn.opcode = Instruction::At(current_code_item_->insns_ + mir->offset)->Opcode();
954 opcode = insn.opcode;
buzbee1fd33462013-03-25 13:40:45 -0700955 nop = true;
956 }
957
958 if (opcode >= kMirOpFirst) {
959 str.append(extended_mir_op_names_[opcode - kMirOpFirst]);
960 } else {
961 dalvik_format = Instruction::FormatOf(insn.opcode);
962 flags = Instruction::FlagsOf(insn.opcode);
963 str.append(Instruction::Name(insn.opcode));
964 }
965
966 if (opcode == kMirOpPhi) {
buzbee0d829482013-10-11 15:24:55 -0700967 BasicBlockId* incoming = mir->meta.phi_incoming;
buzbee1fd33462013-03-25 13:40:45 -0700968 str.append(StringPrintf(" %s = (%s",
969 GetSSANameWithConst(ssa_rep->defs[0], true).c_str(),
970 GetSSANameWithConst(ssa_rep->uses[0], true).c_str()));
Brian Carlstromb1eba212013-07-17 18:07:19 -0700971 str.append(StringPrintf(":%d", incoming[0]));
buzbee1fd33462013-03-25 13:40:45 -0700972 int i;
973 for (i = 1; i < uses; i++) {
974 str.append(StringPrintf(", %s:%d",
975 GetSSANameWithConst(ssa_rep->uses[i], true).c_str(),
976 incoming[i]));
977 }
978 str.append(")");
979 } else if ((flags & Instruction::kBranch) != 0) {
980 // For branches, decode the instructions to print out the branch targets.
981 int offset = 0;
982 switch (dalvik_format) {
983 case Instruction::k21t:
984 str.append(StringPrintf(" %s,", GetSSANameWithConst(ssa_rep->uses[0], false).c_str()));
985 offset = insn.vB;
986 break;
987 case Instruction::k22t:
988 str.append(StringPrintf(" %s, %s,", GetSSANameWithConst(ssa_rep->uses[0], false).c_str(),
989 GetSSANameWithConst(ssa_rep->uses[1], false).c_str()));
990 offset = insn.vC;
991 break;
992 case Instruction::k10t:
993 case Instruction::k20t:
994 case Instruction::k30t:
995 offset = insn.vA;
996 break;
997 default:
998 LOG(FATAL) << "Unexpected branch format " << dalvik_format << " from " << insn.opcode;
999 }
1000 str.append(StringPrintf(" 0x%x (%c%x)", mir->offset + offset,
1001 offset > 0 ? '+' : '-', offset > 0 ? offset : -offset));
1002 } else {
1003 // For invokes-style formats, treat wide regs as a pair of singles
1004 bool show_singles = ((dalvik_format == Instruction::k35c) ||
1005 (dalvik_format == Instruction::k3rc));
1006 if (defs != 0) {
1007 str.append(StringPrintf(" %s", GetSSANameWithConst(ssa_rep->defs[0], false).c_str()));
1008 if (uses != 0) {
1009 str.append(", ");
1010 }
1011 }
1012 for (int i = 0; i < uses; i++) {
1013 str.append(
1014 StringPrintf(" %s", GetSSANameWithConst(ssa_rep->uses[i], show_singles).c_str()));
1015 if (!show_singles && (reg_location_ != NULL) && reg_location_[i].wide) {
1016 // For the listing, skip the high sreg.
1017 i++;
1018 }
1019 if (i != (uses -1)) {
1020 str.append(",");
1021 }
1022 }
1023 switch (dalvik_format) {
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001024 case Instruction::k11n: // Add one immediate from vB
buzbee1fd33462013-03-25 13:40:45 -07001025 case Instruction::k21s:
1026 case Instruction::k31i:
1027 case Instruction::k21h:
1028 str.append(StringPrintf(", #%d", insn.vB));
1029 break;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001030 case Instruction::k51l: // Add one wide immediate
Ian Rogers23b03b52014-01-24 11:10:03 -08001031 str.append(StringPrintf(", #%" PRId64, insn.vB_wide));
buzbee1fd33462013-03-25 13:40:45 -07001032 break;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001033 case Instruction::k21c: // One register, one string/type/method index
buzbee1fd33462013-03-25 13:40:45 -07001034 case Instruction::k31c:
1035 str.append(StringPrintf(", index #%d", insn.vB));
1036 break;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001037 case Instruction::k22c: // Two registers, one string/type/method index
buzbee1fd33462013-03-25 13:40:45 -07001038 str.append(StringPrintf(", index #%d", insn.vC));
1039 break;
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001040 case Instruction::k22s: // Add one immediate from vC
buzbee1fd33462013-03-25 13:40:45 -07001041 case Instruction::k22b:
1042 str.append(StringPrintf(", #%d", insn.vC));
1043 break;
Brian Carlstrom02c8cc62013-07-18 15:54:44 -07001044 default: {
1045 // Nothing left to print
buzbee1fd33462013-03-25 13:40:45 -07001046 }
Brian Carlstrom02c8cc62013-07-18 15:54:44 -07001047 }
buzbee1fd33462013-03-25 13:40:45 -07001048 }
1049 if (nop) {
1050 str.append("]--optimized away");
1051 }
1052 int length = str.length() + 1;
Vladimir Marko83cc7ae2014-02-12 18:02:05 +00001053 ret = static_cast<char*>(arena_->Alloc(length, kArenaAllocDFInfo));
buzbee1fd33462013-03-25 13:40:45 -07001054 strncpy(ret, str.c_str(), length);
1055 return ret;
1056}
1057
1058/* Turn method name into a legal Linux file name */
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001059void MIRGraph::ReplaceSpecialChars(std::string& str) {
Brian Carlstrom9b7085a2013-07-18 15:15:21 -07001060 static const struct { const char before; const char after; } match[] = {
1061 {'/', '-'}, {';', '#'}, {' ', '#'}, {'$', '+'},
1062 {'(', '@'}, {')', '@'}, {'<', '='}, {'>', '='}
1063 };
buzbee1fd33462013-03-25 13:40:45 -07001064 for (unsigned int i = 0; i < sizeof(match)/sizeof(match[0]); i++) {
1065 std::replace(str.begin(), str.end(), match[i].before, match[i].after);
1066 }
1067}
1068
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001069std::string MIRGraph::GetSSAName(int ssa_reg) {
Ian Rogers39ebcb82013-05-30 16:57:23 -07001070 // TODO: This value is needed for LLVM and debugging. Currently, we compute this and then copy to
1071 // the arena. We should be smarter and just place straight into the arena, or compute the
1072 // value more lazily.
buzbee1fd33462013-03-25 13:40:45 -07001073 return StringPrintf("v%d_%d", SRegToVReg(ssa_reg), GetSSASubscript(ssa_reg));
1074}
1075
1076// Similar to GetSSAName, but if ssa name represents an immediate show that as well.
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001077std::string MIRGraph::GetSSANameWithConst(int ssa_reg, bool singles_only) {
buzbee1fd33462013-03-25 13:40:45 -07001078 if (reg_location_ == NULL) {
1079 // Pre-SSA - just use the standard name
1080 return GetSSAName(ssa_reg);
1081 }
1082 if (IsConst(reg_location_[ssa_reg])) {
1083 if (!singles_only && reg_location_[ssa_reg].wide) {
Ian Rogers23b03b52014-01-24 11:10:03 -08001084 return StringPrintf("v%d_%d#0x%" PRIx64, SRegToVReg(ssa_reg), GetSSASubscript(ssa_reg),
buzbee1fd33462013-03-25 13:40:45 -07001085 ConstantValueWide(reg_location_[ssa_reg]));
1086 } else {
Brian Carlstromb1eba212013-07-17 18:07:19 -07001087 return StringPrintf("v%d_%d#0x%x", SRegToVReg(ssa_reg), GetSSASubscript(ssa_reg),
buzbee1fd33462013-03-25 13:40:45 -07001088 ConstantValue(reg_location_[ssa_reg]));
1089 }
1090 } else {
1091 return StringPrintf("v%d_%d", SRegToVReg(ssa_reg), GetSSASubscript(ssa_reg));
1092 }
1093}
1094
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001095void MIRGraph::GetBlockName(BasicBlock* bb, char* name) {
buzbee1fd33462013-03-25 13:40:45 -07001096 switch (bb->block_type) {
1097 case kEntryBlock:
1098 snprintf(name, BLOCK_NAME_LEN, "entry_%d", bb->id);
1099 break;
1100 case kExitBlock:
1101 snprintf(name, BLOCK_NAME_LEN, "exit_%d", bb->id);
1102 break;
1103 case kDalvikByteCode:
1104 snprintf(name, BLOCK_NAME_LEN, "block%04x_%d", bb->start_offset, bb->id);
1105 break;
1106 case kExceptionHandling:
1107 snprintf(name, BLOCK_NAME_LEN, "exception%04x_%d", bb->start_offset,
1108 bb->id);
1109 break;
1110 default:
1111 snprintf(name, BLOCK_NAME_LEN, "_%d", bb->id);
1112 break;
1113 }
1114}
1115
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001116const char* MIRGraph::GetShortyFromTargetIdx(int target_idx) {
buzbee0d829482013-10-11 15:24:55 -07001117 // TODO: for inlining support, use current code unit.
buzbee1fd33462013-03-25 13:40:45 -07001118 const DexFile::MethodId& method_id = cu_->dex_file->GetMethodId(target_idx);
1119 return cu_->dex_file->GetShorty(method_id.proto_idx_);
1120}
1121
1122/* Debug Utility - dump a compilation unit */
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001123void MIRGraph::DumpMIRGraph() {
buzbee1fd33462013-03-25 13:40:45 -07001124 BasicBlock* bb;
1125 const char* block_type_names[] = {
buzbee17189ac2013-11-08 11:07:02 -08001126 "Null Block",
buzbee1fd33462013-03-25 13:40:45 -07001127 "Entry Block",
1128 "Code Block",
1129 "Exit Block",
1130 "Exception Handling",
1131 "Catch Block"
1132 };
1133
1134 LOG(INFO) << "Compiling " << PrettyMethod(cu_->method_idx, *cu_->dex_file);
1135 LOG(INFO) << cu_->insns << " insns";
1136 LOG(INFO) << GetNumBlocks() << " blocks in total";
buzbee862a7602013-04-05 10:58:54 -07001137 GrowableArray<BasicBlock*>::Iterator iterator(&block_list_);
buzbee1fd33462013-03-25 13:40:45 -07001138
1139 while (true) {
buzbee862a7602013-04-05 10:58:54 -07001140 bb = iterator.Next();
buzbee1fd33462013-03-25 13:40:45 -07001141 if (bb == NULL) break;
1142 LOG(INFO) << StringPrintf("Block %d (%s) (insn %04x - %04x%s)",
1143 bb->id,
1144 block_type_names[bb->block_type],
1145 bb->start_offset,
1146 bb->last_mir_insn ? bb->last_mir_insn->offset : bb->start_offset,
1147 bb->last_mir_insn ? "" : " empty");
buzbee0d829482013-10-11 15:24:55 -07001148 if (bb->taken != NullBasicBlockId) {
1149 LOG(INFO) << " Taken branch: block " << bb->taken
1150 << "(0x" << std::hex << GetBasicBlock(bb->taken)->start_offset << ")";
buzbee1fd33462013-03-25 13:40:45 -07001151 }
buzbee0d829482013-10-11 15:24:55 -07001152 if (bb->fall_through != NullBasicBlockId) {
1153 LOG(INFO) << " Fallthrough : block " << bb->fall_through
1154 << " (0x" << std::hex << GetBasicBlock(bb->fall_through)->start_offset << ")";
buzbee1fd33462013-03-25 13:40:45 -07001155 }
1156 }
1157}
1158
1159/*
1160 * Build an array of location records for the incoming arguments.
1161 * Note: one location record per word of arguments, with dummy
1162 * high-word loc for wide arguments. Also pull up any following
1163 * MOVE_RESULT and incorporate it into the invoke.
1164 */
1165CallInfo* MIRGraph::NewMemCallInfo(BasicBlock* bb, MIR* mir, InvokeType type,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001166 bool is_range) {
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -07001167 CallInfo* info = static_cast<CallInfo*>(arena_->Alloc(sizeof(CallInfo),
Vladimir Marko83cc7ae2014-02-12 18:02:05 +00001168 kArenaAllocMisc));
buzbee1fd33462013-03-25 13:40:45 -07001169 MIR* move_result_mir = FindMoveResult(bb, mir);
1170 if (move_result_mir == NULL) {
1171 info->result.location = kLocInvalid;
1172 } else {
1173 info->result = GetRawDest(move_result_mir);
buzbee1fd33462013-03-25 13:40:45 -07001174 move_result_mir->dalvikInsn.opcode = static_cast<Instruction::Code>(kMirOpNop);
1175 }
1176 info->num_arg_words = mir->ssa_rep->num_uses;
1177 info->args = (info->num_arg_words == 0) ? NULL : static_cast<RegLocation*>
Vladimir Marko83cc7ae2014-02-12 18:02:05 +00001178 (arena_->Alloc(sizeof(RegLocation) * info->num_arg_words, kArenaAllocMisc));
buzbee1fd33462013-03-25 13:40:45 -07001179 for (int i = 0; i < info->num_arg_words; i++) {
1180 info->args[i] = GetRawSrc(mir, i);
1181 }
1182 info->opt_flags = mir->optimization_flags;
1183 info->type = type;
1184 info->is_range = is_range;
1185 info->index = mir->dalvikInsn.vB;
1186 info->offset = mir->offset;
Vladimir Markof096aad2014-01-23 15:51:58 +00001187 info->mir = mir;
buzbee1fd33462013-03-25 13:40:45 -07001188 return info;
1189}
1190
buzbee862a7602013-04-05 10:58:54 -07001191// Allocate a new basic block.
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001192BasicBlock* MIRGraph::NewMemBB(BBType block_type, int block_id) {
Mathieu Chartierf6c4b3b2013-08-24 16:11:37 -07001193 BasicBlock* bb = static_cast<BasicBlock*>(arena_->Alloc(sizeof(BasicBlock),
Vladimir Marko83cc7ae2014-02-12 18:02:05 +00001194 kArenaAllocBB));
buzbee862a7602013-04-05 10:58:54 -07001195 bb->block_type = block_type;
1196 bb->id = block_id;
1197 // TUNING: better estimate of the exit block predecessors?
buzbee0d829482013-10-11 15:24:55 -07001198 bb->predecessors = new (arena_) GrowableArray<BasicBlockId>(arena_,
Brian Carlstromdf629502013-07-17 22:39:56 -07001199 (block_type == kExitBlock) ? 2048 : 2,
1200 kGrowableArrayPredecessors);
buzbee0d829482013-10-11 15:24:55 -07001201 bb->successor_block_list_type = kNotUsed;
buzbee862a7602013-04-05 10:58:54 -07001202 block_id_map_.Put(block_id, block_id);
1203 return bb;
1204}
buzbee1fd33462013-03-25 13:40:45 -07001205
Jean Christophe Beyler4e97c532014-01-07 10:07:18 -08001206void MIRGraph::InitializeConstantPropagation() {
1207 is_constant_v_ = new (arena_) ArenaBitVector(arena_, GetNumSSARegs(), false);
Vladimir Marko83cc7ae2014-02-12 18:02:05 +00001208 constant_values_ = static_cast<int*>(arena_->Alloc(sizeof(int) * GetNumSSARegs(), kArenaAllocDFInfo));
Jean Christophe Beyler4e97c532014-01-07 10:07:18 -08001209}
1210
1211void MIRGraph::InitializeMethodUses() {
1212 // The gate starts by initializing the use counts
1213 int num_ssa_regs = GetNumSSARegs();
1214 use_counts_.Resize(num_ssa_regs + 32);
1215 raw_use_counts_.Resize(num_ssa_regs + 32);
1216 // Initialize list
1217 for (int i = 0; i < num_ssa_regs; i++) {
1218 use_counts_.Insert(0);
1219 raw_use_counts_.Insert(0);
1220 }
1221}
1222
1223void MIRGraph::InitializeSSATransformation() {
1224 /* Compute the DFS order */
1225 ComputeDFSOrders();
1226
1227 /* Compute the dominator info */
1228 ComputeDominators();
1229
1230 /* Allocate data structures in preparation for SSA conversion */
1231 CompilerInitializeSSAConversion();
1232
1233 /* Find out the "Dalvik reg def x block" relation */
1234 ComputeDefBlockMatrix();
1235
1236 /* Insert phi nodes to dominance frontiers for all variables */
1237 InsertPhiNodes();
1238
1239 /* Rename register names by local defs and phi nodes */
1240 ClearAllVisitedFlags();
1241 DoDFSPreOrderSSARename(GetEntryBlock());
Jean Christophe Beyler4e97c532014-01-07 10:07:18 -08001242}
1243
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001244} // namespace art