blob: 02751cb83e3594ed25b91cd9f6caf09f55663148 [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"
Andreas Gampe85f1c572018-11-21 13:52:48 -080029#include "base/logging.h"
Vladimir Markoc90d7c72015-10-06 17:30:45 +000030#include "base/macros.h"
Andreas Gampea0d81af2016-10-27 12:04:57 -070031#include "base/mutex.h"
Vladimir Markoca6fff82017-10-03 14:49:14 +010032#include "base/scoped_arena_allocator.h"
David Brazdil5e8b1372015-01-23 14:39:08 +000033#include "base/timing_logger.h"
Nicolas Geoffray787c3072014-03-17 10:20:19 +000034#include "builder.h"
35#include "code_generator.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000036#include "compiled_method.h"
Andreas Gampe53c913b2014-08-12 23:19:23 -070037#include "compiler.h"
David Srbeckyc5bfa972016-02-05 15:49:10 +000038#include "debug/elf_debug_writer.h"
David Srbecky4fda4eb2016-02-05 13:34:46 +000039#include "debug/method_debug_info.h"
David Sehr9e734c72018-01-04 17:56:19 -080040#include "dex/dex_file_types.h"
Calin Juravlef1c6d9e2015-04-13 18:42:21 +010041#include "dex/verification_results.h"
David Srbecky4fda4eb2016-02-05 13:34:46 +000042#include "dex/verified_method.h"
Vladimir Marko038924b2019-02-19 15:09:35 +000043#include "driver/compiled_method_storage.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000044#include "driver/compiler_options.h"
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000045#include "driver/dex_compilation_unit.h"
David Brazdil69ba7b72015-06-23 18:27:30 +010046#include "graph_checker.h"
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010047#include "graph_visualizer.h"
Nicolas Geoffraye53798a2014-12-01 10:31:54 +000048#include "inliner.h"
David Srbecky5cc349f2015-12-18 15:04:48 +000049#include "jit/debugger_interface.h"
Nicolas Geoffraya4f81542016-03-08 16:57:48 +000050#include "jit/jit.h"
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +000051#include "jit/jit_code_cache.h"
Nicolas Geoffray01db5f72017-07-19 15:05:49 +010052#include "jit/jit_logger.h"
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +000053#include "jni/quick/jni_compiler.h"
Vladimir Markod8dbc8d2017-09-20 13:37:47 +010054#include "linker/linker_patch.h"
Nicolas Geoffray787c3072014-03-17 10:20:19 +000055#include "nodes.h"
David Srbecky4fda4eb2016-02-05 13:34:46 +000056#include "oat_quick_method_header.h"
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +010057#include "prepare_for_register_allocation.h"
Calin Juravlef1c6d9e2015-04-13 18:42:21 +010058#include "reference_type_propagation.h"
Matthew Gharritye9288852016-07-14 14:08:16 -070059#include "register_allocator_linear_scan.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070060#include "select_generator.h"
Nicolas Geoffray31596742014-11-24 15:28:45 +000061#include "ssa_builder.h"
Nicolas Geoffray804d0932014-05-02 08:46:00 +010062#include "ssa_liveness_analysis.h"
David Srbecky4fda4eb2016-02-05 13:34:46 +000063#include "ssa_phi_elimination.h"
David Srbeckyafc97bc2018-07-05 08:14:35 +000064#include "stack_map_stream.h"
David Srbeckyc6b4dd82015-04-07 20:32:43 +010065#include "utils/assembler.h"
Andreas Gampe6d7abbd2017-04-24 13:19:09 -070066#include "verifier/verifier_compiler_binding.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000067
Vladimir Marko0a516052019-10-14 13:00:44 +000068namespace art {
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000069
Vladimir Marko3a40bf22016-03-22 16:26:33 +000070static constexpr size_t kArenaAllocatorMemoryReportThreshold = 8 * MB;
71
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -070072static constexpr const char* kPassNameSeparator = "$";
73
Nicolas Geoffray787c3072014-03-17 10:20:19 +000074/**
75 * Used by the code generator, to allocate the code in a vector.
76 */
Roland Levillainbbc6e7e2018-08-24 16:58:47 +010077class CodeVectorAllocator final : public CodeAllocator {
Nicolas Geoffray787c3072014-03-17 10:20:19 +000078 public:
Vladimir Markoe764d2e2017-10-05 14:35:55 +010079 explicit CodeVectorAllocator(ArenaAllocator* allocator)
Vladimir Markoca1e0382018-04-11 09:58:41 +000080 : memory_(allocator->Adapter(kArenaAllocCodeBuffer)) {}
Nicolas Geoffray787c3072014-03-17 10:20:19 +000081
Andreas Gampefa6a1b02018-09-07 08:11:55 -070082 uint8_t* Allocate(size_t size) override {
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000083 memory_.resize(size);
Nicolas Geoffray787c3072014-03-17 10:20:19 +000084 return &memory_[0];
85 }
86
Roland Levillainbbc6e7e2018-08-24 16:58:47 +010087 ArrayRef<const uint8_t> GetMemory() const override { return ArrayRef<const uint8_t>(memory_); }
Nicolas Geoffray132d8362016-11-16 09:19:42 +000088 uint8_t* GetData() { return memory_.data(); }
Nicolas Geoffray787c3072014-03-17 10:20:19 +000089
90 private:
Vladimir Markof9f64412015-09-02 14:05:49 +010091 ArenaVector<uint8_t> memory_;
Nicolas Geoffray787c3072014-03-17 10:20:19 +000092
93 DISALLOW_COPY_AND_ASSIGN(CodeVectorAllocator);
94};
95
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010096/**
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010097 * Filter to apply to the visualizer. Methods whose name contain that filter will
David Brazdilee690a32014-12-01 17:04:16 +000098 * be dumped.
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010099 */
Andreas Gampe53fcd0f2015-07-22 12:10:13 -0700100static constexpr const char kStringFilter[] = "";
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100101
David Brazdil69ba7b72015-06-23 18:27:30 +0100102class PassScope;
David Brazdil809658e2015-02-05 11:34:02 +0000103
David Brazdil69ba7b72015-06-23 18:27:30 +0100104class PassObserver : public ValueObject {
David Brazdil5e8b1372015-01-23 14:39:08 +0000105 public:
David Brazdil69ba7b72015-06-23 18:27:30 +0100106 PassObserver(HGraph* graph,
David Brazdil69ba7b72015-06-23 18:27:30 +0100107 CodeGenerator* codegen,
108 std::ostream* visualizer_output,
Vladimir Marko038924b2019-02-19 15:09:35 +0000109 const CompilerOptions& compiler_options,
Andreas Gampea0d81af2016-10-27 12:04:57 -0700110 Mutex& dump_mutex)
David Brazdil69ba7b72015-06-23 18:27:30 +0100111 : graph_(graph),
Aart Bika8360cd2018-05-02 16:07:51 -0700112 last_seen_graph_size_(0),
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000113 cached_method_name_(),
Vladimir Marko038924b2019-02-19 15:09:35 +0000114 timing_logger_enabled_(compiler_options.GetDumpPassTimings()),
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000115 timing_logger_(timing_logger_enabled_ ? GetMethodName() : "", true, true),
Vladimir Markoca6fff82017-10-03 14:49:14 +0100116 disasm_info_(graph->GetAllocator()),
Andreas Gampea0d81af2016-10-27 12:04:57 -0700117 visualizer_oss_(),
118 visualizer_output_(visualizer_output),
Vladimir Marko038924b2019-02-19 15:09:35 +0000119 visualizer_enabled_(!compiler_options.GetDumpCfgFileName().empty()),
Andreas Gampea0d81af2016-10-27 12:04:57 -0700120 visualizer_(&visualizer_oss_, graph, *codegen),
121 visualizer_dump_mutex_(dump_mutex),
David Brazdil69ba7b72015-06-23 18:27:30 +0100122 graph_in_bad_state_(false) {
Andreas Gampe53fcd0f2015-07-22 12:10:13 -0700123 if (timing_logger_enabled_ || visualizer_enabled_) {
Vladimir Marko038924b2019-02-19 15:09:35 +0000124 if (!IsVerboseMethod(compiler_options, GetMethodName())) {
Andreas Gampe53fcd0f2015-07-22 12:10:13 -0700125 timing_logger_enabled_ = visualizer_enabled_ = false;
126 }
127 if (visualizer_enabled_) {
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000128 visualizer_.PrintHeader(GetMethodName());
Andreas Gampe53fcd0f2015-07-22 12:10:13 -0700129 codegen->SetDisassemblyInformation(&disasm_info_);
130 }
David Brazdil62e074f2015-04-07 18:09:37 +0100131 }
David Brazdil5e8b1372015-01-23 14:39:08 +0000132 }
133
David Brazdil69ba7b72015-06-23 18:27:30 +0100134 ~PassObserver() {
David Brazdil5e8b1372015-01-23 14:39:08 +0000135 if (timing_logger_enabled_) {
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000136 LOG(INFO) << "TIMINGS " << GetMethodName();
David Brazdil5e8b1372015-01-23 14:39:08 +0000137 LOG(INFO) << Dumpable<TimingLogger>(timing_logger_);
138 }
Nicolas Geoffray002eac62020-02-04 10:16:51 +0000139 if (visualizer_enabled_) {
140 FlushVisualizer();
141 }
Nicolas Geoffray00c141a2016-11-10 15:19:15 +0000142 DCHECK(visualizer_oss_.str().empty());
David Brazdil5e8b1372015-01-23 14:39:08 +0000143 }
144
Nicolas Geoffray002eac62020-02-04 10:16:51 +0000145 void DumpDisassembly() {
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100146 if (visualizer_enabled_) {
147 visualizer_.DumpGraphWithDisassembly();
148 }
149 }
150
David Brazdil69ba7b72015-06-23 18:27:30 +0100151 void SetGraphInBadState() { graph_in_bad_state_ = true; }
152
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000153 const char* GetMethodName() {
154 // PrettyMethod() is expensive, so we delay calling it until we actually have to.
155 if (cached_method_name_.empty()) {
David Sehr709b0702016-10-13 09:12:37 -0700156 cached_method_name_ = graph_->GetDexFile().PrettyMethod(graph_->GetMethodIdx());
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000157 }
158 return cached_method_name_.c_str();
159 }
160
David Brazdil5e8b1372015-01-23 14:39:08 +0000161 private:
Nicolas Geoffray002eac62020-02-04 10:16:51 +0000162 void StartPass(const char* pass_name) {
Wojciech Staszkiewicze7060702016-08-16 17:31:19 -0700163 VLOG(compiler) << "Starting pass: " << pass_name;
David Brazdil809658e2015-02-05 11:34:02 +0000164 // Dump graph first, then start timer.
165 if (visualizer_enabled_) {
Andreas Gampe3db70682018-12-26 15:12:03 -0800166 visualizer_.DumpGraph(pass_name, /* is_after_pass= */ false, graph_in_bad_state_);
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
Nicolas Geoffray002eac62020-02-04 10:16:51 +0000181 void EndPass(const char* pass_name, bool pass_change) {
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_) {
Andreas Gampe3db70682018-12-26 15:12:03 -0800187 visualizer_.DumpGraph(pass_name, /* is_after_pass= */ true, graph_in_bad_state_);
David Brazdil809658e2015-02-05 11:34:02 +0000188 }
David Brazdil69ba7b72015-06-23 18:27:30 +0100189
190 // Validate the HGraph if running in debug mode.
191 if (kIsDebugBuild) {
192 if (!graph_in_bad_state_) {
David Brazdilbadd8262016-02-02 16:28:56 +0000193 GraphChecker checker(graph_);
Aart Bika8360cd2018-05-02 16:07:51 -0700194 last_seen_graph_size_ = checker.Run(pass_change, last_seen_graph_size_);
David Brazdilbadd8262016-02-02 16:28:56 +0000195 if (!checker.IsValid()) {
196 LOG(FATAL) << "Error after " << pass_name << ": " << Dumpable<GraphChecker>(checker);
David Brazdil69ba7b72015-06-23 18:27:30 +0100197 }
198 }
199 }
David Brazdil809658e2015-02-05 11:34:02 +0000200 }
201
Vladimir Marko038924b2019-02-19 15:09:35 +0000202 static bool IsVerboseMethod(const CompilerOptions& compiler_options, const char* method_name) {
Andreas Gampe53fcd0f2015-07-22 12:10:13 -0700203 // Test an exact match to --verbose-methods. If verbose-methods is set, this overrides an
204 // empty kStringFilter matching all methods.
Vladimir Marko038924b2019-02-19 15:09:35 +0000205 if (compiler_options.HasVerboseMethods()) {
206 return compiler_options.IsVerboseMethod(method_name);
Andreas Gampe53fcd0f2015-07-22 12:10:13 -0700207 }
208
209 // Test the kStringFilter sub-string. constexpr helper variable to silence unreachable-code
210 // warning when the string is empty.
211 constexpr bool kStringFilterEmpty = arraysize(kStringFilter) <= 1;
212 if (kStringFilterEmpty || strstr(method_name, kStringFilter) != nullptr) {
213 return true;
214 }
215
216 return false;
217 }
218
David Brazdil69ba7b72015-06-23 18:27:30 +0100219 HGraph* const graph_;
Aart Bika8360cd2018-05-02 16:07:51 -0700220 size_t last_seen_graph_size_;
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),
Aart Bika8360cd2018-05-02 16:07:51 -0700248 pass_change_(true), // assume change
David Brazdil69ba7b72015-06-23 18:27:30 +0100249 pass_observer_(pass_observer) {
250 pass_observer_->StartPass(pass_name_);
David Brazdil809658e2015-02-05 11:34:02 +0000251 }
252
Aart Bika8360cd2018-05-02 16:07:51 -0700253 void SetPassNotChanged() {
254 pass_change_ = false;
255 }
256
David Brazdil69ba7b72015-06-23 18:27:30 +0100257 ~PassScope() {
Aart Bika8360cd2018-05-02 16:07:51 -0700258 pass_observer_->EndPass(pass_name_, pass_change_);
David Brazdil809658e2015-02-05 11:34:02 +0000259 }
260
261 private:
262 const char* const pass_name_;
Aart Bika8360cd2018-05-02 16:07:51 -0700263 bool pass_change_;
David Brazdil69ba7b72015-06-23 18:27:30 +0100264 PassObserver* const pass_observer_;
David Brazdil809658e2015-02-05 11:34:02 +0000265};
266
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100267class OptimizingCompiler final : public Compiler {
Andreas Gampe53c913b2014-08-12 23:19:23 -0700268 public:
Vladimir Marko038924b2019-02-19 15:09:35 +0000269 explicit OptimizingCompiler(const CompilerOptions& compiler_options,
270 CompiledMethodStorage* storage);
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100271 ~OptimizingCompiler() override;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700272
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100273 bool CanCompileMethod(uint32_t method_idx, const DexFile& dex_file) const override;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700274
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800275 CompiledMethod* Compile(const dex::CodeItem* code_item,
Andreas Gampe53c913b2014-08-12 23:19:23 -0700276 uint32_t access_flags,
277 InvokeType invoke_type,
278 uint16_t class_def_idx,
279 uint32_t method_idx,
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000280 Handle<mirror::ClassLoader> class_loader,
Mathieu Chartier736b5602015-09-02 14:54:11 -0700281 const DexFile& dex_file,
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100282 Handle<mirror::DexCache> dex_cache) const override;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700283
Andreas Gampe53c913b2014-08-12 23:19:23 -0700284 CompiledMethod* JniCompile(uint32_t access_flags,
285 uint32_t method_idx,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000286 const DexFile& dex_file,
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100287 Handle<mirror::DexCache> dex_cache) const override;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700288
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100289 uintptr_t GetEntryPointOf(ArtMethod* method) const override
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700290 REQUIRES_SHARED(Locks::mutator_lock_) {
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000291 return reinterpret_cast<uintptr_t>(method->GetEntryPointFromQuickCompiledCodePtrSize(
Vladimir Marko038924b2019-02-19 15:09:35 +0000292 InstructionSetPointerSize(GetCompilerOptions().GetInstructionSet())));
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000293 }
Andreas Gampe53c913b2014-08-12 23:19:23 -0700294
Nicolas Geoffray01db5f72017-07-19 15:05:49 +0100295 bool JitCompile(Thread* self,
296 jit::JitCodeCache* code_cache,
Nicolas Geoffray7f7539b2019-06-06 16:20:54 +0100297 jit::JitMemoryRegion* region,
Nicolas Geoffray01db5f72017-07-19 15:05:49 +0100298 ArtMethod* method,
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100299 bool baseline,
Nicolas Geoffray01db5f72017-07-19 15:05:49 +0100300 bool osr,
301 jit::JitLogger* jit_logger)
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100302 override
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700303 REQUIRES_SHARED(Locks::mutator_lock_);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000304
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -0700305 private:
Aart Bik24773202018-04-26 10:28:51 -0700306 bool RunOptimizations(HGraph* graph,
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -0700307 CodeGenerator* codegen,
Aart Bik2ca10eb2017-11-15 15:17:53 -0800308 const DexCompilationUnit& dex_compilation_unit,
309 PassObserver* pass_observer,
Aart Bik2ca10eb2017-11-15 15:17:53 -0800310 const OptimizationDef definitions[],
311 size_t length) const {
312 // Convert definitions to optimization passes.
313 ArenaVector<HOptimization*> optimizations = ConstructOptimizations(
314 definitions,
315 length,
316 graph->GetAllocator(),
317 graph,
318 compilation_stats_.get(),
319 codegen,
Vladimir Marko02ca05a2020-05-12 13:58:51 +0100320 dex_compilation_unit);
Aart Bik2ca10eb2017-11-15 15:17:53 -0800321 DCHECK_EQ(length, optimizations.size());
Aart Bik2e148682018-04-18 16:11:12 -0700322 // Run the optimization passes one by one. Any "depends_on" pass refers back to
323 // the most recent occurrence of that pass, skipped or executed.
324 std::bitset<static_cast<size_t>(OptimizationPass::kLast) + 1u> pass_changes;
325 pass_changes[static_cast<size_t>(OptimizationPass::kNone)] = true;
Aart Bik24773202018-04-26 10:28:51 -0700326 bool change = false;
Aart Bik2ca10eb2017-11-15 15:17:53 -0800327 for (size_t i = 0; i < length; ++i) {
Aart Bik2e148682018-04-18 16:11:12 -0700328 if (pass_changes[static_cast<size_t>(definitions[i].depends_on)]) {
329 // Execute the pass and record whether it changed anything.
330 PassScope scope(optimizations[i]->GetPassName(), pass_observer);
331 bool pass_change = optimizations[i]->Run();
332 pass_changes[static_cast<size_t>(definitions[i].pass)] = pass_change;
Aart Bika8360cd2018-05-02 16:07:51 -0700333 if (pass_change) {
334 change = true;
335 } else {
336 scope.SetPassNotChanged();
337 }
Aart Bik2e148682018-04-18 16:11:12 -0700338 } else {
339 // Skip the pass and record that nothing changed.
340 pass_changes[static_cast<size_t>(definitions[i].pass)] = false;
341 }
Aart Bik2ca10eb2017-11-15 15:17:53 -0800342 }
Aart Bik24773202018-04-26 10:28:51 -0700343 return change;
Aart Bik2ca10eb2017-11-15 15:17:53 -0800344 }
345
Aart Bik24773202018-04-26 10:28:51 -0700346 template <size_t length> bool RunOptimizations(
Aart Bik2ca10eb2017-11-15 15:17:53 -0800347 HGraph* graph,
348 CodeGenerator* codegen,
349 const DexCompilationUnit& dex_compilation_unit,
350 PassObserver* pass_observer,
Aart Bik2ca10eb2017-11-15 15:17:53 -0800351 const OptimizationDef (&definitions)[length]) const {
Aart Bik24773202018-04-26 10:28:51 -0700352 return RunOptimizations(
Vladimir Marko02ca05a2020-05-12 13:58:51 +0100353 graph, codegen, dex_compilation_unit, pass_observer, definitions, length);
Aart Bik2ca10eb2017-11-15 15:17:53 -0800354 }
355
356 void RunOptimizations(HGraph* graph,
357 CodeGenerator* codegen,
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -0700358 const DexCompilationUnit& dex_compilation_unit,
Vladimir Marko02ca05a2020-05-12 13:58:51 +0100359 PassObserver* pass_observer) const;
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700360
Andreas Gampe53c913b2014-08-12 23:19:23 -0700361 private:
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000362 // Create a 'CompiledMethod' for an optimized graph.
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100363 CompiledMethod* Emit(ArenaAllocator* allocator,
David Brazdil58282f42016-01-14 12:45:10 +0000364 CodeVectorAllocator* code_allocator,
365 CodeGenerator* codegen,
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800366 const dex::CodeItem* item) const;
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000367
368 // Try compiling a method and return the code generator used for
369 // compiling it.
370 // This method:
371 // 1) Builds the graph. Returns null if it failed to build it.
David Brazdil58282f42016-01-14 12:45:10 +0000372 // 2) Transforms the graph to SSA. Returns null if it failed.
373 // 3) Runs optimizations on the graph, including register allocator.
374 // 4) Generates code with the `code_allocator` provided.
Vladimir Markoca6fff82017-10-03 14:49:14 +0100375 CodeGenerator* TryCompile(ArenaAllocator* allocator,
376 ArenaStack* arena_stack,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000377 CodeVectorAllocator* code_allocator,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000378 const DexCompilationUnit& dex_compilation_unit,
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000379 ArtMethod* method,
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100380 bool baseline,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000381 bool osr,
382 VariableSizedHandleScope* handles) const;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000383
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000384 CodeGenerator* TryCompileIntrinsic(ArenaAllocator* allocator,
385 ArenaStack* arena_stack,
386 CodeVectorAllocator* code_allocator,
387 const DexCompilationUnit& dex_compilation_unit,
388 ArtMethod* method,
389 VariableSizedHandleScope* handles) const;
390
Aart Bik24773202018-04-26 10:28:51 -0700391 bool RunArchOptimizations(HGraph* graph,
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700392 CodeGenerator* codegen,
Aart Bik2ca10eb2017-11-15 15:17:53 -0800393 const DexCompilationUnit& dex_compilation_unit,
Vladimir Marko02ca05a2020-05-12 13:58:51 +0100394 PassObserver* pass_observer) const;
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700395
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100396 bool RunBaselineOptimizations(HGraph* graph,
397 CodeGenerator* codegen,
398 const DexCompilationUnit& dex_compilation_unit,
Vladimir Marko02ca05a2020-05-12 13:58:51 +0100399 PassObserver* pass_observer) const;
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100400
David Srbecky41617b12020-03-18 21:19:06 +0000401 std::vector<uint8_t> GenerateJitDebugInfo(const debug::MethodDebugInfo& method_debug_info);
David Srbeckyc684f332018-01-19 17:38:06 +0000402
Calin Juravle2be39e02015-04-21 13:56:34 +0100403 std::unique_ptr<OptimizingCompilerStats> compilation_stats_;
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100404
Andreas Gampe53c913b2014-08-12 23:19:23 -0700405 std::unique_ptr<std::ostream> visualizer_output_;
406
Andreas Gampea0d81af2016-10-27 12:04:57 -0700407 mutable Mutex dump_mutex_; // To synchronize visualizer writing.
408
Andreas Gampe53c913b2014-08-12 23:19:23 -0700409 DISALLOW_COPY_AND_ASSIGN(OptimizingCompiler);
410};
411
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100412static const int kMaximumCompilationTimeBeforeWarning = 100; /* ms */
413
Vladimir Marko038924b2019-02-19 15:09:35 +0000414OptimizingCompiler::OptimizingCompiler(const CompilerOptions& compiler_options,
415 CompiledMethodStorage* storage)
416 : Compiler(compiler_options, storage, kMaximumCompilationTimeBeforeWarning),
417 dump_mutex_("Visualizer dump lock") {
418 // Enable C1visualizer output.
419 const std::string& cfg_file_name = compiler_options.GetDumpCfgFileName();
David Brazdil866c0312015-01-13 21:21:31 +0000420 if (!cfg_file_name.empty()) {
Calin Juravle87000a92015-08-24 15:34:44 +0100421 std::ios_base::openmode cfg_file_mode =
Vladimir Marko038924b2019-02-19 15:09:35 +0000422 compiler_options.GetDumpCfgAppend() ? std::ofstream::app : std::ofstream::out;
Calin Juravle87000a92015-08-24 15:34:44 +0100423 visualizer_output_.reset(new std::ofstream(cfg_file_name, cfg_file_mode));
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100424 }
Vladimir Marko038924b2019-02-19 15:09:35 +0000425 if (compiler_options.GetDumpStats()) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100426 compilation_stats_.reset(new OptimizingCompilerStats());
427 }
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100428}
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000429
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100430OptimizingCompiler::~OptimizingCompiler() {
Calin Juravle2be39e02015-04-21 13:56:34 +0100431 if (compilation_stats_.get() != nullptr) {
432 compilation_stats_->Log();
433 }
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100434}
435
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +0000436bool OptimizingCompiler::CanCompileMethod(uint32_t method_idx ATTRIBUTE_UNUSED,
Vladimir Markodf739842016-03-23 16:59:07 +0000437 const DexFile& dex_file ATTRIBUTE_UNUSED) const {
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +0000438 return true;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700439}
440
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000441static bool IsInstructionSetSupported(InstructionSet instruction_set) {
Vladimir Marko33bff252017-11-01 14:35:42 +0000442 return instruction_set == InstructionSet::kArm
443 || instruction_set == InstructionSet::kArm64
444 || instruction_set == InstructionSet::kThumb2
Vladimir Marko33bff252017-11-01 14:35:42 +0000445 || instruction_set == InstructionSet::kX86
446 || instruction_set == InstructionSet::kX86_64;
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000447}
448
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100449bool OptimizingCompiler::RunBaselineOptimizations(HGraph* graph,
450 CodeGenerator* codegen,
451 const DexCompilationUnit& dex_compilation_unit,
Vladimir Marko02ca05a2020-05-12 13:58:51 +0100452 PassObserver* pass_observer) const {
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100453 switch (codegen->GetCompilerOptions().GetInstructionSet()) {
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100454#ifdef ART_ENABLE_CODEGEN_x86
455 case InstructionSet::kX86: {
456 OptimizationDef x86_optimizations[] = {
457 OptDef(OptimizationPass::kPcRelativeFixupsX86),
458 };
459 return RunOptimizations(graph,
460 codegen,
461 dex_compilation_unit,
462 pass_observer,
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100463 x86_optimizations);
464 }
465#endif
466 default:
467 UNUSED(graph);
468 UNUSED(codegen);
469 UNUSED(dex_compilation_unit);
470 UNUSED(pass_observer);
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100471 return false;
472 }
473}
474
Aart Bik24773202018-04-26 10:28:51 -0700475bool OptimizingCompiler::RunArchOptimizations(HGraph* graph,
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700476 CodeGenerator* codegen,
Aart Bik2ca10eb2017-11-15 15:17:53 -0800477 const DexCompilationUnit& dex_compilation_unit,
Vladimir Marko02ca05a2020-05-12 13:58:51 +0100478 PassObserver* pass_observer) const {
Vladimir Markoa0431112018-06-25 09:32:54 +0100479 switch (codegen->GetCompilerOptions().GetInstructionSet()) {
Artem Serov2bbc9532016-10-21 11:51:50 +0100480#if defined(ART_ENABLE_CODEGEN_arm)
Vladimir Marko33bff252017-11-01 14:35:42 +0000481 case InstructionSet::kThumb2:
482 case InstructionSet::kArm: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800483 OptimizationDef arm_optimizations[] = {
484 OptDef(OptimizationPass::kInstructionSimplifierArm),
485 OptDef(OptimizationPass::kSideEffectsAnalysis),
486 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
487 OptDef(OptimizationPass::kScheduling)
Vladimir Markob4536b72015-11-24 13:45:23 +0000488 };
Aart Bik24773202018-04-26 10:28:51 -0700489 return RunOptimizations(graph,
490 codegen,
491 dex_compilation_unit,
492 pass_observer,
Aart Bik24773202018-04-26 10:28:51 -0700493 arm_optimizations);
Vladimir Markob4536b72015-11-24 13:45:23 +0000494 }
495#endif
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100496#ifdef ART_ENABLE_CODEGEN_arm64
Vladimir Marko33bff252017-11-01 14:35:42 +0000497 case InstructionSet::kArm64: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800498 OptimizationDef arm64_optimizations[] = {
499 OptDef(OptimizationPass::kInstructionSimplifierArm64),
500 OptDef(OptimizationPass::kSideEffectsAnalysis),
501 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
502 OptDef(OptimizationPass::kScheduling)
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100503 };
Aart Bik24773202018-04-26 10:28:51 -0700504 return RunOptimizations(graph,
505 codegen,
506 dex_compilation_unit,
507 pass_observer,
Aart Bik24773202018-04-26 10:28:51 -0700508 arm64_optimizations);
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100509 }
510#endif
Mark Mendell0616ae02015-04-17 12:49:27 -0400511#ifdef ART_ENABLE_CODEGEN_x86
Vladimir Marko33bff252017-11-01 14:35:42 +0000512 case InstructionSet::kX86: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800513 OptimizationDef x86_optimizations[] = {
Shalini Salomi Bodapatidd121f62018-10-26 15:03:53 +0530514 OptDef(OptimizationPass::kInstructionSimplifierX86),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800515 OptDef(OptimizationPass::kSideEffectsAnalysis),
516 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
517 OptDef(OptimizationPass::kPcRelativeFixupsX86),
Hans Boehmf5f56c72018-07-13 00:05:27 +0000518 OptDef(OptimizationPass::kX86MemoryOperandGeneration)
Mark Mendell0616ae02015-04-17 12:49:27 -0400519 };
Aart Bik24773202018-04-26 10:28:51 -0700520 return RunOptimizations(graph,
521 codegen,
522 dex_compilation_unit,
523 pass_observer,
Aart Bik24773202018-04-26 10:28:51 -0700524 x86_optimizations);
Mark Mendell0616ae02015-04-17 12:49:27 -0400525 }
526#endif
Mark Mendellee8d9712016-07-12 11:13:15 -0400527#ifdef ART_ENABLE_CODEGEN_x86_64
Vladimir Marko33bff252017-11-01 14:35:42 +0000528 case InstructionSet::kX86_64: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800529 OptimizationDef x86_64_optimizations[] = {
Shalini Salomi Bodapatidd121f62018-10-26 15:03:53 +0530530 OptDef(OptimizationPass::kInstructionSimplifierX86_64),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800531 OptDef(OptimizationPass::kSideEffectsAnalysis),
532 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
Hans Boehmf5f56c72018-07-13 00:05:27 +0000533 OptDef(OptimizationPass::kX86MemoryOperandGeneration)
Mark Mendellee8d9712016-07-12 11:13:15 -0400534 };
Aart Bik24773202018-04-26 10:28:51 -0700535 return RunOptimizations(graph,
536 codegen,
537 dex_compilation_unit,
538 pass_observer,
Aart Bik24773202018-04-26 10:28:51 -0700539 x86_64_optimizations);
Mark Mendellee8d9712016-07-12 11:13:15 -0400540 }
541#endif
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100542 default:
Aart Bik24773202018-04-26 10:28:51 -0700543 return false;
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100544 }
545}
546
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000547NO_INLINE // Avoid increasing caller's frame size by large stack-allocated objects.
548static void AllocateRegisters(HGraph* graph,
549 CodeGenerator* codegen,
Matthew Gharrity2cd05b72016-08-03 16:57:37 -0700550 PassObserver* pass_observer,
Igor Murashkin6ef45672017-08-08 13:59:55 -0700551 RegisterAllocator::Strategy strategy,
552 OptimizingCompilerStats* stats) {
Mingyao Yang700347e2016-03-02 14:59:32 -0800553 {
554 PassScope scope(PrepareForRegisterAllocation::kPrepareForRegisterAllocationPassName,
555 pass_observer);
Nicolas Geoffray61ba8d22018-08-07 09:55:57 +0100556 PrepareForRegisterAllocation(graph, codegen->GetCompilerOptions(), stats).Run();
Mingyao Yang700347e2016-03-02 14:59:32 -0800557 }
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100558 // Use local allocator shared by SSA liveness analysis and register allocator.
559 // (Register allocator creates new objects in the liveness data.)
560 ScopedArenaAllocator local_allocator(graph->GetArenaStack());
561 SsaLivenessAnalysis liveness(graph, codegen, &local_allocator);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000562 {
563 PassScope scope(SsaLivenessAnalysis::kLivenessPassName, pass_observer);
564 liveness.Analyze();
565 }
566 {
567 PassScope scope(RegisterAllocator::kRegisterAllocatorPassName, pass_observer);
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100568 std::unique_ptr<RegisterAllocator> register_allocator =
569 RegisterAllocator::Create(&local_allocator, codegen, liveness, strategy);
Vladimir Markoca6fff82017-10-03 14:49:14 +0100570 register_allocator->AllocateRegisters();
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000571 }
572}
573
Aart Bik2ca10eb2017-11-15 15:17:53 -0800574// Strip pass name suffix to get optimization name.
575static std::string ConvertPassNameToOptimizationName(const std::string& pass_name) {
576 size_t pos = pass_name.find(kPassNameSeparator);
577 return pos == std::string::npos ? pass_name : pass_name.substr(0, pos);
578}
579
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700580void OptimizingCompiler::RunOptimizations(HGraph* graph,
581 CodeGenerator* codegen,
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700582 const DexCompilationUnit& dex_compilation_unit,
Vladimir Marko02ca05a2020-05-12 13:58:51 +0100583 PassObserver* pass_observer) const {
Vladimir Marko038924b2019-02-19 15:09:35 +0000584 const std::vector<std::string>* pass_names = GetCompilerOptions().GetPassesToRun();
Aart Bik2ca10eb2017-11-15 15:17:53 -0800585 if (pass_names != nullptr) {
586 // If passes were defined on command-line, build the optimization
587 // passes and run these instead of the built-in optimizations.
Aart Bik2e148682018-04-18 16:11:12 -0700588 // TODO: a way to define depends_on via command-line?
Aart Bik2ca10eb2017-11-15 15:17:53 -0800589 const size_t length = pass_names->size();
590 std::vector<OptimizationDef> optimizations;
591 for (const std::string& pass_name : *pass_names) {
592 std::string opt_name = ConvertPassNameToOptimizationName(pass_name);
Greg Kaisere7e195d2019-03-26 08:13:00 -0700593 optimizations.push_back(OptDef(OptimizationPassByName(opt_name), pass_name.c_str()));
Aart Bik2ca10eb2017-11-15 15:17:53 -0800594 }
595 RunOptimizations(graph,
596 codegen,
597 dex_compilation_unit,
598 pass_observer,
Aart Bik2ca10eb2017-11-15 15:17:53 -0800599 optimizations.data(),
600 length);
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -0700601 return;
602 }
603
Aart Bik24773202018-04-26 10:28:51 -0700604 OptimizationDef optimizations[] = {
Aart Bik2e148682018-04-18 16:11:12 -0700605 // Initial optimizations.
Aart Bik2ca10eb2017-11-15 15:17:53 -0800606 OptDef(OptimizationPass::kConstantFolding),
607 OptDef(OptimizationPass::kInstructionSimplifier),
Aart Bik2e148682018-04-18 16:11:12 -0700608 OptDef(OptimizationPass::kDeadCodeElimination,
609 "dead_code_elimination$initial"),
610 // Inlining.
Aart Bik24773202018-04-26 10:28:51 -0700611 OptDef(OptimizationPass::kInliner),
Aart Bik2e148682018-04-18 16:11:12 -0700612 // Simplification (only if inlining occurred).
613 OptDef(OptimizationPass::kConstantFolding,
614 "constant_folding$after_inlining",
615 OptimizationPass::kInliner),
616 OptDef(OptimizationPass::kInstructionSimplifier,
617 "instruction_simplifier$after_inlining",
618 OptimizationPass::kInliner),
619 OptDef(OptimizationPass::kDeadCodeElimination,
620 "dead_code_elimination$after_inlining",
621 OptimizationPass::kInliner),
622 // GVN.
623 OptDef(OptimizationPass::kSideEffectsAnalysis,
624 "side_effects$before_gvn"),
Aart Bik6d057002018-04-09 15:39:58 -0700625 OptDef(OptimizationPass::kGlobalValueNumbering),
Aart Bik2e148682018-04-18 16:11:12 -0700626 // Simplification (TODO: only if GVN occurred).
Aart Bik2ca10eb2017-11-15 15:17:53 -0800627 OptDef(OptimizationPass::kSelectGenerator),
Aart Bik2e148682018-04-18 16:11:12 -0700628 OptDef(OptimizationPass::kConstantFolding,
629 "constant_folding$after_gvn"),
630 OptDef(OptimizationPass::kInstructionSimplifier,
631 "instruction_simplifier$after_gvn"),
632 OptDef(OptimizationPass::kDeadCodeElimination,
633 "dead_code_elimination$after_gvn"),
634 // High-level optimizations.
635 OptDef(OptimizationPass::kSideEffectsAnalysis,
636 "side_effects$before_licm"),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800637 OptDef(OptimizationPass::kInvariantCodeMotion),
638 OptDef(OptimizationPass::kInductionVarAnalysis),
639 OptDef(OptimizationPass::kBoundsCheckElimination),
640 OptDef(OptimizationPass::kLoopOptimization),
Aart Bik2e148682018-04-18 16:11:12 -0700641 // Simplification.
642 OptDef(OptimizationPass::kConstantFolding,
643 "constant_folding$after_bce"),
644 OptDef(OptimizationPass::kInstructionSimplifier,
645 "instruction_simplifier$after_bce"),
646 // Other high-level optimizations.
647 OptDef(OptimizationPass::kSideEffectsAnalysis,
648 "side_effects$before_lse"),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800649 OptDef(OptimizationPass::kLoadStoreElimination),
650 OptDef(OptimizationPass::kCHAGuardOptimization),
Aart Bik2e148682018-04-18 16:11:12 -0700651 OptDef(OptimizationPass::kDeadCodeElimination,
652 "dead_code_elimination$final"),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800653 OptDef(OptimizationPass::kCodeSinking),
David Brazdil8993caf2015-12-07 10:04:40 +0000654 // The codegen has a few assumptions that only the instruction simplifier
655 // can satisfy. For example, the code generator does not expect to see a
656 // HTypeConversion from a type to the same type.
Aart Bik2e148682018-04-18 16:11:12 -0700657 OptDef(OptimizationPass::kInstructionSimplifier,
658 "instruction_simplifier$before_codegen"),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800659 // Eliminate constructor fences after code sinking to avoid
660 // complicated sinking logic to split a fence with many inputs.
661 OptDef(OptimizationPass::kConstructorFenceRedundancyElimination)
David Brazdil8993caf2015-12-07 10:04:40 +0000662 };
Aart Bik2ca10eb2017-11-15 15:17:53 -0800663 RunOptimizations(graph,
664 codegen,
665 dex_compilation_unit,
666 pass_observer,
Aart Bik24773202018-04-26 10:28:51 -0700667 optimizations);
David Brazdilbbd733e2015-08-18 17:48:17 +0100668
Vladimir Marko02ca05a2020-05-12 13:58:51 +0100669 RunArchOptimizations(graph, codegen, dex_compilation_unit, pass_observer);
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000670}
671
Vladimir Markod8dbc8d2017-09-20 13:37:47 +0100672static ArenaVector<linker::LinkerPatch> EmitAndSortLinkerPatches(CodeGenerator* codegen) {
Vladimir Markoca6fff82017-10-03 14:49:14 +0100673 ArenaVector<linker::LinkerPatch> linker_patches(codegen->GetGraph()->GetAllocator()->Adapter());
Vladimir Marko58155012015-08-19 12:49:41 +0000674 codegen->EmitLinkerPatches(&linker_patches);
675
676 // Sort patches by literal offset. Required for .oat_patches encoding.
677 std::sort(linker_patches.begin(), linker_patches.end(),
Vladimir Markod8dbc8d2017-09-20 13:37:47 +0100678 [](const linker::LinkerPatch& lhs, const linker::LinkerPatch& rhs) {
Vladimir Marko58155012015-08-19 12:49:41 +0000679 return lhs.LiteralOffset() < rhs.LiteralOffset();
680 });
681
682 return linker_patches;
683}
684
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100685CompiledMethod* OptimizingCompiler::Emit(ArenaAllocator* allocator,
David Brazdil58282f42016-01-14 12:45:10 +0000686 CodeVectorAllocator* code_allocator,
687 CodeGenerator* codegen,
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800688 const dex::CodeItem* code_item_for_osr_check) const {
Vladimir Markod8dbc8d2017-09-20 13:37:47 +0100689 ArenaVector<linker::LinkerPatch> linker_patches = EmitAndSortLinkerPatches(codegen);
David Srbeckye7a91942018-08-01 17:23:53 +0100690 ScopedArenaVector<uint8_t> stack_map = codegen->BuildStackMaps(code_item_for_osr_check);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000691
Vladimir Marko038924b2019-02-19 15:09:35 +0000692 CompiledMethodStorage* storage = GetCompiledMethodStorage();
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100693 CompiledMethod* compiled_method = CompiledMethod::SwapAllocCompiledMethod(
Vladimir Marko038924b2019-02-19 15:09:35 +0000694 storage,
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000695 codegen->GetInstructionSet(),
Vladimir Markoca1e0382018-04-11 09:58:41 +0000696 code_allocator->GetMemory(),
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100697 ArrayRef<const uint8_t>(stack_map),
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100698 ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data()),
Vladimir Markod8dbc8d2017-09-20 13:37:47 +0100699 ArrayRef<const linker::LinkerPatch>(linker_patches));
Mathieu Chartiered150002015-08-28 11:16:54 -0700700
Vladimir Markoca1e0382018-04-11 09:58:41 +0000701 for (const linker::LinkerPatch& patch : linker_patches) {
702 if (codegen->NeedsThunkCode(patch) && storage->GetThunkCode(patch).empty()) {
703 ArenaVector<uint8_t> code(allocator->Adapter());
704 std::string debug_name;
705 codegen->EmitThunkCode(patch, &code, &debug_name);
706 storage->SetThunkCode(patch, ArrayRef<const uint8_t>(code), debug_name);
707 }
708 }
709
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100710 return compiled_method;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000711}
712
Vladimir Markoca6fff82017-10-03 14:49:14 +0100713CodeGenerator* OptimizingCompiler::TryCompile(ArenaAllocator* allocator,
714 ArenaStack* arena_stack,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000715 CodeVectorAllocator* code_allocator,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000716 const DexCompilationUnit& dex_compilation_unit,
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000717 ArtMethod* method,
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100718 bool baseline,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000719 bool osr,
720 VariableSizedHandleScope* handles) const {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000721 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kAttemptBytecodeCompilation);
Vladimir Marko038924b2019-02-19 15:09:35 +0000722 const CompilerOptions& compiler_options = GetCompilerOptions();
Vladimir Markoa0431112018-06-25 09:32:54 +0100723 InstructionSet instruction_set = compiler_options.GetInstructionSet();
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000724 const DexFile& dex_file = *dex_compilation_unit.GetDexFile();
725 uint32_t method_idx = dex_compilation_unit.GetDexMethodIndex();
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800726 const dex::CodeItem* code_item = dex_compilation_unit.GetCodeItem();
Calin Juravlecff8cc72015-10-09 12:03:24 +0100727
Roland Levillain3b359c72015-11-17 19:35:12 +0000728 // Always use the Thumb-2 assembler: some runtime functionality
729 // (like implicit stack overflow checks) assume Thumb-2.
Vladimir Marko33bff252017-11-01 14:35:42 +0000730 DCHECK_NE(instruction_set, InstructionSet::kArm);
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100731
732 // Do not attempt to compile on architectures we do not support.
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000733 if (!IsInstructionSetSupported(instruction_set)) {
Igor Murashkin1e065a52017-08-09 13:20:34 -0700734 MaybeRecordStat(compilation_stats_.get(),
735 MethodCompilationStat::kNotCompiledUnsupportedIsa);
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100736 return nullptr;
737 }
738
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000739 if (Compiler::IsPathologicalCase(*code_item, method_idx, dex_file)) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000740 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kNotCompiledPathological);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000741 return nullptr;
742 }
743
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000744 // Implementation of the space filter: do not compile a code item whose size in
Nicolas Geoffray432bf3d2015-07-17 11:11:09 +0100745 // code units is bigger than 128.
746 static constexpr size_t kSpaceFilterOptimizingThreshold = 128;
Andreas Gampe29d38e72016-03-23 15:31:51 +0000747 if ((compiler_options.GetCompilerFilter() == CompilerFilter::kSpace)
Mathieu Chartier698ebbc2018-01-05 11:00:42 -0800748 && (CodeItemInstructionAccessor(dex_file, code_item).InsnsSizeInCodeUnits() >
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800749 kSpaceFilterOptimizingThreshold)) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000750 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kNotCompiledSpaceFilter);
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000751 return nullptr;
752 }
753
Mathieu Chartier8892c6b2018-01-09 15:10:17 -0800754 CodeItemDebugInfoAccessor code_item_accessor(dex_file, code_item, method_idx);
Hans Boehm206348c2018-12-05 11:11:33 -0800755
756 bool dead_reference_safe;
757 ArrayRef<const uint8_t> interpreter_metadata;
758 // For AOT compilation, we may not get a method, for example if its class is erroneous,
759 // possibly due to an unavailable superclass. JIT should always have a method.
760 DCHECK(Runtime::Current()->IsAotCompiler() || method != nullptr);
761 if (method != nullptr) {
762 const dex::ClassDef* containing_class;
763 {
764 ScopedObjectAccess soa(Thread::Current());
765 containing_class = &method->GetClassDef();
766 interpreter_metadata = method->GetQuickenedInfo();
767 }
768 // MethodContainsRSensitiveAccess is currently slow, but HasDeadReferenceSafeAnnotation()
769 // is currently rarely true.
770 dead_reference_safe =
771 annotations::HasDeadReferenceSafeAnnotation(dex_file, *containing_class)
772 && !annotations::MethodContainsRSensitiveAccess(dex_file, *containing_class, method_idx);
773 } else {
774 // If we could not resolve the class, conservatively assume it's dead-reference unsafe.
775 dead_reference_safe = false;
776 }
777
Vladimir Markoca6fff82017-10-03 14:49:14 +0100778 HGraph* graph = new (allocator) HGraph(
779 allocator,
780 arena_stack,
Vladimir Marko02ca05a2020-05-12 13:58:51 +0100781 handles,
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000782 dex_file,
783 method_idx,
Vladimir Markoa0431112018-06-25 09:32:54 +0100784 compiler_options.GetInstructionSet(),
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000785 kInvalidInvokeType,
Hans Boehm206348c2018-12-05 11:11:33 -0800786 dead_reference_safe,
Vladimir Marko038924b2019-02-19 15:09:35 +0000787 compiler_options.GetDebuggable(),
Nicolas Geoffraya48c3df2019-06-27 13:11:12 +0000788 /* osr= */ osr,
Nicolas Geoffraya59af8a2019-11-27 17:42:32 +0000789 /* baseline= */ baseline);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000790
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000791 if (method != nullptr) {
792 graph->SetArtMethod(method);
David Brazdilbadd8262016-02-02 16:28:56 +0000793 }
794
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000795 std::unique_ptr<CodeGenerator> codegen(
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000796 CodeGenerator::Create(graph,
Vladimir Markoa0431112018-06-25 09:32:54 +0100797 compiler_options,
Calin Juravle2ae48182016-03-16 14:05:09 +0000798 compilation_stats_.get()));
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000799 if (codegen.get() == nullptr) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000800 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kNotCompiledNoCodegen);
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000801 return nullptr;
802 }
Vladimir Marko038924b2019-02-19 15:09:35 +0000803 codegen->GetAssembler()->cfi().SetEnabled(compiler_options.GenerateAnyDebugInfo());
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000804
David Brazdil69ba7b72015-06-23 18:27:30 +0100805 PassObserver pass_observer(graph,
David Brazdil69ba7b72015-06-23 18:27:30 +0100806 codegen.get(),
807 visualizer_output_.get(),
Vladimir Marko038924b2019-02-19 15:09:35 +0000808 compiler_options,
Andreas Gampea0d81af2016-10-27 12:04:57 -0700809 dump_mutex_);
David Brazdil5e8b1372015-01-23 14:39:08 +0000810
David Brazdil809658e2015-02-05 11:34:02 +0000811 {
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000812 VLOG(compiler) << "Building " << pass_observer.GetMethodName();
813 PassScope scope(HGraphBuilder::kBuilderPassName, &pass_observer);
814 HGraphBuilder builder(graph,
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800815 code_item_accessor,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000816 &dex_compilation_unit,
817 &dex_compilation_unit,
Nicolas Geoffray83c8e272017-01-31 14:36:37 +0000818 codegen.get(),
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000819 compilation_stats_.get(),
Vladimir Marko02ca05a2020-05-12 13:58:51 +0100820 interpreter_metadata);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000821 GraphAnalysisResult result = builder.BuildGraph();
822 if (result != kAnalysisSuccess) {
823 switch (result) {
Igor Murashkin1e065a52017-08-09 13:20:34 -0700824 case kAnalysisSkipped: {
825 MaybeRecordStat(compilation_stats_.get(),
826 MethodCompilationStat::kNotCompiledSkipped);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000827 break;
Nicolas Geoffray8a62a4c2018-07-03 09:39:07 +0100828 }
Igor Murashkin1e065a52017-08-09 13:20:34 -0700829 case kAnalysisInvalidBytecode: {
830 MaybeRecordStat(compilation_stats_.get(),
831 MethodCompilationStat::kNotCompiledInvalidBytecode);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000832 break;
Nicolas Geoffray8a62a4c2018-07-03 09:39:07 +0100833 }
Igor Murashkin1e065a52017-08-09 13:20:34 -0700834 case kAnalysisFailThrowCatchLoop: {
835 MaybeRecordStat(compilation_stats_.get(),
836 MethodCompilationStat::kNotCompiledThrowCatchLoop);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000837 break;
Nicolas Geoffray8a62a4c2018-07-03 09:39:07 +0100838 }
Igor Murashkin1e065a52017-08-09 13:20:34 -0700839 case kAnalysisFailAmbiguousArrayOp: {
840 MaybeRecordStat(compilation_stats_.get(),
841 MethodCompilationStat::kNotCompiledAmbiguousArrayOp);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000842 break;
Nicolas Geoffray8a62a4c2018-07-03 09:39:07 +0100843 }
Nicolas Geoffray0846a8f2018-09-12 15:21:07 +0100844 case kAnalysisFailIrreducibleLoopAndStringInit: {
845 MaybeRecordStat(compilation_stats_.get(),
846 MethodCompilationStat::kNotCompiledIrreducibleLoopAndStringInit);
847 break;
848 }
Nicolas Geoffray7cfc8f52019-08-07 10:41:09 +0100849 case kAnalysisFailPhiEquivalentInOsr: {
850 MaybeRecordStat(compilation_stats_.get(),
851 MethodCompilationStat::kNotCompiledPhiEquivalentInOsr);
852 break;
853 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000854 case kAnalysisSuccess:
855 UNREACHABLE();
David Brazdil809658e2015-02-05 11:34:02 +0000856 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000857 pass_observer.SetGraphInBadState();
858 return nullptr;
Nicolas Geoffrayf5370122014-12-02 11:51:19 +0000859 }
David Brazdilbadd8262016-02-02 16:28:56 +0000860 }
Vladimir Markof9f64412015-09-02 14:05:49 +0100861
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100862 if (baseline) {
Vladimir Marko02ca05a2020-05-12 13:58:51 +0100863 RunBaselineOptimizations(graph, codegen.get(), dex_compilation_unit, &pass_observer);
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100864 } else {
Vladimir Marko02ca05a2020-05-12 13:58:51 +0100865 RunOptimizations(graph, codegen.get(), dex_compilation_unit, &pass_observer);
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100866 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000867
868 RegisterAllocator::Strategy regalloc_strategy =
869 compiler_options.GetRegisterAllocationStrategy();
Igor Murashkin1e065a52017-08-09 13:20:34 -0700870 AllocateRegisters(graph,
871 codegen.get(),
872 &pass_observer,
Igor Murashkin6ef45672017-08-08 13:59:55 -0700873 regalloc_strategy,
874 compilation_stats_.get());
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000875
876 codegen->Compile(code_allocator);
877 pass_observer.DumpDisassembly();
878
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000879 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kCompiledBytecode);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000880 return codegen.release();
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000881}
882
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000883CodeGenerator* OptimizingCompiler::TryCompileIntrinsic(
884 ArenaAllocator* allocator,
885 ArenaStack* arena_stack,
886 CodeVectorAllocator* code_allocator,
887 const DexCompilationUnit& dex_compilation_unit,
888 ArtMethod* method,
889 VariableSizedHandleScope* handles) const {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000890 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kAttemptIntrinsicCompilation);
Vladimir Marko038924b2019-02-19 15:09:35 +0000891 const CompilerOptions& compiler_options = GetCompilerOptions();
Vladimir Markoa0431112018-06-25 09:32:54 +0100892 InstructionSet instruction_set = compiler_options.GetInstructionSet();
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000893 const DexFile& dex_file = *dex_compilation_unit.GetDexFile();
894 uint32_t method_idx = dex_compilation_unit.GetDexMethodIndex();
895
896 // Always use the Thumb-2 assembler: some runtime functionality
897 // (like implicit stack overflow checks) assume Thumb-2.
898 DCHECK_NE(instruction_set, InstructionSet::kArm);
899
900 // Do not attempt to compile on architectures we do not support.
901 if (!IsInstructionSetSupported(instruction_set)) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000902 return nullptr;
903 }
904
905 HGraph* graph = new (allocator) HGraph(
906 allocator,
907 arena_stack,
Vladimir Marko02ca05a2020-05-12 13:58:51 +0100908 handles,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000909 dex_file,
910 method_idx,
Vladimir Marko2afaff72018-11-30 17:01:50 +0000911 compiler_options.GetInstructionSet(),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000912 kInvalidInvokeType,
Hans Boehm206348c2018-12-05 11:11:33 -0800913 /* dead_reference_safe= */ true, // Intrinsics don't affect dead reference safety.
Vladimir Marko2afaff72018-11-30 17:01:50 +0000914 compiler_options.GetDebuggable(),
Andreas Gampe3db70682018-12-26 15:12:03 -0800915 /* osr= */ false);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000916
917 DCHECK(Runtime::Current()->IsAotCompiler());
918 DCHECK(method != nullptr);
919 graph->SetArtMethod(method);
920
921 std::unique_ptr<CodeGenerator> codegen(
922 CodeGenerator::Create(graph,
Vladimir Markoa0431112018-06-25 09:32:54 +0100923 compiler_options,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000924 compilation_stats_.get()));
925 if (codegen.get() == nullptr) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000926 return nullptr;
927 }
Vladimir Markoa0431112018-06-25 09:32:54 +0100928 codegen->GetAssembler()->cfi().SetEnabled(compiler_options.GenerateAnyDebugInfo());
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000929
930 PassObserver pass_observer(graph,
931 codegen.get(),
932 visualizer_output_.get(),
Vladimir Marko038924b2019-02-19 15:09:35 +0000933 compiler_options,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000934 dump_mutex_);
935
936 {
937 VLOG(compiler) << "Building intrinsic graph " << pass_observer.GetMethodName();
938 PassScope scope(HGraphBuilder::kBuilderPassName, &pass_observer);
939 HGraphBuilder builder(graph,
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800940 CodeItemDebugInfoAccessor(), // Null code item.
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000941 &dex_compilation_unit,
942 &dex_compilation_unit,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000943 codegen.get(),
944 compilation_stats_.get(),
Vladimir Marko02ca05a2020-05-12 13:58:51 +0100945 /* interpreter_metadata= */ ArrayRef<const uint8_t>());
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000946 builder.BuildIntrinsicGraph(method);
947 }
948
Aart Bik2ca10eb2017-11-15 15:17:53 -0800949 OptimizationDef optimizations[] = {
Nicolas Geoffray76d4bb0f32018-09-21 12:58:45 +0100950 // The codegen has a few assumptions that only the instruction simplifier
951 // can satisfy.
Aart Bik2ca10eb2017-11-15 15:17:53 -0800952 OptDef(OptimizationPass::kInstructionSimplifier),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000953 };
Aart Bik2ca10eb2017-11-15 15:17:53 -0800954 RunOptimizations(graph,
955 codegen.get(),
956 dex_compilation_unit,
957 &pass_observer,
Aart Bik2ca10eb2017-11-15 15:17:53 -0800958 optimizations);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000959
Vladimir Marko02ca05a2020-05-12 13:58:51 +0100960 RunArchOptimizations(graph, codegen.get(), dex_compilation_unit, &pass_observer);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000961
962 AllocateRegisters(graph,
963 codegen.get(),
964 &pass_observer,
Vladimir Marko038924b2019-02-19 15:09:35 +0000965 compiler_options.GetRegisterAllocationStrategy(),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000966 compilation_stats_.get());
967 if (!codegen->IsLeafMethod()) {
968 VLOG(compiler) << "Intrinsic method is not leaf: " << method->GetIntrinsic()
969 << " " << graph->PrettyMethod();
970 return nullptr;
971 }
972
973 codegen->Compile(code_allocator);
974 pass_observer.DumpDisassembly();
975
976 VLOG(compiler) << "Compiled intrinsic: " << method->GetIntrinsic()
977 << " " << graph->PrettyMethod();
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000978 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kCompiledIntrinsic);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000979 return codegen.release();
980}
981
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800982CompiledMethod* OptimizingCompiler::Compile(const dex::CodeItem* code_item,
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000983 uint32_t access_flags,
984 InvokeType invoke_type,
985 uint16_t class_def_idx,
986 uint32_t method_idx,
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000987 Handle<mirror::ClassLoader> jclass_loader,
Mathieu Chartier736b5602015-09-02 14:54:11 -0700988 const DexFile& dex_file,
989 Handle<mirror::DexCache> dex_cache) const {
Vladimir Marko038924b2019-02-19 15:09:35 +0000990 const CompilerOptions& compiler_options = GetCompilerOptions();
Vladimir Marko695348f2020-05-19 14:42:02 +0100991 DCHECK(compiler_options.IsAotCompiler());
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000992 CompiledMethod* compiled_method = nullptr;
993 Runtime* runtime = Runtime::Current();
994 DCHECK(runtime->IsAotCompiler());
Vladimir Marko2afaff72018-11-30 17:01:50 +0000995 const VerifiedMethod* verified_method = compiler_options.GetVerifiedMethod(&dex_file, method_idx);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000996 DCHECK(!verified_method->HasRuntimeThrow());
Vladimir Marko2afaff72018-11-30 17:01:50 +0000997 if (compiler_options.IsMethodVerifiedWithoutFailures(method_idx, class_def_idx, dex_file) ||
Vladimir Markoca6fff82017-10-03 14:49:14 +0100998 verifier::CanCompilerHandleVerificationFailure(
999 verified_method->GetEncounteredVerificationFailures())) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001000 ArenaAllocator allocator(runtime->GetArenaPool());
1001 ArenaStack arena_stack(runtime->GetArenaPool());
Vladimir Markoca6fff82017-10-03 14:49:14 +01001002 CodeVectorAllocator code_allocator(&allocator);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001003 std::unique_ptr<CodeGenerator> codegen;
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001004 bool compiled_intrinsic = false;
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001005 {
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001006 ScopedObjectAccess soa(Thread::Current());
1007 ArtMethod* method =
1008 runtime->GetClassLinker()->ResolveMethod<ClassLinker::ResolveMode::kCheckICCEAndIAE>(
1009 method_idx, dex_cache, jclass_loader, /*referrer=*/ nullptr, invoke_type);
1010 DCHECK_EQ(method == nullptr, soa.Self()->IsExceptionPending());
1011 soa.Self()->ClearException(); // Suppress exception if any.
1012 VariableSizedHandleScope handles(soa.Self());
1013 Handle<mirror::Class> compiling_class =
1014 handles.NewHandle(method != nullptr ? method->GetDeclaringClass() : nullptr);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001015 DexCompilationUnit dex_compilation_unit(
1016 jclass_loader,
1017 runtime->GetClassLinker(),
1018 dex_file,
1019 code_item,
1020 class_def_idx,
1021 method_idx,
1022 access_flags,
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001023 /*verified_method=*/ nullptr, // Not needed by the Optimizing compiler.
1024 dex_cache,
1025 compiling_class);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001026 // Go to native so that we don't block GC during compilation.
1027 ScopedThreadSuspension sts(soa.Self(), kNative);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001028 if (method != nullptr && UNLIKELY(method->IsIntrinsic())) {
Vladimir Marko2afaff72018-11-30 17:01:50 +00001029 DCHECK(compiler_options.IsBootImage());
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001030 codegen.reset(
1031 TryCompileIntrinsic(&allocator,
1032 &arena_stack,
1033 &code_allocator,
1034 dex_compilation_unit,
1035 method,
1036 &handles));
1037 if (codegen != nullptr) {
1038 compiled_intrinsic = true;
1039 }
1040 }
1041 if (codegen == nullptr) {
1042 codegen.reset(
1043 TryCompile(&allocator,
1044 &arena_stack,
1045 &code_allocator,
1046 dex_compilation_unit,
1047 method,
Vladimir Marko2afaff72018-11-30 17:01:50 +00001048 compiler_options.IsBaseline(),
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +01001049 /* osr= */ false,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001050 &handles));
1051 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001052 }
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001053 if (codegen.get() != nullptr) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001054 compiled_method = Emit(&allocator,
1055 &code_allocator,
1056 codegen.get(),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001057 compiled_intrinsic ? nullptr : code_item);
1058 if (compiled_intrinsic) {
1059 compiled_method->MarkAsIntrinsic();
1060 }
Vladimir Marko3a40bf22016-03-22 16:26:33 +00001061
1062 if (kArenaAllocatorCountAllocations) {
Vladimir Marko174b2e22017-10-12 13:34:49 +01001063 codegen.reset(); // Release codegen's ScopedArenaAllocator for memory accounting.
Vladimir Markoca6fff82017-10-03 14:49:14 +01001064 size_t total_allocated = allocator.BytesAllocated() + arena_stack.PeakBytesAllocated();
1065 if (total_allocated > kArenaAllocatorMemoryReportThreshold) {
1066 MemStats mem_stats(allocator.GetMemStats());
1067 MemStats peak_stats(arena_stack.GetPeakStats());
Vladimir Marko69d310e2017-10-09 14:12:23 +01001068 LOG(INFO) << "Used " << total_allocated << " bytes of arena memory for compiling "
1069 << dex_file.PrettyMethod(method_idx)
Vladimir Markoca6fff82017-10-03 14:49:14 +01001070 << "\n" << Dumpable<MemStats>(mem_stats)
1071 << "\n" << Dumpable<MemStats>(peak_stats);
Vladimir Marko3a40bf22016-03-22 16:26:33 +00001072 }
1073 }
Calin Juravlef1c6d9e2015-04-13 18:42:21 +01001074 }
Nicolas Geoffray0c3c2662015-10-15 13:53:04 +01001075 } else {
Igor Murashkin1e065a52017-08-09 13:20:34 -07001076 MethodCompilationStat method_stat;
Vladimir Marko2afaff72018-11-30 17:01:50 +00001077 if (compiler_options.VerifyAtRuntime()) {
Igor Murashkin1e065a52017-08-09 13:20:34 -07001078 method_stat = MethodCompilationStat::kNotCompiledVerifyAtRuntime;
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001079 } else {
Igor Murashkin1e065a52017-08-09 13:20:34 -07001080 method_stat = MethodCompilationStat::kNotCompiledVerificationError;
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001081 }
Igor Murashkin1e065a52017-08-09 13:20:34 -07001082 MaybeRecordStat(compilation_stats_.get(), method_stat);
Calin Juravlef1c6d9e2015-04-13 18:42:21 +01001083 }
1084
Calin Juravlecff8cc72015-10-09 12:03:24 +01001085 if (kIsDebugBuild &&
David Srbecky4fa07a52020-03-31 20:52:09 +01001086 compiler_options.CompileArtTest() &&
Vladimir Marko2afaff72018-11-30 17:01:50 +00001087 IsInstructionSetSupported(compiler_options.GetInstructionSet())) {
Roland Levillain0d5a2812015-11-13 10:07:31 +00001088 // For testing purposes, we put a special marker on method names
Goran Jakovljevic9c4f0d8f2017-04-05 16:27:25 +02001089 // that should be compiled with this compiler (when the
1090 // instruction set is supported). This makes sure we're not
Roland Levillain0d5a2812015-11-13 10:07:31 +00001091 // regressing.
David Sehr709b0702016-10-13 09:12:37 -07001092 std::string method_name = dex_file.PrettyMethod(method_idx);
Calin Juravle09b1d6f2015-10-07 12:08:54 +01001093 bool shouldCompile = method_name.find("$opt$") != std::string::npos;
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001094 DCHECK((compiled_method != nullptr) || !shouldCompile) << "Didn't compile " << method_name;
Calin Juravle09b1d6f2015-10-07 12:08:54 +01001095 }
1096
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001097 return compiled_method;
1098}
1099
David Srbeckye7a91942018-08-01 17:23:53 +01001100static ScopedArenaVector<uint8_t> CreateJniStackMap(ScopedArenaAllocator* allocator,
Nicolas Geoffraybf5f0f32019-03-05 15:41:50 +00001101 const JniCompiledMethod& jni_compiled_method) {
Vladimir Markoced04832018-07-26 14:42:17 +01001102 // StackMapStream is quite large, so allocate it using the ScopedArenaAllocator
1103 // to stay clear of the frame size limit.
1104 std::unique_ptr<StackMapStream> stack_map_stream(
David Srbeckye7a91942018-08-01 17:23:53 +01001105 new (allocator) StackMapStream(allocator, jni_compiled_method.GetInstructionSet()));
Vladimir Markoced04832018-07-26 14:42:17 +01001106 stack_map_stream->BeginMethod(
David Srbeckyafc97bc2018-07-05 08:14:35 +00001107 jni_compiled_method.GetFrameSize(),
1108 jni_compiled_method.GetCoreSpillMask(),
1109 jni_compiled_method.GetFpSpillMask(),
Nicolas Geoffraya59af8a2019-11-27 17:42:32 +00001110 /* num_dex_registers= */ 0,
1111 /* baseline= */ false);
Nicolas Geoffraybf5f0f32019-03-05 15:41:50 +00001112 stack_map_stream->EndMethod();
David Srbeckye7a91942018-08-01 17:23:53 +01001113 return stack_map_stream->Encode();
David Srbeckyafc97bc2018-07-05 08:14:35 +00001114}
1115
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001116CompiledMethod* OptimizingCompiler::JniCompile(uint32_t access_flags,
1117 uint32_t method_idx,
1118 const DexFile& dex_file,
1119 Handle<mirror::DexCache> dex_cache) const {
David Srbeckyafc97bc2018-07-05 08:14:35 +00001120 Runtime* runtime = Runtime::Current();
1121 ArenaAllocator allocator(runtime->GetArenaPool());
1122 ArenaStack arena_stack(runtime->GetArenaPool());
1123
Vladimir Marko038924b2019-02-19 15:09:35 +00001124 const CompilerOptions& compiler_options = GetCompilerOptions();
Vladimir Markoa0431112018-06-25 09:32:54 +01001125 if (compiler_options.IsBootImage()) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001126 ScopedObjectAccess soa(Thread::Current());
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001127 ArtMethod* method = runtime->GetClassLinker()->LookupResolvedMethod(
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001128 method_idx, dex_cache.Get(), /*class_loader=*/ nullptr);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001129 if (method != nullptr && UNLIKELY(method->IsIntrinsic())) {
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001130 VariableSizedHandleScope handles(soa.Self());
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001131 ScopedNullHandle<mirror::ClassLoader> class_loader; // null means boot class path loader.
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001132 Handle<mirror::Class> compiling_class = handles.NewHandle(method->GetDeclaringClass());
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001133 DexCompilationUnit dex_compilation_unit(
1134 class_loader,
1135 runtime->GetClassLinker(),
1136 dex_file,
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001137 /*code_item=*/ nullptr,
1138 /*class_def_idx=*/ DexFile::kDexNoIndex16,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001139 method_idx,
1140 access_flags,
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001141 /*verified_method=*/ nullptr,
1142 dex_cache,
1143 compiling_class);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001144 CodeVectorAllocator code_allocator(&allocator);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001145 // Go to native so that we don't block GC during compilation.
1146 ScopedThreadSuspension sts(soa.Self(), kNative);
1147 std::unique_ptr<CodeGenerator> codegen(
1148 TryCompileIntrinsic(&allocator,
1149 &arena_stack,
1150 &code_allocator,
1151 dex_compilation_unit,
1152 method,
1153 &handles));
1154 if (codegen != nullptr) {
1155 CompiledMethod* compiled_method = Emit(&allocator,
1156 &code_allocator,
1157 codegen.get(),
Andreas Gampe3db70682018-12-26 15:12:03 -08001158 /* item= */ nullptr);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001159 compiled_method->MarkAsIntrinsic();
1160 return compiled_method;
1161 }
1162 }
1163 }
1164
Vladimir Marko7bdc6e72017-11-28 12:37:13 +00001165 JniCompiledMethod jni_compiled_method = ArtQuickJniCompileMethod(
Vladimir Markoa0431112018-06-25 09:32:54 +01001166 compiler_options, access_flags, method_idx, dex_file);
Vladimir Markocd09e1f2017-11-24 15:02:40 +00001167 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kCompiledNativeStub);
David Srbeckyafc97bc2018-07-05 08:14:35 +00001168
David Srbeckye7a91942018-08-01 17:23:53 +01001169 ScopedArenaAllocator stack_map_allocator(&arena_stack); // Will hold the stack map.
Nicolas Geoffraybf5f0f32019-03-05 15:41:50 +00001170 ScopedArenaVector<uint8_t> stack_map = CreateJniStackMap(&stack_map_allocator,
1171 jni_compiled_method);
Vladimir Marko7bdc6e72017-11-28 12:37:13 +00001172 return CompiledMethod::SwapAllocCompiledMethod(
Vladimir Marko038924b2019-02-19 15:09:35 +00001173 GetCompiledMethodStorage(),
Vladimir Marko7bdc6e72017-11-28 12:37:13 +00001174 jni_compiled_method.GetInstructionSet(),
1175 jni_compiled_method.GetCode(),
David Srbeckyafc97bc2018-07-05 08:14:35 +00001176 ArrayRef<const uint8_t>(stack_map),
Vladimir Marko7bdc6e72017-11-28 12:37:13 +00001177 jni_compiled_method.GetCfi(),
Andreas Gampe3db70682018-12-26 15:12:03 -08001178 /* patches= */ ArrayRef<const linker::LinkerPatch>());
Nicolas Geoffray216eaa22015-03-17 17:09:30 +00001179}
1180
Vladimir Marko038924b2019-02-19 15:09:35 +00001181Compiler* CreateOptimizingCompiler(const CompilerOptions& compiler_options,
1182 CompiledMethodStorage* storage) {
1183 return new OptimizingCompiler(compiler_options, storage);
Andreas Gampe53c913b2014-08-12 23:19:23 -07001184}
1185
Nicolas Geoffrayfbdfa6d2017-02-03 10:43:13 +00001186bool EncodeArtMethodInInlineInfo(ArtMethod* method ATTRIBUTE_UNUSED) {
1187 // Note: the runtime is null only for unit testing.
1188 return Runtime::Current() == nullptr || !Runtime::Current()->IsAotCompiler();
1189}
1190
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001191bool OptimizingCompiler::JitCompile(Thread* self,
1192 jit::JitCodeCache* code_cache,
Nicolas Geoffray7f7539b2019-06-06 16:20:54 +01001193 jit::JitMemoryRegion* region,
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +00001194 ArtMethod* method,
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +01001195 bool baseline,
Nicolas Geoffray01db5f72017-07-19 15:05:49 +01001196 bool osr,
1197 jit::JitLogger* jit_logger) {
Vladimir Marko695348f2020-05-19 14:42:02 +01001198 const CompilerOptions& compiler_options = GetCompilerOptions();
1199 DCHECK(compiler_options.IsJitCompiler());
1200 DCHECK_EQ(compiler_options.IsJitCompilerForSharedCode(), code_cache->IsSharedRegion(*region));
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001201 StackHandleScope<3> hs(self);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001202 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(
1203 method->GetDeclaringClass()->GetClassLoader()));
1204 Handle<mirror::DexCache> dex_cache(hs.NewHandle(method->GetDexCache()));
Nicolas Geoffray250a3782016-04-20 16:27:53 +01001205 DCHECK(method->IsCompilable());
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001206
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001207 const DexFile* dex_file = method->GetDexFile();
1208 const uint16_t class_def_idx = method->GetClassDefIndex();
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08001209 const dex::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset());
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001210 const uint32_t method_idx = method->GetDexMethodIndex();
1211 const uint32_t access_flags = method->GetAccessFlags();
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001212
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001213 Runtime* runtime = Runtime::Current();
1214 ArenaAllocator allocator(runtime->GetJitArenaPool());
Vladimir Marko2196c652017-11-30 16:16:07 +00001215
1216 if (UNLIKELY(method->IsNative())) {
1217 JniCompiledMethod jni_compiled_method = ArtQuickJniCompileMethod(
Vladimir Markoa0431112018-06-25 09:32:54 +01001218 compiler_options, access_flags, method_idx, *dex_file);
Vladimir Markoac3ac682018-09-20 11:01:43 +01001219 std::vector<Handle<mirror::Object>> roots;
Vladimir Marko2196c652017-11-30 16:16:07 +00001220 ArenaSet<ArtMethod*, std::less<ArtMethod*>> cha_single_implementation_list(
1221 allocator.Adapter(kArenaAllocCHA));
David Srbeckyafc97bc2018-07-05 08:14:35 +00001222 ArenaStack arena_stack(runtime->GetJitArenaPool());
1223 // StackMapStream is large and it does not fit into this frame, so we need helper method.
David Srbeckye7a91942018-08-01 17:23:53 +01001224 ScopedArenaAllocator stack_map_allocator(&arena_stack); // Will hold the stack map.
Nicolas Geoffraybf5f0f32019-03-05 15:41:50 +00001225 ScopedArenaVector<uint8_t> stack_map = CreateJniStackMap(&stack_map_allocator,
1226 jni_compiled_method);
David Srbeckyadb66f92019-10-10 12:59:43 +00001227
1228 ArrayRef<const uint8_t> reserved_code;
1229 ArrayRef<const uint8_t> reserved_data;
1230 if (!code_cache->Reserve(self,
1231 region,
1232 jni_compiled_method.GetCode().size(),
1233 stack_map.size(),
1234 /* number_of_roots= */ 0,
1235 method,
1236 /*out*/ &reserved_code,
1237 /*out*/ &reserved_data)) {
David Srbeckyafc97bc2018-07-05 08:14:35 +00001238 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kJitOutOfMemoryForCommit);
1239 return false;
1240 }
David Srbeckyadb66f92019-10-10 12:59:43 +00001241 const uint8_t* code = reserved_code.data() + OatQuickMethodHeader::InstructionAlignedSize();
David Srbeckyafc97bc2018-07-05 08:14:35 +00001242
David Srbecky444e9982019-10-02 17:59:23 +01001243 // Add debug info after we know the code location but before we update entry-point.
David Srbecky41617b12020-03-18 21:19:06 +00001244 std::vector<uint8_t> debug_info;
David Srbeckyadb66f92019-10-10 12:59:43 +00001245 if (compiler_options.GenerateAnyDebugInfo()) {
Vladimir Marko2196c652017-11-30 16:16:07 +00001246 debug::MethodDebugInfo info = {};
David Srbeckyfe1d9522019-03-25 17:19:11 +00001247 info.custom_name = "art_jni_trampoline";
Vladimir Marko2196c652017-11-30 16:16:07 +00001248 info.dex_file = dex_file;
1249 info.class_def_index = class_def_idx;
1250 info.dex_method_index = method_idx;
1251 info.access_flags = access_flags;
1252 info.code_item = code_item;
1253 info.isa = jni_compiled_method.GetInstructionSet();
1254 info.deduped = false;
1255 info.is_native_debuggable = compiler_options.GetNativeDebuggable();
1256 info.is_optimized = true;
1257 info.is_code_address_text_relative = false;
David Srbeckyadb66f92019-10-10 12:59:43 +00001258 info.code_address = reinterpret_cast<uintptr_t>(code);
Vladimir Marko2196c652017-11-30 16:16:07 +00001259 info.code_size = jni_compiled_method.GetCode().size();
David Srbeckyadb66f92019-10-10 12:59:43 +00001260 info.frame_size_in_bytes = jni_compiled_method.GetFrameSize();
Vladimir Marko2196c652017-11-30 16:16:07 +00001261 info.code_info = nullptr;
1262 info.cfi = jni_compiled_method.GetCfi();
David Srbecky41617b12020-03-18 21:19:06 +00001263 debug_info = GenerateJitDebugInfo(info);
David Srbeckyadb66f92019-10-10 12:59:43 +00001264 }
David Srbecky444e9982019-10-02 17:59:23 +01001265
David Srbeckyadb66f92019-10-10 12:59:43 +00001266 if (!code_cache->Commit(self,
1267 region,
1268 method,
1269 reserved_code,
1270 jni_compiled_method.GetCode(),
1271 reserved_data,
1272 roots,
1273 ArrayRef<const uint8_t>(stack_map),
David Srbecky41617b12020-03-18 21:19:06 +00001274 debug_info,
1275 /* is_full_debug_info= */ compiler_options.GetGenerateDebugInfo(),
David Srbeckyadb66f92019-10-10 12:59:43 +00001276 osr,
1277 /* has_should_deoptimize_flag= */ false,
1278 cha_single_implementation_list)) {
1279 code_cache->Free(self, region, reserved_code.data(), reserved_data.data());
David Srbecky444e9982019-10-02 17:59:23 +01001280 return false;
Vladimir Marko2196c652017-11-30 16:16:07 +00001281 }
1282
1283 Runtime::Current()->GetJit()->AddMemoryUsage(method, allocator.BytesUsed());
1284 if (jit_logger != nullptr) {
1285 jit_logger->WriteLog(code, jni_compiled_method.GetCode().size(), method);
1286 }
1287 return true;
1288 }
1289
1290 ArenaStack arena_stack(runtime->GetJitArenaPool());
Vladimir Markoca6fff82017-10-03 14:49:14 +01001291 CodeVectorAllocator code_allocator(&allocator);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001292 VariableSizedHandleScope handles(self);
1293
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001294 std::unique_ptr<CodeGenerator> codegen;
1295 {
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001296 Handle<mirror::Class> compiling_class = handles.NewHandle(method->GetDeclaringClass());
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001297 DexCompilationUnit dex_compilation_unit(
1298 class_loader,
1299 runtime->GetClassLinker(),
1300 *dex_file,
1301 code_item,
1302 class_def_idx,
1303 method_idx,
1304 access_flags,
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001305 /*verified_method=*/ nullptr,
1306 dex_cache,
1307 compiling_class);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001308
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001309 // Go to native so that we don't block GC during compilation.
1310 ScopedThreadSuspension sts(self, kNative);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001311 codegen.reset(
Vladimir Markoca6fff82017-10-03 14:49:14 +01001312 TryCompile(&allocator,
1313 &arena_stack,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001314 &code_allocator,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001315 dex_compilation_unit,
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +00001316 method,
Vladimir Marko695348f2020-05-19 14:42:02 +01001317 baseline || compiler_options.IsBaseline(),
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001318 osr,
1319 &handles));
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001320 if (codegen.get() == nullptr) {
1321 return false;
1322 }
1323 }
1324
David Srbeckye7a91942018-08-01 17:23:53 +01001325 ScopedArenaVector<uint8_t> stack_map = codegen->BuildStackMaps(code_item);
David Srbeckyadb66f92019-10-10 12:59:43 +00001326
1327 ArrayRef<const uint8_t> reserved_code;
1328 ArrayRef<const uint8_t> reserved_data;
1329 if (!code_cache->Reserve(self,
1330 region,
1331 code_allocator.GetMemory().size(),
1332 stack_map.size(),
1333 /*number_of_roots=*/codegen->GetNumberOfJitRoots(),
1334 method,
1335 /*out*/ &reserved_code,
1336 /*out*/ &reserved_data)) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +00001337 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kJitOutOfMemoryForCommit);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001338 return false;
1339 }
David Srbeckyadb66f92019-10-10 12:59:43 +00001340 const uint8_t* code = reserved_code.data() + OatQuickMethodHeader::InstructionAlignedSize();
1341 const uint8_t* roots_data = reserved_data.data();
1342
Vladimir Markoac3ac682018-09-20 11:01:43 +01001343 std::vector<Handle<mirror::Object>> roots;
1344 codegen->EmitJitRoots(code_allocator.GetData(), roots_data, &roots);
1345 // The root Handle<>s filled by the codegen reference entries in the VariableSizedHandleScope.
1346 DCHECK(std::all_of(roots.begin(),
1347 roots.end(),
1348 [&handles](Handle<mirror::Object> root){
1349 return handles.Contains(root.GetReference());
1350 }));
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001351
David Srbecky444e9982019-10-02 17:59:23 +01001352 // Add debug info after we know the code location but before we update entry-point.
David Srbecky41617b12020-03-18 21:19:06 +00001353 std::vector<uint8_t> debug_info;
David Srbeckyadb66f92019-10-10 12:59:43 +00001354 if (compiler_options.GenerateAnyDebugInfo()) {
Vladimir Marko1b404a82017-09-01 13:35:26 +01001355 debug::MethodDebugInfo info = {};
David Srbeckyc684f332018-01-19 17:38:06 +00001356 DCHECK(info.custom_name.empty());
David Srbecky197160d2016-03-07 17:33:57 +00001357 info.dex_file = dex_file;
1358 info.class_def_index = class_def_idx;
1359 info.dex_method_index = method_idx;
1360 info.access_flags = access_flags;
1361 info.code_item = code_item;
1362 info.isa = codegen->GetInstructionSet();
1363 info.deduped = false;
1364 info.is_native_debuggable = compiler_options.GetNativeDebuggable();
1365 info.is_optimized = true;
1366 info.is_code_address_text_relative = false;
David Srbeckyadb66f92019-10-10 12:59:43 +00001367 info.code_address = reinterpret_cast<uintptr_t>(code);
Vladimir Markoca1e0382018-04-11 09:58:41 +00001368 info.code_size = code_allocator.GetMemory().size();
David Srbeckyadb66f92019-10-10 12:59:43 +00001369 info.frame_size_in_bytes = codegen->GetFrameSize();
1370 info.code_info = stack_map.size() == 0 ? nullptr : stack_map.data();
David Srbecky197160d2016-03-07 17:33:57 +00001371 info.cfi = ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data());
David Srbecky41617b12020-03-18 21:19:06 +00001372 debug_info = GenerateJitDebugInfo(info);
David Srbeckyadb66f92019-10-10 12:59:43 +00001373 }
David Srbecky444e9982019-10-02 17:59:23 +01001374
David Srbeckyadb66f92019-10-10 12:59:43 +00001375 if (!code_cache->Commit(self,
1376 region,
1377 method,
1378 reserved_code,
1379 code_allocator.GetMemory(),
1380 reserved_data,
1381 roots,
1382 ArrayRef<const uint8_t>(stack_map),
David Srbecky41617b12020-03-18 21:19:06 +00001383 debug_info,
1384 /* is_full_debug_info= */ compiler_options.GetGenerateDebugInfo(),
David Srbeckyadb66f92019-10-10 12:59:43 +00001385 osr,
1386 codegen->GetGraph()->HasShouldDeoptimizeFlag(),
1387 codegen->GetGraph()->GetCHASingleImplementationList())) {
1388 code_cache->Free(self, region, reserved_code.data(), reserved_data.data());
David Srbecky444e9982019-10-02 17:59:23 +01001389 return false;
David Srbecky5cc349f2015-12-18 15:04:48 +00001390 }
1391
Vladimir Markoca6fff82017-10-03 14:49:14 +01001392 Runtime::Current()->GetJit()->AddMemoryUsage(method, allocator.BytesUsed());
Nicolas Geoffray01db5f72017-07-19 15:05:49 +01001393 if (jit_logger != nullptr) {
Vladimir Markoca1e0382018-04-11 09:58:41 +00001394 jit_logger->WriteLog(code, code_allocator.GetMemory().size(), method);
Nicolas Geoffray01db5f72017-07-19 15:05:49 +01001395 }
Nicolas Geoffraya4f81542016-03-08 16:57:48 +00001396
Vladimir Marko174b2e22017-10-12 13:34:49 +01001397 if (kArenaAllocatorCountAllocations) {
1398 codegen.reset(); // Release codegen's ScopedArenaAllocator for memory accounting.
1399 size_t total_allocated = allocator.BytesAllocated() + arena_stack.PeakBytesAllocated();
1400 if (total_allocated > kArenaAllocatorMemoryReportThreshold) {
1401 MemStats mem_stats(allocator.GetMemStats());
1402 MemStats peak_stats(arena_stack.GetPeakStats());
1403 LOG(INFO) << "Used " << total_allocated << " bytes of arena memory for compiling "
1404 << dex_file->PrettyMethod(method_idx)
1405 << "\n" << Dumpable<MemStats>(mem_stats)
1406 << "\n" << Dumpable<MemStats>(peak_stats);
1407 }
1408 }
1409
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001410 return true;
1411}
1412
David Srbecky41617b12020-03-18 21:19:06 +00001413std::vector<uint8_t> OptimizingCompiler::GenerateJitDebugInfo(const debug::MethodDebugInfo& info) {
Vladimir Marko038924b2019-02-19 15:09:35 +00001414 const CompilerOptions& compiler_options = GetCompilerOptions();
David Srbecky444e9982019-10-02 17:59:23 +01001415 if (compiler_options.GenerateAnyDebugInfo()) {
David Srbecky43ae7792019-01-09 17:34:01 +00001416 // If both flags are passed, generate full debug info.
1417 const bool mini_debug_info = !compiler_options.GetGenerateDebugInfo();
David Srbeckyc684f332018-01-19 17:38:06 +00001418
David Srbecky43ae7792019-01-09 17:34:01 +00001419 // Create entry for the single method that we just compiled.
David Srbecky8fc2f952019-07-31 18:40:09 +01001420 InstructionSet isa = compiler_options.GetInstructionSet();
1421 const InstructionSetFeatures* features = compiler_options.GetInstructionSetFeatures();
David Srbecky41617b12020-03-18 21:19:06 +00001422 return debug::MakeElfFileForJIT(isa, features, mini_debug_info, info);
David Srbecky43ae7792019-01-09 17:34:01 +00001423 }
David Srbecky41617b12020-03-18 21:19:06 +00001424 return std::vector<uint8_t>();
David Srbeckyc684f332018-01-19 17:38:06 +00001425}
1426
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +00001427} // namespace art