blob: 5ce73baef2b26bf6e0a4b9670a27b5fe603b4628 [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"
Andreas Gampe53c913b2014-08-12 23:19:23 -070029#include "compiler.h"
Roland Levillain75be2832014-10-17 17:02:00 +010030#include "constant_folding.h"
31#include "dead_code_elimination.h"
Andreas Gampe71fb52f2014-12-29 17:43:08 -080032#include "dex/quick/dex_file_to_method_inliner_map.h"
Nicolas Geoffray787c3072014-03-17 10:20:19 +000033#include "driver/compiler_driver.h"
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000034#include "driver/dex_compilation_unit.h"
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +000035#include "elf_writer_quick.h"
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010036#include "graph_visualizer.h"
Nicolas Geoffrayd31cf3d2014-09-08 17:30:24 +010037#include "gvn.h"
Nicolas Geoffraye53798a2014-12-01 10:31:54 +000038#include "inliner.h"
Nicolas Geoffray3c049742014-09-24 18:10:46 +010039#include "instruction_simplifier.h"
Andreas Gampe71fb52f2014-12-29 17:43:08 -080040#include "intrinsics.h"
Nicolas Geoffray82091da2015-01-26 10:02:45 +000041#include "licm.h"
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +000042#include "jni/quick/jni_compiler.h"
43#include "mirror/art_method-inl.h"
Nicolas Geoffray787c3072014-03-17 10:20:19 +000044#include "nodes.h"
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +010045#include "prepare_for_register_allocation.h"
Nicolas Geoffraya7062e02014-05-22 12:50:17 +010046#include "register_allocator.h"
Nicolas Geoffray827eedb2015-01-26 15:18:36 +000047#include "side_effects_analysis.h"
Nicolas Geoffray31596742014-11-24 15:28:45 +000048#include "ssa_builder.h"
Nicolas Geoffray7dc206a2014-07-11 09:49:49 +010049#include "ssa_phi_elimination.h"
Nicolas Geoffray804d0932014-05-02 08:46:00 +010050#include "ssa_liveness_analysis.h"
Calin Juravle10e244f2015-01-26 18:54:32 +000051#include "reference_type_propagation.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000052
53namespace art {
54
Nicolas Geoffray787c3072014-03-17 10:20:19 +000055/**
56 * Used by the code generator, to allocate the code in a vector.
57 */
58class CodeVectorAllocator FINAL : public CodeAllocator {
59 public:
Andreas Gampe7c3952f2015-02-19 18:21:24 -080060 CodeVectorAllocator() : size_(0) {}
Nicolas Geoffray787c3072014-03-17 10:20:19 +000061
62 virtual uint8_t* Allocate(size_t size) {
63 size_ = size;
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000064 memory_.resize(size);
Nicolas Geoffray787c3072014-03-17 10:20:19 +000065 return &memory_[0];
66 }
67
68 size_t GetSize() const { return size_; }
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000069 const std::vector<uint8_t>& GetMemory() const { return memory_; }
Nicolas Geoffray787c3072014-03-17 10:20:19 +000070
71 private:
72 std::vector<uint8_t> memory_;
73 size_t size_;
74
75 DISALLOW_COPY_AND_ASSIGN(CodeVectorAllocator);
76};
77
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010078/**
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010079 * Filter to apply to the visualizer. Methods whose name contain that filter will
David Brazdilee690a32014-12-01 17:04:16 +000080 * be dumped.
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010081 */
82static const char* kStringFilter = "";
83
David Brazdil809658e2015-02-05 11:34:02 +000084class PassInfo;
85
David Brazdil5e8b1372015-01-23 14:39:08 +000086class PassInfoPrinter : public ValueObject {
87 public:
88 PassInfoPrinter(HGraph* graph,
89 const char* method_name,
90 const CodeGenerator& codegen,
91 std::ostream* visualizer_output,
David Brazdil809658e2015-02-05 11:34:02 +000092 CompilerDriver* compiler_driver)
David Brazdil5e8b1372015-01-23 14:39:08 +000093 : method_name_(method_name),
David Brazdil809658e2015-02-05 11:34:02 +000094 timing_logger_enabled_(compiler_driver->GetDumpPasses()),
David Brazdil5e8b1372015-01-23 14:39:08 +000095 timing_logger_(method_name, true, true),
David Brazdil809658e2015-02-05 11:34:02 +000096 visualizer_enabled_(!compiler_driver->GetDumpCfgFileName().empty()),
David Brazdil5e8b1372015-01-23 14:39:08 +000097 visualizer_(visualizer_output, graph, codegen, method_name_) {
98 if (strstr(method_name, kStringFilter) == nullptr) {
99 timing_logger_enabled_ = visualizer_enabled_ = false;
100 }
101 }
102
David Brazdil5e8b1372015-01-23 14:39:08 +0000103 ~PassInfoPrinter() {
104 if (timing_logger_enabled_) {
David Brazdil5e8b1372015-01-23 14:39:08 +0000105 LOG(INFO) << "TIMINGS " << method_name_;
106 LOG(INFO) << Dumpable<TimingLogger>(timing_logger_);
107 }
108 }
109
110 private:
David Brazdil809658e2015-02-05 11:34:02 +0000111 void StartPass(const char* pass_name) {
112 // Dump graph first, then start timer.
113 if (visualizer_enabled_) {
114 visualizer_.DumpGraph(pass_name, /* is_after_pass */ false);
115 }
116 if (timing_logger_enabled_) {
117 timing_logger_.StartTiming(pass_name);
118 }
119 }
120
121 void EndPass(const char* pass_name) {
122 // Pause timer first, then dump graph.
123 if (timing_logger_enabled_) {
124 timing_logger_.EndTiming();
125 }
126 if (visualizer_enabled_) {
127 visualizer_.DumpGraph(pass_name, /* is_after_pass */ true);
128 }
129 }
130
David Brazdil5e8b1372015-01-23 14:39:08 +0000131 const char* method_name_;
132
133 bool timing_logger_enabled_;
David Brazdil5e8b1372015-01-23 14:39:08 +0000134 TimingLogger timing_logger_;
135
136 bool visualizer_enabled_;
137 HGraphVisualizer visualizer_;
138
David Brazdil809658e2015-02-05 11:34:02 +0000139 friend PassInfo;
140
David Brazdil5e8b1372015-01-23 14:39:08 +0000141 DISALLOW_COPY_AND_ASSIGN(PassInfoPrinter);
142};
143
David Brazdil809658e2015-02-05 11:34:02 +0000144class PassInfo : public ValueObject {
145 public:
146 PassInfo(const char *pass_name, PassInfoPrinter* pass_info_printer)
147 : pass_name_(pass_name),
148 pass_info_printer_(pass_info_printer) {
149 pass_info_printer_->StartPass(pass_name_);
150 }
151
152 ~PassInfo() {
153 pass_info_printer_->EndPass(pass_name_);
154 }
155
156 private:
157 const char* const pass_name_;
158 PassInfoPrinter* const pass_info_printer_;
159};
160
Andreas Gampe53c913b2014-08-12 23:19:23 -0700161class OptimizingCompiler FINAL : public Compiler {
162 public:
163 explicit OptimizingCompiler(CompilerDriver* driver);
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100164 ~OptimizingCompiler();
Andreas Gampe53c913b2014-08-12 23:19:23 -0700165
166 bool CanCompileMethod(uint32_t method_idx, const DexFile& dex_file, CompilationUnit* cu) const
167 OVERRIDE;
168
169 CompiledMethod* Compile(const DexFile::CodeItem* code_item,
170 uint32_t access_flags,
171 InvokeType invoke_type,
172 uint16_t class_def_idx,
173 uint32_t method_idx,
174 jobject class_loader,
175 const DexFile& dex_file) const OVERRIDE;
176
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000177 CompiledMethod* TryCompile(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;
184
Andreas Gampe53c913b2014-08-12 23:19:23 -0700185 CompiledMethod* JniCompile(uint32_t access_flags,
186 uint32_t method_idx,
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000187 const DexFile& dex_file) const OVERRIDE {
188 return ArtQuickJniCompileMethod(GetCompilerDriver(), access_flags, method_idx, dex_file);
189 }
Andreas Gampe53c913b2014-08-12 23:19:23 -0700190
191 uintptr_t GetEntryPointOf(mirror::ArtMethod* method) const OVERRIDE
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000192 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
193 return reinterpret_cast<uintptr_t>(method->GetEntryPointFromQuickCompiledCodePtrSize(
194 InstructionSetPointerSize(GetCompilerDriver()->GetInstructionSet())));
195 }
Andreas Gampe53c913b2014-08-12 23:19:23 -0700196
197 bool WriteElf(art::File* file,
198 OatWriter* oat_writer,
199 const std::vector<const art::DexFile*>& dex_files,
200 const std::string& android_root,
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000201 bool is_host) const OVERRIDE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
202 return art::ElfWriterQuick32::Create(file, oat_writer, dex_files, android_root, is_host,
203 *GetCompilerDriver());
204 }
Andreas Gampe53c913b2014-08-12 23:19:23 -0700205
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000206 void InitCompilationUnit(CompilationUnit& cu) const OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700207
David Brazdilee690a32014-12-01 17:04:16 +0000208 void Init() OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700209
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000210 void UnInit() const OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700211
212 private:
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100213 // Whether we should run any optimization or register allocation. If false, will
214 // just run the code generation after the graph was built.
215 const bool run_optimizations_;
Calin Juravle48c2b032014-12-09 18:11:36 +0000216
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000217 // Optimize and compile `graph`.
218 CompiledMethod* CompileOptimized(HGraph* graph,
219 CodeGenerator* codegen,
220 CompilerDriver* driver,
Calin Juravleacf735c2015-02-12 15:25:22 +0000221 const DexFile& dex_file,
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000222 const DexCompilationUnit& dex_compilation_unit,
David Brazdil5e8b1372015-01-23 14:39:08 +0000223 PassInfoPrinter* pass_info) const;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000224
225 // Just compile without doing optimizations.
226 CompiledMethod* CompileBaseline(CodeGenerator* codegen,
227 CompilerDriver* driver,
228 const DexCompilationUnit& dex_compilation_unit) const;
229
Calin Juravle48c2b032014-12-09 18:11:36 +0000230 mutable OptimizingCompilerStats compilation_stats_;
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100231
Andreas Gampe53c913b2014-08-12 23:19:23 -0700232 std::unique_ptr<std::ostream> visualizer_output_;
233
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000234 // Delegate to Quick in case the optimizing compiler cannot compile a method.
235 std::unique_ptr<Compiler> delegate_;
236
Andreas Gampe53c913b2014-08-12 23:19:23 -0700237 DISALLOW_COPY_AND_ASSIGN(OptimizingCompiler);
238};
239
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100240static const int kMaximumCompilationTimeBeforeWarning = 100; /* ms */
241
242OptimizingCompiler::OptimizingCompiler(CompilerDriver* driver)
243 : Compiler(driver, kMaximumCompilationTimeBeforeWarning),
244 run_optimizations_(
Nicolas Geoffraya3d90fb2015-03-16 13:55:40 +0000245 (driver->GetCompilerOptions().GetCompilerFilter() != CompilerOptions::kTime)
246 && !driver->GetCompilerOptions().GetDebuggable()),
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000247 compilation_stats_(),
248 delegate_(Create(driver, Compiler::Kind::kQuick)) {}
David Brazdilee690a32014-12-01 17:04:16 +0000249
250void OptimizingCompiler::Init() {
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000251 delegate_->Init();
David Brazdilee690a32014-12-01 17:04:16 +0000252 // Enable C1visualizer output. Must be done in Init() because the compiler
253 // driver is not fully initialized when passed to the compiler's constructor.
254 CompilerDriver* driver = GetCompilerDriver();
David Brazdil866c0312015-01-13 21:21:31 +0000255 const std::string cfg_file_name = driver->GetDumpCfgFileName();
256 if (!cfg_file_name.empty()) {
David Brazdilee690a32014-12-01 17:04:16 +0000257 CHECK_EQ(driver->GetThreadCount(), 1U)
258 << "Graph visualizer requires the compiler to run single-threaded. "
259 << "Invoke the compiler with '-j1'.";
David Brazdil866c0312015-01-13 21:21:31 +0000260 visualizer_output_.reset(new std::ofstream(cfg_file_name));
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100261 }
262}
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000263
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000264void OptimizingCompiler::UnInit() const {
265 delegate_->UnInit();
266}
267
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100268OptimizingCompiler::~OptimizingCompiler() {
Calin Juravle48c2b032014-12-09 18:11:36 +0000269 compilation_stats_.Log();
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100270}
271
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000272void OptimizingCompiler::InitCompilationUnit(CompilationUnit& cu) const {
273 delegate_->InitCompilationUnit(cu);
274}
275
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +0000276bool OptimizingCompiler::CanCompileMethod(uint32_t method_idx ATTRIBUTE_UNUSED,
277 const DexFile& dex_file ATTRIBUTE_UNUSED,
278 CompilationUnit* cu ATTRIBUTE_UNUSED) const {
279 return true;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700280}
281
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000282static bool IsInstructionSetSupported(InstructionSet instruction_set) {
283 return instruction_set == kArm64
284 || (instruction_set == kThumb2 && !kArm32QuickCodeUseSoftFloat)
285 || instruction_set == kX86
286 || instruction_set == kX86_64;
287}
288
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000289static bool CanOptimize(const DexFile::CodeItem& code_item) {
290 // TODO: We currently cannot optimize methods with try/catch.
291 return code_item.tries_size_ == 0;
292}
293
Calin Juravle10e244f2015-01-26 18:54:32 +0000294static void RunOptimizations(HOptimization* optimizations[],
295 size_t length,
David Brazdil809658e2015-02-05 11:34:02 +0000296 PassInfoPrinter* pass_info_printer) {
Calin Juravle10e244f2015-01-26 18:54:32 +0000297 for (size_t i = 0; i < length; ++i) {
298 HOptimization* optimization = optimizations[i];
David Brazdil809658e2015-02-05 11:34:02 +0000299 {
300 PassInfo pass_info(optimization->GetPassName(), pass_info_printer);
301 optimization->Run();
302 }
Calin Juravle10e244f2015-01-26 18:54:32 +0000303 optimization->Check();
304 }
305}
306
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000307static void RunOptimizations(HGraph* graph,
308 CompilerDriver* driver,
309 OptimizingCompilerStats* stats,
Calin Juravleacf735c2015-02-12 15:25:22 +0000310 const DexFile& dex_file,
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000311 const DexCompilationUnit& dex_compilation_unit,
Calin Juravleacf735c2015-02-12 15:25:22 +0000312 PassInfoPrinter* pass_info_printer,
313 StackHandleScopeCollection* handles) {
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000314 HDeadCodeElimination dce(graph);
Nicolas Geoffray9ee66182015-01-16 12:35:40 +0000315 HConstantFolding fold1(graph);
Calin Juravleacf735c2015-02-12 15:25:22 +0000316 InstructionSimplifier simplify1(graph, stats);
David Brazdil46e2a392015-03-16 17:31:52 +0000317 HBooleanSimplifier boolean_not(graph);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000318
Nicolas Geoffray9437b782015-03-25 10:08:51 +0000319 HInliner inliner(graph, dex_compilation_unit, dex_compilation_unit, driver, stats);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000320
Nicolas Geoffray9ee66182015-01-16 12:35:40 +0000321 HConstantFolding fold2(graph);
Nicolas Geoffray86dde162015-01-26 12:54:33 +0000322 SideEffectsAnalysis side_effects(graph);
323 GVNOptimization gvn(graph, side_effects);
Nicolas Geoffray82091da2015-01-26 10:02:45 +0000324 LICM licm(graph, side_effects);
Mingyao Yangf384f882014-10-22 16:08:18 -0700325 BoundsCheckElimination bce(graph);
Calin Juravleacf735c2015-02-12 15:25:22 +0000326 ReferenceTypePropagation type_propagation(graph, dex_file, dex_compilation_unit, handles);
327 InstructionSimplifier simplify2(graph, stats, "instruction_simplifier_after_types");
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000328
Andreas Gampe71fb52f2014-12-29 17:43:08 -0800329 IntrinsicsRecognizer intrinsics(graph, dex_compilation_unit.GetDexFile(), driver);
330
Nicolas Geoffray31596742014-11-24 15:28:45 +0000331 HOptimization* optimizations[] = {
Andreas Gampe71fb52f2014-12-29 17:43:08 -0800332 &intrinsics,
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000333 &dce,
Nicolas Geoffray9ee66182015-01-16 12:35:40 +0000334 &fold1,
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000335 &simplify1,
David Brazdil46e2a392015-03-16 17:31:52 +0000336 // BooleanSimplifier depends on the InstructionSimplifier removing redundant
337 // suspend checks to recognize empty blocks.
338 &boolean_not,
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000339 &inliner,
Nicolas Geoffray9ee66182015-01-16 12:35:40 +0000340 &fold2,
Nicolas Geoffray86dde162015-01-26 12:54:33 +0000341 &side_effects,
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000342 &gvn,
Nicolas Geoffray82091da2015-01-26 10:02:45 +0000343 &licm,
Mingyao Yangf384f882014-10-22 16:08:18 -0700344 &bce,
Calin Juravle10e244f2015-01-26 18:54:32 +0000345 &type_propagation,
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000346 &simplify2
Nicolas Geoffray31596742014-11-24 15:28:45 +0000347 };
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000348
David Brazdil809658e2015-02-05 11:34:02 +0000349 RunOptimizations(optimizations, arraysize(optimizations), pass_info_printer);
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000350}
351
Nicolas Geoffray376b2bb2014-12-09 14:26:32 +0000352// The stack map we generate must be 4-byte aligned on ARM. Since existing
353// maps are generated alongside these stack maps, we must also align them.
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800354static ArrayRef<const uint8_t> AlignVectorSize(std::vector<uint8_t>& vector) {
Nicolas Geoffray376b2bb2014-12-09 14:26:32 +0000355 size_t size = vector.size();
356 size_t aligned_size = RoundUp(size, 4);
357 for (; size < aligned_size; ++size) {
358 vector.push_back(0);
359 }
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800360 return ArrayRef<const uint8_t>(vector);
Nicolas Geoffray376b2bb2014-12-09 14:26:32 +0000361}
362
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000363
364CompiledMethod* OptimizingCompiler::CompileOptimized(HGraph* graph,
365 CodeGenerator* codegen,
366 CompilerDriver* compiler_driver,
Calin Juravleacf735c2015-02-12 15:25:22 +0000367 const DexFile& dex_file,
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000368 const DexCompilationUnit& dex_compilation_unit,
David Brazdil809658e2015-02-05 11:34:02 +0000369 PassInfoPrinter* pass_info_printer) const {
Calin Juravleacf735c2015-02-12 15:25:22 +0000370 StackHandleScopeCollection handles(Thread::Current());
371 RunOptimizations(graph, compiler_driver, &compilation_stats_,
372 dex_file, dex_compilation_unit, pass_info_printer, &handles);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000373
374 PrepareForRegisterAllocation(graph).Run();
375 SsaLivenessAnalysis liveness(*graph, codegen);
David Brazdil809658e2015-02-05 11:34:02 +0000376 {
Andreas Gampe7c3952f2015-02-19 18:21:24 -0800377 PassInfo pass_info(SsaLivenessAnalysis::kLivenessPassName, pass_info_printer);
David Brazdil809658e2015-02-05 11:34:02 +0000378 liveness.Analyze();
379 }
380 {
Andreas Gampe7c3952f2015-02-19 18:21:24 -0800381 PassInfo pass_info(RegisterAllocator::kRegisterAllocatorPassName, pass_info_printer);
David Brazdil809658e2015-02-05 11:34:02 +0000382 RegisterAllocator(graph->GetArena(), codegen, liveness).AllocateRegisters();
383 }
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000384
385 CodeVectorAllocator allocator;
386 codegen->CompileOptimized(&allocator);
387
388 std::vector<uint8_t> stack_map;
389 codegen->BuildStackMaps(&stack_map);
390
391 compilation_stats_.RecordStat(MethodCompilationStat::kCompiledOptimized);
392
393 return CompiledMethod::SwapAllocCompiledMethodStackMap(
394 compiler_driver,
395 codegen->GetInstructionSet(),
396 ArrayRef<const uint8_t>(allocator.GetMemory()),
Roland Levillainaa9b7c42015-02-17 15:40:09 +0000397 // Follow Quick's behavior and set the frame size to zero if it is
398 // considered "empty" (see the definition of
399 // art::CodeGenerator::HasEmptyFrame).
400 codegen->HasEmptyFrame() ? 0 : codegen->GetFrameSize(),
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000401 codegen->GetCoreSpillMask(),
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000402 codegen->GetFpuSpillMask(),
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000403 ArrayRef<const uint8_t>(stack_map));
404}
405
406
407CompiledMethod* OptimizingCompiler::CompileBaseline(
408 CodeGenerator* codegen,
409 CompilerDriver* compiler_driver,
410 const DexCompilationUnit& dex_compilation_unit) const {
411 CodeVectorAllocator allocator;
412 codegen->CompileBaseline(&allocator);
413
414 std::vector<uint8_t> mapping_table;
415 DefaultSrcMap src_mapping_table;
416 bool include_debug_symbol = compiler_driver->GetCompilerOptions().GetIncludeDebugSymbols();
417 codegen->BuildMappingTable(&mapping_table, include_debug_symbol ? &src_mapping_table : nullptr);
418 std::vector<uint8_t> vmap_table;
419 codegen->BuildVMapTable(&vmap_table);
420 std::vector<uint8_t> gc_map;
421 codegen->BuildNativeGCMap(&gc_map, dex_compilation_unit);
422
423 compilation_stats_.RecordStat(MethodCompilationStat::kCompiledBaseline);
Roland Levillainaa9b7c42015-02-17 15:40:09 +0000424 return CompiledMethod::SwapAllocCompiledMethod(
425 compiler_driver,
426 codegen->GetInstructionSet(),
427 ArrayRef<const uint8_t>(allocator.GetMemory()),
428 // Follow Quick's behavior and set the frame size to zero if it is
429 // considered "empty" (see the definition of
430 // art::CodeGenerator::HasEmptyFrame).
431 codegen->HasEmptyFrame() ? 0 : codegen->GetFrameSize(),
432 codegen->GetCoreSpillMask(),
433 codegen->GetFpuSpillMask(),
434 &src_mapping_table,
435 AlignVectorSize(mapping_table),
436 AlignVectorSize(vmap_table),
437 AlignVectorSize(gc_map),
438 ArrayRef<const uint8_t>());
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000439}
440
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000441CompiledMethod* OptimizingCompiler::TryCompile(const DexFile::CodeItem* code_item,
442 uint32_t access_flags,
443 InvokeType invoke_type,
444 uint16_t class_def_idx,
445 uint32_t method_idx,
446 jobject class_loader,
447 const DexFile& dex_file) const {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700448 UNUSED(invoke_type);
David Brazdil5e8b1372015-01-23 14:39:08 +0000449 std::string method_name = PrettyMethod(method_idx, dex_file);
Calin Juravle48c2b032014-12-09 18:11:36 +0000450 compilation_stats_.RecordStat(MethodCompilationStat::kAttemptCompilation);
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000451 CompilerDriver* compiler_driver = GetCompilerDriver();
452 InstructionSet instruction_set = compiler_driver->GetInstructionSet();
Nicolas Geoffray8d486732014-07-16 16:23:40 +0100453 // Always use the thumb2 assembler: some runtime functionality (like implicit stack
454 // overflow checks) assume thumb2.
455 if (instruction_set == kArm) {
456 instruction_set = kThumb2;
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100457 }
458
459 // Do not attempt to compile on architectures we do not support.
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000460 if (!IsInstructionSetSupported(instruction_set)) {
Calin Juravle48c2b032014-12-09 18:11:36 +0000461 compilation_stats_.RecordStat(MethodCompilationStat::kNotCompiledUnsupportedIsa);
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100462 return nullptr;
463 }
464
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000465 if (Compiler::IsPathologicalCase(*code_item, method_idx, dex_file)) {
Calin Juravle48c2b032014-12-09 18:11:36 +0000466 compilation_stats_.RecordStat(MethodCompilationStat::kNotCompiledPathological);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000467 return nullptr;
468 }
469
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000470 // Implementation of the space filter: do not compile a code item whose size in
471 // code units is bigger than 256.
472 static constexpr size_t kSpaceFilterOptimizingThreshold = 256;
473 const CompilerOptions& compiler_options = compiler_driver->GetCompilerOptions();
474 if ((compiler_options.GetCompilerFilter() == CompilerOptions::kSpace)
475 && (code_item->insns_size_in_code_units_ > kSpaceFilterOptimizingThreshold)) {
476 compilation_stats_.RecordStat(MethodCompilationStat::kNotCompiledSpaceFilter);
477 return nullptr;
478 }
479
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +0000480 DexCompilationUnit dex_compilation_unit(
481 nullptr, class_loader, art::Runtime::Current()->GetClassLinker(), dex_file, code_item,
Ian Rogers72d32622014-05-06 16:20:11 -0700482 class_def_idx, method_idx, access_flags,
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000483 compiler_driver->GetVerifiedMethod(&dex_file, method_idx));
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +0000484
Nicolas Geoffray579ea7d2015-03-24 17:28:38 +0000485 ArenaAllocator arena(Runtime::Current()->GetArenaPool());
Nicolas Geoffraye0fe7ae2015-03-09 10:02:49 +0000486 HGraph* graph = new (&arena) HGraph(
487 &arena, compiler_driver->GetCompilerOptions().GetDebuggable());
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000488
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +0000489 // For testing purposes, we put a special marker on method names that should be compiled
490 // with this compiler. This makes sure we're not regressing.
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000491 bool shouldCompile = method_name.find("$opt$") != std::string::npos;
Nicolas Geoffraya3d90fb2015-03-16 13:55:40 +0000492 bool shouldOptimize = method_name.find("$opt$reg$") != std::string::npos && run_optimizations_;
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +0000493
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000494 std::unique_ptr<CodeGenerator> codegen(
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000495 CodeGenerator::Create(graph,
496 instruction_set,
497 *compiler_driver->GetInstructionSetFeatures(),
498 compiler_driver->GetCompilerOptions()));
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000499 if (codegen.get() == nullptr) {
Zheng Xu5667fdb2014-10-23 18:29:55 +0800500 CHECK(!shouldCompile) << "Could not find code generator for optimizing compiler";
Calin Juravle48c2b032014-12-09 18:11:36 +0000501 compilation_stats_.RecordStat(MethodCompilationStat::kNotCompiledNoCodegen);
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000502 return nullptr;
503 }
504
David Brazdil809658e2015-02-05 11:34:02 +0000505 PassInfoPrinter pass_info_printer(graph,
506 method_name.c_str(),
507 *codegen.get(),
508 visualizer_output_.get(),
509 compiler_driver);
David Brazdil5e8b1372015-01-23 14:39:08 +0000510
511 HGraphBuilder builder(graph,
512 &dex_compilation_unit,
513 &dex_compilation_unit,
514 &dex_file,
515 compiler_driver,
516 &compilation_stats_);
517
518 VLOG(compiler) << "Building " << method_name;
519
David Brazdil809658e2015-02-05 11:34:02 +0000520 {
Andreas Gampe7c3952f2015-02-19 18:21:24 -0800521 PassInfo pass_info(HGraphBuilder::kBuilderPassName, &pass_info_printer);
David Brazdil809658e2015-02-05 11:34:02 +0000522 if (!builder.BuildGraph(*code_item)) {
523 CHECK(!shouldCompile) << "Could not build graph in optimizing compiler";
524 return nullptr;
525 }
David Brazdil5e8b1372015-01-23 14:39:08 +0000526 }
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100527
Calin Juravle48c2b032014-12-09 18:11:36 +0000528 bool can_optimize = CanOptimize(*code_item);
529 bool can_allocate_registers = RegisterAllocator::CanAllocateRegistersFor(*graph, instruction_set);
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000530
531 // `run_optimizations_` is set explicitly (either through a compiler filter
532 // or the debuggable flag). If it is set, we can run baseline. Otherwise, we fall back
533 // to Quick.
534 bool can_use_baseline = !run_optimizations_;
Calin Juravle48c2b032014-12-09 18:11:36 +0000535 if (run_optimizations_ && can_optimize && can_allocate_registers) {
David Brazdil5e8b1372015-01-23 14:39:08 +0000536 VLOG(compiler) << "Optimizing " << method_name;
537
David Brazdil809658e2015-02-05 11:34:02 +0000538 {
Andreas Gampe7c3952f2015-02-19 18:21:24 -0800539 PassInfo pass_info(SsaBuilder::kSsaBuilderPassName, &pass_info_printer);
David Brazdil809658e2015-02-05 11:34:02 +0000540 if (!graph->TryBuildingSsa()) {
541 // We could not transform the graph to SSA, bailout.
542 LOG(INFO) << "Skipping compilation of " << method_name << ": it contains a non natural loop";
543 compilation_stats_.RecordStat(MethodCompilationStat::kNotCompiledCannotBuildSSA);
544 return nullptr;
545 }
Nicolas Geoffrayf5370122014-12-02 11:51:19 +0000546 }
David Brazdil5e8b1372015-01-23 14:39:08 +0000547
548 return CompileOptimized(graph,
549 codegen.get(),
550 compiler_driver,
Calin Juravleacf735c2015-02-12 15:25:22 +0000551 dex_file,
David Brazdil5e8b1372015-01-23 14:39:08 +0000552 dex_compilation_unit,
David Brazdil809658e2015-02-05 11:34:02 +0000553 &pass_info_printer);
Nicolas Geoffray234d69d2015-03-09 10:28:50 +0000554 } else if (shouldOptimize && can_allocate_registers) {
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100555 LOG(FATAL) << "Could not allocate registers in optimizing compiler";
Zheng Xu5667fdb2014-10-23 18:29:55 +0800556 UNREACHABLE();
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000557 } else if (can_use_baseline) {
David Brazdil5e8b1372015-01-23 14:39:08 +0000558 VLOG(compiler) << "Compile baseline " << method_name;
Calin Juravle48c2b032014-12-09 18:11:36 +0000559
560 if (!run_optimizations_) {
561 compilation_stats_.RecordStat(MethodCompilationStat::kNotOptimizedDisabled);
562 } else if (!can_optimize) {
563 compilation_stats_.RecordStat(MethodCompilationStat::kNotOptimizedTryCatch);
564 } else if (!can_allocate_registers) {
565 compilation_stats_.RecordStat(MethodCompilationStat::kNotOptimizedRegisterAllocator);
566 }
567
David Brazdil5e8b1372015-01-23 14:39:08 +0000568 return CompileBaseline(codegen.get(), compiler_driver, dex_compilation_unit);
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000569 } else {
570 return nullptr;
Nicolas Geoffray86dbb9a2014-06-04 11:12:39 +0100571 }
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000572}
573
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000574CompiledMethod* OptimizingCompiler::Compile(const DexFile::CodeItem* code_item,
575 uint32_t access_flags,
576 InvokeType invoke_type,
577 uint16_t class_def_idx,
578 uint32_t method_idx,
579 jobject class_loader,
580 const DexFile& dex_file) const {
581 CompiledMethod* method = TryCompile(code_item, access_flags, invoke_type, class_def_idx,
582 method_idx, class_loader, dex_file);
583 if (method != nullptr) {
584 return method;
585 }
586 return delegate_->Compile(code_item, access_flags, invoke_type, class_def_idx, method_idx,
587 class_loader, dex_file);
588}
589
Andreas Gampe53c913b2014-08-12 23:19:23 -0700590Compiler* CreateOptimizingCompiler(CompilerDriver* driver) {
591 return new OptimizingCompiler(driver);
592}
593
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000594} // namespace art