blob: 2a7699105c5dadd66684ac9bdee1e9721983539f [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
Calin Juravle10e244f2015-01-26 18:54:32 +0000362static void RunOptimizations(HOptimization* optimizations[],
363 size_t length,
David Brazdil69ba7b72015-06-23 18:27:30 +0100364 PassObserver* pass_observer) {
Calin Juravle10e244f2015-01-26 18:54:32 +0000365 for (size_t i = 0; i < length; ++i) {
David Brazdil69ba7b72015-06-23 18:27:30 +0100366 PassScope scope(optimizations[i]->GetPassName(), pass_observer);
367 optimizations[i]->Run();
Calin Juravle10e244f2015-01-26 18:54:32 +0000368 }
369}
370
Calin Juravleec748352015-07-29 13:52:12 +0100371static void MaybeRunInliner(HGraph* graph,
372 CompilerDriver* driver,
373 OptimizingCompilerStats* stats,
374 const DexCompilationUnit& dex_compilation_unit,
375 PassObserver* pass_observer,
376 StackHandleScopeCollection* handles) {
377 const CompilerOptions& compiler_options = driver->GetCompilerOptions();
378 bool should_inline = (compiler_options.GetInlineDepthLimit() > 0)
379 && (compiler_options.GetInlineMaxCodeUnits() > 0);
380 if (!should_inline) {
381 return;
382 }
383
384 ArenaAllocator* arena = graph->GetArena();
385 HInliner* inliner = new (arena) HInliner(
386 graph, dex_compilation_unit, dex_compilation_unit, driver, handles, stats);
387 ReferenceTypePropagation* type_propagation =
388 new (arena) ReferenceTypePropagation(graph, handles,
389 "reference_type_propagation_after_inlining");
390
391 HOptimization* optimizations[] = {
392 inliner,
393 // Run another type propagation phase: inlining will open up more opportunities
394 // to remove checkcast/instanceof and null checks.
395 type_propagation,
396 };
397
398 RunOptimizations(optimizations, arraysize(optimizations), pass_observer);
399}
400
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100401static void RunArchOptimizations(InstructionSet instruction_set,
402 HGraph* graph,
403 OptimizingCompilerStats* stats,
404 PassObserver* pass_observer) {
405 ArenaAllocator* arena = graph->GetArena();
406 switch (instruction_set) {
407#ifdef ART_ENABLE_CODEGEN_arm64
408 case kArm64: {
409 arm64::InstructionSimplifierArm64* simplifier =
410 new (arena) arm64::InstructionSimplifierArm64(graph, stats);
411 SideEffectsAnalysis* side_effects = new (arena) SideEffectsAnalysis(graph);
412 GVNOptimization* gvn = new (arena) GVNOptimization(graph, *side_effects, "GVN_after_arch");
413 HOptimization* arm64_optimizations[] = {
414 simplifier,
415 side_effects,
416 gvn
417 };
418 RunOptimizations(arm64_optimizations, arraysize(arm64_optimizations), pass_observer);
419 break;
420 }
421#endif
422 default:
423 break;
424 }
425}
426
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000427static void RunOptimizations(HGraph* graph,
428 CompilerDriver* driver,
429 OptimizingCompilerStats* stats,
430 const DexCompilationUnit& dex_compilation_unit,
David Brazdil69ba7b72015-06-23 18:27:30 +0100431 PassObserver* pass_observer,
Calin Juravleacf735c2015-02-12 15:25:22 +0000432 StackHandleScopeCollection* handles) {
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100433 ArenaAllocator* arena = graph->GetArena();
434 HDeadCodeElimination* dce1 = new (arena) HDeadCodeElimination(
435 graph, stats, HDeadCodeElimination::kInitialDeadCodeEliminationPassName);
436 HDeadCodeElimination* dce2 = new (arena) HDeadCodeElimination(
437 graph, stats, HDeadCodeElimination::kFinalDeadCodeEliminationPassName);
438 HConstantFolding* fold1 = new (arena) HConstantFolding(graph);
439 InstructionSimplifier* simplify1 = new (arena) InstructionSimplifier(graph, stats);
440 HBooleanSimplifier* boolean_simplify = new (arena) HBooleanSimplifier(graph);
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100441 HConstantFolding* fold2 = new (arena) HConstantFolding(graph, "constant_folding_after_inlining");
442 SideEffectsAnalysis* side_effects = new (arena) SideEffectsAnalysis(graph);
443 GVNOptimization* gvn = new (arena) GVNOptimization(graph, *side_effects);
444 LICM* licm = new (arena) LICM(graph, *side_effects);
445 BoundsCheckElimination* bce = new (arena) BoundsCheckElimination(graph);
446 ReferenceTypePropagation* type_propagation =
447 new (arena) ReferenceTypePropagation(graph, handles);
448 InstructionSimplifier* simplify2 = new (arena) InstructionSimplifier(
449 graph, stats, "instruction_simplifier_after_types");
450 InstructionSimplifier* simplify3 = new (arena) InstructionSimplifier(
Nicolas Geoffrayb2bdfce2015-06-18 15:46:47 +0100451 graph, stats, "instruction_simplifier_after_bce");
Nicolas Geoffrayb2bdfce2015-06-18 15:46:47 +0100452 InstructionSimplifier* simplify4 = new (arena) InstructionSimplifier(
453 graph, stats, "instruction_simplifier_before_codegen");
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000454
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100455 IntrinsicsRecognizer* intrinsics = new (arena) IntrinsicsRecognizer(graph, driver);
Andreas Gampe71fb52f2014-12-29 17:43:08 -0800456
Calin Juravleec748352015-07-29 13:52:12 +0100457 HOptimization* optimizations1[] = {
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100458 intrinsics,
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100459 fold1,
460 simplify1,
461 type_propagation,
Nicolas Geoffray18e68732015-06-17 23:09:05 +0100462 dce1,
Calin Juravleec748352015-07-29 13:52:12 +0100463 simplify2
464 };
465
466 RunOptimizations(optimizations1, arraysize(optimizations1), pass_observer);
467
David Brazdilbbd733e2015-08-18 17:48:17 +0100468 if (graph->HasTryCatch()) {
469 // TODO: Update the optimizations below to work correctly under try/catch
470 // semantics. The optimizations above suffice for running codegen
471 // in the meanwhile.
472 return;
473 }
474
Calin Juravleec748352015-07-29 13:52:12 +0100475 MaybeRunInliner(graph, driver, stats, dex_compilation_unit, pass_observer, handles);
476
477 HOptimization* optimizations2[] = {
David Brazdil46e2a392015-03-16 17:31:52 +0000478 // BooleanSimplifier depends on the InstructionSimplifier removing redundant
479 // suspend checks to recognize empty blocks.
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100480 boolean_simplify,
Calin Juravleec748352015-07-29 13:52:12 +0100481 fold2, // TODO: if we don't inline we can also skip fold2.
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100482 side_effects,
483 gvn,
484 licm,
485 bce,
486 simplify3,
487 dce2,
Nicolas Geoffrayb2bdfce2015-06-18 15:46:47 +0100488 // The codegen has a few assumptions that only the instruction simplifier can
489 // satisfy. For example, the code generator does not expect to see a
490 // HTypeConversion from a type to the same type.
491 simplify4,
Nicolas Geoffray31596742014-11-24 15:28:45 +0000492 };
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000493
Calin Juravleec748352015-07-29 13:52:12 +0100494 RunOptimizations(optimizations2, arraysize(optimizations2), pass_observer);
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100495
496 RunArchOptimizations(driver->GetInstructionSet(), graph, stats, pass_observer);
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000497}
498
Nicolas Geoffray376b2bb2014-12-09 14:26:32 +0000499// The stack map we generate must be 4-byte aligned on ARM. Since existing
500// maps are generated alongside these stack maps, we must also align them.
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800501static ArrayRef<const uint8_t> AlignVectorSize(std::vector<uint8_t>& vector) {
Nicolas Geoffray376b2bb2014-12-09 14:26:32 +0000502 size_t size = vector.size();
503 size_t aligned_size = RoundUp(size, 4);
504 for (; size < aligned_size; ++size) {
505 vector.push_back(0);
506 }
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800507 return ArrayRef<const uint8_t>(vector);
Nicolas Geoffray376b2bb2014-12-09 14:26:32 +0000508}
509
Andreas Gampec2bcafe2015-04-10 10:49:32 -0700510static void AllocateRegisters(HGraph* graph,
511 CodeGenerator* codegen,
David Brazdil69ba7b72015-06-23 18:27:30 +0100512 PassObserver* pass_observer) {
Andreas Gampec2bcafe2015-04-10 10:49:32 -0700513 PrepareForRegisterAllocation(graph).Run();
Nicolas Geoffray0d9f17d2015-04-15 14:17:44 +0100514 SsaLivenessAnalysis liveness(graph, codegen);
Andreas Gampec2bcafe2015-04-10 10:49:32 -0700515 {
David Brazdil69ba7b72015-06-23 18:27:30 +0100516 PassScope scope(SsaLivenessAnalysis::kLivenessPassName, pass_observer);
Andreas Gampec2bcafe2015-04-10 10:49:32 -0700517 liveness.Analyze();
518 }
519 {
David Brazdil69ba7b72015-06-23 18:27:30 +0100520 PassScope scope(RegisterAllocator::kRegisterAllocatorPassName, pass_observer);
Andreas Gampec2bcafe2015-04-10 10:49:32 -0700521 RegisterAllocator(graph->GetArena(), codegen, liveness).AllocateRegisters();
522 }
523}
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000524
Vladimir Marko58155012015-08-19 12:49:41 +0000525static ArenaVector<LinkerPatch> EmitAndSortLinkerPatches(CodeGenerator* codegen) {
526 ArenaVector<LinkerPatch> linker_patches(codegen->GetGraph()->GetArena()->Adapter());
527 codegen->EmitLinkerPatches(&linker_patches);
528
529 // Sort patches by literal offset. Required for .oat_patches encoding.
530 std::sort(linker_patches.begin(), linker_patches.end(),
531 [](const LinkerPatch& lhs, const LinkerPatch& rhs) {
532 return lhs.LiteralOffset() < rhs.LiteralOffset();
533 });
534
535 return linker_patches;
536}
537
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000538CompiledMethod* OptimizingCompiler::CompileOptimized(HGraph* graph,
539 CodeGenerator* codegen,
540 CompilerDriver* compiler_driver,
541 const DexCompilationUnit& dex_compilation_unit,
David Brazdil69ba7b72015-06-23 18:27:30 +0100542 PassObserver* pass_observer) const {
Calin Juravleacf735c2015-02-12 15:25:22 +0000543 StackHandleScopeCollection handles(Thread::Current());
Calin Juravle2be39e02015-04-21 13:56:34 +0100544 RunOptimizations(graph, compiler_driver, compilation_stats_.get(),
David Brazdil69ba7b72015-06-23 18:27:30 +0100545 dex_compilation_unit, pass_observer, &handles);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000546
David Brazdilbbd733e2015-08-18 17:48:17 +0100547 if (graph->HasTryCatch()) {
548 return nullptr;
549 }
550
David Brazdil69ba7b72015-06-23 18:27:30 +0100551 AllocateRegisters(graph, codegen, pass_observer);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000552
553 CodeVectorAllocator allocator;
554 codegen->CompileOptimized(&allocator);
555
Vladimir Marko58155012015-08-19 12:49:41 +0000556 ArenaVector<LinkerPatch> linker_patches = EmitAndSortLinkerPatches(codegen);
557
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100558 DefaultSrcMap src_mapping_table;
David Srbecky8363c772015-05-28 16:12:43 +0100559 if (compiler_driver->GetCompilerOptions().GetGenerateDebugInfo()) {
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100560 codegen->BuildSourceMap(&src_mapping_table);
561 }
562
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000563 std::vector<uint8_t> stack_map;
564 codegen->BuildStackMaps(&stack_map);
565
Calin Juravle2be39e02015-04-21 13:56:34 +0100566 MaybeRecordStat(MethodCompilationStat::kCompiledOptimized);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000567
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100568 CompiledMethod* compiled_method = CompiledMethod::SwapAllocCompiledMethod(
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000569 compiler_driver,
570 codegen->GetInstructionSet(),
571 ArrayRef<const uint8_t>(allocator.GetMemory()),
Roland Levillainaa9b7c42015-02-17 15:40:09 +0000572 // Follow Quick's behavior and set the frame size to zero if it is
573 // considered "empty" (see the definition of
574 // art::CodeGenerator::HasEmptyFrame).
575 codegen->HasEmptyFrame() ? 0 : codegen->GetFrameSize(),
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000576 codegen->GetCoreSpillMask(),
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000577 codegen->GetFpuSpillMask(),
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100578 &src_mapping_table,
579 ArrayRef<const uint8_t>(), // mapping_table.
580 ArrayRef<const uint8_t>(stack_map),
581 ArrayRef<const uint8_t>(), // native_gc_map.
582 ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data()),
Vladimir Marko58155012015-08-19 12:49:41 +0000583 ArrayRef<const LinkerPatch>(linker_patches));
David Brazdil69ba7b72015-06-23 18:27:30 +0100584 pass_observer->DumpDisassembly();
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100585 return compiled_method;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000586}
587
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000588CompiledMethod* OptimizingCompiler::CompileBaseline(
589 CodeGenerator* codegen,
590 CompilerDriver* compiler_driver,
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100591 const DexCompilationUnit& dex_compilation_unit,
David Brazdil69ba7b72015-06-23 18:27:30 +0100592 PassObserver* pass_observer) const {
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000593 CodeVectorAllocator allocator;
594 codegen->CompileBaseline(&allocator);
595
Vladimir Marko58155012015-08-19 12:49:41 +0000596 ArenaVector<LinkerPatch> linker_patches = EmitAndSortLinkerPatches(codegen);
597
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000598 std::vector<uint8_t> mapping_table;
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100599 codegen->BuildMappingTable(&mapping_table);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000600 DefaultSrcMap src_mapping_table;
David Srbecky8363c772015-05-28 16:12:43 +0100601 if (compiler_driver->GetCompilerOptions().GetGenerateDebugInfo()) {
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100602 codegen->BuildSourceMap(&src_mapping_table);
603 }
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000604 std::vector<uint8_t> vmap_table;
605 codegen->BuildVMapTable(&vmap_table);
606 std::vector<uint8_t> gc_map;
607 codegen->BuildNativeGCMap(&gc_map, dex_compilation_unit);
608
Calin Juravle2be39e02015-04-21 13:56:34 +0100609 MaybeRecordStat(MethodCompilationStat::kCompiledBaseline);
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100610 CompiledMethod* compiled_method = CompiledMethod::SwapAllocCompiledMethod(
Roland Levillainaa9b7c42015-02-17 15:40:09 +0000611 compiler_driver,
612 codegen->GetInstructionSet(),
613 ArrayRef<const uint8_t>(allocator.GetMemory()),
614 // Follow Quick's behavior and set the frame size to zero if it is
615 // considered "empty" (see the definition of
616 // art::CodeGenerator::HasEmptyFrame).
617 codegen->HasEmptyFrame() ? 0 : codegen->GetFrameSize(),
618 codegen->GetCoreSpillMask(),
619 codegen->GetFpuSpillMask(),
620 &src_mapping_table,
621 AlignVectorSize(mapping_table),
622 AlignVectorSize(vmap_table),
623 AlignVectorSize(gc_map),
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100624 ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data()),
Vladimir Marko58155012015-08-19 12:49:41 +0000625 ArrayRef<const LinkerPatch>(linker_patches));
David Brazdil69ba7b72015-06-23 18:27:30 +0100626 pass_observer->DumpDisassembly();
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100627 return compiled_method;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000628}
629
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000630CompiledMethod* OptimizingCompiler::TryCompile(const DexFile::CodeItem* code_item,
631 uint32_t access_flags,
632 InvokeType invoke_type,
633 uint16_t class_def_idx,
634 uint32_t method_idx,
635 jobject class_loader,
636 const DexFile& dex_file) const {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700637 UNUSED(invoke_type);
David Brazdil5e8b1372015-01-23 14:39:08 +0000638 std::string method_name = PrettyMethod(method_idx, dex_file);
Calin Juravle2be39e02015-04-21 13:56:34 +0100639 MaybeRecordStat(MethodCompilationStat::kAttemptCompilation);
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000640 CompilerDriver* compiler_driver = GetCompilerDriver();
641 InstructionSet instruction_set = compiler_driver->GetInstructionSet();
Nicolas Geoffray8d486732014-07-16 16:23:40 +0100642 // Always use the thumb2 assembler: some runtime functionality (like implicit stack
643 // overflow checks) assume thumb2.
644 if (instruction_set == kArm) {
645 instruction_set = kThumb2;
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100646 }
647
648 // Do not attempt to compile on architectures we do not support.
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000649 if (!IsInstructionSetSupported(instruction_set)) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100650 MaybeRecordStat(MethodCompilationStat::kNotCompiledUnsupportedIsa);
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100651 return nullptr;
652 }
653
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000654 if (Compiler::IsPathologicalCase(*code_item, method_idx, dex_file)) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100655 MaybeRecordStat(MethodCompilationStat::kNotCompiledPathological);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000656 return nullptr;
657 }
658
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000659 // Implementation of the space filter: do not compile a code item whose size in
Nicolas Geoffray432bf3d2015-07-17 11:11:09 +0100660 // code units is bigger than 128.
661 static constexpr size_t kSpaceFilterOptimizingThreshold = 128;
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000662 const CompilerOptions& compiler_options = compiler_driver->GetCompilerOptions();
663 if ((compiler_options.GetCompilerFilter() == CompilerOptions::kSpace)
664 && (code_item->insns_size_in_code_units_ > kSpaceFilterOptimizingThreshold)) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100665 MaybeRecordStat(MethodCompilationStat::kNotCompiledSpaceFilter);
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000666 return nullptr;
667 }
668
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +0000669 DexCompilationUnit dex_compilation_unit(
Nicolas Geoffray9523a3e2015-07-17 11:51:28 +0000670 nullptr, class_loader, Runtime::Current()->GetClassLinker(), dex_file, code_item,
Ian Rogers72d32622014-05-06 16:20:11 -0700671 class_def_idx, method_idx, access_flags,
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000672 compiler_driver->GetVerifiedMethod(&dex_file, method_idx));
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +0000673
Calin Juravle3cd4fc82015-05-14 15:15:42 +0100674 bool requires_barrier = dex_compilation_unit.IsConstructor()
675 && compiler_driver->RequiresConstructorBarrier(Thread::Current(),
676 dex_compilation_unit.GetDexFile(),
677 dex_compilation_unit.GetClassDefIndex());
Nicolas Geoffray579ea7d2015-03-24 17:28:38 +0000678 ArenaAllocator arena(Runtime::Current()->GetArenaPool());
Nicolas Geoffraye0fe7ae2015-03-09 10:02:49 +0000679 HGraph* graph = new (&arena) HGraph(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700680 &arena, dex_file, method_idx, requires_barrier, compiler_driver->GetInstructionSet(),
681 kInvalidInvokeType, compiler_driver->GetCompilerOptions().GetDebuggable());
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000682
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +0000683 // For testing purposes, we put a special marker on method names that should be compiled
684 // with this compiler. This makes sure we're not regressing.
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000685 bool shouldCompile = method_name.find("$opt$") != std::string::npos;
Nicolas Geoffraya3d90fb2015-03-16 13:55:40 +0000686 bool shouldOptimize = method_name.find("$opt$reg$") != std::string::npos && run_optimizations_;
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +0000687
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000688 std::unique_ptr<CodeGenerator> codegen(
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000689 CodeGenerator::Create(graph,
690 instruction_set,
691 *compiler_driver->GetInstructionSetFeatures(),
692 compiler_driver->GetCompilerOptions()));
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000693 if (codegen.get() == nullptr) {
Zheng Xu5667fdb2014-10-23 18:29:55 +0800694 CHECK(!shouldCompile) << "Could not find code generator for optimizing compiler";
Calin Juravle2be39e02015-04-21 13:56:34 +0100695 MaybeRecordStat(MethodCompilationStat::kNotCompiledNoCodegen);
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000696 return nullptr;
697 }
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100698 codegen->GetAssembler()->cfi().SetEnabled(
David Srbecky8363c772015-05-28 16:12:43 +0100699 compiler_driver->GetCompilerOptions().GetGenerateDebugInfo());
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000700
David Brazdil69ba7b72015-06-23 18:27:30 +0100701 PassObserver pass_observer(graph,
702 method_name.c_str(),
703 codegen.get(),
704 visualizer_output_.get(),
705 compiler_driver);
David Brazdil5e8b1372015-01-23 14:39:08 +0000706
Nicolas Geoffray9523a3e2015-07-17 11:51:28 +0000707 const uint8_t* interpreter_metadata = nullptr;
708 {
709 ScopedObjectAccess soa(Thread::Current());
710 StackHandleScope<4> hs(soa.Self());
711 ClassLinker* class_linker = dex_compilation_unit.GetClassLinker();
712 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file)));
713 Handle<mirror::ClassLoader> loader(hs.NewHandle(
714 soa.Decode<mirror::ClassLoader*>(class_loader)));
715 ArtMethod* art_method = compiler_driver->ResolveMethod(
716 soa, dex_cache, loader, &dex_compilation_unit, method_idx, invoke_type);
717 // We may not get a method, for example if its class is erroneous.
718 // TODO: Clean this up, the compiler driver should just pass the ArtMethod to compile.
719 if (art_method != nullptr) {
720 interpreter_metadata = art_method->GetQuickenedInfo();
721 }
722 }
David Brazdil5e8b1372015-01-23 14:39:08 +0000723 HGraphBuilder builder(graph,
724 &dex_compilation_unit,
725 &dex_compilation_unit,
726 &dex_file,
727 compiler_driver,
Nicolas Geoffray9523a3e2015-07-17 11:51:28 +0000728 compilation_stats_.get(),
729 interpreter_metadata);
David Brazdil5e8b1372015-01-23 14:39:08 +0000730
731 VLOG(compiler) << "Building " << method_name;
732
David Brazdil809658e2015-02-05 11:34:02 +0000733 {
David Brazdil69ba7b72015-06-23 18:27:30 +0100734 PassScope scope(HGraphBuilder::kBuilderPassName, &pass_observer);
David Brazdil809658e2015-02-05 11:34:02 +0000735 if (!builder.BuildGraph(*code_item)) {
Nicolas Geoffray335005e2015-06-25 10:01:47 +0100736 DCHECK(!(IsCompilingWithCoreImage() && shouldCompile))
737 << "Could not build graph in optimizing compiler";
David Brazdil69ba7b72015-06-23 18:27:30 +0100738 pass_observer.SetGraphInBadState();
David Brazdil809658e2015-02-05 11:34:02 +0000739 return nullptr;
740 }
David Brazdil5e8b1372015-01-23 14:39:08 +0000741 }
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100742
Calin Juravle48c2b032014-12-09 18:11:36 +0000743 bool can_allocate_registers = RegisterAllocator::CanAllocateRegistersFor(*graph, instruction_set);
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000744
745 // `run_optimizations_` is set explicitly (either through a compiler filter
746 // or the debuggable flag). If it is set, we can run baseline. Otherwise, we fall back
747 // to Quick.
Nicolas Geoffray2e7cd752015-07-10 11:38:52 +0100748 bool can_use_baseline = !run_optimizations_ && builder.CanUseBaselineForStringInit();
David Brazdilffee3d32015-07-06 11:48:53 +0100749 if (run_optimizations_ && can_allocate_registers) {
David Brazdil5e8b1372015-01-23 14:39:08 +0000750 VLOG(compiler) << "Optimizing " << method_name;
751
David Brazdil809658e2015-02-05 11:34:02 +0000752 {
David Brazdil69ba7b72015-06-23 18:27:30 +0100753 PassScope scope(SsaBuilder::kSsaBuilderPassName, &pass_observer);
David Brazdil809658e2015-02-05 11:34:02 +0000754 if (!graph->TryBuildingSsa()) {
755 // We could not transform the graph to SSA, bailout.
756 LOG(INFO) << "Skipping compilation of " << method_name << ": it contains a non natural loop";
Calin Juravle2be39e02015-04-21 13:56:34 +0100757 MaybeRecordStat(MethodCompilationStat::kNotCompiledCannotBuildSSA);
David Brazdilffee3d32015-07-06 11:48:53 +0100758 pass_observer.SetGraphInBadState();
David Brazdil809658e2015-02-05 11:34:02 +0000759 return nullptr;
760 }
Nicolas Geoffrayf5370122014-12-02 11:51:19 +0000761 }
David Brazdil5e8b1372015-01-23 14:39:08 +0000762
David Brazdilbbd733e2015-08-18 17:48:17 +0100763 return CompileOptimized(graph,
764 codegen.get(),
765 compiler_driver,
766 dex_compilation_unit,
767 &pass_observer);
768 } else if (shouldOptimize && can_allocate_registers) {
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100769 LOG(FATAL) << "Could not allocate registers in optimizing compiler";
Zheng Xu5667fdb2014-10-23 18:29:55 +0800770 UNREACHABLE();
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000771 } else if (can_use_baseline) {
David Brazdil5e8b1372015-01-23 14:39:08 +0000772 VLOG(compiler) << "Compile baseline " << method_name;
Calin Juravle48c2b032014-12-09 18:11:36 +0000773
774 if (!run_optimizations_) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100775 MaybeRecordStat(MethodCompilationStat::kNotOptimizedDisabled);
Calin Juravle48c2b032014-12-09 18:11:36 +0000776 } else if (!can_allocate_registers) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100777 MaybeRecordStat(MethodCompilationStat::kNotOptimizedRegisterAllocator);
Calin Juravle48c2b032014-12-09 18:11:36 +0000778 }
779
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100780 return CompileBaseline(codegen.get(),
781 compiler_driver,
782 dex_compilation_unit,
David Brazdil69ba7b72015-06-23 18:27:30 +0100783 &pass_observer);
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000784 } else {
785 return nullptr;
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100786 }
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000787}
788
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000789CompiledMethod* OptimizingCompiler::Compile(const DexFile::CodeItem* code_item,
790 uint32_t access_flags,
791 InvokeType invoke_type,
792 uint16_t class_def_idx,
793 uint32_t method_idx,
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100794 jobject jclass_loader,
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000795 const DexFile& dex_file) const {
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100796 CompilerDriver* compiler_driver = GetCompilerDriver();
797 CompiledMethod* method = nullptr;
Andreas Gampe0760a812015-08-26 17:12:51 -0700798 DCHECK(!compiler_driver->GetVerifiedMethod(&dex_file, method_idx)->HasRuntimeThrow());
799 if (compiler_driver->IsMethodVerifiedWithoutFailures(method_idx, class_def_idx, dex_file)) {
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100800 method = TryCompile(code_item, access_flags, invoke_type, class_def_idx,
801 method_idx, jclass_loader, dex_file);
802 } else {
803 if (compiler_driver->GetCompilerOptions().VerifyAtRuntime()) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100804 MaybeRecordStat(MethodCompilationStat::kNotCompiledVerifyAtRuntime);
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100805 } else {
Calin Juravle2be39e02015-04-21 13:56:34 +0100806 MaybeRecordStat(MethodCompilationStat::kNotCompiledClassNotVerified);
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100807 }
808 }
809
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000810 if (method != nullptr) {
811 return method;
812 }
Nicolas Geoffray12be74e2015-03-30 13:29:08 +0100813 method = delegate_->Compile(code_item, access_flags, invoke_type, class_def_idx, method_idx,
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100814 jclass_loader, dex_file);
Nicolas Geoffray12be74e2015-03-30 13:29:08 +0100815
816 if (method != nullptr) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100817 MaybeRecordStat(MethodCompilationStat::kCompiledQuick);
Nicolas Geoffray12be74e2015-03-30 13:29:08 +0100818 }
819 return method;
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000820}
821
Andreas Gampe53c913b2014-08-12 23:19:23 -0700822Compiler* CreateOptimizingCompiler(CompilerDriver* driver) {
823 return new OptimizingCompiler(driver);
824}
825
Nicolas Geoffray335005e2015-06-25 10:01:47 +0100826bool IsCompilingWithCoreImage() {
827 const std::string& image = Runtime::Current()->GetImageLocation();
828 return EndsWith(image, "core.art") || EndsWith(image, "core-optimizing.art");
829}
830
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000831} // namespace art