blob: ae1958afcb48de0a3558a5139a754fc9faac0b45 [file] [log] [blame]
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +00001/*
2 * Copyright (C) 2014 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
Andreas Gampe53c913b2014-08-12 23:19:23 -070017#include "optimizing_compiler.h"
18
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010019#include <fstream>
Nicolas Geoffray787c3072014-03-17 10:20:19 +000020#include <stdint.h>
21
Mathieu Chartiere401d142015-04-22 13:56:20 -070022#include "art_method-inl.h"
Mathieu Chartierb666f482015-02-18 14:33:14 -080023#include "base/arena_allocator.h"
David Brazdil5e8b1372015-01-23 14:39:08 +000024#include "base/dumpable.h"
25#include "base/timing_logger.h"
David Brazdil46e2a392015-03-16 17:31:52 +000026#include "boolean_simplifier.h"
Mingyao Yangf384f882014-10-22 16:08:18 -070027#include "bounds_check_elimination.h"
Nicolas Geoffray787c3072014-03-17 10:20:19 +000028#include "builder.h"
29#include "code_generator.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000030#include "compiled_method.h"
Andreas Gampe53c913b2014-08-12 23:19:23 -070031#include "compiler.h"
Roland Levillain75be2832014-10-17 17:02:00 +010032#include "constant_folding.h"
33#include "dead_code_elimination.h"
Andreas Gampe71fb52f2014-12-29 17:43:08 -080034#include "dex/quick/dex_file_to_method_inliner_map.h"
Calin Juravlef1c6d9e2015-04-13 18:42:21 +010035#include "dex/verified_method.h"
36#include "dex/verification_results.h"
Nicolas Geoffray787c3072014-03-17 10:20:19 +000037#include "driver/compiler_driver.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000038#include "driver/compiler_options.h"
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000039#include "driver/dex_compilation_unit.h"
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +000040#include "elf_writer_quick.h"
David Brazdil69ba7b72015-06-23 18:27:30 +010041#include "graph_checker.h"
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010042#include "graph_visualizer.h"
Nicolas Geoffrayd31cf3d2014-09-08 17:30:24 +010043#include "gvn.h"
Nicolas Geoffraye53798a2014-12-01 10:31:54 +000044#include "inliner.h"
Nicolas Geoffray3c049742014-09-24 18:10:46 +010045#include "instruction_simplifier.h"
Andreas Gampe71fb52f2014-12-29 17:43:08 -080046#include "intrinsics.h"
Nicolas Geoffray82091da2015-01-26 10:02:45 +000047#include "licm.h"
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +000048#include "jni/quick/jni_compiler.h"
Nicolas Geoffray787c3072014-03-17 10:20:19 +000049#include "nodes.h"
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +010050#include "prepare_for_register_allocation.h"
Calin Juravlef1c6d9e2015-04-13 18:42:21 +010051#include "reference_type_propagation.h"
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010052#include "register_allocator.h"
Nicolas Geoffray827eedb2015-01-26 15:18:36 +000053#include "side_effects_analysis.h"
Nicolas Geoffray31596742014-11-24 15:28:45 +000054#include "ssa_builder.h"
Nicolas Geoffray7dc206a2014-07-11 09:49:49 +010055#include "ssa_phi_elimination.h"
Nicolas Geoffray804d0932014-05-02 08:46:00 +010056#include "ssa_liveness_analysis.h"
David Srbeckyc6b4dd82015-04-07 20:32:43 +010057#include "utils/assembler.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000058
59namespace art {
60
Nicolas Geoffray787c3072014-03-17 10:20:19 +000061/**
62 * Used by the code generator, to allocate the code in a vector.
63 */
64class CodeVectorAllocator FINAL : public CodeAllocator {
65 public:
Andreas Gampe7c3952f2015-02-19 18:21:24 -080066 CodeVectorAllocator() : size_(0) {}
Nicolas Geoffray787c3072014-03-17 10:20:19 +000067
68 virtual uint8_t* Allocate(size_t size) {
69 size_ = size;
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000070 memory_.resize(size);
Nicolas Geoffray787c3072014-03-17 10:20:19 +000071 return &memory_[0];
72 }
73
74 size_t GetSize() const { return size_; }
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000075 const std::vector<uint8_t>& GetMemory() const { return memory_; }
Nicolas Geoffray787c3072014-03-17 10:20:19 +000076
77 private:
78 std::vector<uint8_t> memory_;
79 size_t size_;
80
81 DISALLOW_COPY_AND_ASSIGN(CodeVectorAllocator);
82};
83
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010084/**
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010085 * Filter to apply to the visualizer. Methods whose name contain that filter will
David Brazdilee690a32014-12-01 17:04:16 +000086 * be dumped.
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010087 */
88static const char* kStringFilter = "";
89
David Brazdil69ba7b72015-06-23 18:27:30 +010090class PassScope;
David Brazdil809658e2015-02-05 11:34:02 +000091
David Brazdil69ba7b72015-06-23 18:27:30 +010092class PassObserver : public ValueObject {
David Brazdil5e8b1372015-01-23 14:39:08 +000093 public:
David Brazdil69ba7b72015-06-23 18:27:30 +010094 PassObserver(HGraph* graph,
95 const char* method_name,
96 CodeGenerator* codegen,
97 std::ostream* visualizer_output,
98 CompilerDriver* compiler_driver)
99 : graph_(graph),
100 method_name_(method_name),
David Brazdil809658e2015-02-05 11:34:02 +0000101 timing_logger_enabled_(compiler_driver->GetDumpPasses()),
David Brazdil5e8b1372015-01-23 14:39:08 +0000102 timing_logger_(method_name, true, true),
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100103 disasm_info_(graph->GetArena()),
David Brazdil809658e2015-02-05 11:34:02 +0000104 visualizer_enabled_(!compiler_driver->GetDumpCfgFileName().empty()),
David Brazdil69ba7b72015-06-23 18:27:30 +0100105 visualizer_(visualizer_output, graph, *codegen),
106 graph_in_bad_state_(false) {
David Brazdil5e8b1372015-01-23 14:39:08 +0000107 if (strstr(method_name, kStringFilter) == nullptr) {
108 timing_logger_enabled_ = visualizer_enabled_ = false;
109 }
David Brazdil62e074f2015-04-07 18:09:37 +0100110 if (visualizer_enabled_) {
111 visualizer_.PrintHeader(method_name_);
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100112 codegen->SetDisassemblyInformation(&disasm_info_);
David Brazdil62e074f2015-04-07 18:09:37 +0100113 }
David Brazdil5e8b1372015-01-23 14:39:08 +0000114 }
115
David Brazdil69ba7b72015-06-23 18:27:30 +0100116 ~PassObserver() {
David Brazdil5e8b1372015-01-23 14:39:08 +0000117 if (timing_logger_enabled_) {
David Brazdil5e8b1372015-01-23 14:39:08 +0000118 LOG(INFO) << "TIMINGS " << method_name_;
119 LOG(INFO) << Dumpable<TimingLogger>(timing_logger_);
120 }
121 }
122
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100123 void DumpDisassembly() const {
124 if (visualizer_enabled_) {
125 visualizer_.DumpGraphWithDisassembly();
126 }
127 }
128
David Brazdil69ba7b72015-06-23 18:27:30 +0100129 void SetGraphInBadState() { graph_in_bad_state_ = true; }
130
David Brazdil5e8b1372015-01-23 14:39:08 +0000131 private:
David Brazdil809658e2015-02-05 11:34:02 +0000132 void StartPass(const char* pass_name) {
133 // Dump graph first, then start timer.
134 if (visualizer_enabled_) {
135 visualizer_.DumpGraph(pass_name, /* is_after_pass */ false);
136 }
137 if (timing_logger_enabled_) {
138 timing_logger_.StartTiming(pass_name);
139 }
140 }
141
142 void EndPass(const char* pass_name) {
143 // Pause timer first, then dump graph.
144 if (timing_logger_enabled_) {
145 timing_logger_.EndTiming();
146 }
147 if (visualizer_enabled_) {
148 visualizer_.DumpGraph(pass_name, /* is_after_pass */ true);
149 }
David Brazdil69ba7b72015-06-23 18:27:30 +0100150
151 // Validate the HGraph if running in debug mode.
152 if (kIsDebugBuild) {
153 if (!graph_in_bad_state_) {
154 if (graph_->IsInSsaForm()) {
155 SSAChecker checker(graph_->GetArena(), graph_);
156 checker.Run();
157 if (!checker.IsValid()) {
158 LOG(FATAL) << "Error after " << pass_name << ": " << Dumpable<SSAChecker>(checker);
159 }
160 } else {
161 GraphChecker checker(graph_->GetArena(), graph_);
162 checker.Run();
163 if (!checker.IsValid()) {
164 LOG(FATAL) << "Error after " << pass_name << ": " << Dumpable<GraphChecker>(checker);
165 }
166 }
167 }
168 }
David Brazdil809658e2015-02-05 11:34:02 +0000169 }
170
David Brazdil69ba7b72015-06-23 18:27:30 +0100171 HGraph* const graph_;
David Brazdil5e8b1372015-01-23 14:39:08 +0000172 const char* method_name_;
173
174 bool timing_logger_enabled_;
David Brazdil5e8b1372015-01-23 14:39:08 +0000175 TimingLogger timing_logger_;
176
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100177 DisassemblyInformation disasm_info_;
178
David Brazdil5e8b1372015-01-23 14:39:08 +0000179 bool visualizer_enabled_;
180 HGraphVisualizer visualizer_;
181
David Brazdil69ba7b72015-06-23 18:27:30 +0100182 // Flag to be set by the compiler if the pass failed and the graph is not
183 // expected to validate.
184 bool graph_in_bad_state_;
David Brazdil809658e2015-02-05 11:34:02 +0000185
David Brazdil69ba7b72015-06-23 18:27:30 +0100186 friend PassScope;
187
188 DISALLOW_COPY_AND_ASSIGN(PassObserver);
David Brazdil5e8b1372015-01-23 14:39:08 +0000189};
190
David Brazdil69ba7b72015-06-23 18:27:30 +0100191class PassScope : public ValueObject {
David Brazdil809658e2015-02-05 11:34:02 +0000192 public:
David Brazdil69ba7b72015-06-23 18:27:30 +0100193 PassScope(const char *pass_name, PassObserver* pass_observer)
David Brazdil809658e2015-02-05 11:34:02 +0000194 : pass_name_(pass_name),
David Brazdil69ba7b72015-06-23 18:27:30 +0100195 pass_observer_(pass_observer) {
196 pass_observer_->StartPass(pass_name_);
David Brazdil809658e2015-02-05 11:34:02 +0000197 }
198
David Brazdil69ba7b72015-06-23 18:27:30 +0100199 ~PassScope() {
200 pass_observer_->EndPass(pass_name_);
David Brazdil809658e2015-02-05 11:34:02 +0000201 }
202
203 private:
204 const char* const pass_name_;
David Brazdil69ba7b72015-06-23 18:27:30 +0100205 PassObserver* const pass_observer_;
David Brazdil809658e2015-02-05 11:34:02 +0000206};
207
Andreas Gampe53c913b2014-08-12 23:19:23 -0700208class OptimizingCompiler FINAL : public Compiler {
209 public:
210 explicit OptimizingCompiler(CompilerDriver* driver);
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100211 ~OptimizingCompiler();
Andreas Gampe53c913b2014-08-12 23:19:23 -0700212
213 bool CanCompileMethod(uint32_t method_idx, const DexFile& dex_file, CompilationUnit* cu) const
214 OVERRIDE;
215
216 CompiledMethod* Compile(const DexFile::CodeItem* code_item,
217 uint32_t access_flags,
218 InvokeType invoke_type,
219 uint16_t class_def_idx,
220 uint32_t method_idx,
221 jobject class_loader,
222 const DexFile& dex_file) const OVERRIDE;
223
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000224 CompiledMethod* TryCompile(const DexFile::CodeItem* code_item,
225 uint32_t access_flags,
226 InvokeType invoke_type,
227 uint16_t class_def_idx,
228 uint32_t method_idx,
229 jobject class_loader,
230 const DexFile& dex_file) const;
231
Andreas Gampe53c913b2014-08-12 23:19:23 -0700232 CompiledMethod* JniCompile(uint32_t access_flags,
233 uint32_t method_idx,
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000234 const DexFile& dex_file) const OVERRIDE {
235 return ArtQuickJniCompileMethod(GetCompilerDriver(), access_flags, method_idx, dex_file);
236 }
Andreas Gampe53c913b2014-08-12 23:19:23 -0700237
Mathieu Chartiere401d142015-04-22 13:56:20 -0700238 uintptr_t GetEntryPointOf(ArtMethod* method) const OVERRIDE
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000239 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
240 return reinterpret_cast<uintptr_t>(method->GetEntryPointFromQuickCompiledCodePtrSize(
241 InstructionSetPointerSize(GetCompilerDriver()->GetInstructionSet())));
242 }
Andreas Gampe53c913b2014-08-12 23:19:23 -0700243
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000244 void InitCompilationUnit(CompilationUnit& cu) const OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700245
David Brazdilee690a32014-12-01 17:04:16 +0000246 void Init() OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700247
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000248 void UnInit() const OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700249
Calin Juravle2be39e02015-04-21 13:56:34 +0100250 void MaybeRecordStat(MethodCompilationStat compilation_stat) const {
251 if (compilation_stats_.get() != nullptr) {
252 compilation_stats_->RecordStat(compilation_stat);
253 }
254 }
255
Andreas Gampe53c913b2014-08-12 23:19:23 -0700256 private:
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100257 // Whether we should run any optimization or register allocation. If false, will
258 // just run the code generation after the graph was built.
259 const bool run_optimizations_;
Calin Juravle48c2b032014-12-09 18:11:36 +0000260
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000261 // Optimize and compile `graph`.
262 CompiledMethod* CompileOptimized(HGraph* graph,
263 CodeGenerator* codegen,
264 CompilerDriver* driver,
265 const DexCompilationUnit& dex_compilation_unit,
David Brazdil69ba7b72015-06-23 18:27:30 +0100266 PassObserver* pass_observer) const;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000267
268 // Just compile without doing optimizations.
269 CompiledMethod* CompileBaseline(CodeGenerator* codegen,
270 CompilerDriver* driver,
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100271 const DexCompilationUnit& dex_compilation_unit,
David Brazdil69ba7b72015-06-23 18:27:30 +0100272 PassObserver* pass_observer) const;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000273
Calin Juravle2be39e02015-04-21 13:56:34 +0100274 std::unique_ptr<OptimizingCompilerStats> compilation_stats_;
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100275
Andreas Gampe53c913b2014-08-12 23:19:23 -0700276 std::unique_ptr<std::ostream> visualizer_output_;
277
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000278 // Delegate to Quick in case the optimizing compiler cannot compile a method.
279 std::unique_ptr<Compiler> delegate_;
280
Andreas Gampe53c913b2014-08-12 23:19:23 -0700281 DISALLOW_COPY_AND_ASSIGN(OptimizingCompiler);
282};
283
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100284static const int kMaximumCompilationTimeBeforeWarning = 100; /* ms */
285
286OptimizingCompiler::OptimizingCompiler(CompilerDriver* driver)
287 : Compiler(driver, kMaximumCompilationTimeBeforeWarning),
288 run_optimizations_(
Nicolas Geoffraya3d90fb2015-03-16 13:55:40 +0000289 (driver->GetCompilerOptions().GetCompilerFilter() != CompilerOptions::kTime)
290 && !driver->GetCompilerOptions().GetDebuggable()),
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000291 delegate_(Create(driver, Compiler::Kind::kQuick)) {}
David Brazdilee690a32014-12-01 17:04:16 +0000292
293void OptimizingCompiler::Init() {
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000294 delegate_->Init();
David Brazdilee690a32014-12-01 17:04:16 +0000295 // Enable C1visualizer output. Must be done in Init() because the compiler
296 // driver is not fully initialized when passed to the compiler's constructor.
297 CompilerDriver* driver = GetCompilerDriver();
David Brazdil866c0312015-01-13 21:21:31 +0000298 const std::string cfg_file_name = driver->GetDumpCfgFileName();
299 if (!cfg_file_name.empty()) {
David Brazdilee690a32014-12-01 17:04:16 +0000300 CHECK_EQ(driver->GetThreadCount(), 1U)
301 << "Graph visualizer requires the compiler to run single-threaded. "
302 << "Invoke the compiler with '-j1'.";
David Brazdil866c0312015-01-13 21:21:31 +0000303 visualizer_output_.reset(new std::ofstream(cfg_file_name));
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100304 }
Calin Juravle2be39e02015-04-21 13:56:34 +0100305 if (driver->GetDumpStats()) {
306 compilation_stats_.reset(new OptimizingCompilerStats());
307 }
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100308}
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000309
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000310void OptimizingCompiler::UnInit() const {
311 delegate_->UnInit();
312}
313
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100314OptimizingCompiler::~OptimizingCompiler() {
Calin Juravle2be39e02015-04-21 13:56:34 +0100315 if (compilation_stats_.get() != nullptr) {
316 compilation_stats_->Log();
317 }
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100318}
319
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000320void OptimizingCompiler::InitCompilationUnit(CompilationUnit& cu) const {
321 delegate_->InitCompilationUnit(cu);
322}
323
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +0000324bool OptimizingCompiler::CanCompileMethod(uint32_t method_idx ATTRIBUTE_UNUSED,
325 const DexFile& dex_file ATTRIBUTE_UNUSED,
326 CompilationUnit* cu ATTRIBUTE_UNUSED) const {
327 return true;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700328}
329
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000330static bool IsInstructionSetSupported(InstructionSet instruction_set) {
331 return instruction_set == kArm64
332 || (instruction_set == kThumb2 && !kArm32QuickCodeUseSoftFloat)
Alexey Frunze4dda3372015-06-01 18:31:49 -0700333 || instruction_set == kMips64
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000334 || instruction_set == kX86
335 || instruction_set == kX86_64;
336}
337
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000338static bool CanOptimize(const DexFile::CodeItem& code_item) {
339 // TODO: We currently cannot optimize methods with try/catch.
340 return code_item.tries_size_ == 0;
341}
342
Calin Juravle10e244f2015-01-26 18:54:32 +0000343static void RunOptimizations(HOptimization* optimizations[],
344 size_t length,
David Brazdil69ba7b72015-06-23 18:27:30 +0100345 PassObserver* pass_observer) {
Calin Juravle10e244f2015-01-26 18:54:32 +0000346 for (size_t i = 0; i < length; ++i) {
David Brazdil69ba7b72015-06-23 18:27:30 +0100347 PassScope scope(optimizations[i]->GetPassName(), pass_observer);
348 optimizations[i]->Run();
Calin Juravle10e244f2015-01-26 18:54:32 +0000349 }
350}
351
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000352static void RunOptimizations(HGraph* graph,
353 CompilerDriver* driver,
354 OptimizingCompilerStats* stats,
355 const DexCompilationUnit& dex_compilation_unit,
David Brazdil69ba7b72015-06-23 18:27:30 +0100356 PassObserver* pass_observer,
Calin Juravleacf735c2015-02-12 15:25:22 +0000357 StackHandleScopeCollection* handles) {
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100358 ArenaAllocator* arena = graph->GetArena();
359 HDeadCodeElimination* dce1 = new (arena) HDeadCodeElimination(
360 graph, stats, HDeadCodeElimination::kInitialDeadCodeEliminationPassName);
361 HDeadCodeElimination* dce2 = new (arena) HDeadCodeElimination(
362 graph, stats, HDeadCodeElimination::kFinalDeadCodeEliminationPassName);
363 HConstantFolding* fold1 = new (arena) HConstantFolding(graph);
364 InstructionSimplifier* simplify1 = new (arena) InstructionSimplifier(graph, stats);
365 HBooleanSimplifier* boolean_simplify = new (arena) HBooleanSimplifier(graph);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000366
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100367 HInliner* inliner = new (arena) HInliner(
368 graph, dex_compilation_unit, dex_compilation_unit, driver, handles, stats);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000369
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100370 HConstantFolding* fold2 = new (arena) HConstantFolding(graph, "constant_folding_after_inlining");
371 SideEffectsAnalysis* side_effects = new (arena) SideEffectsAnalysis(graph);
372 GVNOptimization* gvn = new (arena) GVNOptimization(graph, *side_effects);
373 LICM* licm = new (arena) LICM(graph, *side_effects);
374 BoundsCheckElimination* bce = new (arena) BoundsCheckElimination(graph);
375 ReferenceTypePropagation* type_propagation =
376 new (arena) ReferenceTypePropagation(graph, handles);
377 InstructionSimplifier* simplify2 = new (arena) InstructionSimplifier(
378 graph, stats, "instruction_simplifier_after_types");
379 InstructionSimplifier* simplify3 = new (arena) InstructionSimplifier(
Nicolas Geoffrayb2bdfce2015-06-18 15:46:47 +0100380 graph, stats, "instruction_simplifier_after_bce");
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100381 ReferenceTypePropagation* type_propagation2 =
Calin Juravleb0d5fc02015-07-15 14:41:29 +0100382 new (arena) ReferenceTypePropagation(
383 graph, handles, "reference_type_propagation_after_inlining");
Nicolas Geoffrayb2bdfce2015-06-18 15:46:47 +0100384 InstructionSimplifier* simplify4 = new (arena) InstructionSimplifier(
385 graph, stats, "instruction_simplifier_before_codegen");
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000386
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100387 IntrinsicsRecognizer* intrinsics = new (arena) IntrinsicsRecognizer(graph, driver);
Andreas Gampe71fb52f2014-12-29 17:43:08 -0800388
Nicolas Geoffray31596742014-11-24 15:28:45 +0000389 HOptimization* optimizations[] = {
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100390 intrinsics,
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100391 fold1,
392 simplify1,
393 type_propagation,
Nicolas Geoffray18e68732015-06-17 23:09:05 +0100394 dce1,
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100395 simplify2,
396 inliner,
Nicolas Geoffray454a4812015-06-09 10:37:32 +0100397 // Run another type propagation phase: inlining will open up more opprotunities
398 // to remove checkast/instanceof and null checks.
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100399 type_propagation2,
David Brazdil46e2a392015-03-16 17:31:52 +0000400 // BooleanSimplifier depends on the InstructionSimplifier removing redundant
401 // suspend checks to recognize empty blocks.
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100402 boolean_simplify,
403 fold2,
404 side_effects,
405 gvn,
406 licm,
407 bce,
408 simplify3,
409 dce2,
Nicolas Geoffrayb2bdfce2015-06-18 15:46:47 +0100410 // The codegen has a few assumptions that only the instruction simplifier can
411 // satisfy. For example, the code generator does not expect to see a
412 // HTypeConversion from a type to the same type.
413 simplify4,
Nicolas Geoffray31596742014-11-24 15:28:45 +0000414 };
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000415
David Brazdil69ba7b72015-06-23 18:27:30 +0100416 RunOptimizations(optimizations, arraysize(optimizations), pass_observer);
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000417}
418
Nicolas Geoffray376b2bb2014-12-09 14:26:32 +0000419// The stack map we generate must be 4-byte aligned on ARM. Since existing
420// maps are generated alongside these stack maps, we must also align them.
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800421static ArrayRef<const uint8_t> AlignVectorSize(std::vector<uint8_t>& vector) {
Nicolas Geoffray376b2bb2014-12-09 14:26:32 +0000422 size_t size = vector.size();
423 size_t aligned_size = RoundUp(size, 4);
424 for (; size < aligned_size; ++size) {
425 vector.push_back(0);
426 }
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800427 return ArrayRef<const uint8_t>(vector);
Nicolas Geoffray376b2bb2014-12-09 14:26:32 +0000428}
429
Andreas Gampec2bcafe2015-04-10 10:49:32 -0700430static void AllocateRegisters(HGraph* graph,
431 CodeGenerator* codegen,
David Brazdil69ba7b72015-06-23 18:27:30 +0100432 PassObserver* pass_observer) {
Andreas Gampec2bcafe2015-04-10 10:49:32 -0700433 PrepareForRegisterAllocation(graph).Run();
Nicolas Geoffray0d9f17d2015-04-15 14:17:44 +0100434 SsaLivenessAnalysis liveness(graph, codegen);
Andreas Gampec2bcafe2015-04-10 10:49:32 -0700435 {
David Brazdil69ba7b72015-06-23 18:27:30 +0100436 PassScope scope(SsaLivenessAnalysis::kLivenessPassName, pass_observer);
Andreas Gampec2bcafe2015-04-10 10:49:32 -0700437 liveness.Analyze();
438 }
439 {
David Brazdil69ba7b72015-06-23 18:27:30 +0100440 PassScope scope(RegisterAllocator::kRegisterAllocatorPassName, pass_observer);
Andreas Gampec2bcafe2015-04-10 10:49:32 -0700441 RegisterAllocator(graph->GetArena(), codegen, liveness).AllocateRegisters();
442 }
443}
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000444
445CompiledMethod* OptimizingCompiler::CompileOptimized(HGraph* graph,
446 CodeGenerator* codegen,
447 CompilerDriver* compiler_driver,
448 const DexCompilationUnit& dex_compilation_unit,
David Brazdil69ba7b72015-06-23 18:27:30 +0100449 PassObserver* pass_observer) const {
Calin Juravleacf735c2015-02-12 15:25:22 +0000450 StackHandleScopeCollection handles(Thread::Current());
Calin Juravle2be39e02015-04-21 13:56:34 +0100451 RunOptimizations(graph, compiler_driver, compilation_stats_.get(),
David Brazdil69ba7b72015-06-23 18:27:30 +0100452 dex_compilation_unit, pass_observer, &handles);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000453
David Brazdil69ba7b72015-06-23 18:27:30 +0100454 AllocateRegisters(graph, codegen, pass_observer);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000455
456 CodeVectorAllocator allocator;
457 codegen->CompileOptimized(&allocator);
458
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100459 DefaultSrcMap src_mapping_table;
David Srbecky8363c772015-05-28 16:12:43 +0100460 if (compiler_driver->GetCompilerOptions().GetGenerateDebugInfo()) {
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100461 codegen->BuildSourceMap(&src_mapping_table);
462 }
463
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000464 std::vector<uint8_t> stack_map;
465 codegen->BuildStackMaps(&stack_map);
466
Calin Juravle2be39e02015-04-21 13:56:34 +0100467 MaybeRecordStat(MethodCompilationStat::kCompiledOptimized);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000468
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100469 CompiledMethod* compiled_method = CompiledMethod::SwapAllocCompiledMethod(
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000470 compiler_driver,
471 codegen->GetInstructionSet(),
472 ArrayRef<const uint8_t>(allocator.GetMemory()),
Roland Levillainaa9b7c42015-02-17 15:40:09 +0000473 // Follow Quick's behavior and set the frame size to zero if it is
474 // considered "empty" (see the definition of
475 // art::CodeGenerator::HasEmptyFrame).
476 codegen->HasEmptyFrame() ? 0 : codegen->GetFrameSize(),
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000477 codegen->GetCoreSpillMask(),
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000478 codegen->GetFpuSpillMask(),
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100479 &src_mapping_table,
480 ArrayRef<const uint8_t>(), // mapping_table.
481 ArrayRef<const uint8_t>(stack_map),
482 ArrayRef<const uint8_t>(), // native_gc_map.
483 ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data()),
484 ArrayRef<const LinkerPatch>());
David Brazdil69ba7b72015-06-23 18:27:30 +0100485 pass_observer->DumpDisassembly();
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100486 return compiled_method;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000487}
488
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000489CompiledMethod* OptimizingCompiler::CompileBaseline(
490 CodeGenerator* codegen,
491 CompilerDriver* compiler_driver,
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100492 const DexCompilationUnit& dex_compilation_unit,
David Brazdil69ba7b72015-06-23 18:27:30 +0100493 PassObserver* pass_observer) const {
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000494 CodeVectorAllocator allocator;
495 codegen->CompileBaseline(&allocator);
496
497 std::vector<uint8_t> mapping_table;
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100498 codegen->BuildMappingTable(&mapping_table);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000499 DefaultSrcMap src_mapping_table;
David Srbecky8363c772015-05-28 16:12:43 +0100500 if (compiler_driver->GetCompilerOptions().GetGenerateDebugInfo()) {
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100501 codegen->BuildSourceMap(&src_mapping_table);
502 }
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000503 std::vector<uint8_t> vmap_table;
504 codegen->BuildVMapTable(&vmap_table);
505 std::vector<uint8_t> gc_map;
506 codegen->BuildNativeGCMap(&gc_map, dex_compilation_unit);
507
Calin Juravle2be39e02015-04-21 13:56:34 +0100508 MaybeRecordStat(MethodCompilationStat::kCompiledBaseline);
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100509 CompiledMethod* compiled_method = CompiledMethod::SwapAllocCompiledMethod(
Roland Levillainaa9b7c42015-02-17 15:40:09 +0000510 compiler_driver,
511 codegen->GetInstructionSet(),
512 ArrayRef<const uint8_t>(allocator.GetMemory()),
513 // Follow Quick's behavior and set the frame size to zero if it is
514 // considered "empty" (see the definition of
515 // art::CodeGenerator::HasEmptyFrame).
516 codegen->HasEmptyFrame() ? 0 : codegen->GetFrameSize(),
517 codegen->GetCoreSpillMask(),
518 codegen->GetFpuSpillMask(),
519 &src_mapping_table,
520 AlignVectorSize(mapping_table),
521 AlignVectorSize(vmap_table),
522 AlignVectorSize(gc_map),
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100523 ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data()),
524 ArrayRef<const LinkerPatch>());
David Brazdil69ba7b72015-06-23 18:27:30 +0100525 pass_observer->DumpDisassembly();
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100526 return compiled_method;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000527}
528
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000529CompiledMethod* OptimizingCompiler::TryCompile(const DexFile::CodeItem* code_item,
530 uint32_t access_flags,
531 InvokeType invoke_type,
532 uint16_t class_def_idx,
533 uint32_t method_idx,
534 jobject class_loader,
535 const DexFile& dex_file) const {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700536 UNUSED(invoke_type);
David Brazdil5e8b1372015-01-23 14:39:08 +0000537 std::string method_name = PrettyMethod(method_idx, dex_file);
Calin Juravle2be39e02015-04-21 13:56:34 +0100538 MaybeRecordStat(MethodCompilationStat::kAttemptCompilation);
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000539 CompilerDriver* compiler_driver = GetCompilerDriver();
540 InstructionSet instruction_set = compiler_driver->GetInstructionSet();
Nicolas Geoffray8d486732014-07-16 16:23:40 +0100541 // Always use the thumb2 assembler: some runtime functionality (like implicit stack
542 // overflow checks) assume thumb2.
543 if (instruction_set == kArm) {
544 instruction_set = kThumb2;
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100545 }
546
547 // Do not attempt to compile on architectures we do not support.
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000548 if (!IsInstructionSetSupported(instruction_set)) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100549 MaybeRecordStat(MethodCompilationStat::kNotCompiledUnsupportedIsa);
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100550 return nullptr;
551 }
552
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000553 if (Compiler::IsPathologicalCase(*code_item, method_idx, dex_file)) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100554 MaybeRecordStat(MethodCompilationStat::kNotCompiledPathological);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000555 return nullptr;
556 }
557
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000558 // Implementation of the space filter: do not compile a code item whose size in
559 // code units is bigger than 256.
560 static constexpr size_t kSpaceFilterOptimizingThreshold = 256;
561 const CompilerOptions& compiler_options = compiler_driver->GetCompilerOptions();
562 if ((compiler_options.GetCompilerFilter() == CompilerOptions::kSpace)
563 && (code_item->insns_size_in_code_units_ > kSpaceFilterOptimizingThreshold)) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100564 MaybeRecordStat(MethodCompilationStat::kNotCompiledSpaceFilter);
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000565 return nullptr;
566 }
567
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +0000568 DexCompilationUnit dex_compilation_unit(
569 nullptr, class_loader, art::Runtime::Current()->GetClassLinker(), dex_file, code_item,
Ian Rogers72d32622014-05-06 16:20:11 -0700570 class_def_idx, method_idx, access_flags,
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000571 compiler_driver->GetVerifiedMethod(&dex_file, method_idx));
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +0000572
Calin Juravle3cd4fc82015-05-14 15:15:42 +0100573 bool requires_barrier = dex_compilation_unit.IsConstructor()
574 && compiler_driver->RequiresConstructorBarrier(Thread::Current(),
575 dex_compilation_unit.GetDexFile(),
576 dex_compilation_unit.GetClassDefIndex());
Nicolas Geoffray579ea7d2015-03-24 17:28:38 +0000577 ArenaAllocator arena(Runtime::Current()->GetArenaPool());
Nicolas Geoffraye0fe7ae2015-03-09 10:02:49 +0000578 HGraph* graph = new (&arena) HGraph(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700579 &arena, dex_file, method_idx, requires_barrier, compiler_driver->GetInstructionSet(),
580 kInvalidInvokeType, compiler_driver->GetCompilerOptions().GetDebuggable());
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000581
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +0000582 // For testing purposes, we put a special marker on method names that should be compiled
583 // with this compiler. This makes sure we're not regressing.
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000584 bool shouldCompile = method_name.find("$opt$") != std::string::npos;
Nicolas Geoffraya3d90fb2015-03-16 13:55:40 +0000585 bool shouldOptimize = method_name.find("$opt$reg$") != std::string::npos && run_optimizations_;
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +0000586
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000587 std::unique_ptr<CodeGenerator> codegen(
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000588 CodeGenerator::Create(graph,
589 instruction_set,
590 *compiler_driver->GetInstructionSetFeatures(),
591 compiler_driver->GetCompilerOptions()));
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000592 if (codegen.get() == nullptr) {
Zheng Xu5667fdb2014-10-23 18:29:55 +0800593 CHECK(!shouldCompile) << "Could not find code generator for optimizing compiler";
Calin Juravle2be39e02015-04-21 13:56:34 +0100594 MaybeRecordStat(MethodCompilationStat::kNotCompiledNoCodegen);
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000595 return nullptr;
596 }
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100597 codegen->GetAssembler()->cfi().SetEnabled(
David Srbecky8363c772015-05-28 16:12:43 +0100598 compiler_driver->GetCompilerOptions().GetGenerateDebugInfo());
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000599
David Brazdil69ba7b72015-06-23 18:27:30 +0100600 PassObserver pass_observer(graph,
601 method_name.c_str(),
602 codegen.get(),
603 visualizer_output_.get(),
604 compiler_driver);
David Brazdil5e8b1372015-01-23 14:39:08 +0000605
606 HGraphBuilder builder(graph,
607 &dex_compilation_unit,
608 &dex_compilation_unit,
609 &dex_file,
610 compiler_driver,
Calin Juravle2be39e02015-04-21 13:56:34 +0100611 compilation_stats_.get());
David Brazdil5e8b1372015-01-23 14:39:08 +0000612
613 VLOG(compiler) << "Building " << method_name;
614
David Brazdil809658e2015-02-05 11:34:02 +0000615 {
David Brazdil69ba7b72015-06-23 18:27:30 +0100616 PassScope scope(HGraphBuilder::kBuilderPassName, &pass_observer);
David Brazdil809658e2015-02-05 11:34:02 +0000617 if (!builder.BuildGraph(*code_item)) {
Nicolas Geoffray335005e2015-06-25 10:01:47 +0100618 DCHECK(!(IsCompilingWithCoreImage() && shouldCompile))
619 << "Could not build graph in optimizing compiler";
David Brazdil69ba7b72015-06-23 18:27:30 +0100620 pass_observer.SetGraphInBadState();
David Brazdil809658e2015-02-05 11:34:02 +0000621 return nullptr;
622 }
David Brazdil5e8b1372015-01-23 14:39:08 +0000623 }
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100624
Calin Juravle48c2b032014-12-09 18:11:36 +0000625 bool can_optimize = CanOptimize(*code_item);
626 bool can_allocate_registers = RegisterAllocator::CanAllocateRegistersFor(*graph, instruction_set);
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000627
628 // `run_optimizations_` is set explicitly (either through a compiler filter
629 // or the debuggable flag). If it is set, we can run baseline. Otherwise, we fall back
630 // to Quick.
Nicolas Geoffray2e7cd752015-07-10 11:38:52 +0100631 bool can_use_baseline = !run_optimizations_ && builder.CanUseBaselineForStringInit();
Calin Juravle48c2b032014-12-09 18:11:36 +0000632 if (run_optimizations_ && can_optimize && can_allocate_registers) {
David Brazdil5e8b1372015-01-23 14:39:08 +0000633 VLOG(compiler) << "Optimizing " << method_name;
634
David Brazdil809658e2015-02-05 11:34:02 +0000635 {
David Brazdil69ba7b72015-06-23 18:27:30 +0100636 PassScope scope(SsaBuilder::kSsaBuilderPassName, &pass_observer);
David Brazdil809658e2015-02-05 11:34:02 +0000637 if (!graph->TryBuildingSsa()) {
638 // We could not transform the graph to SSA, bailout.
639 LOG(INFO) << "Skipping compilation of " << method_name << ": it contains a non natural loop";
Calin Juravle2be39e02015-04-21 13:56:34 +0100640 MaybeRecordStat(MethodCompilationStat::kNotCompiledCannotBuildSSA);
David Brazdil809658e2015-02-05 11:34:02 +0000641 return nullptr;
642 }
Nicolas Geoffrayf5370122014-12-02 11:51:19 +0000643 }
David Brazdil5e8b1372015-01-23 14:39:08 +0000644
645 return CompileOptimized(graph,
646 codegen.get(),
647 compiler_driver,
648 dex_compilation_unit,
David Brazdil69ba7b72015-06-23 18:27:30 +0100649 &pass_observer);
Nicolas Geoffray234d69d2015-03-09 10:28:50 +0000650 } else if (shouldOptimize && can_allocate_registers) {
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100651 LOG(FATAL) << "Could not allocate registers in optimizing compiler";
Zheng Xu5667fdb2014-10-23 18:29:55 +0800652 UNREACHABLE();
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000653 } else if (can_use_baseline) {
David Brazdil5e8b1372015-01-23 14:39:08 +0000654 VLOG(compiler) << "Compile baseline " << method_name;
Calin Juravle48c2b032014-12-09 18:11:36 +0000655
656 if (!run_optimizations_) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100657 MaybeRecordStat(MethodCompilationStat::kNotOptimizedDisabled);
Calin Juravle48c2b032014-12-09 18:11:36 +0000658 } else if (!can_optimize) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100659 MaybeRecordStat(MethodCompilationStat::kNotOptimizedTryCatch);
Calin Juravle48c2b032014-12-09 18:11:36 +0000660 } else if (!can_allocate_registers) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100661 MaybeRecordStat(MethodCompilationStat::kNotOptimizedRegisterAllocator);
Calin Juravle48c2b032014-12-09 18:11:36 +0000662 }
663
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100664 return CompileBaseline(codegen.get(),
665 compiler_driver,
666 dex_compilation_unit,
David Brazdil69ba7b72015-06-23 18:27:30 +0100667 &pass_observer);
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000668 } else {
669 return nullptr;
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100670 }
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000671}
672
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000673CompiledMethod* OptimizingCompiler::Compile(const DexFile::CodeItem* code_item,
674 uint32_t access_flags,
675 InvokeType invoke_type,
676 uint16_t class_def_idx,
677 uint32_t method_idx,
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100678 jobject jclass_loader,
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000679 const DexFile& dex_file) const {
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100680 CompilerDriver* compiler_driver = GetCompilerDriver();
681 CompiledMethod* method = nullptr;
Nicolas Geoffray4824c272015-06-24 15:53:03 +0100682 if (compiler_driver->IsMethodVerifiedWithoutFailures(method_idx, class_def_idx, dex_file) &&
683 !compiler_driver->GetVerifiedMethod(&dex_file, method_idx)->HasRuntimeThrow()) {
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100684 method = TryCompile(code_item, access_flags, invoke_type, class_def_idx,
685 method_idx, jclass_loader, dex_file);
686 } else {
687 if (compiler_driver->GetCompilerOptions().VerifyAtRuntime()) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100688 MaybeRecordStat(MethodCompilationStat::kNotCompiledVerifyAtRuntime);
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100689 } else {
Calin Juravle2be39e02015-04-21 13:56:34 +0100690 MaybeRecordStat(MethodCompilationStat::kNotCompiledClassNotVerified);
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100691 }
692 }
693
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000694 if (method != nullptr) {
695 return method;
696 }
Nicolas Geoffray12be74e2015-03-30 13:29:08 +0100697 method = delegate_->Compile(code_item, access_flags, invoke_type, class_def_idx, method_idx,
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100698 jclass_loader, dex_file);
Nicolas Geoffray12be74e2015-03-30 13:29:08 +0100699
700 if (method != nullptr) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100701 MaybeRecordStat(MethodCompilationStat::kCompiledQuick);
Nicolas Geoffray12be74e2015-03-30 13:29:08 +0100702 }
703 return method;
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000704}
705
Andreas Gampe53c913b2014-08-12 23:19:23 -0700706Compiler* CreateOptimizingCompiler(CompilerDriver* driver) {
707 return new OptimizingCompiler(driver);
708}
709
Nicolas Geoffray335005e2015-06-25 10:01:47 +0100710bool IsCompilingWithCoreImage() {
711 const std::string& image = Runtime::Current()->GetImageLocation();
712 return EndsWith(image, "core.art") || EndsWith(image, "core-optimizing.art");
713}
714
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000715} // namespace art