blob: b18c921b2cda31c8083f714437a471d11c6f0198 [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 */
Andreas Gampe53fcd0f2015-07-22 12:10:13 -070089static constexpr const char kStringFilter[] = "";
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010090
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) {
Andreas Gampe53fcd0f2015-07-22 12:10:13 -0700108 if (timing_logger_enabled_ || visualizer_enabled_) {
109 if (!IsVerboseMethod(compiler_driver, method_name)) {
110 timing_logger_enabled_ = visualizer_enabled_ = false;
111 }
112 if (visualizer_enabled_) {
113 visualizer_.PrintHeader(method_name_);
114 codegen->SetDisassemblyInformation(&disasm_info_);
115 }
David Brazdil62e074f2015-04-07 18:09:37 +0100116 }
David Brazdil5e8b1372015-01-23 14:39:08 +0000117 }
118
David Brazdil69ba7b72015-06-23 18:27:30 +0100119 ~PassObserver() {
David Brazdil5e8b1372015-01-23 14:39:08 +0000120 if (timing_logger_enabled_) {
David Brazdil5e8b1372015-01-23 14:39:08 +0000121 LOG(INFO) << "TIMINGS " << method_name_;
122 LOG(INFO) << Dumpable<TimingLogger>(timing_logger_);
123 }
124 }
125
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100126 void DumpDisassembly() const {
127 if (visualizer_enabled_) {
128 visualizer_.DumpGraphWithDisassembly();
129 }
130 }
131
David Brazdil69ba7b72015-06-23 18:27:30 +0100132 void SetGraphInBadState() { graph_in_bad_state_ = true; }
133
David Brazdil5e8b1372015-01-23 14:39:08 +0000134 private:
David Brazdil809658e2015-02-05 11:34:02 +0000135 void StartPass(const char* pass_name) {
136 // Dump graph first, then start timer.
137 if (visualizer_enabled_) {
David Brazdilffee3d32015-07-06 11:48:53 +0100138 visualizer_.DumpGraph(pass_name, /* is_after_pass */ false, graph_in_bad_state_);
David Brazdil809658e2015-02-05 11:34:02 +0000139 }
140 if (timing_logger_enabled_) {
141 timing_logger_.StartTiming(pass_name);
142 }
143 }
144
145 void EndPass(const char* pass_name) {
146 // Pause timer first, then dump graph.
147 if (timing_logger_enabled_) {
148 timing_logger_.EndTiming();
149 }
150 if (visualizer_enabled_) {
David Brazdilffee3d32015-07-06 11:48:53 +0100151 visualizer_.DumpGraph(pass_name, /* is_after_pass */ true, graph_in_bad_state_);
David Brazdil809658e2015-02-05 11:34:02 +0000152 }
David Brazdil69ba7b72015-06-23 18:27:30 +0100153
154 // Validate the HGraph if running in debug mode.
155 if (kIsDebugBuild) {
156 if (!graph_in_bad_state_) {
157 if (graph_->IsInSsaForm()) {
158 SSAChecker checker(graph_->GetArena(), graph_);
159 checker.Run();
160 if (!checker.IsValid()) {
161 LOG(FATAL) << "Error after " << pass_name << ": " << Dumpable<SSAChecker>(checker);
162 }
163 } else {
164 GraphChecker checker(graph_->GetArena(), graph_);
165 checker.Run();
166 if (!checker.IsValid()) {
167 LOG(FATAL) << "Error after " << pass_name << ": " << Dumpable<GraphChecker>(checker);
168 }
169 }
170 }
171 }
David Brazdil809658e2015-02-05 11:34:02 +0000172 }
173
Andreas Gampe53fcd0f2015-07-22 12:10:13 -0700174 static bool IsVerboseMethod(CompilerDriver* compiler_driver, const char* method_name) {
175 // Test an exact match to --verbose-methods. If verbose-methods is set, this overrides an
176 // empty kStringFilter matching all methods.
177 if (compiler_driver->GetCompilerOptions().HasVerboseMethods()) {
178 return compiler_driver->GetCompilerOptions().IsVerboseMethod(method_name);
179 }
180
181 // Test the kStringFilter sub-string. constexpr helper variable to silence unreachable-code
182 // warning when the string is empty.
183 constexpr bool kStringFilterEmpty = arraysize(kStringFilter) <= 1;
184 if (kStringFilterEmpty || strstr(method_name, kStringFilter) != nullptr) {
185 return true;
186 }
187
188 return false;
189 }
190
David Brazdil69ba7b72015-06-23 18:27:30 +0100191 HGraph* const graph_;
David Brazdil5e8b1372015-01-23 14:39:08 +0000192 const char* method_name_;
193
194 bool timing_logger_enabled_;
David Brazdil5e8b1372015-01-23 14:39:08 +0000195 TimingLogger timing_logger_;
196
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100197 DisassemblyInformation disasm_info_;
198
David Brazdil5e8b1372015-01-23 14:39:08 +0000199 bool visualizer_enabled_;
200 HGraphVisualizer visualizer_;
201
David Brazdil69ba7b72015-06-23 18:27:30 +0100202 // Flag to be set by the compiler if the pass failed and the graph is not
203 // expected to validate.
204 bool graph_in_bad_state_;
David Brazdil809658e2015-02-05 11:34:02 +0000205
David Brazdil69ba7b72015-06-23 18:27:30 +0100206 friend PassScope;
207
208 DISALLOW_COPY_AND_ASSIGN(PassObserver);
David Brazdil5e8b1372015-01-23 14:39:08 +0000209};
210
David Brazdil69ba7b72015-06-23 18:27:30 +0100211class PassScope : public ValueObject {
David Brazdil809658e2015-02-05 11:34:02 +0000212 public:
David Brazdil69ba7b72015-06-23 18:27:30 +0100213 PassScope(const char *pass_name, PassObserver* pass_observer)
David Brazdil809658e2015-02-05 11:34:02 +0000214 : pass_name_(pass_name),
David Brazdil69ba7b72015-06-23 18:27:30 +0100215 pass_observer_(pass_observer) {
216 pass_observer_->StartPass(pass_name_);
David Brazdil809658e2015-02-05 11:34:02 +0000217 }
218
David Brazdil69ba7b72015-06-23 18:27:30 +0100219 ~PassScope() {
220 pass_observer_->EndPass(pass_name_);
David Brazdil809658e2015-02-05 11:34:02 +0000221 }
222
223 private:
224 const char* const pass_name_;
David Brazdil69ba7b72015-06-23 18:27:30 +0100225 PassObserver* const pass_observer_;
David Brazdil809658e2015-02-05 11:34:02 +0000226};
227
Andreas Gampe53c913b2014-08-12 23:19:23 -0700228class OptimizingCompiler FINAL : public Compiler {
229 public:
230 explicit OptimizingCompiler(CompilerDriver* driver);
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100231 ~OptimizingCompiler();
Andreas Gampe53c913b2014-08-12 23:19:23 -0700232
233 bool CanCompileMethod(uint32_t method_idx, const DexFile& dex_file, CompilationUnit* cu) const
234 OVERRIDE;
235
236 CompiledMethod* Compile(const DexFile::CodeItem* code_item,
237 uint32_t access_flags,
238 InvokeType invoke_type,
239 uint16_t class_def_idx,
240 uint32_t method_idx,
241 jobject class_loader,
242 const DexFile& dex_file) const OVERRIDE;
243
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000244 CompiledMethod* TryCompile(const DexFile::CodeItem* code_item,
245 uint32_t access_flags,
246 InvokeType invoke_type,
247 uint16_t class_def_idx,
248 uint32_t method_idx,
249 jobject class_loader,
250 const DexFile& dex_file) const;
251
Andreas Gampe53c913b2014-08-12 23:19:23 -0700252 CompiledMethod* JniCompile(uint32_t access_flags,
253 uint32_t method_idx,
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000254 const DexFile& dex_file) const OVERRIDE {
255 return ArtQuickJniCompileMethod(GetCompilerDriver(), access_flags, method_idx, dex_file);
256 }
Andreas Gampe53c913b2014-08-12 23:19:23 -0700257
Mathieu Chartiere401d142015-04-22 13:56:20 -0700258 uintptr_t GetEntryPointOf(ArtMethod* method) const OVERRIDE
Mathieu Chartier90443472015-07-16 20:32:27 -0700259 SHARED_REQUIRES(Locks::mutator_lock_) {
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000260 return reinterpret_cast<uintptr_t>(method->GetEntryPointFromQuickCompiledCodePtrSize(
261 InstructionSetPointerSize(GetCompilerDriver()->GetInstructionSet())));
262 }
Andreas Gampe53c913b2014-08-12 23:19:23 -0700263
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000264 void InitCompilationUnit(CompilationUnit& cu) const OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700265
David Brazdilee690a32014-12-01 17:04:16 +0000266 void Init() OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700267
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000268 void UnInit() const OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700269
Calin Juravle2be39e02015-04-21 13:56:34 +0100270 void MaybeRecordStat(MethodCompilationStat compilation_stat) const {
271 if (compilation_stats_.get() != nullptr) {
272 compilation_stats_->RecordStat(compilation_stat);
273 }
274 }
275
Andreas Gampe53c913b2014-08-12 23:19:23 -0700276 private:
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100277 // Whether we should run any optimization or register allocation. If false, will
278 // just run the code generation after the graph was built.
279 const bool run_optimizations_;
Calin Juravle48c2b032014-12-09 18:11:36 +0000280
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000281 // Optimize and compile `graph`.
282 CompiledMethod* CompileOptimized(HGraph* graph,
283 CodeGenerator* codegen,
284 CompilerDriver* driver,
285 const DexCompilationUnit& dex_compilation_unit,
David Brazdil69ba7b72015-06-23 18:27:30 +0100286 PassObserver* pass_observer) const;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000287
288 // Just compile without doing optimizations.
289 CompiledMethod* CompileBaseline(CodeGenerator* codegen,
290 CompilerDriver* driver,
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100291 const DexCompilationUnit& dex_compilation_unit,
David Brazdil69ba7b72015-06-23 18:27:30 +0100292 PassObserver* pass_observer) const;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000293
Calin Juravle2be39e02015-04-21 13:56:34 +0100294 std::unique_ptr<OptimizingCompilerStats> compilation_stats_;
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100295
Andreas Gampe53c913b2014-08-12 23:19:23 -0700296 std::unique_ptr<std::ostream> visualizer_output_;
297
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000298 // Delegate to Quick in case the optimizing compiler cannot compile a method.
299 std::unique_ptr<Compiler> delegate_;
300
Andreas Gampe53c913b2014-08-12 23:19:23 -0700301 DISALLOW_COPY_AND_ASSIGN(OptimizingCompiler);
302};
303
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100304static const int kMaximumCompilationTimeBeforeWarning = 100; /* ms */
305
306OptimizingCompiler::OptimizingCompiler(CompilerDriver* driver)
307 : Compiler(driver, kMaximumCompilationTimeBeforeWarning),
308 run_optimizations_(
Nicolas Geoffraya3d90fb2015-03-16 13:55:40 +0000309 (driver->GetCompilerOptions().GetCompilerFilter() != CompilerOptions::kTime)
310 && !driver->GetCompilerOptions().GetDebuggable()),
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000311 delegate_(Create(driver, Compiler::Kind::kQuick)) {}
David Brazdilee690a32014-12-01 17:04:16 +0000312
313void OptimizingCompiler::Init() {
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000314 delegate_->Init();
David Brazdilee690a32014-12-01 17:04:16 +0000315 // Enable C1visualizer output. Must be done in Init() because the compiler
316 // driver is not fully initialized when passed to the compiler's constructor.
317 CompilerDriver* driver = GetCompilerDriver();
David Brazdil866c0312015-01-13 21:21:31 +0000318 const std::string cfg_file_name = driver->GetDumpCfgFileName();
319 if (!cfg_file_name.empty()) {
David Brazdilee690a32014-12-01 17:04:16 +0000320 CHECK_EQ(driver->GetThreadCount(), 1U)
321 << "Graph visualizer requires the compiler to run single-threaded. "
322 << "Invoke the compiler with '-j1'.";
David Brazdil866c0312015-01-13 21:21:31 +0000323 visualizer_output_.reset(new std::ofstream(cfg_file_name));
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100324 }
Calin Juravle2be39e02015-04-21 13:56:34 +0100325 if (driver->GetDumpStats()) {
326 compilation_stats_.reset(new OptimizingCompilerStats());
327 }
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100328}
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000329
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000330void OptimizingCompiler::UnInit() const {
331 delegate_->UnInit();
332}
333
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100334OptimizingCompiler::~OptimizingCompiler() {
Calin Juravle2be39e02015-04-21 13:56:34 +0100335 if (compilation_stats_.get() != nullptr) {
336 compilation_stats_->Log();
337 }
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100338}
339
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000340void OptimizingCompiler::InitCompilationUnit(CompilationUnit& cu) const {
341 delegate_->InitCompilationUnit(cu);
342}
343
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +0000344bool OptimizingCompiler::CanCompileMethod(uint32_t method_idx ATTRIBUTE_UNUSED,
345 const DexFile& dex_file ATTRIBUTE_UNUSED,
346 CompilationUnit* cu ATTRIBUTE_UNUSED) const {
347 return true;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700348}
349
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000350static bool IsInstructionSetSupported(InstructionSet instruction_set) {
351 return instruction_set == kArm64
352 || (instruction_set == kThumb2 && !kArm32QuickCodeUseSoftFloat)
Alexey Frunze4dda3372015-06-01 18:31:49 -0700353 || instruction_set == kMips64
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000354 || instruction_set == kX86
355 || instruction_set == kX86_64;
356}
357
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000358static bool CanOptimize(const DexFile::CodeItem& code_item) {
359 // TODO: We currently cannot optimize methods with try/catch.
360 return code_item.tries_size_ == 0;
361}
362
Calin Juravle10e244f2015-01-26 18:54:32 +0000363static void RunOptimizations(HOptimization* optimizations[],
364 size_t length,
David Brazdil69ba7b72015-06-23 18:27:30 +0100365 PassObserver* pass_observer) {
Calin Juravle10e244f2015-01-26 18:54:32 +0000366 for (size_t i = 0; i < length; ++i) {
David Brazdil69ba7b72015-06-23 18:27:30 +0100367 PassScope scope(optimizations[i]->GetPassName(), pass_observer);
368 optimizations[i]->Run();
Calin Juravle10e244f2015-01-26 18:54:32 +0000369 }
370}
371
Calin Juravleec748352015-07-29 13:52:12 +0100372static void MaybeRunInliner(HGraph* graph,
373 CompilerDriver* driver,
374 OptimizingCompilerStats* stats,
375 const DexCompilationUnit& dex_compilation_unit,
376 PassObserver* pass_observer,
377 StackHandleScopeCollection* handles) {
378 const CompilerOptions& compiler_options = driver->GetCompilerOptions();
379 bool should_inline = (compiler_options.GetInlineDepthLimit() > 0)
380 && (compiler_options.GetInlineMaxCodeUnits() > 0);
381 if (!should_inline) {
382 return;
383 }
384
385 ArenaAllocator* arena = graph->GetArena();
386 HInliner* inliner = new (arena) HInliner(
387 graph, dex_compilation_unit, dex_compilation_unit, driver, handles, stats);
388 ReferenceTypePropagation* type_propagation =
389 new (arena) ReferenceTypePropagation(graph, handles,
390 "reference_type_propagation_after_inlining");
391
392 HOptimization* optimizations[] = {
393 inliner,
394 // Run another type propagation phase: inlining will open up more opportunities
395 // to remove checkcast/instanceof and null checks.
396 type_propagation,
397 };
398
399 RunOptimizations(optimizations, arraysize(optimizations), pass_observer);
400}
401
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000402static void RunOptimizations(HGraph* graph,
403 CompilerDriver* driver,
404 OptimizingCompilerStats* stats,
405 const DexCompilationUnit& dex_compilation_unit,
David Brazdil69ba7b72015-06-23 18:27:30 +0100406 PassObserver* pass_observer,
Calin Juravleacf735c2015-02-12 15:25:22 +0000407 StackHandleScopeCollection* handles) {
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100408 ArenaAllocator* arena = graph->GetArena();
409 HDeadCodeElimination* dce1 = new (arena) HDeadCodeElimination(
410 graph, stats, HDeadCodeElimination::kInitialDeadCodeEliminationPassName);
411 HDeadCodeElimination* dce2 = new (arena) HDeadCodeElimination(
412 graph, stats, HDeadCodeElimination::kFinalDeadCodeEliminationPassName);
413 HConstantFolding* fold1 = new (arena) HConstantFolding(graph);
414 InstructionSimplifier* simplify1 = new (arena) InstructionSimplifier(graph, stats);
415 HBooleanSimplifier* boolean_simplify = new (arena) HBooleanSimplifier(graph);
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100416 HConstantFolding* fold2 = new (arena) HConstantFolding(graph, "constant_folding_after_inlining");
417 SideEffectsAnalysis* side_effects = new (arena) SideEffectsAnalysis(graph);
418 GVNOptimization* gvn = new (arena) GVNOptimization(graph, *side_effects);
419 LICM* licm = new (arena) LICM(graph, *side_effects);
420 BoundsCheckElimination* bce = new (arena) BoundsCheckElimination(graph);
421 ReferenceTypePropagation* type_propagation =
422 new (arena) ReferenceTypePropagation(graph, handles);
423 InstructionSimplifier* simplify2 = new (arena) InstructionSimplifier(
424 graph, stats, "instruction_simplifier_after_types");
425 InstructionSimplifier* simplify3 = new (arena) InstructionSimplifier(
Nicolas Geoffrayb2bdfce2015-06-18 15:46:47 +0100426 graph, stats, "instruction_simplifier_after_bce");
Nicolas Geoffrayb2bdfce2015-06-18 15:46:47 +0100427 InstructionSimplifier* simplify4 = new (arena) InstructionSimplifier(
428 graph, stats, "instruction_simplifier_before_codegen");
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000429
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100430 IntrinsicsRecognizer* intrinsics = new (arena) IntrinsicsRecognizer(graph, driver);
Andreas Gampe71fb52f2014-12-29 17:43:08 -0800431
Calin Juravleec748352015-07-29 13:52:12 +0100432 HOptimization* optimizations1[] = {
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100433 intrinsics,
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100434 fold1,
435 simplify1,
436 type_propagation,
Nicolas Geoffray18e68732015-06-17 23:09:05 +0100437 dce1,
Calin Juravleec748352015-07-29 13:52:12 +0100438 simplify2
439 };
440
441 RunOptimizations(optimizations1, arraysize(optimizations1), pass_observer);
442
443 MaybeRunInliner(graph, driver, stats, dex_compilation_unit, pass_observer, handles);
444
445 HOptimization* optimizations2[] = {
David Brazdil46e2a392015-03-16 17:31:52 +0000446 // BooleanSimplifier depends on the InstructionSimplifier removing redundant
447 // suspend checks to recognize empty blocks.
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100448 boolean_simplify,
Calin Juravleec748352015-07-29 13:52:12 +0100449 fold2, // TODO: if we don't inline we can also skip fold2.
Vladimir Markoa3a3c592015-06-12 14:30:53 +0100450 side_effects,
451 gvn,
452 licm,
453 bce,
454 simplify3,
455 dce2,
Nicolas Geoffrayb2bdfce2015-06-18 15:46:47 +0100456 // The codegen has a few assumptions that only the instruction simplifier can
457 // satisfy. For example, the code generator does not expect to see a
458 // HTypeConversion from a type to the same type.
459 simplify4,
Nicolas Geoffray31596742014-11-24 15:28:45 +0000460 };
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000461
Calin Juravleec748352015-07-29 13:52:12 +0100462 RunOptimizations(optimizations2, arraysize(optimizations2), pass_observer);
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000463}
464
Nicolas Geoffray376b2bb2014-12-09 14:26:32 +0000465// The stack map we generate must be 4-byte aligned on ARM. Since existing
466// maps are generated alongside these stack maps, we must also align them.
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800467static ArrayRef<const uint8_t> AlignVectorSize(std::vector<uint8_t>& vector) {
Nicolas Geoffray376b2bb2014-12-09 14:26:32 +0000468 size_t size = vector.size();
469 size_t aligned_size = RoundUp(size, 4);
470 for (; size < aligned_size; ++size) {
471 vector.push_back(0);
472 }
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800473 return ArrayRef<const uint8_t>(vector);
Nicolas Geoffray376b2bb2014-12-09 14:26:32 +0000474}
475
Andreas Gampec2bcafe2015-04-10 10:49:32 -0700476static void AllocateRegisters(HGraph* graph,
477 CodeGenerator* codegen,
David Brazdil69ba7b72015-06-23 18:27:30 +0100478 PassObserver* pass_observer) {
Andreas Gampec2bcafe2015-04-10 10:49:32 -0700479 PrepareForRegisterAllocation(graph).Run();
Nicolas Geoffray0d9f17d2015-04-15 14:17:44 +0100480 SsaLivenessAnalysis liveness(graph, codegen);
Andreas Gampec2bcafe2015-04-10 10:49:32 -0700481 {
David Brazdil69ba7b72015-06-23 18:27:30 +0100482 PassScope scope(SsaLivenessAnalysis::kLivenessPassName, pass_observer);
Andreas Gampec2bcafe2015-04-10 10:49:32 -0700483 liveness.Analyze();
484 }
485 {
David Brazdil69ba7b72015-06-23 18:27:30 +0100486 PassScope scope(RegisterAllocator::kRegisterAllocatorPassName, pass_observer);
Andreas Gampec2bcafe2015-04-10 10:49:32 -0700487 RegisterAllocator(graph->GetArena(), codegen, liveness).AllocateRegisters();
488 }
489}
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000490
Vladimir Marko9b688a02015-05-06 14:12:42 +0100491static ArenaVector<LinkerPatch> EmitAndSortLinkerPatches(CodeGenerator* codegen) {
492 ArenaVector<LinkerPatch> linker_patches(codegen->GetGraph()->GetArena()->Adapter());
493 codegen->EmitLinkerPatches(&linker_patches);
494
495 // Sort patches by literal offset. Required for .oat_patches encoding.
496 std::sort(linker_patches.begin(), linker_patches.end(),
497 [](const LinkerPatch& lhs, const LinkerPatch& rhs) {
498 return lhs.LiteralOffset() < rhs.LiteralOffset();
499 });
500
501 return linker_patches;
502}
503
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000504CompiledMethod* OptimizingCompiler::CompileOptimized(HGraph* graph,
505 CodeGenerator* codegen,
506 CompilerDriver* compiler_driver,
507 const DexCompilationUnit& dex_compilation_unit,
David Brazdil69ba7b72015-06-23 18:27:30 +0100508 PassObserver* pass_observer) const {
Calin Juravleacf735c2015-02-12 15:25:22 +0000509 StackHandleScopeCollection handles(Thread::Current());
Calin Juravle2be39e02015-04-21 13:56:34 +0100510 RunOptimizations(graph, compiler_driver, compilation_stats_.get(),
David Brazdil69ba7b72015-06-23 18:27:30 +0100511 dex_compilation_unit, pass_observer, &handles);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000512
David Brazdil69ba7b72015-06-23 18:27:30 +0100513 AllocateRegisters(graph, codegen, pass_observer);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000514
515 CodeVectorAllocator allocator;
516 codegen->CompileOptimized(&allocator);
517
Vladimir Marko9b688a02015-05-06 14:12:42 +0100518 ArenaVector<LinkerPatch> linker_patches = EmitAndSortLinkerPatches(codegen);
519
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100520 DefaultSrcMap src_mapping_table;
David Srbecky8363c772015-05-28 16:12:43 +0100521 if (compiler_driver->GetCompilerOptions().GetGenerateDebugInfo()) {
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100522 codegen->BuildSourceMap(&src_mapping_table);
523 }
524
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000525 std::vector<uint8_t> stack_map;
526 codegen->BuildStackMaps(&stack_map);
527
Calin Juravle2be39e02015-04-21 13:56:34 +0100528 MaybeRecordStat(MethodCompilationStat::kCompiledOptimized);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000529
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100530 CompiledMethod* compiled_method = CompiledMethod::SwapAllocCompiledMethod(
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000531 compiler_driver,
532 codegen->GetInstructionSet(),
533 ArrayRef<const uint8_t>(allocator.GetMemory()),
Roland Levillainaa9b7c42015-02-17 15:40:09 +0000534 // Follow Quick's behavior and set the frame size to zero if it is
535 // considered "empty" (see the definition of
536 // art::CodeGenerator::HasEmptyFrame).
537 codegen->HasEmptyFrame() ? 0 : codegen->GetFrameSize(),
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000538 codegen->GetCoreSpillMask(),
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000539 codegen->GetFpuSpillMask(),
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100540 &src_mapping_table,
541 ArrayRef<const uint8_t>(), // mapping_table.
542 ArrayRef<const uint8_t>(stack_map),
543 ArrayRef<const uint8_t>(), // native_gc_map.
544 ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data()),
Vladimir Marko9b688a02015-05-06 14:12:42 +0100545 ArrayRef<const LinkerPatch>(linker_patches));
David Brazdil69ba7b72015-06-23 18:27:30 +0100546 pass_observer->DumpDisassembly();
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100547 return compiled_method;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000548}
549
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000550CompiledMethod* OptimizingCompiler::CompileBaseline(
551 CodeGenerator* codegen,
552 CompilerDriver* compiler_driver,
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100553 const DexCompilationUnit& dex_compilation_unit,
David Brazdil69ba7b72015-06-23 18:27:30 +0100554 PassObserver* pass_observer) const {
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000555 CodeVectorAllocator allocator;
556 codegen->CompileBaseline(&allocator);
557
Vladimir Marko9b688a02015-05-06 14:12:42 +0100558 ArenaVector<LinkerPatch> linker_patches = EmitAndSortLinkerPatches(codegen);
559
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000560 std::vector<uint8_t> mapping_table;
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100561 codegen->BuildMappingTable(&mapping_table);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000562 DefaultSrcMap src_mapping_table;
David Srbecky8363c772015-05-28 16:12:43 +0100563 if (compiler_driver->GetCompilerOptions().GetGenerateDebugInfo()) {
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100564 codegen->BuildSourceMap(&src_mapping_table);
565 }
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000566 std::vector<uint8_t> vmap_table;
567 codegen->BuildVMapTable(&vmap_table);
568 std::vector<uint8_t> gc_map;
569 codegen->BuildNativeGCMap(&gc_map, dex_compilation_unit);
570
Calin Juravle2be39e02015-04-21 13:56:34 +0100571 MaybeRecordStat(MethodCompilationStat::kCompiledBaseline);
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100572 CompiledMethod* compiled_method = CompiledMethod::SwapAllocCompiledMethod(
Roland Levillainaa9b7c42015-02-17 15:40:09 +0000573 compiler_driver,
574 codegen->GetInstructionSet(),
575 ArrayRef<const uint8_t>(allocator.GetMemory()),
576 // Follow Quick's behavior and set the frame size to zero if it is
577 // considered "empty" (see the definition of
578 // art::CodeGenerator::HasEmptyFrame).
579 codegen->HasEmptyFrame() ? 0 : codegen->GetFrameSize(),
580 codegen->GetCoreSpillMask(),
581 codegen->GetFpuSpillMask(),
582 &src_mapping_table,
583 AlignVectorSize(mapping_table),
584 AlignVectorSize(vmap_table),
585 AlignVectorSize(gc_map),
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100586 ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data()),
Vladimir Marko9b688a02015-05-06 14:12:42 +0100587 ArrayRef<const LinkerPatch>(linker_patches));
David Brazdil69ba7b72015-06-23 18:27:30 +0100588 pass_observer->DumpDisassembly();
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100589 return compiled_method;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000590}
591
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000592CompiledMethod* OptimizingCompiler::TryCompile(const DexFile::CodeItem* code_item,
593 uint32_t access_flags,
594 InvokeType invoke_type,
595 uint16_t class_def_idx,
596 uint32_t method_idx,
597 jobject class_loader,
598 const DexFile& dex_file) const {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700599 UNUSED(invoke_type);
David Brazdil5e8b1372015-01-23 14:39:08 +0000600 std::string method_name = PrettyMethod(method_idx, dex_file);
Calin Juravle2be39e02015-04-21 13:56:34 +0100601 MaybeRecordStat(MethodCompilationStat::kAttemptCompilation);
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000602 CompilerDriver* compiler_driver = GetCompilerDriver();
603 InstructionSet instruction_set = compiler_driver->GetInstructionSet();
Nicolas Geoffray8d486732014-07-16 16:23:40 +0100604 // Always use the thumb2 assembler: some runtime functionality (like implicit stack
605 // overflow checks) assume thumb2.
606 if (instruction_set == kArm) {
607 instruction_set = kThumb2;
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100608 }
609
610 // Do not attempt to compile on architectures we do not support.
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000611 if (!IsInstructionSetSupported(instruction_set)) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100612 MaybeRecordStat(MethodCompilationStat::kNotCompiledUnsupportedIsa);
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100613 return nullptr;
614 }
615
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000616 if (Compiler::IsPathologicalCase(*code_item, method_idx, dex_file)) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100617 MaybeRecordStat(MethodCompilationStat::kNotCompiledPathological);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000618 return nullptr;
619 }
620
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000621 // Implementation of the space filter: do not compile a code item whose size in
Nicolas Geoffray432bf3d2015-07-17 11:11:09 +0100622 // code units is bigger than 128.
623 static constexpr size_t kSpaceFilterOptimizingThreshold = 128;
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000624 const CompilerOptions& compiler_options = compiler_driver->GetCompilerOptions();
625 if ((compiler_options.GetCompilerFilter() == CompilerOptions::kSpace)
626 && (code_item->insns_size_in_code_units_ > kSpaceFilterOptimizingThreshold)) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100627 MaybeRecordStat(MethodCompilationStat::kNotCompiledSpaceFilter);
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000628 return nullptr;
629 }
630
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +0000631 DexCompilationUnit dex_compilation_unit(
Nicolas Geoffray9523a3e2015-07-17 11:51:28 +0000632 nullptr, class_loader, Runtime::Current()->GetClassLinker(), dex_file, code_item,
Ian Rogers72d32622014-05-06 16:20:11 -0700633 class_def_idx, method_idx, access_flags,
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000634 compiler_driver->GetVerifiedMethod(&dex_file, method_idx));
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +0000635
Calin Juravle3cd4fc82015-05-14 15:15:42 +0100636 bool requires_barrier = dex_compilation_unit.IsConstructor()
637 && compiler_driver->RequiresConstructorBarrier(Thread::Current(),
638 dex_compilation_unit.GetDexFile(),
639 dex_compilation_unit.GetClassDefIndex());
Nicolas Geoffray579ea7d2015-03-24 17:28:38 +0000640 ArenaAllocator arena(Runtime::Current()->GetArenaPool());
Nicolas Geoffraye0fe7ae2015-03-09 10:02:49 +0000641 HGraph* graph = new (&arena) HGraph(
Mathieu Chartiere401d142015-04-22 13:56:20 -0700642 &arena, dex_file, method_idx, requires_barrier, compiler_driver->GetInstructionSet(),
643 kInvalidInvokeType, compiler_driver->GetCompilerOptions().GetDebuggable());
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000644
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +0000645 // For testing purposes, we put a special marker on method names that should be compiled
646 // with this compiler. This makes sure we're not regressing.
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000647 bool shouldCompile = method_name.find("$opt$") != std::string::npos;
Nicolas Geoffraya3d90fb2015-03-16 13:55:40 +0000648 bool shouldOptimize = method_name.find("$opt$reg$") != std::string::npos && run_optimizations_;
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +0000649
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000650 std::unique_ptr<CodeGenerator> codegen(
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000651 CodeGenerator::Create(graph,
652 instruction_set,
653 *compiler_driver->GetInstructionSetFeatures(),
654 compiler_driver->GetCompilerOptions()));
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000655 if (codegen.get() == nullptr) {
Zheng Xu5667fdb2014-10-23 18:29:55 +0800656 CHECK(!shouldCompile) << "Could not find code generator for optimizing compiler";
Calin Juravle2be39e02015-04-21 13:56:34 +0100657 MaybeRecordStat(MethodCompilationStat::kNotCompiledNoCodegen);
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000658 return nullptr;
659 }
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100660 codegen->GetAssembler()->cfi().SetEnabled(
David Srbecky8363c772015-05-28 16:12:43 +0100661 compiler_driver->GetCompilerOptions().GetGenerateDebugInfo());
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000662
David Brazdil69ba7b72015-06-23 18:27:30 +0100663 PassObserver pass_observer(graph,
664 method_name.c_str(),
665 codegen.get(),
666 visualizer_output_.get(),
667 compiler_driver);
David Brazdil5e8b1372015-01-23 14:39:08 +0000668
Nicolas Geoffray9523a3e2015-07-17 11:51:28 +0000669 const uint8_t* interpreter_metadata = nullptr;
670 {
671 ScopedObjectAccess soa(Thread::Current());
672 StackHandleScope<4> hs(soa.Self());
673 ClassLinker* class_linker = dex_compilation_unit.GetClassLinker();
674 Handle<mirror::DexCache> dex_cache(hs.NewHandle(class_linker->FindDexCache(dex_file)));
675 Handle<mirror::ClassLoader> loader(hs.NewHandle(
676 soa.Decode<mirror::ClassLoader*>(class_loader)));
677 ArtMethod* art_method = compiler_driver->ResolveMethod(
678 soa, dex_cache, loader, &dex_compilation_unit, method_idx, invoke_type);
679 // We may not get a method, for example if its class is erroneous.
680 // TODO: Clean this up, the compiler driver should just pass the ArtMethod to compile.
681 if (art_method != nullptr) {
682 interpreter_metadata = art_method->GetQuickenedInfo();
683 }
684 }
David Brazdil5e8b1372015-01-23 14:39:08 +0000685 HGraphBuilder builder(graph,
686 &dex_compilation_unit,
687 &dex_compilation_unit,
688 &dex_file,
689 compiler_driver,
Nicolas Geoffray9523a3e2015-07-17 11:51:28 +0000690 compilation_stats_.get(),
691 interpreter_metadata);
David Brazdil5e8b1372015-01-23 14:39:08 +0000692
693 VLOG(compiler) << "Building " << method_name;
694
David Brazdil809658e2015-02-05 11:34:02 +0000695 {
David Brazdil69ba7b72015-06-23 18:27:30 +0100696 PassScope scope(HGraphBuilder::kBuilderPassName, &pass_observer);
David Brazdil809658e2015-02-05 11:34:02 +0000697 if (!builder.BuildGraph(*code_item)) {
Nicolas Geoffray335005e2015-06-25 10:01:47 +0100698 DCHECK(!(IsCompilingWithCoreImage() && shouldCompile))
699 << "Could not build graph in optimizing compiler";
David Brazdil69ba7b72015-06-23 18:27:30 +0100700 pass_observer.SetGraphInBadState();
David Brazdil809658e2015-02-05 11:34:02 +0000701 return nullptr;
702 }
David Brazdil5e8b1372015-01-23 14:39:08 +0000703 }
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100704
Calin Juravle48c2b032014-12-09 18:11:36 +0000705 bool can_optimize = CanOptimize(*code_item);
706 bool can_allocate_registers = RegisterAllocator::CanAllocateRegistersFor(*graph, instruction_set);
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000707
708 // `run_optimizations_` is set explicitly (either through a compiler filter
709 // or the debuggable flag). If it is set, we can run baseline. Otherwise, we fall back
710 // to Quick.
Nicolas Geoffray2e7cd752015-07-10 11:38:52 +0100711 bool can_use_baseline = !run_optimizations_ && builder.CanUseBaselineForStringInit();
David Brazdilffee3d32015-07-06 11:48:53 +0100712 if (run_optimizations_ && can_allocate_registers) {
David Brazdil5e8b1372015-01-23 14:39:08 +0000713 VLOG(compiler) << "Optimizing " << method_name;
714
David Brazdil809658e2015-02-05 11:34:02 +0000715 {
David Brazdil69ba7b72015-06-23 18:27:30 +0100716 PassScope scope(SsaBuilder::kSsaBuilderPassName, &pass_observer);
David Brazdil809658e2015-02-05 11:34:02 +0000717 if (!graph->TryBuildingSsa()) {
718 // We could not transform the graph to SSA, bailout.
719 LOG(INFO) << "Skipping compilation of " << method_name << ": it contains a non natural loop";
Calin Juravle2be39e02015-04-21 13:56:34 +0100720 MaybeRecordStat(MethodCompilationStat::kNotCompiledCannotBuildSSA);
David Brazdilffee3d32015-07-06 11:48:53 +0100721 pass_observer.SetGraphInBadState();
David Brazdil809658e2015-02-05 11:34:02 +0000722 return nullptr;
723 }
Nicolas Geoffrayf5370122014-12-02 11:51:19 +0000724 }
David Brazdil5e8b1372015-01-23 14:39:08 +0000725
David Brazdilffee3d32015-07-06 11:48:53 +0100726 if (can_optimize) {
727 return CompileOptimized(graph,
728 codegen.get(),
729 compiler_driver,
730 dex_compilation_unit,
731 &pass_observer);
732 }
733 }
734
735 if (shouldOptimize && can_allocate_registers) {
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100736 LOG(FATAL) << "Could not allocate registers in optimizing compiler";
Zheng Xu5667fdb2014-10-23 18:29:55 +0800737 UNREACHABLE();
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000738 } else if (can_use_baseline) {
David Brazdil5e8b1372015-01-23 14:39:08 +0000739 VLOG(compiler) << "Compile baseline " << method_name;
Calin Juravle48c2b032014-12-09 18:11:36 +0000740
741 if (!run_optimizations_) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100742 MaybeRecordStat(MethodCompilationStat::kNotOptimizedDisabled);
Calin Juravle48c2b032014-12-09 18:11:36 +0000743 } else if (!can_optimize) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100744 MaybeRecordStat(MethodCompilationStat::kNotOptimizedTryCatch);
Calin Juravle48c2b032014-12-09 18:11:36 +0000745 } else if (!can_allocate_registers) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100746 MaybeRecordStat(MethodCompilationStat::kNotOptimizedRegisterAllocator);
Calin Juravle48c2b032014-12-09 18:11:36 +0000747 }
748
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100749 return CompileBaseline(codegen.get(),
750 compiler_driver,
751 dex_compilation_unit,
David Brazdil69ba7b72015-06-23 18:27:30 +0100752 &pass_observer);
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000753 } else {
754 return nullptr;
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100755 }
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000756}
757
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000758CompiledMethod* OptimizingCompiler::Compile(const DexFile::CodeItem* code_item,
759 uint32_t access_flags,
760 InvokeType invoke_type,
761 uint16_t class_def_idx,
762 uint32_t method_idx,
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100763 jobject jclass_loader,
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000764 const DexFile& dex_file) const {
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100765 CompilerDriver* compiler_driver = GetCompilerDriver();
766 CompiledMethod* method = nullptr;
Nicolas Geoffray4824c272015-06-24 15:53:03 +0100767 if (compiler_driver->IsMethodVerifiedWithoutFailures(method_idx, class_def_idx, dex_file) &&
768 !compiler_driver->GetVerifiedMethod(&dex_file, method_idx)->HasRuntimeThrow()) {
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100769 method = TryCompile(code_item, access_flags, invoke_type, class_def_idx,
770 method_idx, jclass_loader, dex_file);
771 } else {
772 if (compiler_driver->GetCompilerOptions().VerifyAtRuntime()) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100773 MaybeRecordStat(MethodCompilationStat::kNotCompiledVerifyAtRuntime);
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100774 } else {
Calin Juravle2be39e02015-04-21 13:56:34 +0100775 MaybeRecordStat(MethodCompilationStat::kNotCompiledClassNotVerified);
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100776 }
777 }
778
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000779 if (method != nullptr) {
780 return method;
781 }
Nicolas Geoffray12be74e2015-03-30 13:29:08 +0100782 method = delegate_->Compile(code_item, access_flags, invoke_type, class_def_idx, method_idx,
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100783 jclass_loader, dex_file);
Nicolas Geoffray12be74e2015-03-30 13:29:08 +0100784
785 if (method != nullptr) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100786 MaybeRecordStat(MethodCompilationStat::kCompiledQuick);
Nicolas Geoffray12be74e2015-03-30 13:29:08 +0100787 }
788 return method;
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000789}
790
Andreas Gampe53c913b2014-08-12 23:19:23 -0700791Compiler* CreateOptimizingCompiler(CompilerDriver* driver) {
792 return new OptimizingCompiler(driver);
793}
794
Nicolas Geoffray335005e2015-06-25 10:01:47 +0100795bool IsCompilingWithCoreImage() {
796 const std::string& image = Runtime::Current()->GetImageLocation();
797 return EndsWith(image, "core.art") || EndsWith(image, "core-optimizing.art");
798}
799
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000800} // namespace art