blob: efca1a59baf2e8958fc780f608966848a3a34072 [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"
David Srbeckyc6b4dd82015-04-07 20:32:43 +010053#include "utils/assembler.h"
Calin Juravle031af412015-04-13 14:25:53 +000054#include "reference_type_propagation.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000055
56namespace art {
57
Nicolas Geoffray787c3072014-03-17 10:20:19 +000058/**
59 * Used by the code generator, to allocate the code in a vector.
60 */
61class CodeVectorAllocator FINAL : public CodeAllocator {
62 public:
Andreas Gampe7c3952f2015-02-19 18:21:24 -080063 CodeVectorAllocator() : size_(0) {}
Nicolas Geoffray787c3072014-03-17 10:20:19 +000064
65 virtual uint8_t* Allocate(size_t size) {
66 size_ = size;
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000067 memory_.resize(size);
Nicolas Geoffray787c3072014-03-17 10:20:19 +000068 return &memory_[0];
69 }
70
71 size_t GetSize() const { return size_; }
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000072 const std::vector<uint8_t>& GetMemory() const { return memory_; }
Nicolas Geoffray787c3072014-03-17 10:20:19 +000073
74 private:
75 std::vector<uint8_t> memory_;
76 size_t size_;
77
78 DISALLOW_COPY_AND_ASSIGN(CodeVectorAllocator);
79};
80
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010081/**
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010082 * Filter to apply to the visualizer. Methods whose name contain that filter will
David Brazdilee690a32014-12-01 17:04:16 +000083 * be dumped.
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010084 */
85static const char* kStringFilter = "";
86
David Brazdil809658e2015-02-05 11:34:02 +000087class PassInfo;
88
David Brazdil5e8b1372015-01-23 14:39:08 +000089class PassInfoPrinter : public ValueObject {
90 public:
91 PassInfoPrinter(HGraph* graph,
92 const char* method_name,
93 const CodeGenerator& codegen,
94 std::ostream* visualizer_output,
David Brazdil809658e2015-02-05 11:34:02 +000095 CompilerDriver* compiler_driver)
David Brazdil5e8b1372015-01-23 14:39:08 +000096 : method_name_(method_name),
David Brazdil809658e2015-02-05 11:34:02 +000097 timing_logger_enabled_(compiler_driver->GetDumpPasses()),
David Brazdil5e8b1372015-01-23 14:39:08 +000098 timing_logger_(method_name, true, true),
David Brazdil809658e2015-02-05 11:34:02 +000099 visualizer_enabled_(!compiler_driver->GetDumpCfgFileName().empty()),
David Brazdil62e074f2015-04-07 18:09:37 +0100100 visualizer_(visualizer_output, graph, codegen) {
David Brazdil5e8b1372015-01-23 14:39:08 +0000101 if (strstr(method_name, kStringFilter) == nullptr) {
102 timing_logger_enabled_ = visualizer_enabled_ = false;
103 }
David Brazdil62e074f2015-04-07 18:09:37 +0100104 if (visualizer_enabled_) {
105 visualizer_.PrintHeader(method_name_);
106 }
David Brazdil5e8b1372015-01-23 14:39:08 +0000107 }
108
David Brazdil5e8b1372015-01-23 14:39:08 +0000109 ~PassInfoPrinter() {
110 if (timing_logger_enabled_) {
David Brazdil5e8b1372015-01-23 14:39:08 +0000111 LOG(INFO) << "TIMINGS " << method_name_;
112 LOG(INFO) << Dumpable<TimingLogger>(timing_logger_);
113 }
114 }
115
116 private:
David Brazdil809658e2015-02-05 11:34:02 +0000117 void StartPass(const char* pass_name) {
118 // Dump graph first, then start timer.
119 if (visualizer_enabled_) {
120 visualizer_.DumpGraph(pass_name, /* is_after_pass */ false);
121 }
122 if (timing_logger_enabled_) {
123 timing_logger_.StartTiming(pass_name);
124 }
125 }
126
127 void EndPass(const char* pass_name) {
128 // Pause timer first, then dump graph.
129 if (timing_logger_enabled_) {
130 timing_logger_.EndTiming();
131 }
132 if (visualizer_enabled_) {
133 visualizer_.DumpGraph(pass_name, /* is_after_pass */ true);
134 }
135 }
136
David Brazdil5e8b1372015-01-23 14:39:08 +0000137 const char* method_name_;
138
139 bool timing_logger_enabled_;
David Brazdil5e8b1372015-01-23 14:39:08 +0000140 TimingLogger timing_logger_;
141
142 bool visualizer_enabled_;
143 HGraphVisualizer visualizer_;
144
David Brazdil809658e2015-02-05 11:34:02 +0000145 friend PassInfo;
146
David Brazdil5e8b1372015-01-23 14:39:08 +0000147 DISALLOW_COPY_AND_ASSIGN(PassInfoPrinter);
148};
149
David Brazdil809658e2015-02-05 11:34:02 +0000150class PassInfo : public ValueObject {
151 public:
152 PassInfo(const char *pass_name, PassInfoPrinter* pass_info_printer)
153 : pass_name_(pass_name),
154 pass_info_printer_(pass_info_printer) {
155 pass_info_printer_->StartPass(pass_name_);
156 }
157
158 ~PassInfo() {
159 pass_info_printer_->EndPass(pass_name_);
160 }
161
162 private:
163 const char* const pass_name_;
164 PassInfoPrinter* const pass_info_printer_;
165};
166
Andreas Gampe53c913b2014-08-12 23:19:23 -0700167class OptimizingCompiler FINAL : public Compiler {
168 public:
169 explicit OptimizingCompiler(CompilerDriver* driver);
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100170 ~OptimizingCompiler();
Andreas Gampe53c913b2014-08-12 23:19:23 -0700171
172 bool CanCompileMethod(uint32_t method_idx, const DexFile& dex_file, CompilationUnit* cu) const
173 OVERRIDE;
174
175 CompiledMethod* Compile(const DexFile::CodeItem* code_item,
176 uint32_t access_flags,
177 InvokeType invoke_type,
178 uint16_t class_def_idx,
179 uint32_t method_idx,
180 jobject class_loader,
181 const DexFile& dex_file) const OVERRIDE;
182
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000183 CompiledMethod* TryCompile(const DexFile::CodeItem* code_item,
184 uint32_t access_flags,
185 InvokeType invoke_type,
186 uint16_t class_def_idx,
187 uint32_t method_idx,
188 jobject class_loader,
189 const DexFile& dex_file) const;
190
Andreas Gampe53c913b2014-08-12 23:19:23 -0700191 CompiledMethod* JniCompile(uint32_t access_flags,
192 uint32_t method_idx,
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000193 const DexFile& dex_file) const OVERRIDE {
194 return ArtQuickJniCompileMethod(GetCompilerDriver(), access_flags, method_idx, dex_file);
195 }
Andreas Gampe53c913b2014-08-12 23:19:23 -0700196
197 uintptr_t GetEntryPointOf(mirror::ArtMethod* method) const OVERRIDE
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000198 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
199 return reinterpret_cast<uintptr_t>(method->GetEntryPointFromQuickCompiledCodePtrSize(
200 InstructionSetPointerSize(GetCompilerDriver()->GetInstructionSet())));
201 }
Andreas Gampe53c913b2014-08-12 23:19:23 -0700202
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000203 void InitCompilationUnit(CompilationUnit& cu) const OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700204
David Brazdilee690a32014-12-01 17:04:16 +0000205 void Init() OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700206
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000207 void UnInit() const OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700208
209 private:
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100210 // Whether we should run any optimization or register allocation. If false, will
211 // just run the code generation after the graph was built.
212 const bool run_optimizations_;
Calin Juravle48c2b032014-12-09 18:11:36 +0000213
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000214 // Optimize and compile `graph`.
215 CompiledMethod* CompileOptimized(HGraph* graph,
216 CodeGenerator* codegen,
217 CompilerDriver* driver,
Calin Juravleacf735c2015-02-12 15:25:22 +0000218 const DexFile& dex_file,
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000219 const DexCompilationUnit& dex_compilation_unit,
David Brazdil5e8b1372015-01-23 14:39:08 +0000220 PassInfoPrinter* pass_info) const;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000221
222 // Just compile without doing optimizations.
223 CompiledMethod* CompileBaseline(CodeGenerator* codegen,
224 CompilerDriver* driver,
225 const DexCompilationUnit& dex_compilation_unit) const;
226
Calin Juravle48c2b032014-12-09 18:11:36 +0000227 mutable OptimizingCompilerStats compilation_stats_;
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100228
Andreas Gampe53c913b2014-08-12 23:19:23 -0700229 std::unique_ptr<std::ostream> visualizer_output_;
230
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000231 // Delegate to Quick in case the optimizing compiler cannot compile a method.
232 std::unique_ptr<Compiler> delegate_;
233
Andreas Gampe53c913b2014-08-12 23:19:23 -0700234 DISALLOW_COPY_AND_ASSIGN(OptimizingCompiler);
235};
236
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100237static const int kMaximumCompilationTimeBeforeWarning = 100; /* ms */
238
239OptimizingCompiler::OptimizingCompiler(CompilerDriver* driver)
240 : Compiler(driver, kMaximumCompilationTimeBeforeWarning),
241 run_optimizations_(
Nicolas Geoffraya3d90fb2015-03-16 13:55:40 +0000242 (driver->GetCompilerOptions().GetCompilerFilter() != CompilerOptions::kTime)
243 && !driver->GetCompilerOptions().GetDebuggable()),
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000244 compilation_stats_(),
245 delegate_(Create(driver, Compiler::Kind::kQuick)) {}
David Brazdilee690a32014-12-01 17:04:16 +0000246
247void OptimizingCompiler::Init() {
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000248 delegate_->Init();
David Brazdilee690a32014-12-01 17:04:16 +0000249 // Enable C1visualizer output. Must be done in Init() because the compiler
250 // driver is not fully initialized when passed to the compiler's constructor.
251 CompilerDriver* driver = GetCompilerDriver();
David Brazdil866c0312015-01-13 21:21:31 +0000252 const std::string cfg_file_name = driver->GetDumpCfgFileName();
253 if (!cfg_file_name.empty()) {
David Brazdilee690a32014-12-01 17:04:16 +0000254 CHECK_EQ(driver->GetThreadCount(), 1U)
255 << "Graph visualizer requires the compiler to run single-threaded. "
256 << "Invoke the compiler with '-j1'.";
David Brazdil866c0312015-01-13 21:21:31 +0000257 visualizer_output_.reset(new std::ofstream(cfg_file_name));
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100258 }
259}
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000260
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000261void OptimizingCompiler::UnInit() const {
262 delegate_->UnInit();
263}
264
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100265OptimizingCompiler::~OptimizingCompiler() {
Calin Juravle48c2b032014-12-09 18:11:36 +0000266 compilation_stats_.Log();
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100267}
268
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000269void OptimizingCompiler::InitCompilationUnit(CompilationUnit& cu) const {
270 delegate_->InitCompilationUnit(cu);
271}
272
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +0000273bool OptimizingCompiler::CanCompileMethod(uint32_t method_idx ATTRIBUTE_UNUSED,
274 const DexFile& dex_file ATTRIBUTE_UNUSED,
275 CompilationUnit* cu ATTRIBUTE_UNUSED) const {
276 return true;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700277}
278
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000279static bool IsInstructionSetSupported(InstructionSet instruction_set) {
280 return instruction_set == kArm64
281 || (instruction_set == kThumb2 && !kArm32QuickCodeUseSoftFloat)
282 || instruction_set == kX86
283 || instruction_set == kX86_64;
284}
285
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000286static bool CanOptimize(const DexFile::CodeItem& code_item) {
287 // TODO: We currently cannot optimize methods with try/catch.
288 return code_item.tries_size_ == 0;
289}
290
Calin Juravle10e244f2015-01-26 18:54:32 +0000291static void RunOptimizations(HOptimization* optimizations[],
292 size_t length,
David Brazdil809658e2015-02-05 11:34:02 +0000293 PassInfoPrinter* pass_info_printer) {
Calin Juravle10e244f2015-01-26 18:54:32 +0000294 for (size_t i = 0; i < length; ++i) {
295 HOptimization* optimization = optimizations[i];
David Brazdil809658e2015-02-05 11:34:02 +0000296 {
297 PassInfo pass_info(optimization->GetPassName(), pass_info_printer);
298 optimization->Run();
299 }
Calin Juravle10e244f2015-01-26 18:54:32 +0000300 optimization->Check();
301 }
302}
303
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000304static void RunOptimizations(HGraph* graph,
305 CompilerDriver* driver,
306 OptimizingCompilerStats* stats,
Calin Juravleacf735c2015-02-12 15:25:22 +0000307 const DexFile& dex_file,
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000308 const DexCompilationUnit& dex_compilation_unit,
Calin Juravleacf735c2015-02-12 15:25:22 +0000309 PassInfoPrinter* pass_info_printer,
310 StackHandleScopeCollection* handles) {
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000311 HDeadCodeElimination dce(graph);
Nicolas Geoffray9ee66182015-01-16 12:35:40 +0000312 HConstantFolding fold1(graph);
Calin Juravleacf735c2015-02-12 15:25:22 +0000313 InstructionSimplifier simplify1(graph, stats);
David Brazdil46e2a392015-03-16 17:31:52 +0000314 HBooleanSimplifier boolean_not(graph);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000315
Nicolas Geoffray9437b782015-03-25 10:08:51 +0000316 HInliner inliner(graph, dex_compilation_unit, dex_compilation_unit, driver, stats);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000317
Nicolas Geoffray9ee66182015-01-16 12:35:40 +0000318 HConstantFolding fold2(graph);
Nicolas Geoffray86dde162015-01-26 12:54:33 +0000319 SideEffectsAnalysis side_effects(graph);
320 GVNOptimization gvn(graph, side_effects);
Nicolas Geoffray82091da2015-01-26 10:02:45 +0000321 LICM licm(graph, side_effects);
Mingyao Yangf384f882014-10-22 16:08:18 -0700322 BoundsCheckElimination bce(graph);
Calin Juravleacf735c2015-02-12 15:25:22 +0000323 ReferenceTypePropagation type_propagation(graph, dex_file, dex_compilation_unit, handles);
324 InstructionSimplifier simplify2(graph, stats, "instruction_simplifier_after_types");
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000325
Andreas Gampe71fb52f2014-12-29 17:43:08 -0800326 IntrinsicsRecognizer intrinsics(graph, dex_compilation_unit.GetDexFile(), driver);
327
Nicolas Geoffray31596742014-11-24 15:28:45 +0000328 HOptimization* optimizations[] = {
Andreas Gampe71fb52f2014-12-29 17:43:08 -0800329 &intrinsics,
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000330 &dce,
Nicolas Geoffray9ee66182015-01-16 12:35:40 +0000331 &fold1,
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000332 &simplify1,
David Brazdil46e2a392015-03-16 17:31:52 +0000333 // BooleanSimplifier depends on the InstructionSimplifier removing redundant
334 // suspend checks to recognize empty blocks.
335 &boolean_not,
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000336 &inliner,
Nicolas Geoffray9ee66182015-01-16 12:35:40 +0000337 &fold2,
Nicolas Geoffray86dde162015-01-26 12:54:33 +0000338 &side_effects,
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000339 &gvn,
Nicolas Geoffray82091da2015-01-26 10:02:45 +0000340 &licm,
Mingyao Yangf384f882014-10-22 16:08:18 -0700341 &bce,
Calin Juravle10e244f2015-01-26 18:54:32 +0000342 &type_propagation,
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000343 &simplify2
Nicolas Geoffray31596742014-11-24 15:28:45 +0000344 };
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000345
David Brazdil809658e2015-02-05 11:34:02 +0000346 RunOptimizations(optimizations, arraysize(optimizations), pass_info_printer);
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000347}
348
Nicolas Geoffray376b2bb2014-12-09 14:26:32 +0000349// The stack map we generate must be 4-byte aligned on ARM. Since existing
350// maps are generated alongside these stack maps, we must also align them.
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800351static ArrayRef<const uint8_t> AlignVectorSize(std::vector<uint8_t>& vector) {
Nicolas Geoffray376b2bb2014-12-09 14:26:32 +0000352 size_t size = vector.size();
353 size_t aligned_size = RoundUp(size, 4);
354 for (; size < aligned_size; ++size) {
355 vector.push_back(0);
356 }
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800357 return ArrayRef<const uint8_t>(vector);
Nicolas Geoffray376b2bb2014-12-09 14:26:32 +0000358}
359
Andreas Gampec2bcafe2015-04-10 10:49:32 -0700360static void AllocateRegisters(HGraph* graph,
361 CodeGenerator* codegen,
362 PassInfoPrinter* pass_info_printer) {
363 PrepareForRegisterAllocation(graph).Run();
Nicolas Geoffray0d9f17d2015-04-15 14:17:44 +0100364 SsaLivenessAnalysis liveness(graph, codegen);
Andreas Gampec2bcafe2015-04-10 10:49:32 -0700365 {
366 PassInfo pass_info(SsaLivenessAnalysis::kLivenessPassName, pass_info_printer);
367 liveness.Analyze();
368 }
369 {
370 PassInfo pass_info(RegisterAllocator::kRegisterAllocatorPassName, pass_info_printer);
371 RegisterAllocator(graph->GetArena(), codegen, liveness).AllocateRegisters();
372 }
373}
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000374
375CompiledMethod* OptimizingCompiler::CompileOptimized(HGraph* graph,
376 CodeGenerator* codegen,
377 CompilerDriver* compiler_driver,
Calin Juravleacf735c2015-02-12 15:25:22 +0000378 const DexFile& dex_file,
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000379 const DexCompilationUnit& dex_compilation_unit,
David Brazdil809658e2015-02-05 11:34:02 +0000380 PassInfoPrinter* pass_info_printer) const {
Calin Juravleacf735c2015-02-12 15:25:22 +0000381 StackHandleScopeCollection handles(Thread::Current());
382 RunOptimizations(graph, compiler_driver, &compilation_stats_,
383 dex_file, dex_compilation_unit, pass_info_printer, &handles);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000384
Andreas Gampec2bcafe2015-04-10 10:49:32 -0700385 AllocateRegisters(graph, codegen, pass_info_printer);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000386
387 CodeVectorAllocator allocator;
388 codegen->CompileOptimized(&allocator);
389
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100390 DefaultSrcMap src_mapping_table;
391 if (compiler_driver->GetCompilerOptions().GetIncludeDebugSymbols()) {
392 codegen->BuildSourceMap(&src_mapping_table);
393 }
394
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000395 std::vector<uint8_t> stack_map;
396 codegen->BuildStackMaps(&stack_map);
397
398 compilation_stats_.RecordStat(MethodCompilationStat::kCompiledOptimized);
399
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100400 return CompiledMethod::SwapAllocCompiledMethod(
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000401 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(),
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100410 &src_mapping_table,
411 ArrayRef<const uint8_t>(), // mapping_table.
412 ArrayRef<const uint8_t>(stack_map),
413 ArrayRef<const uint8_t>(), // native_gc_map.
414 ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data()),
415 ArrayRef<const LinkerPatch>());
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000416}
417
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000418CompiledMethod* OptimizingCompiler::CompileBaseline(
419 CodeGenerator* codegen,
420 CompilerDriver* compiler_driver,
421 const DexCompilationUnit& dex_compilation_unit) const {
422 CodeVectorAllocator allocator;
423 codegen->CompileBaseline(&allocator);
424
425 std::vector<uint8_t> mapping_table;
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100426 codegen->BuildMappingTable(&mapping_table);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000427 DefaultSrcMap src_mapping_table;
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100428 if (compiler_driver->GetCompilerOptions().GetIncludeDebugSymbols()) {
429 codegen->BuildSourceMap(&src_mapping_table);
430 }
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000431 std::vector<uint8_t> vmap_table;
432 codegen->BuildVMapTable(&vmap_table);
433 std::vector<uint8_t> gc_map;
434 codegen->BuildNativeGCMap(&gc_map, dex_compilation_unit);
435
436 compilation_stats_.RecordStat(MethodCompilationStat::kCompiledBaseline);
Roland Levillainaa9b7c42015-02-17 15:40:09 +0000437 return CompiledMethod::SwapAllocCompiledMethod(
438 compiler_driver,
439 codegen->GetInstructionSet(),
440 ArrayRef<const uint8_t>(allocator.GetMemory()),
441 // Follow Quick's behavior and set the frame size to zero if it is
442 // considered "empty" (see the definition of
443 // art::CodeGenerator::HasEmptyFrame).
444 codegen->HasEmptyFrame() ? 0 : codegen->GetFrameSize(),
445 codegen->GetCoreSpillMask(),
446 codegen->GetFpuSpillMask(),
447 &src_mapping_table,
448 AlignVectorSize(mapping_table),
449 AlignVectorSize(vmap_table),
450 AlignVectorSize(gc_map),
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100451 ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data()),
452 ArrayRef<const LinkerPatch>());
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000453}
454
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000455CompiledMethod* OptimizingCompiler::TryCompile(const DexFile::CodeItem* code_item,
456 uint32_t access_flags,
457 InvokeType invoke_type,
458 uint16_t class_def_idx,
459 uint32_t method_idx,
460 jobject class_loader,
461 const DexFile& dex_file) const {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700462 UNUSED(invoke_type);
David Brazdil5e8b1372015-01-23 14:39:08 +0000463 std::string method_name = PrettyMethod(method_idx, dex_file);
Calin Juravle48c2b032014-12-09 18:11:36 +0000464 compilation_stats_.RecordStat(MethodCompilationStat::kAttemptCompilation);
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000465 CompilerDriver* compiler_driver = GetCompilerDriver();
466 InstructionSet instruction_set = compiler_driver->GetInstructionSet();
Nicolas Geoffray8d486732014-07-16 16:23:40 +0100467 // Always use the thumb2 assembler: some runtime functionality (like implicit stack
468 // overflow checks) assume thumb2.
469 if (instruction_set == kArm) {
470 instruction_set = kThumb2;
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100471 }
472
473 // Do not attempt to compile on architectures we do not support.
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000474 if (!IsInstructionSetSupported(instruction_set)) {
Calin Juravle48c2b032014-12-09 18:11:36 +0000475 compilation_stats_.RecordStat(MethodCompilationStat::kNotCompiledUnsupportedIsa);
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100476 return nullptr;
477 }
478
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000479 if (Compiler::IsPathologicalCase(*code_item, method_idx, dex_file)) {
Calin Juravle48c2b032014-12-09 18:11:36 +0000480 compilation_stats_.RecordStat(MethodCompilationStat::kNotCompiledPathological);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000481 return nullptr;
482 }
483
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000484 // Implementation of the space filter: do not compile a code item whose size in
485 // code units is bigger than 256.
486 static constexpr size_t kSpaceFilterOptimizingThreshold = 256;
487 const CompilerOptions& compiler_options = compiler_driver->GetCompilerOptions();
488 if ((compiler_options.GetCompilerFilter() == CompilerOptions::kSpace)
489 && (code_item->insns_size_in_code_units_ > kSpaceFilterOptimizingThreshold)) {
490 compilation_stats_.RecordStat(MethodCompilationStat::kNotCompiledSpaceFilter);
491 return nullptr;
492 }
493
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +0000494 DexCompilationUnit dex_compilation_unit(
495 nullptr, class_loader, art::Runtime::Current()->GetClassLinker(), dex_file, code_item,
Ian Rogers72d32622014-05-06 16:20:11 -0700496 class_def_idx, method_idx, access_flags,
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000497 compiler_driver->GetVerifiedMethod(&dex_file, method_idx));
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +0000498
Nicolas Geoffray579ea7d2015-03-24 17:28:38 +0000499 ArenaAllocator arena(Runtime::Current()->GetArenaPool());
Nicolas Geoffraye0fe7ae2015-03-09 10:02:49 +0000500 HGraph* graph = new (&arena) HGraph(
501 &arena, compiler_driver->GetCompilerOptions().GetDebuggable());
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000502
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +0000503 // For testing purposes, we put a special marker on method names that should be compiled
504 // with this compiler. This makes sure we're not regressing.
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000505 bool shouldCompile = method_name.find("$opt$") != std::string::npos;
Nicolas Geoffraya3d90fb2015-03-16 13:55:40 +0000506 bool shouldOptimize = method_name.find("$opt$reg$") != std::string::npos && run_optimizations_;
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +0000507
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000508 std::unique_ptr<CodeGenerator> codegen(
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000509 CodeGenerator::Create(graph,
510 instruction_set,
511 *compiler_driver->GetInstructionSetFeatures(),
512 compiler_driver->GetCompilerOptions()));
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000513 if (codegen.get() == nullptr) {
Zheng Xu5667fdb2014-10-23 18:29:55 +0800514 CHECK(!shouldCompile) << "Could not find code generator for optimizing compiler";
Calin Juravle48c2b032014-12-09 18:11:36 +0000515 compilation_stats_.RecordStat(MethodCompilationStat::kNotCompiledNoCodegen);
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000516 return nullptr;
517 }
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100518 codegen->GetAssembler()->cfi().SetEnabled(
David Srbecky8dc73242015-04-12 11:40:39 +0100519 compiler_driver->GetCompilerOptions().GetIncludeCFI());
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000520
David Brazdil809658e2015-02-05 11:34:02 +0000521 PassInfoPrinter pass_info_printer(graph,
522 method_name.c_str(),
523 *codegen.get(),
524 visualizer_output_.get(),
525 compiler_driver);
David Brazdil5e8b1372015-01-23 14:39:08 +0000526
527 HGraphBuilder builder(graph,
528 &dex_compilation_unit,
529 &dex_compilation_unit,
530 &dex_file,
531 compiler_driver,
532 &compilation_stats_);
533
534 VLOG(compiler) << "Building " << method_name;
535
David Brazdil809658e2015-02-05 11:34:02 +0000536 {
Andreas Gampe7c3952f2015-02-19 18:21:24 -0800537 PassInfo pass_info(HGraphBuilder::kBuilderPassName, &pass_info_printer);
David Brazdil809658e2015-02-05 11:34:02 +0000538 if (!builder.BuildGraph(*code_item)) {
539 CHECK(!shouldCompile) << "Could not build graph in optimizing compiler";
540 return nullptr;
541 }
David Brazdil5e8b1372015-01-23 14:39:08 +0000542 }
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100543
Calin Juravle48c2b032014-12-09 18:11:36 +0000544 bool can_optimize = CanOptimize(*code_item);
545 bool can_allocate_registers = RegisterAllocator::CanAllocateRegistersFor(*graph, instruction_set);
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000546
547 // `run_optimizations_` is set explicitly (either through a compiler filter
548 // or the debuggable flag). If it is set, we can run baseline. Otherwise, we fall back
549 // to Quick.
550 bool can_use_baseline = !run_optimizations_;
Calin Juravle48c2b032014-12-09 18:11:36 +0000551 if (run_optimizations_ && can_optimize && can_allocate_registers) {
David Brazdil5e8b1372015-01-23 14:39:08 +0000552 VLOG(compiler) << "Optimizing " << method_name;
553
David Brazdil809658e2015-02-05 11:34:02 +0000554 {
Andreas Gampe7c3952f2015-02-19 18:21:24 -0800555 PassInfo pass_info(SsaBuilder::kSsaBuilderPassName, &pass_info_printer);
David Brazdil809658e2015-02-05 11:34:02 +0000556 if (!graph->TryBuildingSsa()) {
557 // We could not transform the graph to SSA, bailout.
558 LOG(INFO) << "Skipping compilation of " << method_name << ": it contains a non natural loop";
559 compilation_stats_.RecordStat(MethodCompilationStat::kNotCompiledCannotBuildSSA);
560 return nullptr;
561 }
Nicolas Geoffrayf5370122014-12-02 11:51:19 +0000562 }
David Brazdil5e8b1372015-01-23 14:39:08 +0000563
564 return CompileOptimized(graph,
565 codegen.get(),
566 compiler_driver,
Calin Juravleacf735c2015-02-12 15:25:22 +0000567 dex_file,
David Brazdil5e8b1372015-01-23 14:39:08 +0000568 dex_compilation_unit,
David Brazdil809658e2015-02-05 11:34:02 +0000569 &pass_info_printer);
Nicolas Geoffray234d69d2015-03-09 10:28:50 +0000570 } else if (shouldOptimize && can_allocate_registers) {
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100571 LOG(FATAL) << "Could not allocate registers in optimizing compiler";
Zheng Xu5667fdb2014-10-23 18:29:55 +0800572 UNREACHABLE();
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000573 } else if (can_use_baseline) {
David Brazdil5e8b1372015-01-23 14:39:08 +0000574 VLOG(compiler) << "Compile baseline " << method_name;
Calin Juravle48c2b032014-12-09 18:11:36 +0000575
576 if (!run_optimizations_) {
577 compilation_stats_.RecordStat(MethodCompilationStat::kNotOptimizedDisabled);
578 } else if (!can_optimize) {
579 compilation_stats_.RecordStat(MethodCompilationStat::kNotOptimizedTryCatch);
580 } else if (!can_allocate_registers) {
581 compilation_stats_.RecordStat(MethodCompilationStat::kNotOptimizedRegisterAllocator);
582 }
583
David Brazdil5e8b1372015-01-23 14:39:08 +0000584 return CompileBaseline(codegen.get(), compiler_driver, dex_compilation_unit);
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000585 } else {
586 return nullptr;
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100587 }
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000588}
589
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000590CompiledMethod* OptimizingCompiler::Compile(const DexFile::CodeItem* code_item,
591 uint32_t access_flags,
592 InvokeType invoke_type,
593 uint16_t class_def_idx,
594 uint32_t method_idx,
Calin Juravle031af412015-04-13 14:25:53 +0000595 jobject class_loader,
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000596 const DexFile& dex_file) const {
Calin Juravle031af412015-04-13 14:25:53 +0000597 CompiledMethod* method = TryCompile(code_item, access_flags, invoke_type, class_def_idx,
598 method_idx, class_loader, dex_file);
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000599 if (method != nullptr) {
600 return method;
601 }
Nicolas Geoffray12be74e2015-03-30 13:29:08 +0100602 method = delegate_->Compile(code_item, access_flags, invoke_type, class_def_idx, method_idx,
Calin Juravle031af412015-04-13 14:25:53 +0000603 class_loader, dex_file);
Nicolas Geoffray12be74e2015-03-30 13:29:08 +0100604
605 if (method != nullptr) {
606 compilation_stats_.RecordStat(MethodCompilationStat::kCompiledQuick);
607 }
608 return method;
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000609}
610
Andreas Gampe53c913b2014-08-12 23:19:23 -0700611Compiler* CreateOptimizingCompiler(CompilerDriver* driver) {
612 return new OptimizingCompiler(driver);
613}
614
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000615} // namespace art