blob: 866e71705fbb09bd6833bc7bc6296186eae10171 [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
Alexandre Rames44b9cf92015-08-19 15:39:06 +010022#ifdef ART_ENABLE_CODEGEN_arm64
23#include "instruction_simplifier_arm64.h"
24#endif
25
Mathieu Chartiere401d142015-04-22 13:56:20 -070026#include "art_method-inl.h"
Mathieu Chartierb666f482015-02-18 14:33:14 -080027#include "base/arena_allocator.h"
David Brazdil5e8b1372015-01-23 14:39:08 +000028#include "base/dumpable.h"
29#include "base/timing_logger.h"
David Brazdil46e2a392015-03-16 17:31:52 +000030#include "boolean_simplifier.h"
Mingyao Yangf384f882014-10-22 16:08:18 -070031#include "bounds_check_elimination.h"
Nicolas Geoffray787c3072014-03-17 10:20:19 +000032#include "builder.h"
33#include "code_generator.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000034#include "compiled_method.h"
Andreas Gampe53c913b2014-08-12 23:19:23 -070035#include "compiler.h"
Roland Levillain75be2832014-10-17 17:02:00 +010036#include "constant_folding.h"
37#include "dead_code_elimination.h"
Andreas Gampe71fb52f2014-12-29 17:43:08 -080038#include "dex/quick/dex_file_to_method_inliner_map.h"
Calin Juravlef1c6d9e2015-04-13 18:42:21 +010039#include "dex/verified_method.h"
40#include "dex/verification_results.h"
Nicolas Geoffray787c3072014-03-17 10:20:19 +000041#include "driver/compiler_driver.h"
Nicolas Geoffray9523a3e2015-07-17 11:51:28 +000042#include "driver/compiler_driver-inl.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000043#include "driver/compiler_options.h"
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000044#include "driver/dex_compilation_unit.h"
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +000045#include "elf_writer_quick.h"
David Brazdil69ba7b72015-06-23 18:27:30 +010046#include "graph_checker.h"
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010047#include "graph_visualizer.h"
Nicolas Geoffrayd31cf3d2014-09-08 17:30:24 +010048#include "gvn.h"
Nicolas Geoffraye53798a2014-12-01 10:31:54 +000049#include "inliner.h"
Nicolas Geoffray3c049742014-09-24 18:10:46 +010050#include "instruction_simplifier.h"
Andreas Gampe71fb52f2014-12-29 17:43:08 -080051#include "intrinsics.h"
Nicolas Geoffray82091da2015-01-26 10:02:45 +000052#include "licm.h"
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +000053#include "jni/quick/jni_compiler.h"
Nicolas Geoffray787c3072014-03-17 10:20:19 +000054#include "nodes.h"
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +010055#include "prepare_for_register_allocation.h"
Calin Juravlef1c6d9e2015-04-13 18:42:21 +010056#include "reference_type_propagation.h"
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010057#include "register_allocator.h"
Nicolas Geoffray827eedb2015-01-26 15:18:36 +000058#include "side_effects_analysis.h"
Nicolas Geoffray31596742014-11-24 15:28:45 +000059#include "ssa_builder.h"
Nicolas Geoffray7dc206a2014-07-11 09:49:49 +010060#include "ssa_phi_elimination.h"
Nicolas Geoffray804d0932014-05-02 08:46:00 +010061#include "ssa_liveness_analysis.h"
David Srbeckyc6b4dd82015-04-07 20:32:43 +010062#include "utils/assembler.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000063
64namespace art {
65
Nicolas Geoffray787c3072014-03-17 10:20:19 +000066/**
67 * Used by the code generator, to allocate the code in a vector.
68 */
69class CodeVectorAllocator FINAL : public CodeAllocator {
70 public:
Andreas Gampe7c3952f2015-02-19 18:21:24 -080071 CodeVectorAllocator() : size_(0) {}
Nicolas Geoffray787c3072014-03-17 10:20:19 +000072
73 virtual uint8_t* Allocate(size_t size) {
74 size_ = size;
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000075 memory_.resize(size);
Nicolas Geoffray787c3072014-03-17 10:20:19 +000076 return &memory_[0];
77 }
78
79 size_t GetSize() const { return size_; }
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000080 const std::vector<uint8_t>& GetMemory() const { return memory_; }
Nicolas Geoffray787c3072014-03-17 10:20:19 +000081
82 private:
83 std::vector<uint8_t> memory_;
84 size_t size_;
85
86 DISALLOW_COPY_AND_ASSIGN(CodeVectorAllocator);
87};
88
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010089/**
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010090 * Filter to apply to the visualizer. Methods whose name contain that filter will
David Brazdilee690a32014-12-01 17:04:16 +000091 * be dumped.
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010092 */
Andreas Gampe53fcd0f2015-07-22 12:10:13 -070093static constexpr const char kStringFilter[] = "";
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010094
David Brazdil69ba7b72015-06-23 18:27:30 +010095class PassScope;
David Brazdil809658e2015-02-05 11:34:02 +000096
David Brazdil69ba7b72015-06-23 18:27:30 +010097class PassObserver : public ValueObject {
David Brazdil5e8b1372015-01-23 14:39:08 +000098 public:
David Brazdil69ba7b72015-06-23 18:27:30 +010099 PassObserver(HGraph* graph,
100 const char* method_name,
101 CodeGenerator* codegen,
102 std::ostream* visualizer_output,
103 CompilerDriver* compiler_driver)
104 : graph_(graph),
105 method_name_(method_name),
David Brazdil809658e2015-02-05 11:34:02 +0000106 timing_logger_enabled_(compiler_driver->GetDumpPasses()),
David Brazdil5e8b1372015-01-23 14:39:08 +0000107 timing_logger_(method_name, true, true),
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100108 disasm_info_(graph->GetArena()),
David Brazdil809658e2015-02-05 11:34:02 +0000109 visualizer_enabled_(!compiler_driver->GetDumpCfgFileName().empty()),
David Brazdil69ba7b72015-06-23 18:27:30 +0100110 visualizer_(visualizer_output, graph, *codegen),
111 graph_in_bad_state_(false) {
Andreas Gampe53fcd0f2015-07-22 12:10:13 -0700112 if (timing_logger_enabled_ || visualizer_enabled_) {
113 if (!IsVerboseMethod(compiler_driver, method_name)) {
114 timing_logger_enabled_ = visualizer_enabled_ = false;
115 }
116 if (visualizer_enabled_) {
117 visualizer_.PrintHeader(method_name_);
118 codegen->SetDisassemblyInformation(&disasm_info_);
119 }
David Brazdil62e074f2015-04-07 18:09:37 +0100120 }
David Brazdil5e8b1372015-01-23 14:39:08 +0000121 }
122
David Brazdil69ba7b72015-06-23 18:27:30 +0100123 ~PassObserver() {
David Brazdil5e8b1372015-01-23 14:39:08 +0000124 if (timing_logger_enabled_) {
David Brazdil5e8b1372015-01-23 14:39:08 +0000125 LOG(INFO) << "TIMINGS " << method_name_;
126 LOG(INFO) << Dumpable<TimingLogger>(timing_logger_);
127 }
128 }
129
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100130 void DumpDisassembly() const {
131 if (visualizer_enabled_) {
132 visualizer_.DumpGraphWithDisassembly();
133 }
134 }
135
David Brazdil69ba7b72015-06-23 18:27:30 +0100136 void SetGraphInBadState() { graph_in_bad_state_ = true; }
137
David Brazdil5e8b1372015-01-23 14:39:08 +0000138 private:
David Brazdil809658e2015-02-05 11:34:02 +0000139 void StartPass(const char* pass_name) {
140 // Dump graph first, then start timer.
141 if (visualizer_enabled_) {
David Brazdilffee3d32015-07-06 11:48:53 +0100142 visualizer_.DumpGraph(pass_name, /* is_after_pass */ false, graph_in_bad_state_);
David Brazdil809658e2015-02-05 11:34:02 +0000143 }
144 if (timing_logger_enabled_) {
145 timing_logger_.StartTiming(pass_name);
146 }
147 }
148
149 void EndPass(const char* pass_name) {
150 // Pause timer first, then dump graph.
151 if (timing_logger_enabled_) {
152 timing_logger_.EndTiming();
153 }
154 if (visualizer_enabled_) {
David Brazdilffee3d32015-07-06 11:48:53 +0100155 visualizer_.DumpGraph(pass_name, /* is_after_pass */ true, graph_in_bad_state_);
David Brazdil809658e2015-02-05 11:34:02 +0000156 }
David Brazdil69ba7b72015-06-23 18:27:30 +0100157
158 // Validate the HGraph if running in debug mode.
159 if (kIsDebugBuild) {
160 if (!graph_in_bad_state_) {
161 if (graph_->IsInSsaForm()) {
162 SSAChecker checker(graph_->GetArena(), graph_);
163 checker.Run();
164 if (!checker.IsValid()) {
165 LOG(FATAL) << "Error after " << pass_name << ": " << Dumpable<SSAChecker>(checker);
166 }
167 } else {
168 GraphChecker checker(graph_->GetArena(), graph_);
169 checker.Run();
170 if (!checker.IsValid()) {
171 LOG(FATAL) << "Error after " << pass_name << ": " << Dumpable<GraphChecker>(checker);
172 }
173 }
174 }
175 }
David Brazdil809658e2015-02-05 11:34:02 +0000176 }
177
Andreas Gampe53fcd0f2015-07-22 12:10:13 -0700178 static bool IsVerboseMethod(CompilerDriver* compiler_driver, const char* method_name) {
179 // Test an exact match to --verbose-methods. If verbose-methods is set, this overrides an
180 // empty kStringFilter matching all methods.
181 if (compiler_driver->GetCompilerOptions().HasVerboseMethods()) {
182 return compiler_driver->GetCompilerOptions().IsVerboseMethod(method_name);
183 }
184
185 // Test the kStringFilter sub-string. constexpr helper variable to silence unreachable-code
186 // warning when the string is empty.
187 constexpr bool kStringFilterEmpty = arraysize(kStringFilter) <= 1;
188 if (kStringFilterEmpty || strstr(method_name, kStringFilter) != nullptr) {
189 return true;
190 }
191
192 return false;
193 }
194
David Brazdil69ba7b72015-06-23 18:27:30 +0100195 HGraph* const graph_;
David Brazdil5e8b1372015-01-23 14:39:08 +0000196 const char* method_name_;
197
198 bool timing_logger_enabled_;
David Brazdil5e8b1372015-01-23 14:39:08 +0000199 TimingLogger timing_logger_;
200
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100201 DisassemblyInformation disasm_info_;
202
David Brazdil5e8b1372015-01-23 14:39:08 +0000203 bool visualizer_enabled_;
204 HGraphVisualizer visualizer_;
205
David Brazdil69ba7b72015-06-23 18:27:30 +0100206 // Flag to be set by the compiler if the pass failed and the graph is not
207 // expected to validate.
208 bool graph_in_bad_state_;
David Brazdil809658e2015-02-05 11:34:02 +0000209
David Brazdil69ba7b72015-06-23 18:27:30 +0100210 friend PassScope;
211
212 DISALLOW_COPY_AND_ASSIGN(PassObserver);
David Brazdil5e8b1372015-01-23 14:39:08 +0000213};
214
David Brazdil69ba7b72015-06-23 18:27:30 +0100215class PassScope : public ValueObject {
David Brazdil809658e2015-02-05 11:34:02 +0000216 public:
David Brazdil69ba7b72015-06-23 18:27:30 +0100217 PassScope(const char *pass_name, PassObserver* pass_observer)
David Brazdil809658e2015-02-05 11:34:02 +0000218 : pass_name_(pass_name),
David Brazdil69ba7b72015-06-23 18:27:30 +0100219 pass_observer_(pass_observer) {
220 pass_observer_->StartPass(pass_name_);
David Brazdil809658e2015-02-05 11:34:02 +0000221 }
222
David Brazdil69ba7b72015-06-23 18:27:30 +0100223 ~PassScope() {
224 pass_observer_->EndPass(pass_name_);
David Brazdil809658e2015-02-05 11:34:02 +0000225 }
226
227 private:
228 const char* const pass_name_;
David Brazdil69ba7b72015-06-23 18:27:30 +0100229 PassObserver* const pass_observer_;
David Brazdil809658e2015-02-05 11:34:02 +0000230};
231
Andreas Gampe53c913b2014-08-12 23:19:23 -0700232class OptimizingCompiler FINAL : public Compiler {
233 public:
234 explicit OptimizingCompiler(CompilerDriver* driver);
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100235 ~OptimizingCompiler();
Andreas Gampe53c913b2014-08-12 23:19:23 -0700236
237 bool CanCompileMethod(uint32_t method_idx, const DexFile& dex_file, CompilationUnit* cu) const
238 OVERRIDE;
239
240 CompiledMethod* Compile(const DexFile::CodeItem* code_item,
241 uint32_t access_flags,
242 InvokeType invoke_type,
243 uint16_t class_def_idx,
244 uint32_t method_idx,
245 jobject class_loader,
246 const DexFile& dex_file) const OVERRIDE;
247
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000248 CompiledMethod* TryCompile(const DexFile::CodeItem* code_item,
249 uint32_t access_flags,
250 InvokeType invoke_type,
251 uint16_t class_def_idx,
252 uint32_t method_idx,
253 jobject class_loader,
254 const DexFile& dex_file) const;
255
Andreas Gampe53c913b2014-08-12 23:19:23 -0700256 CompiledMethod* JniCompile(uint32_t access_flags,
257 uint32_t method_idx,
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000258 const DexFile& dex_file) const OVERRIDE {
259 return ArtQuickJniCompileMethod(GetCompilerDriver(), access_flags, method_idx, dex_file);
260 }
Andreas Gampe53c913b2014-08-12 23:19:23 -0700261
Mathieu Chartiere401d142015-04-22 13:56:20 -0700262 uintptr_t GetEntryPointOf(ArtMethod* method) const OVERRIDE
Mathieu Chartier90443472015-07-16 20:32:27 -0700263 SHARED_REQUIRES(Locks::mutator_lock_) {
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000264 return reinterpret_cast<uintptr_t>(method->GetEntryPointFromQuickCompiledCodePtrSize(
265 InstructionSetPointerSize(GetCompilerDriver()->GetInstructionSet())));
266 }
Andreas Gampe53c913b2014-08-12 23:19:23 -0700267
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000268 void InitCompilationUnit(CompilationUnit& cu) const OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700269
David Brazdilee690a32014-12-01 17:04:16 +0000270 void Init() OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700271
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000272 void UnInit() const OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700273
Calin Juravle2be39e02015-04-21 13:56:34 +0100274 void MaybeRecordStat(MethodCompilationStat compilation_stat) const {
275 if (compilation_stats_.get() != nullptr) {
276 compilation_stats_->RecordStat(compilation_stat);
277 }
278 }
279
Andreas Gampe53c913b2014-08-12 23:19:23 -0700280 private:
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100281 // Whether we should run any optimization or register allocation. If false, will
282 // just run the code generation after the graph was built.
283 const bool run_optimizations_;
Calin Juravle48c2b032014-12-09 18:11:36 +0000284
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000285 // Optimize and compile `graph`.
286 CompiledMethod* CompileOptimized(HGraph* graph,
287 CodeGenerator* codegen,
288 CompilerDriver* driver,
289 const DexCompilationUnit& dex_compilation_unit,
David Brazdil69ba7b72015-06-23 18:27:30 +0100290 PassObserver* pass_observer) const;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000291
292 // Just compile without doing optimizations.
293 CompiledMethod* CompileBaseline(CodeGenerator* codegen,
294 CompilerDriver* driver,
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100295 const DexCompilationUnit& dex_compilation_unit,
David Brazdil69ba7b72015-06-23 18:27:30 +0100296 PassObserver* pass_observer) const;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000297
Calin Juravle2be39e02015-04-21 13:56:34 +0100298 std::unique_ptr<OptimizingCompilerStats> compilation_stats_;
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100299
Andreas Gampe53c913b2014-08-12 23:19:23 -0700300 std::unique_ptr<std::ostream> visualizer_output_;
301
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000302 // Delegate to Quick in case the optimizing compiler cannot compile a method.
303 std::unique_ptr<Compiler> delegate_;
304
Andreas Gampe53c913b2014-08-12 23:19:23 -0700305 DISALLOW_COPY_AND_ASSIGN(OptimizingCompiler);
306};
307
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100308static const int kMaximumCompilationTimeBeforeWarning = 100; /* ms */
309
310OptimizingCompiler::OptimizingCompiler(CompilerDriver* driver)
311 : Compiler(driver, kMaximumCompilationTimeBeforeWarning),
312 run_optimizations_(
Nicolas Geoffraya3d90fb2015-03-16 13:55:40 +0000313 (driver->GetCompilerOptions().GetCompilerFilter() != CompilerOptions::kTime)
314 && !driver->GetCompilerOptions().GetDebuggable()),
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000315 delegate_(Create(driver, Compiler::Kind::kQuick)) {}
David Brazdilee690a32014-12-01 17:04:16 +0000316
317void OptimizingCompiler::Init() {
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000318 delegate_->Init();
David Brazdilee690a32014-12-01 17:04:16 +0000319 // Enable C1visualizer output. Must be done in Init() because the compiler
320 // driver is not fully initialized when passed to the compiler's constructor.
321 CompilerDriver* driver = GetCompilerDriver();
David Brazdil866c0312015-01-13 21:21:31 +0000322 const std::string cfg_file_name = driver->GetDumpCfgFileName();
323 if (!cfg_file_name.empty()) {
David Brazdilee690a32014-12-01 17:04:16 +0000324 CHECK_EQ(driver->GetThreadCount(), 1U)
325 << "Graph visualizer requires the compiler to run single-threaded. "
326 << "Invoke the compiler with '-j1'.";
David Brazdil866c0312015-01-13 21:21:31 +0000327 visualizer_output_.reset(new std::ofstream(cfg_file_name));
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100328 }
Calin Juravle2be39e02015-04-21 13:56:34 +0100329 if (driver->GetDumpStats()) {
330 compilation_stats_.reset(new OptimizingCompilerStats());
331 }
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100332}
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000333
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000334void OptimizingCompiler::UnInit() const {
335 delegate_->UnInit();
336}
337
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100338OptimizingCompiler::~OptimizingCompiler() {
Calin Juravle2be39e02015-04-21 13:56:34 +0100339 if (compilation_stats_.get() != nullptr) {
340 compilation_stats_->Log();
341 }
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100342}
343
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000344void OptimizingCompiler::InitCompilationUnit(CompilationUnit& cu) const {
345 delegate_->InitCompilationUnit(cu);
346}
347
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +0000348bool OptimizingCompiler::CanCompileMethod(uint32_t method_idx ATTRIBUTE_UNUSED,
349 const DexFile& dex_file ATTRIBUTE_UNUSED,
350 CompilationUnit* cu ATTRIBUTE_UNUSED) const {
351 return true;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700352}
353
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000354static bool IsInstructionSetSupported(InstructionSet instruction_set) {
355 return instruction_set == kArm64
356 || (instruction_set == kThumb2 && !kArm32QuickCodeUseSoftFloat)
Alexey Frunze4dda3372015-06-01 18:31:49 -0700357 || instruction_set == kMips64
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000358 || instruction_set == kX86
359 || instruction_set == kX86_64;
360}
361
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000362static bool CanOptimize(const DexFile::CodeItem& code_item) {
363 // TODO: We currently cannot optimize methods with try/catch.
364 return code_item.tries_size_ == 0;
365}
366
Calin Juravle10e244f2015-01-26 18:54:32 +0000367static void RunOptimizations(HOptimization* optimizations[],
368 size_t length,
David Brazdil69ba7b72015-06-23 18:27:30 +0100369 PassObserver* pass_observer) {
Calin Juravle10e244f2015-01-26 18:54:32 +0000370 for (size_t i = 0; i < length; ++i) {
David Brazdil69ba7b72015-06-23 18:27:30 +0100371 PassScope scope(optimizations[i]->GetPassName(), pass_observer);
372 optimizations[i]->Run();
Calin Juravle10e244f2015-01-26 18:54:32 +0000373 }
374}
375
Calin Juravleec748352015-07-29 13:52:12 +0100376static void MaybeRunInliner(HGraph* graph,
377 CompilerDriver* driver,
378 OptimizingCompilerStats* stats,
379 const DexCompilationUnit& dex_compilation_unit,
380 PassObserver* pass_observer,
381 StackHandleScopeCollection* handles) {
382 const CompilerOptions& compiler_options = driver->GetCompilerOptions();
383 bool should_inline = (compiler_options.GetInlineDepthLimit() > 0)
384 && (compiler_options.GetInlineMaxCodeUnits() > 0);
385 if (!should_inline) {
386 return;
387 }
388
389 ArenaAllocator* arena = graph->GetArena();
390 HInliner* inliner = new (arena) HInliner(
391 graph, dex_compilation_unit, dex_compilation_unit, driver, handles, stats);
392 ReferenceTypePropagation* type_propagation =
393 new (arena) ReferenceTypePropagation(graph, handles,
394 "reference_type_propagation_after_inlining");
395
396 HOptimization* optimizations[] = {
397 inliner,
398 // Run another type propagation phase: inlining will open up more opportunities
399 // to remove checkcast/instanceof and null checks.
400 type_propagation,
401 };
402
403 RunOptimizations(optimizations, arraysize(optimizations), pass_observer);
404}
405
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100406static void RunArchOptimizations(InstructionSet instruction_set,
407 HGraph* graph,
408 OptimizingCompilerStats* stats,
409 PassObserver* pass_observer) {
410 ArenaAllocator* arena = graph->GetArena();
411 switch (instruction_set) {
412#ifdef ART_ENABLE_CODEGEN_arm64
413 case kArm64: {
414 arm64::InstructionSimplifierArm64* simplifier =
415 new (arena) arm64::InstructionSimplifierArm64(graph, stats);
416 SideEffectsAnalysis* side_effects = new (arena) SideEffectsAnalysis(graph);
417 GVNOptimization* gvn = new (arena) GVNOptimization(graph, *side_effects, "GVN_after_arch");
418 HOptimization* arm64_optimizations[] = {
419 simplifier,
420 side_effects,
421 gvn
422 };
423 RunOptimizations(arm64_optimizations, arraysize(arm64_optimizations), pass_observer);
424 break;
425 }
426#endif
427 default:
428 break;
429 }
430}
431
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000432static void RunOptimizations(HGraph* graph,
433 CompilerDriver* driver,
434 OptimizingCompilerStats* stats,
435 const DexCompilationUnit& dex_compilation_unit,
David Brazdil69ba7b72015-06-23 18:27:30 +0100436 PassObserver* pass_observer,
Calin Juravleacf735c2015-02-12 15:25:22 +0000437 StackHandleScopeCollection* handles) {
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100438 ArenaAllocator* arena = graph->GetArena();
439 HDeadCodeElimination* dce1 = new (arena) HDeadCodeElimination(
440 graph, stats, HDeadCodeElimination::kInitialDeadCodeEliminationPassName);
441 HDeadCodeElimination* dce2 = new (arena) HDeadCodeElimination(
442 graph, stats, HDeadCodeElimination::kFinalDeadCodeEliminationPassName);
443 HConstantFolding* fold1 = new (arena) HConstantFolding(graph);
444 InstructionSimplifier* simplify1 = new (arena) InstructionSimplifier(graph, stats);
445 HBooleanSimplifier* boolean_simplify = new (arena) HBooleanSimplifier(graph);
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100446 HConstantFolding* fold2 = new (arena) HConstantFolding(graph, "constant_folding_after_inlining");
447 SideEffectsAnalysis* side_effects = new (arena) SideEffectsAnalysis(graph);
448 GVNOptimization* gvn = new (arena) GVNOptimization(graph, *side_effects);
449 LICM* licm = new (arena) LICM(graph, *side_effects);
450 BoundsCheckElimination* bce = new (arena) BoundsCheckElimination(graph);
451 ReferenceTypePropagation* type_propagation =
452 new (arena) ReferenceTypePropagation(graph, handles);
453 InstructionSimplifier* simplify2 = new (arena) InstructionSimplifier(
454 graph, stats, "instruction_simplifier_after_types");
455 InstructionSimplifier* simplify3 = new (arena) InstructionSimplifier(
Nicolas Geoffrayb2bdfce2015-06-18 15:46:47 +0100456 graph, stats, "instruction_simplifier_after_bce");
Nicolas Geoffrayb2bdfce2015-06-18 15:46:47 +0100457 InstructionSimplifier* simplify4 = new (arena) InstructionSimplifier(
458 graph, stats, "instruction_simplifier_before_codegen");
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000459
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100460 IntrinsicsRecognizer* intrinsics = new (arena) IntrinsicsRecognizer(graph, driver);
Andreas Gampe71fb52f2014-12-29 17:43:08 -0800461
Calin Juravleec748352015-07-29 13:52:12 +0100462 HOptimization* optimizations1[] = {
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100463 intrinsics,
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100464 fold1,
465 simplify1,
466 type_propagation,
Nicolas Geoffray18e68732015-06-17 23:09:05 +0100467 dce1,
Calin Juravleec748352015-07-29 13:52:12 +0100468 simplify2
469 };
470
471 RunOptimizations(optimizations1, arraysize(optimizations1), pass_observer);
472
473 MaybeRunInliner(graph, driver, stats, dex_compilation_unit, pass_observer, handles);
474
475 HOptimization* optimizations2[] = {
David Brazdil46e2a392015-03-16 17:31:52 +0000476 // BooleanSimplifier depends on the InstructionSimplifier removing redundant
477 // suspend checks to recognize empty blocks.
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100478 boolean_simplify,
Calin Juravleec748352015-07-29 13:52:12 +0100479 fold2, // TODO: if we don't inline we can also skip fold2.
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100480 side_effects,
481 gvn,
482 licm,
483 bce,
484 simplify3,
485 dce2,
Nicolas Geoffrayb2bdfce2015-06-18 15:46:47 +0100486 // The codegen has a few assumptions that only the instruction simplifier can
487 // satisfy. For example, the code generator does not expect to see a
488 // HTypeConversion from a type to the same type.
489 simplify4,
Nicolas Geoffray31596742014-11-24 15:28:45 +0000490 };
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000491
Calin Juravleec748352015-07-29 13:52:12 +0100492 RunOptimizations(optimizations2, arraysize(optimizations2), pass_observer);
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100493
494 RunArchOptimizations(driver->GetInstructionSet(), graph, stats, pass_observer);
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000495}
496
Nicolas Geoffray376b2bb2014-12-09 14:26:32 +0000497// The stack map we generate must be 4-byte aligned on ARM. Since existing
498// maps are generated alongside these stack maps, we must also align them.
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800499static ArrayRef<const uint8_t> AlignVectorSize(std::vector<uint8_t>& vector) {
Nicolas Geoffray376b2bb2014-12-09 14:26:32 +0000500 size_t size = vector.size();
501 size_t aligned_size = RoundUp(size, 4);
502 for (; size < aligned_size; ++size) {
503 vector.push_back(0);
504 }
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800505 return ArrayRef<const uint8_t>(vector);
Nicolas Geoffray376b2bb2014-12-09 14:26:32 +0000506}
507
Andreas Gampec2bcafe2015-04-10 10:49:32 -0700508static void AllocateRegisters(HGraph* graph,
509 CodeGenerator* codegen,
David Brazdil69ba7b72015-06-23 18:27:30 +0100510 PassObserver* pass_observer) {
Andreas Gampec2bcafe2015-04-10 10:49:32 -0700511 PrepareForRegisterAllocation(graph).Run();
Nicolas Geoffray0d9f17d2015-04-15 14:17:44 +0100512 SsaLivenessAnalysis liveness(graph, codegen);
Andreas Gampec2bcafe2015-04-10 10:49:32 -0700513 {
David Brazdil69ba7b72015-06-23 18:27:30 +0100514 PassScope scope(SsaLivenessAnalysis::kLivenessPassName, pass_observer);
Andreas Gampec2bcafe2015-04-10 10:49:32 -0700515 liveness.Analyze();
516 }
517 {
David Brazdil69ba7b72015-06-23 18:27:30 +0100518 PassScope scope(RegisterAllocator::kRegisterAllocatorPassName, pass_observer);
Andreas Gampec2bcafe2015-04-10 10:49:32 -0700519 RegisterAllocator(graph->GetArena(), codegen, liveness).AllocateRegisters();
520 }
521}
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000522
523CompiledMethod* OptimizingCompiler::CompileOptimized(HGraph* graph,
524 CodeGenerator* codegen,
525 CompilerDriver* compiler_driver,
526 const DexCompilationUnit& dex_compilation_unit,
David Brazdil69ba7b72015-06-23 18:27:30 +0100527 PassObserver* pass_observer) const {
Calin Juravleacf735c2015-02-12 15:25:22 +0000528 StackHandleScopeCollection handles(Thread::Current());
Calin Juravle2be39e02015-04-21 13:56:34 +0100529 RunOptimizations(graph, compiler_driver, compilation_stats_.get(),
David Brazdil69ba7b72015-06-23 18:27:30 +0100530 dex_compilation_unit, pass_observer, &handles);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000531
David Brazdil69ba7b72015-06-23 18:27:30 +0100532 AllocateRegisters(graph, codegen, pass_observer);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000533
534 CodeVectorAllocator allocator;
535 codegen->CompileOptimized(&allocator);
536
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100537 DefaultSrcMap src_mapping_table;
David Srbecky8363c772015-05-28 16:12:43 +0100538 if (compiler_driver->GetCompilerOptions().GetGenerateDebugInfo()) {
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100539 codegen->BuildSourceMap(&src_mapping_table);
540 }
541
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000542 std::vector<uint8_t> stack_map;
543 codegen->BuildStackMaps(&stack_map);
544
Calin Juravle2be39e02015-04-21 13:56:34 +0100545 MaybeRecordStat(MethodCompilationStat::kCompiledOptimized);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000546
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100547 CompiledMethod* compiled_method = CompiledMethod::SwapAllocCompiledMethod(
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000548 compiler_driver,
549 codegen->GetInstructionSet(),
550 ArrayRef<const uint8_t>(allocator.GetMemory()),
Roland Levillainaa9b7c42015-02-17 15:40:09 +0000551 // Follow Quick's behavior and set the frame size to zero if it is
552 // considered "empty" (see the definition of
553 // art::CodeGenerator::HasEmptyFrame).
554 codegen->HasEmptyFrame() ? 0 : codegen->GetFrameSize(),
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000555 codegen->GetCoreSpillMask(),
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000556 codegen->GetFpuSpillMask(),
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100557 &src_mapping_table,
558 ArrayRef<const uint8_t>(), // mapping_table.
559 ArrayRef<const uint8_t>(stack_map),
560 ArrayRef<const uint8_t>(), // native_gc_map.
561 ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data()),
Vladimir Markob2c431e2015-08-19 12:45:42 +0000562 ArrayRef<const LinkerPatch>());
David Brazdil69ba7b72015-06-23 18:27:30 +0100563 pass_observer->DumpDisassembly();
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100564 return compiled_method;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000565}
566
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000567CompiledMethod* OptimizingCompiler::CompileBaseline(
568 CodeGenerator* codegen,
569 CompilerDriver* compiler_driver,
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100570 const DexCompilationUnit& dex_compilation_unit,
David Brazdil69ba7b72015-06-23 18:27:30 +0100571 PassObserver* pass_observer) const {
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000572 CodeVectorAllocator allocator;
573 codegen->CompileBaseline(&allocator);
574
575 std::vector<uint8_t> mapping_table;
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100576 codegen->BuildMappingTable(&mapping_table);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000577 DefaultSrcMap src_mapping_table;
David Srbecky8363c772015-05-28 16:12:43 +0100578 if (compiler_driver->GetCompilerOptions().GetGenerateDebugInfo()) {
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100579 codegen->BuildSourceMap(&src_mapping_table);
580 }
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000581 std::vector<uint8_t> vmap_table;
582 codegen->BuildVMapTable(&vmap_table);
583 std::vector<uint8_t> gc_map;
584 codegen->BuildNativeGCMap(&gc_map, dex_compilation_unit);
585
Calin Juravle2be39e02015-04-21 13:56:34 +0100586 MaybeRecordStat(MethodCompilationStat::kCompiledBaseline);
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100587 CompiledMethod* compiled_method = CompiledMethod::SwapAllocCompiledMethod(
Roland Levillainaa9b7c42015-02-17 15:40:09 +0000588 compiler_driver,
589 codegen->GetInstructionSet(),
590 ArrayRef<const uint8_t>(allocator.GetMemory()),
591 // Follow Quick's behavior and set the frame size to zero if it is
592 // considered "empty" (see the definition of
593 // art::CodeGenerator::HasEmptyFrame).
594 codegen->HasEmptyFrame() ? 0 : codegen->GetFrameSize(),
595 codegen->GetCoreSpillMask(),
596 codegen->GetFpuSpillMask(),
597 &src_mapping_table,
598 AlignVectorSize(mapping_table),
599 AlignVectorSize(vmap_table),
600 AlignVectorSize(gc_map),
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100601 ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data()),
Vladimir Markob2c431e2015-08-19 12:45:42 +0000602 ArrayRef<const LinkerPatch>());
David Brazdil69ba7b72015-06-23 18:27:30 +0100603 pass_observer->DumpDisassembly();
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100604 return compiled_method;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000605}
606
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000607CompiledMethod* OptimizingCompiler::TryCompile(const DexFile::CodeItem* code_item,
608 uint32_t access_flags,
609 InvokeType invoke_type,
610 uint16_t class_def_idx,
611 uint32_t method_idx,
612 jobject class_loader,
613 const DexFile& dex_file) const {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700614 UNUSED(invoke_type);
David Brazdil5e8b1372015-01-23 14:39:08 +0000615 std::string method_name = PrettyMethod(method_idx, dex_file);
Calin Juravle2be39e02015-04-21 13:56:34 +0100616 MaybeRecordStat(MethodCompilationStat::kAttemptCompilation);
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000617 CompilerDriver* compiler_driver = GetCompilerDriver();
618 InstructionSet instruction_set = compiler_driver->GetInstructionSet();
Nicolas Geoffray8d486732014-07-16 16:23:40 +0100619 // Always use the thumb2 assembler: some runtime functionality (like implicit stack
620 // overflow checks) assume thumb2.
621 if (instruction_set == kArm) {
622 instruction_set = kThumb2;
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100623 }
624
625 // Do not attempt to compile on architectures we do not support.
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000626 if (!IsInstructionSetSupported(instruction_set)) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100627 MaybeRecordStat(MethodCompilationStat::kNotCompiledUnsupportedIsa);
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100628 return nullptr;
629 }
630
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000631 if (Compiler::IsPathologicalCase(*code_item, method_idx, dex_file)) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100632 MaybeRecordStat(MethodCompilationStat::kNotCompiledPathological);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000633 return nullptr;
634 }
635
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000636 // Implementation of the space filter: do not compile a code item whose size in
Nicolas Geoffray432bf3d2015-07-17 11:11:09 +0100637 // code units is bigger than 128.
638 static constexpr size_t kSpaceFilterOptimizingThreshold = 128;
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000639 const CompilerOptions& compiler_options = compiler_driver->GetCompilerOptions();
640 if ((compiler_options.GetCompilerFilter() == CompilerOptions::kSpace)
641 && (code_item->insns_size_in_code_units_ > kSpaceFilterOptimizingThreshold)) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100642 MaybeRecordStat(MethodCompilationStat::kNotCompiledSpaceFilter);
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000643 return nullptr;
644 }
645
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +0000646 DexCompilationUnit dex_compilation_unit(
Nicolas Geoffray9523a3e2015-07-17 11:51:28 +0000647 nullptr, class_loader, Runtime::Current()->GetClassLinker(), dex_file, code_item,
Ian Rogers72d32622014-05-06 16:20:11 -0700648 class_def_idx, method_idx, access_flags,
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000649 compiler_driver->GetVerifiedMethod(&dex_file, method_idx));
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +0000650
Calin Juravle3cd4fc82015-05-14 15:15:42 +0100651 bool requires_barrier = dex_compilation_unit.IsConstructor()
652 && compiler_driver->RequiresConstructorBarrier(Thread::Current(),
653 dex_compilation_unit.GetDexFile(),
654 dex_compilation_unit.GetClassDefIndex());
Nicolas Geoffray579ea7d2015-03-24 17:28:38 +0000655 ArenaAllocator arena(Runtime::Current()->GetArenaPool());
Nicolas Geoffraye0fe7ae2015-03-09 10:02:49 +0000656 HGraph* graph = new (&arena) HGraph(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700657 &arena, dex_file, method_idx, requires_barrier, compiler_driver->GetInstructionSet(),
658 kInvalidInvokeType, compiler_driver->GetCompilerOptions().GetDebuggable());
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000659
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +0000660 // For testing purposes, we put a special marker on method names that should be compiled
661 // with this compiler. This makes sure we're not regressing.
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000662 bool shouldCompile = method_name.find("$opt$") != std::string::npos;
Nicolas Geoffraya3d90fb2015-03-16 13:55:40 +0000663 bool shouldOptimize = method_name.find("$opt$reg$") != std::string::npos && run_optimizations_;
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +0000664
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000665 std::unique_ptr<CodeGenerator> codegen(
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000666 CodeGenerator::Create(graph,
667 instruction_set,
668 *compiler_driver->GetInstructionSetFeatures(),
669 compiler_driver->GetCompilerOptions()));
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000670 if (codegen.get() == nullptr) {
Zheng Xu5667fdb2014-10-23 18:29:55 +0800671 CHECK(!shouldCompile) << "Could not find code generator for optimizing compiler";
Calin Juravle2be39e02015-04-21 13:56:34 +0100672 MaybeRecordStat(MethodCompilationStat::kNotCompiledNoCodegen);
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000673 return nullptr;
674 }
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100675 codegen->GetAssembler()->cfi().SetEnabled(
David Srbecky8363c772015-05-28 16:12:43 +0100676 compiler_driver->GetCompilerOptions().GetGenerateDebugInfo());
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000677
David Brazdil69ba7b72015-06-23 18:27:30 +0100678 PassObserver pass_observer(graph,
679 method_name.c_str(),
680 codegen.get(),
681 visualizer_output_.get(),
682 compiler_driver);
David Brazdil5e8b1372015-01-23 14:39:08 +0000683
Nicolas Geoffray9523a3e2015-07-17 11:51:28 +0000684 const uint8_t* interpreter_metadata = nullptr;
685 {
686 ScopedObjectAccess soa(Thread::Current());
687 StackHandleScope<4> hs(soa.Self());
688 ClassLinker* class_linker = dex_compilation_unit.GetClassLinker();
689 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file)));
690 Handle<mirror::ClassLoader> loader(hs.NewHandle(
691 soa.Decode<mirror::ClassLoader*>(class_loader)));
692 ArtMethod* art_method = compiler_driver->ResolveMethod(
693 soa, dex_cache, loader, &dex_compilation_unit, method_idx, invoke_type);
694 // We may not get a method, for example if its class is erroneous.
695 // TODO: Clean this up, the compiler driver should just pass the ArtMethod to compile.
696 if (art_method != nullptr) {
697 interpreter_metadata = art_method->GetQuickenedInfo();
698 }
699 }
David Brazdil5e8b1372015-01-23 14:39:08 +0000700 HGraphBuilder builder(graph,
701 &dex_compilation_unit,
702 &dex_compilation_unit,
703 &dex_file,
704 compiler_driver,
Nicolas Geoffray9523a3e2015-07-17 11:51:28 +0000705 compilation_stats_.get(),
706 interpreter_metadata);
David Brazdil5e8b1372015-01-23 14:39:08 +0000707
708 VLOG(compiler) << "Building " << method_name;
709
David Brazdil809658e2015-02-05 11:34:02 +0000710 {
David Brazdil69ba7b72015-06-23 18:27:30 +0100711 PassScope scope(HGraphBuilder::kBuilderPassName, &pass_observer);
David Brazdil809658e2015-02-05 11:34:02 +0000712 if (!builder.BuildGraph(*code_item)) {
Nicolas Geoffray335005e2015-06-25 10:01:47 +0100713 DCHECK(!(IsCompilingWithCoreImage() && shouldCompile))
714 << "Could not build graph in optimizing compiler";
David Brazdil69ba7b72015-06-23 18:27:30 +0100715 pass_observer.SetGraphInBadState();
David Brazdil809658e2015-02-05 11:34:02 +0000716 return nullptr;
717 }
David Brazdil5e8b1372015-01-23 14:39:08 +0000718 }
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100719
Calin Juravle48c2b032014-12-09 18:11:36 +0000720 bool can_optimize = CanOptimize(*code_item);
721 bool can_allocate_registers = RegisterAllocator::CanAllocateRegistersFor(*graph, instruction_set);
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000722
723 // `run_optimizations_` is set explicitly (either through a compiler filter
724 // or the debuggable flag). If it is set, we can run baseline. Otherwise, we fall back
725 // to Quick.
Nicolas Geoffray2e7cd752015-07-10 11:38:52 +0100726 bool can_use_baseline = !run_optimizations_ && builder.CanUseBaselineForStringInit();
David Brazdilffee3d32015-07-06 11:48:53 +0100727 if (run_optimizations_ && can_allocate_registers) {
David Brazdil5e8b1372015-01-23 14:39:08 +0000728 VLOG(compiler) << "Optimizing " << method_name;
729
David Brazdil809658e2015-02-05 11:34:02 +0000730 {
David Brazdil69ba7b72015-06-23 18:27:30 +0100731 PassScope scope(SsaBuilder::kSsaBuilderPassName, &pass_observer);
David Brazdil809658e2015-02-05 11:34:02 +0000732 if (!graph->TryBuildingSsa()) {
733 // We could not transform the graph to SSA, bailout.
734 LOG(INFO) << "Skipping compilation of " << method_name << ": it contains a non natural loop";
Calin Juravle2be39e02015-04-21 13:56:34 +0100735 MaybeRecordStat(MethodCompilationStat::kNotCompiledCannotBuildSSA);
David Brazdilffee3d32015-07-06 11:48:53 +0100736 pass_observer.SetGraphInBadState();
David Brazdil809658e2015-02-05 11:34:02 +0000737 return nullptr;
738 }
Nicolas Geoffrayf5370122014-12-02 11:51:19 +0000739 }
David Brazdil5e8b1372015-01-23 14:39:08 +0000740
David Brazdilffee3d32015-07-06 11:48:53 +0100741 if (can_optimize) {
742 return CompileOptimized(graph,
743 codegen.get(),
744 compiler_driver,
745 dex_compilation_unit,
746 &pass_observer);
747 }
748 }
749
750 if (shouldOptimize && can_allocate_registers) {
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100751 LOG(FATAL) << "Could not allocate registers in optimizing compiler";
Zheng Xu5667fdb2014-10-23 18:29:55 +0800752 UNREACHABLE();
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000753 } else if (can_use_baseline) {
David Brazdil5e8b1372015-01-23 14:39:08 +0000754 VLOG(compiler) << "Compile baseline " << method_name;
Calin Juravle48c2b032014-12-09 18:11:36 +0000755
756 if (!run_optimizations_) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100757 MaybeRecordStat(MethodCompilationStat::kNotOptimizedDisabled);
Calin Juravle48c2b032014-12-09 18:11:36 +0000758 } else if (!can_optimize) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100759 MaybeRecordStat(MethodCompilationStat::kNotOptimizedTryCatch);
Calin Juravle48c2b032014-12-09 18:11:36 +0000760 } else if (!can_allocate_registers) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100761 MaybeRecordStat(MethodCompilationStat::kNotOptimizedRegisterAllocator);
Calin Juravle48c2b032014-12-09 18:11:36 +0000762 }
763
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100764 return CompileBaseline(codegen.get(),
765 compiler_driver,
766 dex_compilation_unit,
David Brazdil69ba7b72015-06-23 18:27:30 +0100767 &pass_observer);
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000768 } else {
769 return nullptr;
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100770 }
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000771}
772
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000773CompiledMethod* OptimizingCompiler::Compile(const DexFile::CodeItem* code_item,
774 uint32_t access_flags,
775 InvokeType invoke_type,
776 uint16_t class_def_idx,
777 uint32_t method_idx,
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100778 jobject jclass_loader,
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000779 const DexFile& dex_file) const {
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100780 CompilerDriver* compiler_driver = GetCompilerDriver();
781 CompiledMethod* method = nullptr;
Nicolas Geoffray4824c272015-06-24 15:53:03 +0100782 if (compiler_driver->IsMethodVerifiedWithoutFailures(method_idx, class_def_idx, dex_file) &&
783 !compiler_driver->GetVerifiedMethod(&dex_file, method_idx)->HasRuntimeThrow()) {
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100784 method = TryCompile(code_item, access_flags, invoke_type, class_def_idx,
785 method_idx, jclass_loader, dex_file);
786 } else {
787 if (compiler_driver->GetCompilerOptions().VerifyAtRuntime()) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100788 MaybeRecordStat(MethodCompilationStat::kNotCompiledVerifyAtRuntime);
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100789 } else {
Calin Juravle2be39e02015-04-21 13:56:34 +0100790 MaybeRecordStat(MethodCompilationStat::kNotCompiledClassNotVerified);
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100791 }
792 }
793
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000794 if (method != nullptr) {
795 return method;
796 }
Nicolas Geoffray12be74e2015-03-30 13:29:08 +0100797 method = delegate_->Compile(code_item, access_flags, invoke_type, class_def_idx, method_idx,
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100798 jclass_loader, dex_file);
Nicolas Geoffray12be74e2015-03-30 13:29:08 +0100799
800 if (method != nullptr) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100801 MaybeRecordStat(MethodCompilationStat::kCompiledQuick);
Nicolas Geoffray12be74e2015-03-30 13:29:08 +0100802 }
803 return method;
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000804}
805
Andreas Gampe53c913b2014-08-12 23:19:23 -0700806Compiler* CreateOptimizingCompiler(CompilerDriver* driver) {
807 return new OptimizingCompiler(driver);
808}
809
Nicolas Geoffray335005e2015-06-25 10:01:47 +0100810bool IsCompilingWithCoreImage() {
811 const std::string& image = Runtime::Current()->GetImageLocation();
812 return EndsWith(image, "core.art") || EndsWith(image, "core-optimizing.art");
813}
814
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000815} // namespace art