blob: a17d6e1822fecd8329fbcfbb881e1418b7296a4f [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"
Calin Juravlef1c6d9e2015-04-13 18:42:21 +010034#include "dex/verified_method.h"
35#include "dex/verification_results.h"
Nicolas Geoffray787c3072014-03-17 10:20:19 +000036#include "driver/compiler_driver.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000037#include "driver/compiler_options.h"
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000038#include "driver/dex_compilation_unit.h"
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +000039#include "elf_writer_quick.h"
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010040#include "graph_visualizer.h"
Nicolas Geoffrayd31cf3d2014-09-08 17:30:24 +010041#include "gvn.h"
Nicolas Geoffraye53798a2014-12-01 10:31:54 +000042#include "inliner.h"
Nicolas Geoffray3c049742014-09-24 18:10:46 +010043#include "instruction_simplifier.h"
Andreas Gampe71fb52f2014-12-29 17:43:08 -080044#include "intrinsics.h"
Nicolas Geoffray82091da2015-01-26 10:02:45 +000045#include "licm.h"
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +000046#include "jni/quick/jni_compiler.h"
47#include "mirror/art_method-inl.h"
Nicolas Geoffray787c3072014-03-17 10:20:19 +000048#include "nodes.h"
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +010049#include "prepare_for_register_allocation.h"
Calin Juravlef1c6d9e2015-04-13 18:42:21 +010050#include "reference_type_propagation.h"
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010051#include "register_allocator.h"
Nicolas Geoffray827eedb2015-01-26 15:18:36 +000052#include "side_effects_analysis.h"
Nicolas Geoffray31596742014-11-24 15:28:45 +000053#include "ssa_builder.h"
Nicolas Geoffray7dc206a2014-07-11 09:49:49 +010054#include "ssa_phi_elimination.h"
Nicolas Geoffray804d0932014-05-02 08:46:00 +010055#include "ssa_liveness_analysis.h"
David Srbeckyc6b4dd82015-04-07 20:32:43 +010056#include "utils/assembler.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000057
58namespace art {
59
Nicolas Geoffray787c3072014-03-17 10:20:19 +000060/**
61 * Used by the code generator, to allocate the code in a vector.
62 */
63class CodeVectorAllocator FINAL : public CodeAllocator {
64 public:
Andreas Gampe7c3952f2015-02-19 18:21:24 -080065 CodeVectorAllocator() : size_(0) {}
Nicolas Geoffray787c3072014-03-17 10:20:19 +000066
67 virtual uint8_t* Allocate(size_t size) {
68 size_ = size;
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000069 memory_.resize(size);
Nicolas Geoffray787c3072014-03-17 10:20:19 +000070 return &memory_[0];
71 }
72
73 size_t GetSize() const { return size_; }
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000074 const std::vector<uint8_t>& GetMemory() const { return memory_; }
Nicolas Geoffray787c3072014-03-17 10:20:19 +000075
76 private:
77 std::vector<uint8_t> memory_;
78 size_t size_;
79
80 DISALLOW_COPY_AND_ASSIGN(CodeVectorAllocator);
81};
82
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010083/**
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010084 * Filter to apply to the visualizer. Methods whose name contain that filter will
David Brazdilee690a32014-12-01 17:04:16 +000085 * be dumped.
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010086 */
87static const char* kStringFilter = "";
88
David Brazdil809658e2015-02-05 11:34:02 +000089class PassInfo;
90
David Brazdil5e8b1372015-01-23 14:39:08 +000091class PassInfoPrinter : public ValueObject {
92 public:
93 PassInfoPrinter(HGraph* graph,
94 const char* method_name,
95 const CodeGenerator& codegen,
96 std::ostream* visualizer_output,
David Brazdil809658e2015-02-05 11:34:02 +000097 CompilerDriver* compiler_driver)
David Brazdil5e8b1372015-01-23 14:39:08 +000098 : method_name_(method_name),
David Brazdil809658e2015-02-05 11:34:02 +000099 timing_logger_enabled_(compiler_driver->GetDumpPasses()),
David Brazdil5e8b1372015-01-23 14:39:08 +0000100 timing_logger_(method_name, true, true),
David Brazdil809658e2015-02-05 11:34:02 +0000101 visualizer_enabled_(!compiler_driver->GetDumpCfgFileName().empty()),
David Brazdil62e074f2015-04-07 18:09:37 +0100102 visualizer_(visualizer_output, graph, codegen) {
David Brazdil5e8b1372015-01-23 14:39:08 +0000103 if (strstr(method_name, kStringFilter) == nullptr) {
104 timing_logger_enabled_ = visualizer_enabled_ = false;
105 }
David Brazdil62e074f2015-04-07 18:09:37 +0100106 if (visualizer_enabled_) {
107 visualizer_.PrintHeader(method_name_);
108 }
David Brazdil5e8b1372015-01-23 14:39:08 +0000109 }
110
David Brazdil5e8b1372015-01-23 14:39:08 +0000111 ~PassInfoPrinter() {
112 if (timing_logger_enabled_) {
David Brazdil5e8b1372015-01-23 14:39:08 +0000113 LOG(INFO) << "TIMINGS " << method_name_;
114 LOG(INFO) << Dumpable<TimingLogger>(timing_logger_);
115 }
116 }
117
118 private:
David Brazdil809658e2015-02-05 11:34:02 +0000119 void StartPass(const char* pass_name) {
120 // Dump graph first, then start timer.
121 if (visualizer_enabled_) {
122 visualizer_.DumpGraph(pass_name, /* is_after_pass */ false);
123 }
124 if (timing_logger_enabled_) {
125 timing_logger_.StartTiming(pass_name);
126 }
127 }
128
129 void EndPass(const char* pass_name) {
130 // Pause timer first, then dump graph.
131 if (timing_logger_enabled_) {
132 timing_logger_.EndTiming();
133 }
134 if (visualizer_enabled_) {
135 visualizer_.DumpGraph(pass_name, /* is_after_pass */ true);
136 }
137 }
138
David Brazdil5e8b1372015-01-23 14:39:08 +0000139 const char* method_name_;
140
141 bool timing_logger_enabled_;
David Brazdil5e8b1372015-01-23 14:39:08 +0000142 TimingLogger timing_logger_;
143
144 bool visualizer_enabled_;
145 HGraphVisualizer visualizer_;
146
David Brazdil809658e2015-02-05 11:34:02 +0000147 friend PassInfo;
148
David Brazdil5e8b1372015-01-23 14:39:08 +0000149 DISALLOW_COPY_AND_ASSIGN(PassInfoPrinter);
150};
151
David Brazdil809658e2015-02-05 11:34:02 +0000152class PassInfo : public ValueObject {
153 public:
154 PassInfo(const char *pass_name, PassInfoPrinter* pass_info_printer)
155 : pass_name_(pass_name),
156 pass_info_printer_(pass_info_printer) {
157 pass_info_printer_->StartPass(pass_name_);
158 }
159
160 ~PassInfo() {
161 pass_info_printer_->EndPass(pass_name_);
162 }
163
164 private:
165 const char* const pass_name_;
166 PassInfoPrinter* const pass_info_printer_;
167};
168
Andreas Gampe53c913b2014-08-12 23:19:23 -0700169class OptimizingCompiler FINAL : public Compiler {
170 public:
171 explicit OptimizingCompiler(CompilerDriver* driver);
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100172 ~OptimizingCompiler();
Andreas Gampe53c913b2014-08-12 23:19:23 -0700173
174 bool CanCompileMethod(uint32_t method_idx, const DexFile& dex_file, CompilationUnit* cu) const
175 OVERRIDE;
176
177 CompiledMethod* Compile(const DexFile::CodeItem* code_item,
178 uint32_t access_flags,
179 InvokeType invoke_type,
180 uint16_t class_def_idx,
181 uint32_t method_idx,
182 jobject class_loader,
183 const DexFile& dex_file) const OVERRIDE;
184
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000185 CompiledMethod* TryCompile(const DexFile::CodeItem* code_item,
186 uint32_t access_flags,
187 InvokeType invoke_type,
188 uint16_t class_def_idx,
189 uint32_t method_idx,
190 jobject class_loader,
191 const DexFile& dex_file) const;
192
Andreas Gampe53c913b2014-08-12 23:19:23 -0700193 CompiledMethod* JniCompile(uint32_t access_flags,
194 uint32_t method_idx,
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000195 const DexFile& dex_file) const OVERRIDE {
196 return ArtQuickJniCompileMethod(GetCompilerDriver(), access_flags, method_idx, dex_file);
197 }
Andreas Gampe53c913b2014-08-12 23:19:23 -0700198
199 uintptr_t GetEntryPointOf(mirror::ArtMethod* method) const OVERRIDE
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000200 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
201 return reinterpret_cast<uintptr_t>(method->GetEntryPointFromQuickCompiledCodePtrSize(
202 InstructionSetPointerSize(GetCompilerDriver()->GetInstructionSet())));
203 }
Andreas Gampe53c913b2014-08-12 23:19:23 -0700204
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000205 void InitCompilationUnit(CompilationUnit& cu) const OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700206
David Brazdilee690a32014-12-01 17:04:16 +0000207 void Init() OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700208
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000209 void UnInit() const OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700210
211 private:
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100212 // Whether we should run any optimization or register allocation. If false, will
213 // just run the code generation after the graph was built.
214 const bool run_optimizations_;
Calin Juravle48c2b032014-12-09 18:11:36 +0000215
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000216 // Optimize and compile `graph`.
217 CompiledMethod* CompileOptimized(HGraph* graph,
218 CodeGenerator* codegen,
219 CompilerDriver* driver,
Calin Juravleacf735c2015-02-12 15:25:22 +0000220 const DexFile& dex_file,
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000221 const DexCompilationUnit& dex_compilation_unit,
David Brazdil5e8b1372015-01-23 14:39:08 +0000222 PassInfoPrinter* pass_info) const;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000223
224 // Just compile without doing optimizations.
225 CompiledMethod* CompileBaseline(CodeGenerator* codegen,
226 CompilerDriver* driver,
227 const DexCompilationUnit& dex_compilation_unit) const;
228
Calin Juravle48c2b032014-12-09 18:11:36 +0000229 mutable OptimizingCompilerStats compilation_stats_;
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100230
Andreas Gampe53c913b2014-08-12 23:19:23 -0700231 std::unique_ptr<std::ostream> visualizer_output_;
232
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000233 // Delegate to Quick in case the optimizing compiler cannot compile a method.
234 std::unique_ptr<Compiler> delegate_;
235
Andreas Gampe53c913b2014-08-12 23:19:23 -0700236 DISALLOW_COPY_AND_ASSIGN(OptimizingCompiler);
237};
238
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100239static const int kMaximumCompilationTimeBeforeWarning = 100; /* ms */
240
241OptimizingCompiler::OptimizingCompiler(CompilerDriver* driver)
242 : Compiler(driver, kMaximumCompilationTimeBeforeWarning),
243 run_optimizations_(
Nicolas Geoffraya3d90fb2015-03-16 13:55:40 +0000244 (driver->GetCompilerOptions().GetCompilerFilter() != CompilerOptions::kTime)
245 && !driver->GetCompilerOptions().GetDebuggable()),
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000246 compilation_stats_(),
247 delegate_(Create(driver, Compiler::Kind::kQuick)) {}
David Brazdilee690a32014-12-01 17:04:16 +0000248
249void OptimizingCompiler::Init() {
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000250 delegate_->Init();
David Brazdilee690a32014-12-01 17:04:16 +0000251 // Enable C1visualizer output. Must be done in Init() because the compiler
252 // driver is not fully initialized when passed to the compiler's constructor.
253 CompilerDriver* driver = GetCompilerDriver();
David Brazdil866c0312015-01-13 21:21:31 +0000254 const std::string cfg_file_name = driver->GetDumpCfgFileName();
255 if (!cfg_file_name.empty()) {
David Brazdilee690a32014-12-01 17:04:16 +0000256 CHECK_EQ(driver->GetThreadCount(), 1U)
257 << "Graph visualizer requires the compiler to run single-threaded. "
258 << "Invoke the compiler with '-j1'.";
David Brazdil866c0312015-01-13 21:21:31 +0000259 visualizer_output_.reset(new std::ofstream(cfg_file_name));
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100260 }
261}
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000262
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000263void OptimizingCompiler::UnInit() const {
264 delegate_->UnInit();
265}
266
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100267OptimizingCompiler::~OptimizingCompiler() {
Calin Juravle48c2b032014-12-09 18:11:36 +0000268 compilation_stats_.Log();
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100269}
270
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000271void OptimizingCompiler::InitCompilationUnit(CompilationUnit& cu) const {
272 delegate_->InitCompilationUnit(cu);
273}
274
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +0000275bool OptimizingCompiler::CanCompileMethod(uint32_t method_idx ATTRIBUTE_UNUSED,
276 const DexFile& dex_file ATTRIBUTE_UNUSED,
277 CompilationUnit* cu ATTRIBUTE_UNUSED) const {
278 return true;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700279}
280
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000281static bool IsInstructionSetSupported(InstructionSet instruction_set) {
282 return instruction_set == kArm64
283 || (instruction_set == kThumb2 && !kArm32QuickCodeUseSoftFloat)
284 || instruction_set == kX86
285 || instruction_set == kX86_64;
286}
287
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000288static bool CanOptimize(const DexFile::CodeItem& code_item) {
289 // TODO: We currently cannot optimize methods with try/catch.
290 return code_item.tries_size_ == 0;
291}
292
Calin Juravle10e244f2015-01-26 18:54:32 +0000293static void RunOptimizations(HOptimization* optimizations[],
294 size_t length,
David Brazdil809658e2015-02-05 11:34:02 +0000295 PassInfoPrinter* pass_info_printer) {
Calin Juravle10e244f2015-01-26 18:54:32 +0000296 for (size_t i = 0; i < length; ++i) {
297 HOptimization* optimization = optimizations[i];
David Brazdil809658e2015-02-05 11:34:02 +0000298 {
299 PassInfo pass_info(optimization->GetPassName(), pass_info_printer);
300 optimization->Run();
301 }
Calin Juravle10e244f2015-01-26 18:54:32 +0000302 optimization->Check();
303 }
304}
305
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000306static void RunOptimizations(HGraph* graph,
307 CompilerDriver* driver,
308 OptimizingCompilerStats* stats,
Calin Juravleacf735c2015-02-12 15:25:22 +0000309 const DexFile& dex_file,
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000310 const DexCompilationUnit& dex_compilation_unit,
Calin Juravleacf735c2015-02-12 15:25:22 +0000311 PassInfoPrinter* pass_info_printer,
312 StackHandleScopeCollection* handles) {
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000313 HDeadCodeElimination dce(graph);
Nicolas Geoffray9ee66182015-01-16 12:35:40 +0000314 HConstantFolding fold1(graph);
Calin Juravleacf735c2015-02-12 15:25:22 +0000315 InstructionSimplifier simplify1(graph, stats);
David Brazdil46e2a392015-03-16 17:31:52 +0000316 HBooleanSimplifier boolean_not(graph);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000317
Nicolas Geoffray9437b782015-03-25 10:08:51 +0000318 HInliner inliner(graph, dex_compilation_unit, dex_compilation_unit, driver, stats);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000319
Nicolas Geoffray9ee66182015-01-16 12:35:40 +0000320 HConstantFolding fold2(graph);
Nicolas Geoffray86dde162015-01-26 12:54:33 +0000321 SideEffectsAnalysis side_effects(graph);
322 GVNOptimization gvn(graph, side_effects);
Nicolas Geoffray82091da2015-01-26 10:02:45 +0000323 LICM licm(graph, side_effects);
Mingyao Yangf384f882014-10-22 16:08:18 -0700324 BoundsCheckElimination bce(graph);
Calin Juravleacf735c2015-02-12 15:25:22 +0000325 ReferenceTypePropagation type_propagation(graph, dex_file, dex_compilation_unit, handles);
326 InstructionSimplifier simplify2(graph, stats, "instruction_simplifier_after_types");
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000327
Andreas Gampe71fb52f2014-12-29 17:43:08 -0800328 IntrinsicsRecognizer intrinsics(graph, dex_compilation_unit.GetDexFile(), driver);
329
Nicolas Geoffray31596742014-11-24 15:28:45 +0000330 HOptimization* optimizations[] = {
Andreas Gampe71fb52f2014-12-29 17:43:08 -0800331 &intrinsics,
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000332 &dce,
Nicolas Geoffray9ee66182015-01-16 12:35:40 +0000333 &fold1,
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000334 &simplify1,
David Brazdil46e2a392015-03-16 17:31:52 +0000335 // BooleanSimplifier depends on the InstructionSimplifier removing redundant
336 // suspend checks to recognize empty blocks.
337 &boolean_not,
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000338 &inliner,
Nicolas Geoffray9ee66182015-01-16 12:35:40 +0000339 &fold2,
Nicolas Geoffray86dde162015-01-26 12:54:33 +0000340 &side_effects,
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000341 &gvn,
Nicolas Geoffray82091da2015-01-26 10:02:45 +0000342 &licm,
Mingyao Yangf384f882014-10-22 16:08:18 -0700343 &bce,
Calin Juravle10e244f2015-01-26 18:54:32 +0000344 &type_propagation,
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000345 &simplify2
Nicolas Geoffray31596742014-11-24 15:28:45 +0000346 };
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000347
David Brazdil809658e2015-02-05 11:34:02 +0000348 RunOptimizations(optimizations, arraysize(optimizations), pass_info_printer);
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000349}
350
Nicolas Geoffray376b2bb2014-12-09 14:26:32 +0000351// The stack map we generate must be 4-byte aligned on ARM. Since existing
352// maps are generated alongside these stack maps, we must also align them.
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800353static ArrayRef<const uint8_t> AlignVectorSize(std::vector<uint8_t>& vector) {
Nicolas Geoffray376b2bb2014-12-09 14:26:32 +0000354 size_t size = vector.size();
355 size_t aligned_size = RoundUp(size, 4);
356 for (; size < aligned_size; ++size) {
357 vector.push_back(0);
358 }
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800359 return ArrayRef<const uint8_t>(vector);
Nicolas Geoffray376b2bb2014-12-09 14:26:32 +0000360}
361
Andreas Gampec2bcafe2015-04-10 10:49:32 -0700362static void AllocateRegisters(HGraph* graph,
363 CodeGenerator* codegen,
364 PassInfoPrinter* pass_info_printer) {
365 PrepareForRegisterAllocation(graph).Run();
Nicolas Geoffray0d9f17d2015-04-15 14:17:44 +0100366 SsaLivenessAnalysis liveness(graph, codegen);
Andreas Gampec2bcafe2015-04-10 10:49:32 -0700367 {
368 PassInfo pass_info(SsaLivenessAnalysis::kLivenessPassName, pass_info_printer);
369 liveness.Analyze();
370 }
371 {
372 PassInfo pass_info(RegisterAllocator::kRegisterAllocatorPassName, pass_info_printer);
373 RegisterAllocator(graph->GetArena(), codegen, liveness).AllocateRegisters();
374 }
375}
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000376
377CompiledMethod* OptimizingCompiler::CompileOptimized(HGraph* graph,
378 CodeGenerator* codegen,
379 CompilerDriver* compiler_driver,
Calin Juravleacf735c2015-02-12 15:25:22 +0000380 const DexFile& dex_file,
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000381 const DexCompilationUnit& dex_compilation_unit,
David Brazdil809658e2015-02-05 11:34:02 +0000382 PassInfoPrinter* pass_info_printer) const {
Calin Juravleacf735c2015-02-12 15:25:22 +0000383 StackHandleScopeCollection handles(Thread::Current());
384 RunOptimizations(graph, compiler_driver, &compilation_stats_,
385 dex_file, dex_compilation_unit, pass_info_printer, &handles);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000386
Andreas Gampec2bcafe2015-04-10 10:49:32 -0700387 AllocateRegisters(graph, codegen, pass_info_printer);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000388
389 CodeVectorAllocator allocator;
390 codegen->CompileOptimized(&allocator);
391
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100392 DefaultSrcMap src_mapping_table;
393 if (compiler_driver->GetCompilerOptions().GetIncludeDebugSymbols()) {
394 codegen->BuildSourceMap(&src_mapping_table);
395 }
396
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000397 std::vector<uint8_t> stack_map;
398 codegen->BuildStackMaps(&stack_map);
399
400 compilation_stats_.RecordStat(MethodCompilationStat::kCompiledOptimized);
401
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100402 return CompiledMethod::SwapAllocCompiledMethod(
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000403 compiler_driver,
404 codegen->GetInstructionSet(),
405 ArrayRef<const uint8_t>(allocator.GetMemory()),
Roland Levillainaa9b7c42015-02-17 15:40:09 +0000406 // Follow Quick's behavior and set the frame size to zero if it is
407 // considered "empty" (see the definition of
408 // art::CodeGenerator::HasEmptyFrame).
409 codegen->HasEmptyFrame() ? 0 : codegen->GetFrameSize(),
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000410 codegen->GetCoreSpillMask(),
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000411 codegen->GetFpuSpillMask(),
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100412 &src_mapping_table,
413 ArrayRef<const uint8_t>(), // mapping_table.
414 ArrayRef<const uint8_t>(stack_map),
415 ArrayRef<const uint8_t>(), // native_gc_map.
416 ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data()),
417 ArrayRef<const LinkerPatch>());
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000418}
419
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000420CompiledMethod* OptimizingCompiler::CompileBaseline(
421 CodeGenerator* codegen,
422 CompilerDriver* compiler_driver,
423 const DexCompilationUnit& dex_compilation_unit) const {
424 CodeVectorAllocator allocator;
425 codegen->CompileBaseline(&allocator);
426
427 std::vector<uint8_t> mapping_table;
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100428 codegen->BuildMappingTable(&mapping_table);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000429 DefaultSrcMap src_mapping_table;
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100430 if (compiler_driver->GetCompilerOptions().GetIncludeDebugSymbols()) {
431 codegen->BuildSourceMap(&src_mapping_table);
432 }
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000433 std::vector<uint8_t> vmap_table;
434 codegen->BuildVMapTable(&vmap_table);
435 std::vector<uint8_t> gc_map;
436 codegen->BuildNativeGCMap(&gc_map, dex_compilation_unit);
437
438 compilation_stats_.RecordStat(MethodCompilationStat::kCompiledBaseline);
Roland Levillainaa9b7c42015-02-17 15:40:09 +0000439 return CompiledMethod::SwapAllocCompiledMethod(
440 compiler_driver,
441 codegen->GetInstructionSet(),
442 ArrayRef<const uint8_t>(allocator.GetMemory()),
443 // Follow Quick's behavior and set the frame size to zero if it is
444 // considered "empty" (see the definition of
445 // art::CodeGenerator::HasEmptyFrame).
446 codegen->HasEmptyFrame() ? 0 : codegen->GetFrameSize(),
447 codegen->GetCoreSpillMask(),
448 codegen->GetFpuSpillMask(),
449 &src_mapping_table,
450 AlignVectorSize(mapping_table),
451 AlignVectorSize(vmap_table),
452 AlignVectorSize(gc_map),
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100453 ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data()),
454 ArrayRef<const LinkerPatch>());
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000455}
456
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000457CompiledMethod* OptimizingCompiler::TryCompile(const DexFile::CodeItem* code_item,
458 uint32_t access_flags,
459 InvokeType invoke_type,
460 uint16_t class_def_idx,
461 uint32_t method_idx,
462 jobject class_loader,
463 const DexFile& dex_file) const {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700464 UNUSED(invoke_type);
David Brazdil5e8b1372015-01-23 14:39:08 +0000465 std::string method_name = PrettyMethod(method_idx, dex_file);
Calin Juravle48c2b032014-12-09 18:11:36 +0000466 compilation_stats_.RecordStat(MethodCompilationStat::kAttemptCompilation);
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000467 CompilerDriver* compiler_driver = GetCompilerDriver();
468 InstructionSet instruction_set = compiler_driver->GetInstructionSet();
Nicolas Geoffray8d486732014-07-16 16:23:40 +0100469 // Always use the thumb2 assembler: some runtime functionality (like implicit stack
470 // overflow checks) assume thumb2.
471 if (instruction_set == kArm) {
472 instruction_set = kThumb2;
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100473 }
474
475 // Do not attempt to compile on architectures we do not support.
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000476 if (!IsInstructionSetSupported(instruction_set)) {
Calin Juravle48c2b032014-12-09 18:11:36 +0000477 compilation_stats_.RecordStat(MethodCompilationStat::kNotCompiledUnsupportedIsa);
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100478 return nullptr;
479 }
480
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000481 if (Compiler::IsPathologicalCase(*code_item, method_idx, dex_file)) {
Calin Juravle48c2b032014-12-09 18:11:36 +0000482 compilation_stats_.RecordStat(MethodCompilationStat::kNotCompiledPathological);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000483 return nullptr;
484 }
485
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000486 // Implementation of the space filter: do not compile a code item whose size in
487 // code units is bigger than 256.
488 static constexpr size_t kSpaceFilterOptimizingThreshold = 256;
489 const CompilerOptions& compiler_options = compiler_driver->GetCompilerOptions();
490 if ((compiler_options.GetCompilerFilter() == CompilerOptions::kSpace)
491 && (code_item->insns_size_in_code_units_ > kSpaceFilterOptimizingThreshold)) {
492 compilation_stats_.RecordStat(MethodCompilationStat::kNotCompiledSpaceFilter);
493 return nullptr;
494 }
495
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +0000496 DexCompilationUnit dex_compilation_unit(
497 nullptr, class_loader, art::Runtime::Current()->GetClassLinker(), dex_file, code_item,
Ian Rogers72d32622014-05-06 16:20:11 -0700498 class_def_idx, method_idx, access_flags,
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000499 compiler_driver->GetVerifiedMethod(&dex_file, method_idx));
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +0000500
Nicolas Geoffray579ea7d2015-03-24 17:28:38 +0000501 ArenaAllocator arena(Runtime::Current()->GetArenaPool());
Nicolas Geoffraye0fe7ae2015-03-09 10:02:49 +0000502 HGraph* graph = new (&arena) HGraph(
503 &arena, compiler_driver->GetCompilerOptions().GetDebuggable());
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000504
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +0000505 // For testing purposes, we put a special marker on method names that should be compiled
506 // with this compiler. This makes sure we're not regressing.
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000507 bool shouldCompile = method_name.find("$opt$") != std::string::npos;
Nicolas Geoffraya3d90fb2015-03-16 13:55:40 +0000508 bool shouldOptimize = method_name.find("$opt$reg$") != std::string::npos && run_optimizations_;
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +0000509
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000510 std::unique_ptr<CodeGenerator> codegen(
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000511 CodeGenerator::Create(graph,
512 instruction_set,
513 *compiler_driver->GetInstructionSetFeatures(),
514 compiler_driver->GetCompilerOptions()));
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000515 if (codegen.get() == nullptr) {
Zheng Xu5667fdb2014-10-23 18:29:55 +0800516 CHECK(!shouldCompile) << "Could not find code generator for optimizing compiler";
Calin Juravle48c2b032014-12-09 18:11:36 +0000517 compilation_stats_.RecordStat(MethodCompilationStat::kNotCompiledNoCodegen);
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000518 return nullptr;
519 }
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100520 codegen->GetAssembler()->cfi().SetEnabled(
David Srbecky8dc73242015-04-12 11:40:39 +0100521 compiler_driver->GetCompilerOptions().GetIncludeCFI());
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000522
David Brazdil809658e2015-02-05 11:34:02 +0000523 PassInfoPrinter pass_info_printer(graph,
524 method_name.c_str(),
525 *codegen.get(),
526 visualizer_output_.get(),
527 compiler_driver);
David Brazdil5e8b1372015-01-23 14:39:08 +0000528
529 HGraphBuilder builder(graph,
530 &dex_compilation_unit,
531 &dex_compilation_unit,
532 &dex_file,
533 compiler_driver,
534 &compilation_stats_);
535
536 VLOG(compiler) << "Building " << method_name;
537
David Brazdil809658e2015-02-05 11:34:02 +0000538 {
Andreas Gampe7c3952f2015-02-19 18:21:24 -0800539 PassInfo pass_info(HGraphBuilder::kBuilderPassName, &pass_info_printer);
David Brazdil809658e2015-02-05 11:34:02 +0000540 if (!builder.BuildGraph(*code_item)) {
541 CHECK(!shouldCompile) << "Could not build graph in optimizing compiler";
542 return nullptr;
543 }
David Brazdil5e8b1372015-01-23 14:39:08 +0000544 }
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100545
Calin Juravle48c2b032014-12-09 18:11:36 +0000546 bool can_optimize = CanOptimize(*code_item);
547 bool can_allocate_registers = RegisterAllocator::CanAllocateRegistersFor(*graph, instruction_set);
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000548
549 // `run_optimizations_` is set explicitly (either through a compiler filter
550 // or the debuggable flag). If it is set, we can run baseline. Otherwise, we fall back
551 // to Quick.
552 bool can_use_baseline = !run_optimizations_;
Calin Juravle48c2b032014-12-09 18:11:36 +0000553 if (run_optimizations_ && can_optimize && can_allocate_registers) {
David Brazdil5e8b1372015-01-23 14:39:08 +0000554 VLOG(compiler) << "Optimizing " << method_name;
555
David Brazdil809658e2015-02-05 11:34:02 +0000556 {
Andreas Gampe7c3952f2015-02-19 18:21:24 -0800557 PassInfo pass_info(SsaBuilder::kSsaBuilderPassName, &pass_info_printer);
David Brazdil809658e2015-02-05 11:34:02 +0000558 if (!graph->TryBuildingSsa()) {
559 // We could not transform the graph to SSA, bailout.
560 LOG(INFO) << "Skipping compilation of " << method_name << ": it contains a non natural loop";
561 compilation_stats_.RecordStat(MethodCompilationStat::kNotCompiledCannotBuildSSA);
562 return nullptr;
563 }
Nicolas Geoffrayf5370122014-12-02 11:51:19 +0000564 }
David Brazdil5e8b1372015-01-23 14:39:08 +0000565
566 return CompileOptimized(graph,
567 codegen.get(),
568 compiler_driver,
Calin Juravleacf735c2015-02-12 15:25:22 +0000569 dex_file,
David Brazdil5e8b1372015-01-23 14:39:08 +0000570 dex_compilation_unit,
David Brazdil809658e2015-02-05 11:34:02 +0000571 &pass_info_printer);
Nicolas Geoffray234d69d2015-03-09 10:28:50 +0000572 } else if (shouldOptimize && can_allocate_registers) {
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100573 LOG(FATAL) << "Could not allocate registers in optimizing compiler";
Zheng Xu5667fdb2014-10-23 18:29:55 +0800574 UNREACHABLE();
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000575 } else if (can_use_baseline) {
David Brazdil5e8b1372015-01-23 14:39:08 +0000576 VLOG(compiler) << "Compile baseline " << method_name;
Calin Juravle48c2b032014-12-09 18:11:36 +0000577
578 if (!run_optimizations_) {
579 compilation_stats_.RecordStat(MethodCompilationStat::kNotOptimizedDisabled);
580 } else if (!can_optimize) {
581 compilation_stats_.RecordStat(MethodCompilationStat::kNotOptimizedTryCatch);
582 } else if (!can_allocate_registers) {
583 compilation_stats_.RecordStat(MethodCompilationStat::kNotOptimizedRegisterAllocator);
584 }
585
David Brazdil5e8b1372015-01-23 14:39:08 +0000586 return CompileBaseline(codegen.get(), compiler_driver, dex_compilation_unit);
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000587 } else {
588 return nullptr;
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100589 }
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000590}
591
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000592CompiledMethod* OptimizingCompiler::Compile(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,
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100597 jobject jclass_loader,
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000598 const DexFile& dex_file) const {
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100599 CompilerDriver* compiler_driver = GetCompilerDriver();
600 CompiledMethod* method = nullptr;
601 if (compiler_driver->IsMethodVerifiedWithoutFailures(method_idx, class_def_idx, dex_file)) {
602 method = TryCompile(code_item, access_flags, invoke_type, class_def_idx,
603 method_idx, jclass_loader, dex_file);
604 } else {
605 if (compiler_driver->GetCompilerOptions().VerifyAtRuntime()) {
606 compilation_stats_.RecordStat(MethodCompilationStat::kNotCompiledVerifyAtRuntime);
607 } else {
608 compilation_stats_.RecordStat(MethodCompilationStat::kNotCompiledClassNotVerified);
609 }
610 }
611
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000612 if (method != nullptr) {
613 return method;
614 }
Nicolas Geoffray12be74e2015-03-30 13:29:08 +0100615 method = delegate_->Compile(code_item, access_flags, invoke_type, class_def_idx, method_idx,
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100616 jclass_loader, dex_file);
Nicolas Geoffray12be74e2015-03-30 13:29:08 +0100617
618 if (method != nullptr) {
619 compilation_stats_.RecordStat(MethodCompilationStat::kCompiledQuick);
620 }
621 return method;
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000622}
623
Andreas Gampe53c913b2014-08-12 23:19:23 -0700624Compiler* CreateOptimizingCompiler(CompilerDriver* driver) {
625 return new OptimizingCompiler(driver);
626}
627
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000628} // namespace art