buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Brian Carlstrom | 265091e | 2013-01-30 14:08:26 -0800 | [diff] [blame] | 17 | #include <llvm/Support/Threading.h> |
| 18 | |
Ian Rogers | 1212a02 | 2013-03-04 10:48:41 -0800 | [diff] [blame] | 19 | #include "compiler/driver/compiler_driver.h" |
buzbee | efc6369 | 2012-11-14 16:31:52 -0800 | [diff] [blame] | 20 | #include "compiler_internals.h" |
Brian Carlstrom | 265091e | 2013-01-30 14:08:26 -0800 | [diff] [blame] | 21 | #if defined(ART_USE_PORTABLE_COMPILER) |
| 22 | #include "compiler/llvm/llvm_compilation_unit.h" |
| 23 | #endif |
buzbee | efc6369 | 2012-11-14 16:31:52 -0800 | [diff] [blame] | 24 | #include "dataflow.h" |
Ian Rogers | 4f6ad8a | 2013-03-18 15:27:28 -0700 | [diff] [blame] | 25 | #include "dex_file-inl.h" |
buzbee | eaf09bc | 2012-11-15 14:51:41 -0800 | [diff] [blame] | 26 | #include "ssa_transformation.h" |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 27 | #include "leb128.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 28 | #include "mirror/object.h" |
Brian Carlstrom | 1f87008 | 2011-08-23 16:02:11 -0700 | [diff] [blame] | 29 | #include "runtime.h" |
buzbee | 395116c | 2013-02-27 14:30:25 -0800 | [diff] [blame] | 30 | #include "quick/codegen_util.h" |
| 31 | #include "portable/mir_to_gbc.h" |
| 32 | #include "quick/mir_to_lir.h" |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 33 | |
buzbee | 4df2bbd | 2012-10-11 14:46:06 -0700 | [diff] [blame] | 34 | namespace { |
Ian Rogers | c928de9 | 2013-02-27 14:30:44 -0800 | [diff] [blame] | 35 | #if !defined(ART_USE_PORTABLE_COMPILER) |
buzbee | 4df2bbd | 2012-10-11 14:46:06 -0700 | [diff] [blame] | 36 | pthread_once_t llvm_multi_init = PTHREAD_ONCE_INIT; |
Shih-wei Liao | 215a926 | 2012-10-12 10:29:46 -0700 | [diff] [blame] | 37 | #endif |
buzbee | 4df2bbd | 2012-10-11 14:46:06 -0700 | [diff] [blame] | 38 | void InitializeLLVMForQuick() { |
Ian Rogers | 4c1c283 | 2013-03-04 18:30:13 -0800 | [diff] [blame] | 39 | ::llvm::llvm_start_multithreaded(); |
buzbee | 4df2bbd | 2012-10-11 14:46:06 -0700 | [diff] [blame] | 40 | } |
| 41 | } |
buzbee | 4df2bbd | 2012-10-11 14:46:06 -0700 | [diff] [blame] | 42 | |
Elliott Hughes | 11d1b0c | 2012-01-23 16:57:47 -0800 | [diff] [blame] | 43 | namespace art { |
Ian Rogers | 4c1c283 | 2013-03-04 18:30:13 -0800 | [diff] [blame] | 44 | namespace llvm { |
| 45 | ::llvm::Module* makeLLVMModuleContents(::llvm::Module* module); |
Ian Rogers | 76ae4fe | 2013-02-27 16:03:41 -0800 | [diff] [blame] | 46 | } |
Elliott Hughes | 11d1b0c | 2012-01-23 16:57:47 -0800 | [diff] [blame] | 47 | |
buzbee | 4df2bbd | 2012-10-11 14:46:06 -0700 | [diff] [blame] | 48 | LLVMInfo::LLVMInfo() { |
Ian Rogers | c928de9 | 2013-02-27 14:30:44 -0800 | [diff] [blame] | 49 | #if !defined(ART_USE_PORTABLE_COMPILER) |
buzbee | 4df2bbd | 2012-10-11 14:46:06 -0700 | [diff] [blame] | 50 | pthread_once(&llvm_multi_init, InitializeLLVMForQuick); |
| 51 | #endif |
buzbee | 692be80 | 2012-08-29 15:52:59 -0700 | [diff] [blame] | 52 | // Create context, module, intrinsic helper & ir builder |
Ian Rogers | 4c1c283 | 2013-03-04 18:30:13 -0800 | [diff] [blame] | 53 | llvm_context_.reset(new ::llvm::LLVMContext()); |
| 54 | llvm_module_ = new ::llvm::Module("art", *llvm_context_); |
| 55 | ::llvm::StructType::create(*llvm_context_, "JavaObject"); |
| 56 | art::llvm::makeLLVMModuleContents(llvm_module_); |
| 57 | intrinsic_helper_.reset( new art::llvm::IntrinsicHelper(*llvm_context_, *llvm_module_)); |
| 58 | ir_builder_.reset(new art::llvm::IRBuilder(*llvm_context_, *llvm_module_, *intrinsic_helper_)); |
buzbee | 692be80 | 2012-08-29 15:52:59 -0700 | [diff] [blame] | 59 | } |
| 60 | |
buzbee | 4df2bbd | 2012-10-11 14:46:06 -0700 | [diff] [blame] | 61 | LLVMInfo::~LLVMInfo() { |
buzbee | 692be80 | 2012-08-29 15:52:59 -0700 | [diff] [blame] | 62 | } |
| 63 | |
Ian Rogers | 1212a02 | 2013-03-04 10:48:41 -0800 | [diff] [blame] | 64 | extern "C" void ArtInitQuickCompilerContext(art::CompilerDriver& compiler) { |
buzbee | 692be80 | 2012-08-29 15:52:59 -0700 | [diff] [blame] | 65 | CHECK(compiler.GetCompilerContext() == NULL); |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 66 | LLVMInfo* llvm_info = new LLVMInfo(); |
| 67 | compiler.SetCompilerContext(llvm_info); |
buzbee | 692be80 | 2012-08-29 15:52:59 -0700 | [diff] [blame] | 68 | } |
| 69 | |
Ian Rogers | 1212a02 | 2013-03-04 10:48:41 -0800 | [diff] [blame] | 70 | extern "C" void ArtUnInitQuickCompilerContext(art::CompilerDriver& compiler) { |
buzbee | 4df2bbd | 2012-10-11 14:46:06 -0700 | [diff] [blame] | 71 | delete reinterpret_cast<LLVMInfo*>(compiler.GetCompilerContext()); |
buzbee | 692be80 | 2012-08-29 15:52:59 -0700 | [diff] [blame] | 72 | compiler.SetCompilerContext(NULL); |
| 73 | } |
buzbee | 692be80 | 2012-08-29 15:52:59 -0700 | [diff] [blame] | 74 | |
buzbee | ce30293 | 2011-10-04 14:32:18 -0700 | [diff] [blame] | 75 | /* Default optimizer/debug setting for the compiler. */ |
Elliott Hughes | e52e49b | 2012-04-02 16:05:44 -0700 | [diff] [blame] | 76 | static uint32_t kCompilerOptimizerDisableFlags = 0 | // Disable specific optimizations |
buzbee | 4ef3e45 | 2012-12-14 13:35:28 -0800 | [diff] [blame] | 77 | (1 << kLoadStoreElimination) | |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 78 | //(1 << kLoadHoisting) | |
| 79 | //(1 << kSuppressLoads) | |
| 80 | //(1 << kNullCheckElimination) | |
| 81 | //(1 << kPromoteRegs) | |
| 82 | //(1 << kTrackLiveTemps) | |
buzbee | 4ef3e45 | 2012-12-14 13:35:28 -0800 | [diff] [blame] | 83 | (1 << kSkipLargeMethodOptimization) | |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 84 | //(1 << kSafeOptimizations) | |
| 85 | //(1 << kBBOpt) | |
| 86 | //(1 << kMatch) | |
| 87 | //(1 << kPromoteCompilerTemps) | |
| 88 | 0; |
buzbee | ce30293 | 2011-10-04 14:32:18 -0700 | [diff] [blame] | 89 | |
Elliott Hughes | e52e49b | 2012-04-02 16:05:44 -0700 | [diff] [blame] | 90 | static uint32_t kCompilerDebugFlags = 0 | // Enable debug/testing modes |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 91 | //(1 << kDebugDisplayMissingTargets) | |
| 92 | //(1 << kDebugVerbose) | |
| 93 | //(1 << kDebugDumpCFG) | |
| 94 | //(1 << kDebugSlowFieldPath) | |
| 95 | //(1 << kDebugSlowInvokePath) | |
| 96 | //(1 << kDebugSlowStringPath) | |
| 97 | //(1 << kDebugSlowestFieldPath) | |
| 98 | //(1 << kDebugSlowestStringPath) | |
| 99 | //(1 << kDebugExerciseResolveMethod) | |
| 100 | //(1 << kDebugVerifyDataflow) | |
| 101 | //(1 << kDebugShowMemoryUsage) | |
| 102 | //(1 << kDebugShowNops) | |
| 103 | //(1 << kDebugCountOpcodes) | |
buzbee | d1643e4 | 2012-09-05 14:06:51 -0700 | [diff] [blame] | 104 | //(1 << kDebugDumpCheckStats) | |
buzbee | ad8f15e | 2012-06-18 14:49:45 -0700 | [diff] [blame] | 105 | //(1 << kDebugDumpBitcodeFile) | |
Bill Buzbee | c9f40dd | 2012-08-15 11:35:25 -0700 | [diff] [blame] | 106 | //(1 << kDebugVerifyBitcode) | |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 107 | 0; |
buzbee | ce30293 | 2011-10-04 14:32:18 -0700 | [diff] [blame] | 108 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 109 | static bool ContentIsInsn(const uint16_t* code_ptr) { |
| 110 | uint16_t instr = *code_ptr; |
buzbee | cbd6d44 | 2012-11-17 14:11:25 -0800 | [diff] [blame] | 111 | Instruction::Code opcode = static_cast<Instruction::Code>(instr & 0xff); |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 112 | |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 113 | /* |
| 114 | * Since the low 8-bit in metadata may look like NOP, we need to check |
| 115 | * both the low and whole sub-word to determine whether it is code or data. |
| 116 | */ |
| 117 | return (opcode != Instruction::NOP || instr == 0); |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | /* |
| 121 | * Parse an instruction, return the length of the instruction |
| 122 | */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 123 | static int ParseInsn(CompilationUnit* cu, const uint16_t* code_ptr, |
buzbee | a169e1d | 2012-12-05 14:26:44 -0800 | [diff] [blame] | 124 | DecodedInstruction* decoded_instruction) |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 125 | { |
Elliott Hughes | adb8c67 | 2012-03-06 16:49:32 -0800 | [diff] [blame] | 126 | // Don't parse instruction data |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 127 | if (!ContentIsInsn(code_ptr)) { |
Elliott Hughes | adb8c67 | 2012-03-06 16:49:32 -0800 | [diff] [blame] | 128 | return 0; |
| 129 | } |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 130 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 131 | const Instruction* instruction = Instruction::At(code_ptr); |
Elliott Hughes | adb8c67 | 2012-03-06 16:49:32 -0800 | [diff] [blame] | 132 | *decoded_instruction = DecodedInstruction(instruction); |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 133 | |
Elliott Hughes | adb8c67 | 2012-03-06 16:49:32 -0800 | [diff] [blame] | 134 | return instruction->SizeInCodeUnits(); |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | #define UNKNOWN_TARGET 0xffffffff |
| 138 | |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 139 | /* Split an existing block from the specified code offset into two */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 140 | static BasicBlock *SplitBlock(CompilationUnit* cu, unsigned int code_offset, |
| 141 | BasicBlock* orig_block, BasicBlock** immed_pred_block_p) |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 142 | { |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 143 | MIR* insn = orig_block->first_mir_insn; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 144 | while (insn) { |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 145 | if (insn->offset == code_offset) break; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 146 | insn = insn->next; |
| 147 | } |
| 148 | if (insn == NULL) { |
| 149 | LOG(FATAL) << "Break split failed"; |
| 150 | } |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 151 | BasicBlock *bottom_block = NewMemBB(cu, kDalvikByteCode, |
| 152 | cu->num_blocks++); |
| 153 | InsertGrowableList(cu, &cu->block_list, reinterpret_cast<uintptr_t>(bottom_block)); |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 154 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 155 | bottom_block->start_offset = code_offset; |
| 156 | bottom_block->first_mir_insn = insn; |
| 157 | bottom_block->last_mir_insn = orig_block->last_mir_insn; |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 158 | |
buzbee | bbdd053 | 2013-02-07 09:33:02 -0800 | [diff] [blame] | 159 | /* If this block was terminated by a return, the flag needs to go with the bottom block */ |
| 160 | bottom_block->terminated_by_return = orig_block->terminated_by_return; |
| 161 | orig_block->terminated_by_return = false; |
| 162 | |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 163 | /* Add it to the quick lookup cache */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 164 | cu->block_map.Put(bottom_block->start_offset, bottom_block); |
buzbee | 5b53710 | 2012-01-17 17:33:47 -0800 | [diff] [blame] | 165 | |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 166 | /* Handle the taken path */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 167 | bottom_block->taken = orig_block->taken; |
| 168 | if (bottom_block->taken) { |
| 169 | orig_block->taken = NULL; |
| 170 | DeleteGrowableList(bottom_block->taken->predecessors, reinterpret_cast<uintptr_t>(orig_block)); |
| 171 | InsertGrowableList(cu, bottom_block->taken->predecessors, |
| 172 | reinterpret_cast<uintptr_t>(bottom_block)); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 173 | } |
| 174 | |
| 175 | /* Handle the fallthrough path */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 176 | bottom_block->fall_through = orig_block->fall_through; |
| 177 | orig_block->fall_through = bottom_block; |
| 178 | InsertGrowableList(cu, bottom_block->predecessors, |
| 179 | reinterpret_cast<uintptr_t>(orig_block)); |
| 180 | if (bottom_block->fall_through) { |
| 181 | DeleteGrowableList(bottom_block->fall_through->predecessors, |
| 182 | reinterpret_cast<uintptr_t>(orig_block)); |
| 183 | InsertGrowableList(cu, bottom_block->fall_through->predecessors, |
| 184 | reinterpret_cast<uintptr_t>(bottom_block)); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 185 | } |
| 186 | |
| 187 | /* Handle the successor list */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 188 | if (orig_block->successor_block_list.block_list_type != kNotUsed) { |
| 189 | bottom_block->successor_block_list = orig_block->successor_block_list; |
| 190 | orig_block->successor_block_list.block_list_type = kNotUsed; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 191 | GrowableListIterator iterator; |
| 192 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 193 | GrowableListIteratorInit(&bottom_block->successor_block_list.blocks, |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 194 | &iterator); |
| 195 | while (true) { |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 196 | SuccessorBlockInfo *successor_block_info = |
buzbee | 52a77fc | 2012-11-20 19:50:46 -0800 | [diff] [blame] | 197 | reinterpret_cast<SuccessorBlockInfo*>(GrowableListIteratorNext(&iterator)); |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 198 | if (successor_block_info == NULL) break; |
| 199 | BasicBlock *bb = successor_block_info->block; |
| 200 | DeleteGrowableList(bb->predecessors, reinterpret_cast<uintptr_t>(orig_block)); |
| 201 | InsertGrowableList(cu, bb->predecessors, reinterpret_cast<uintptr_t>(bottom_block)); |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 202 | } |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 203 | } |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 204 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 205 | orig_block->last_mir_insn = insn->prev; |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 206 | |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 207 | insn->prev->next = NULL; |
| 208 | insn->prev = NULL; |
| 209 | /* |
| 210 | * Update the immediate predecessor block pointer so that outgoing edges |
| 211 | * can be applied to the proper block. |
| 212 | */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 213 | if (immed_pred_block_p) { |
| 214 | DCHECK_EQ(*immed_pred_block_p, orig_block); |
| 215 | *immed_pred_block_p = bottom_block; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 216 | } |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 217 | return bottom_block; |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 218 | } |
| 219 | |
| 220 | /* |
| 221 | * Given a code offset, find out the block that starts with it. If the offset |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 222 | * is in the middle of an existing block, split it into two. If immed_pred_block_p |
| 223 | * is not non-null and is the block being split, update *immed_pred_block_p to |
buzbee | 9ab05de | 2012-01-18 15:43:48 -0800 | [diff] [blame] | 224 | * point to the bottom block so that outgoing edges can be set up properly |
| 225 | * (by the caller) |
buzbee | 5b53710 | 2012-01-17 17:33:47 -0800 | [diff] [blame] | 226 | * Utilizes a map for fast lookup of the typical cases. |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 227 | */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 228 | BasicBlock *FindBlock(CompilationUnit* cu, unsigned int code_offset, |
| 229 | bool split, bool create, BasicBlock** immed_pred_block_p) |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 230 | { |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 231 | GrowableList* block_list = &cu->block_list; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 232 | BasicBlock* bb; |
| 233 | unsigned int i; |
| 234 | SafeMap<unsigned int, BasicBlock*>::iterator it; |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 235 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 236 | it = cu->block_map.find(code_offset); |
| 237 | if (it != cu->block_map.end()) { |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 238 | return it->second; |
| 239 | } else if (!create) { |
| 240 | return NULL; |
| 241 | } |
| 242 | |
| 243 | if (split) { |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 244 | for (i = 0; i < block_list->num_used; i++) { |
| 245 | bb = reinterpret_cast<BasicBlock*>(block_list->elem_list[i]); |
| 246 | if (bb->block_type != kDalvikByteCode) continue; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 247 | /* Check if a branch jumps into the middle of an existing block */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 248 | if ((code_offset > bb->start_offset) && (bb->last_mir_insn != NULL) && |
| 249 | (code_offset <= bb->last_mir_insn->offset)) { |
| 250 | BasicBlock *new_bb = SplitBlock(cu, code_offset, bb, |
| 251 | bb == *immed_pred_block_p ? |
| 252 | immed_pred_block_p : NULL); |
| 253 | return new_bb; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 254 | } |
buzbee | 5b53710 | 2012-01-17 17:33:47 -0800 | [diff] [blame] | 255 | } |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 256 | } |
buzbee | 5b53710 | 2012-01-17 17:33:47 -0800 | [diff] [blame] | 257 | |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 258 | /* Create a new one */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 259 | bb = NewMemBB(cu, kDalvikByteCode, cu->num_blocks++); |
| 260 | InsertGrowableList(cu, &cu->block_list, reinterpret_cast<uintptr_t>(bb)); |
| 261 | bb->start_offset = code_offset; |
| 262 | cu->block_map.Put(bb->start_offset, bb); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 263 | return bb; |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 264 | } |
| 265 | |
buzbee | f58c12c | 2012-07-03 15:06:29 -0700 | [diff] [blame] | 266 | /* Find existing block */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 267 | BasicBlock* FindBlock(CompilationUnit* cu, unsigned int code_offset) |
buzbee | f58c12c | 2012-07-03 15:06:29 -0700 | [diff] [blame] | 268 | { |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 269 | return FindBlock(cu, code_offset, false, false, NULL); |
buzbee | f58c12c | 2012-07-03 15:06:29 -0700 | [diff] [blame] | 270 | } |
| 271 | |
buzbee | ad8f15e | 2012-06-18 14:49:45 -0700 | [diff] [blame] | 272 | /* Turn method name into a legal Linux file name */ |
buzbee | 52a77fc | 2012-11-20 19:50:46 -0800 | [diff] [blame] | 273 | void ReplaceSpecialChars(std::string& str) |
buzbee | ad8f15e | 2012-06-18 14:49:45 -0700 | [diff] [blame] | 274 | { |
| 275 | static const struct { const char before; const char after; } match[] = |
| 276 | {{'/','-'}, {';','#'}, {' ','#'}, {'$','+'}, |
| 277 | {'(','@'}, {')','@'}, {'<','='}, {'>','='}}; |
| 278 | for (unsigned int i = 0; i < sizeof(match)/sizeof(match[0]); i++) { |
| 279 | std::replace(str.begin(), str.end(), match[i].before, match[i].after); |
| 280 | } |
| 281 | } |
| 282 | |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 283 | /* Dump the CFG into a DOT graph */ |
buzbee | d850621 | 2012-12-20 14:15:05 -0800 | [diff] [blame] | 284 | void DumpCFG(CompilationUnit* cu, const char* dir_prefix, bool all_blocks) |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 285 | { |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 286 | FILE* file; |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 287 | std::string fname(PrettyMethod(cu->method_idx, *cu->dex_file)); |
buzbee | 52a77fc | 2012-11-20 19:50:46 -0800 | [diff] [blame] | 288 | ReplaceSpecialChars(fname); |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 289 | fname = StringPrintf("%s%s%x.dot", dir_prefix, fname.c_str(), |
| 290 | cu->entry_block->fall_through->start_offset); |
buzbee | ad8f15e | 2012-06-18 14:49:45 -0700 | [diff] [blame] | 291 | file = fopen(fname.c_str(), "w"); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 292 | if (file == NULL) { |
| 293 | return; |
| 294 | } |
| 295 | fprintf(file, "digraph G {\n"); |
| 296 | |
| 297 | fprintf(file, " rankdir=TB\n"); |
| 298 | |
buzbee | d850621 | 2012-12-20 14:15:05 -0800 | [diff] [blame] | 299 | int num_blocks = all_blocks ? cu->num_blocks : cu->num_reachable_blocks; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 300 | int idx; |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 301 | const GrowableList *block_list = &cu->block_list; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 302 | |
buzbee | d850621 | 2012-12-20 14:15:05 -0800 | [diff] [blame] | 303 | for (idx = 0; idx < num_blocks; idx++) { |
| 304 | int block_idx = all_blocks ? idx : cu->dfs_order.elem_list[idx]; |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 305 | BasicBlock *bb = reinterpret_cast<BasicBlock*>(GrowableListGetElement(block_list, block_idx)); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 306 | if (bb == NULL) break; |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 307 | if (bb->block_type == kDead) continue; |
| 308 | if (bb->block_type == kEntryBlock) { |
Bill Buzbee | c9f40dd | 2012-08-15 11:35:25 -0700 | [diff] [blame] | 309 | fprintf(file, " entry_%d [shape=Mdiamond];\n", bb->id); |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 310 | } else if (bb->block_type == kExitBlock) { |
Bill Buzbee | c9f40dd | 2012-08-15 11:35:25 -0700 | [diff] [blame] | 311 | fprintf(file, " exit_%d [shape=Mdiamond];\n", bb->id); |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 312 | } else if (bb->block_type == kDalvikByteCode) { |
Bill Buzbee | c9f40dd | 2012-08-15 11:35:25 -0700 | [diff] [blame] | 313 | fprintf(file, " block%04x_%d [shape=record,label = \"{ \\\n", |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 314 | bb->start_offset, bb->id); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 315 | const MIR *mir; |
| 316 | fprintf(file, " {block id %d\\l}%s\\\n", bb->id, |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 317 | bb->first_mir_insn ? " | " : " "); |
| 318 | for (mir = bb->first_mir_insn; mir; mir = mir->next) { |
buzbee | d850621 | 2012-12-20 14:15:05 -0800 | [diff] [blame] | 319 | int opcode = mir->dalvikInsn.opcode; |
| 320 | fprintf(file, " {%04x %s %s %s\\l}%s\\\n", mir->offset, |
buzbee | a169e1d | 2012-12-05 14:26:44 -0800 | [diff] [blame] | 321 | mir->ssa_rep ? GetDalvikDisassembly(cu, mir) : |
buzbee | d850621 | 2012-12-20 14:15:05 -0800 | [diff] [blame] | 322 | (opcode < kMirOpFirst) ? Instruction::Name(mir->dalvikInsn.opcode) : |
| 323 | extended_mir_op_names[opcode - kMirOpFirst], |
| 324 | (mir->optimization_flags & MIR_IGNORE_RANGE_CHECK) != 0 ? " no_rangecheck" : " ", |
| 325 | (mir->optimization_flags & MIR_IGNORE_NULL_CHECK) != 0 ? " no_nullcheck" : " ", |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 326 | mir->next ? " | " : " "); |
| 327 | } |
| 328 | fprintf(file, " }\"];\n\n"); |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 329 | } else if (bb->block_type == kExceptionHandling) { |
| 330 | char block_name[BLOCK_NAME_LEN]; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 331 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 332 | GetBlockName(bb, block_name); |
| 333 | fprintf(file, " %s [shape=invhouse];\n", block_name); |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 334 | } |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 335 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 336 | char block_name1[BLOCK_NAME_LEN], block_name2[BLOCK_NAME_LEN]; |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 337 | |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 338 | if (bb->taken) { |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 339 | GetBlockName(bb, block_name1); |
| 340 | GetBlockName(bb->taken, block_name2); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 341 | fprintf(file, " %s:s -> %s:n [style=dotted]\n", |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 342 | block_name1, block_name2); |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 343 | } |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 344 | if (bb->fall_through) { |
| 345 | GetBlockName(bb, block_name1); |
| 346 | GetBlockName(bb->fall_through, block_name2); |
| 347 | fprintf(file, " %s:s -> %s:n\n", block_name1, block_name2); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 348 | } |
| 349 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 350 | if (bb->successor_block_list.block_list_type != kNotUsed) { |
Bill Buzbee | c9f40dd | 2012-08-15 11:35:25 -0700 | [diff] [blame] | 351 | fprintf(file, " succ%04x_%d [shape=%s,label = \"{ \\\n", |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 352 | bb->start_offset, bb->id, |
| 353 | (bb->successor_block_list.block_list_type == kCatch) ? |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 354 | "Mrecord" : "record"); |
| 355 | GrowableListIterator iterator; |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 356 | GrowableListIteratorInit(&bb->successor_block_list.blocks, |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 357 | &iterator); |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 358 | SuccessorBlockInfo *successor_block_info = |
buzbee | 52a77fc | 2012-11-20 19:50:46 -0800 | [diff] [blame] | 359 | reinterpret_cast<SuccessorBlockInfo*>(GrowableListIteratorNext(&iterator)); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 360 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 361 | int succ_id = 0; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 362 | while (true) { |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 363 | if (successor_block_info == NULL) break; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 364 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 365 | BasicBlock *dest_block = successor_block_info->block; |
| 366 | SuccessorBlockInfo *next_successor_block_info = |
buzbee | 52a77fc | 2012-11-20 19:50:46 -0800 | [diff] [blame] | 367 | reinterpret_cast<SuccessorBlockInfo*>(GrowableListIteratorNext(&iterator)); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 368 | |
| 369 | fprintf(file, " {<f%d> %04x: %04x\\l}%s\\\n", |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 370 | succ_id++, |
| 371 | successor_block_info->key, |
| 372 | dest_block->start_offset, |
| 373 | (next_successor_block_info != NULL) ? " | " : " "); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 374 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 375 | successor_block_info = next_successor_block_info; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 376 | } |
| 377 | fprintf(file, " }\"];\n\n"); |
| 378 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 379 | GetBlockName(bb, block_name1); |
Bill Buzbee | c9f40dd | 2012-08-15 11:35:25 -0700 | [diff] [blame] | 380 | fprintf(file, " %s:s -> succ%04x_%d:n [style=dashed]\n", |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 381 | block_name1, bb->start_offset, bb->id); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 382 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 383 | if (bb->successor_block_list.block_list_type == kPackedSwitch || |
| 384 | bb->successor_block_list.block_list_type == kSparseSwitch) { |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 385 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 386 | GrowableListIteratorInit(&bb->successor_block_list.blocks, |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 387 | &iterator); |
| 388 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 389 | succ_id = 0; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 390 | while (true) { |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 391 | SuccessorBlockInfo *successor_block_info = |
buzbee | 52a77fc | 2012-11-20 19:50:46 -0800 | [diff] [blame] | 392 | reinterpret_cast<SuccessorBlockInfo*>( GrowableListIteratorNext(&iterator)); |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 393 | if (successor_block_info == NULL) break; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 394 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 395 | BasicBlock *dest_block = successor_block_info->block; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 396 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 397 | GetBlockName(dest_block, block_name2); |
| 398 | fprintf(file, " succ%04x_%d:f%d:e -> %s:n\n", bb->start_offset, |
| 399 | bb->id, succ_id++, block_name2); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 400 | } |
| 401 | } |
| 402 | } |
| 403 | fprintf(file, "\n"); |
| 404 | |
buzbee | d850621 | 2012-12-20 14:15:05 -0800 | [diff] [blame] | 405 | if (cu->verbose) { |
| 406 | /* Display the dominator tree */ |
| 407 | GetBlockName(bb, block_name1); |
| 408 | fprintf(file, " cfg%s [label=\"%s\", shape=none];\n", |
| 409 | block_name1, block_name1); |
| 410 | if (bb->i_dom) { |
| 411 | GetBlockName(bb->i_dom, block_name2); |
| 412 | fprintf(file, " cfg%s:s -> cfg%s:n\n\n", block_name2, block_name1); |
| 413 | } |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 414 | } |
| 415 | } |
| 416 | fprintf(file, "}\n"); |
| 417 | fclose(file); |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 418 | } |
| 419 | |
| 420 | /* Verify if all the successor is connected with all the claimed predecessors */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 421 | static bool VerifyPredInfo(CompilationUnit* cu, BasicBlock* bb) |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 422 | { |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 423 | GrowableListIterator iter; |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 424 | |
buzbee | 52a77fc | 2012-11-20 19:50:46 -0800 | [diff] [blame] | 425 | GrowableListIteratorInit(bb->predecessors, &iter); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 426 | while (true) { |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 427 | BasicBlock *pred_bb = reinterpret_cast<BasicBlock*>(GrowableListIteratorNext(&iter)); |
| 428 | if (!pred_bb) break; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 429 | bool found = false; |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 430 | if (pred_bb->taken == bb) { |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 431 | found = true; |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 432 | } else if (pred_bb->fall_through == bb) { |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 433 | found = true; |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 434 | } else if (pred_bb->successor_block_list.block_list_type != kNotUsed) { |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 435 | GrowableListIterator iterator; |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 436 | GrowableListIteratorInit(&pred_bb->successor_block_list.blocks, |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 437 | &iterator); |
| 438 | while (true) { |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 439 | SuccessorBlockInfo *successor_block_info = |
buzbee | 52a77fc | 2012-11-20 19:50:46 -0800 | [diff] [blame] | 440 | reinterpret_cast<SuccessorBlockInfo*>(GrowableListIteratorNext(&iterator)); |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 441 | if (successor_block_info == NULL) break; |
| 442 | BasicBlock *succ_bb = successor_block_info->block; |
| 443 | if (succ_bb == bb) { |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 444 | found = true; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 445 | break; |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 446 | } |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 447 | } |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 448 | } |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 449 | if (found == false) { |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 450 | char block_name1[BLOCK_NAME_LEN], block_name2[BLOCK_NAME_LEN]; |
| 451 | GetBlockName(bb, block_name1); |
| 452 | GetBlockName(pred_bb, block_name2); |
buzbee | d850621 | 2012-12-20 14:15:05 -0800 | [diff] [blame] | 453 | DumpCFG(cu, "/sdcard/cfg/", false); |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 454 | LOG(FATAL) << "Successor " << block_name1 << "not found from " |
| 455 | << block_name2; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 456 | } |
| 457 | } |
| 458 | return true; |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 459 | } |
| 460 | |
| 461 | /* Identify code range in try blocks and set up the empty catch blocks */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 462 | static void ProcessTryCatchBlocks(CompilationUnit* cu) |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 463 | { |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 464 | const DexFile::CodeItem* code_item = cu->code_item; |
| 465 | int tries_size = code_item->tries_size_; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 466 | int offset; |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 467 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 468 | if (tries_size == 0) { |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 469 | return; |
| 470 | } |
| 471 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 472 | ArenaBitVector* try_block_addr = cu->try_block_addr; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 473 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 474 | for (int i = 0; i < tries_size; i++) { |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 475 | const DexFile::TryItem* pTry = |
| 476 | DexFile::GetTryItems(*code_item, i); |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 477 | int start_offset = pTry->start_addr_; |
| 478 | int end_offset = start_offset + pTry->insn_count_; |
| 479 | for (offset = start_offset; offset < end_offset; offset++) { |
| 480 | SetBit(cu, try_block_addr, offset); |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 481 | } |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 482 | } |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 483 | |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 484 | // Iterate over each of the handlers to enqueue the empty Catch blocks |
| 485 | const byte* handlers_ptr = DexFile::GetCatchHandlerData(*code_item, 0); |
| 486 | uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr); |
| 487 | for (uint32_t idx = 0; idx < handlers_size; idx++) { |
| 488 | CatchHandlerIterator iterator(handlers_ptr); |
| 489 | for (; iterator.HasNext(); iterator.Next()) { |
| 490 | uint32_t address = iterator.GetHandlerAddress(); |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 491 | FindBlock(cu, address, false /* split */, true /*create*/, |
| 492 | /* immed_pred_block_p */ NULL); |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 493 | } |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 494 | handlers_ptr = iterator.EndDataPointer(); |
| 495 | } |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 496 | } |
| 497 | |
Elliott Hughes | adb8c67 | 2012-03-06 16:49:32 -0800 | [diff] [blame] | 498 | /* Process instructions with the kBranch flag */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 499 | static BasicBlock* ProcessCanBranch(CompilationUnit* cu, BasicBlock* cur_block, |
| 500 | MIR* insn, int cur_offset, int width, int flags, |
| 501 | const uint16_t* code_ptr, const uint16_t* code_end) |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 502 | { |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 503 | int target = cur_offset; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 504 | switch (insn->dalvikInsn.opcode) { |
| 505 | case Instruction::GOTO: |
| 506 | case Instruction::GOTO_16: |
| 507 | case Instruction::GOTO_32: |
buzbee | cbd6d44 | 2012-11-17 14:11:25 -0800 | [diff] [blame] | 508 | target += insn->dalvikInsn.vA; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 509 | break; |
| 510 | case Instruction::IF_EQ: |
| 511 | case Instruction::IF_NE: |
| 512 | case Instruction::IF_LT: |
| 513 | case Instruction::IF_GE: |
| 514 | case Instruction::IF_GT: |
| 515 | case Instruction::IF_LE: |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 516 | cur_block->conditional_branch = true; |
buzbee | cbd6d44 | 2012-11-17 14:11:25 -0800 | [diff] [blame] | 517 | target += insn->dalvikInsn.vC; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 518 | break; |
| 519 | case Instruction::IF_EQZ: |
| 520 | case Instruction::IF_NEZ: |
| 521 | case Instruction::IF_LTZ: |
| 522 | case Instruction::IF_GEZ: |
| 523 | case Instruction::IF_GTZ: |
| 524 | case Instruction::IF_LEZ: |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 525 | cur_block->conditional_branch = true; |
buzbee | cbd6d44 | 2012-11-17 14:11:25 -0800 | [diff] [blame] | 526 | target += insn->dalvikInsn.vB; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 527 | break; |
| 528 | default: |
buzbee | cbd6d44 | 2012-11-17 14:11:25 -0800 | [diff] [blame] | 529 | LOG(FATAL) << "Unexpected opcode(" << insn->dalvikInsn.opcode << ") with kBranch set"; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 530 | } |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 531 | BasicBlock *taken_block = FindBlock(cu, target, |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 532 | /* split */ |
| 533 | true, |
| 534 | /* create */ |
| 535 | true, |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 536 | /* immed_pred_block_p */ |
| 537 | &cur_block); |
| 538 | cur_block->taken = taken_block; |
| 539 | InsertGrowableList(cu, taken_block->predecessors, reinterpret_cast<uintptr_t>(cur_block)); |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 540 | |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 541 | /* Always terminate the current block for conditional branches */ |
| 542 | if (flags & Instruction::kContinue) { |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 543 | BasicBlock *fallthrough_block = FindBlock(cu, |
| 544 | cur_offset + width, |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 545 | /* |
| 546 | * If the method is processed |
| 547 | * in sequential order from the |
| 548 | * beginning, we don't need to |
| 549 | * specify split for continue |
| 550 | * blocks. However, this |
| 551 | * routine can be called by |
| 552 | * compileLoop, which starts |
| 553 | * parsing the method from an |
| 554 | * arbitrary address in the |
| 555 | * method body. |
| 556 | */ |
| 557 | true, |
| 558 | /* create */ |
| 559 | true, |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 560 | /* immed_pred_block_p */ |
| 561 | &cur_block); |
| 562 | cur_block->fall_through = fallthrough_block; |
| 563 | InsertGrowableList(cu, fallthrough_block->predecessors, |
| 564 | reinterpret_cast<uintptr_t>(cur_block)); |
| 565 | } else if (code_ptr < code_end) { |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 566 | /* Create a fallthrough block for real instructions (incl. NOP) */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 567 | if (ContentIsInsn(code_ptr)) { |
| 568 | FindBlock(cu, cur_offset + width, |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 569 | /* split */ |
| 570 | false, |
| 571 | /* create */ |
| 572 | true, |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 573 | /* immed_pred_block_p */ |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 574 | NULL); |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 575 | } |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 576 | } |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 577 | return cur_block; |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 578 | } |
| 579 | |
Elliott Hughes | adb8c67 | 2012-03-06 16:49:32 -0800 | [diff] [blame] | 580 | /* Process instructions with the kSwitch flag */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 581 | static void ProcessCanSwitch(CompilationUnit* cu, BasicBlock* cur_block, |
| 582 | MIR* insn, int cur_offset, int width, int flags) |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 583 | { |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 584 | const uint16_t* switch_data = |
| 585 | reinterpret_cast<const uint16_t*>(cu->insns + cur_offset + insn->dalvikInsn.vB); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 586 | int size; |
buzbee | cbd6d44 | 2012-11-17 14:11:25 -0800 | [diff] [blame] | 587 | const int* keyTable; |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 588 | const int* target_table; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 589 | int i; |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 590 | int first_key; |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 591 | |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 592 | /* |
| 593 | * Packed switch data format: |
| 594 | * ushort ident = 0x0100 magic value |
| 595 | * ushort size number of entries in the table |
| 596 | * int first_key first (and lowest) switch case value |
| 597 | * int targets[size] branch targets, relative to switch opcode |
| 598 | * |
| 599 | * Total size is (4+size*2) 16-bit code units. |
| 600 | */ |
| 601 | if (insn->dalvikInsn.opcode == Instruction::PACKED_SWITCH) { |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 602 | DCHECK_EQ(static_cast<int>(switch_data[0]), |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 603 | static_cast<int>(Instruction::kPackedSwitchSignature)); |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 604 | size = switch_data[1]; |
| 605 | first_key = switch_data[2] | (switch_data[3] << 16); |
| 606 | target_table = reinterpret_cast<const int*>(&switch_data[4]); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 607 | keyTable = NULL; // Make the compiler happy |
| 608 | /* |
| 609 | * Sparse switch data format: |
| 610 | * ushort ident = 0x0200 magic value |
| 611 | * ushort size number of entries in the table; > 0 |
| 612 | * int keys[size] keys, sorted low-to-high; 32-bit aligned |
| 613 | * int targets[size] branch targets, relative to switch opcode |
| 614 | * |
| 615 | * Total size is (2+size*4) 16-bit code units. |
| 616 | */ |
| 617 | } else { |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 618 | DCHECK_EQ(static_cast<int>(switch_data[0]), |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 619 | static_cast<int>(Instruction::kSparseSwitchSignature)); |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 620 | size = switch_data[1]; |
| 621 | keyTable = reinterpret_cast<const int*>(&switch_data[2]); |
| 622 | target_table = reinterpret_cast<const int*>(&switch_data[2 + size*2]); |
| 623 | first_key = 0; // To make the compiler happy |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 624 | } |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 625 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 626 | if (cur_block->successor_block_list.block_list_type != kNotUsed) { |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 627 | LOG(FATAL) << "Successor block list already in use: " |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 628 | << static_cast<int>(cur_block->successor_block_list.block_list_type); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 629 | } |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 630 | cur_block->successor_block_list.block_list_type = |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 631 | (insn->dalvikInsn.opcode == Instruction::PACKED_SWITCH) ? |
| 632 | kPackedSwitch : kSparseSwitch; |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 633 | CompilerInitGrowableList(cu, &cur_block->successor_block_list.blocks, size, |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 634 | kListSuccessorBlocks); |
| 635 | |
| 636 | for (i = 0; i < size; i++) { |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 637 | BasicBlock *case_block = FindBlock(cu, cur_offset + target_table[i], |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 638 | /* split */ |
| 639 | true, |
| 640 | /* create */ |
| 641 | true, |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 642 | /* immed_pred_block_p */ |
| 643 | &cur_block); |
| 644 | SuccessorBlockInfo *successor_block_info = |
| 645 | static_cast<SuccessorBlockInfo*>(NewMem(cu, sizeof(SuccessorBlockInfo), |
buzbee | cbd6d44 | 2012-11-17 14:11:25 -0800 | [diff] [blame] | 646 | false, kAllocSuccessor)); |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 647 | successor_block_info->block = case_block; |
| 648 | successor_block_info->key = |
Elliott Hughes | adb8c67 | 2012-03-06 16:49:32 -0800 | [diff] [blame] | 649 | (insn->dalvikInsn.opcode == Instruction::PACKED_SWITCH) ? |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 650 | first_key + i : keyTable[i]; |
| 651 | InsertGrowableList(cu, &cur_block->successor_block_list.blocks, |
| 652 | reinterpret_cast<uintptr_t>(successor_block_info)); |
| 653 | InsertGrowableList(cu, case_block->predecessors, |
| 654 | reinterpret_cast<uintptr_t>(cur_block)); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 655 | } |
| 656 | |
| 657 | /* Fall-through case */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 658 | BasicBlock* fallthrough_block = FindBlock(cu, |
| 659 | cur_offset + width, |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 660 | /* split */ |
| 661 | false, |
| 662 | /* create */ |
| 663 | true, |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 664 | /* immed_pred_block_p */ |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 665 | NULL); |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 666 | cur_block->fall_through = fallthrough_block; |
| 667 | InsertGrowableList(cu, fallthrough_block->predecessors, |
| 668 | reinterpret_cast<uintptr_t>(cur_block)); |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 669 | } |
| 670 | |
Elliott Hughes | adb8c67 | 2012-03-06 16:49:32 -0800 | [diff] [blame] | 671 | /* Process instructions with the kThrow flag */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 672 | static BasicBlock* ProcessCanThrow(CompilationUnit* cu, BasicBlock* cur_block, |
| 673 | MIR* insn, int cur_offset, int width, int flags, |
| 674 | ArenaBitVector* try_block_addr, const uint16_t* code_ptr, |
| 675 | const uint16_t* code_end) |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 676 | { |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 677 | const DexFile::CodeItem* code_item = cu->code_item; |
| 678 | bool in_try_block = IsBitSet(try_block_addr, cur_offset); |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 679 | |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 680 | /* In try block */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 681 | if (in_try_block) { |
| 682 | CatchHandlerIterator iterator(*code_item, cur_offset); |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 683 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 684 | if (cur_block->successor_block_list.block_list_type != kNotUsed) { |
| 685 | LOG(INFO) << PrettyMethod(cu->method_idx, *cu->dex_file); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 686 | LOG(FATAL) << "Successor block list already in use: " |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 687 | << static_cast<int>(cur_block->successor_block_list.block_list_type); |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 688 | } |
| 689 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 690 | cur_block->successor_block_list.block_list_type = kCatch; |
| 691 | CompilerInitGrowableList(cu, &cur_block->successor_block_list.blocks, 2, |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 692 | kListSuccessorBlocks); |
| 693 | |
| 694 | for (;iterator.HasNext(); iterator.Next()) { |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 695 | BasicBlock *catch_block = FindBlock(cu, iterator.GetHandlerAddress(), |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 696 | false /* split*/, |
| 697 | false /* creat */, |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 698 | NULL /* immed_pred_block_p */); |
| 699 | catch_block->catch_entry = true; |
| 700 | cu->catches.insert(catch_block->start_offset); |
| 701 | SuccessorBlockInfo *successor_block_info = reinterpret_cast<SuccessorBlockInfo*> |
| 702 | (NewMem(cu, sizeof(SuccessorBlockInfo), false, kAllocSuccessor)); |
| 703 | successor_block_info->block = catch_block; |
| 704 | successor_block_info->key = iterator.GetHandlerTypeIndex(); |
| 705 | InsertGrowableList(cu, &cur_block->successor_block_list.blocks, |
| 706 | reinterpret_cast<uintptr_t>(successor_block_info)); |
| 707 | InsertGrowableList(cu, catch_block->predecessors, |
| 708 | reinterpret_cast<uintptr_t>(cur_block)); |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 709 | } |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 710 | } else { |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 711 | BasicBlock *eh_block = NewMemBB(cu, kExceptionHandling, |
| 712 | cu->num_blocks++); |
| 713 | cur_block->taken = eh_block; |
| 714 | InsertGrowableList(cu, &cu->block_list, reinterpret_cast<uintptr_t>(eh_block)); |
| 715 | eh_block->start_offset = cur_offset; |
| 716 | InsertGrowableList(cu, eh_block->predecessors, reinterpret_cast<uintptr_t>(cur_block)); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 717 | } |
| 718 | |
Bill Buzbee | c9f40dd | 2012-08-15 11:35:25 -0700 | [diff] [blame] | 719 | if (insn->dalvikInsn.opcode == Instruction::THROW){ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 720 | cur_block->explicit_throw = true; |
| 721 | if ((code_ptr < code_end) && ContentIsInsn(code_ptr)) { |
Bill Buzbee | c9f40dd | 2012-08-15 11:35:25 -0700 | [diff] [blame] | 722 | // Force creation of new block following THROW via side-effect |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 723 | FindBlock(cu, cur_offset + width, /* split */ false, |
| 724 | /* create */ true, /* immed_pred_block_p */ NULL); |
Bill Buzbee | c9f40dd | 2012-08-15 11:35:25 -0700 | [diff] [blame] | 725 | } |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 726 | if (!in_try_block) { |
Bill Buzbee | c9f40dd | 2012-08-15 11:35:25 -0700 | [diff] [blame] | 727 | // Don't split a THROW that can't rethrow - we're done. |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 728 | return cur_block; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 729 | } |
| 730 | } |
Bill Buzbee | c9f40dd | 2012-08-15 11:35:25 -0700 | [diff] [blame] | 731 | |
| 732 | /* |
| 733 | * Split the potentially-throwing instruction into two parts. |
| 734 | * The first half will be a pseudo-op that captures the exception |
| 735 | * edges and terminates the basic block. It always falls through. |
| 736 | * Then, create a new basic block that begins with the throwing instruction |
| 737 | * (minus exceptions). Note: this new basic block must NOT be entered into |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 738 | * the block_map. If the potentially-throwing instruction is the target of a |
Bill Buzbee | c9f40dd | 2012-08-15 11:35:25 -0700 | [diff] [blame] | 739 | * future branch, we need to find the check psuedo half. The new |
| 740 | * basic block containing the work portion of the instruction should |
| 741 | * only be entered via fallthrough from the block containing the |
| 742 | * pseudo exception edge MIR. Note also that this new block is |
| 743 | * not automatically terminated after the work portion, and may |
| 744 | * contain following instructions. |
| 745 | */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 746 | BasicBlock *new_block = NewMemBB(cu, kDalvikByteCode, cu->num_blocks++); |
| 747 | InsertGrowableList(cu, &cu->block_list, reinterpret_cast<uintptr_t>(new_block)); |
| 748 | new_block->start_offset = insn->offset; |
| 749 | cur_block->fall_through = new_block; |
| 750 | InsertGrowableList(cu, new_block->predecessors, reinterpret_cast<uintptr_t>(cur_block)); |
| 751 | MIR* new_insn = static_cast<MIR*>(NewMem(cu, sizeof(MIR), true, kAllocMIR)); |
| 752 | *new_insn = *insn; |
Bill Buzbee | c9f40dd | 2012-08-15 11:35:25 -0700 | [diff] [blame] | 753 | insn->dalvikInsn.opcode = |
| 754 | static_cast<Instruction::Code>(kMirOpCheck); |
| 755 | // Associate the two halves |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 756 | insn->meta.throw_insn = new_insn; |
| 757 | new_insn->meta.throw_insn = insn; |
| 758 | AppendMIR(new_block, new_insn); |
| 759 | return new_block; |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 760 | } |
| 761 | |
Ian Rogers | 1212a02 | 2013-03-04 10:48:41 -0800 | [diff] [blame] | 762 | void CompilerInit(CompilationUnit* cu, const CompilerDriver& compiler) { |
buzbee | 02031b1 | 2012-11-23 09:41:35 -0800 | [diff] [blame] | 763 | bool success = false; |
| 764 | switch (compiler.GetInstructionSet()) { |
| 765 | case kThumb2: |
| 766 | success = InitArmCodegen(cu); |
| 767 | break; |
| 768 | case kMips: |
| 769 | success = InitMipsCodegen(cu); |
| 770 | break; |
| 771 | case kX86: |
| 772 | success = InitX86Codegen(cu); |
| 773 | break; |
| 774 | default:; |
| 775 | } |
| 776 | if (!success) { |
| 777 | LOG(FATAL) << "Failed to initialize codegen for " << compiler.GetInstructionSet(); |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 778 | } |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 779 | if (!HeapInit(cu)) { |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 780 | LOG(FATAL) << "Failed to initialize oat heap"; |
| 781 | } |
| 782 | } |
| 783 | |
Ian Rogers | 1212a02 | 2013-03-04 10:48:41 -0800 | [diff] [blame] | 784 | static CompiledMethod* CompileMethod(CompilerDriver& compiler, |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 785 | const CompilerBackend compiler_backend, |
buzbee | 52a77fc | 2012-11-20 19:50:46 -0800 | [diff] [blame] | 786 | const DexFile::CodeItem* code_item, |
| 787 | uint32_t access_flags, InvokeType invoke_type, |
Ian Rogers | fffdb02 | 2013-01-04 15:14:08 -0800 | [diff] [blame] | 788 | uint32_t class_def_idx, uint32_t method_idx, |
Brian Carlstrom | 265091e | 2013-01-30 14:08:26 -0800 | [diff] [blame] | 789 | jobject class_loader, const DexFile& dex_file |
| 790 | #if defined(ART_USE_PORTABLE_COMPILER) |
| 791 | , llvm::LlvmCompilationUnit* llvm_compilation_unit |
| 792 | #endif |
| 793 | ) |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 794 | { |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 795 | VLOG(compiler) << "Compiling " << PrettyMethod(method_idx, dex_file) << "..."; |
Brian Carlstrom | 94496d3 | 2011-08-22 09:22:47 -0700 | [diff] [blame] | 796 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 797 | const uint16_t* code_ptr = code_item->insns_; |
| 798 | const uint16_t* code_end = code_item->insns_ + code_item->insns_size_in_code_units_; |
| 799 | int num_blocks = 0; |
| 800 | unsigned int cur_offset = 0; |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 801 | |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 802 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 803 | UniquePtr<CompilationUnit> cu(new CompilationUnit); |
buzbee | ba938cb | 2012-02-03 14:47:55 -0800 | [diff] [blame] | 804 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 805 | CompilerInit(cu.get(), compiler); |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 806 | |
Ian Rogers | 1212a02 | 2013-03-04 10:48:41 -0800 | [diff] [blame] | 807 | cu->compiler_driver = &compiler; |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 808 | cu->class_linker = class_linker; |
| 809 | cu->dex_file = &dex_file; |
Ian Rogers | fffdb02 | 2013-01-04 15:14:08 -0800 | [diff] [blame] | 810 | cu->class_def_idx = class_def_idx; |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 811 | cu->method_idx = method_idx; |
| 812 | cu->code_item = code_item; |
| 813 | cu->access_flags = access_flags; |
| 814 | cu->invoke_type = invoke_type; |
| 815 | cu->shorty = dex_file.GetMethodShorty(dex_file.GetMethodId(method_idx)); |
| 816 | cu->instruction_set = compiler.GetInstructionSet(); |
| 817 | cu->insns = code_item->insns_; |
| 818 | cu->insns_size = code_item->insns_size_in_code_units_; |
| 819 | cu->num_ins = code_item->ins_size_; |
| 820 | cu->num_regs = code_item->registers_size_ - cu->num_ins; |
| 821 | cu->num_outs = code_item->outs_size_; |
| 822 | DCHECK((cu->instruction_set == kThumb2) || |
| 823 | (cu->instruction_set == kX86) || |
| 824 | (cu->instruction_set == kMips)); |
| 825 | if ((compiler_backend == kQuickGBC) || (compiler_backend == kPortable)) { |
| 826 | cu->gen_bitcode = true; |
buzbee | 85eee02 | 2012-07-16 22:12:38 -0700 | [diff] [blame] | 827 | } |
Brian Carlstrom | 265091e | 2013-01-30 14:08:26 -0800 | [diff] [blame] | 828 | #if defined(ART_USE_PORTABLE_COMPILER) |
| 829 | cu->llvm_compilation_unit = llvm_compilation_unit; |
| 830 | cu->llvm_info = llvm_compilation_unit->GetQuickContext(); |
| 831 | cu->symbol = llvm_compilation_unit->GetDexCompilationUnit()->GetSymbol(); |
| 832 | #endif |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 833 | /* Adjust this value accordingly once inlining is performed */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 834 | cu->num_dalvik_registers = code_item->registers_size_; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 835 | // TODO: set this from command line |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 836 | cu->compiler_flip_match = false; |
| 837 | bool use_match = !cu->compiler_method_match.empty(); |
| 838 | bool match = use_match && (cu->compiler_flip_match ^ |
| 839 | (PrettyMethod(method_idx, dex_file).find(cu->compiler_method_match) != |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 840 | std::string::npos)); |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 841 | if (!use_match || match) { |
| 842 | cu->disable_opt = kCompilerOptimizerDisableFlags; |
| 843 | cu->enable_debug = kCompilerDebugFlags; |
| 844 | cu->verbose = VLOG_IS_ON(compiler) || |
| 845 | (cu->enable_debug & (1 << kDebugVerbose)); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 846 | } |
buzbee | 6459e7c | 2012-10-02 14:42:41 -0700 | [diff] [blame] | 847 | #ifndef NDEBUG |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 848 | if (cu->gen_bitcode) { |
| 849 | cu->enable_debug |= (1 << kDebugVerifyBitcode); |
buzbee | 6969d50 | 2012-06-15 16:40:31 -0700 | [diff] [blame] | 850 | } |
buzbee | 2cfc639 | 2012-05-07 14:51:40 -0700 | [diff] [blame] | 851 | #endif |
buzbee | 9281f00 | 2012-10-24 12:17:24 -0700 | [diff] [blame] | 852 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 853 | if (cu->instruction_set == kMips) { |
jeffhao | 7fbee07 | 2012-08-24 17:56:54 -0700 | [diff] [blame] | 854 | // Disable some optimizations for mips for now |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 855 | cu->disable_opt |= ( |
jeffhao | 7fbee07 | 2012-08-24 17:56:54 -0700 | [diff] [blame] | 856 | (1 << kLoadStoreElimination) | |
| 857 | (1 << kLoadHoisting) | |
| 858 | (1 << kSuppressLoads) | |
| 859 | (1 << kNullCheckElimination) | |
| 860 | (1 << kPromoteRegs) | |
| 861 | (1 << kTrackLiveTemps) | |
| 862 | (1 << kSkipLargeMethodOptimization) | |
| 863 | (1 << kSafeOptimizations) | |
| 864 | (1 << kBBOpt) | |
| 865 | (1 << kMatch) | |
| 866 | (1 << kPromoteCompilerTemps)); |
| 867 | } |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 868 | |
| 869 | /* Gathering opcode stats? */ |
| 870 | if (kCompilerDebugFlags & (1 << kDebugCountOpcodes)) { |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 871 | cu->opcode_count = |
| 872 | static_cast<int*>(NewMem(cu.get(), kNumPackedOpcodes * sizeof(int), true, kAllocMisc)); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 873 | } |
| 874 | |
| 875 | /* Assume non-throwing leaf */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 876 | cu->attrs = (METHOD_IS_LEAF | METHOD_IS_THROW_FREE); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 877 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 878 | /* Initialize the block list, estimate size based on insns_size */ |
| 879 | CompilerInitGrowableList(cu.get(), &cu->block_list, cu->insns_size, |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 880 | kListBlockList); |
| 881 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 882 | /* Initialize the switch_tables list */ |
| 883 | CompilerInitGrowableList(cu.get(), &cu->switch_tables, 4, |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 884 | kListSwitchTables); |
| 885 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 886 | /* Intialize the fill_array_data list */ |
| 887 | CompilerInitGrowableList(cu.get(), &cu->fill_array_data, 4, |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 888 | kListFillArrayData); |
| 889 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 890 | /* Intialize the throw_launchpads list, estimate size based on insns_size */ |
| 891 | CompilerInitGrowableList(cu.get(), &cu->throw_launchpads, cu->insns_size, |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 892 | kListThrowLaunchPads); |
| 893 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 894 | /* Intialize the instrinsic_launchpads list */ |
| 895 | CompilerInitGrowableList(cu.get(), &cu->intrinsic_launchpads, 4, |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 896 | kListMisc); |
| 897 | |
| 898 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 899 | /* Intialize the suspend_launchpads list */ |
| 900 | CompilerInitGrowableList(cu.get(), &cu->suspend_launchpads, 2048, |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 901 | kListSuspendLaunchPads); |
| 902 | |
| 903 | /* Allocate the bit-vector to track the beginning of basic blocks */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 904 | ArenaBitVector *try_block_addr = AllocBitVector(cu.get(), |
| 905 | cu->insns_size, |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 906 | true /* expandable */); |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 907 | cu->try_block_addr = try_block_addr; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 908 | |
| 909 | /* Create the default entry and exit blocks and enter them to the list */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 910 | BasicBlock *entry_block = NewMemBB(cu.get(), kEntryBlock, num_blocks++); |
| 911 | BasicBlock *exit_block = NewMemBB(cu.get(), kExitBlock, num_blocks++); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 912 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 913 | cu->entry_block = entry_block; |
| 914 | cu->exit_block = exit_block; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 915 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 916 | InsertGrowableList(cu.get(), &cu->block_list, reinterpret_cast<uintptr_t>(entry_block)); |
| 917 | InsertGrowableList(cu.get(), &cu->block_list, reinterpret_cast<uintptr_t>(exit_block)); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 918 | |
| 919 | /* Current block to record parsed instructions */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 920 | BasicBlock *cur_block = NewMemBB(cu.get(), kDalvikByteCode, num_blocks++); |
| 921 | cur_block->start_offset = 0; |
| 922 | InsertGrowableList(cu.get(), &cu->block_list, reinterpret_cast<uintptr_t>(cur_block)); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 923 | /* Add first block to the fast lookup cache */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 924 | cu->block_map.Put(cur_block->start_offset, cur_block); |
| 925 | entry_block->fall_through = cur_block; |
| 926 | InsertGrowableList(cu.get(), cur_block->predecessors, |
| 927 | reinterpret_cast<uintptr_t>(entry_block)); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 928 | |
| 929 | /* |
| 930 | * Store back the number of blocks since new blocks may be created of |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 931 | * accessing cu. |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 932 | */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 933 | cu->num_blocks = num_blocks; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 934 | |
| 935 | /* Identify code range in try blocks and set up the empty catch blocks */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 936 | ProcessTryCatchBlocks(cu.get()); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 937 | |
| 938 | /* Set up for simple method detection */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 939 | int num_patterns = sizeof(special_patterns)/sizeof(special_patterns[0]); |
| 940 | bool live_pattern = (num_patterns > 0) && !(cu->disable_opt & (1 << kMatch)); |
| 941 | bool* dead_pattern = |
| 942 | static_cast<bool*>(NewMem(cu.get(), sizeof(bool) * num_patterns, true, kAllocMisc)); |
| 943 | SpecialCaseHandler special_case = kNoHandler; |
| 944 | int pattern_pos = 0; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 945 | |
| 946 | /* Parse all instructions and put them into containing basic blocks */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 947 | while (code_ptr < code_end) { |
| 948 | MIR *insn = static_cast<MIR *>(NewMem(cu.get(), sizeof(MIR), true, kAllocMIR)); |
| 949 | insn->offset = cur_offset; |
buzbee | a169e1d | 2012-12-05 14:26:44 -0800 | [diff] [blame] | 950 | int width = ParseInsn(cu.get(), code_ptr, &insn->dalvikInsn); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 951 | insn->width = width; |
| 952 | Instruction::Code opcode = insn->dalvikInsn.opcode; |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 953 | if (cu->opcode_count != NULL) { |
| 954 | cu->opcode_count[static_cast<int>(opcode)]++; |
buzbee | 44b412b | 2012-02-04 08:50:53 -0800 | [diff] [blame] | 955 | } |
| 956 | |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 957 | /* Terminate when the data section is seen */ |
| 958 | if (width == 0) |
| 959 | break; |
| 960 | |
| 961 | /* Possible simple method? */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 962 | if (live_pattern) { |
| 963 | live_pattern = false; |
| 964 | special_case = kNoHandler; |
| 965 | for (int i = 0; i < num_patterns; i++) { |
| 966 | if (!dead_pattern[i]) { |
| 967 | if (special_patterns[i].opcodes[pattern_pos] == opcode) { |
| 968 | live_pattern = true; |
| 969 | special_case = special_patterns[i].handler_code; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 970 | } else { |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 971 | dead_pattern[i] = true; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 972 | } |
| 973 | } |
| 974 | } |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 975 | pattern_pos++; |
buzbee | a7c1268 | 2012-03-19 13:13:53 -0700 | [diff] [blame] | 976 | } |
| 977 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 978 | AppendMIR(cur_block, insn); |
buzbee | cefd187 | 2011-09-09 09:59:52 -0700 | [diff] [blame] | 979 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 980 | code_ptr += width; |
Ian Rogers | a75a013 | 2012-09-28 11:41:42 -0700 | [diff] [blame] | 981 | int flags = Instruction::FlagsOf(insn->dalvikInsn.opcode); |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 982 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 983 | int df_flags = oat_data_flow_attributes[insn->dalvikInsn.opcode]; |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 984 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 985 | if (df_flags & DF_HAS_DEFS) { |
| 986 | cu->def_count += (df_flags & DF_A_WIDE) ? 2 : 1; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 987 | } |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 988 | |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 989 | if (flags & Instruction::kBranch) { |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 990 | cur_block = ProcessCanBranch(cu.get(), cur_block, insn, cur_offset, |
| 991 | width, flags, code_ptr, code_end); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 992 | } else if (flags & Instruction::kReturn) { |
buzbee | bbdd053 | 2013-02-07 09:33:02 -0800 | [diff] [blame] | 993 | cur_block->terminated_by_return = true; |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 994 | cur_block->fall_through = exit_block; |
| 995 | InsertGrowableList(cu.get(), exit_block->predecessors, |
| 996 | reinterpret_cast<uintptr_t>(cur_block)); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 997 | /* |
| 998 | * Terminate the current block if there are instructions |
| 999 | * afterwards. |
| 1000 | */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1001 | if (code_ptr < code_end) { |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1002 | /* |
| 1003 | * Create a fallthrough block for real instructions |
| 1004 | * (incl. NOP). |
| 1005 | */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1006 | if (ContentIsInsn(code_ptr)) { |
| 1007 | FindBlock(cu.get(), cur_offset + width, |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1008 | /* split */ |
| 1009 | false, |
| 1010 | /* create */ |
| 1011 | true, |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1012 | /* immed_pred_block_p */ |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1013 | NULL); |
| 1014 | } |
| 1015 | } |
| 1016 | } else if (flags & Instruction::kThrow) { |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1017 | cur_block = ProcessCanThrow(cu.get(), cur_block, insn, cur_offset, |
| 1018 | width, flags, try_block_addr, code_ptr, code_end); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1019 | } else if (flags & Instruction::kSwitch) { |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1020 | ProcessCanSwitch(cu.get(), cur_block, insn, cur_offset, width, flags); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1021 | } |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1022 | cur_offset += width; |
| 1023 | BasicBlock *next_block = FindBlock(cu.get(), cur_offset, |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1024 | /* split */ |
| 1025 | false, |
| 1026 | /* create */ |
| 1027 | false, |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1028 | /* immed_pred_block_p */ |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1029 | NULL); |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1030 | if (next_block) { |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1031 | /* |
| 1032 | * The next instruction could be the target of a previously parsed |
| 1033 | * forward branch so a block is already created. If the current |
| 1034 | * instruction is not an unconditional branch, connect them through |
| 1035 | * the fall-through link. |
| 1036 | */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1037 | DCHECK(cur_block->fall_through == NULL || |
| 1038 | cur_block->fall_through == next_block || |
| 1039 | cur_block->fall_through == exit_block); |
buzbee | 5ade1d2 | 2011-09-09 14:44:52 -0700 | [diff] [blame] | 1040 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1041 | if ((cur_block->fall_through == NULL) && (flags & Instruction::kContinue)) { |
| 1042 | cur_block->fall_through = next_block; |
| 1043 | InsertGrowableList(cu.get(), next_block->predecessors, |
| 1044 | reinterpret_cast<uintptr_t>(cur_block)); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1045 | } |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1046 | cur_block = next_block; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1047 | } |
| 1048 | } |
buzbee | fc9e6fa | 2012-03-23 15:14:29 -0700 | [diff] [blame] | 1049 | |
buzbee | d850621 | 2012-12-20 14:15:05 -0800 | [diff] [blame] | 1050 | if (cu->enable_debug & (1 << kDebugDumpCFG)) { |
| 1051 | DumpCFG(cu.get(), "/sdcard/1_post_parse_cfg/", true); |
| 1052 | } |
| 1053 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1054 | if (!(cu->disable_opt & (1 << kSkipLargeMethodOptimization))) { |
| 1055 | if ((cu->num_blocks > MANY_BLOCKS) || |
| 1056 | ((cu->num_blocks > MANY_BLOCKS_INITIALIZER) && |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1057 | PrettyMethod(method_idx, dex_file, false).find("init>") != |
| 1058 | std::string::npos)) { |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1059 | cu->qd_mode = true; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1060 | } |
| 1061 | } |
buzbee | fc9e6fa | 2012-03-23 15:14:29 -0700 | [diff] [blame] | 1062 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1063 | if (cu->qd_mode) { |
buzbee | d1643e4 | 2012-09-05 14:06:51 -0700 | [diff] [blame] | 1064 | // Bitcode generation requires full dataflow analysis |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1065 | cu->disable_dataflow = !cu->gen_bitcode; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1066 | // Disable optimization which require dataflow/ssa |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1067 | cu->disable_opt |= (1 << kBBOpt) | (1 << kPromoteRegs) | (1 << kNullCheckElimination); |
| 1068 | if (cu->verbose) { |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1069 | LOG(INFO) << "QD mode enabled: " |
| 1070 | << PrettyMethod(method_idx, dex_file) |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1071 | << " num blocks: " << cu->num_blocks; |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1072 | } |
| 1073 | } |
buzbee | c1f4504 | 2011-09-21 16:03:19 -0700 | [diff] [blame] | 1074 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1075 | if (cu->verbose) { |
| 1076 | DumpCompilationUnit(cu.get()); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1077 | } |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 1078 | |
buzbee | 0967a25 | 2012-09-14 10:43:54 -0700 | [diff] [blame] | 1079 | /* Do a code layout pass */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1080 | CodeLayout(cu.get()); |
buzbee | 0967a25 | 2012-09-14 10:43:54 -0700 | [diff] [blame] | 1081 | |
buzbee | d850621 | 2012-12-20 14:15:05 -0800 | [diff] [blame] | 1082 | if (cu->enable_debug & (1 << kDebugDumpCFG)) { |
| 1083 | DumpCFG(cu.get(), "/sdcard/2_post_layout_cfg/", true); |
| 1084 | } |
| 1085 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1086 | if (cu->enable_debug & (1 << kDebugVerifyDataflow)) { |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1087 | /* Verify if all blocks are connected as claimed */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1088 | DataFlowAnalysisDispatcher(cu.get(), VerifyPredInfo, kAllNodes, |
| 1089 | false /* is_iterative */); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1090 | } |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 1091 | |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1092 | /* Perform SSA transformation for the whole method */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1093 | SSATransformation(cu.get()); |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 1094 | |
buzbee | d850621 | 2012-12-20 14:15:05 -0800 | [diff] [blame] | 1095 | if (cu->enable_debug & (1 << kDebugDumpCFG)) { |
| 1096 | DumpCFG(cu.get(), "/sdcard/3_post_ssa_cfg/", false); |
| 1097 | } |
| 1098 | |
buzbee | 2cfc639 | 2012-05-07 14:51:40 -0700 | [diff] [blame] | 1099 | /* Do constant propagation */ |
buzbee | 4ef3e45 | 2012-12-14 13:35:28 -0800 | [diff] [blame] | 1100 | cu->is_constant_v = AllocBitVector(cu.get(), cu->num_ssa_regs, false /* not expandable */); |
| 1101 | cu->must_flush_constant_v = AllocBitVector(cu.get(), cu->num_ssa_regs, |
| 1102 | false /* not expandable */); |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1103 | cu->constant_values = |
| 1104 | static_cast<int*>(NewMem(cu.get(), sizeof(int) * cu->num_ssa_regs, true, kAllocDFInfo)); |
| 1105 | DataFlowAnalysisDispatcher(cu.get(), DoConstantPropogation, |
buzbee | 2cfc639 | 2012-05-07 14:51:40 -0700 | [diff] [blame] | 1106 | kAllNodes, |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1107 | false /* is_iterative */); |
buzbee | 2cfc639 | 2012-05-07 14:51:40 -0700 | [diff] [blame] | 1108 | |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1109 | /* Detect loops */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1110 | LoopDetection(cu.get()); |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 1111 | |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1112 | /* Count uses */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1113 | MethodUseCount(cu.get()); |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 1114 | |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1115 | /* Perform null check elimination */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1116 | NullCheckElimination(cu.get()); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1117 | |
buzbee | d850621 | 2012-12-20 14:15:05 -0800 | [diff] [blame] | 1118 | if (cu->enable_debug & (1 << kDebugDumpCFG)) { |
| 1119 | DumpCFG(cu.get(), "/sdcard/4_post_nce_cfg/", false); |
| 1120 | } |
| 1121 | |
buzbee | d1643e4 | 2012-09-05 14:06:51 -0700 | [diff] [blame] | 1122 | /* Combine basic blocks where possible */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1123 | BasicBlockCombine(cu.get()); |
buzbee | d1643e4 | 2012-09-05 14:06:51 -0700 | [diff] [blame] | 1124 | |
buzbee | d850621 | 2012-12-20 14:15:05 -0800 | [diff] [blame] | 1125 | if (cu->enable_debug & (1 << kDebugDumpCFG)) { |
| 1126 | DumpCFG(cu.get(), "/sdcard/5_post_bbcombine_cfg/", false); |
| 1127 | } |
| 1128 | |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1129 | /* Do some basic block optimizations */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1130 | BasicBlockOptimization(cu.get()); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1131 | |
buzbee | d850621 | 2012-12-20 14:15:05 -0800 | [diff] [blame] | 1132 | // Debugging only |
| 1133 | if (cu->enable_debug & (1 << kDebugDumpCFG)) { |
| 1134 | DumpCFG(cu.get(), "/sdcard/6_post_bbo_cfg/", false); |
| 1135 | } |
| 1136 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1137 | if (cu->enable_debug & (1 << kDebugDumpCheckStats)) { |
| 1138 | DumpCheckStats(cu.get()); |
buzbee | d1643e4 | 2012-09-05 14:06:51 -0700 | [diff] [blame] | 1139 | } |
| 1140 | |
buzbee | 02031b1 | 2012-11-23 09:41:35 -0800 | [diff] [blame] | 1141 | cu.get()->cg->CompilerInitializeRegAlloc(cu.get()); // Needs to happen after SSA naming |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1142 | |
| 1143 | /* Allocate Registers using simple local allocation scheme */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1144 | SimpleRegAlloc(cu.get()); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1145 | |
buzbee | 2502e00 | 2012-12-31 16:05:53 -0800 | [diff] [blame] | 1146 | if (cu->enable_debug & (1 << kDebugDumpCFG)) { |
| 1147 | DumpCFG(cu.get(), "/sdcard/7_post_ralloc_cfg/", true); |
| 1148 | } |
| 1149 | |
| 1150 | |
Brian Carlstrom | 265091e | 2013-01-30 14:08:26 -0800 | [diff] [blame] | 1151 | #if defined(ART_USE_PORTABLE_COMPILER) |
buzbee | 2cfc639 | 2012-05-07 14:51:40 -0700 | [diff] [blame] | 1152 | /* Go the LLVM path? */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1153 | if (cu->gen_bitcode) { |
buzbee | 2cfc639 | 2012-05-07 14:51:40 -0700 | [diff] [blame] | 1154 | // MIR->Bitcode |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1155 | MethodMIR2Bitcode(cu.get()); |
| 1156 | if (compiler_backend == kPortable) { |
buzbee | abc4c6b | 2012-08-23 08:17:15 -0700 | [diff] [blame] | 1157 | // all done |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1158 | ArenaReset(cu.get()); |
buzbee | abc4c6b | 2012-08-23 08:17:15 -0700 | [diff] [blame] | 1159 | return NULL; |
| 1160 | } |
buzbee | 2cfc639 | 2012-05-07 14:51:40 -0700 | [diff] [blame] | 1161 | // Bitcode->LIR |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1162 | MethodBitcode2LIR(cu.get()); |
Brian Carlstrom | 265091e | 2013-01-30 14:08:26 -0800 | [diff] [blame] | 1163 | } else |
| 1164 | #endif |
| 1165 | { |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1166 | if (special_case != kNoHandler) { |
buzbee | 2cfc639 | 2012-05-07 14:51:40 -0700 | [diff] [blame] | 1167 | /* |
| 1168 | * Custom codegen for special cases. If for any reason the |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1169 | * special codegen doesn't succeed, cu->first_lir_insn will |
buzbee | 2cfc639 | 2012-05-07 14:51:40 -0700 | [diff] [blame] | 1170 | * set to NULL; |
| 1171 | */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1172 | SpecialMIR2LIR(cu.get(), special_case); |
buzbee | 2cfc639 | 2012-05-07 14:51:40 -0700 | [diff] [blame] | 1173 | } |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 1174 | |
buzbee | 2cfc639 | 2012-05-07 14:51:40 -0700 | [diff] [blame] | 1175 | /* Convert MIR to LIR, etc. */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1176 | if (cu->first_lir_insn == NULL) { |
| 1177 | MethodMIR2LIR(cu.get()); |
buzbee | 2cfc639 | 2012-05-07 14:51:40 -0700 | [diff] [blame] | 1178 | } |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1179 | } |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 1180 | |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1181 | /* Method is not empty */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1182 | if (cu->first_lir_insn) { |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 1183 | |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1184 | // mark the targets of switch statement case labels |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1185 | ProcessSwitchTables(cu.get()); |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 1186 | |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1187 | /* Convert LIR into machine code. */ |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1188 | AssembleLIR(cu.get()); |
buzbee | 99ba964 | 2012-01-25 14:23:14 -0800 | [diff] [blame] | 1189 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1190 | if (cu->verbose) { |
| 1191 | CodegenDump(cu.get()); |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 1192 | } |
| 1193 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1194 | if (cu->opcode_count != NULL) { |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1195 | LOG(INFO) << "Opcode Count"; |
| 1196 | for (int i = 0; i < kNumPackedOpcodes; i++) { |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1197 | if (cu->opcode_count[i] != 0) { |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1198 | LOG(INFO) << "-C- " |
| 1199 | << Instruction::Name(static_cast<Instruction::Code>(i)) |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1200 | << " " << cu->opcode_count[i]; |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 1201 | } |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1202 | } |
| 1203 | } |
| 1204 | } |
buzbee | a7c1268 | 2012-03-19 13:13:53 -0700 | [diff] [blame] | 1205 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1206 | // Combine vmap tables - core regs, then fp regs - into vmap_table |
| 1207 | std::vector<uint16_t> vmap_table; |
buzbee | ca7a5e4 | 2012-08-20 11:12:18 -0700 | [diff] [blame] | 1208 | // Core regs may have been inserted out of order - sort first |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1209 | std::sort(cu->core_vmap_table.begin(), cu->core_vmap_table.end()); |
| 1210 | for (size_t i = 0 ; i < cu->core_vmap_table.size(); i++) { |
buzbee | ca7a5e4 | 2012-08-20 11:12:18 -0700 | [diff] [blame] | 1211 | // Copy, stripping out the phys register sort key |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1212 | vmap_table.push_back(~(-1 << VREG_NUM_WIDTH) & cu->core_vmap_table[i]); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1213 | } |
| 1214 | // If we have a frame, push a marker to take place of lr |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1215 | if (cu->frame_size > 0) { |
| 1216 | vmap_table.push_back(INVALID_VREG); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1217 | } else { |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1218 | DCHECK_EQ(__builtin_popcount(cu->core_spill_mask), 0); |
| 1219 | DCHECK_EQ(__builtin_popcount(cu->fp_spill_mask), 0); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1220 | } |
buzbee | ca7a5e4 | 2012-08-20 11:12:18 -0700 | [diff] [blame] | 1221 | // Combine vmap tables - core regs, then fp regs. fp regs already sorted |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1222 | for (uint32_t i = 0; i < cu->fp_vmap_table.size(); i++) { |
| 1223 | vmap_table.push_back(cu->fp_vmap_table[i]); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1224 | } |
| 1225 | CompiledMethod* result = |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1226 | new CompiledMethod(cu->instruction_set, cu->code_buffer, |
| 1227 | cu->frame_size, cu->core_spill_mask, cu->fp_spill_mask, |
| 1228 | cu->combined_mapping_table, vmap_table, cu->native_gc_map); |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 1229 | |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1230 | VLOG(compiler) << "Compiled " << PrettyMethod(method_idx, dex_file) |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1231 | << " (" << (cu->code_buffer.size() * sizeof(cu->code_buffer[0])) |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1232 | << " bytes)"; |
buzbee | 5abfa3e | 2012-01-31 17:01:43 -0800 | [diff] [blame] | 1233 | |
| 1234 | #ifdef WITH_MEMSTATS |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1235 | if (cu->enable_debug & (1 << kDebugShowMemoryUsage)) { |
| 1236 | DumpMemStats(cu.get()); |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1237 | } |
buzbee | 5abfa3e | 2012-01-31 17:01:43 -0800 | [diff] [blame] | 1238 | #endif |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 1239 | |
buzbee | fa57c47 | 2012-11-21 12:06:18 -0800 | [diff] [blame] | 1240 | ArenaReset(cu.get()); |
buzbee | ba938cb | 2012-02-03 14:47:55 -0800 | [diff] [blame] | 1241 | |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1242 | return result; |
buzbee | 67bf885 | 2011-08-17 17:51:35 -0700 | [diff] [blame] | 1243 | } |
| 1244 | |
Ian Rogers | 1212a02 | 2013-03-04 10:48:41 -0800 | [diff] [blame] | 1245 | CompiledMethod* CompileOneMethod(CompilerDriver& compiler, |
buzbee | c531cef | 2012-10-18 07:09:20 -0700 | [diff] [blame] | 1246 | const CompilerBackend backend, |
buzbee | abc4c6b | 2012-08-23 08:17:15 -0700 | [diff] [blame] | 1247 | const DexFile::CodeItem* code_item, |
Brian Carlstrom | 265091e | 2013-01-30 14:08:26 -0800 | [diff] [blame] | 1248 | uint32_t access_flags, |
| 1249 | InvokeType invoke_type, |
| 1250 | uint32_t class_def_idx, |
| 1251 | uint32_t method_idx, |
| 1252 | jobject class_loader, |
buzbee | c531cef | 2012-10-18 07:09:20 -0700 | [diff] [blame] | 1253 | const DexFile& dex_file, |
Brian Carlstrom | 265091e | 2013-01-30 14:08:26 -0800 | [diff] [blame] | 1254 | llvm::LlvmCompilationUnit* llvm_compilation_unit) |
buzbee | abc4c6b | 2012-08-23 08:17:15 -0700 | [diff] [blame] | 1255 | { |
Ian Rogers | fffdb02 | 2013-01-04 15:14:08 -0800 | [diff] [blame] | 1256 | return CompileMethod(compiler, backend, code_item, access_flags, invoke_type, class_def_idx, |
Brian Carlstrom | 265091e | 2013-01-30 14:08:26 -0800 | [diff] [blame] | 1257 | method_idx, class_loader, dex_file |
| 1258 | #if defined(ART_USE_PORTABLE_COMPILER) |
| 1259 | , llvm_compilation_unit |
| 1260 | #endif |
| 1261 | ); |
buzbee | abc4c6b | 2012-08-23 08:17:15 -0700 | [diff] [blame] | 1262 | } |
| 1263 | |
Elliott Hughes | 11d1b0c | 2012-01-23 16:57:47 -0800 | [diff] [blame] | 1264 | } // namespace art |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 1265 | |
Bill Buzbee | a114add | 2012-05-03 15:00:40 -0700 | [diff] [blame] | 1266 | extern "C" art::CompiledMethod* |
Ian Rogers | 1212a02 | 2013-03-04 10:48:41 -0800 | [diff] [blame] | 1267 | ArtQuickCompileMethod(art::CompilerDriver& compiler, |
buzbee | c531cef | 2012-10-18 07:09:20 -0700 | [diff] [blame] | 1268 | const art::DexFile::CodeItem* code_item, |
| 1269 | uint32_t access_flags, art::InvokeType invoke_type, |
Ian Rogers | fffdb02 | 2013-01-04 15:14:08 -0800 | [diff] [blame] | 1270 | uint32_t class_def_idx, uint32_t method_idx, jobject class_loader, |
buzbee | c531cef | 2012-10-18 07:09:20 -0700 | [diff] [blame] | 1271 | const art::DexFile& dex_file) |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 1272 | { |
buzbee | c531cef | 2012-10-18 07:09:20 -0700 | [diff] [blame] | 1273 | // TODO: check method fingerprint here to determine appropriate backend type. Until then, use build default |
| 1274 | art::CompilerBackend backend = compiler.GetCompilerBackend(); |
buzbee | 52a77fc | 2012-11-20 19:50:46 -0800 | [diff] [blame] | 1275 | return art::CompileOneMethod(compiler, backend, code_item, access_flags, invoke_type, |
Ian Rogers | fffdb02 | 2013-01-04 15:14:08 -0800 | [diff] [blame] | 1276 | class_def_idx, method_idx, class_loader, dex_file, |
| 1277 | NULL /* use thread llvm_info */); |
Elliott Hughes | b3bd5f0 | 2012-03-08 21:05:27 -0800 | [diff] [blame] | 1278 | } |