blob: f201f806d69e85939e75e2bf99bb469a96e243a9 [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),
Artem Serov07718842020-02-24 18:51:42 +0000121 codegen_(codegen),
Andreas Gampea0d81af2016-10-27 12:04:57 -0700122 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 Marko038924b2019-02-19 15:09:35 +0000125 if (!IsVerboseMethod(compiler_options, 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 Geoffray002eac62020-02-04 10:16:51 +0000140 if (visualizer_enabled_) {
141 FlushVisualizer();
142 }
Nicolas Geoffray00c141a2016-11-10 15:19:15 +0000143 DCHECK(visualizer_oss_.str().empty());
David Brazdil5e8b1372015-01-23 14:39:08 +0000144 }
145
Nicolas Geoffray002eac62020-02-04 10:16:51 +0000146 void DumpDisassembly() {
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100147 if (visualizer_enabled_) {
148 visualizer_.DumpGraphWithDisassembly();
149 }
150 }
151
David Brazdil69ba7b72015-06-23 18:27:30 +0100152 void SetGraphInBadState() { graph_in_bad_state_ = true; }
153
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000154 const char* GetMethodName() {
155 // PrettyMethod() is expensive, so we delay calling it until we actually have to.
156 if (cached_method_name_.empty()) {
David Sehr709b0702016-10-13 09:12:37 -0700157 cached_method_name_ = graph_->GetDexFile().PrettyMethod(graph_->GetMethodIdx());
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000158 }
159 return cached_method_name_.c_str();
160 }
161
David Brazdil5e8b1372015-01-23 14:39:08 +0000162 private:
Nicolas Geoffray002eac62020-02-04 10:16:51 +0000163 void StartPass(const char* pass_name) {
Wojciech Staszkiewicze7060702016-08-16 17:31:19 -0700164 VLOG(compiler) << "Starting pass: " << pass_name;
David Brazdil809658e2015-02-05 11:34:02 +0000165 // Dump graph first, then start timer.
166 if (visualizer_enabled_) {
Andreas Gampe3db70682018-12-26 15:12:03 -0800167 visualizer_.DumpGraph(pass_name, /* is_after_pass= */ false, graph_in_bad_state_);
David Brazdil809658e2015-02-05 11:34:02 +0000168 }
169 if (timing_logger_enabled_) {
170 timing_logger_.StartTiming(pass_name);
171 }
172 }
173
Nicolas Geoffray00c141a2016-11-10 15:19:15 +0000174 void FlushVisualizer() REQUIRES(!visualizer_dump_mutex_) {
175 MutexLock mu(Thread::Current(), visualizer_dump_mutex_);
176 *visualizer_output_ << visualizer_oss_.str();
177 visualizer_output_->flush();
178 visualizer_oss_.str("");
179 visualizer_oss_.clear();
180 }
181
Nicolas Geoffray002eac62020-02-04 10:16:51 +0000182 void EndPass(const char* pass_name, bool pass_change) {
David Brazdil809658e2015-02-05 11:34:02 +0000183 // Pause timer first, then dump graph.
184 if (timing_logger_enabled_) {
185 timing_logger_.EndTiming();
186 }
187 if (visualizer_enabled_) {
Andreas Gampe3db70682018-12-26 15:12:03 -0800188 visualizer_.DumpGraph(pass_name, /* is_after_pass= */ true, graph_in_bad_state_);
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_) {
Artem Serov07718842020-02-24 18:51:42 +0000194 GraphChecker checker(graph_, codegen_);
Aart Bika8360cd2018-05-02 16:07:51 -0700195 last_seen_graph_size_ = checker.Run(pass_change, last_seen_graph_size_);
David Brazdilbadd8262016-02-02 16:28:56 +0000196 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
Vladimir Marko038924b2019-02-19 15:09:35 +0000203 static bool IsVerboseMethod(const CompilerOptions& compiler_options, const char* method_name) {
Andreas Gampe53fcd0f2015-07-22 12:10:13 -0700204 // Test an exact match to --verbose-methods. If verbose-methods is set, this overrides an
205 // empty kStringFilter matching all methods.
Vladimir Marko038924b2019-02-19 15:09:35 +0000206 if (compiler_options.HasVerboseMethods()) {
207 return compiler_options.IsVerboseMethod(method_name);
Andreas Gampe53fcd0f2015-07-22 12:10:13 -0700208 }
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_;
Aart Bika8360cd2018-05-02 16:07:51 -0700221 size_t last_seen_graph_size_;
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000222
223 std::string cached_method_name_;
David Brazdil5e8b1372015-01-23 14:39:08 +0000224
225 bool timing_logger_enabled_;
David Brazdil5e8b1372015-01-23 14:39:08 +0000226 TimingLogger timing_logger_;
227
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100228 DisassemblyInformation disasm_info_;
229
Andreas Gampea0d81af2016-10-27 12:04:57 -0700230 std::ostringstream visualizer_oss_;
231 std::ostream* visualizer_output_;
David Brazdil5e8b1372015-01-23 14:39:08 +0000232 bool visualizer_enabled_;
233 HGraphVisualizer visualizer_;
Artem Serov07718842020-02-24 18:51:42 +0000234 CodeGenerator* codegen_;
Andreas Gampea0d81af2016-10-27 12:04:57 -0700235 Mutex& visualizer_dump_mutex_;
David Brazdil5e8b1372015-01-23 14:39:08 +0000236
David Brazdil69ba7b72015-06-23 18:27:30 +0100237 // Flag to be set by the compiler if the pass failed and the graph is not
238 // expected to validate.
239 bool graph_in_bad_state_;
David Brazdil809658e2015-02-05 11:34:02 +0000240
David Brazdil69ba7b72015-06-23 18:27:30 +0100241 friend PassScope;
242
243 DISALLOW_COPY_AND_ASSIGN(PassObserver);
David Brazdil5e8b1372015-01-23 14:39:08 +0000244};
245
David Brazdil69ba7b72015-06-23 18:27:30 +0100246class PassScope : public ValueObject {
David Brazdil809658e2015-02-05 11:34:02 +0000247 public:
David Brazdil69ba7b72015-06-23 18:27:30 +0100248 PassScope(const char *pass_name, PassObserver* pass_observer)
David Brazdil809658e2015-02-05 11:34:02 +0000249 : pass_name_(pass_name),
Aart Bika8360cd2018-05-02 16:07:51 -0700250 pass_change_(true), // assume change
David Brazdil69ba7b72015-06-23 18:27:30 +0100251 pass_observer_(pass_observer) {
252 pass_observer_->StartPass(pass_name_);
David Brazdil809658e2015-02-05 11:34:02 +0000253 }
254
Aart Bika8360cd2018-05-02 16:07:51 -0700255 void SetPassNotChanged() {
256 pass_change_ = false;
257 }
258
David Brazdil69ba7b72015-06-23 18:27:30 +0100259 ~PassScope() {
Aart Bika8360cd2018-05-02 16:07:51 -0700260 pass_observer_->EndPass(pass_name_, pass_change_);
David Brazdil809658e2015-02-05 11:34:02 +0000261 }
262
263 private:
264 const char* const pass_name_;
Aart Bika8360cd2018-05-02 16:07:51 -0700265 bool pass_change_;
David Brazdil69ba7b72015-06-23 18:27:30 +0100266 PassObserver* const pass_observer_;
David Brazdil809658e2015-02-05 11:34:02 +0000267};
268
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100269class OptimizingCompiler final : public Compiler {
Andreas Gampe53c913b2014-08-12 23:19:23 -0700270 public:
Vladimir Marko038924b2019-02-19 15:09:35 +0000271 explicit OptimizingCompiler(const CompilerOptions& compiler_options,
272 CompiledMethodStorage* storage);
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100273 ~OptimizingCompiler() override;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700274
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100275 bool CanCompileMethod(uint32_t method_idx, const DexFile& dex_file) const override;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700276
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800277 CompiledMethod* Compile(const dex::CodeItem* code_item,
Andreas Gampe53c913b2014-08-12 23:19:23 -0700278 uint32_t access_flags,
279 InvokeType invoke_type,
280 uint16_t class_def_idx,
281 uint32_t method_idx,
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000282 Handle<mirror::ClassLoader> class_loader,
Mathieu Chartier736b5602015-09-02 14:54:11 -0700283 const DexFile& dex_file,
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100284 Handle<mirror::DexCache> dex_cache) const override;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700285
Andreas Gampe53c913b2014-08-12 23:19:23 -0700286 CompiledMethod* JniCompile(uint32_t access_flags,
287 uint32_t method_idx,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000288 const DexFile& dex_file,
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100289 Handle<mirror::DexCache> dex_cache) const override;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700290
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100291 uintptr_t GetEntryPointOf(ArtMethod* method) const override
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700292 REQUIRES_SHARED(Locks::mutator_lock_) {
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000293 return reinterpret_cast<uintptr_t>(method->GetEntryPointFromQuickCompiledCodePtrSize(
Vladimir Marko038924b2019-02-19 15:09:35 +0000294 InstructionSetPointerSize(GetCompilerOptions().GetInstructionSet())));
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000295 }
Andreas Gampe53c913b2014-08-12 23:19:23 -0700296
Nicolas Geoffray01db5f72017-07-19 15:05:49 +0100297 bool JitCompile(Thread* self,
298 jit::JitCodeCache* code_cache,
Nicolas Geoffray7f7539b2019-06-06 16:20:54 +0100299 jit::JitMemoryRegion* region,
Nicolas Geoffray01db5f72017-07-19 15:05:49 +0100300 ArtMethod* method,
Nicolas Geoffray0d60a2b2020-06-17 14:31:56 +0100301 CompilationKind compilation_kind,
Nicolas Geoffray01db5f72017-07-19 15:05:49 +0100302 jit::JitLogger* jit_logger)
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100303 override
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700304 REQUIRES_SHARED(Locks::mutator_lock_);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000305
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -0700306 private:
Aart Bik24773202018-04-26 10:28:51 -0700307 bool RunOptimizations(HGraph* graph,
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -0700308 CodeGenerator* codegen,
Aart Bik2ca10eb2017-11-15 15:17:53 -0800309 const DexCompilationUnit& dex_compilation_unit,
310 PassObserver* pass_observer,
Aart Bik2ca10eb2017-11-15 15:17:53 -0800311 const OptimizationDef definitions[],
312 size_t length) const {
313 // Convert definitions to optimization passes.
314 ArenaVector<HOptimization*> optimizations = ConstructOptimizations(
315 definitions,
316 length,
317 graph->GetAllocator(),
318 graph,
319 compilation_stats_.get(),
320 codegen,
Vladimir Marko02ca05a2020-05-12 13:58:51 +0100321 dex_compilation_unit);
Aart Bik2ca10eb2017-11-15 15:17:53 -0800322 DCHECK_EQ(length, optimizations.size());
Aart Bik2e148682018-04-18 16:11:12 -0700323 // Run the optimization passes one by one. Any "depends_on" pass refers back to
324 // the most recent occurrence of that pass, skipped or executed.
325 std::bitset<static_cast<size_t>(OptimizationPass::kLast) + 1u> pass_changes;
326 pass_changes[static_cast<size_t>(OptimizationPass::kNone)] = true;
Aart Bik24773202018-04-26 10:28:51 -0700327 bool change = false;
Aart Bik2ca10eb2017-11-15 15:17:53 -0800328 for (size_t i = 0; i < length; ++i) {
Aart Bik2e148682018-04-18 16:11:12 -0700329 if (pass_changes[static_cast<size_t>(definitions[i].depends_on)]) {
330 // Execute the pass and record whether it changed anything.
331 PassScope scope(optimizations[i]->GetPassName(), pass_observer);
332 bool pass_change = optimizations[i]->Run();
333 pass_changes[static_cast<size_t>(definitions[i].pass)] = pass_change;
Aart Bika8360cd2018-05-02 16:07:51 -0700334 if (pass_change) {
335 change = true;
336 } else {
337 scope.SetPassNotChanged();
338 }
Aart Bik2e148682018-04-18 16:11:12 -0700339 } else {
340 // Skip the pass and record that nothing changed.
341 pass_changes[static_cast<size_t>(definitions[i].pass)] = false;
342 }
Aart Bik2ca10eb2017-11-15 15:17:53 -0800343 }
Aart Bik24773202018-04-26 10:28:51 -0700344 return change;
Aart Bik2ca10eb2017-11-15 15:17:53 -0800345 }
346
Aart Bik24773202018-04-26 10:28:51 -0700347 template <size_t length> bool RunOptimizations(
Aart Bik2ca10eb2017-11-15 15:17:53 -0800348 HGraph* graph,
349 CodeGenerator* codegen,
350 const DexCompilationUnit& dex_compilation_unit,
351 PassObserver* pass_observer,
Aart Bik2ca10eb2017-11-15 15:17:53 -0800352 const OptimizationDef (&definitions)[length]) const {
Aart Bik24773202018-04-26 10:28:51 -0700353 return RunOptimizations(
Vladimir Marko02ca05a2020-05-12 13:58:51 +0100354 graph, codegen, dex_compilation_unit, pass_observer, definitions, length);
Aart Bik2ca10eb2017-11-15 15:17:53 -0800355 }
356
357 void RunOptimizations(HGraph* graph,
358 CodeGenerator* codegen,
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -0700359 const DexCompilationUnit& dex_compilation_unit,
Vladimir Marko02ca05a2020-05-12 13:58:51 +0100360 PassObserver* pass_observer) const;
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700361
Andreas Gampe53c913b2014-08-12 23:19:23 -0700362 private:
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000363 // Create a 'CompiledMethod' for an optimized graph.
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100364 CompiledMethod* Emit(ArenaAllocator* allocator,
David Brazdil58282f42016-01-14 12:45:10 +0000365 CodeVectorAllocator* code_allocator,
366 CodeGenerator* codegen,
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800367 const dex::CodeItem* item) const;
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000368
369 // Try compiling a method and return the code generator used for
370 // compiling it.
371 // This method:
372 // 1) Builds the graph. Returns null if it failed to build it.
David Brazdil58282f42016-01-14 12:45:10 +0000373 // 2) Transforms the graph to SSA. Returns null if it failed.
374 // 3) Runs optimizations on the graph, including register allocator.
375 // 4) Generates code with the `code_allocator` provided.
Vladimir Markoca6fff82017-10-03 14:49:14 +0100376 CodeGenerator* TryCompile(ArenaAllocator* allocator,
377 ArenaStack* arena_stack,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000378 CodeVectorAllocator* code_allocator,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000379 const DexCompilationUnit& dex_compilation_unit,
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000380 ArtMethod* method,
Nicolas Geoffray0d60a2b2020-06-17 14:31:56 +0100381 CompilationKind compilation_kind,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000382 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
Fabio Rinaldi52d53542020-02-10 17:28:06 +0000403 // This must be called before any other function that dumps data to the cfg
404 void DumpInstructionSetFeaturesToCfg() const;
405
Calin Juravle2be39e02015-04-21 13:56:34 +0100406 std::unique_ptr<OptimizingCompilerStats> compilation_stats_;
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100407
Andreas Gampe53c913b2014-08-12 23:19:23 -0700408 std::unique_ptr<std::ostream> visualizer_output_;
409
Andreas Gampea0d81af2016-10-27 12:04:57 -0700410 mutable Mutex dump_mutex_; // To synchronize visualizer writing.
411
Andreas Gampe53c913b2014-08-12 23:19:23 -0700412 DISALLOW_COPY_AND_ASSIGN(OptimizingCompiler);
413};
414
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100415static const int kMaximumCompilationTimeBeforeWarning = 100; /* ms */
416
Vladimir Marko038924b2019-02-19 15:09:35 +0000417OptimizingCompiler::OptimizingCompiler(const CompilerOptions& compiler_options,
418 CompiledMethodStorage* storage)
419 : Compiler(compiler_options, storage, kMaximumCompilationTimeBeforeWarning),
420 dump_mutex_("Visualizer dump lock") {
421 // Enable C1visualizer output.
422 const std::string& cfg_file_name = compiler_options.GetDumpCfgFileName();
David Brazdil866c0312015-01-13 21:21:31 +0000423 if (!cfg_file_name.empty()) {
Calin Juravle87000a92015-08-24 15:34:44 +0100424 std::ios_base::openmode cfg_file_mode =
Vladimir Marko038924b2019-02-19 15:09:35 +0000425 compiler_options.GetDumpCfgAppend() ? std::ofstream::app : std::ofstream::out;
Calin Juravle87000a92015-08-24 15:34:44 +0100426 visualizer_output_.reset(new std::ofstream(cfg_file_name, cfg_file_mode));
Fabio Rinaldi52d53542020-02-10 17:28:06 +0000427 DumpInstructionSetFeaturesToCfg();
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100428 }
Vladimir Marko038924b2019-02-19 15:09:35 +0000429 if (compiler_options.GetDumpStats()) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100430 compilation_stats_.reset(new OptimizingCompilerStats());
431 }
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100432}
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000433
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100434OptimizingCompiler::~OptimizingCompiler() {
Calin Juravle2be39e02015-04-21 13:56:34 +0100435 if (compilation_stats_.get() != nullptr) {
436 compilation_stats_->Log();
437 }
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100438}
439
Fabio Rinaldi52d53542020-02-10 17:28:06 +0000440void OptimizingCompiler::DumpInstructionSetFeaturesToCfg() const {
441 const CompilerOptions& compiler_options = GetCompilerOptions();
442 const InstructionSetFeatures* features = compiler_options.GetInstructionSetFeatures();
Evgeny Astigeevich2446feb2020-07-27 12:25:49 +0100443 std::string isa_string =
444 std::string("isa:") + GetInstructionSetString(features->GetInstructionSet());
Fabio Rinaldi52d53542020-02-10 17:28:06 +0000445 std::string features_string = "isa_features:" + features->GetFeatureString();
446 // It is assumed that visualizer_output_ is empty when calling this function, hence the fake
447 // compilation block containing the ISA features will be printed at the beginning of the .cfg
448 // file.
Evgeny Astigeevich2446feb2020-07-27 12:25:49 +0100449 *visualizer_output_
450 << HGraphVisualizer::InsertMetaDataAsCompilationBlock(isa_string + ' ' + features_string);
Fabio Rinaldi52d53542020-02-10 17:28:06 +0000451}
452
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +0000453bool OptimizingCompiler::CanCompileMethod(uint32_t method_idx ATTRIBUTE_UNUSED,
Vladimir Markodf739842016-03-23 16:59:07 +0000454 const DexFile& dex_file ATTRIBUTE_UNUSED) const {
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +0000455 return true;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700456}
457
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000458static bool IsInstructionSetSupported(InstructionSet instruction_set) {
Vladimir Marko33bff252017-11-01 14:35:42 +0000459 return instruction_set == InstructionSet::kArm
460 || instruction_set == InstructionSet::kArm64
461 || instruction_set == InstructionSet::kThumb2
Vladimir Marko33bff252017-11-01 14:35:42 +0000462 || instruction_set == InstructionSet::kX86
463 || instruction_set == InstructionSet::kX86_64;
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000464}
465
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100466bool OptimizingCompiler::RunBaselineOptimizations(HGraph* graph,
467 CodeGenerator* codegen,
468 const DexCompilationUnit& dex_compilation_unit,
Vladimir Marko02ca05a2020-05-12 13:58:51 +0100469 PassObserver* pass_observer) const {
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100470 switch (codegen->GetCompilerOptions().GetInstructionSet()) {
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100471#ifdef ART_ENABLE_CODEGEN_x86
472 case InstructionSet::kX86: {
473 OptimizationDef x86_optimizations[] = {
474 OptDef(OptimizationPass::kPcRelativeFixupsX86),
475 };
476 return RunOptimizations(graph,
477 codegen,
478 dex_compilation_unit,
479 pass_observer,
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100480 x86_optimizations);
481 }
482#endif
483 default:
484 UNUSED(graph);
485 UNUSED(codegen);
486 UNUSED(dex_compilation_unit);
487 UNUSED(pass_observer);
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100488 return false;
489 }
490}
491
Aart Bik24773202018-04-26 10:28:51 -0700492bool OptimizingCompiler::RunArchOptimizations(HGraph* graph,
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700493 CodeGenerator* codegen,
Aart Bik2ca10eb2017-11-15 15:17:53 -0800494 const DexCompilationUnit& dex_compilation_unit,
Vladimir Marko02ca05a2020-05-12 13:58:51 +0100495 PassObserver* pass_observer) const {
Vladimir Markoa0431112018-06-25 09:32:54 +0100496 switch (codegen->GetCompilerOptions().GetInstructionSet()) {
Artem Serov2bbc9532016-10-21 11:51:50 +0100497#if defined(ART_ENABLE_CODEGEN_arm)
Vladimir Marko33bff252017-11-01 14:35:42 +0000498 case InstructionSet::kThumb2:
499 case InstructionSet::kArm: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800500 OptimizationDef arm_optimizations[] = {
501 OptDef(OptimizationPass::kInstructionSimplifierArm),
502 OptDef(OptimizationPass::kSideEffectsAnalysis),
503 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
504 OptDef(OptimizationPass::kScheduling)
Vladimir Markob4536b72015-11-24 13:45:23 +0000505 };
Aart Bik24773202018-04-26 10:28:51 -0700506 return RunOptimizations(graph,
507 codegen,
508 dex_compilation_unit,
509 pass_observer,
Aart Bik24773202018-04-26 10:28:51 -0700510 arm_optimizations);
Vladimir Markob4536b72015-11-24 13:45:23 +0000511 }
512#endif
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100513#ifdef ART_ENABLE_CODEGEN_arm64
Vladimir Marko33bff252017-11-01 14:35:42 +0000514 case InstructionSet::kArm64: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800515 OptimizationDef arm64_optimizations[] = {
516 OptDef(OptimizationPass::kInstructionSimplifierArm64),
517 OptDef(OptimizationPass::kSideEffectsAnalysis),
518 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
519 OptDef(OptimizationPass::kScheduling)
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100520 };
Aart Bik24773202018-04-26 10:28:51 -0700521 return RunOptimizations(graph,
522 codegen,
523 dex_compilation_unit,
524 pass_observer,
Aart Bik24773202018-04-26 10:28:51 -0700525 arm64_optimizations);
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100526 }
527#endif
Mark Mendell0616ae02015-04-17 12:49:27 -0400528#ifdef ART_ENABLE_CODEGEN_x86
Vladimir Marko33bff252017-11-01 14:35:42 +0000529 case InstructionSet::kX86: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800530 OptimizationDef x86_optimizations[] = {
Shalini Salomi Bodapatidd121f62018-10-26 15:03:53 +0530531 OptDef(OptimizationPass::kInstructionSimplifierX86),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800532 OptDef(OptimizationPass::kSideEffectsAnalysis),
533 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
534 OptDef(OptimizationPass::kPcRelativeFixupsX86),
Hans Boehmf5f56c72018-07-13 00:05:27 +0000535 OptDef(OptimizationPass::kX86MemoryOperandGeneration)
Mark Mendell0616ae02015-04-17 12:49:27 -0400536 };
Aart Bik24773202018-04-26 10:28:51 -0700537 return RunOptimizations(graph,
538 codegen,
539 dex_compilation_unit,
540 pass_observer,
Aart Bik24773202018-04-26 10:28:51 -0700541 x86_optimizations);
Mark Mendell0616ae02015-04-17 12:49:27 -0400542 }
543#endif
Mark Mendellee8d9712016-07-12 11:13:15 -0400544#ifdef ART_ENABLE_CODEGEN_x86_64
Vladimir Marko33bff252017-11-01 14:35:42 +0000545 case InstructionSet::kX86_64: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800546 OptimizationDef x86_64_optimizations[] = {
Shalini Salomi Bodapatidd121f62018-10-26 15:03:53 +0530547 OptDef(OptimizationPass::kInstructionSimplifierX86_64),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800548 OptDef(OptimizationPass::kSideEffectsAnalysis),
549 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
Hans Boehmf5f56c72018-07-13 00:05:27 +0000550 OptDef(OptimizationPass::kX86MemoryOperandGeneration)
Mark Mendellee8d9712016-07-12 11:13:15 -0400551 };
Aart Bik24773202018-04-26 10:28:51 -0700552 return RunOptimizations(graph,
553 codegen,
554 dex_compilation_unit,
555 pass_observer,
Aart Bik24773202018-04-26 10:28:51 -0700556 x86_64_optimizations);
Mark Mendellee8d9712016-07-12 11:13:15 -0400557 }
558#endif
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100559 default:
Aart Bik24773202018-04-26 10:28:51 -0700560 return false;
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100561 }
562}
563
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000564NO_INLINE // Avoid increasing caller's frame size by large stack-allocated objects.
565static void AllocateRegisters(HGraph* graph,
566 CodeGenerator* codegen,
Matthew Gharrity2cd05b72016-08-03 16:57:37 -0700567 PassObserver* pass_observer,
Igor Murashkin6ef45672017-08-08 13:59:55 -0700568 RegisterAllocator::Strategy strategy,
569 OptimizingCompilerStats* stats) {
Mingyao Yang700347e2016-03-02 14:59:32 -0800570 {
571 PassScope scope(PrepareForRegisterAllocation::kPrepareForRegisterAllocationPassName,
572 pass_observer);
Nicolas Geoffray61ba8d22018-08-07 09:55:57 +0100573 PrepareForRegisterAllocation(graph, codegen->GetCompilerOptions(), stats).Run();
Mingyao Yang700347e2016-03-02 14:59:32 -0800574 }
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100575 // Use local allocator shared by SSA liveness analysis and register allocator.
576 // (Register allocator creates new objects in the liveness data.)
577 ScopedArenaAllocator local_allocator(graph->GetArenaStack());
578 SsaLivenessAnalysis liveness(graph, codegen, &local_allocator);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000579 {
580 PassScope scope(SsaLivenessAnalysis::kLivenessPassName, pass_observer);
581 liveness.Analyze();
582 }
583 {
584 PassScope scope(RegisterAllocator::kRegisterAllocatorPassName, pass_observer);
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100585 std::unique_ptr<RegisterAllocator> register_allocator =
586 RegisterAllocator::Create(&local_allocator, codegen, liveness, strategy);
Vladimir Markoca6fff82017-10-03 14:49:14 +0100587 register_allocator->AllocateRegisters();
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000588 }
589}
590
Aart Bik2ca10eb2017-11-15 15:17:53 -0800591// Strip pass name suffix to get optimization name.
592static std::string ConvertPassNameToOptimizationName(const std::string& pass_name) {
593 size_t pos = pass_name.find(kPassNameSeparator);
594 return pos == std::string::npos ? pass_name : pass_name.substr(0, pos);
595}
596
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700597void OptimizingCompiler::RunOptimizations(HGraph* graph,
598 CodeGenerator* codegen,
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700599 const DexCompilationUnit& dex_compilation_unit,
Vladimir Marko02ca05a2020-05-12 13:58:51 +0100600 PassObserver* pass_observer) const {
Vladimir Marko038924b2019-02-19 15:09:35 +0000601 const std::vector<std::string>* pass_names = GetCompilerOptions().GetPassesToRun();
Aart Bik2ca10eb2017-11-15 15:17:53 -0800602 if (pass_names != nullptr) {
603 // If passes were defined on command-line, build the optimization
604 // passes and run these instead of the built-in optimizations.
Aart Bik2e148682018-04-18 16:11:12 -0700605 // TODO: a way to define depends_on via command-line?
Aart Bik2ca10eb2017-11-15 15:17:53 -0800606 const size_t length = pass_names->size();
607 std::vector<OptimizationDef> optimizations;
608 for (const std::string& pass_name : *pass_names) {
609 std::string opt_name = ConvertPassNameToOptimizationName(pass_name);
Greg Kaisere7e195d2019-03-26 08:13:00 -0700610 optimizations.push_back(OptDef(OptimizationPassByName(opt_name), pass_name.c_str()));
Aart Bik2ca10eb2017-11-15 15:17:53 -0800611 }
612 RunOptimizations(graph,
613 codegen,
614 dex_compilation_unit,
615 pass_observer,
Aart Bik2ca10eb2017-11-15 15:17:53 -0800616 optimizations.data(),
617 length);
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -0700618 return;
619 }
620
Aart Bik24773202018-04-26 10:28:51 -0700621 OptimizationDef optimizations[] = {
Aart Bik2e148682018-04-18 16:11:12 -0700622 // Initial optimizations.
Aart Bik2ca10eb2017-11-15 15:17:53 -0800623 OptDef(OptimizationPass::kConstantFolding),
624 OptDef(OptimizationPass::kInstructionSimplifier),
Aart Bik2e148682018-04-18 16:11:12 -0700625 OptDef(OptimizationPass::kDeadCodeElimination,
626 "dead_code_elimination$initial"),
627 // Inlining.
Aart Bik24773202018-04-26 10:28:51 -0700628 OptDef(OptimizationPass::kInliner),
Aart Bik2e148682018-04-18 16:11:12 -0700629 // Simplification (only if inlining occurred).
630 OptDef(OptimizationPass::kConstantFolding,
631 "constant_folding$after_inlining",
632 OptimizationPass::kInliner),
633 OptDef(OptimizationPass::kInstructionSimplifier,
634 "instruction_simplifier$after_inlining",
635 OptimizationPass::kInliner),
636 OptDef(OptimizationPass::kDeadCodeElimination,
637 "dead_code_elimination$after_inlining",
638 OptimizationPass::kInliner),
639 // GVN.
640 OptDef(OptimizationPass::kSideEffectsAnalysis,
641 "side_effects$before_gvn"),
Aart Bik6d057002018-04-09 15:39:58 -0700642 OptDef(OptimizationPass::kGlobalValueNumbering),
Aart Bik2e148682018-04-18 16:11:12 -0700643 // Simplification (TODO: only if GVN occurred).
Aart Bik2ca10eb2017-11-15 15:17:53 -0800644 OptDef(OptimizationPass::kSelectGenerator),
Aart Bik2e148682018-04-18 16:11:12 -0700645 OptDef(OptimizationPass::kConstantFolding,
646 "constant_folding$after_gvn"),
647 OptDef(OptimizationPass::kInstructionSimplifier,
648 "instruction_simplifier$after_gvn"),
649 OptDef(OptimizationPass::kDeadCodeElimination,
650 "dead_code_elimination$after_gvn"),
651 // High-level optimizations.
652 OptDef(OptimizationPass::kSideEffectsAnalysis,
653 "side_effects$before_licm"),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800654 OptDef(OptimizationPass::kInvariantCodeMotion),
655 OptDef(OptimizationPass::kInductionVarAnalysis),
656 OptDef(OptimizationPass::kBoundsCheckElimination),
657 OptDef(OptimizationPass::kLoopOptimization),
Aart Bik2e148682018-04-18 16:11:12 -0700658 // Simplification.
659 OptDef(OptimizationPass::kConstantFolding,
660 "constant_folding$after_bce"),
Evgeny Astigeevich6587d912020-06-12 10:51:43 +0100661 OptDef(OptimizationPass::kAggressiveInstructionSimplifier,
Aart Bik2e148682018-04-18 16:11:12 -0700662 "instruction_simplifier$after_bce"),
663 // Other high-level optimizations.
664 OptDef(OptimizationPass::kSideEffectsAnalysis,
665 "side_effects$before_lse"),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800666 OptDef(OptimizationPass::kLoadStoreElimination),
667 OptDef(OptimizationPass::kCHAGuardOptimization),
Aart Bik2e148682018-04-18 16:11:12 -0700668 OptDef(OptimizationPass::kDeadCodeElimination,
669 "dead_code_elimination$final"),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800670 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.
Evgeny Astigeevich6587d912020-06-12 10:51:43 +0100674 OptDef(OptimizationPass::kAggressiveInstructionSimplifier,
Aart Bik2e148682018-04-18 16:11:12 -0700675 "instruction_simplifier$before_codegen"),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800676 // Eliminate constructor fences after code sinking to avoid
677 // complicated sinking logic to split a fence with many inputs.
678 OptDef(OptimizationPass::kConstructorFenceRedundancyElimination)
David Brazdil8993caf2015-12-07 10:04:40 +0000679 };
Aart Bik2ca10eb2017-11-15 15:17:53 -0800680 RunOptimizations(graph,
681 codegen,
682 dex_compilation_unit,
683 pass_observer,
Aart Bik24773202018-04-26 10:28:51 -0700684 optimizations);
David Brazdilbbd733e2015-08-18 17:48:17 +0100685
Vladimir Marko02ca05a2020-05-12 13:58:51 +0100686 RunArchOptimizations(graph, codegen, dex_compilation_unit, pass_observer);
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,
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800705 const dex::CodeItem* code_item_for_osr_check) const {
Vladimir Markod8dbc8d2017-09-20 13:37:47 +0100706 ArenaVector<linker::LinkerPatch> linker_patches = EmitAndSortLinkerPatches(codegen);
David Srbeckye7a91942018-08-01 17:23:53 +0100707 ScopedArenaVector<uint8_t> stack_map = codegen->BuildStackMaps(code_item_for_osr_check);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000708
Vladimir Marko038924b2019-02-19 15:09:35 +0000709 CompiledMethodStorage* storage = GetCompiledMethodStorage();
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100710 CompiledMethod* compiled_method = CompiledMethod::SwapAllocCompiledMethod(
Vladimir Marko038924b2019-02-19 15:09:35 +0000711 storage,
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000712 codegen->GetInstructionSet(),
Vladimir Markoca1e0382018-04-11 09:58:41 +0000713 code_allocator->GetMemory(),
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100714 ArrayRef<const uint8_t>(stack_map),
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100715 ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data()),
Vladimir Markod8dbc8d2017-09-20 13:37:47 +0100716 ArrayRef<const linker::LinkerPatch>(linker_patches));
Mathieu Chartiered150002015-08-28 11:16:54 -0700717
Vladimir Markoca1e0382018-04-11 09:58:41 +0000718 for (const linker::LinkerPatch& patch : linker_patches) {
719 if (codegen->NeedsThunkCode(patch) && storage->GetThunkCode(patch).empty()) {
720 ArenaVector<uint8_t> code(allocator->Adapter());
721 std::string debug_name;
722 codegen->EmitThunkCode(patch, &code, &debug_name);
723 storage->SetThunkCode(patch, ArrayRef<const uint8_t>(code), debug_name);
724 }
725 }
726
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100727 return compiled_method;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000728}
729
Vladimir Markoca6fff82017-10-03 14:49:14 +0100730CodeGenerator* OptimizingCompiler::TryCompile(ArenaAllocator* allocator,
731 ArenaStack* arena_stack,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000732 CodeVectorAllocator* code_allocator,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000733 const DexCompilationUnit& dex_compilation_unit,
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000734 ArtMethod* method,
Nicolas Geoffray0d60a2b2020-06-17 14:31:56 +0100735 CompilationKind compilation_kind,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000736 VariableSizedHandleScope* handles) const {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000737 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kAttemptBytecodeCompilation);
Vladimir Marko038924b2019-02-19 15:09:35 +0000738 const CompilerOptions& compiler_options = GetCompilerOptions();
Vladimir Markoa0431112018-06-25 09:32:54 +0100739 InstructionSet instruction_set = compiler_options.GetInstructionSet();
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000740 const DexFile& dex_file = *dex_compilation_unit.GetDexFile();
741 uint32_t method_idx = dex_compilation_unit.GetDexMethodIndex();
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800742 const dex::CodeItem* code_item = dex_compilation_unit.GetCodeItem();
Calin Juravlecff8cc72015-10-09 12:03:24 +0100743
Roland Levillain3b359c72015-11-17 19:35:12 +0000744 // Always use the Thumb-2 assembler: some runtime functionality
745 // (like implicit stack overflow checks) assume Thumb-2.
Vladimir Marko33bff252017-11-01 14:35:42 +0000746 DCHECK_NE(instruction_set, InstructionSet::kArm);
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100747
748 // Do not attempt to compile on architectures we do not support.
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000749 if (!IsInstructionSetSupported(instruction_set)) {
Igor Murashkin1e065a52017-08-09 13:20:34 -0700750 MaybeRecordStat(compilation_stats_.get(),
751 MethodCompilationStat::kNotCompiledUnsupportedIsa);
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100752 return nullptr;
753 }
754
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000755 if (Compiler::IsPathologicalCase(*code_item, method_idx, dex_file)) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000756 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kNotCompiledPathological);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000757 return nullptr;
758 }
759
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000760 // Implementation of the space filter: do not compile a code item whose size in
Nicolas Geoffray432bf3d2015-07-17 11:11:09 +0100761 // code units is bigger than 128.
762 static constexpr size_t kSpaceFilterOptimizingThreshold = 128;
Andreas Gampe29d38e72016-03-23 15:31:51 +0000763 if ((compiler_options.GetCompilerFilter() == CompilerFilter::kSpace)
Mathieu Chartier698ebbc2018-01-05 11:00:42 -0800764 && (CodeItemInstructionAccessor(dex_file, code_item).InsnsSizeInCodeUnits() >
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800765 kSpaceFilterOptimizingThreshold)) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000766 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kNotCompiledSpaceFilter);
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000767 return nullptr;
768 }
769
Mathieu Chartier8892c6b2018-01-09 15:10:17 -0800770 CodeItemDebugInfoAccessor code_item_accessor(dex_file, code_item, method_idx);
Hans Boehm206348c2018-12-05 11:11:33 -0800771
772 bool dead_reference_safe;
773 ArrayRef<const uint8_t> interpreter_metadata;
774 // For AOT compilation, we may not get a method, for example if its class is erroneous,
775 // possibly due to an unavailable superclass. JIT should always have a method.
776 DCHECK(Runtime::Current()->IsAotCompiler() || method != nullptr);
777 if (method != nullptr) {
778 const dex::ClassDef* containing_class;
779 {
780 ScopedObjectAccess soa(Thread::Current());
781 containing_class = &method->GetClassDef();
782 interpreter_metadata = method->GetQuickenedInfo();
783 }
784 // MethodContainsRSensitiveAccess is currently slow, but HasDeadReferenceSafeAnnotation()
785 // is currently rarely true.
786 dead_reference_safe =
787 annotations::HasDeadReferenceSafeAnnotation(dex_file, *containing_class)
788 && !annotations::MethodContainsRSensitiveAccess(dex_file, *containing_class, method_idx);
789 } else {
790 // If we could not resolve the class, conservatively assume it's dead-reference unsafe.
791 dead_reference_safe = false;
792 }
793
Vladimir Markoca6fff82017-10-03 14:49:14 +0100794 HGraph* graph = new (allocator) HGraph(
795 allocator,
796 arena_stack,
Vladimir Marko02ca05a2020-05-12 13:58:51 +0100797 handles,
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000798 dex_file,
799 method_idx,
Vladimir Markoa0431112018-06-25 09:32:54 +0100800 compiler_options.GetInstructionSet(),
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000801 kInvalidInvokeType,
Hans Boehm206348c2018-12-05 11:11:33 -0800802 dead_reference_safe,
Vladimir Marko038924b2019-02-19 15:09:35 +0000803 compiler_options.GetDebuggable(),
Nicolas Geoffray0d60a2b2020-06-17 14:31:56 +0100804 compilation_kind);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000805
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000806 if (method != nullptr) {
807 graph->SetArtMethod(method);
David Brazdilbadd8262016-02-02 16:28:56 +0000808 }
809
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000810 std::unique_ptr<CodeGenerator> codegen(
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000811 CodeGenerator::Create(graph,
Vladimir Markoa0431112018-06-25 09:32:54 +0100812 compiler_options,
Calin Juravle2ae48182016-03-16 14:05:09 +0000813 compilation_stats_.get()));
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000814 if (codegen.get() == nullptr) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000815 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kNotCompiledNoCodegen);
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000816 return nullptr;
817 }
Vladimir Marko038924b2019-02-19 15:09:35 +0000818 codegen->GetAssembler()->cfi().SetEnabled(compiler_options.GenerateAnyDebugInfo());
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000819
David Brazdil69ba7b72015-06-23 18:27:30 +0100820 PassObserver pass_observer(graph,
David Brazdil69ba7b72015-06-23 18:27:30 +0100821 codegen.get(),
822 visualizer_output_.get(),
Vladimir Marko038924b2019-02-19 15:09:35 +0000823 compiler_options,
Andreas Gampea0d81af2016-10-27 12:04:57 -0700824 dump_mutex_);
David Brazdil5e8b1372015-01-23 14:39:08 +0000825
David Brazdil809658e2015-02-05 11:34:02 +0000826 {
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000827 VLOG(compiler) << "Building " << pass_observer.GetMethodName();
828 PassScope scope(HGraphBuilder::kBuilderPassName, &pass_observer);
829 HGraphBuilder builder(graph,
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800830 code_item_accessor,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000831 &dex_compilation_unit,
832 &dex_compilation_unit,
Nicolas Geoffray83c8e272017-01-31 14:36:37 +0000833 codegen.get(),
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000834 compilation_stats_.get(),
Vladimir Marko02ca05a2020-05-12 13:58:51 +0100835 interpreter_metadata);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000836 GraphAnalysisResult result = builder.BuildGraph();
837 if (result != kAnalysisSuccess) {
838 switch (result) {
Igor Murashkin1e065a52017-08-09 13:20:34 -0700839 case kAnalysisSkipped: {
840 MaybeRecordStat(compilation_stats_.get(),
841 MethodCompilationStat::kNotCompiledSkipped);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000842 break;
Nicolas Geoffray8a62a4c2018-07-03 09:39:07 +0100843 }
Igor Murashkin1e065a52017-08-09 13:20:34 -0700844 case kAnalysisInvalidBytecode: {
845 MaybeRecordStat(compilation_stats_.get(),
846 MethodCompilationStat::kNotCompiledInvalidBytecode);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000847 break;
Nicolas Geoffray8a62a4c2018-07-03 09:39:07 +0100848 }
Igor Murashkin1e065a52017-08-09 13:20:34 -0700849 case kAnalysisFailThrowCatchLoop: {
850 MaybeRecordStat(compilation_stats_.get(),
851 MethodCompilationStat::kNotCompiledThrowCatchLoop);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000852 break;
Nicolas Geoffray8a62a4c2018-07-03 09:39:07 +0100853 }
Igor Murashkin1e065a52017-08-09 13:20:34 -0700854 case kAnalysisFailAmbiguousArrayOp: {
855 MaybeRecordStat(compilation_stats_.get(),
856 MethodCompilationStat::kNotCompiledAmbiguousArrayOp);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000857 break;
Nicolas Geoffray8a62a4c2018-07-03 09:39:07 +0100858 }
Nicolas Geoffray0846a8f2018-09-12 15:21:07 +0100859 case kAnalysisFailIrreducibleLoopAndStringInit: {
860 MaybeRecordStat(compilation_stats_.get(),
861 MethodCompilationStat::kNotCompiledIrreducibleLoopAndStringInit);
862 break;
863 }
Nicolas Geoffray7cfc8f52019-08-07 10:41:09 +0100864 case kAnalysisFailPhiEquivalentInOsr: {
865 MaybeRecordStat(compilation_stats_.get(),
866 MethodCompilationStat::kNotCompiledPhiEquivalentInOsr);
867 break;
868 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000869 case kAnalysisSuccess:
870 UNREACHABLE();
David Brazdil809658e2015-02-05 11:34:02 +0000871 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000872 pass_observer.SetGraphInBadState();
873 return nullptr;
Nicolas Geoffrayf5370122014-12-02 11:51:19 +0000874 }
David Brazdilbadd8262016-02-02 16:28:56 +0000875 }
Vladimir Markof9f64412015-09-02 14:05:49 +0100876
Nicolas Geoffray0d60a2b2020-06-17 14:31:56 +0100877 if (compilation_kind == CompilationKind::kBaseline) {
Vladimir Marko02ca05a2020-05-12 13:58:51 +0100878 RunBaselineOptimizations(graph, codegen.get(), dex_compilation_unit, &pass_observer);
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100879 } else {
Vladimir Marko02ca05a2020-05-12 13:58:51 +0100880 RunOptimizations(graph, codegen.get(), dex_compilation_unit, &pass_observer);
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100881 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000882
883 RegisterAllocator::Strategy regalloc_strategy =
884 compiler_options.GetRegisterAllocationStrategy();
Igor Murashkin1e065a52017-08-09 13:20:34 -0700885 AllocateRegisters(graph,
886 codegen.get(),
887 &pass_observer,
Igor Murashkin6ef45672017-08-08 13:59:55 -0700888 regalloc_strategy,
889 compilation_stats_.get());
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000890
891 codegen->Compile(code_allocator);
892 pass_observer.DumpDisassembly();
893
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000894 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kCompiledBytecode);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000895 return codegen.release();
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000896}
897
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000898CodeGenerator* OptimizingCompiler::TryCompileIntrinsic(
899 ArenaAllocator* allocator,
900 ArenaStack* arena_stack,
901 CodeVectorAllocator* code_allocator,
902 const DexCompilationUnit& dex_compilation_unit,
903 ArtMethod* method,
904 VariableSizedHandleScope* handles) const {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000905 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kAttemptIntrinsicCompilation);
Vladimir Marko038924b2019-02-19 15:09:35 +0000906 const CompilerOptions& compiler_options = GetCompilerOptions();
Vladimir Markoa0431112018-06-25 09:32:54 +0100907 InstructionSet instruction_set = compiler_options.GetInstructionSet();
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000908 const DexFile& dex_file = *dex_compilation_unit.GetDexFile();
909 uint32_t method_idx = dex_compilation_unit.GetDexMethodIndex();
910
911 // Always use the Thumb-2 assembler: some runtime functionality
912 // (like implicit stack overflow checks) assume Thumb-2.
913 DCHECK_NE(instruction_set, InstructionSet::kArm);
914
915 // Do not attempt to compile on architectures we do not support.
916 if (!IsInstructionSetSupported(instruction_set)) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000917 return nullptr;
918 }
919
920 HGraph* graph = new (allocator) HGraph(
921 allocator,
922 arena_stack,
Vladimir Marko02ca05a2020-05-12 13:58:51 +0100923 handles,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000924 dex_file,
925 method_idx,
Vladimir Marko2afaff72018-11-30 17:01:50 +0000926 compiler_options.GetInstructionSet(),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000927 kInvalidInvokeType,
Hans Boehm206348c2018-12-05 11:11:33 -0800928 /* dead_reference_safe= */ true, // Intrinsics don't affect dead reference safety.
Vladimir Marko2afaff72018-11-30 17:01:50 +0000929 compiler_options.GetDebuggable(),
Nicolas Geoffray0d60a2b2020-06-17 14:31:56 +0100930 CompilationKind::kOptimized);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000931
932 DCHECK(Runtime::Current()->IsAotCompiler());
933 DCHECK(method != nullptr);
934 graph->SetArtMethod(method);
935
936 std::unique_ptr<CodeGenerator> codegen(
937 CodeGenerator::Create(graph,
Vladimir Markoa0431112018-06-25 09:32:54 +0100938 compiler_options,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000939 compilation_stats_.get()));
940 if (codegen.get() == nullptr) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000941 return nullptr;
942 }
Vladimir Markoa0431112018-06-25 09:32:54 +0100943 codegen->GetAssembler()->cfi().SetEnabled(compiler_options.GenerateAnyDebugInfo());
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000944
945 PassObserver pass_observer(graph,
946 codegen.get(),
947 visualizer_output_.get(),
Vladimir Marko038924b2019-02-19 15:09:35 +0000948 compiler_options,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000949 dump_mutex_);
950
951 {
952 VLOG(compiler) << "Building intrinsic graph " << pass_observer.GetMethodName();
953 PassScope scope(HGraphBuilder::kBuilderPassName, &pass_observer);
954 HGraphBuilder builder(graph,
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800955 CodeItemDebugInfoAccessor(), // Null code item.
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000956 &dex_compilation_unit,
957 &dex_compilation_unit,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000958 codegen.get(),
959 compilation_stats_.get(),
Vladimir Marko02ca05a2020-05-12 13:58:51 +0100960 /* interpreter_metadata= */ ArrayRef<const uint8_t>());
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000961 builder.BuildIntrinsicGraph(method);
962 }
963
Aart Bik2ca10eb2017-11-15 15:17:53 -0800964 OptimizationDef optimizations[] = {
Nicolas Geoffray76d4bb0f32018-09-21 12:58:45 +0100965 // The codegen has a few assumptions that only the instruction simplifier
966 // can satisfy.
Aart Bik2ca10eb2017-11-15 15:17:53 -0800967 OptDef(OptimizationPass::kInstructionSimplifier),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000968 };
Aart Bik2ca10eb2017-11-15 15:17:53 -0800969 RunOptimizations(graph,
970 codegen.get(),
971 dex_compilation_unit,
972 &pass_observer,
Aart Bik2ca10eb2017-11-15 15:17:53 -0800973 optimizations);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000974
Vladimir Marko02ca05a2020-05-12 13:58:51 +0100975 RunArchOptimizations(graph, codegen.get(), dex_compilation_unit, &pass_observer);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000976
977 AllocateRegisters(graph,
978 codegen.get(),
979 &pass_observer,
Vladimir Marko038924b2019-02-19 15:09:35 +0000980 compiler_options.GetRegisterAllocationStrategy(),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000981 compilation_stats_.get());
982 if (!codegen->IsLeafMethod()) {
983 VLOG(compiler) << "Intrinsic method is not leaf: " << method->GetIntrinsic()
984 << " " << graph->PrettyMethod();
985 return nullptr;
986 }
987
988 codegen->Compile(code_allocator);
989 pass_observer.DumpDisassembly();
990
991 VLOG(compiler) << "Compiled intrinsic: " << method->GetIntrinsic()
992 << " " << graph->PrettyMethod();
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000993 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kCompiledIntrinsic);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000994 return codegen.release();
995}
996
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800997CompiledMethod* OptimizingCompiler::Compile(const dex::CodeItem* code_item,
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000998 uint32_t access_flags,
999 InvokeType invoke_type,
1000 uint16_t class_def_idx,
1001 uint32_t method_idx,
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001002 Handle<mirror::ClassLoader> jclass_loader,
Mathieu Chartier736b5602015-09-02 14:54:11 -07001003 const DexFile& dex_file,
1004 Handle<mirror::DexCache> dex_cache) const {
Vladimir Marko038924b2019-02-19 15:09:35 +00001005 const CompilerOptions& compiler_options = GetCompilerOptions();
Vladimir Marko695348f2020-05-19 14:42:02 +01001006 DCHECK(compiler_options.IsAotCompiler());
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001007 CompiledMethod* compiled_method = nullptr;
1008 Runtime* runtime = Runtime::Current();
1009 DCHECK(runtime->IsAotCompiler());
Vladimir Marko2afaff72018-11-30 17:01:50 +00001010 const VerifiedMethod* verified_method = compiler_options.GetVerifiedMethod(&dex_file, method_idx);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001011 DCHECK(!verified_method->HasRuntimeThrow());
Vladimir Marko2afaff72018-11-30 17:01:50 +00001012 if (compiler_options.IsMethodVerifiedWithoutFailures(method_idx, class_def_idx, dex_file) ||
Vladimir Markoca6fff82017-10-03 14:49:14 +01001013 verifier::CanCompilerHandleVerificationFailure(
1014 verified_method->GetEncounteredVerificationFailures())) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001015 ArenaAllocator allocator(runtime->GetArenaPool());
1016 ArenaStack arena_stack(runtime->GetArenaPool());
Vladimir Markoca6fff82017-10-03 14:49:14 +01001017 CodeVectorAllocator code_allocator(&allocator);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001018 std::unique_ptr<CodeGenerator> codegen;
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001019 bool compiled_intrinsic = false;
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001020 {
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001021 ScopedObjectAccess soa(Thread::Current());
1022 ArtMethod* method =
1023 runtime->GetClassLinker()->ResolveMethod<ClassLinker::ResolveMode::kCheckICCEAndIAE>(
1024 method_idx, dex_cache, jclass_loader, /*referrer=*/ nullptr, invoke_type);
1025 DCHECK_EQ(method == nullptr, soa.Self()->IsExceptionPending());
1026 soa.Self()->ClearException(); // Suppress exception if any.
1027 VariableSizedHandleScope handles(soa.Self());
1028 Handle<mirror::Class> compiling_class =
1029 handles.NewHandle(method != nullptr ? method->GetDeclaringClass() : nullptr);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001030 DexCompilationUnit dex_compilation_unit(
1031 jclass_loader,
1032 runtime->GetClassLinker(),
1033 dex_file,
1034 code_item,
1035 class_def_idx,
1036 method_idx,
1037 access_flags,
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001038 /*verified_method=*/ nullptr, // Not needed by the Optimizing compiler.
1039 dex_cache,
1040 compiling_class);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001041 // Go to native so that we don't block GC during compilation.
1042 ScopedThreadSuspension sts(soa.Self(), kNative);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001043 if (method != nullptr && UNLIKELY(method->IsIntrinsic())) {
Vladimir Marko2afaff72018-11-30 17:01:50 +00001044 DCHECK(compiler_options.IsBootImage());
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001045 codegen.reset(
1046 TryCompileIntrinsic(&allocator,
1047 &arena_stack,
1048 &code_allocator,
1049 dex_compilation_unit,
1050 method,
1051 &handles));
1052 if (codegen != nullptr) {
1053 compiled_intrinsic = true;
1054 }
1055 }
1056 if (codegen == nullptr) {
1057 codegen.reset(
1058 TryCompile(&allocator,
1059 &arena_stack,
1060 &code_allocator,
1061 dex_compilation_unit,
1062 method,
Nicolas Geoffray0d60a2b2020-06-17 14:31:56 +01001063 compiler_options.IsBaseline()
1064 ? CompilationKind::kBaseline
1065 : CompilationKind::kOptimized,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001066 &handles));
1067 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001068 }
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001069 if (codegen.get() != nullptr) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001070 compiled_method = Emit(&allocator,
1071 &code_allocator,
1072 codegen.get(),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001073 compiled_intrinsic ? nullptr : code_item);
1074 if (compiled_intrinsic) {
1075 compiled_method->MarkAsIntrinsic();
1076 }
Vladimir Marko3a40bf22016-03-22 16:26:33 +00001077
1078 if (kArenaAllocatorCountAllocations) {
Vladimir Marko174b2e22017-10-12 13:34:49 +01001079 codegen.reset(); // Release codegen's ScopedArenaAllocator for memory accounting.
Vladimir Markoca6fff82017-10-03 14:49:14 +01001080 size_t total_allocated = allocator.BytesAllocated() + arena_stack.PeakBytesAllocated();
1081 if (total_allocated > kArenaAllocatorMemoryReportThreshold) {
1082 MemStats mem_stats(allocator.GetMemStats());
1083 MemStats peak_stats(arena_stack.GetPeakStats());
Vladimir Marko69d310e2017-10-09 14:12:23 +01001084 LOG(INFO) << "Used " << total_allocated << " bytes of arena memory for compiling "
1085 << dex_file.PrettyMethod(method_idx)
Vladimir Markoca6fff82017-10-03 14:49:14 +01001086 << "\n" << Dumpable<MemStats>(mem_stats)
1087 << "\n" << Dumpable<MemStats>(peak_stats);
Vladimir Marko3a40bf22016-03-22 16:26:33 +00001088 }
1089 }
Calin Juravlef1c6d9e2015-04-13 18:42:21 +01001090 }
Nicolas Geoffray0c3c2662015-10-15 13:53:04 +01001091 } else {
Igor Murashkin1e065a52017-08-09 13:20:34 -07001092 MethodCompilationStat method_stat;
Vladimir Marko2afaff72018-11-30 17:01:50 +00001093 if (compiler_options.VerifyAtRuntime()) {
Igor Murashkin1e065a52017-08-09 13:20:34 -07001094 method_stat = MethodCompilationStat::kNotCompiledVerifyAtRuntime;
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001095 } else {
Igor Murashkin1e065a52017-08-09 13:20:34 -07001096 method_stat = MethodCompilationStat::kNotCompiledVerificationError;
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001097 }
Igor Murashkin1e065a52017-08-09 13:20:34 -07001098 MaybeRecordStat(compilation_stats_.get(), method_stat);
Calin Juravlef1c6d9e2015-04-13 18:42:21 +01001099 }
1100
Calin Juravlecff8cc72015-10-09 12:03:24 +01001101 if (kIsDebugBuild &&
David Srbecky4fa07a52020-03-31 20:52:09 +01001102 compiler_options.CompileArtTest() &&
Vladimir Marko2afaff72018-11-30 17:01:50 +00001103 IsInstructionSetSupported(compiler_options.GetInstructionSet())) {
Roland Levillain0d5a2812015-11-13 10:07:31 +00001104 // For testing purposes, we put a special marker on method names
Goran Jakovljevic9c4f0d8f2017-04-05 16:27:25 +02001105 // that should be compiled with this compiler (when the
1106 // instruction set is supported). This makes sure we're not
Roland Levillain0d5a2812015-11-13 10:07:31 +00001107 // regressing.
David Sehr709b0702016-10-13 09:12:37 -07001108 std::string method_name = dex_file.PrettyMethod(method_idx);
Calin Juravle09b1d6f2015-10-07 12:08:54 +01001109 bool shouldCompile = method_name.find("$opt$") != std::string::npos;
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001110 DCHECK((compiled_method != nullptr) || !shouldCompile) << "Didn't compile " << method_name;
Calin Juravle09b1d6f2015-10-07 12:08:54 +01001111 }
1112
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001113 return compiled_method;
1114}
1115
David Srbeckye7a91942018-08-01 17:23:53 +01001116static ScopedArenaVector<uint8_t> CreateJniStackMap(ScopedArenaAllocator* allocator,
Nicolas Geoffraybf5f0f32019-03-05 15:41:50 +00001117 const JniCompiledMethod& jni_compiled_method) {
Vladimir Markoced04832018-07-26 14:42:17 +01001118 // StackMapStream is quite large, so allocate it using the ScopedArenaAllocator
1119 // to stay clear of the frame size limit.
1120 std::unique_ptr<StackMapStream> stack_map_stream(
David Srbeckye7a91942018-08-01 17:23:53 +01001121 new (allocator) StackMapStream(allocator, jni_compiled_method.GetInstructionSet()));
Vladimir Markoced04832018-07-26 14:42:17 +01001122 stack_map_stream->BeginMethod(
David Srbeckyafc97bc2018-07-05 08:14:35 +00001123 jni_compiled_method.GetFrameSize(),
1124 jni_compiled_method.GetCoreSpillMask(),
1125 jni_compiled_method.GetFpSpillMask(),
Nicolas Geoffraya59af8a2019-11-27 17:42:32 +00001126 /* num_dex_registers= */ 0,
1127 /* baseline= */ false);
Nicolas Geoffraybf5f0f32019-03-05 15:41:50 +00001128 stack_map_stream->EndMethod();
David Srbeckye7a91942018-08-01 17:23:53 +01001129 return stack_map_stream->Encode();
David Srbeckyafc97bc2018-07-05 08:14:35 +00001130}
1131
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001132CompiledMethod* OptimizingCompiler::JniCompile(uint32_t access_flags,
1133 uint32_t method_idx,
1134 const DexFile& dex_file,
1135 Handle<mirror::DexCache> dex_cache) const {
David Srbeckyafc97bc2018-07-05 08:14:35 +00001136 Runtime* runtime = Runtime::Current();
1137 ArenaAllocator allocator(runtime->GetArenaPool());
1138 ArenaStack arena_stack(runtime->GetArenaPool());
1139
Vladimir Marko038924b2019-02-19 15:09:35 +00001140 const CompilerOptions& compiler_options = GetCompilerOptions();
Vladimir Markoa0431112018-06-25 09:32:54 +01001141 if (compiler_options.IsBootImage()) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001142 ScopedObjectAccess soa(Thread::Current());
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001143 ArtMethod* method = runtime->GetClassLinker()->LookupResolvedMethod(
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001144 method_idx, dex_cache.Get(), /*class_loader=*/ nullptr);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001145 if (method != nullptr && UNLIKELY(method->IsIntrinsic())) {
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001146 VariableSizedHandleScope handles(soa.Self());
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001147 ScopedNullHandle<mirror::ClassLoader> class_loader; // null means boot class path loader.
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001148 Handle<mirror::Class> compiling_class = handles.NewHandle(method->GetDeclaringClass());
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001149 DexCompilationUnit dex_compilation_unit(
1150 class_loader,
1151 runtime->GetClassLinker(),
1152 dex_file,
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001153 /*code_item=*/ nullptr,
1154 /*class_def_idx=*/ DexFile::kDexNoIndex16,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001155 method_idx,
1156 access_flags,
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001157 /*verified_method=*/ nullptr,
1158 dex_cache,
1159 compiling_class);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001160 CodeVectorAllocator code_allocator(&allocator);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001161 // Go to native so that we don't block GC during compilation.
1162 ScopedThreadSuspension sts(soa.Self(), kNative);
1163 std::unique_ptr<CodeGenerator> codegen(
1164 TryCompileIntrinsic(&allocator,
1165 &arena_stack,
1166 &code_allocator,
1167 dex_compilation_unit,
1168 method,
1169 &handles));
1170 if (codegen != nullptr) {
1171 CompiledMethod* compiled_method = Emit(&allocator,
1172 &code_allocator,
1173 codegen.get(),
Andreas Gampe3db70682018-12-26 15:12:03 -08001174 /* item= */ nullptr);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001175 compiled_method->MarkAsIntrinsic();
1176 return compiled_method;
1177 }
1178 }
1179 }
1180
Vladimir Marko7bdc6e72017-11-28 12:37:13 +00001181 JniCompiledMethod jni_compiled_method = ArtQuickJniCompileMethod(
Vladimir Markoa0431112018-06-25 09:32:54 +01001182 compiler_options, access_flags, method_idx, dex_file);
Vladimir Markocd09e1f2017-11-24 15:02:40 +00001183 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kCompiledNativeStub);
David Srbeckyafc97bc2018-07-05 08:14:35 +00001184
David Srbeckye7a91942018-08-01 17:23:53 +01001185 ScopedArenaAllocator stack_map_allocator(&arena_stack); // Will hold the stack map.
Nicolas Geoffraybf5f0f32019-03-05 15:41:50 +00001186 ScopedArenaVector<uint8_t> stack_map = CreateJniStackMap(&stack_map_allocator,
1187 jni_compiled_method);
Vladimir Marko7bdc6e72017-11-28 12:37:13 +00001188 return CompiledMethod::SwapAllocCompiledMethod(
Vladimir Marko038924b2019-02-19 15:09:35 +00001189 GetCompiledMethodStorage(),
Vladimir Marko7bdc6e72017-11-28 12:37:13 +00001190 jni_compiled_method.GetInstructionSet(),
1191 jni_compiled_method.GetCode(),
David Srbeckyafc97bc2018-07-05 08:14:35 +00001192 ArrayRef<const uint8_t>(stack_map),
Vladimir Marko7bdc6e72017-11-28 12:37:13 +00001193 jni_compiled_method.GetCfi(),
Andreas Gampe3db70682018-12-26 15:12:03 -08001194 /* patches= */ ArrayRef<const linker::LinkerPatch>());
Nicolas Geoffray216eaa22015-03-17 17:09:30 +00001195}
1196
Vladimir Marko038924b2019-02-19 15:09:35 +00001197Compiler* CreateOptimizingCompiler(const CompilerOptions& compiler_options,
1198 CompiledMethodStorage* storage) {
1199 return new OptimizingCompiler(compiler_options, storage);
Andreas Gampe53c913b2014-08-12 23:19:23 -07001200}
1201
Nicolas Geoffrayfbdfa6d2017-02-03 10:43:13 +00001202bool EncodeArtMethodInInlineInfo(ArtMethod* method ATTRIBUTE_UNUSED) {
1203 // Note: the runtime is null only for unit testing.
1204 return Runtime::Current() == nullptr || !Runtime::Current()->IsAotCompiler();
1205}
1206
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001207bool OptimizingCompiler::JitCompile(Thread* self,
1208 jit::JitCodeCache* code_cache,
Nicolas Geoffray7f7539b2019-06-06 16:20:54 +01001209 jit::JitMemoryRegion* region,
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +00001210 ArtMethod* method,
Nicolas Geoffray0d60a2b2020-06-17 14:31:56 +01001211 CompilationKind compilation_kind,
Nicolas Geoffray01db5f72017-07-19 15:05:49 +01001212 jit::JitLogger* jit_logger) {
Vladimir Marko695348f2020-05-19 14:42:02 +01001213 const CompilerOptions& compiler_options = GetCompilerOptions();
Nicolas Geoffray0d60a2b2020-06-17 14:31:56 +01001214 // If the baseline flag was explicitly passed, change the compilation kind
1215 // from optimized to baseline.
1216 if (compiler_options.IsBaseline() && compilation_kind == CompilationKind::kOptimized) {
1217 compilation_kind = CompilationKind::kBaseline;
1218 }
Vladimir Marko695348f2020-05-19 14:42:02 +01001219 DCHECK(compiler_options.IsJitCompiler());
1220 DCHECK_EQ(compiler_options.IsJitCompilerForSharedCode(), code_cache->IsSharedRegion(*region));
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001221 StackHandleScope<3> hs(self);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001222 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(
1223 method->GetDeclaringClass()->GetClassLoader()));
1224 Handle<mirror::DexCache> dex_cache(hs.NewHandle(method->GetDexCache()));
Nicolas Geoffray250a3782016-04-20 16:27:53 +01001225 DCHECK(method->IsCompilable());
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001226
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001227 const DexFile* dex_file = method->GetDexFile();
1228 const uint16_t class_def_idx = method->GetClassDefIndex();
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08001229 const dex::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset());
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001230 const uint32_t method_idx = method->GetDexMethodIndex();
1231 const uint32_t access_flags = method->GetAccessFlags();
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001232
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001233 Runtime* runtime = Runtime::Current();
1234 ArenaAllocator allocator(runtime->GetJitArenaPool());
Vladimir Marko2196c652017-11-30 16:16:07 +00001235
1236 if (UNLIKELY(method->IsNative())) {
1237 JniCompiledMethod jni_compiled_method = ArtQuickJniCompileMethod(
Vladimir Markoa0431112018-06-25 09:32:54 +01001238 compiler_options, access_flags, method_idx, *dex_file);
Vladimir Markoac3ac682018-09-20 11:01:43 +01001239 std::vector<Handle<mirror::Object>> roots;
Vladimir Marko2196c652017-11-30 16:16:07 +00001240 ArenaSet<ArtMethod*, std::less<ArtMethod*>> cha_single_implementation_list(
1241 allocator.Adapter(kArenaAllocCHA));
David Srbeckyafc97bc2018-07-05 08:14:35 +00001242 ArenaStack arena_stack(runtime->GetJitArenaPool());
1243 // StackMapStream is large and it does not fit into this frame, so we need helper method.
David Srbeckye7a91942018-08-01 17:23:53 +01001244 ScopedArenaAllocator stack_map_allocator(&arena_stack); // Will hold the stack map.
Nicolas Geoffraybf5f0f32019-03-05 15:41:50 +00001245 ScopedArenaVector<uint8_t> stack_map = CreateJniStackMap(&stack_map_allocator,
1246 jni_compiled_method);
David Srbeckyadb66f92019-10-10 12:59:43 +00001247
1248 ArrayRef<const uint8_t> reserved_code;
1249 ArrayRef<const uint8_t> reserved_data;
1250 if (!code_cache->Reserve(self,
1251 region,
1252 jni_compiled_method.GetCode().size(),
1253 stack_map.size(),
1254 /* number_of_roots= */ 0,
1255 method,
1256 /*out*/ &reserved_code,
1257 /*out*/ &reserved_data)) {
David Srbeckyafc97bc2018-07-05 08:14:35 +00001258 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kJitOutOfMemoryForCommit);
1259 return false;
1260 }
David Srbeckyadb66f92019-10-10 12:59:43 +00001261 const uint8_t* code = reserved_code.data() + OatQuickMethodHeader::InstructionAlignedSize();
David Srbeckyafc97bc2018-07-05 08:14:35 +00001262
David Srbecky444e9982019-10-02 17:59:23 +01001263 // Add debug info after we know the code location but before we update entry-point.
David Srbecky41617b12020-03-18 21:19:06 +00001264 std::vector<uint8_t> debug_info;
David Srbeckyadb66f92019-10-10 12:59:43 +00001265 if (compiler_options.GenerateAnyDebugInfo()) {
Vladimir Marko2196c652017-11-30 16:16:07 +00001266 debug::MethodDebugInfo info = {};
David Srbeckyfe1d9522019-03-25 17:19:11 +00001267 info.custom_name = "art_jni_trampoline";
Vladimir Marko2196c652017-11-30 16:16:07 +00001268 info.dex_file = dex_file;
1269 info.class_def_index = class_def_idx;
1270 info.dex_method_index = method_idx;
1271 info.access_flags = access_flags;
1272 info.code_item = code_item;
1273 info.isa = jni_compiled_method.GetInstructionSet();
1274 info.deduped = false;
1275 info.is_native_debuggable = compiler_options.GetNativeDebuggable();
1276 info.is_optimized = true;
1277 info.is_code_address_text_relative = false;
David Srbeckyadb66f92019-10-10 12:59:43 +00001278 info.code_address = reinterpret_cast<uintptr_t>(code);
Vladimir Marko2196c652017-11-30 16:16:07 +00001279 info.code_size = jni_compiled_method.GetCode().size();
David Srbeckyadb66f92019-10-10 12:59:43 +00001280 info.frame_size_in_bytes = jni_compiled_method.GetFrameSize();
Vladimir Marko2196c652017-11-30 16:16:07 +00001281 info.code_info = nullptr;
1282 info.cfi = jni_compiled_method.GetCfi();
David Srbecky41617b12020-03-18 21:19:06 +00001283 debug_info = GenerateJitDebugInfo(info);
David Srbeckyadb66f92019-10-10 12:59:43 +00001284 }
David Srbecky444e9982019-10-02 17:59:23 +01001285
David Srbeckyadb66f92019-10-10 12:59:43 +00001286 if (!code_cache->Commit(self,
1287 region,
1288 method,
1289 reserved_code,
1290 jni_compiled_method.GetCode(),
1291 reserved_data,
1292 roots,
1293 ArrayRef<const uint8_t>(stack_map),
David Srbecky41617b12020-03-18 21:19:06 +00001294 debug_info,
1295 /* is_full_debug_info= */ compiler_options.GetGenerateDebugInfo(),
Nicolas Geoffray0d60a2b2020-06-17 14:31:56 +01001296 compilation_kind,
David Srbeckyadb66f92019-10-10 12:59:43 +00001297 /* has_should_deoptimize_flag= */ false,
1298 cha_single_implementation_list)) {
1299 code_cache->Free(self, region, reserved_code.data(), reserved_data.data());
David Srbecky444e9982019-10-02 17:59:23 +01001300 return false;
Vladimir Marko2196c652017-11-30 16:16:07 +00001301 }
1302
1303 Runtime::Current()->GetJit()->AddMemoryUsage(method, allocator.BytesUsed());
1304 if (jit_logger != nullptr) {
1305 jit_logger->WriteLog(code, jni_compiled_method.GetCode().size(), method);
1306 }
1307 return true;
1308 }
1309
1310 ArenaStack arena_stack(runtime->GetJitArenaPool());
Vladimir Markoca6fff82017-10-03 14:49:14 +01001311 CodeVectorAllocator code_allocator(&allocator);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001312 VariableSizedHandleScope handles(self);
1313
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001314 std::unique_ptr<CodeGenerator> codegen;
1315 {
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001316 Handle<mirror::Class> compiling_class = handles.NewHandle(method->GetDeclaringClass());
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001317 DexCompilationUnit dex_compilation_unit(
1318 class_loader,
1319 runtime->GetClassLinker(),
1320 *dex_file,
1321 code_item,
1322 class_def_idx,
1323 method_idx,
1324 access_flags,
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001325 /*verified_method=*/ nullptr,
1326 dex_cache,
1327 compiling_class);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001328
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001329 // Go to native so that we don't block GC during compilation.
1330 ScopedThreadSuspension sts(self, kNative);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001331 codegen.reset(
Vladimir Markoca6fff82017-10-03 14:49:14 +01001332 TryCompile(&allocator,
1333 &arena_stack,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001334 &code_allocator,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001335 dex_compilation_unit,
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +00001336 method,
Nicolas Geoffray0d60a2b2020-06-17 14:31:56 +01001337 compilation_kind,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001338 &handles));
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001339 if (codegen.get() == nullptr) {
1340 return false;
1341 }
1342 }
1343
David Srbeckye7a91942018-08-01 17:23:53 +01001344 ScopedArenaVector<uint8_t> stack_map = codegen->BuildStackMaps(code_item);
David Srbeckyadb66f92019-10-10 12:59:43 +00001345
1346 ArrayRef<const uint8_t> reserved_code;
1347 ArrayRef<const uint8_t> reserved_data;
1348 if (!code_cache->Reserve(self,
1349 region,
1350 code_allocator.GetMemory().size(),
1351 stack_map.size(),
1352 /*number_of_roots=*/codegen->GetNumberOfJitRoots(),
1353 method,
1354 /*out*/ &reserved_code,
1355 /*out*/ &reserved_data)) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +00001356 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kJitOutOfMemoryForCommit);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001357 return false;
1358 }
David Srbeckyadb66f92019-10-10 12:59:43 +00001359 const uint8_t* code = reserved_code.data() + OatQuickMethodHeader::InstructionAlignedSize();
1360 const uint8_t* roots_data = reserved_data.data();
1361
Vladimir Markoac3ac682018-09-20 11:01:43 +01001362 std::vector<Handle<mirror::Object>> roots;
1363 codegen->EmitJitRoots(code_allocator.GetData(), roots_data, &roots);
1364 // The root Handle<>s filled by the codegen reference entries in the VariableSizedHandleScope.
1365 DCHECK(std::all_of(roots.begin(),
1366 roots.end(),
1367 [&handles](Handle<mirror::Object> root){
1368 return handles.Contains(root.GetReference());
1369 }));
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001370
David Srbecky444e9982019-10-02 17:59:23 +01001371 // Add debug info after we know the code location but before we update entry-point.
David Srbecky41617b12020-03-18 21:19:06 +00001372 std::vector<uint8_t> debug_info;
David Srbeckyadb66f92019-10-10 12:59:43 +00001373 if (compiler_options.GenerateAnyDebugInfo()) {
Vladimir Marko1b404a82017-09-01 13:35:26 +01001374 debug::MethodDebugInfo info = {};
David Srbeckyc684f332018-01-19 17:38:06 +00001375 DCHECK(info.custom_name.empty());
David Srbecky197160d2016-03-07 17:33:57 +00001376 info.dex_file = dex_file;
1377 info.class_def_index = class_def_idx;
1378 info.dex_method_index = method_idx;
1379 info.access_flags = access_flags;
1380 info.code_item = code_item;
1381 info.isa = codegen->GetInstructionSet();
1382 info.deduped = false;
1383 info.is_native_debuggable = compiler_options.GetNativeDebuggable();
1384 info.is_optimized = true;
1385 info.is_code_address_text_relative = false;
David Srbeckyadb66f92019-10-10 12:59:43 +00001386 info.code_address = reinterpret_cast<uintptr_t>(code);
Vladimir Markoca1e0382018-04-11 09:58:41 +00001387 info.code_size = code_allocator.GetMemory().size();
David Srbeckyadb66f92019-10-10 12:59:43 +00001388 info.frame_size_in_bytes = codegen->GetFrameSize();
1389 info.code_info = stack_map.size() == 0 ? nullptr : stack_map.data();
David Srbecky197160d2016-03-07 17:33:57 +00001390 info.cfi = ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data());
David Srbecky41617b12020-03-18 21:19:06 +00001391 debug_info = GenerateJitDebugInfo(info);
David Srbeckyadb66f92019-10-10 12:59:43 +00001392 }
David Srbecky444e9982019-10-02 17:59:23 +01001393
David Srbeckyadb66f92019-10-10 12:59:43 +00001394 if (!code_cache->Commit(self,
1395 region,
1396 method,
1397 reserved_code,
1398 code_allocator.GetMemory(),
1399 reserved_data,
1400 roots,
1401 ArrayRef<const uint8_t>(stack_map),
David Srbecky41617b12020-03-18 21:19:06 +00001402 debug_info,
1403 /* is_full_debug_info= */ compiler_options.GetGenerateDebugInfo(),
Nicolas Geoffray0d60a2b2020-06-17 14:31:56 +01001404 compilation_kind,
David Srbeckyadb66f92019-10-10 12:59:43 +00001405 codegen->GetGraph()->HasShouldDeoptimizeFlag(),
1406 codegen->GetGraph()->GetCHASingleImplementationList())) {
1407 code_cache->Free(self, region, reserved_code.data(), reserved_data.data());
David Srbecky444e9982019-10-02 17:59:23 +01001408 return false;
David Srbecky5cc349f2015-12-18 15:04:48 +00001409 }
1410
Vladimir Markoca6fff82017-10-03 14:49:14 +01001411 Runtime::Current()->GetJit()->AddMemoryUsage(method, allocator.BytesUsed());
Nicolas Geoffray01db5f72017-07-19 15:05:49 +01001412 if (jit_logger != nullptr) {
Vladimir Markoca1e0382018-04-11 09:58:41 +00001413 jit_logger->WriteLog(code, code_allocator.GetMemory().size(), method);
Nicolas Geoffray01db5f72017-07-19 15:05:49 +01001414 }
Nicolas Geoffraya4f81542016-03-08 16:57:48 +00001415
Vladimir Marko174b2e22017-10-12 13:34:49 +01001416 if (kArenaAllocatorCountAllocations) {
1417 codegen.reset(); // Release codegen's ScopedArenaAllocator for memory accounting.
1418 size_t total_allocated = allocator.BytesAllocated() + arena_stack.PeakBytesAllocated();
1419 if (total_allocated > kArenaAllocatorMemoryReportThreshold) {
1420 MemStats mem_stats(allocator.GetMemStats());
1421 MemStats peak_stats(arena_stack.GetPeakStats());
1422 LOG(INFO) << "Used " << total_allocated << " bytes of arena memory for compiling "
1423 << dex_file->PrettyMethod(method_idx)
1424 << "\n" << Dumpable<MemStats>(mem_stats)
1425 << "\n" << Dumpable<MemStats>(peak_stats);
1426 }
1427 }
1428
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001429 return true;
1430}
1431
David Srbecky41617b12020-03-18 21:19:06 +00001432std::vector<uint8_t> OptimizingCompiler::GenerateJitDebugInfo(const debug::MethodDebugInfo& info) {
Vladimir Marko038924b2019-02-19 15:09:35 +00001433 const CompilerOptions& compiler_options = GetCompilerOptions();
David Srbecky444e9982019-10-02 17:59:23 +01001434 if (compiler_options.GenerateAnyDebugInfo()) {
David Srbecky43ae7792019-01-09 17:34:01 +00001435 // If both flags are passed, generate full debug info.
1436 const bool mini_debug_info = !compiler_options.GetGenerateDebugInfo();
David Srbeckyc684f332018-01-19 17:38:06 +00001437
David Srbecky43ae7792019-01-09 17:34:01 +00001438 // Create entry for the single method that we just compiled.
David Srbecky8fc2f952019-07-31 18:40:09 +01001439 InstructionSet isa = compiler_options.GetInstructionSet();
1440 const InstructionSetFeatures* features = compiler_options.GetInstructionSetFeatures();
David Srbecky41617b12020-03-18 21:19:06 +00001441 return debug::MakeElfFileForJIT(isa, features, mini_debug_info, info);
David Srbecky43ae7792019-01-09 17:34:01 +00001442 }
David Srbecky41617b12020-03-18 21:19:06 +00001443 return std::vector<uint8_t>();
David Srbeckyc684f332018-01-19 17:38:06 +00001444}
1445
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +00001446} // namespace art