blob: c35c49011857d0188fe10483fc684b7f1543f847 [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>
David Srbecky5cc349f2015-12-18 15:04:48 +000020#include <memory>
Andreas Gampea0d81af2016-10-27 12:04:57 -070021#include <sstream>
22
Nicolas Geoffray787c3072014-03-17 10:20:19 +000023#include <stdint.h>
24
Mathieu Chartiere401d142015-04-22 13:56:20 -070025#include "art_method-inl.h"
Mathieu Chartierb666f482015-02-18 14:33:14 -080026#include "base/arena_allocator.h"
Vladimir Markof9f64412015-09-02 14:05:49 +010027#include "base/arena_containers.h"
David Brazdil5e8b1372015-01-23 14:39:08 +000028#include "base/dumpable.h"
Vladimir Markoc90d7c72015-10-06 17:30:45 +000029#include "base/macros.h"
Andreas Gampea0d81af2016-10-27 12:04:57 -070030#include "base/mutex.h"
Vladimir Markoca6fff82017-10-03 14:49:14 +010031#include "base/scoped_arena_allocator.h"
David Brazdil5e8b1372015-01-23 14:39:08 +000032#include "base/timing_logger.h"
Nicolas Geoffray787c3072014-03-17 10:20:19 +000033#include "builder.h"
34#include "code_generator.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000035#include "compiled_method.h"
Andreas Gampe53c913b2014-08-12 23:19:23 -070036#include "compiler.h"
David Srbeckyc5bfa972016-02-05 15:49:10 +000037#include "debug/elf_debug_writer.h"
David Srbecky4fda4eb2016-02-05 13:34:46 +000038#include "debug/method_debug_info.h"
David Sehr9e734c72018-01-04 17:56:19 -080039#include "dex/dex_file_types.h"
Calin Juravlef1c6d9e2015-04-13 18:42:21 +010040#include "dex/verification_results.h"
David Srbecky4fda4eb2016-02-05 13:34:46 +000041#include "dex/verified_method.h"
Nicolas Geoffray9523a3e2015-07-17 11:51:28 +000042#include "driver/compiler_driver-inl.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000043#include "driver/compiler_options.h"
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000044#include "driver/dex_compilation_unit.h"
David Brazdil69ba7b72015-06-23 18:27:30 +010045#include "graph_checker.h"
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010046#include "graph_visualizer.h"
Nicolas Geoffraye53798a2014-12-01 10:31:54 +000047#include "inliner.h"
David Srbecky5cc349f2015-12-18 15:04:48 +000048#include "jit/debugger_interface.h"
Nicolas Geoffraya4f81542016-03-08 16:57:48 +000049#include "jit/jit.h"
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +000050#include "jit/jit_code_cache.h"
Nicolas Geoffray01db5f72017-07-19 15:05:49 +010051#include "jit/jit_logger.h"
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +000052#include "jni/quick/jni_compiler.h"
Vladimir Markod8dbc8d2017-09-20 13:37:47 +010053#include "linker/linker_patch.h"
Nicolas Geoffray787c3072014-03-17 10:20:19 +000054#include "nodes.h"
David Srbecky4fda4eb2016-02-05 13:34:46 +000055#include "oat_quick_method_header.h"
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +010056#include "prepare_for_register_allocation.h"
Calin Juravlef1c6d9e2015-04-13 18:42:21 +010057#include "reference_type_propagation.h"
Matthew Gharritye9288852016-07-14 14:08:16 -070058#include "register_allocator_linear_scan.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070059#include "select_generator.h"
Nicolas Geoffray31596742014-11-24 15:28:45 +000060#include "ssa_builder.h"
Nicolas Geoffray804d0932014-05-02 08:46:00 +010061#include "ssa_liveness_analysis.h"
David Srbecky4fda4eb2016-02-05 13:34:46 +000062#include "ssa_phi_elimination.h"
David Srbeckyc6b4dd82015-04-07 20:32:43 +010063#include "utils/assembler.h"
Andreas Gampe6d7abbd2017-04-24 13:19:09 -070064#include "verifier/verifier_compiler_binding.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000065
66namespace art {
67
Vladimir Marko3a40bf22016-03-22 16:26:33 +000068static constexpr size_t kArenaAllocatorMemoryReportThreshold = 8 * MB;
69
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -070070static constexpr const char* kPassNameSeparator = "$";
71
Nicolas Geoffray787c3072014-03-17 10:20:19 +000072/**
73 * Used by the code generator, to allocate the code in a vector.
74 */
75class CodeVectorAllocator FINAL : public CodeAllocator {
76 public:
Vladimir Markoe764d2e2017-10-05 14:35:55 +010077 explicit CodeVectorAllocator(ArenaAllocator* allocator)
78 : memory_(allocator->Adapter(kArenaAllocCodeBuffer)),
Vladimir Markof9f64412015-09-02 14:05:49 +010079 size_(0) {}
Nicolas Geoffray787c3072014-03-17 10:20:19 +000080
81 virtual uint8_t* Allocate(size_t size) {
82 size_ = size;
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000083 memory_.resize(size);
Nicolas Geoffray787c3072014-03-17 10:20:19 +000084 return &memory_[0];
85 }
86
87 size_t GetSize() const { return size_; }
Vladimir Markof9f64412015-09-02 14:05:49 +010088 const ArenaVector<uint8_t>& GetMemory() const { return memory_; }
Nicolas Geoffray132d8362016-11-16 09:19:42 +000089 uint8_t* GetData() { return memory_.data(); }
Nicolas Geoffray787c3072014-03-17 10:20:19 +000090
91 private:
Vladimir Markof9f64412015-09-02 14:05:49 +010092 ArenaVector<uint8_t> memory_;
Nicolas Geoffray787c3072014-03-17 10:20:19 +000093 size_t size_;
94
95 DISALLOW_COPY_AND_ASSIGN(CodeVectorAllocator);
96};
97
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010098/**
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010099 * Filter to apply to the visualizer. Methods whose name contain that filter will
David Brazdilee690a32014-12-01 17:04:16 +0000100 * be dumped.
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100101 */
Andreas Gampe53fcd0f2015-07-22 12:10:13 -0700102static constexpr const char kStringFilter[] = "";
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100103
David Brazdil69ba7b72015-06-23 18:27:30 +0100104class PassScope;
David Brazdil809658e2015-02-05 11:34:02 +0000105
David Brazdil69ba7b72015-06-23 18:27:30 +0100106class PassObserver : public ValueObject {
David Brazdil5e8b1372015-01-23 14:39:08 +0000107 public:
David Brazdil69ba7b72015-06-23 18:27:30 +0100108 PassObserver(HGraph* graph,
David Brazdil69ba7b72015-06-23 18:27:30 +0100109 CodeGenerator* codegen,
110 std::ostream* visualizer_output,
Andreas Gampea0d81af2016-10-27 12:04:57 -0700111 CompilerDriver* compiler_driver,
112 Mutex& dump_mutex)
David Brazdil69ba7b72015-06-23 18:27:30 +0100113 : graph_(graph),
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000114 cached_method_name_(),
Nicolas Geoffray2d8801f2017-11-28 15:50:07 +0000115 timing_logger_enabled_(compiler_driver->GetCompilerOptions().GetDumpTimings()),
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000116 timing_logger_(timing_logger_enabled_ ? GetMethodName() : "", true, true),
Vladimir Markoca6fff82017-10-03 14:49:14 +0100117 disasm_info_(graph->GetAllocator()),
Andreas Gampea0d81af2016-10-27 12:04:57 -0700118 visualizer_oss_(),
119 visualizer_output_(visualizer_output),
Nicolas Geoffrayc903b6a2016-01-18 12:56:06 +0000120 visualizer_enabled_(!compiler_driver->GetCompilerOptions().GetDumpCfgFileName().empty()),
Andreas Gampea0d81af2016-10-27 12:04:57 -0700121 visualizer_(&visualizer_oss_, graph, *codegen),
122 visualizer_dump_mutex_(dump_mutex),
David Brazdil69ba7b72015-06-23 18:27:30 +0100123 graph_in_bad_state_(false) {
Andreas Gampe53fcd0f2015-07-22 12:10:13 -0700124 if (timing_logger_enabled_ || visualizer_enabled_) {
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000125 if (!IsVerboseMethod(compiler_driver, GetMethodName())) {
Andreas Gampe53fcd0f2015-07-22 12:10:13 -0700126 timing_logger_enabled_ = visualizer_enabled_ = false;
127 }
128 if (visualizer_enabled_) {
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000129 visualizer_.PrintHeader(GetMethodName());
Andreas Gampe53fcd0f2015-07-22 12:10:13 -0700130 codegen->SetDisassemblyInformation(&disasm_info_);
131 }
David Brazdil62e074f2015-04-07 18:09:37 +0100132 }
David Brazdil5e8b1372015-01-23 14:39:08 +0000133 }
134
David Brazdil69ba7b72015-06-23 18:27:30 +0100135 ~PassObserver() {
David Brazdil5e8b1372015-01-23 14:39:08 +0000136 if (timing_logger_enabled_) {
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000137 LOG(INFO) << "TIMINGS " << GetMethodName();
David Brazdil5e8b1372015-01-23 14:39:08 +0000138 LOG(INFO) << Dumpable<TimingLogger>(timing_logger_);
139 }
Nicolas Geoffray00c141a2016-11-10 15:19:15 +0000140 DCHECK(visualizer_oss_.str().empty());
David Brazdil5e8b1372015-01-23 14:39:08 +0000141 }
142
Nicolas Geoffray00c141a2016-11-10 15:19:15 +0000143 void DumpDisassembly() REQUIRES(!visualizer_dump_mutex_) {
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100144 if (visualizer_enabled_) {
145 visualizer_.DumpGraphWithDisassembly();
Nicolas Geoffray00c141a2016-11-10 15:19:15 +0000146 FlushVisualizer();
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100147 }
148 }
149
David Brazdil69ba7b72015-06-23 18:27:30 +0100150 void SetGraphInBadState() { graph_in_bad_state_ = true; }
151
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000152 const char* GetMethodName() {
153 // PrettyMethod() is expensive, so we delay calling it until we actually have to.
154 if (cached_method_name_.empty()) {
David Sehr709b0702016-10-13 09:12:37 -0700155 cached_method_name_ = graph_->GetDexFile().PrettyMethod(graph_->GetMethodIdx());
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000156 }
157 return cached_method_name_.c_str();
158 }
159
David Brazdil5e8b1372015-01-23 14:39:08 +0000160 private:
Nicolas Geoffray00c141a2016-11-10 15:19:15 +0000161 void StartPass(const char* pass_name) REQUIRES(!visualizer_dump_mutex_) {
Wojciech Staszkiewicze7060702016-08-16 17:31:19 -0700162 VLOG(compiler) << "Starting pass: " << pass_name;
David Brazdil809658e2015-02-05 11:34:02 +0000163 // Dump graph first, then start timer.
164 if (visualizer_enabled_) {
David Brazdilffee3d32015-07-06 11:48:53 +0100165 visualizer_.DumpGraph(pass_name, /* is_after_pass */ false, graph_in_bad_state_);
Nicolas Geoffray00c141a2016-11-10 15:19:15 +0000166 FlushVisualizer();
David Brazdil809658e2015-02-05 11:34:02 +0000167 }
168 if (timing_logger_enabled_) {
169 timing_logger_.StartTiming(pass_name);
170 }
171 }
172
Nicolas Geoffray00c141a2016-11-10 15:19:15 +0000173 void FlushVisualizer() REQUIRES(!visualizer_dump_mutex_) {
174 MutexLock mu(Thread::Current(), visualizer_dump_mutex_);
175 *visualizer_output_ << visualizer_oss_.str();
176 visualizer_output_->flush();
177 visualizer_oss_.str("");
178 visualizer_oss_.clear();
179 }
180
181 void EndPass(const char* pass_name) REQUIRES(!visualizer_dump_mutex_) {
David Brazdil809658e2015-02-05 11:34:02 +0000182 // Pause timer first, then dump graph.
183 if (timing_logger_enabled_) {
184 timing_logger_.EndTiming();
185 }
186 if (visualizer_enabled_) {
David Brazdilffee3d32015-07-06 11:48:53 +0100187 visualizer_.DumpGraph(pass_name, /* is_after_pass */ true, graph_in_bad_state_);
Nicolas Geoffray00c141a2016-11-10 15:19:15 +0000188 FlushVisualizer();
David Brazdil809658e2015-02-05 11:34:02 +0000189 }
David Brazdil69ba7b72015-06-23 18:27:30 +0100190
191 // Validate the HGraph if running in debug mode.
192 if (kIsDebugBuild) {
193 if (!graph_in_bad_state_) {
David Brazdilbadd8262016-02-02 16:28:56 +0000194 GraphChecker checker(graph_);
195 checker.Run();
196 if (!checker.IsValid()) {
197 LOG(FATAL) << "Error after " << pass_name << ": " << Dumpable<GraphChecker>(checker);
David Brazdil69ba7b72015-06-23 18:27:30 +0100198 }
199 }
200 }
David Brazdil809658e2015-02-05 11:34:02 +0000201 }
202
Andreas Gampe53fcd0f2015-07-22 12:10:13 -0700203 static bool IsVerboseMethod(CompilerDriver* compiler_driver, const char* method_name) {
204 // Test an exact match to --verbose-methods. If verbose-methods is set, this overrides an
205 // empty kStringFilter matching all methods.
206 if (compiler_driver->GetCompilerOptions().HasVerboseMethods()) {
207 return compiler_driver->GetCompilerOptions().IsVerboseMethod(method_name);
208 }
209
210 // Test the kStringFilter sub-string. constexpr helper variable to silence unreachable-code
211 // warning when the string is empty.
212 constexpr bool kStringFilterEmpty = arraysize(kStringFilter) <= 1;
213 if (kStringFilterEmpty || strstr(method_name, kStringFilter) != nullptr) {
214 return true;
215 }
216
217 return false;
218 }
219
David Brazdil69ba7b72015-06-23 18:27:30 +0100220 HGraph* const graph_;
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000221
222 std::string cached_method_name_;
David Brazdil5e8b1372015-01-23 14:39:08 +0000223
224 bool timing_logger_enabled_;
David Brazdil5e8b1372015-01-23 14:39:08 +0000225 TimingLogger timing_logger_;
226
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100227 DisassemblyInformation disasm_info_;
228
Andreas Gampea0d81af2016-10-27 12:04:57 -0700229 std::ostringstream visualizer_oss_;
230 std::ostream* visualizer_output_;
David Brazdil5e8b1372015-01-23 14:39:08 +0000231 bool visualizer_enabled_;
232 HGraphVisualizer visualizer_;
Andreas Gampea0d81af2016-10-27 12:04:57 -0700233 Mutex& visualizer_dump_mutex_;
David Brazdil5e8b1372015-01-23 14:39:08 +0000234
David Brazdil69ba7b72015-06-23 18:27:30 +0100235 // Flag to be set by the compiler if the pass failed and the graph is not
236 // expected to validate.
237 bool graph_in_bad_state_;
David Brazdil809658e2015-02-05 11:34:02 +0000238
David Brazdil69ba7b72015-06-23 18:27:30 +0100239 friend PassScope;
240
241 DISALLOW_COPY_AND_ASSIGN(PassObserver);
David Brazdil5e8b1372015-01-23 14:39:08 +0000242};
243
David Brazdil69ba7b72015-06-23 18:27:30 +0100244class PassScope : public ValueObject {
David Brazdil809658e2015-02-05 11:34:02 +0000245 public:
David Brazdil69ba7b72015-06-23 18:27:30 +0100246 PassScope(const char *pass_name, PassObserver* pass_observer)
David Brazdil809658e2015-02-05 11:34:02 +0000247 : pass_name_(pass_name),
David Brazdil69ba7b72015-06-23 18:27:30 +0100248 pass_observer_(pass_observer) {
249 pass_observer_->StartPass(pass_name_);
David Brazdil809658e2015-02-05 11:34:02 +0000250 }
251
David Brazdil69ba7b72015-06-23 18:27:30 +0100252 ~PassScope() {
253 pass_observer_->EndPass(pass_name_);
David Brazdil809658e2015-02-05 11:34:02 +0000254 }
255
256 private:
257 const char* const pass_name_;
David Brazdil69ba7b72015-06-23 18:27:30 +0100258 PassObserver* const pass_observer_;
David Brazdil809658e2015-02-05 11:34:02 +0000259};
260
Andreas Gampe53c913b2014-08-12 23:19:23 -0700261class OptimizingCompiler FINAL : public Compiler {
262 public:
263 explicit OptimizingCompiler(CompilerDriver* driver);
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -0700264 ~OptimizingCompiler() OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700265
Vladimir Markodf739842016-03-23 16:59:07 +0000266 bool CanCompileMethod(uint32_t method_idx, const DexFile& dex_file) const OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700267
268 CompiledMethod* Compile(const DexFile::CodeItem* code_item,
269 uint32_t access_flags,
270 InvokeType invoke_type,
271 uint16_t class_def_idx,
272 uint32_t method_idx,
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000273 Handle<mirror::ClassLoader> class_loader,
Mathieu Chartier736b5602015-09-02 14:54:11 -0700274 const DexFile& dex_file,
275 Handle<mirror::DexCache> dex_cache) const OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700276
Andreas Gampe53c913b2014-08-12 23:19:23 -0700277 CompiledMethod* JniCompile(uint32_t access_flags,
278 uint32_t method_idx,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000279 const DexFile& dex_file,
280 Handle<mirror::DexCache> dex_cache) const OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700281
Mathieu Chartiere401d142015-04-22 13:56:20 -0700282 uintptr_t GetEntryPointOf(ArtMethod* method) const OVERRIDE
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700283 REQUIRES_SHARED(Locks::mutator_lock_) {
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000284 return reinterpret_cast<uintptr_t>(method->GetEntryPointFromQuickCompiledCodePtrSize(
285 InstructionSetPointerSize(GetCompilerDriver()->GetInstructionSet())));
286 }
Andreas Gampe53c913b2014-08-12 23:19:23 -0700287
David Brazdilee690a32014-12-01 17:04:16 +0000288 void Init() OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700289
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000290 void UnInit() const OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700291
Nicolas Geoffray01db5f72017-07-19 15:05:49 +0100292 bool JitCompile(Thread* self,
293 jit::JitCodeCache* code_cache,
294 ArtMethod* method,
295 bool osr,
296 jit::JitLogger* jit_logger)
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000297 OVERRIDE
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700298 REQUIRES_SHARED(Locks::mutator_lock_);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000299
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -0700300 private:
301 void RunOptimizations(HGraph* graph,
302 CodeGenerator* codegen,
Aart Bik2ca10eb2017-11-15 15:17:53 -0800303 const DexCompilationUnit& dex_compilation_unit,
304 PassObserver* pass_observer,
305 VariableSizedHandleScope* handles,
306 const OptimizationDef definitions[],
307 size_t length) const {
308 // Convert definitions to optimization passes.
309 ArenaVector<HOptimization*> optimizations = ConstructOptimizations(
310 definitions,
311 length,
312 graph->GetAllocator(),
313 graph,
314 compilation_stats_.get(),
315 codegen,
316 GetCompilerDriver(),
317 dex_compilation_unit,
318 handles);
319 DCHECK_EQ(length, optimizations.size());
320 // Run the optimization passes one by one.
321 for (size_t i = 0; i < length; ++i) {
322 PassScope scope(optimizations[i]->GetPassName(), pass_observer);
323 optimizations[i]->Run();
324 }
325 }
326
327 template <size_t length> void RunOptimizations(
328 HGraph* graph,
329 CodeGenerator* codegen,
330 const DexCompilationUnit& dex_compilation_unit,
331 PassObserver* pass_observer,
332 VariableSizedHandleScope* handles,
333 const OptimizationDef (&definitions)[length]) const {
334 RunOptimizations(
335 graph, codegen, dex_compilation_unit, pass_observer, handles, definitions, length);
336 }
337
338 void RunOptimizations(HGraph* graph,
339 CodeGenerator* codegen,
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -0700340 const DexCompilationUnit& dex_compilation_unit,
341 PassObserver* pass_observer,
Mathieu Chartiere8a3c572016-10-11 16:52:17 -0700342 VariableSizedHandleScope* handles) const;
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700343
Andreas Gampe53c913b2014-08-12 23:19:23 -0700344 private:
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000345 // Create a 'CompiledMethod' for an optimized graph.
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100346 CompiledMethod* Emit(ArenaAllocator* allocator,
David Brazdil58282f42016-01-14 12:45:10 +0000347 CodeVectorAllocator* code_allocator,
348 CodeGenerator* codegen,
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000349 const DexFile::CodeItem* item) const;
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000350
351 // Try compiling a method and return the code generator used for
352 // compiling it.
353 // This method:
354 // 1) Builds the graph. Returns null if it failed to build it.
David Brazdil58282f42016-01-14 12:45:10 +0000355 // 2) Transforms the graph to SSA. Returns null if it failed.
356 // 3) Runs optimizations on the graph, including register allocator.
357 // 4) Generates code with the `code_allocator` provided.
Vladimir Markoca6fff82017-10-03 14:49:14 +0100358 CodeGenerator* TryCompile(ArenaAllocator* allocator,
359 ArenaStack* arena_stack,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000360 CodeVectorAllocator* code_allocator,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000361 const DexCompilationUnit& dex_compilation_unit,
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000362 ArtMethod* method,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000363 bool osr,
364 VariableSizedHandleScope* handles) const;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000365
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000366 CodeGenerator* TryCompileIntrinsic(ArenaAllocator* allocator,
367 ArenaStack* arena_stack,
368 CodeVectorAllocator* code_allocator,
369 const DexCompilationUnit& dex_compilation_unit,
370 ArtMethod* method,
371 VariableSizedHandleScope* handles) const;
372
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700373 void MaybeRunInliner(HGraph* graph,
374 CodeGenerator* codegen,
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700375 const DexCompilationUnit& dex_compilation_unit,
376 PassObserver* pass_observer,
Mathieu Chartiere8a3c572016-10-11 16:52:17 -0700377 VariableSizedHandleScope* handles) const;
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700378
Aart Bik2ca10eb2017-11-15 15:17:53 -0800379 void RunArchOptimizations(HGraph* graph,
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700380 CodeGenerator* codegen,
Aart Bik2ca10eb2017-11-15 15:17:53 -0800381 const DexCompilationUnit& dex_compilation_unit,
382 PassObserver* pass_observer,
383 VariableSizedHandleScope* handles) const;
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700384
David Srbeckyc684f332018-01-19 17:38:06 +0000385 void GenerateJitDebugInfo(debug::MethodDebugInfo method_debug_info);
386
Calin Juravle2be39e02015-04-21 13:56:34 +0100387 std::unique_ptr<OptimizingCompilerStats> compilation_stats_;
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100388
Andreas Gampe53c913b2014-08-12 23:19:23 -0700389 std::unique_ptr<std::ostream> visualizer_output_;
390
Andreas Gampea0d81af2016-10-27 12:04:57 -0700391 mutable Mutex dump_mutex_; // To synchronize visualizer writing.
392
Andreas Gampe53c913b2014-08-12 23:19:23 -0700393 DISALLOW_COPY_AND_ASSIGN(OptimizingCompiler);
394};
395
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100396static const int kMaximumCompilationTimeBeforeWarning = 100; /* ms */
397
398OptimizingCompiler::OptimizingCompiler(CompilerDriver* driver)
Andreas Gampea0d81af2016-10-27 12:04:57 -0700399 : Compiler(driver, kMaximumCompilationTimeBeforeWarning),
400 dump_mutex_("Visualizer dump lock") {}
David Brazdilee690a32014-12-01 17:04:16 +0000401
402void OptimizingCompiler::Init() {
403 // Enable C1visualizer output. Must be done in Init() because the compiler
404 // driver is not fully initialized when passed to the compiler's constructor.
405 CompilerDriver* driver = GetCompilerDriver();
Nicolas Geoffrayc903b6a2016-01-18 12:56:06 +0000406 const std::string cfg_file_name = driver->GetCompilerOptions().GetDumpCfgFileName();
David Brazdil866c0312015-01-13 21:21:31 +0000407 if (!cfg_file_name.empty()) {
Calin Juravle87000a92015-08-24 15:34:44 +0100408 std::ios_base::openmode cfg_file_mode =
Nicolas Geoffrayc903b6a2016-01-18 12:56:06 +0000409 driver->GetCompilerOptions().GetDumpCfgAppend() ? std::ofstream::app : std::ofstream::out;
Calin Juravle87000a92015-08-24 15:34:44 +0100410 visualizer_output_.reset(new std::ofstream(cfg_file_name, cfg_file_mode));
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100411 }
Nicolas Geoffray2d8801f2017-11-28 15:50:07 +0000412 if (driver->GetCompilerOptions().GetDumpStats()) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100413 compilation_stats_.reset(new OptimizingCompilerStats());
414 }
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100415}
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000416
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000417void OptimizingCompiler::UnInit() const {
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000418}
419
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100420OptimizingCompiler::~OptimizingCompiler() {
Calin Juravle2be39e02015-04-21 13:56:34 +0100421 if (compilation_stats_.get() != nullptr) {
422 compilation_stats_->Log();
423 }
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100424}
425
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +0000426bool OptimizingCompiler::CanCompileMethod(uint32_t method_idx ATTRIBUTE_UNUSED,
Vladimir Markodf739842016-03-23 16:59:07 +0000427 const DexFile& dex_file ATTRIBUTE_UNUSED) const {
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +0000428 return true;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700429}
430
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000431static bool IsInstructionSetSupported(InstructionSet instruction_set) {
Vladimir Marko33bff252017-11-01 14:35:42 +0000432 return instruction_set == InstructionSet::kArm
433 || instruction_set == InstructionSet::kArm64
434 || instruction_set == InstructionSet::kThumb2
435 || instruction_set == InstructionSet::kMips
436 || instruction_set == InstructionSet::kMips64
437 || instruction_set == InstructionSet::kX86
438 || instruction_set == InstructionSet::kX86_64;
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000439}
440
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700441void OptimizingCompiler::MaybeRunInliner(HGraph* graph,
442 CodeGenerator* codegen,
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700443 const DexCompilationUnit& dex_compilation_unit,
444 PassObserver* pass_observer,
Mathieu Chartiere8a3c572016-10-11 16:52:17 -0700445 VariableSizedHandleScope* handles) const {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800446 const CompilerOptions& compiler_options = GetCompilerDriver()->GetCompilerOptions();
Nicolas Geoffrayf6d46682017-02-28 17:41:45 +0000447 bool should_inline = (compiler_options.GetInlineMaxCodeUnits() > 0);
Calin Juravleec748352015-07-29 13:52:12 +0100448 if (!should_inline) {
449 return;
450 }
Aart Bik2ca10eb2017-11-15 15:17:53 -0800451 OptimizationDef optimizations[] = {
452 OptDef(OptimizationPass::kInliner)
453 };
454 RunOptimizations(graph,
455 codegen,
456 dex_compilation_unit,
457 pass_observer,
458 handles,
459 optimizations);
Calin Juravleec748352015-07-29 13:52:12 +0100460}
461
Aart Bik2ca10eb2017-11-15 15:17:53 -0800462void OptimizingCompiler::RunArchOptimizations(HGraph* graph,
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700463 CodeGenerator* codegen,
Aart Bik2ca10eb2017-11-15 15:17:53 -0800464 const DexCompilationUnit& dex_compilation_unit,
465 PassObserver* pass_observer,
466 VariableSizedHandleScope* handles) const {
467 switch (GetCompilerDriver()->GetInstructionSet()) {
Artem Serov2bbc9532016-10-21 11:51:50 +0100468#if defined(ART_ENABLE_CODEGEN_arm)
Vladimir Marko33bff252017-11-01 14:35:42 +0000469 case InstructionSet::kThumb2:
470 case InstructionSet::kArm: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800471 OptimizationDef arm_optimizations[] = {
472 OptDef(OptimizationPass::kInstructionSimplifierArm),
473 OptDef(OptimizationPass::kSideEffectsAnalysis),
474 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
475 OptDef(OptimizationPass::kScheduling)
Vladimir Markob4536b72015-11-24 13:45:23 +0000476 };
Aart Bik2ca10eb2017-11-15 15:17:53 -0800477 RunOptimizations(graph,
478 codegen,
479 dex_compilation_unit,
480 pass_observer,
481 handles,
482 arm_optimizations);
Vladimir Markob4536b72015-11-24 13:45:23 +0000483 break;
484 }
485#endif
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100486#ifdef ART_ENABLE_CODEGEN_arm64
Vladimir Marko33bff252017-11-01 14:35:42 +0000487 case InstructionSet::kArm64: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800488 OptimizationDef arm64_optimizations[] = {
489 OptDef(OptimizationPass::kInstructionSimplifierArm64),
490 OptDef(OptimizationPass::kSideEffectsAnalysis),
491 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
492 OptDef(OptimizationPass::kScheduling)
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100493 };
Aart Bik2ca10eb2017-11-15 15:17:53 -0800494 RunOptimizations(graph,
495 codegen,
496 dex_compilation_unit,
497 pass_observer,
498 handles,
499 arm64_optimizations);
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100500 break;
501 }
502#endif
Alexey Frunzee3fb2452016-05-10 16:08:05 -0700503#ifdef ART_ENABLE_CODEGEN_mips
Vladimir Marko33bff252017-11-01 14:35:42 +0000504 case InstructionSet::kMips: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800505 OptimizationDef mips_optimizations[] = {
506 OptDef(OptimizationPass::kInstructionSimplifierMips),
507 OptDef(OptimizationPass::kSideEffectsAnalysis),
508 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
509 OptDef(OptimizationPass::kPcRelativeFixupsMips)
Alexey Frunzee3fb2452016-05-10 16:08:05 -0700510 };
Aart Bik2ca10eb2017-11-15 15:17:53 -0800511 RunOptimizations(graph,
512 codegen,
513 dex_compilation_unit,
514 pass_observer,
515 handles,
516 mips_optimizations);
Alexey Frunzee3fb2452016-05-10 16:08:05 -0700517 break;
518 }
519#endif
Lena Djokicb8e9c352017-09-20 15:11:13 +0200520#ifdef ART_ENABLE_CODEGEN_mips64
Vladimir Marko33bff252017-11-01 14:35:42 +0000521 case InstructionSet::kMips64: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800522 OptimizationDef mips64_optimizations[] = {
523 OptDef(OptimizationPass::kSideEffectsAnalysis),
524 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch")
Lena Djokicb8e9c352017-09-20 15:11:13 +0200525 };
Aart Bik2ca10eb2017-11-15 15:17:53 -0800526 RunOptimizations(graph,
527 codegen,
528 dex_compilation_unit,
529 pass_observer,
530 handles,
531 mips64_optimizations);
Lena Djokicb8e9c352017-09-20 15:11:13 +0200532 break;
533 }
534#endif
Mark Mendell0616ae02015-04-17 12:49:27 -0400535#ifdef ART_ENABLE_CODEGEN_x86
Vladimir Marko33bff252017-11-01 14:35:42 +0000536 case InstructionSet::kX86: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800537 OptimizationDef x86_optimizations[] = {
538 OptDef(OptimizationPass::kSideEffectsAnalysis),
539 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
540 OptDef(OptimizationPass::kPcRelativeFixupsX86),
541 OptDef(OptimizationPass::kX86MemoryOperandGeneration)
Mark Mendell0616ae02015-04-17 12:49:27 -0400542 };
Aart Bik2ca10eb2017-11-15 15:17:53 -0800543 RunOptimizations(graph,
544 codegen,
545 dex_compilation_unit,
546 pass_observer,
547 handles,
548 x86_optimizations);
Mark Mendell0616ae02015-04-17 12:49:27 -0400549 break;
550 }
551#endif
Mark Mendellee8d9712016-07-12 11:13:15 -0400552#ifdef ART_ENABLE_CODEGEN_x86_64
Vladimir Marko33bff252017-11-01 14:35:42 +0000553 case InstructionSet::kX86_64: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800554 OptimizationDef x86_64_optimizations[] = {
555 OptDef(OptimizationPass::kSideEffectsAnalysis),
556 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
557 OptDef(OptimizationPass::kX86MemoryOperandGeneration)
Mark Mendellee8d9712016-07-12 11:13:15 -0400558 };
Aart Bik2ca10eb2017-11-15 15:17:53 -0800559 RunOptimizations(graph,
560 codegen,
561 dex_compilation_unit,
562 pass_observer,
563 handles,
564 x86_64_optimizations);
Mark Mendellee8d9712016-07-12 11:13:15 -0400565 break;
566 }
567#endif
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100568 default:
569 break;
570 }
571}
572
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000573NO_INLINE // Avoid increasing caller's frame size by large stack-allocated objects.
574static void AllocateRegisters(HGraph* graph,
575 CodeGenerator* codegen,
Matthew Gharrity2cd05b72016-08-03 16:57:37 -0700576 PassObserver* pass_observer,
Igor Murashkin6ef45672017-08-08 13:59:55 -0700577 RegisterAllocator::Strategy strategy,
578 OptimizingCompilerStats* stats) {
Mingyao Yang700347e2016-03-02 14:59:32 -0800579 {
580 PassScope scope(PrepareForRegisterAllocation::kPrepareForRegisterAllocationPassName,
581 pass_observer);
Igor Murashkin6ef45672017-08-08 13:59:55 -0700582 PrepareForRegisterAllocation(graph, stats).Run();
Mingyao Yang700347e2016-03-02 14:59:32 -0800583 }
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100584 // Use local allocator shared by SSA liveness analysis and register allocator.
585 // (Register allocator creates new objects in the liveness data.)
586 ScopedArenaAllocator local_allocator(graph->GetArenaStack());
587 SsaLivenessAnalysis liveness(graph, codegen, &local_allocator);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000588 {
589 PassScope scope(SsaLivenessAnalysis::kLivenessPassName, pass_observer);
590 liveness.Analyze();
591 }
592 {
593 PassScope scope(RegisterAllocator::kRegisterAllocatorPassName, pass_observer);
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100594 std::unique_ptr<RegisterAllocator> register_allocator =
595 RegisterAllocator::Create(&local_allocator, codegen, liveness, strategy);
Vladimir Markoca6fff82017-10-03 14:49:14 +0100596 register_allocator->AllocateRegisters();
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000597 }
598}
599
Aart Bik2ca10eb2017-11-15 15:17:53 -0800600// Strip pass name suffix to get optimization name.
601static std::string ConvertPassNameToOptimizationName(const std::string& pass_name) {
602 size_t pos = pass_name.find(kPassNameSeparator);
603 return pos == std::string::npos ? pass_name : pass_name.substr(0, pos);
604}
605
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700606void OptimizingCompiler::RunOptimizations(HGraph* graph,
607 CodeGenerator* codegen,
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700608 const DexCompilationUnit& dex_compilation_unit,
609 PassObserver* pass_observer,
Mathieu Chartiere8a3c572016-10-11 16:52:17 -0700610 VariableSizedHandleScope* handles) const {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800611 const std::vector<std::string>* pass_names =
612 GetCompilerDriver()->GetCompilerOptions().GetPassesToRun();
613 if (pass_names != nullptr) {
614 // If passes were defined on command-line, build the optimization
615 // passes and run these instead of the built-in optimizations.
616 const size_t length = pass_names->size();
617 std::vector<OptimizationDef> optimizations;
618 for (const std::string& pass_name : *pass_names) {
619 std::string opt_name = ConvertPassNameToOptimizationName(pass_name);
620 optimizations.push_back(OptDef(OptimizationPassByName(opt_name.c_str()), pass_name.c_str()));
621 }
622 RunOptimizations(graph,
623 codegen,
624 dex_compilation_unit,
625 pass_observer,
626 handles,
627 optimizations.data(),
628 length);
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -0700629 return;
630 }
631
Aart Bik2ca10eb2017-11-15 15:17:53 -0800632 OptimizationDef optimizations1[] = {
633 OptDef(OptimizationPass::kIntrinsicsRecognizer),
634 OptDef(OptimizationPass::kSharpening),
635 OptDef(OptimizationPass::kConstantFolding),
636 OptDef(OptimizationPass::kInstructionSimplifier),
637 OptDef(OptimizationPass::kDeadCodeElimination, "dead_code_elimination$initial")
Calin Juravleec748352015-07-29 13:52:12 +0100638 };
Aart Bik2ca10eb2017-11-15 15:17:53 -0800639 RunOptimizations(graph,
640 codegen,
641 dex_compilation_unit,
642 pass_observer,
643 handles,
644 optimizations1);
Calin Juravleec748352015-07-29 13:52:12 +0100645
Aart Bik2ca10eb2017-11-15 15:17:53 -0800646 MaybeRunInliner(graph, codegen, dex_compilation_unit, pass_observer, handles);
David Brazdil95177982015-10-30 12:56:58 -0500647
Aart Bik2ca10eb2017-11-15 15:17:53 -0800648 OptimizationDef optimizations2[] = {
David Brazdil74eb1b22015-12-14 11:44:01 +0000649 // SelectGenerator depends on the InstructionSimplifier removing
David Brazdil8993caf2015-12-07 10:04:40 +0000650 // redundant suspend checks to recognize empty blocks.
Aart Bik2ca10eb2017-11-15 15:17:53 -0800651 OptDef(OptimizationPass::kSelectGenerator),
652 // TODO: if we don't inline we can also skip fold2.
653 OptDef(OptimizationPass::kConstantFolding, "constant_folding$after_inlining"),
654 OptDef(OptimizationPass::kInstructionSimplifier, "instruction_simplifier$after_inlining"),
655 OptDef(OptimizationPass::kDeadCodeElimination, "dead_code_elimination$after_inlining"),
656 OptDef(OptimizationPass::kSideEffectsAnalysis, "side_effects$before_gvn"),
657 OptDef(OptimizationPass::kGlobalValueNumbering),
658 OptDef(OptimizationPass::kInvariantCodeMotion),
659 OptDef(OptimizationPass::kInductionVarAnalysis),
660 OptDef(OptimizationPass::kBoundsCheckElimination),
661 OptDef(OptimizationPass::kLoopOptimization),
662 // Evaluates code generated by dynamic bce.
663 OptDef(OptimizationPass::kConstantFolding, "constant_folding$after_bce"),
664 OptDef(OptimizationPass::kInstructionSimplifier, "instruction_simplifier$after_bce"),
665 OptDef(OptimizationPass::kSideEffectsAnalysis, "side_effects$before_lse"),
666 OptDef(OptimizationPass::kLoadStoreAnalysis),
667 OptDef(OptimizationPass::kLoadStoreElimination),
668 OptDef(OptimizationPass::kCHAGuardOptimization),
669 OptDef(OptimizationPass::kDeadCodeElimination, "dead_code_elimination$final"),
670 OptDef(OptimizationPass::kCodeSinking),
David Brazdil8993caf2015-12-07 10:04:40 +0000671 // The codegen has a few assumptions that only the instruction simplifier
672 // can satisfy. For example, the code generator does not expect to see a
673 // HTypeConversion from a type to the same type.
Aart Bik2ca10eb2017-11-15 15:17:53 -0800674 OptDef(OptimizationPass::kInstructionSimplifier, "instruction_simplifier$before_codegen"),
675 // Eliminate constructor fences after code sinking to avoid
676 // complicated sinking logic to split a fence with many inputs.
677 OptDef(OptimizationPass::kConstructorFenceRedundancyElimination)
David Brazdil8993caf2015-12-07 10:04:40 +0000678 };
Aart Bik2ca10eb2017-11-15 15:17:53 -0800679 RunOptimizations(graph,
680 codegen,
681 dex_compilation_unit,
682 pass_observer,
683 handles,
684 optimizations2);
David Brazdilbbd733e2015-08-18 17:48:17 +0100685
Aart Bik2ca10eb2017-11-15 15:17:53 -0800686 RunArchOptimizations(graph, codegen, dex_compilation_unit, pass_observer, handles);
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000687}
688
Vladimir Markod8dbc8d2017-09-20 13:37:47 +0100689static ArenaVector<linker::LinkerPatch> EmitAndSortLinkerPatches(CodeGenerator* codegen) {
Vladimir Markoca6fff82017-10-03 14:49:14 +0100690 ArenaVector<linker::LinkerPatch> linker_patches(codegen->GetGraph()->GetAllocator()->Adapter());
Vladimir Marko58155012015-08-19 12:49:41 +0000691 codegen->EmitLinkerPatches(&linker_patches);
692
693 // Sort patches by literal offset. Required for .oat_patches encoding.
694 std::sort(linker_patches.begin(), linker_patches.end(),
Vladimir Markod8dbc8d2017-09-20 13:37:47 +0100695 [](const linker::LinkerPatch& lhs, const linker::LinkerPatch& rhs) {
Vladimir Marko58155012015-08-19 12:49:41 +0000696 return lhs.LiteralOffset() < rhs.LiteralOffset();
697 });
698
699 return linker_patches;
700}
701
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100702CompiledMethod* OptimizingCompiler::Emit(ArenaAllocator* allocator,
David Brazdil58282f42016-01-14 12:45:10 +0000703 CodeVectorAllocator* code_allocator,
704 CodeGenerator* codegen,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000705 const DexFile::CodeItem* code_item_for_osr_check) const {
Vladimir Markod8dbc8d2017-09-20 13:37:47 +0100706 ArenaVector<linker::LinkerPatch> linker_patches = EmitAndSortLinkerPatches(codegen);
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100707 ArenaVector<uint8_t> stack_map(allocator->Adapter(kArenaAllocStackMaps));
708 ArenaVector<uint8_t> method_info(allocator->Adapter(kArenaAllocStackMaps));
Mathieu Chartiercbcedbf2017-03-12 22:24:50 -0700709 size_t stack_map_size = 0;
710 size_t method_info_size = 0;
711 codegen->ComputeStackMapAndMethodInfoSize(&stack_map_size, &method_info_size);
712 stack_map.resize(stack_map_size);
713 method_info.resize(method_info_size);
714 codegen->BuildStackMaps(MemoryRegion(stack_map.data(), stack_map.size()),
715 MemoryRegion(method_info.data(), method_info.size()),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000716 code_item_for_osr_check);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000717
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100718 CompiledMethod* compiled_method = CompiledMethod::SwapAllocCompiledMethod(
Aart Bik2ca10eb2017-11-15 15:17:53 -0800719 GetCompilerDriver(),
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000720 codegen->GetInstructionSet(),
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000721 ArrayRef<const uint8_t>(code_allocator->GetMemory()),
Roland Levillainaa9b7c42015-02-17 15:40:09 +0000722 // Follow Quick's behavior and set the frame size to zero if it is
723 // considered "empty" (see the definition of
724 // art::CodeGenerator::HasEmptyFrame).
725 codegen->HasEmptyFrame() ? 0 : codegen->GetFrameSize(),
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000726 codegen->GetCoreSpillMask(),
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000727 codegen->GetFpuSpillMask(),
Mathieu Chartiercbcedbf2017-03-12 22:24:50 -0700728 ArrayRef<const uint8_t>(method_info),
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100729 ArrayRef<const uint8_t>(stack_map),
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100730 ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data()),
Vladimir Markod8dbc8d2017-09-20 13:37:47 +0100731 ArrayRef<const linker::LinkerPatch>(linker_patches));
Mathieu Chartiered150002015-08-28 11:16:54 -0700732
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100733 return compiled_method;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000734}
735
Vladimir Markoca6fff82017-10-03 14:49:14 +0100736CodeGenerator* OptimizingCompiler::TryCompile(ArenaAllocator* allocator,
737 ArenaStack* arena_stack,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000738 CodeVectorAllocator* code_allocator,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000739 const DexCompilationUnit& dex_compilation_unit,
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000740 ArtMethod* method,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000741 bool osr,
742 VariableSizedHandleScope* handles) const {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000743 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kAttemptBytecodeCompilation);
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000744 CompilerDriver* compiler_driver = GetCompilerDriver();
745 InstructionSet instruction_set = compiler_driver->GetInstructionSet();
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000746 const DexFile& dex_file = *dex_compilation_unit.GetDexFile();
747 uint32_t method_idx = dex_compilation_unit.GetDexMethodIndex();
748 const DexFile::CodeItem* code_item = dex_compilation_unit.GetCodeItem();
Calin Juravlecff8cc72015-10-09 12:03:24 +0100749
Roland Levillain3b359c72015-11-17 19:35:12 +0000750 // Always use the Thumb-2 assembler: some runtime functionality
751 // (like implicit stack overflow checks) assume Thumb-2.
Vladimir Marko33bff252017-11-01 14:35:42 +0000752 DCHECK_NE(instruction_set, InstructionSet::kArm);
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100753
754 // Do not attempt to compile on architectures we do not support.
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000755 if (!IsInstructionSetSupported(instruction_set)) {
Igor Murashkin1e065a52017-08-09 13:20:34 -0700756 MaybeRecordStat(compilation_stats_.get(),
757 MethodCompilationStat::kNotCompiledUnsupportedIsa);
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100758 return nullptr;
759 }
760
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000761 if (Compiler::IsPathologicalCase(*code_item, method_idx, dex_file)) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000762 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kNotCompiledPathological);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000763 return nullptr;
764 }
765
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000766 // Implementation of the space filter: do not compile a code item whose size in
Nicolas Geoffray432bf3d2015-07-17 11:11:09 +0100767 // code units is bigger than 128.
768 static constexpr size_t kSpaceFilterOptimizingThreshold = 128;
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000769 const CompilerOptions& compiler_options = compiler_driver->GetCompilerOptions();
Andreas Gampe29d38e72016-03-23 15:31:51 +0000770 if ((compiler_options.GetCompilerFilter() == CompilerFilter::kSpace)
Mathieu Chartier698ebbc2018-01-05 11:00:42 -0800771 && (CodeItemInstructionAccessor(dex_file, code_item).InsnsSizeInCodeUnits() >
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800772 kSpaceFilterOptimizingThreshold)) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000773 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kNotCompiledSpaceFilter);
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000774 return nullptr;
775 }
776
Mathieu Chartier8892c6b2018-01-09 15:10:17 -0800777 CodeItemDebugInfoAccessor code_item_accessor(dex_file, code_item, method_idx);
Vladimir Markoca6fff82017-10-03 14:49:14 +0100778 HGraph* graph = new (allocator) HGraph(
779 allocator,
780 arena_stack,
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000781 dex_file,
782 method_idx,
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000783 compiler_driver->GetInstructionSet(),
784 kInvalidInvokeType,
785 compiler_driver->GetCompilerOptions().GetDebuggable(),
786 osr);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000787
Mathieu Chartier210531f2018-01-12 10:15:51 -0800788 ArrayRef<const uint8_t> interpreter_metadata;
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000789 // For AOT compilation, we may not get a method, for example if its class is erroneous.
790 // JIT should always have a method.
791 DCHECK(Runtime::Current()->IsAotCompiler() || method != nullptr);
792 if (method != nullptr) {
793 graph->SetArtMethod(method);
794 ScopedObjectAccess soa(Thread::Current());
Nicolas Geoffray8eaa8e52017-11-13 17:47:50 +0000795 interpreter_metadata = method->GetQuickenedInfo();
David Brazdilbadd8262016-02-02 16:28:56 +0000796 }
797
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000798 std::unique_ptr<CodeGenerator> codegen(
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000799 CodeGenerator::Create(graph,
800 instruction_set,
801 *compiler_driver->GetInstructionSetFeatures(),
Calin Juravle2ae48182016-03-16 14:05:09 +0000802 compiler_driver->GetCompilerOptions(),
803 compilation_stats_.get()));
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000804 if (codegen.get() == nullptr) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000805 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kNotCompiledNoCodegen);
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000806 return nullptr;
807 }
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100808 codegen->GetAssembler()->cfi().SetEnabled(
David Srbecky5b1c2ca2016-01-25 17:32:41 +0000809 compiler_driver->GetCompilerOptions().GenerateAnyDebugInfo());
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000810
David Brazdil69ba7b72015-06-23 18:27:30 +0100811 PassObserver pass_observer(graph,
David Brazdil69ba7b72015-06-23 18:27:30 +0100812 codegen.get(),
813 visualizer_output_.get(),
Andreas Gampea0d81af2016-10-27 12:04:57 -0700814 compiler_driver,
815 dump_mutex_);
David Brazdil5e8b1372015-01-23 14:39:08 +0000816
David Brazdil809658e2015-02-05 11:34:02 +0000817 {
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000818 VLOG(compiler) << "Building " << pass_observer.GetMethodName();
819 PassScope scope(HGraphBuilder::kBuilderPassName, &pass_observer);
820 HGraphBuilder builder(graph,
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800821 code_item_accessor,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000822 &dex_compilation_unit,
823 &dex_compilation_unit,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000824 compiler_driver,
Nicolas Geoffray83c8e272017-01-31 14:36:37 +0000825 codegen.get(),
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000826 compilation_stats_.get(),
827 interpreter_metadata,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000828 handles);
829 GraphAnalysisResult result = builder.BuildGraph();
830 if (result != kAnalysisSuccess) {
831 switch (result) {
Igor Murashkin1e065a52017-08-09 13:20:34 -0700832 case kAnalysisSkipped: {
833 MaybeRecordStat(compilation_stats_.get(),
834 MethodCompilationStat::kNotCompiledSkipped);
835 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000836 break;
Igor Murashkin1e065a52017-08-09 13:20:34 -0700837 case kAnalysisInvalidBytecode: {
838 MaybeRecordStat(compilation_stats_.get(),
839 MethodCompilationStat::kNotCompiledInvalidBytecode);
840 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000841 break;
Igor Murashkin1e065a52017-08-09 13:20:34 -0700842 case kAnalysisFailThrowCatchLoop: {
843 MaybeRecordStat(compilation_stats_.get(),
844 MethodCompilationStat::kNotCompiledThrowCatchLoop);
845 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000846 break;
Igor Murashkin1e065a52017-08-09 13:20:34 -0700847 case kAnalysisFailAmbiguousArrayOp: {
848 MaybeRecordStat(compilation_stats_.get(),
849 MethodCompilationStat::kNotCompiledAmbiguousArrayOp);
850 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000851 break;
852 case kAnalysisSuccess:
853 UNREACHABLE();
David Brazdil809658e2015-02-05 11:34:02 +0000854 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000855 pass_observer.SetGraphInBadState();
856 return nullptr;
Nicolas Geoffrayf5370122014-12-02 11:51:19 +0000857 }
David Brazdilbadd8262016-02-02 16:28:56 +0000858 }
Vladimir Markof9f64412015-09-02 14:05:49 +0100859
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000860 RunOptimizations(graph,
861 codegen.get(),
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000862 dex_compilation_unit,
863 &pass_observer,
864 handles);
865
866 RegisterAllocator::Strategy regalloc_strategy =
867 compiler_options.GetRegisterAllocationStrategy();
Igor Murashkin1e065a52017-08-09 13:20:34 -0700868 AllocateRegisters(graph,
869 codegen.get(),
870 &pass_observer,
Igor Murashkin6ef45672017-08-08 13:59:55 -0700871 regalloc_strategy,
872 compilation_stats_.get());
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000873
874 codegen->Compile(code_allocator);
875 pass_observer.DumpDisassembly();
876
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000877 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kCompiledBytecode);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000878 return codegen.release();
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000879}
880
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000881CodeGenerator* OptimizingCompiler::TryCompileIntrinsic(
882 ArenaAllocator* allocator,
883 ArenaStack* arena_stack,
884 CodeVectorAllocator* code_allocator,
885 const DexCompilationUnit& dex_compilation_unit,
886 ArtMethod* method,
887 VariableSizedHandleScope* handles) const {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000888 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kAttemptIntrinsicCompilation);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000889 CompilerDriver* compiler_driver = GetCompilerDriver();
890 InstructionSet instruction_set = compiler_driver->GetInstructionSet();
891 const DexFile& dex_file = *dex_compilation_unit.GetDexFile();
892 uint32_t method_idx = dex_compilation_unit.GetDexMethodIndex();
893
894 // Always use the Thumb-2 assembler: some runtime functionality
895 // (like implicit stack overflow checks) assume Thumb-2.
896 DCHECK_NE(instruction_set, InstructionSet::kArm);
897
898 // Do not attempt to compile on architectures we do not support.
899 if (!IsInstructionSetSupported(instruction_set)) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000900 return nullptr;
901 }
902
903 HGraph* graph = new (allocator) HGraph(
904 allocator,
905 arena_stack,
906 dex_file,
907 method_idx,
908 compiler_driver->GetInstructionSet(),
909 kInvalidInvokeType,
910 compiler_driver->GetCompilerOptions().GetDebuggable(),
911 /* osr */ false);
912
913 DCHECK(Runtime::Current()->IsAotCompiler());
914 DCHECK(method != nullptr);
915 graph->SetArtMethod(method);
916
917 std::unique_ptr<CodeGenerator> codegen(
918 CodeGenerator::Create(graph,
919 instruction_set,
920 *compiler_driver->GetInstructionSetFeatures(),
921 compiler_driver->GetCompilerOptions(),
922 compilation_stats_.get()));
923 if (codegen.get() == nullptr) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000924 return nullptr;
925 }
926 codegen->GetAssembler()->cfi().SetEnabled(
927 compiler_driver->GetCompilerOptions().GenerateAnyDebugInfo());
928
929 PassObserver pass_observer(graph,
930 codegen.get(),
931 visualizer_output_.get(),
932 compiler_driver,
933 dump_mutex_);
934
935 {
936 VLOG(compiler) << "Building intrinsic graph " << pass_observer.GetMethodName();
937 PassScope scope(HGraphBuilder::kBuilderPassName, &pass_observer);
938 HGraphBuilder builder(graph,
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800939 CodeItemDebugInfoAccessor(), // Null code item.
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000940 &dex_compilation_unit,
941 &dex_compilation_unit,
942 compiler_driver,
943 codegen.get(),
944 compilation_stats_.get(),
Mathieu Chartier210531f2018-01-12 10:15:51 -0800945 /* interpreter_metadata */ ArrayRef<const uint8_t>(),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000946 handles);
947 builder.BuildIntrinsicGraph(method);
948 }
949
Aart Bik2ca10eb2017-11-15 15:17:53 -0800950 OptimizationDef optimizations[] = {
951 OptDef(OptimizationPass::kIntrinsicsRecognizer),
952 // Some intrinsics are converted to HIR by the simplifier and the codegen also
953 // has a few assumptions that only the instruction simplifier can satisfy.
954 OptDef(OptimizationPass::kInstructionSimplifier),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000955 };
Aart Bik2ca10eb2017-11-15 15:17:53 -0800956 RunOptimizations(graph,
957 codegen.get(),
958 dex_compilation_unit,
959 &pass_observer,
960 handles,
961 optimizations);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000962
Aart Bik2ca10eb2017-11-15 15:17:53 -0800963 RunArchOptimizations(graph, codegen.get(), dex_compilation_unit, &pass_observer, handles);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000964
965 AllocateRegisters(graph,
966 codegen.get(),
967 &pass_observer,
968 compiler_driver->GetCompilerOptions().GetRegisterAllocationStrategy(),
969 compilation_stats_.get());
970 if (!codegen->IsLeafMethod()) {
971 VLOG(compiler) << "Intrinsic method is not leaf: " << method->GetIntrinsic()
972 << " " << graph->PrettyMethod();
973 return nullptr;
974 }
975
976 codegen->Compile(code_allocator);
977 pass_observer.DumpDisassembly();
978
979 VLOG(compiler) << "Compiled intrinsic: " << method->GetIntrinsic()
980 << " " << graph->PrettyMethod();
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000981 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kCompiledIntrinsic);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000982 return codegen.release();
983}
984
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000985CompiledMethod* OptimizingCompiler::Compile(const DexFile::CodeItem* code_item,
986 uint32_t access_flags,
987 InvokeType invoke_type,
988 uint16_t class_def_idx,
989 uint32_t method_idx,
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000990 Handle<mirror::ClassLoader> jclass_loader,
Mathieu Chartier736b5602015-09-02 14:54:11 -0700991 const DexFile& dex_file,
992 Handle<mirror::DexCache> dex_cache) const {
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100993 CompilerDriver* compiler_driver = GetCompilerDriver();
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000994 CompiledMethod* compiled_method = nullptr;
995 Runtime* runtime = Runtime::Current();
996 DCHECK(runtime->IsAotCompiler());
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000997 const VerifiedMethod* verified_method = compiler_driver->GetVerifiedMethod(&dex_file, method_idx);
998 DCHECK(!verified_method->HasRuntimeThrow());
Vladimir Markoca6fff82017-10-03 14:49:14 +0100999 if (compiler_driver->IsMethodVerifiedWithoutFailures(method_idx, class_def_idx, dex_file) ||
1000 verifier::CanCompilerHandleVerificationFailure(
1001 verified_method->GetEncounteredVerificationFailures())) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001002 ArenaAllocator allocator(runtime->GetArenaPool());
1003 ArenaStack arena_stack(runtime->GetArenaPool());
Vladimir Markoca6fff82017-10-03 14:49:14 +01001004 CodeVectorAllocator code_allocator(&allocator);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001005 std::unique_ptr<CodeGenerator> codegen;
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001006 bool compiled_intrinsic = false;
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001007 {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001008 DexCompilationUnit dex_compilation_unit(
1009 jclass_loader,
1010 runtime->GetClassLinker(),
1011 dex_file,
1012 code_item,
1013 class_def_idx,
1014 method_idx,
1015 access_flags,
1016 /* verified_method */ nullptr, // Not needed by the Optimizing compiler.
1017 dex_cache);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001018 ScopedObjectAccess soa(Thread::Current());
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001019 ArtMethod* method = compiler_driver->ResolveMethod(
1020 soa, dex_cache, jclass_loader, &dex_compilation_unit, method_idx, invoke_type);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001021 VariableSizedHandleScope handles(soa.Self());
1022 // Go to native so that we don't block GC during compilation.
1023 ScopedThreadSuspension sts(soa.Self(), kNative);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001024 if (method != nullptr && UNLIKELY(method->IsIntrinsic())) {
1025 DCHECK(compiler_driver->GetCompilerOptions().IsBootImage());
1026 codegen.reset(
1027 TryCompileIntrinsic(&allocator,
1028 &arena_stack,
1029 &code_allocator,
1030 dex_compilation_unit,
1031 method,
1032 &handles));
1033 if (codegen != nullptr) {
1034 compiled_intrinsic = true;
1035 }
1036 }
1037 if (codegen == nullptr) {
1038 codegen.reset(
1039 TryCompile(&allocator,
1040 &arena_stack,
1041 &code_allocator,
1042 dex_compilation_unit,
1043 method,
1044 /* osr */ false,
1045 &handles));
1046 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001047 }
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001048 if (codegen.get() != nullptr) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001049 compiled_method = Emit(&allocator,
1050 &code_allocator,
1051 codegen.get(),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001052 compiled_intrinsic ? nullptr : code_item);
1053 if (compiled_intrinsic) {
1054 compiled_method->MarkAsIntrinsic();
1055 }
Vladimir Marko3a40bf22016-03-22 16:26:33 +00001056
1057 if (kArenaAllocatorCountAllocations) {
Vladimir Marko174b2e22017-10-12 13:34:49 +01001058 codegen.reset(); // Release codegen's ScopedArenaAllocator for memory accounting.
Vladimir Markoca6fff82017-10-03 14:49:14 +01001059 size_t total_allocated = allocator.BytesAllocated() + arena_stack.PeakBytesAllocated();
1060 if (total_allocated > kArenaAllocatorMemoryReportThreshold) {
1061 MemStats mem_stats(allocator.GetMemStats());
1062 MemStats peak_stats(arena_stack.GetPeakStats());
Vladimir Marko69d310e2017-10-09 14:12:23 +01001063 LOG(INFO) << "Used " << total_allocated << " bytes of arena memory for compiling "
1064 << dex_file.PrettyMethod(method_idx)
Vladimir Markoca6fff82017-10-03 14:49:14 +01001065 << "\n" << Dumpable<MemStats>(mem_stats)
1066 << "\n" << Dumpable<MemStats>(peak_stats);
Vladimir Marko3a40bf22016-03-22 16:26:33 +00001067 }
1068 }
Calin Juravlef1c6d9e2015-04-13 18:42:21 +01001069 }
Nicolas Geoffray0c3c2662015-10-15 13:53:04 +01001070 } else {
Igor Murashkin1e065a52017-08-09 13:20:34 -07001071 MethodCompilationStat method_stat;
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001072 if (compiler_driver->GetCompilerOptions().VerifyAtRuntime()) {
Igor Murashkin1e065a52017-08-09 13:20:34 -07001073 method_stat = MethodCompilationStat::kNotCompiledVerifyAtRuntime;
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001074 } else {
Igor Murashkin1e065a52017-08-09 13:20:34 -07001075 method_stat = MethodCompilationStat::kNotCompiledVerificationError;
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001076 }
Igor Murashkin1e065a52017-08-09 13:20:34 -07001077 MaybeRecordStat(compilation_stats_.get(), method_stat);
Calin Juravlef1c6d9e2015-04-13 18:42:21 +01001078 }
1079
Calin Juravlecff8cc72015-10-09 12:03:24 +01001080 if (kIsDebugBuild &&
1081 IsCompilingWithCoreImage() &&
Goran Jakovljevic9c4f0d8f2017-04-05 16:27:25 +02001082 IsInstructionSetSupported(compiler_driver->GetInstructionSet())) {
Roland Levillain0d5a2812015-11-13 10:07:31 +00001083 // For testing purposes, we put a special marker on method names
Goran Jakovljevic9c4f0d8f2017-04-05 16:27:25 +02001084 // that should be compiled with this compiler (when the
1085 // instruction set is supported). This makes sure we're not
Roland Levillain0d5a2812015-11-13 10:07:31 +00001086 // regressing.
David Sehr709b0702016-10-13 09:12:37 -07001087 std::string method_name = dex_file.PrettyMethod(method_idx);
Calin Juravle09b1d6f2015-10-07 12:08:54 +01001088 bool shouldCompile = method_name.find("$opt$") != std::string::npos;
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001089 DCHECK((compiled_method != nullptr) || !shouldCompile) << "Didn't compile " << method_name;
Calin Juravle09b1d6f2015-10-07 12:08:54 +01001090 }
1091
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001092 return compiled_method;
1093}
1094
1095CompiledMethod* OptimizingCompiler::JniCompile(uint32_t access_flags,
1096 uint32_t method_idx,
1097 const DexFile& dex_file,
1098 Handle<mirror::DexCache> dex_cache) const {
1099 if (GetCompilerDriver()->GetCompilerOptions().IsBootImage()) {
1100 ScopedObjectAccess soa(Thread::Current());
1101 Runtime* runtime = Runtime::Current();
1102 ArtMethod* method = runtime->GetClassLinker()->LookupResolvedMethod(
1103 method_idx, dex_cache.Get(), /* class_loader */ nullptr);
1104 if (method != nullptr && UNLIKELY(method->IsIntrinsic())) {
1105 ScopedNullHandle<mirror::ClassLoader> class_loader; // null means boot class path loader.
1106 DexCompilationUnit dex_compilation_unit(
1107 class_loader,
1108 runtime->GetClassLinker(),
1109 dex_file,
1110 /* code_item */ nullptr,
1111 /* class_def_idx */ DexFile::kDexNoIndex16,
1112 method_idx,
1113 access_flags,
1114 /* verified_method */ nullptr,
1115 dex_cache);
1116 ArenaAllocator allocator(runtime->GetArenaPool());
1117 ArenaStack arena_stack(runtime->GetArenaPool());
1118 CodeVectorAllocator code_allocator(&allocator);
1119 VariableSizedHandleScope handles(soa.Self());
1120 // Go to native so that we don't block GC during compilation.
1121 ScopedThreadSuspension sts(soa.Self(), kNative);
1122 std::unique_ptr<CodeGenerator> codegen(
1123 TryCompileIntrinsic(&allocator,
1124 &arena_stack,
1125 &code_allocator,
1126 dex_compilation_unit,
1127 method,
1128 &handles));
1129 if (codegen != nullptr) {
1130 CompiledMethod* compiled_method = Emit(&allocator,
1131 &code_allocator,
1132 codegen.get(),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001133 /* code_item_for_osr_check */ nullptr);
1134 compiled_method->MarkAsIntrinsic();
1135 return compiled_method;
1136 }
1137 }
1138 }
1139
Vladimir Marko7bdc6e72017-11-28 12:37:13 +00001140 JniCompiledMethod jni_compiled_method = ArtQuickJniCompileMethod(
1141 GetCompilerDriver(), access_flags, method_idx, dex_file);
Vladimir Markocd09e1f2017-11-24 15:02:40 +00001142 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kCompiledNativeStub);
Vladimir Marko7bdc6e72017-11-28 12:37:13 +00001143 return CompiledMethod::SwapAllocCompiledMethod(
1144 GetCompilerDriver(),
1145 jni_compiled_method.GetInstructionSet(),
1146 jni_compiled_method.GetCode(),
1147 jni_compiled_method.GetFrameSize(),
1148 jni_compiled_method.GetCoreSpillMask(),
1149 jni_compiled_method.GetFpSpillMask(),
1150 /* method_info */ ArrayRef<const uint8_t>(),
1151 /* vmap_table */ ArrayRef<const uint8_t>(),
1152 jni_compiled_method.GetCfi(),
1153 /* patches */ ArrayRef<const linker::LinkerPatch>());
Nicolas Geoffray216eaa22015-03-17 17:09:30 +00001154}
1155
Andreas Gampe53c913b2014-08-12 23:19:23 -07001156Compiler* CreateOptimizingCompiler(CompilerDriver* driver) {
1157 return new OptimizingCompiler(driver);
1158}
1159
Nicolas Geoffray335005e2015-06-25 10:01:47 +01001160bool IsCompilingWithCoreImage() {
1161 const std::string& image = Runtime::Current()->GetImageLocation();
Roland Levillain2b03a1f2017-06-06 16:09:59 +01001162 return CompilerDriver::IsCoreImageFilename(image);
Nicolas Geoffray335005e2015-06-25 10:01:47 +01001163}
1164
Nicolas Geoffrayfbdfa6d2017-02-03 10:43:13 +00001165bool EncodeArtMethodInInlineInfo(ArtMethod* method ATTRIBUTE_UNUSED) {
1166 // Note: the runtime is null only for unit testing.
1167 return Runtime::Current() == nullptr || !Runtime::Current()->IsAotCompiler();
1168}
1169
1170bool CanEncodeInlinedMethodInStackMap(const DexFile& caller_dex_file, ArtMethod* callee) {
1171 if (!Runtime::Current()->IsAotCompiler()) {
1172 // JIT can always encode methods in stack maps.
1173 return true;
1174 }
1175 if (IsSameDexFile(caller_dex_file, *callee->GetDexFile())) {
1176 return true;
1177 }
1178 // TODO(ngeoffray): Support more AOT cases for inlining:
1179 // - methods in multidex
1180 // - methods in boot image for on-device non-PIC compilation.
1181 return false;
1182}
1183
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001184bool OptimizingCompiler::JitCompile(Thread* self,
1185 jit::JitCodeCache* code_cache,
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +00001186 ArtMethod* method,
Nicolas Geoffray01db5f72017-07-19 15:05:49 +01001187 bool osr,
1188 jit::JitLogger* jit_logger) {
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001189 StackHandleScope<3> hs(self);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001190 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(
1191 method->GetDeclaringClass()->GetClassLoader()));
1192 Handle<mirror::DexCache> dex_cache(hs.NewHandle(method->GetDexCache()));
Nicolas Geoffray250a3782016-04-20 16:27:53 +01001193 DCHECK(method->IsCompilable());
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001194
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001195 const DexFile* dex_file = method->GetDexFile();
1196 const uint16_t class_def_idx = method->GetClassDefIndex();
1197 const DexFile::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset());
1198 const uint32_t method_idx = method->GetDexMethodIndex();
1199 const uint32_t access_flags = method->GetAccessFlags();
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001200
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001201 Runtime* runtime = Runtime::Current();
1202 ArenaAllocator allocator(runtime->GetJitArenaPool());
Vladimir Marko2196c652017-11-30 16:16:07 +00001203
1204 if (UNLIKELY(method->IsNative())) {
1205 JniCompiledMethod jni_compiled_method = ArtQuickJniCompileMethod(
1206 GetCompilerDriver(), access_flags, method_idx, *dex_file);
1207 ScopedNullHandle<mirror::ObjectArray<mirror::Object>> roots;
1208 ArenaSet<ArtMethod*, std::less<ArtMethod*>> cha_single_implementation_list(
1209 allocator.Adapter(kArenaAllocCHA));
1210 const void* code = code_cache->CommitCode(
1211 self,
1212 method,
1213 /* stack_map_data */ nullptr,
1214 /* method_info_data */ nullptr,
1215 /* roots_data */ nullptr,
1216 jni_compiled_method.GetFrameSize(),
1217 jni_compiled_method.GetCoreSpillMask(),
1218 jni_compiled_method.GetFpSpillMask(),
1219 jni_compiled_method.GetCode().data(),
1220 jni_compiled_method.GetCode().size(),
1221 /* data_size */ 0u,
1222 osr,
1223 roots,
1224 /* has_should_deoptimize_flag */ false,
1225 cha_single_implementation_list);
1226 if (code == nullptr) {
1227 return false;
1228 }
1229
1230 const CompilerOptions& compiler_options = GetCompilerDriver()->GetCompilerOptions();
David Srbeckyf4886df2017-12-11 16:06:29 +00001231 if (compiler_options.GenerateAnyDebugInfo()) {
Vladimir Marko2196c652017-11-30 16:16:07 +00001232 const auto* method_header = reinterpret_cast<const OatQuickMethodHeader*>(code);
1233 const uintptr_t code_address = reinterpret_cast<uintptr_t>(method_header->GetCode());
1234 debug::MethodDebugInfo info = {};
David Srbeckyc684f332018-01-19 17:38:06 +00001235 DCHECK(info.custom_name.empty());
Vladimir Marko2196c652017-11-30 16:16:07 +00001236 info.dex_file = dex_file;
1237 info.class_def_index = class_def_idx;
1238 info.dex_method_index = method_idx;
1239 info.access_flags = access_flags;
1240 info.code_item = code_item;
1241 info.isa = jni_compiled_method.GetInstructionSet();
1242 info.deduped = false;
1243 info.is_native_debuggable = compiler_options.GetNativeDebuggable();
1244 info.is_optimized = true;
1245 info.is_code_address_text_relative = false;
1246 info.code_address = code_address;
1247 info.code_size = jni_compiled_method.GetCode().size();
1248 info.frame_size_in_bytes = method_header->GetFrameSizeInBytes();
1249 info.code_info = nullptr;
1250 info.cfi = jni_compiled_method.GetCfi();
David Srbeckyc684f332018-01-19 17:38:06 +00001251 GenerateJitDebugInfo(info);
Vladimir Marko2196c652017-11-30 16:16:07 +00001252 }
1253
1254 Runtime::Current()->GetJit()->AddMemoryUsage(method, allocator.BytesUsed());
1255 if (jit_logger != nullptr) {
1256 jit_logger->WriteLog(code, jni_compiled_method.GetCode().size(), method);
1257 }
1258 return true;
1259 }
1260
1261 ArenaStack arena_stack(runtime->GetJitArenaPool());
Vladimir Markoca6fff82017-10-03 14:49:14 +01001262 CodeVectorAllocator code_allocator(&allocator);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001263 VariableSizedHandleScope handles(self);
1264
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001265 std::unique_ptr<CodeGenerator> codegen;
1266 {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001267 DexCompilationUnit dex_compilation_unit(
1268 class_loader,
1269 runtime->GetClassLinker(),
1270 *dex_file,
1271 code_item,
1272 class_def_idx,
1273 method_idx,
1274 access_flags,
1275 /* verified_method */ nullptr,
1276 dex_cache);
1277
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001278 // Go to native so that we don't block GC during compilation.
1279 ScopedThreadSuspension sts(self, kNative);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001280 codegen.reset(
Vladimir Markoca6fff82017-10-03 14:49:14 +01001281 TryCompile(&allocator,
1282 &arena_stack,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001283 &code_allocator,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001284 dex_compilation_unit,
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +00001285 method,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001286 osr,
1287 &handles));
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001288 if (codegen.get() == nullptr) {
1289 return false;
1290 }
1291 }
1292
Mathieu Chartiercbcedbf2017-03-12 22:24:50 -07001293 size_t stack_map_size = 0;
1294 size_t method_info_size = 0;
1295 codegen->ComputeStackMapAndMethodInfoSize(&stack_map_size, &method_info_size);
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001296 size_t number_of_roots = codegen->GetNumberOfJitRoots();
1297 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1298 // We allocate an object array to ensure the JIT roots that we will collect in EmitJitRoots
1299 // will be visible by the GC between EmitLiterals and CommitCode. Once CommitCode is
1300 // executed, this array is not needed.
1301 Handle<mirror::ObjectArray<mirror::Object>> roots(
1302 hs.NewHandle(mirror::ObjectArray<mirror::Object>::Alloc(
1303 self, class_linker->GetClassRoot(ClassLinker::kObjectArrayClass), number_of_roots)));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001304 if (roots == nullptr) {
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001305 // Out of memory, just clear the exception to avoid any Java exception uncaught problems.
Vladimir Markocd09e1f2017-11-24 15:02:40 +00001306 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kJitOutOfMemoryForCommit);
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001307 DCHECK(self->IsExceptionPending());
1308 self->ClearException();
1309 return false;
1310 }
1311 uint8_t* stack_map_data = nullptr;
Mathieu Chartiercbcedbf2017-03-12 22:24:50 -07001312 uint8_t* method_info_data = nullptr;
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001313 uint8_t* roots_data = nullptr;
Orion Hodsondbd05fe2017-08-10 11:41:35 +01001314 uint32_t data_size = code_cache->ReserveData(self,
1315 stack_map_size,
1316 method_info_size,
1317 number_of_roots,
1318 method,
1319 &stack_map_data,
1320 &method_info_data,
1321 &roots_data);
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001322 if (stack_map_data == nullptr || roots_data == nullptr) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +00001323 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kJitOutOfMemoryForCommit);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001324 return false;
1325 }
Mathieu Chartiercbcedbf2017-03-12 22:24:50 -07001326 codegen->BuildStackMaps(MemoryRegion(stack_map_data, stack_map_size),
1327 MemoryRegion(method_info_data, method_info_size),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001328 code_item);
Nicolas Geoffrayf0acfe72017-01-09 20:54:52 +00001329 codegen->EmitJitRoots(code_allocator.GetData(), roots, roots_data);
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001330
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001331 const void* code = code_cache->CommitCode(
1332 self,
1333 method,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001334 stack_map_data,
Mathieu Chartiercbcedbf2017-03-12 22:24:50 -07001335 method_info_data,
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001336 roots_data,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001337 codegen->HasEmptyFrame() ? 0 : codegen->GetFrameSize(),
1338 codegen->GetCoreSpillMask(),
1339 codegen->GetFpuSpillMask(),
1340 code_allocator.GetMemory().data(),
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +00001341 code_allocator.GetSize(),
Orion Hodsondbd05fe2017-08-10 11:41:35 +01001342 data_size,
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001343 osr,
Mingyao Yang063fc772016-08-02 11:02:54 -07001344 roots,
1345 codegen->GetGraph()->HasShouldDeoptimizeFlag(),
1346 codegen->GetGraph()->GetCHASingleImplementationList());
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001347
1348 if (code == nullptr) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +00001349 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kJitOutOfMemoryForCommit);
Nicolas Geoffrayf46501c2016-11-22 13:45:36 +00001350 code_cache->ClearData(self, stack_map_data, roots_data);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001351 return false;
1352 }
1353
David Srbecky91cc06c2016-03-07 16:13:58 +00001354 const CompilerOptions& compiler_options = GetCompilerDriver()->GetCompilerOptions();
David Srbeckyf4886df2017-12-11 16:06:29 +00001355 if (compiler_options.GenerateAnyDebugInfo()) {
David Srbecky5cc349f2015-12-18 15:04:48 +00001356 const auto* method_header = reinterpret_cast<const OatQuickMethodHeader*>(code);
1357 const uintptr_t code_address = reinterpret_cast<uintptr_t>(method_header->GetCode());
Vladimir Marko1b404a82017-09-01 13:35:26 +01001358 debug::MethodDebugInfo info = {};
David Srbeckyc684f332018-01-19 17:38:06 +00001359 DCHECK(info.custom_name.empty());
David Srbecky197160d2016-03-07 17:33:57 +00001360 info.dex_file = dex_file;
1361 info.class_def_index = class_def_idx;
1362 info.dex_method_index = method_idx;
1363 info.access_flags = access_flags;
1364 info.code_item = code_item;
1365 info.isa = codegen->GetInstructionSet();
1366 info.deduped = false;
1367 info.is_native_debuggable = compiler_options.GetNativeDebuggable();
1368 info.is_optimized = true;
1369 info.is_code_address_text_relative = false;
1370 info.code_address = code_address;
1371 info.code_size = code_allocator.GetSize();
1372 info.frame_size_in_bytes = method_header->GetFrameSizeInBytes();
1373 info.code_info = stack_map_size == 0 ? nullptr : stack_map_data;
1374 info.cfi = ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data());
David Srbeckyc684f332018-01-19 17:38:06 +00001375 GenerateJitDebugInfo(info);
David Srbecky5cc349f2015-12-18 15:04:48 +00001376 }
1377
Vladimir Markoca6fff82017-10-03 14:49:14 +01001378 Runtime::Current()->GetJit()->AddMemoryUsage(method, allocator.BytesUsed());
Nicolas Geoffray01db5f72017-07-19 15:05:49 +01001379 if (jit_logger != nullptr) {
1380 jit_logger->WriteLog(code, code_allocator.GetSize(), method);
1381 }
Nicolas Geoffraya4f81542016-03-08 16:57:48 +00001382
Vladimir Marko174b2e22017-10-12 13:34:49 +01001383 if (kArenaAllocatorCountAllocations) {
1384 codegen.reset(); // Release codegen's ScopedArenaAllocator for memory accounting.
1385 size_t total_allocated = allocator.BytesAllocated() + arena_stack.PeakBytesAllocated();
1386 if (total_allocated > kArenaAllocatorMemoryReportThreshold) {
1387 MemStats mem_stats(allocator.GetMemStats());
1388 MemStats peak_stats(arena_stack.GetPeakStats());
1389 LOG(INFO) << "Used " << total_allocated << " bytes of arena memory for compiling "
1390 << dex_file->PrettyMethod(method_idx)
1391 << "\n" << Dumpable<MemStats>(mem_stats)
1392 << "\n" << Dumpable<MemStats>(peak_stats);
1393 }
1394 }
1395
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001396 return true;
1397}
1398
David Srbeckyc684f332018-01-19 17:38:06 +00001399void OptimizingCompiler::GenerateJitDebugInfo(debug::MethodDebugInfo info) {
1400 const CompilerOptions& compiler_options = GetCompilerDriver()->GetCompilerOptions();
1401 DCHECK(compiler_options.GenerateAnyDebugInfo());
1402
1403 // If both flags are passed, generate full debug info.
1404 const bool mini_debug_info = !compiler_options.GetGenerateDebugInfo();
1405
1406 // Create entry for the single method that we just compiled.
1407 std::vector<uint8_t> elf_file = debug::MakeElfFileForJIT(
1408 GetCompilerDriver()->GetInstructionSet(),
1409 GetCompilerDriver()->GetInstructionSetFeatures(),
1410 mini_debug_info,
1411 ArrayRef<const debug::MethodDebugInfo>(&info, 1));
1412 MutexLock mu(Thread::Current(), g_jit_debug_mutex);
1413 JITCodeEntry* entry = CreateJITCodeEntry(elf_file);
1414 IncrementJITCodeEntryRefcount(entry, info.code_address);
1415}
1416
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +00001417} // namespace art