blob: 601d66899571195c175505a751109d03b7911397 [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"
Nicolas Geoffray9523a3e2015-07-17 11:51:28 +000038#include "driver/compiler_driver-inl.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000039#include "driver/compiler_options.h"
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000040#include "driver/dex_compilation_unit.h"
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +000041#include "elf_writer_quick.h"
David Brazdil69ba7b72015-06-23 18:27:30 +010042#include "graph_checker.h"
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010043#include "graph_visualizer.h"
Nicolas Geoffrayd31cf3d2014-09-08 17:30:24 +010044#include "gvn.h"
Nicolas Geoffraye53798a2014-12-01 10:31:54 +000045#include "inliner.h"
Nicolas Geoffray3c049742014-09-24 18:10:46 +010046#include "instruction_simplifier.h"
Andreas Gampe71fb52f2014-12-29 17:43:08 -080047#include "intrinsics.h"
Nicolas Geoffray82091da2015-01-26 10:02:45 +000048#include "licm.h"
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +000049#include "jni/quick/jni_compiler.h"
Nicolas Geoffray787c3072014-03-17 10:20:19 +000050#include "nodes.h"
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +010051#include "prepare_for_register_allocation.h"
Calin Juravlef1c6d9e2015-04-13 18:42:21 +010052#include "reference_type_propagation.h"
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010053#include "register_allocator.h"
Nicolas Geoffray827eedb2015-01-26 15:18:36 +000054#include "side_effects_analysis.h"
Nicolas Geoffray31596742014-11-24 15:28:45 +000055#include "ssa_builder.h"
Nicolas Geoffray7dc206a2014-07-11 09:49:49 +010056#include "ssa_phi_elimination.h"
Nicolas Geoffray804d0932014-05-02 08:46:00 +010057#include "ssa_liveness_analysis.h"
David Srbeckyc6b4dd82015-04-07 20:32:43 +010058#include "utils/assembler.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000059
60namespace art {
61
Nicolas Geoffray787c3072014-03-17 10:20:19 +000062/**
63 * Used by the code generator, to allocate the code in a vector.
64 */
65class CodeVectorAllocator FINAL : public CodeAllocator {
66 public:
Andreas Gampe7c3952f2015-02-19 18:21:24 -080067 CodeVectorAllocator() : size_(0) {}
Nicolas Geoffray787c3072014-03-17 10:20:19 +000068
69 virtual uint8_t* Allocate(size_t size) {
70 size_ = size;
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000071 memory_.resize(size);
Nicolas Geoffray787c3072014-03-17 10:20:19 +000072 return &memory_[0];
73 }
74
75 size_t GetSize() const { return size_; }
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000076 const std::vector<uint8_t>& GetMemory() const { return memory_; }
Nicolas Geoffray787c3072014-03-17 10:20:19 +000077
78 private:
79 std::vector<uint8_t> memory_;
80 size_t size_;
81
82 DISALLOW_COPY_AND_ASSIGN(CodeVectorAllocator);
83};
84
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010085/**
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010086 * Filter to apply to the visualizer. Methods whose name contain that filter will
David Brazdilee690a32014-12-01 17:04:16 +000087 * be dumped.
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010088 */
89static const char* kStringFilter = "";
90
David Brazdil69ba7b72015-06-23 18:27:30 +010091class PassScope;
David Brazdil809658e2015-02-05 11:34:02 +000092
David Brazdil69ba7b72015-06-23 18:27:30 +010093class PassObserver : public ValueObject {
David Brazdil5e8b1372015-01-23 14:39:08 +000094 public:
David Brazdil69ba7b72015-06-23 18:27:30 +010095 PassObserver(HGraph* graph,
96 const char* method_name,
97 CodeGenerator* codegen,
98 std::ostream* visualizer_output,
99 CompilerDriver* compiler_driver)
100 : graph_(graph),
101 method_name_(method_name),
David Brazdil809658e2015-02-05 11:34:02 +0000102 timing_logger_enabled_(compiler_driver->GetDumpPasses()),
David Brazdil5e8b1372015-01-23 14:39:08 +0000103 timing_logger_(method_name, true, true),
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100104 disasm_info_(graph->GetArena()),
David Brazdil809658e2015-02-05 11:34:02 +0000105 visualizer_enabled_(!compiler_driver->GetDumpCfgFileName().empty()),
David Brazdil69ba7b72015-06-23 18:27:30 +0100106 visualizer_(visualizer_output, graph, *codegen),
107 graph_in_bad_state_(false) {
David Brazdil5e8b1372015-01-23 14:39:08 +0000108 if (strstr(method_name, kStringFilter) == nullptr) {
109 timing_logger_enabled_ = visualizer_enabled_ = false;
110 }
David Brazdil62e074f2015-04-07 18:09:37 +0100111 if (visualizer_enabled_) {
112 visualizer_.PrintHeader(method_name_);
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100113 codegen->SetDisassemblyInformation(&disasm_info_);
David Brazdil62e074f2015-04-07 18:09:37 +0100114 }
David Brazdil5e8b1372015-01-23 14:39:08 +0000115 }
116
David Brazdil69ba7b72015-06-23 18:27:30 +0100117 ~PassObserver() {
David Brazdil5e8b1372015-01-23 14:39:08 +0000118 if (timing_logger_enabled_) {
David Brazdil5e8b1372015-01-23 14:39:08 +0000119 LOG(INFO) << "TIMINGS " << method_name_;
120 LOG(INFO) << Dumpable<TimingLogger>(timing_logger_);
121 }
122 }
123
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100124 void DumpDisassembly() const {
125 if (visualizer_enabled_) {
126 visualizer_.DumpGraphWithDisassembly();
127 }
128 }
129
David Brazdil69ba7b72015-06-23 18:27:30 +0100130 void SetGraphInBadState() { graph_in_bad_state_ = true; }
131
David Brazdil5e8b1372015-01-23 14:39:08 +0000132 private:
David Brazdil809658e2015-02-05 11:34:02 +0000133 void StartPass(const char* pass_name) {
134 // Dump graph first, then start timer.
135 if (visualizer_enabled_) {
David Brazdilffee3d32015-07-06 11:48:53 +0100136 visualizer_.DumpGraph(pass_name, /* is_after_pass */ false, graph_in_bad_state_);
David Brazdil809658e2015-02-05 11:34:02 +0000137 }
138 if (timing_logger_enabled_) {
139 timing_logger_.StartTiming(pass_name);
140 }
141 }
142
143 void EndPass(const char* pass_name) {
144 // Pause timer first, then dump graph.
145 if (timing_logger_enabled_) {
146 timing_logger_.EndTiming();
147 }
148 if (visualizer_enabled_) {
David Brazdilffee3d32015-07-06 11:48:53 +0100149 visualizer_.DumpGraph(pass_name, /* is_after_pass */ true, graph_in_bad_state_);
David Brazdil809658e2015-02-05 11:34:02 +0000150 }
David Brazdil69ba7b72015-06-23 18:27:30 +0100151
152 // Validate the HGraph if running in debug mode.
153 if (kIsDebugBuild) {
154 if (!graph_in_bad_state_) {
155 if (graph_->IsInSsaForm()) {
156 SSAChecker checker(graph_->GetArena(), graph_);
157 checker.Run();
158 if (!checker.IsValid()) {
159 LOG(FATAL) << "Error after " << pass_name << ": " << Dumpable<SSAChecker>(checker);
160 }
161 } else {
162 GraphChecker checker(graph_->GetArena(), graph_);
163 checker.Run();
164 if (!checker.IsValid()) {
165 LOG(FATAL) << "Error after " << pass_name << ": " << Dumpable<GraphChecker>(checker);
166 }
167 }
168 }
169 }
David Brazdil809658e2015-02-05 11:34:02 +0000170 }
171
David Brazdil69ba7b72015-06-23 18:27:30 +0100172 HGraph* const graph_;
David Brazdil5e8b1372015-01-23 14:39:08 +0000173 const char* method_name_;
174
175 bool timing_logger_enabled_;
David Brazdil5e8b1372015-01-23 14:39:08 +0000176 TimingLogger timing_logger_;
177
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100178 DisassemblyInformation disasm_info_;
179
David Brazdil5e8b1372015-01-23 14:39:08 +0000180 bool visualizer_enabled_;
181 HGraphVisualizer visualizer_;
182
David Brazdil69ba7b72015-06-23 18:27:30 +0100183 // Flag to be set by the compiler if the pass failed and the graph is not
184 // expected to validate.
185 bool graph_in_bad_state_;
David Brazdil809658e2015-02-05 11:34:02 +0000186
David Brazdil69ba7b72015-06-23 18:27:30 +0100187 friend PassScope;
188
189 DISALLOW_COPY_AND_ASSIGN(PassObserver);
David Brazdil5e8b1372015-01-23 14:39:08 +0000190};
191
David Brazdil69ba7b72015-06-23 18:27:30 +0100192class PassScope : public ValueObject {
David Brazdil809658e2015-02-05 11:34:02 +0000193 public:
David Brazdil69ba7b72015-06-23 18:27:30 +0100194 PassScope(const char *pass_name, PassObserver* pass_observer)
David Brazdil809658e2015-02-05 11:34:02 +0000195 : pass_name_(pass_name),
David Brazdil69ba7b72015-06-23 18:27:30 +0100196 pass_observer_(pass_observer) {
197 pass_observer_->StartPass(pass_name_);
David Brazdil809658e2015-02-05 11:34:02 +0000198 }
199
David Brazdil69ba7b72015-06-23 18:27:30 +0100200 ~PassScope() {
201 pass_observer_->EndPass(pass_name_);
David Brazdil809658e2015-02-05 11:34:02 +0000202 }
203
204 private:
205 const char* const pass_name_;
David Brazdil69ba7b72015-06-23 18:27:30 +0100206 PassObserver* const pass_observer_;
David Brazdil809658e2015-02-05 11:34:02 +0000207};
208
Andreas Gampe53c913b2014-08-12 23:19:23 -0700209class OptimizingCompiler FINAL : public Compiler {
210 public:
211 explicit OptimizingCompiler(CompilerDriver* driver);
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100212 ~OptimizingCompiler();
Andreas Gampe53c913b2014-08-12 23:19:23 -0700213
214 bool CanCompileMethod(uint32_t method_idx, const DexFile& dex_file, CompilationUnit* cu) const
215 OVERRIDE;
216
217 CompiledMethod* Compile(const DexFile::CodeItem* code_item,
218 uint32_t access_flags,
219 InvokeType invoke_type,
220 uint16_t class_def_idx,
221 uint32_t method_idx,
222 jobject class_loader,
223 const DexFile& dex_file) const OVERRIDE;
224
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000225 CompiledMethod* TryCompile(const DexFile::CodeItem* code_item,
226 uint32_t access_flags,
227 InvokeType invoke_type,
228 uint16_t class_def_idx,
229 uint32_t method_idx,
230 jobject class_loader,
231 const DexFile& dex_file) const;
232
Andreas Gampe53c913b2014-08-12 23:19:23 -0700233 CompiledMethod* JniCompile(uint32_t access_flags,
234 uint32_t method_idx,
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000235 const DexFile& dex_file) const OVERRIDE {
236 return ArtQuickJniCompileMethod(GetCompilerDriver(), access_flags, method_idx, dex_file);
237 }
Andreas Gampe53c913b2014-08-12 23:19:23 -0700238
Mathieu Chartiere401d142015-04-22 13:56:20 -0700239 uintptr_t GetEntryPointOf(ArtMethod* method) const OVERRIDE
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000240 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
241 return reinterpret_cast<uintptr_t>(method->GetEntryPointFromQuickCompiledCodePtrSize(
242 InstructionSetPointerSize(GetCompilerDriver()->GetInstructionSet())));
243 }
Andreas Gampe53c913b2014-08-12 23:19:23 -0700244
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000245 void InitCompilationUnit(CompilationUnit& cu) const OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700246
David Brazdilee690a32014-12-01 17:04:16 +0000247 void Init() OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700248
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000249 void UnInit() const OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700250
Calin Juravle2be39e02015-04-21 13:56:34 +0100251 void MaybeRecordStat(MethodCompilationStat compilation_stat) const {
252 if (compilation_stats_.get() != nullptr) {
253 compilation_stats_->RecordStat(compilation_stat);
254 }
255 }
256
Andreas Gampe53c913b2014-08-12 23:19:23 -0700257 private:
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100258 // Whether we should run any optimization or register allocation. If false, will
259 // just run the code generation after the graph was built.
260 const bool run_optimizations_;
Calin Juravle48c2b032014-12-09 18:11:36 +0000261
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000262 // Optimize and compile `graph`.
263 CompiledMethod* CompileOptimized(HGraph* graph,
264 CodeGenerator* codegen,
265 CompilerDriver* driver,
266 const DexCompilationUnit& dex_compilation_unit,
David Brazdil69ba7b72015-06-23 18:27:30 +0100267 PassObserver* pass_observer) const;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000268
269 // Just compile without doing optimizations.
270 CompiledMethod* CompileBaseline(CodeGenerator* codegen,
271 CompilerDriver* driver,
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100272 const DexCompilationUnit& dex_compilation_unit,
David Brazdil69ba7b72015-06-23 18:27:30 +0100273 PassObserver* pass_observer) const;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000274
Calin Juravle2be39e02015-04-21 13:56:34 +0100275 std::unique_ptr<OptimizingCompilerStats> compilation_stats_;
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100276
Andreas Gampe53c913b2014-08-12 23:19:23 -0700277 std::unique_ptr<std::ostream> visualizer_output_;
278
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000279 // Delegate to Quick in case the optimizing compiler cannot compile a method.
280 std::unique_ptr<Compiler> delegate_;
281
Andreas Gampe53c913b2014-08-12 23:19:23 -0700282 DISALLOW_COPY_AND_ASSIGN(OptimizingCompiler);
283};
284
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100285static const int kMaximumCompilationTimeBeforeWarning = 100; /* ms */
286
287OptimizingCompiler::OptimizingCompiler(CompilerDriver* driver)
288 : Compiler(driver, kMaximumCompilationTimeBeforeWarning),
289 run_optimizations_(
Nicolas Geoffraya3d90fb2015-03-16 13:55:40 +0000290 (driver->GetCompilerOptions().GetCompilerFilter() != CompilerOptions::kTime)
291 && !driver->GetCompilerOptions().GetDebuggable()),
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000292 delegate_(Create(driver, Compiler::Kind::kQuick)) {}
David Brazdilee690a32014-12-01 17:04:16 +0000293
294void OptimizingCompiler::Init() {
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000295 delegate_->Init();
David Brazdilee690a32014-12-01 17:04:16 +0000296 // Enable C1visualizer output. Must be done in Init() because the compiler
297 // driver is not fully initialized when passed to the compiler's constructor.
298 CompilerDriver* driver = GetCompilerDriver();
David Brazdil866c0312015-01-13 21:21:31 +0000299 const std::string cfg_file_name = driver->GetDumpCfgFileName();
300 if (!cfg_file_name.empty()) {
David Brazdilee690a32014-12-01 17:04:16 +0000301 CHECK_EQ(driver->GetThreadCount(), 1U)
302 << "Graph visualizer requires the compiler to run single-threaded. "
303 << "Invoke the compiler with '-j1'.";
David Brazdil866c0312015-01-13 21:21:31 +0000304 visualizer_output_.reset(new std::ofstream(cfg_file_name));
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100305 }
Calin Juravle2be39e02015-04-21 13:56:34 +0100306 if (driver->GetDumpStats()) {
307 compilation_stats_.reset(new OptimizingCompilerStats());
308 }
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100309}
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000310
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000311void OptimizingCompiler::UnInit() const {
312 delegate_->UnInit();
313}
314
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100315OptimizingCompiler::~OptimizingCompiler() {
Calin Juravle2be39e02015-04-21 13:56:34 +0100316 if (compilation_stats_.get() != nullptr) {
317 compilation_stats_->Log();
318 }
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100319}
320
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000321void OptimizingCompiler::InitCompilationUnit(CompilationUnit& cu) const {
322 delegate_->InitCompilationUnit(cu);
323}
324
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +0000325bool OptimizingCompiler::CanCompileMethod(uint32_t method_idx ATTRIBUTE_UNUSED,
326 const DexFile& dex_file ATTRIBUTE_UNUSED,
327 CompilationUnit* cu ATTRIBUTE_UNUSED) const {
328 return true;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700329}
330
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000331static bool IsInstructionSetSupported(InstructionSet instruction_set) {
332 return instruction_set == kArm64
333 || (instruction_set == kThumb2 && !kArm32QuickCodeUseSoftFloat)
Alexey Frunze4dda3372015-06-01 18:31:49 -0700334 || instruction_set == kMips64
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000335 || instruction_set == kX86
336 || instruction_set == kX86_64;
337}
338
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000339static bool CanOptimize(const DexFile::CodeItem& code_item) {
340 // TODO: We currently cannot optimize methods with try/catch.
341 return code_item.tries_size_ == 0;
342}
343
Calin Juravle10e244f2015-01-26 18:54:32 +0000344static void RunOptimizations(HOptimization* optimizations[],
345 size_t length,
David Brazdil69ba7b72015-06-23 18:27:30 +0100346 PassObserver* pass_observer) {
Calin Juravle10e244f2015-01-26 18:54:32 +0000347 for (size_t i = 0; i < length; ++i) {
David Brazdil69ba7b72015-06-23 18:27:30 +0100348 PassScope scope(optimizations[i]->GetPassName(), pass_observer);
349 optimizations[i]->Run();
Calin Juravle10e244f2015-01-26 18:54:32 +0000350 }
351}
352
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000353static void RunOptimizations(HGraph* graph,
354 CompilerDriver* driver,
355 OptimizingCompilerStats* stats,
356 const DexCompilationUnit& dex_compilation_unit,
David Brazdil69ba7b72015-06-23 18:27:30 +0100357 PassObserver* pass_observer,
Calin Juravleacf735c2015-02-12 15:25:22 +0000358 StackHandleScopeCollection* handles) {
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100359 ArenaAllocator* arena = graph->GetArena();
360 HDeadCodeElimination* dce1 = new (arena) HDeadCodeElimination(
361 graph, stats, HDeadCodeElimination::kInitialDeadCodeEliminationPassName);
362 HDeadCodeElimination* dce2 = new (arena) HDeadCodeElimination(
363 graph, stats, HDeadCodeElimination::kFinalDeadCodeEliminationPassName);
364 HConstantFolding* fold1 = new (arena) HConstantFolding(graph);
365 InstructionSimplifier* simplify1 = new (arena) InstructionSimplifier(graph, stats);
366 HBooleanSimplifier* boolean_simplify = new (arena) HBooleanSimplifier(graph);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000367
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100368 HInliner* inliner = new (arena) HInliner(
369 graph, dex_compilation_unit, dex_compilation_unit, driver, handles, stats);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000370
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100371 HConstantFolding* fold2 = new (arena) HConstantFolding(graph, "constant_folding_after_inlining");
372 SideEffectsAnalysis* side_effects = new (arena) SideEffectsAnalysis(graph);
373 GVNOptimization* gvn = new (arena) GVNOptimization(graph, *side_effects);
374 LICM* licm = new (arena) LICM(graph, *side_effects);
375 BoundsCheckElimination* bce = new (arena) BoundsCheckElimination(graph);
376 ReferenceTypePropagation* type_propagation =
377 new (arena) ReferenceTypePropagation(graph, handles);
378 InstructionSimplifier* simplify2 = new (arena) InstructionSimplifier(
379 graph, stats, "instruction_simplifier_after_types");
380 InstructionSimplifier* simplify3 = new (arena) InstructionSimplifier(
Nicolas Geoffrayb2bdfce2015-06-18 15:46:47 +0100381 graph, stats, "instruction_simplifier_after_bce");
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100382 ReferenceTypePropagation* type_propagation2 =
Calin Juravleb0d5fc02015-07-15 14:41:29 +0100383 new (arena) ReferenceTypePropagation(
384 graph, handles, "reference_type_propagation_after_inlining");
Nicolas Geoffrayb2bdfce2015-06-18 15:46:47 +0100385 InstructionSimplifier* simplify4 = new (arena) InstructionSimplifier(
386 graph, stats, "instruction_simplifier_before_codegen");
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000387
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100388 IntrinsicsRecognizer* intrinsics = new (arena) IntrinsicsRecognizer(graph, driver);
Andreas Gampe71fb52f2014-12-29 17:43:08 -0800389
Nicolas Geoffray31596742014-11-24 15:28:45 +0000390 HOptimization* optimizations[] = {
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100391 intrinsics,
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100392 fold1,
393 simplify1,
394 type_propagation,
Nicolas Geoffray18e68732015-06-17 23:09:05 +0100395 dce1,
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100396 simplify2,
397 inliner,
Nicolas Geoffray454a4812015-06-09 10:37:32 +0100398 // Run another type propagation phase: inlining will open up more opprotunities
399 // to remove checkast/instanceof and null checks.
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100400 type_propagation2,
David Brazdil46e2a392015-03-16 17:31:52 +0000401 // BooleanSimplifier depends on the InstructionSimplifier removing redundant
402 // suspend checks to recognize empty blocks.
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100403 boolean_simplify,
404 fold2,
405 side_effects,
406 gvn,
407 licm,
408 bce,
409 simplify3,
410 dce2,
Nicolas Geoffrayb2bdfce2015-06-18 15:46:47 +0100411 // The codegen has a few assumptions that only the instruction simplifier can
412 // satisfy. For example, the code generator does not expect to see a
413 // HTypeConversion from a type to the same type.
414 simplify4,
Nicolas Geoffray31596742014-11-24 15:28:45 +0000415 };
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000416
David Brazdil69ba7b72015-06-23 18:27:30 +0100417 RunOptimizations(optimizations, arraysize(optimizations), pass_observer);
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000418}
419
Nicolas Geoffray376b2bb2014-12-09 14:26:32 +0000420// The stack map we generate must be 4-byte aligned on ARM. Since existing
421// maps are generated alongside these stack maps, we must also align them.
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800422static ArrayRef<const uint8_t> AlignVectorSize(std::vector<uint8_t>& vector) {
Nicolas Geoffray376b2bb2014-12-09 14:26:32 +0000423 size_t size = vector.size();
424 size_t aligned_size = RoundUp(size, 4);
425 for (; size < aligned_size; ++size) {
426 vector.push_back(0);
427 }
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800428 return ArrayRef<const uint8_t>(vector);
Nicolas Geoffray376b2bb2014-12-09 14:26:32 +0000429}
430
Andreas Gampec2bcafe2015-04-10 10:49:32 -0700431static void AllocateRegisters(HGraph* graph,
432 CodeGenerator* codegen,
David Brazdil69ba7b72015-06-23 18:27:30 +0100433 PassObserver* pass_observer) {
Andreas Gampec2bcafe2015-04-10 10:49:32 -0700434 PrepareForRegisterAllocation(graph).Run();
Nicolas Geoffray0d9f17d2015-04-15 14:17:44 +0100435 SsaLivenessAnalysis liveness(graph, codegen);
Andreas Gampec2bcafe2015-04-10 10:49:32 -0700436 {
David Brazdil69ba7b72015-06-23 18:27:30 +0100437 PassScope scope(SsaLivenessAnalysis::kLivenessPassName, pass_observer);
Andreas Gampec2bcafe2015-04-10 10:49:32 -0700438 liveness.Analyze();
439 }
440 {
David Brazdil69ba7b72015-06-23 18:27:30 +0100441 PassScope scope(RegisterAllocator::kRegisterAllocatorPassName, pass_observer);
Andreas Gampec2bcafe2015-04-10 10:49:32 -0700442 RegisterAllocator(graph->GetArena(), codegen, liveness).AllocateRegisters();
443 }
444}
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000445
446CompiledMethod* OptimizingCompiler::CompileOptimized(HGraph* graph,
447 CodeGenerator* codegen,
448 CompilerDriver* compiler_driver,
449 const DexCompilationUnit& dex_compilation_unit,
David Brazdil69ba7b72015-06-23 18:27:30 +0100450 PassObserver* pass_observer) const {
Calin Juravleacf735c2015-02-12 15:25:22 +0000451 StackHandleScopeCollection handles(Thread::Current());
Calin Juravle2be39e02015-04-21 13:56:34 +0100452 RunOptimizations(graph, compiler_driver, compilation_stats_.get(),
David Brazdil69ba7b72015-06-23 18:27:30 +0100453 dex_compilation_unit, pass_observer, &handles);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000454
David Brazdil69ba7b72015-06-23 18:27:30 +0100455 AllocateRegisters(graph, codegen, pass_observer);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000456
457 CodeVectorAllocator allocator;
458 codegen->CompileOptimized(&allocator);
459
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100460 DefaultSrcMap src_mapping_table;
David Srbecky8363c772015-05-28 16:12:43 +0100461 if (compiler_driver->GetCompilerOptions().GetGenerateDebugInfo()) {
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100462 codegen->BuildSourceMap(&src_mapping_table);
463 }
464
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000465 std::vector<uint8_t> stack_map;
466 codegen->BuildStackMaps(&stack_map);
467
Calin Juravle2be39e02015-04-21 13:56:34 +0100468 MaybeRecordStat(MethodCompilationStat::kCompiledOptimized);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000469
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100470 CompiledMethod* compiled_method = CompiledMethod::SwapAllocCompiledMethod(
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000471 compiler_driver,
472 codegen->GetInstructionSet(),
473 ArrayRef<const uint8_t>(allocator.GetMemory()),
Roland Levillainaa9b7c42015-02-17 15:40:09 +0000474 // Follow Quick's behavior and set the frame size to zero if it is
475 // considered "empty" (see the definition of
476 // art::CodeGenerator::HasEmptyFrame).
477 codegen->HasEmptyFrame() ? 0 : codegen->GetFrameSize(),
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000478 codegen->GetCoreSpillMask(),
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000479 codegen->GetFpuSpillMask(),
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100480 &src_mapping_table,
481 ArrayRef<const uint8_t>(), // mapping_table.
482 ArrayRef<const uint8_t>(stack_map),
483 ArrayRef<const uint8_t>(), // native_gc_map.
484 ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data()),
485 ArrayRef<const LinkerPatch>());
David Brazdil69ba7b72015-06-23 18:27:30 +0100486 pass_observer->DumpDisassembly();
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100487 return compiled_method;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000488}
489
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000490CompiledMethod* OptimizingCompiler::CompileBaseline(
491 CodeGenerator* codegen,
492 CompilerDriver* compiler_driver,
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100493 const DexCompilationUnit& dex_compilation_unit,
David Brazdil69ba7b72015-06-23 18:27:30 +0100494 PassObserver* pass_observer) const {
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000495 CodeVectorAllocator allocator;
496 codegen->CompileBaseline(&allocator);
497
498 std::vector<uint8_t> mapping_table;
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100499 codegen->BuildMappingTable(&mapping_table);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000500 DefaultSrcMap src_mapping_table;
David Srbecky8363c772015-05-28 16:12:43 +0100501 if (compiler_driver->GetCompilerOptions().GetGenerateDebugInfo()) {
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100502 codegen->BuildSourceMap(&src_mapping_table);
503 }
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000504 std::vector<uint8_t> vmap_table;
505 codegen->BuildVMapTable(&vmap_table);
506 std::vector<uint8_t> gc_map;
507 codegen->BuildNativeGCMap(&gc_map, dex_compilation_unit);
508
Calin Juravle2be39e02015-04-21 13:56:34 +0100509 MaybeRecordStat(MethodCompilationStat::kCompiledBaseline);
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100510 CompiledMethod* compiled_method = CompiledMethod::SwapAllocCompiledMethod(
Roland Levillainaa9b7c42015-02-17 15:40:09 +0000511 compiler_driver,
512 codegen->GetInstructionSet(),
513 ArrayRef<const uint8_t>(allocator.GetMemory()),
514 // Follow Quick's behavior and set the frame size to zero if it is
515 // considered "empty" (see the definition of
516 // art::CodeGenerator::HasEmptyFrame).
517 codegen->HasEmptyFrame() ? 0 : codegen->GetFrameSize(),
518 codegen->GetCoreSpillMask(),
519 codegen->GetFpuSpillMask(),
520 &src_mapping_table,
521 AlignVectorSize(mapping_table),
522 AlignVectorSize(vmap_table),
523 AlignVectorSize(gc_map),
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100524 ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data()),
525 ArrayRef<const LinkerPatch>());
David Brazdil69ba7b72015-06-23 18:27:30 +0100526 pass_observer->DumpDisassembly();
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100527 return compiled_method;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000528}
529
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000530CompiledMethod* OptimizingCompiler::TryCompile(const DexFile::CodeItem* code_item,
531 uint32_t access_flags,
532 InvokeType invoke_type,
533 uint16_t class_def_idx,
534 uint32_t method_idx,
535 jobject class_loader,
536 const DexFile& dex_file) const {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700537 UNUSED(invoke_type);
David Brazdil5e8b1372015-01-23 14:39:08 +0000538 std::string method_name = PrettyMethod(method_idx, dex_file);
Calin Juravle2be39e02015-04-21 13:56:34 +0100539 MaybeRecordStat(MethodCompilationStat::kAttemptCompilation);
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000540 CompilerDriver* compiler_driver = GetCompilerDriver();
541 InstructionSet instruction_set = compiler_driver->GetInstructionSet();
Nicolas Geoffray8d486732014-07-16 16:23:40 +0100542 // Always use the thumb2 assembler: some runtime functionality (like implicit stack
543 // overflow checks) assume thumb2.
544 if (instruction_set == kArm) {
545 instruction_set = kThumb2;
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100546 }
547
548 // Do not attempt to compile on architectures we do not support.
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000549 if (!IsInstructionSetSupported(instruction_set)) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100550 MaybeRecordStat(MethodCompilationStat::kNotCompiledUnsupportedIsa);
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100551 return nullptr;
552 }
553
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000554 if (Compiler::IsPathologicalCase(*code_item, method_idx, dex_file)) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100555 MaybeRecordStat(MethodCompilationStat::kNotCompiledPathological);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000556 return nullptr;
557 }
558
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000559 // Implementation of the space filter: do not compile a code item whose size in
Nicolas Geoffray432bf3d2015-07-17 11:11:09 +0100560 // code units is bigger than 128.
561 static constexpr size_t kSpaceFilterOptimizingThreshold = 128;
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000562 const CompilerOptions& compiler_options = compiler_driver->GetCompilerOptions();
563 if ((compiler_options.GetCompilerFilter() == CompilerOptions::kSpace)
564 && (code_item->insns_size_in_code_units_ > kSpaceFilterOptimizingThreshold)) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100565 MaybeRecordStat(MethodCompilationStat::kNotCompiledSpaceFilter);
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000566 return nullptr;
567 }
568
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +0000569 DexCompilationUnit dex_compilation_unit(
Nicolas Geoffray9523a3e2015-07-17 11:51:28 +0000570 nullptr, class_loader, Runtime::Current()->GetClassLinker(), dex_file, code_item,
Ian Rogers72d32622014-05-06 16:20:11 -0700571 class_def_idx, method_idx, access_flags,
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000572 compiler_driver->GetVerifiedMethod(&dex_file, method_idx));
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +0000573
Calin Juravle3cd4fc82015-05-14 15:15:42 +0100574 bool requires_barrier = dex_compilation_unit.IsConstructor()
575 && compiler_driver->RequiresConstructorBarrier(Thread::Current(),
576 dex_compilation_unit.GetDexFile(),
577 dex_compilation_unit.GetClassDefIndex());
Nicolas Geoffray579ea7d2015-03-24 17:28:38 +0000578 ArenaAllocator arena(Runtime::Current()->GetArenaPool());
Nicolas Geoffraye0fe7ae2015-03-09 10:02:49 +0000579 HGraph* graph = new (&arena) HGraph(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700580 &arena, dex_file, method_idx, requires_barrier, compiler_driver->GetInstructionSet(),
581 kInvalidInvokeType, compiler_driver->GetCompilerOptions().GetDebuggable());
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000582
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +0000583 // For testing purposes, we put a special marker on method names that should be compiled
584 // with this compiler. This makes sure we're not regressing.
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000585 bool shouldCompile = method_name.find("$opt$") != std::string::npos;
Nicolas Geoffraya3d90fb2015-03-16 13:55:40 +0000586 bool shouldOptimize = method_name.find("$opt$reg$") != std::string::npos && run_optimizations_;
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +0000587
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000588 std::unique_ptr<CodeGenerator> codegen(
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000589 CodeGenerator::Create(graph,
590 instruction_set,
591 *compiler_driver->GetInstructionSetFeatures(),
592 compiler_driver->GetCompilerOptions()));
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000593 if (codegen.get() == nullptr) {
Zheng Xu5667fdb2014-10-23 18:29:55 +0800594 CHECK(!shouldCompile) << "Could not find code generator for optimizing compiler";
Calin Juravle2be39e02015-04-21 13:56:34 +0100595 MaybeRecordStat(MethodCompilationStat::kNotCompiledNoCodegen);
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000596 return nullptr;
597 }
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100598 codegen->GetAssembler()->cfi().SetEnabled(
David Srbecky8363c772015-05-28 16:12:43 +0100599 compiler_driver->GetCompilerOptions().GetGenerateDebugInfo());
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000600
David Brazdil69ba7b72015-06-23 18:27:30 +0100601 PassObserver pass_observer(graph,
602 method_name.c_str(),
603 codegen.get(),
604 visualizer_output_.get(),
605 compiler_driver);
David Brazdil5e8b1372015-01-23 14:39:08 +0000606
Nicolas Geoffray9523a3e2015-07-17 11:51:28 +0000607 const uint8_t* interpreter_metadata = nullptr;
608 {
609 ScopedObjectAccess soa(Thread::Current());
610 StackHandleScope<4> hs(soa.Self());
611 ClassLinker* class_linker = dex_compilation_unit.GetClassLinker();
612 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file)));
613 Handle<mirror::ClassLoader> loader(hs.NewHandle(
614 soa.Decode<mirror::ClassLoader*>(class_loader)));
615 ArtMethod* art_method = compiler_driver->ResolveMethod(
616 soa, dex_cache, loader, &dex_compilation_unit, method_idx, invoke_type);
617 // We may not get a method, for example if its class is erroneous.
618 // TODO: Clean this up, the compiler driver should just pass the ArtMethod to compile.
619 if (art_method != nullptr) {
620 interpreter_metadata = art_method->GetQuickenedInfo();
621 }
622 }
David Brazdil5e8b1372015-01-23 14:39:08 +0000623 HGraphBuilder builder(graph,
624 &dex_compilation_unit,
625 &dex_compilation_unit,
626 &dex_file,
627 compiler_driver,
Nicolas Geoffray9523a3e2015-07-17 11:51:28 +0000628 compilation_stats_.get(),
629 interpreter_metadata);
David Brazdil5e8b1372015-01-23 14:39:08 +0000630
631 VLOG(compiler) << "Building " << method_name;
632
David Brazdil809658e2015-02-05 11:34:02 +0000633 {
David Brazdil69ba7b72015-06-23 18:27:30 +0100634 PassScope scope(HGraphBuilder::kBuilderPassName, &pass_observer);
David Brazdil809658e2015-02-05 11:34:02 +0000635 if (!builder.BuildGraph(*code_item)) {
Nicolas Geoffray335005e2015-06-25 10:01:47 +0100636 DCHECK(!(IsCompilingWithCoreImage() && shouldCompile))
637 << "Could not build graph in optimizing compiler";
David Brazdil69ba7b72015-06-23 18:27:30 +0100638 pass_observer.SetGraphInBadState();
David Brazdil809658e2015-02-05 11:34:02 +0000639 return nullptr;
640 }
David Brazdil5e8b1372015-01-23 14:39:08 +0000641 }
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100642
Calin Juravle48c2b032014-12-09 18:11:36 +0000643 bool can_optimize = CanOptimize(*code_item);
644 bool can_allocate_registers = RegisterAllocator::CanAllocateRegistersFor(*graph, instruction_set);
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000645
646 // `run_optimizations_` is set explicitly (either through a compiler filter
647 // or the debuggable flag). If it is set, we can run baseline. Otherwise, we fall back
648 // to Quick.
Nicolas Geoffray2e7cd752015-07-10 11:38:52 +0100649 bool can_use_baseline = !run_optimizations_ && builder.CanUseBaselineForStringInit();
David Brazdilffee3d32015-07-06 11:48:53 +0100650 if (run_optimizations_ && can_allocate_registers) {
David Brazdil5e8b1372015-01-23 14:39:08 +0000651 VLOG(compiler) << "Optimizing " << method_name;
652
David Brazdil809658e2015-02-05 11:34:02 +0000653 {
David Brazdil69ba7b72015-06-23 18:27:30 +0100654 PassScope scope(SsaBuilder::kSsaBuilderPassName, &pass_observer);
David Brazdil809658e2015-02-05 11:34:02 +0000655 if (!graph->TryBuildingSsa()) {
656 // We could not transform the graph to SSA, bailout.
657 LOG(INFO) << "Skipping compilation of " << method_name << ": it contains a non natural loop";
Calin Juravle2be39e02015-04-21 13:56:34 +0100658 MaybeRecordStat(MethodCompilationStat::kNotCompiledCannotBuildSSA);
David Brazdilffee3d32015-07-06 11:48:53 +0100659 pass_observer.SetGraphInBadState();
David Brazdil809658e2015-02-05 11:34:02 +0000660 return nullptr;
661 }
Nicolas Geoffrayf5370122014-12-02 11:51:19 +0000662 }
David Brazdil5e8b1372015-01-23 14:39:08 +0000663
David Brazdilffee3d32015-07-06 11:48:53 +0100664 if (can_optimize) {
665 return CompileOptimized(graph,
666 codegen.get(),
667 compiler_driver,
668 dex_compilation_unit,
669 &pass_observer);
670 }
671 }
672
673 if (shouldOptimize && can_allocate_registers) {
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100674 LOG(FATAL) << "Could not allocate registers in optimizing compiler";
Zheng Xu5667fdb2014-10-23 18:29:55 +0800675 UNREACHABLE();
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000676 } else if (can_use_baseline) {
David Brazdil5e8b1372015-01-23 14:39:08 +0000677 VLOG(compiler) << "Compile baseline " << method_name;
Calin Juravle48c2b032014-12-09 18:11:36 +0000678
679 if (!run_optimizations_) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100680 MaybeRecordStat(MethodCompilationStat::kNotOptimizedDisabled);
Calin Juravle48c2b032014-12-09 18:11:36 +0000681 } else if (!can_optimize) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100682 MaybeRecordStat(MethodCompilationStat::kNotOptimizedTryCatch);
Calin Juravle48c2b032014-12-09 18:11:36 +0000683 } else if (!can_allocate_registers) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100684 MaybeRecordStat(MethodCompilationStat::kNotOptimizedRegisterAllocator);
Calin Juravle48c2b032014-12-09 18:11:36 +0000685 }
686
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100687 return CompileBaseline(codegen.get(),
688 compiler_driver,
689 dex_compilation_unit,
David Brazdil69ba7b72015-06-23 18:27:30 +0100690 &pass_observer);
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000691 } else {
692 return nullptr;
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100693 }
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000694}
695
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000696CompiledMethod* OptimizingCompiler::Compile(const DexFile::CodeItem* code_item,
697 uint32_t access_flags,
698 InvokeType invoke_type,
699 uint16_t class_def_idx,
700 uint32_t method_idx,
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100701 jobject jclass_loader,
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000702 const DexFile& dex_file) const {
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100703 CompilerDriver* compiler_driver = GetCompilerDriver();
704 CompiledMethod* method = nullptr;
Nicolas Geoffray4824c272015-06-24 15:53:03 +0100705 if (compiler_driver->IsMethodVerifiedWithoutFailures(method_idx, class_def_idx, dex_file) &&
706 !compiler_driver->GetVerifiedMethod(&dex_file, method_idx)->HasRuntimeThrow()) {
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100707 method = TryCompile(code_item, access_flags, invoke_type, class_def_idx,
708 method_idx, jclass_loader, dex_file);
709 } else {
710 if (compiler_driver->GetCompilerOptions().VerifyAtRuntime()) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100711 MaybeRecordStat(MethodCompilationStat::kNotCompiledVerifyAtRuntime);
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100712 } else {
Calin Juravle2be39e02015-04-21 13:56:34 +0100713 MaybeRecordStat(MethodCompilationStat::kNotCompiledClassNotVerified);
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100714 }
715 }
716
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000717 if (method != nullptr) {
718 return method;
719 }
Nicolas Geoffray12be74e2015-03-30 13:29:08 +0100720 method = delegate_->Compile(code_item, access_flags, invoke_type, class_def_idx, method_idx,
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100721 jclass_loader, dex_file);
Nicolas Geoffray12be74e2015-03-30 13:29:08 +0100722
723 if (method != nullptr) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100724 MaybeRecordStat(MethodCompilationStat::kCompiledQuick);
Nicolas Geoffray12be74e2015-03-30 13:29:08 +0100725 }
726 return method;
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000727}
728
Andreas Gampe53c913b2014-08-12 23:19:23 -0700729Compiler* CreateOptimizingCompiler(CompilerDriver* driver) {
730 return new OptimizingCompiler(driver);
731}
732
Nicolas Geoffray335005e2015-06-25 10:01:47 +0100733bool IsCompilingWithCoreImage() {
734 const std::string& image = Runtime::Current()->GetImageLocation();
735 return EndsWith(image, "core.art") || EndsWith(image, "core-optimizing.art");
736}
737
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000738} // namespace art