blob: e67bebd5d8a1d74b88b794b0299cf76cbcb59e17 [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 Chartierb666f482015-02-18 14:33:14 -080022#include "base/arena_allocator.h"
David Brazdil5e8b1372015-01-23 14:39:08 +000023#include "base/dumpable.h"
24#include "base/timing_logger.h"
David Brazdil46e2a392015-03-16 17:31:52 +000025#include "boolean_simplifier.h"
Mingyao Yangf384f882014-10-22 16:08:18 -070026#include "bounds_check_elimination.h"
Nicolas Geoffray787c3072014-03-17 10:20:19 +000027#include "builder.h"
28#include "code_generator.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000029#include "compiled_method.h"
Andreas Gampe53c913b2014-08-12 23:19:23 -070030#include "compiler.h"
Roland Levillain75be2832014-10-17 17:02:00 +010031#include "constant_folding.h"
32#include "dead_code_elimination.h"
Andreas Gampe71fb52f2014-12-29 17:43:08 -080033#include "dex/quick/dex_file_to_method_inliner_map.h"
Nicolas Geoffray787c3072014-03-17 10:20:19 +000034#include "driver/compiler_driver.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000035#include "driver/compiler_options.h"
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000036#include "driver/dex_compilation_unit.h"
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +000037#include "elf_writer_quick.h"
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010038#include "graph_visualizer.h"
Nicolas Geoffrayd31cf3d2014-09-08 17:30:24 +010039#include "gvn.h"
Nicolas Geoffraye53798a2014-12-01 10:31:54 +000040#include "inliner.h"
Nicolas Geoffray3c049742014-09-24 18:10:46 +010041#include "instruction_simplifier.h"
Andreas Gampe71fb52f2014-12-29 17:43:08 -080042#include "intrinsics.h"
Nicolas Geoffray82091da2015-01-26 10:02:45 +000043#include "licm.h"
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +000044#include "jni/quick/jni_compiler.h"
45#include "mirror/art_method-inl.h"
Nicolas Geoffray787c3072014-03-17 10:20:19 +000046#include "nodes.h"
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +010047#include "prepare_for_register_allocation.h"
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010048#include "register_allocator.h"
Nicolas Geoffray827eedb2015-01-26 15:18:36 +000049#include "side_effects_analysis.h"
Nicolas Geoffray31596742014-11-24 15:28:45 +000050#include "ssa_builder.h"
Nicolas Geoffray7dc206a2014-07-11 09:49:49 +010051#include "ssa_phi_elimination.h"
Nicolas Geoffray804d0932014-05-02 08:46:00 +010052#include "ssa_liveness_analysis.h"
Calin Juravle10e244f2015-01-26 18:54:32 +000053#include "reference_type_propagation.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000054
55namespace art {
56
Nicolas Geoffray787c3072014-03-17 10:20:19 +000057/**
58 * Used by the code generator, to allocate the code in a vector.
59 */
60class CodeVectorAllocator FINAL : public CodeAllocator {
61 public:
Andreas Gampe7c3952f2015-02-19 18:21:24 -080062 CodeVectorAllocator() : size_(0) {}
Nicolas Geoffray787c3072014-03-17 10:20:19 +000063
64 virtual uint8_t* Allocate(size_t size) {
65 size_ = size;
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000066 memory_.resize(size);
Nicolas Geoffray787c3072014-03-17 10:20:19 +000067 return &memory_[0];
68 }
69
70 size_t GetSize() const { return size_; }
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000071 const std::vector<uint8_t>& GetMemory() const { return memory_; }
Nicolas Geoffray787c3072014-03-17 10:20:19 +000072
73 private:
74 std::vector<uint8_t> memory_;
75 size_t size_;
76
77 DISALLOW_COPY_AND_ASSIGN(CodeVectorAllocator);
78};
79
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010080/**
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010081 * Filter to apply to the visualizer. Methods whose name contain that filter will
David Brazdilee690a32014-12-01 17:04:16 +000082 * be dumped.
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010083 */
84static const char* kStringFilter = "";
85
David Brazdil809658e2015-02-05 11:34:02 +000086class PassInfo;
87
David Brazdil5e8b1372015-01-23 14:39:08 +000088class PassInfoPrinter : public ValueObject {
89 public:
90 PassInfoPrinter(HGraph* graph,
91 const char* method_name,
92 const CodeGenerator& codegen,
93 std::ostream* visualizer_output,
David Brazdil809658e2015-02-05 11:34:02 +000094 CompilerDriver* compiler_driver)
David Brazdil5e8b1372015-01-23 14:39:08 +000095 : method_name_(method_name),
David Brazdil809658e2015-02-05 11:34:02 +000096 timing_logger_enabled_(compiler_driver->GetDumpPasses()),
David Brazdil5e8b1372015-01-23 14:39:08 +000097 timing_logger_(method_name, true, true),
David Brazdil809658e2015-02-05 11:34:02 +000098 visualizer_enabled_(!compiler_driver->GetDumpCfgFileName().empty()),
David Brazdil5e8b1372015-01-23 14:39:08 +000099 visualizer_(visualizer_output, graph, codegen, method_name_) {
100 if (strstr(method_name, kStringFilter) == nullptr) {
101 timing_logger_enabled_ = visualizer_enabled_ = false;
102 }
103 }
104
David Brazdil5e8b1372015-01-23 14:39:08 +0000105 ~PassInfoPrinter() {
106 if (timing_logger_enabled_) {
David Brazdil5e8b1372015-01-23 14:39:08 +0000107 LOG(INFO) << "TIMINGS " << method_name_;
108 LOG(INFO) << Dumpable<TimingLogger>(timing_logger_);
109 }
110 }
111
112 private:
David Brazdil809658e2015-02-05 11:34:02 +0000113 void StartPass(const char* pass_name) {
114 // Dump graph first, then start timer.
115 if (visualizer_enabled_) {
116 visualizer_.DumpGraph(pass_name, /* is_after_pass */ false);
117 }
118 if (timing_logger_enabled_) {
119 timing_logger_.StartTiming(pass_name);
120 }
121 }
122
123 void EndPass(const char* pass_name) {
124 // Pause timer first, then dump graph.
125 if (timing_logger_enabled_) {
126 timing_logger_.EndTiming();
127 }
128 if (visualizer_enabled_) {
129 visualizer_.DumpGraph(pass_name, /* is_after_pass */ true);
130 }
131 }
132
David Brazdil5e8b1372015-01-23 14:39:08 +0000133 const char* method_name_;
134
135 bool timing_logger_enabled_;
David Brazdil5e8b1372015-01-23 14:39:08 +0000136 TimingLogger timing_logger_;
137
138 bool visualizer_enabled_;
139 HGraphVisualizer visualizer_;
140
David Brazdil809658e2015-02-05 11:34:02 +0000141 friend PassInfo;
142
David Brazdil5e8b1372015-01-23 14:39:08 +0000143 DISALLOW_COPY_AND_ASSIGN(PassInfoPrinter);
144};
145
David Brazdil809658e2015-02-05 11:34:02 +0000146class PassInfo : public ValueObject {
147 public:
148 PassInfo(const char *pass_name, PassInfoPrinter* pass_info_printer)
149 : pass_name_(pass_name),
150 pass_info_printer_(pass_info_printer) {
151 pass_info_printer_->StartPass(pass_name_);
152 }
153
154 ~PassInfo() {
155 pass_info_printer_->EndPass(pass_name_);
156 }
157
158 private:
159 const char* const pass_name_;
160 PassInfoPrinter* const pass_info_printer_;
161};
162
Andreas Gampe53c913b2014-08-12 23:19:23 -0700163class OptimizingCompiler FINAL : public Compiler {
164 public:
165 explicit OptimizingCompiler(CompilerDriver* driver);
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100166 ~OptimizingCompiler();
Andreas Gampe53c913b2014-08-12 23:19:23 -0700167
168 bool CanCompileMethod(uint32_t method_idx, const DexFile& dex_file, CompilationUnit* cu) const
169 OVERRIDE;
170
171 CompiledMethod* Compile(const DexFile::CodeItem* code_item,
172 uint32_t access_flags,
173 InvokeType invoke_type,
174 uint16_t class_def_idx,
175 uint32_t method_idx,
176 jobject class_loader,
177 const DexFile& dex_file) const OVERRIDE;
178
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000179 CompiledMethod* TryCompile(const DexFile::CodeItem* code_item,
180 uint32_t access_flags,
181 InvokeType invoke_type,
182 uint16_t class_def_idx,
183 uint32_t method_idx,
184 jobject class_loader,
185 const DexFile& dex_file) const;
186
Andreas Gampe53c913b2014-08-12 23:19:23 -0700187 CompiledMethod* JniCompile(uint32_t access_flags,
188 uint32_t method_idx,
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000189 const DexFile& dex_file) const OVERRIDE {
190 return ArtQuickJniCompileMethod(GetCompilerDriver(), access_flags, method_idx, dex_file);
191 }
Andreas Gampe53c913b2014-08-12 23:19:23 -0700192
193 uintptr_t GetEntryPointOf(mirror::ArtMethod* method) const OVERRIDE
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000194 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
195 return reinterpret_cast<uintptr_t>(method->GetEntryPointFromQuickCompiledCodePtrSize(
196 InstructionSetPointerSize(GetCompilerDriver()->GetInstructionSet())));
197 }
Andreas Gampe53c913b2014-08-12 23:19:23 -0700198
199 bool WriteElf(art::File* file,
200 OatWriter* oat_writer,
201 const std::vector<const art::DexFile*>& dex_files,
202 const std::string& android_root,
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000203 bool is_host) const OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Andreas Gampe3c54b002015-04-07 16:09:30 -0700204 if (kProduce64BitELFFiles && Is64BitInstructionSet(GetCompilerDriver()->GetInstructionSet())) {
205 return art::ElfWriterQuick64::Create(file, oat_writer, dex_files, android_root, is_host,
206 *GetCompilerDriver());
207 } else {
208 return art::ElfWriterQuick32::Create(file, oat_writer, dex_files, android_root, is_host,
209 *GetCompilerDriver());
210 }
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000211 }
Andreas Gampe53c913b2014-08-12 23:19:23 -0700212
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000213 void InitCompilationUnit(CompilationUnit& cu) const OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700214
David Brazdilee690a32014-12-01 17:04:16 +0000215 void Init() OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700216
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000217 void UnInit() const OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700218
219 private:
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100220 // Whether we should run any optimization or register allocation. If false, will
221 // just run the code generation after the graph was built.
222 const bool run_optimizations_;
Calin Juravle48c2b032014-12-09 18:11:36 +0000223
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000224 // Optimize and compile `graph`.
225 CompiledMethod* CompileOptimized(HGraph* graph,
226 CodeGenerator* codegen,
227 CompilerDriver* driver,
Calin Juravleacf735c2015-02-12 15:25:22 +0000228 const DexFile& dex_file,
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000229 const DexCompilationUnit& dex_compilation_unit,
David Brazdil5e8b1372015-01-23 14:39:08 +0000230 PassInfoPrinter* pass_info) const;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000231
232 // Just compile without doing optimizations.
233 CompiledMethod* CompileBaseline(CodeGenerator* codegen,
234 CompilerDriver* driver,
235 const DexCompilationUnit& dex_compilation_unit) const;
236
Calin Juravle48c2b032014-12-09 18:11:36 +0000237 mutable OptimizingCompilerStats compilation_stats_;
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100238
Andreas Gampe53c913b2014-08-12 23:19:23 -0700239 std::unique_ptr<std::ostream> visualizer_output_;
240
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000241 // Delegate to Quick in case the optimizing compiler cannot compile a method.
242 std::unique_ptr<Compiler> delegate_;
243
Andreas Gampe53c913b2014-08-12 23:19:23 -0700244 DISALLOW_COPY_AND_ASSIGN(OptimizingCompiler);
245};
246
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100247static const int kMaximumCompilationTimeBeforeWarning = 100; /* ms */
248
249OptimizingCompiler::OptimizingCompiler(CompilerDriver* driver)
250 : Compiler(driver, kMaximumCompilationTimeBeforeWarning),
251 run_optimizations_(
Nicolas Geoffraya3d90fb2015-03-16 13:55:40 +0000252 (driver->GetCompilerOptions().GetCompilerFilter() != CompilerOptions::kTime)
253 && !driver->GetCompilerOptions().GetDebuggable()),
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000254 compilation_stats_(),
255 delegate_(Create(driver, Compiler::Kind::kQuick)) {}
David Brazdilee690a32014-12-01 17:04:16 +0000256
257void OptimizingCompiler::Init() {
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000258 delegate_->Init();
David Brazdilee690a32014-12-01 17:04:16 +0000259 // Enable C1visualizer output. Must be done in Init() because the compiler
260 // driver is not fully initialized when passed to the compiler's constructor.
261 CompilerDriver* driver = GetCompilerDriver();
David Brazdil866c0312015-01-13 21:21:31 +0000262 const std::string cfg_file_name = driver->GetDumpCfgFileName();
263 if (!cfg_file_name.empty()) {
David Brazdilee690a32014-12-01 17:04:16 +0000264 CHECK_EQ(driver->GetThreadCount(), 1U)
265 << "Graph visualizer requires the compiler to run single-threaded. "
266 << "Invoke the compiler with '-j1'.";
David Brazdil866c0312015-01-13 21:21:31 +0000267 visualizer_output_.reset(new std::ofstream(cfg_file_name));
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100268 }
269}
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000270
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000271void OptimizingCompiler::UnInit() const {
272 delegate_->UnInit();
273}
274
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100275OptimizingCompiler::~OptimizingCompiler() {
Calin Juravle48c2b032014-12-09 18:11:36 +0000276 compilation_stats_.Log();
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100277}
278
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000279void OptimizingCompiler::InitCompilationUnit(CompilationUnit& cu) const {
280 delegate_->InitCompilationUnit(cu);
281}
282
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +0000283bool OptimizingCompiler::CanCompileMethod(uint32_t method_idx ATTRIBUTE_UNUSED,
284 const DexFile& dex_file ATTRIBUTE_UNUSED,
285 CompilationUnit* cu ATTRIBUTE_UNUSED) const {
286 return true;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700287}
288
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000289static bool IsInstructionSetSupported(InstructionSet instruction_set) {
290 return instruction_set == kArm64
291 || (instruction_set == kThumb2 && !kArm32QuickCodeUseSoftFloat)
292 || instruction_set == kX86
293 || instruction_set == kX86_64;
294}
295
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000296static bool CanOptimize(const DexFile::CodeItem& code_item) {
297 // TODO: We currently cannot optimize methods with try/catch.
298 return code_item.tries_size_ == 0;
299}
300
Calin Juravle10e244f2015-01-26 18:54:32 +0000301static void RunOptimizations(HOptimization* optimizations[],
302 size_t length,
David Brazdil809658e2015-02-05 11:34:02 +0000303 PassInfoPrinter* pass_info_printer) {
Calin Juravle10e244f2015-01-26 18:54:32 +0000304 for (size_t i = 0; i < length; ++i) {
305 HOptimization* optimization = optimizations[i];
David Brazdil809658e2015-02-05 11:34:02 +0000306 {
307 PassInfo pass_info(optimization->GetPassName(), pass_info_printer);
308 optimization->Run();
309 }
Calin Juravle10e244f2015-01-26 18:54:32 +0000310 optimization->Check();
311 }
312}
313
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000314static void RunOptimizations(HGraph* graph,
315 CompilerDriver* driver,
316 OptimizingCompilerStats* stats,
Calin Juravleacf735c2015-02-12 15:25:22 +0000317 const DexFile& dex_file,
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000318 const DexCompilationUnit& dex_compilation_unit,
Calin Juravleacf735c2015-02-12 15:25:22 +0000319 PassInfoPrinter* pass_info_printer,
320 StackHandleScopeCollection* handles) {
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000321 HDeadCodeElimination dce(graph);
Nicolas Geoffray9ee66182015-01-16 12:35:40 +0000322 HConstantFolding fold1(graph);
Calin Juravleacf735c2015-02-12 15:25:22 +0000323 InstructionSimplifier simplify1(graph, stats);
David Brazdil46e2a392015-03-16 17:31:52 +0000324 HBooleanSimplifier boolean_not(graph);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000325
Nicolas Geoffray9437b782015-03-25 10:08:51 +0000326 HInliner inliner(graph, dex_compilation_unit, dex_compilation_unit, driver, stats);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000327
Nicolas Geoffray9ee66182015-01-16 12:35:40 +0000328 HConstantFolding fold2(graph);
Nicolas Geoffray86dde162015-01-26 12:54:33 +0000329 SideEffectsAnalysis side_effects(graph);
330 GVNOptimization gvn(graph, side_effects);
Nicolas Geoffray82091da2015-01-26 10:02:45 +0000331 LICM licm(graph, side_effects);
Mingyao Yangf384f882014-10-22 16:08:18 -0700332 BoundsCheckElimination bce(graph);
Calin Juravleacf735c2015-02-12 15:25:22 +0000333 ReferenceTypePropagation type_propagation(graph, dex_file, dex_compilation_unit, handles);
334 InstructionSimplifier simplify2(graph, stats, "instruction_simplifier_after_types");
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000335
Andreas Gampe71fb52f2014-12-29 17:43:08 -0800336 IntrinsicsRecognizer intrinsics(graph, dex_compilation_unit.GetDexFile(), driver);
337
Nicolas Geoffray31596742014-11-24 15:28:45 +0000338 HOptimization* optimizations[] = {
Andreas Gampe71fb52f2014-12-29 17:43:08 -0800339 &intrinsics,
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000340 &dce,
Nicolas Geoffray9ee66182015-01-16 12:35:40 +0000341 &fold1,
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000342 &simplify1,
David Brazdil46e2a392015-03-16 17:31:52 +0000343 // BooleanSimplifier depends on the InstructionSimplifier removing redundant
344 // suspend checks to recognize empty blocks.
345 &boolean_not,
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000346 &inliner,
Nicolas Geoffray9ee66182015-01-16 12:35:40 +0000347 &fold2,
Nicolas Geoffray86dde162015-01-26 12:54:33 +0000348 &side_effects,
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000349 &gvn,
Nicolas Geoffray82091da2015-01-26 10:02:45 +0000350 &licm,
Mingyao Yangf384f882014-10-22 16:08:18 -0700351 &bce,
Calin Juravle10e244f2015-01-26 18:54:32 +0000352 &type_propagation,
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000353 &simplify2
Nicolas Geoffray31596742014-11-24 15:28:45 +0000354 };
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000355
David Brazdil809658e2015-02-05 11:34:02 +0000356 RunOptimizations(optimizations, arraysize(optimizations), pass_info_printer);
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000357}
358
Nicolas Geoffray376b2bb2014-12-09 14:26:32 +0000359// The stack map we generate must be 4-byte aligned on ARM. Since existing
360// maps are generated alongside these stack maps, we must also align them.
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800361static ArrayRef<const uint8_t> AlignVectorSize(std::vector<uint8_t>& vector) {
Nicolas Geoffray376b2bb2014-12-09 14:26:32 +0000362 size_t size = vector.size();
363 size_t aligned_size = RoundUp(size, 4);
364 for (; size < aligned_size; ++size) {
365 vector.push_back(0);
366 }
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800367 return ArrayRef<const uint8_t>(vector);
Nicolas Geoffray376b2bb2014-12-09 14:26:32 +0000368}
369
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000370
371CompiledMethod* OptimizingCompiler::CompileOptimized(HGraph* graph,
372 CodeGenerator* codegen,
373 CompilerDriver* compiler_driver,
Calin Juravleacf735c2015-02-12 15:25:22 +0000374 const DexFile& dex_file,
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000375 const DexCompilationUnit& dex_compilation_unit,
David Brazdil809658e2015-02-05 11:34:02 +0000376 PassInfoPrinter* pass_info_printer) const {
Calin Juravleacf735c2015-02-12 15:25:22 +0000377 StackHandleScopeCollection handles(Thread::Current());
378 RunOptimizations(graph, compiler_driver, &compilation_stats_,
379 dex_file, dex_compilation_unit, pass_info_printer, &handles);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000380
381 PrepareForRegisterAllocation(graph).Run();
382 SsaLivenessAnalysis liveness(*graph, codegen);
David Brazdil809658e2015-02-05 11:34:02 +0000383 {
Andreas Gampe7c3952f2015-02-19 18:21:24 -0800384 PassInfo pass_info(SsaLivenessAnalysis::kLivenessPassName, pass_info_printer);
David Brazdil809658e2015-02-05 11:34:02 +0000385 liveness.Analyze();
386 }
387 {
Andreas Gampe7c3952f2015-02-19 18:21:24 -0800388 PassInfo pass_info(RegisterAllocator::kRegisterAllocatorPassName, pass_info_printer);
David Brazdil809658e2015-02-05 11:34:02 +0000389 RegisterAllocator(graph->GetArena(), codegen, liveness).AllocateRegisters();
390 }
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000391
392 CodeVectorAllocator allocator;
393 codegen->CompileOptimized(&allocator);
394
395 std::vector<uint8_t> stack_map;
396 codegen->BuildStackMaps(&stack_map);
397
398 compilation_stats_.RecordStat(MethodCompilationStat::kCompiledOptimized);
399
400 return CompiledMethod::SwapAllocCompiledMethodStackMap(
401 compiler_driver,
402 codegen->GetInstructionSet(),
403 ArrayRef<const uint8_t>(allocator.GetMemory()),
Roland Levillainaa9b7c42015-02-17 15:40:09 +0000404 // Follow Quick's behavior and set the frame size to zero if it is
405 // considered "empty" (see the definition of
406 // art::CodeGenerator::HasEmptyFrame).
407 codegen->HasEmptyFrame() ? 0 : codegen->GetFrameSize(),
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000408 codegen->GetCoreSpillMask(),
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000409 codegen->GetFpuSpillMask(),
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000410 ArrayRef<const uint8_t>(stack_map));
411}
412
413
414CompiledMethod* OptimizingCompiler::CompileBaseline(
415 CodeGenerator* codegen,
416 CompilerDriver* compiler_driver,
417 const DexCompilationUnit& dex_compilation_unit) const {
418 CodeVectorAllocator allocator;
419 codegen->CompileBaseline(&allocator);
420
421 std::vector<uint8_t> mapping_table;
422 DefaultSrcMap src_mapping_table;
423 bool include_debug_symbol = compiler_driver->GetCompilerOptions().GetIncludeDebugSymbols();
424 codegen->BuildMappingTable(&mapping_table, include_debug_symbol ? &src_mapping_table : nullptr);
425 std::vector<uint8_t> vmap_table;
426 codegen->BuildVMapTable(&vmap_table);
427 std::vector<uint8_t> gc_map;
428 codegen->BuildNativeGCMap(&gc_map, dex_compilation_unit);
429
430 compilation_stats_.RecordStat(MethodCompilationStat::kCompiledBaseline);
Roland Levillainaa9b7c42015-02-17 15:40:09 +0000431 return CompiledMethod::SwapAllocCompiledMethod(
432 compiler_driver,
433 codegen->GetInstructionSet(),
434 ArrayRef<const uint8_t>(allocator.GetMemory()),
435 // Follow Quick's behavior and set the frame size to zero if it is
436 // considered "empty" (see the definition of
437 // art::CodeGenerator::HasEmptyFrame).
438 codegen->HasEmptyFrame() ? 0 : codegen->GetFrameSize(),
439 codegen->GetCoreSpillMask(),
440 codegen->GetFpuSpillMask(),
441 &src_mapping_table,
442 AlignVectorSize(mapping_table),
443 AlignVectorSize(vmap_table),
444 AlignVectorSize(gc_map),
445 ArrayRef<const uint8_t>());
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000446}
447
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000448CompiledMethod* OptimizingCompiler::TryCompile(const DexFile::CodeItem* code_item,
449 uint32_t access_flags,
450 InvokeType invoke_type,
451 uint16_t class_def_idx,
452 uint32_t method_idx,
453 jobject class_loader,
454 const DexFile& dex_file) const {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700455 UNUSED(invoke_type);
David Brazdil5e8b1372015-01-23 14:39:08 +0000456 std::string method_name = PrettyMethod(method_idx, dex_file);
Calin Juravle48c2b032014-12-09 18:11:36 +0000457 compilation_stats_.RecordStat(MethodCompilationStat::kAttemptCompilation);
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000458 CompilerDriver* compiler_driver = GetCompilerDriver();
459 InstructionSet instruction_set = compiler_driver->GetInstructionSet();
Nicolas Geoffray8d486732014-07-16 16:23:40 +0100460 // Always use the thumb2 assembler: some runtime functionality (like implicit stack
461 // overflow checks) assume thumb2.
462 if (instruction_set == kArm) {
463 instruction_set = kThumb2;
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100464 }
465
466 // Do not attempt to compile on architectures we do not support.
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000467 if (!IsInstructionSetSupported(instruction_set)) {
Calin Juravle48c2b032014-12-09 18:11:36 +0000468 compilation_stats_.RecordStat(MethodCompilationStat::kNotCompiledUnsupportedIsa);
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100469 return nullptr;
470 }
471
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000472 if (Compiler::IsPathologicalCase(*code_item, method_idx, dex_file)) {
Calin Juravle48c2b032014-12-09 18:11:36 +0000473 compilation_stats_.RecordStat(MethodCompilationStat::kNotCompiledPathological);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000474 return nullptr;
475 }
476
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000477 // Implementation of the space filter: do not compile a code item whose size in
478 // code units is bigger than 256.
479 static constexpr size_t kSpaceFilterOptimizingThreshold = 256;
480 const CompilerOptions& compiler_options = compiler_driver->GetCompilerOptions();
481 if ((compiler_options.GetCompilerFilter() == CompilerOptions::kSpace)
482 && (code_item->insns_size_in_code_units_ > kSpaceFilterOptimizingThreshold)) {
483 compilation_stats_.RecordStat(MethodCompilationStat::kNotCompiledSpaceFilter);
484 return nullptr;
485 }
486
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +0000487 DexCompilationUnit dex_compilation_unit(
488 nullptr, class_loader, art::Runtime::Current()->GetClassLinker(), dex_file, code_item,
Ian Rogers72d32622014-05-06 16:20:11 -0700489 class_def_idx, method_idx, access_flags,
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000490 compiler_driver->GetVerifiedMethod(&dex_file, method_idx));
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +0000491
Nicolas Geoffray579ea7d2015-03-24 17:28:38 +0000492 ArenaAllocator arena(Runtime::Current()->GetArenaPool());
Nicolas Geoffraye0fe7ae2015-03-09 10:02:49 +0000493 HGraph* graph = new (&arena) HGraph(
494 &arena, compiler_driver->GetCompilerOptions().GetDebuggable());
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000495
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +0000496 // For testing purposes, we put a special marker on method names that should be compiled
497 // with this compiler. This makes sure we're not regressing.
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000498 bool shouldCompile = method_name.find("$opt$") != std::string::npos;
Nicolas Geoffraya3d90fb2015-03-16 13:55:40 +0000499 bool shouldOptimize = method_name.find("$opt$reg$") != std::string::npos && run_optimizations_;
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +0000500
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000501 std::unique_ptr<CodeGenerator> codegen(
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000502 CodeGenerator::Create(graph,
503 instruction_set,
504 *compiler_driver->GetInstructionSetFeatures(),
505 compiler_driver->GetCompilerOptions()));
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000506 if (codegen.get() == nullptr) {
Zheng Xu5667fdb2014-10-23 18:29:55 +0800507 CHECK(!shouldCompile) << "Could not find code generator for optimizing compiler";
Calin Juravle48c2b032014-12-09 18:11:36 +0000508 compilation_stats_.RecordStat(MethodCompilationStat::kNotCompiledNoCodegen);
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000509 return nullptr;
510 }
511
David Brazdil809658e2015-02-05 11:34:02 +0000512 PassInfoPrinter pass_info_printer(graph,
513 method_name.c_str(),
514 *codegen.get(),
515 visualizer_output_.get(),
516 compiler_driver);
David Brazdil5e8b1372015-01-23 14:39:08 +0000517
518 HGraphBuilder builder(graph,
519 &dex_compilation_unit,
520 &dex_compilation_unit,
521 &dex_file,
522 compiler_driver,
523 &compilation_stats_);
524
525 VLOG(compiler) << "Building " << method_name;
526
David Brazdil809658e2015-02-05 11:34:02 +0000527 {
Andreas Gampe7c3952f2015-02-19 18:21:24 -0800528 PassInfo pass_info(HGraphBuilder::kBuilderPassName, &pass_info_printer);
David Brazdil809658e2015-02-05 11:34:02 +0000529 if (!builder.BuildGraph(*code_item)) {
530 CHECK(!shouldCompile) << "Could not build graph in optimizing compiler";
531 return nullptr;
532 }
David Brazdil5e8b1372015-01-23 14:39:08 +0000533 }
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100534
Calin Juravle48c2b032014-12-09 18:11:36 +0000535 bool can_optimize = CanOptimize(*code_item);
536 bool can_allocate_registers = RegisterAllocator::CanAllocateRegistersFor(*graph, instruction_set);
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000537
538 // `run_optimizations_` is set explicitly (either through a compiler filter
539 // or the debuggable flag). If it is set, we can run baseline. Otherwise, we fall back
540 // to Quick.
541 bool can_use_baseline = !run_optimizations_;
Calin Juravle48c2b032014-12-09 18:11:36 +0000542 if (run_optimizations_ && can_optimize && can_allocate_registers) {
David Brazdil5e8b1372015-01-23 14:39:08 +0000543 VLOG(compiler) << "Optimizing " << method_name;
544
David Brazdil809658e2015-02-05 11:34:02 +0000545 {
Andreas Gampe7c3952f2015-02-19 18:21:24 -0800546 PassInfo pass_info(SsaBuilder::kSsaBuilderPassName, &pass_info_printer);
David Brazdil809658e2015-02-05 11:34:02 +0000547 if (!graph->TryBuildingSsa()) {
548 // We could not transform the graph to SSA, bailout.
549 LOG(INFO) << "Skipping compilation of " << method_name << ": it contains a non natural loop";
550 compilation_stats_.RecordStat(MethodCompilationStat::kNotCompiledCannotBuildSSA);
551 return nullptr;
552 }
Nicolas Geoffrayf5370122014-12-02 11:51:19 +0000553 }
David Brazdil5e8b1372015-01-23 14:39:08 +0000554
555 return CompileOptimized(graph,
556 codegen.get(),
557 compiler_driver,
Calin Juravleacf735c2015-02-12 15:25:22 +0000558 dex_file,
David Brazdil5e8b1372015-01-23 14:39:08 +0000559 dex_compilation_unit,
David Brazdil809658e2015-02-05 11:34:02 +0000560 &pass_info_printer);
Nicolas Geoffray234d69d2015-03-09 10:28:50 +0000561 } else if (shouldOptimize && can_allocate_registers) {
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100562 LOG(FATAL) << "Could not allocate registers in optimizing compiler";
Zheng Xu5667fdb2014-10-23 18:29:55 +0800563 UNREACHABLE();
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000564 } else if (can_use_baseline) {
David Brazdil5e8b1372015-01-23 14:39:08 +0000565 VLOG(compiler) << "Compile baseline " << method_name;
Calin Juravle48c2b032014-12-09 18:11:36 +0000566
567 if (!run_optimizations_) {
568 compilation_stats_.RecordStat(MethodCompilationStat::kNotOptimizedDisabled);
569 } else if (!can_optimize) {
570 compilation_stats_.RecordStat(MethodCompilationStat::kNotOptimizedTryCatch);
571 } else if (!can_allocate_registers) {
572 compilation_stats_.RecordStat(MethodCompilationStat::kNotOptimizedRegisterAllocator);
573 }
574
David Brazdil5e8b1372015-01-23 14:39:08 +0000575 return CompileBaseline(codegen.get(), compiler_driver, dex_compilation_unit);
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000576 } else {
577 return nullptr;
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100578 }
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000579}
580
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000581CompiledMethod* OptimizingCompiler::Compile(const DexFile::CodeItem* code_item,
582 uint32_t access_flags,
583 InvokeType invoke_type,
584 uint16_t class_def_idx,
585 uint32_t method_idx,
586 jobject class_loader,
587 const DexFile& dex_file) const {
588 CompiledMethod* method = TryCompile(code_item, access_flags, invoke_type, class_def_idx,
589 method_idx, class_loader, dex_file);
590 if (method != nullptr) {
591 return method;
592 }
Nicolas Geoffray12be74e2015-03-30 13:29:08 +0100593 method = delegate_->Compile(code_item, access_flags, invoke_type, class_def_idx, method_idx,
594 class_loader, dex_file);
595
596 if (method != nullptr) {
597 compilation_stats_.RecordStat(MethodCompilationStat::kCompiledQuick);
598 }
599 return method;
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000600}
601
Andreas Gampe53c913b2014-08-12 23:19:23 -0700602Compiler* CreateOptimizingCompiler(CompilerDriver* driver) {
603 return new OptimizingCompiler(driver);
604}
605
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000606} // namespace art