blob: 6f4ee6c5b07e3b1a9ec8d73598ff3169e5eeb7ab [file] [log] [blame]
buzbee67bf8852011-08-17 17:51:35 -07001/*
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 Carlstrom265091e2013-01-30 14:08:26 -080017#include <llvm/Support/Threading.h>
18
Ian Rogers1212a022013-03-04 10:48:41 -080019#include "compiler/driver/compiler_driver.h"
buzbeeefc63692012-11-14 16:31:52 -080020#include "compiler_internals.h"
buzbee311ca162013-02-28 15:56:43 -080021#include "dataflow_iterator.h"
Brian Carlstrom265091e2013-01-30 14:08:26 -080022#if defined(ART_USE_PORTABLE_COMPILER)
23#include "compiler/llvm/llvm_compilation_unit.h"
buzbee1fd33462013-03-25 13:40:45 -070024#include "compiler/dex/portable/mir_to_gbc.h"
Brian Carlstrom265091e2013-01-30 14:08:26 -080025#endif
Ian Rogers0571d352011-11-03 19:51:38 -070026#include "leb128.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080027#include "mirror/object.h"
Brian Carlstrom1f870082011-08-23 16:02:11 -070028#include "runtime.h"
buzbee1fd33462013-03-25 13:40:45 -070029#include "backend.h"
buzbee862a7602013-04-05 10:58:54 -070030#include "base/logging.h"
buzbee67bf8852011-08-17 17:51:35 -070031
buzbee4df2bbd2012-10-11 14:46:06 -070032namespace {
Ian Rogersc928de92013-02-27 14:30:44 -080033#if !defined(ART_USE_PORTABLE_COMPILER)
buzbee4df2bbd2012-10-11 14:46:06 -070034 pthread_once_t llvm_multi_init = PTHREAD_ONCE_INIT;
Shih-wei Liao215a9262012-10-12 10:29:46 -070035#endif
buzbee4df2bbd2012-10-11 14:46:06 -070036 void InitializeLLVMForQuick() {
Ian Rogers4c1c2832013-03-04 18:30:13 -080037 ::llvm::llvm_start_multithreaded();
buzbee4df2bbd2012-10-11 14:46:06 -070038 }
39}
buzbee4df2bbd2012-10-11 14:46:06 -070040
Elliott Hughes11d1b0c2012-01-23 16:57:47 -080041namespace art {
Ian Rogers4c1c2832013-03-04 18:30:13 -080042namespace llvm {
43::llvm::Module* makeLLVMModuleContents(::llvm::Module* module);
Ian Rogers76ae4fe2013-02-27 16:03:41 -080044}
Elliott Hughes11d1b0c2012-01-23 16:57:47 -080045
buzbee4df2bbd2012-10-11 14:46:06 -070046LLVMInfo::LLVMInfo() {
Ian Rogersc928de92013-02-27 14:30:44 -080047#if !defined(ART_USE_PORTABLE_COMPILER)
buzbee4df2bbd2012-10-11 14:46:06 -070048 pthread_once(&llvm_multi_init, InitializeLLVMForQuick);
49#endif
buzbee692be802012-08-29 15:52:59 -070050 // Create context, module, intrinsic helper & ir builder
Ian Rogers4c1c2832013-03-04 18:30:13 -080051 llvm_context_.reset(new ::llvm::LLVMContext());
52 llvm_module_ = new ::llvm::Module("art", *llvm_context_);
53 ::llvm::StructType::create(*llvm_context_, "JavaObject");
54 art::llvm::makeLLVMModuleContents(llvm_module_);
55 intrinsic_helper_.reset( new art::llvm::IntrinsicHelper(*llvm_context_, *llvm_module_));
56 ir_builder_.reset(new art::llvm::IRBuilder(*llvm_context_, *llvm_module_, *intrinsic_helper_));
buzbee692be802012-08-29 15:52:59 -070057}
58
buzbee4df2bbd2012-10-11 14:46:06 -070059LLVMInfo::~LLVMInfo() {
buzbee692be802012-08-29 15:52:59 -070060}
61
Ian Rogers1212a022013-03-04 10:48:41 -080062extern "C" void ArtInitQuickCompilerContext(art::CompilerDriver& compiler) {
buzbee692be802012-08-29 15:52:59 -070063 CHECK(compiler.GetCompilerContext() == NULL);
buzbeefa57c472012-11-21 12:06:18 -080064 LLVMInfo* llvm_info = new LLVMInfo();
65 compiler.SetCompilerContext(llvm_info);
buzbee692be802012-08-29 15:52:59 -070066}
67
Ian Rogers1212a022013-03-04 10:48:41 -080068extern "C" void ArtUnInitQuickCompilerContext(art::CompilerDriver& compiler) {
buzbee4df2bbd2012-10-11 14:46:06 -070069 delete reinterpret_cast<LLVMInfo*>(compiler.GetCompilerContext());
buzbee692be802012-08-29 15:52:59 -070070 compiler.SetCompilerContext(NULL);
71}
buzbee692be802012-08-29 15:52:59 -070072
buzbeece302932011-10-04 14:32:18 -070073/* Default optimizer/debug setting for the compiler. */
Elliott Hughese52e49b2012-04-02 16:05:44 -070074static uint32_t kCompilerOptimizerDisableFlags = 0 | // Disable specific optimizations
buzbee4ef3e452012-12-14 13:35:28 -080075 (1 << kLoadStoreElimination) |
Bill Buzbeea114add2012-05-03 15:00:40 -070076 //(1 << kLoadHoisting) |
77 //(1 << kSuppressLoads) |
78 //(1 << kNullCheckElimination) |
79 //(1 << kPromoteRegs) |
80 //(1 << kTrackLiveTemps) |
Bill Buzbeea114add2012-05-03 15:00:40 -070081 //(1 << kSafeOptimizations) |
82 //(1 << kBBOpt) |
83 //(1 << kMatch) |
84 //(1 << kPromoteCompilerTemps) |
85 0;
buzbeece302932011-10-04 14:32:18 -070086
Elliott Hughese52e49b2012-04-02 16:05:44 -070087static uint32_t kCompilerDebugFlags = 0 | // Enable debug/testing modes
Bill Buzbeea114add2012-05-03 15:00:40 -070088 //(1 << kDebugDisplayMissingTargets) |
89 //(1 << kDebugVerbose) |
90 //(1 << kDebugDumpCFG) |
91 //(1 << kDebugSlowFieldPath) |
92 //(1 << kDebugSlowInvokePath) |
93 //(1 << kDebugSlowStringPath) |
94 //(1 << kDebugSlowestFieldPath) |
95 //(1 << kDebugSlowestStringPath) |
96 //(1 << kDebugExerciseResolveMethod) |
97 //(1 << kDebugVerifyDataflow) |
98 //(1 << kDebugShowMemoryUsage) |
99 //(1 << kDebugShowNops) |
100 //(1 << kDebugCountOpcodes) |
buzbeed1643e42012-09-05 14:06:51 -0700101 //(1 << kDebugDumpCheckStats) |
buzbeead8f15e2012-06-18 14:49:45 -0700102 //(1 << kDebugDumpBitcodeFile) |
Bill Buzbeec9f40dd2012-08-15 11:35:25 -0700103 //(1 << kDebugVerifyBitcode) |
Bill Buzbeea114add2012-05-03 15:00:40 -0700104 0;
buzbeece302932011-10-04 14:32:18 -0700105
Ian Rogers1212a022013-03-04 10:48:41 -0800106static CompiledMethod* CompileMethod(CompilerDriver& compiler,
buzbeefa57c472012-11-21 12:06:18 -0800107 const CompilerBackend compiler_backend,
buzbee52a77fc2012-11-20 19:50:46 -0800108 const DexFile::CodeItem* code_item,
109 uint32_t access_flags, InvokeType invoke_type,
Ian Rogersfffdb022013-01-04 15:14:08 -0800110 uint32_t class_def_idx, uint32_t method_idx,
Brian Carlstrom265091e2013-01-30 14:08:26 -0800111 jobject class_loader, const DexFile& dex_file
112#if defined(ART_USE_PORTABLE_COMPILER)
113 , llvm::LlvmCompilationUnit* llvm_compilation_unit
114#endif
115)
buzbee67bf8852011-08-17 17:51:35 -0700116{
Bill Buzbeea114add2012-05-03 15:00:40 -0700117 VLOG(compiler) << "Compiling " << PrettyMethod(method_idx, dex_file) << "...";
Brian Carlstrom94496d32011-08-22 09:22:47 -0700118
Bill Buzbeea114add2012-05-03 15:00:40 -0700119 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
buzbeefa57c472012-11-21 12:06:18 -0800120 UniquePtr<CompilationUnit> cu(new CompilationUnit);
buzbeeba938cb2012-02-03 14:47:55 -0800121
Ian Rogers1212a022013-03-04 10:48:41 -0800122 cu->compiler_driver = &compiler;
buzbeefa57c472012-11-21 12:06:18 -0800123 cu->class_linker = class_linker;
buzbeefa57c472012-11-21 12:06:18 -0800124 cu->instruction_set = compiler.GetInstructionSet();
buzbee1fd33462013-03-25 13:40:45 -0700125 cu->compiler_backend = compiler_backend;
buzbeefa57c472012-11-21 12:06:18 -0800126 DCHECK((cu->instruction_set == kThumb2) ||
127 (cu->instruction_set == kX86) ||
128 (cu->instruction_set == kMips));
buzbee311ca162013-02-28 15:56:43 -0800129
buzbee311ca162013-02-28 15:56:43 -0800130
Bill Buzbeea114add2012-05-03 15:00:40 -0700131 /* Adjust this value accordingly once inlining is performed */
buzbeefa57c472012-11-21 12:06:18 -0800132 cu->num_dalvik_registers = code_item->registers_size_;
Bill Buzbeea114add2012-05-03 15:00:40 -0700133 // TODO: set this from command line
buzbeefa57c472012-11-21 12:06:18 -0800134 cu->compiler_flip_match = false;
135 bool use_match = !cu->compiler_method_match.empty();
136 bool match = use_match && (cu->compiler_flip_match ^
137 (PrettyMethod(method_idx, dex_file).find(cu->compiler_method_match) !=
Bill Buzbeea114add2012-05-03 15:00:40 -0700138 std::string::npos));
buzbeefa57c472012-11-21 12:06:18 -0800139 if (!use_match || match) {
140 cu->disable_opt = kCompilerOptimizerDisableFlags;
141 cu->enable_debug = kCompilerDebugFlags;
142 cu->verbose = VLOG_IS_ON(compiler) ||
143 (cu->enable_debug & (1 << kDebugVerbose));
Bill Buzbeea114add2012-05-03 15:00:40 -0700144 }
buzbee311ca162013-02-28 15:56:43 -0800145
buzbee1fd33462013-03-25 13:40:45 -0700146 /*
147 * TODO: rework handling of optimization and debug flags. Should we split out
148 * MIR and backend flags? Need command-line setting as well.
149 */
150
151 if (compiler_backend == kPortable) {
152 // Fused long branches not currently usseful in bitcode.
153 cu->disable_opt |= (1 << kBranchFusing);
buzbee6969d502012-06-15 16:40:31 -0700154 }
buzbee9281f002012-10-24 12:17:24 -0700155
buzbeefa57c472012-11-21 12:06:18 -0800156 if (cu->instruction_set == kMips) {
jeffhao7fbee072012-08-24 17:56:54 -0700157 // Disable some optimizations for mips for now
buzbeefa57c472012-11-21 12:06:18 -0800158 cu->disable_opt |= (
jeffhao7fbee072012-08-24 17:56:54 -0700159 (1 << kLoadStoreElimination) |
160 (1 << kLoadHoisting) |
161 (1 << kSuppressLoads) |
162 (1 << kNullCheckElimination) |
163 (1 << kPromoteRegs) |
164 (1 << kTrackLiveTemps) |
jeffhao7fbee072012-08-24 17:56:54 -0700165 (1 << kSafeOptimizations) |
166 (1 << kBBOpt) |
167 (1 << kMatch) |
168 (1 << kPromoteCompilerTemps));
169 }
Bill Buzbeea114add2012-05-03 15:00:40 -0700170
buzbee862a7602013-04-05 10:58:54 -0700171 cu->mir_graph.reset(new MIRGraph(cu.get(), &cu->arena));
buzbee311ca162013-02-28 15:56:43 -0800172
Bill Buzbeea114add2012-05-03 15:00:40 -0700173 /* Gathering opcode stats? */
174 if (kCompilerDebugFlags & (1 << kDebugCountOpcodes)) {
buzbee311ca162013-02-28 15:56:43 -0800175 cu->mir_graph->EnableOpcodeCounting();
Bill Buzbeea114add2012-05-03 15:00:40 -0700176 }
177
buzbee311ca162013-02-28 15:56:43 -0800178 /* Build the raw MIR graph */
179 cu->mir_graph->InlineMethod(code_item, access_flags, invoke_type, class_def_idx, method_idx,
180 class_loader, dex_file);
buzbee67bf8852011-08-17 17:51:35 -0700181
buzbee0967a252012-09-14 10:43:54 -0700182 /* Do a code layout pass */
buzbee311ca162013-02-28 15:56:43 -0800183 cu->mir_graph->CodeLayout();
buzbeed8506212012-12-20 14:15:05 -0800184
Bill Buzbeea114add2012-05-03 15:00:40 -0700185 /* Perform SSA transformation for the whole method */
buzbee311ca162013-02-28 15:56:43 -0800186 cu->mir_graph->SSATransformation();
buzbeed8506212012-12-20 14:15:05 -0800187
buzbee2cfc6392012-05-07 14:51:40 -0700188 /* Do constant propagation */
buzbee311ca162013-02-28 15:56:43 -0800189 cu->mir_graph->PropagateConstants();
buzbee67bf8852011-08-17 17:51:35 -0700190
Bill Buzbeea114add2012-05-03 15:00:40 -0700191 /* Count uses */
buzbee311ca162013-02-28 15:56:43 -0800192 cu->mir_graph->MethodUseCount();
buzbee67bf8852011-08-17 17:51:35 -0700193
Bill Buzbeea114add2012-05-03 15:00:40 -0700194 /* Perform null check elimination */
buzbee311ca162013-02-28 15:56:43 -0800195 cu->mir_graph->NullCheckElimination();
buzbeed8506212012-12-20 14:15:05 -0800196
buzbeed1643e42012-09-05 14:06:51 -0700197 /* Combine basic blocks where possible */
buzbee311ca162013-02-28 15:56:43 -0800198 cu->mir_graph->BasicBlockCombine();
buzbeed8506212012-12-20 14:15:05 -0800199
Bill Buzbeea114add2012-05-03 15:00:40 -0700200 /* Do some basic block optimizations */
buzbee311ca162013-02-28 15:56:43 -0800201 cu->mir_graph->BasicBlockOptimization();
buzbeed8506212012-12-20 14:15:05 -0800202
buzbeefa57c472012-11-21 12:06:18 -0800203 if (cu->enable_debug & (1 << kDebugDumpCheckStats)) {
buzbee311ca162013-02-28 15:56:43 -0800204 cu->mir_graph->DumpCheckStats();
buzbeed1643e42012-09-05 14:06:51 -0700205 }
206
buzbee1fd33462013-03-25 13:40:45 -0700207 if (kCompilerDebugFlags & (1 << kDebugCountOpcodes)) {
208 cu->mir_graph->ShowOpcodeStats();
209 }
210
buzbee311ca162013-02-28 15:56:43 -0800211 /* Set up regLocation[] array to describe values - one for each ssa_name. */
212 cu->mir_graph->BuildRegLocations();
buzbee2502e002012-12-31 16:05:53 -0800213
buzbee1fd33462013-03-25 13:40:45 -0700214 CompiledMethod* result = NULL;
215
Brian Carlstrom265091e2013-01-30 14:08:26 -0800216#if defined(ART_USE_PORTABLE_COMPILER)
buzbee1fd33462013-03-25 13:40:45 -0700217 if (compiler_backend == kPortable) {
buzbee862a7602013-04-05 10:58:54 -0700218 cu->cg.reset(PortableCodeGenerator(cu.get(), cu->mir_graph.get(), &cu->arena,
219 llvm_compilation_unit));
Brian Carlstrom265091e2013-01-30 14:08:26 -0800220 } else
221#endif
222 {
buzbee311ca162013-02-28 15:56:43 -0800223 switch (compiler.GetInstructionSet()) {
224 case kThumb2:
buzbee862a7602013-04-05 10:58:54 -0700225 cu->cg.reset(ArmCodeGenerator(cu.get(), cu->mir_graph.get(), &cu->arena)); break;
buzbee311ca162013-02-28 15:56:43 -0800226 case kMips:
buzbee862a7602013-04-05 10:58:54 -0700227 cu->cg.reset(MipsCodeGenerator(cu.get(), cu->mir_graph.get(), &cu->arena)); break;
buzbee311ca162013-02-28 15:56:43 -0800228 case kX86:
buzbee862a7602013-04-05 10:58:54 -0700229 cu->cg.reset(X86CodeGenerator(cu.get(), cu->mir_graph.get(), &cu->arena)); break;
buzbee311ca162013-02-28 15:56:43 -0800230 default:
231 LOG(FATAL) << "Unexpected instruction set: " << compiler.GetInstructionSet();
232 }
Bill Buzbeea114add2012-05-03 15:00:40 -0700233 }
buzbee67bf8852011-08-17 17:51:35 -0700234
buzbee1fd33462013-03-25 13:40:45 -0700235 cu->cg->Materialize();
buzbee67bf8852011-08-17 17:51:35 -0700236
buzbee1fd33462013-03-25 13:40:45 -0700237 result = cu->cg->GetCompiledMethod();
buzbee67bf8852011-08-17 17:51:35 -0700238
buzbee1fd33462013-03-25 13:40:45 -0700239 if (result) {
240 VLOG(compiler) << "Compiled " << PrettyMethod(method_idx, dex_file);
Bill Buzbeea114add2012-05-03 15:00:40 -0700241 } else {
buzbee1fd33462013-03-25 13:40:45 -0700242 VLOG(compiler) << "Deferred " << PrettyMethod(method_idx, dex_file);
Bill Buzbeea114add2012-05-03 15:00:40 -0700243 }
buzbee5abfa3e2012-01-31 17:01:43 -0800244
buzbeefa57c472012-11-21 12:06:18 -0800245 if (cu->enable_debug & (1 << kDebugShowMemoryUsage)) {
buzbee862a7602013-04-05 10:58:54 -0700246 if (cu->arena.BytesAllocated() > (5 * 1024 *1024)) {
247 MemStats mem_stats(cu->arena);
248 LOG(INFO) << PrettyMethod(method_idx, dex_file) << " " << Dumpable<MemStats>(mem_stats);
249 }
Bill Buzbeea114add2012-05-03 15:00:40 -0700250 }
buzbee67bf8852011-08-17 17:51:35 -0700251
buzbee862a7602013-04-05 10:58:54 -0700252 cu->arena.ArenaReset();
buzbeeba938cb2012-02-03 14:47:55 -0800253
Bill Buzbeea114add2012-05-03 15:00:40 -0700254 return result;
buzbee67bf8852011-08-17 17:51:35 -0700255}
256
Ian Rogers1212a022013-03-04 10:48:41 -0800257CompiledMethod* CompileOneMethod(CompilerDriver& compiler,
buzbeec531cef2012-10-18 07:09:20 -0700258 const CompilerBackend backend,
buzbeeabc4c6b2012-08-23 08:17:15 -0700259 const DexFile::CodeItem* code_item,
Brian Carlstrom265091e2013-01-30 14:08:26 -0800260 uint32_t access_flags,
261 InvokeType invoke_type,
262 uint32_t class_def_idx,
263 uint32_t method_idx,
264 jobject class_loader,
buzbeec531cef2012-10-18 07:09:20 -0700265 const DexFile& dex_file,
Brian Carlstrom265091e2013-01-30 14:08:26 -0800266 llvm::LlvmCompilationUnit* llvm_compilation_unit)
buzbeeabc4c6b2012-08-23 08:17:15 -0700267{
Ian Rogersfffdb022013-01-04 15:14:08 -0800268 return CompileMethod(compiler, backend, code_item, access_flags, invoke_type, class_def_idx,
Brian Carlstrom265091e2013-01-30 14:08:26 -0800269 method_idx, class_loader, dex_file
270#if defined(ART_USE_PORTABLE_COMPILER)
271 , llvm_compilation_unit
272#endif
273 );
buzbeeabc4c6b2012-08-23 08:17:15 -0700274}
275
Elliott Hughes11d1b0c2012-01-23 16:57:47 -0800276} // namespace art
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800277
Bill Buzbeea114add2012-05-03 15:00:40 -0700278extern "C" art::CompiledMethod*
Ian Rogers1212a022013-03-04 10:48:41 -0800279 ArtQuickCompileMethod(art::CompilerDriver& compiler,
buzbeec531cef2012-10-18 07:09:20 -0700280 const art::DexFile::CodeItem* code_item,
281 uint32_t access_flags, art::InvokeType invoke_type,
Ian Rogersfffdb022013-01-04 15:14:08 -0800282 uint32_t class_def_idx, uint32_t method_idx, jobject class_loader,
buzbeec531cef2012-10-18 07:09:20 -0700283 const art::DexFile& dex_file)
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800284{
buzbeec531cef2012-10-18 07:09:20 -0700285 // TODO: check method fingerprint here to determine appropriate backend type. Until then, use build default
286 art::CompilerBackend backend = compiler.GetCompilerBackend();
buzbee52a77fc2012-11-20 19:50:46 -0800287 return art::CompileOneMethod(compiler, backend, code_item, access_flags, invoke_type,
Ian Rogersfffdb022013-01-04 15:14:08 -0800288 class_def_idx, method_idx, class_loader, dex_file,
289 NULL /* use thread llvm_info */);
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800290}