blob: 26e081d117319e2693332e8b662d8486766f0804 [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"
Vladimir Markob4eb1b12018-05-24 11:09:38 +010035#include "class_root.h"
Nicolas Geoffray787c3072014-03-17 10:20:19 +000036#include "code_generator.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000037#include "compiled_method.h"
Andreas Gampe53c913b2014-08-12 23:19:23 -070038#include "compiler.h"
David Srbeckyc5bfa972016-02-05 15:49:10 +000039#include "debug/elf_debug_writer.h"
David Srbecky4fda4eb2016-02-05 13:34:46 +000040#include "debug/method_debug_info.h"
David Sehr9e734c72018-01-04 17:56:19 -080041#include "dex/dex_file_types.h"
Calin Juravlef1c6d9e2015-04-13 18:42:21 +010042#include "dex/verification_results.h"
David Srbecky4fda4eb2016-02-05 13:34:46 +000043#include "dex/verified_method.h"
Vladimir Marko038924b2019-02-19 15:09:35 +000044#include "driver/compiled_method_storage.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000045#include "driver/compiler_options.h"
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000046#include "driver/dex_compilation_unit.h"
David Brazdil69ba7b72015-06-23 18:27:30 +010047#include "graph_checker.h"
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010048#include "graph_visualizer.h"
Nicolas Geoffraye53798a2014-12-01 10:31:54 +000049#include "inliner.h"
David Srbecky5cc349f2015-12-18 15:04:48 +000050#include "jit/debugger_interface.h"
Nicolas Geoffraya4f81542016-03-08 16:57:48 +000051#include "jit/jit.h"
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +000052#include "jit/jit_code_cache.h"
Nicolas Geoffray01db5f72017-07-19 15:05:49 +010053#include "jit/jit_logger.h"
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +000054#include "jni/quick/jni_compiler.h"
Vladimir Markod8dbc8d2017-09-20 13:37:47 +010055#include "linker/linker_patch.h"
Nicolas Geoffray787c3072014-03-17 10:20:19 +000056#include "nodes.h"
David Srbecky4fda4eb2016-02-05 13:34:46 +000057#include "oat_quick_method_header.h"
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +010058#include "prepare_for_register_allocation.h"
Calin Juravlef1c6d9e2015-04-13 18:42:21 +010059#include "reference_type_propagation.h"
Matthew Gharritye9288852016-07-14 14:08:16 -070060#include "register_allocator_linear_scan.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070061#include "select_generator.h"
Nicolas Geoffray31596742014-11-24 15:28:45 +000062#include "ssa_builder.h"
Nicolas Geoffray804d0932014-05-02 08:46:00 +010063#include "ssa_liveness_analysis.h"
David Srbecky4fda4eb2016-02-05 13:34:46 +000064#include "ssa_phi_elimination.h"
David Srbeckyafc97bc2018-07-05 08:14:35 +000065#include "stack_map_stream.h"
David Srbeckyc6b4dd82015-04-07 20:32:43 +010066#include "utils/assembler.h"
Andreas Gampe6d7abbd2017-04-24 13:19:09 -070067#include "verifier/verifier_compiler_binding.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000068
Vladimir Marko0a516052019-10-14 13:00:44 +000069namespace art {
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000070
Vladimir Marko3a40bf22016-03-22 16:26:33 +000071static constexpr size_t kArenaAllocatorMemoryReportThreshold = 8 * MB;
72
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -070073static constexpr const char* kPassNameSeparator = "$";
74
Nicolas Geoffray787c3072014-03-17 10:20:19 +000075/**
76 * Used by the code generator, to allocate the code in a vector.
77 */
Roland Levillainbbc6e7e2018-08-24 16:58:47 +010078class CodeVectorAllocator final : public CodeAllocator {
Nicolas Geoffray787c3072014-03-17 10:20:19 +000079 public:
Vladimir Markoe764d2e2017-10-05 14:35:55 +010080 explicit CodeVectorAllocator(ArenaAllocator* allocator)
Vladimir Markoca1e0382018-04-11 09:58:41 +000081 : memory_(allocator->Adapter(kArenaAllocCodeBuffer)) {}
Nicolas Geoffray787c3072014-03-17 10:20:19 +000082
Andreas Gampefa6a1b02018-09-07 08:11:55 -070083 uint8_t* Allocate(size_t size) override {
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000084 memory_.resize(size);
Nicolas Geoffray787c3072014-03-17 10:20:19 +000085 return &memory_[0];
86 }
87
Roland Levillainbbc6e7e2018-08-24 16:58:47 +010088 ArrayRef<const uint8_t> GetMemory() const override { return ArrayRef<const uint8_t>(memory_); }
Nicolas Geoffray132d8362016-11-16 09:19:42 +000089 uint8_t* GetData() { return memory_.data(); }
Nicolas Geoffray787c3072014-03-17 10:20:19 +000090
91 private:
Vladimir Markof9f64412015-09-02 14:05:49 +010092 ArenaVector<uint8_t> memory_;
Nicolas Geoffray787c3072014-03-17 10:20:19 +000093
94 DISALLOW_COPY_AND_ASSIGN(CodeVectorAllocator);
95};
96
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010097/**
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010098 * Filter to apply to the visualizer. Methods whose name contain that filter will
David Brazdilee690a32014-12-01 17:04:16 +000099 * be dumped.
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100100 */
Andreas Gampe53fcd0f2015-07-22 12:10:13 -0700101static constexpr const char kStringFilter[] = "";
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100102
David Brazdil69ba7b72015-06-23 18:27:30 +0100103class PassScope;
David Brazdil809658e2015-02-05 11:34:02 +0000104
David Brazdil69ba7b72015-06-23 18:27:30 +0100105class PassObserver : public ValueObject {
David Brazdil5e8b1372015-01-23 14:39:08 +0000106 public:
David Brazdil69ba7b72015-06-23 18:27:30 +0100107 PassObserver(HGraph* graph,
David Brazdil69ba7b72015-06-23 18:27:30 +0100108 CodeGenerator* codegen,
109 std::ostream* visualizer_output,
Vladimir Marko038924b2019-02-19 15:09:35 +0000110 const CompilerOptions& compiler_options,
Andreas Gampea0d81af2016-10-27 12:04:57 -0700111 Mutex& dump_mutex)
David Brazdil69ba7b72015-06-23 18:27:30 +0100112 : graph_(graph),
Aart Bika8360cd2018-05-02 16:07:51 -0700113 last_seen_graph_size_(0),
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000114 cached_method_name_(),
Vladimir Marko038924b2019-02-19 15:09:35 +0000115 timing_logger_enabled_(compiler_options.GetDumpPassTimings()),
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000116 timing_logger_(timing_logger_enabled_ ? GetMethodName() : "", true, true),
Vladimir Markoca6fff82017-10-03 14:49:14 +0100117 disasm_info_(graph->GetAllocator()),
Andreas Gampea0d81af2016-10-27 12:04:57 -0700118 visualizer_oss_(),
119 visualizer_output_(visualizer_output),
Vladimir Marko038924b2019-02-19 15:09:35 +0000120 visualizer_enabled_(!compiler_options.GetDumpCfgFileName().empty()),
Andreas Gampea0d81af2016-10-27 12:04:57 -0700121 visualizer_(&visualizer_oss_, graph, *codegen),
122 visualizer_dump_mutex_(dump_mutex),
David Brazdil69ba7b72015-06-23 18:27:30 +0100123 graph_in_bad_state_(false) {
Andreas Gampe53fcd0f2015-07-22 12:10:13 -0700124 if (timing_logger_enabled_ || visualizer_enabled_) {
Vladimir 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_) {
David Brazdilbadd8262016-02-02 16:28:56 +0000194 GraphChecker checker(graph_);
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_;
Andreas Gampea0d81af2016-10-27 12:04:57 -0700234 Mutex& visualizer_dump_mutex_;
David Brazdil5e8b1372015-01-23 14:39:08 +0000235
David Brazdil69ba7b72015-06-23 18:27:30 +0100236 // Flag to be set by the compiler if the pass failed and the graph is not
237 // expected to validate.
238 bool graph_in_bad_state_;
David Brazdil809658e2015-02-05 11:34:02 +0000239
David Brazdil69ba7b72015-06-23 18:27:30 +0100240 friend PassScope;
241
242 DISALLOW_COPY_AND_ASSIGN(PassObserver);
David Brazdil5e8b1372015-01-23 14:39:08 +0000243};
244
David Brazdil69ba7b72015-06-23 18:27:30 +0100245class PassScope : public ValueObject {
David Brazdil809658e2015-02-05 11:34:02 +0000246 public:
David Brazdil69ba7b72015-06-23 18:27:30 +0100247 PassScope(const char *pass_name, PassObserver* pass_observer)
David Brazdil809658e2015-02-05 11:34:02 +0000248 : pass_name_(pass_name),
Aart Bika8360cd2018-05-02 16:07:51 -0700249 pass_change_(true), // assume change
David Brazdil69ba7b72015-06-23 18:27:30 +0100250 pass_observer_(pass_observer) {
251 pass_observer_->StartPass(pass_name_);
David Brazdil809658e2015-02-05 11:34:02 +0000252 }
253
Aart Bika8360cd2018-05-02 16:07:51 -0700254 void SetPassNotChanged() {
255 pass_change_ = false;
256 }
257
David Brazdil69ba7b72015-06-23 18:27:30 +0100258 ~PassScope() {
Aart Bika8360cd2018-05-02 16:07:51 -0700259 pass_observer_->EndPass(pass_name_, pass_change_);
David Brazdil809658e2015-02-05 11:34:02 +0000260 }
261
262 private:
263 const char* const pass_name_;
Aart Bika8360cd2018-05-02 16:07:51 -0700264 bool pass_change_;
David Brazdil69ba7b72015-06-23 18:27:30 +0100265 PassObserver* const pass_observer_;
David Brazdil809658e2015-02-05 11:34:02 +0000266};
267
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100268class OptimizingCompiler final : public Compiler {
Andreas Gampe53c913b2014-08-12 23:19:23 -0700269 public:
Vladimir Marko038924b2019-02-19 15:09:35 +0000270 explicit OptimizingCompiler(const CompilerOptions& compiler_options,
271 CompiledMethodStorage* storage);
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100272 ~OptimizingCompiler() override;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700273
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100274 bool CanCompileMethod(uint32_t method_idx, const DexFile& dex_file) const override;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700275
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800276 CompiledMethod* Compile(const dex::CodeItem* code_item,
Andreas Gampe53c913b2014-08-12 23:19:23 -0700277 uint32_t access_flags,
278 InvokeType invoke_type,
279 uint16_t class_def_idx,
280 uint32_t method_idx,
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000281 Handle<mirror::ClassLoader> class_loader,
Mathieu Chartier736b5602015-09-02 14:54:11 -0700282 const DexFile& dex_file,
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100283 Handle<mirror::DexCache> dex_cache) const override;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700284
Andreas Gampe53c913b2014-08-12 23:19:23 -0700285 CompiledMethod* JniCompile(uint32_t access_flags,
286 uint32_t method_idx,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000287 const DexFile& dex_file,
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100288 Handle<mirror::DexCache> dex_cache) const override;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700289
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100290 uintptr_t GetEntryPointOf(ArtMethod* method) const override
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700291 REQUIRES_SHARED(Locks::mutator_lock_) {
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000292 return reinterpret_cast<uintptr_t>(method->GetEntryPointFromQuickCompiledCodePtrSize(
Vladimir Marko038924b2019-02-19 15:09:35 +0000293 InstructionSetPointerSize(GetCompilerOptions().GetInstructionSet())));
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000294 }
Andreas Gampe53c913b2014-08-12 23:19:23 -0700295
Nicolas Geoffray01db5f72017-07-19 15:05:49 +0100296 bool JitCompile(Thread* self,
297 jit::JitCodeCache* code_cache,
Nicolas Geoffray7f7539b2019-06-06 16:20:54 +0100298 jit::JitMemoryRegion* region,
Nicolas Geoffray01db5f72017-07-19 15:05:49 +0100299 ArtMethod* method,
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100300 bool baseline,
Nicolas Geoffray01db5f72017-07-19 15:05:49 +0100301 bool osr,
302 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,
311 VariableSizedHandleScope* handles,
312 const OptimizationDef definitions[],
313 size_t length) const {
314 // Convert definitions to optimization passes.
315 ArenaVector<HOptimization*> optimizations = ConstructOptimizations(
316 definitions,
317 length,
318 graph->GetAllocator(),
319 graph,
320 compilation_stats_.get(),
321 codegen,
Aart Bik2ca10eb2017-11-15 15:17:53 -0800322 dex_compilation_unit,
323 handles);
324 DCHECK_EQ(length, optimizations.size());
Aart Bik2e148682018-04-18 16:11:12 -0700325 // Run the optimization passes one by one. Any "depends_on" pass refers back to
326 // the most recent occurrence of that pass, skipped or executed.
327 std::bitset<static_cast<size_t>(OptimizationPass::kLast) + 1u> pass_changes;
328 pass_changes[static_cast<size_t>(OptimizationPass::kNone)] = true;
Aart Bik24773202018-04-26 10:28:51 -0700329 bool change = false;
Aart Bik2ca10eb2017-11-15 15:17:53 -0800330 for (size_t i = 0; i < length; ++i) {
Aart Bik2e148682018-04-18 16:11:12 -0700331 if (pass_changes[static_cast<size_t>(definitions[i].depends_on)]) {
332 // Execute the pass and record whether it changed anything.
333 PassScope scope(optimizations[i]->GetPassName(), pass_observer);
334 bool pass_change = optimizations[i]->Run();
335 pass_changes[static_cast<size_t>(definitions[i].pass)] = pass_change;
Aart Bika8360cd2018-05-02 16:07:51 -0700336 if (pass_change) {
337 change = true;
338 } else {
339 scope.SetPassNotChanged();
340 }
Aart Bik2e148682018-04-18 16:11:12 -0700341 } else {
342 // Skip the pass and record that nothing changed.
343 pass_changes[static_cast<size_t>(definitions[i].pass)] = false;
344 }
Aart Bik2ca10eb2017-11-15 15:17:53 -0800345 }
Aart Bik24773202018-04-26 10:28:51 -0700346 return change;
Aart Bik2ca10eb2017-11-15 15:17:53 -0800347 }
348
Aart Bik24773202018-04-26 10:28:51 -0700349 template <size_t length> bool RunOptimizations(
Aart Bik2ca10eb2017-11-15 15:17:53 -0800350 HGraph* graph,
351 CodeGenerator* codegen,
352 const DexCompilationUnit& dex_compilation_unit,
353 PassObserver* pass_observer,
354 VariableSizedHandleScope* handles,
355 const OptimizationDef (&definitions)[length]) const {
Aart Bik24773202018-04-26 10:28:51 -0700356 return RunOptimizations(
Aart Bik2ca10eb2017-11-15 15:17:53 -0800357 graph, codegen, dex_compilation_unit, pass_observer, handles, definitions, length);
358 }
359
360 void RunOptimizations(HGraph* graph,
361 CodeGenerator* codegen,
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -0700362 const DexCompilationUnit& dex_compilation_unit,
363 PassObserver* pass_observer,
Mathieu Chartiere8a3c572016-10-11 16:52:17 -0700364 VariableSizedHandleScope* handles) const;
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700365
Andreas Gampe53c913b2014-08-12 23:19:23 -0700366 private:
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000367 // Create a 'CompiledMethod' for an optimized graph.
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100368 CompiledMethod* Emit(ArenaAllocator* allocator,
David Brazdil58282f42016-01-14 12:45:10 +0000369 CodeVectorAllocator* code_allocator,
370 CodeGenerator* codegen,
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800371 const dex::CodeItem* item) const;
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000372
373 // Try compiling a method and return the code generator used for
374 // compiling it.
375 // This method:
376 // 1) Builds the graph. Returns null if it failed to build it.
David Brazdil58282f42016-01-14 12:45:10 +0000377 // 2) Transforms the graph to SSA. Returns null if it failed.
378 // 3) Runs optimizations on the graph, including register allocator.
379 // 4) Generates code with the `code_allocator` provided.
Vladimir Markoca6fff82017-10-03 14:49:14 +0100380 CodeGenerator* TryCompile(ArenaAllocator* allocator,
381 ArenaStack* arena_stack,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000382 CodeVectorAllocator* code_allocator,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000383 const DexCompilationUnit& dex_compilation_unit,
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000384 ArtMethod* method,
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100385 bool baseline,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000386 bool osr,
Nicolas Geoffraya48c3df2019-06-27 13:11:12 +0000387 bool is_shared_jit_code,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000388 VariableSizedHandleScope* handles) const;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000389
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000390 CodeGenerator* TryCompileIntrinsic(ArenaAllocator* allocator,
391 ArenaStack* arena_stack,
392 CodeVectorAllocator* code_allocator,
393 const DexCompilationUnit& dex_compilation_unit,
394 ArtMethod* method,
395 VariableSizedHandleScope* handles) const;
396
Aart Bik24773202018-04-26 10:28:51 -0700397 bool RunArchOptimizations(HGraph* graph,
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700398 CodeGenerator* codegen,
Aart Bik2ca10eb2017-11-15 15:17:53 -0800399 const DexCompilationUnit& dex_compilation_unit,
400 PassObserver* pass_observer,
401 VariableSizedHandleScope* handles) const;
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700402
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100403 bool RunBaselineOptimizations(HGraph* graph,
404 CodeGenerator* codegen,
405 const DexCompilationUnit& dex_compilation_unit,
406 PassObserver* pass_observer,
407 VariableSizedHandleScope* handles) const;
408
David Srbecky444e9982019-10-02 17:59:23 +0100409 void GenerateJitDebugInfo(const debug::MethodDebugInfo& method_debug_info);
David Srbeckyc684f332018-01-19 17:38:06 +0000410
Calin Juravle2be39e02015-04-21 13:56:34 +0100411 std::unique_ptr<OptimizingCompilerStats> compilation_stats_;
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100412
Andreas Gampe53c913b2014-08-12 23:19:23 -0700413 std::unique_ptr<std::ostream> visualizer_output_;
414
Andreas Gampea0d81af2016-10-27 12:04:57 -0700415 mutable Mutex dump_mutex_; // To synchronize visualizer writing.
416
Andreas Gampe53c913b2014-08-12 23:19:23 -0700417 DISALLOW_COPY_AND_ASSIGN(OptimizingCompiler);
418};
419
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100420static const int kMaximumCompilationTimeBeforeWarning = 100; /* ms */
421
Vladimir Marko038924b2019-02-19 15:09:35 +0000422OptimizingCompiler::OptimizingCompiler(const CompilerOptions& compiler_options,
423 CompiledMethodStorage* storage)
424 : Compiler(compiler_options, storage, kMaximumCompilationTimeBeforeWarning),
425 dump_mutex_("Visualizer dump lock") {
426 // Enable C1visualizer output.
427 const std::string& cfg_file_name = compiler_options.GetDumpCfgFileName();
David Brazdil866c0312015-01-13 21:21:31 +0000428 if (!cfg_file_name.empty()) {
Calin Juravle87000a92015-08-24 15:34:44 +0100429 std::ios_base::openmode cfg_file_mode =
Vladimir Marko038924b2019-02-19 15:09:35 +0000430 compiler_options.GetDumpCfgAppend() ? std::ofstream::app : std::ofstream::out;
Calin Juravle87000a92015-08-24 15:34:44 +0100431 visualizer_output_.reset(new std::ofstream(cfg_file_name, cfg_file_mode));
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100432 }
Vladimir Marko038924b2019-02-19 15:09:35 +0000433 if (compiler_options.GetDumpStats()) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100434 compilation_stats_.reset(new OptimizingCompilerStats());
435 }
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100436}
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000437
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100438OptimizingCompiler::~OptimizingCompiler() {
Calin Juravle2be39e02015-04-21 13:56:34 +0100439 if (compilation_stats_.get() != nullptr) {
440 compilation_stats_->Log();
441 }
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100442}
443
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +0000444bool OptimizingCompiler::CanCompileMethod(uint32_t method_idx ATTRIBUTE_UNUSED,
Vladimir Markodf739842016-03-23 16:59:07 +0000445 const DexFile& dex_file ATTRIBUTE_UNUSED) const {
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +0000446 return true;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700447}
448
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000449static bool IsInstructionSetSupported(InstructionSet instruction_set) {
Vladimir Marko33bff252017-11-01 14:35:42 +0000450 return instruction_set == InstructionSet::kArm
451 || instruction_set == InstructionSet::kArm64
452 || instruction_set == InstructionSet::kThumb2
453 || instruction_set == InstructionSet::kMips
454 || instruction_set == InstructionSet::kMips64
455 || instruction_set == InstructionSet::kX86
456 || instruction_set == InstructionSet::kX86_64;
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000457}
458
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100459bool OptimizingCompiler::RunBaselineOptimizations(HGraph* graph,
460 CodeGenerator* codegen,
461 const DexCompilationUnit& dex_compilation_unit,
462 PassObserver* pass_observer,
463 VariableSizedHandleScope* handles) const {
464 switch (codegen->GetCompilerOptions().GetInstructionSet()) {
465#ifdef ART_ENABLE_CODEGEN_mips
466 case InstructionSet::kMips: {
467 OptimizationDef mips_optimizations[] = {
468 OptDef(OptimizationPass::kPcRelativeFixupsMips)
469 };
470 return RunOptimizations(graph,
471 codegen,
472 dex_compilation_unit,
473 pass_observer,
474 handles,
475 mips_optimizations);
476 }
477#endif
478#ifdef ART_ENABLE_CODEGEN_x86
479 case InstructionSet::kX86: {
480 OptimizationDef x86_optimizations[] = {
481 OptDef(OptimizationPass::kPcRelativeFixupsX86),
482 };
483 return RunOptimizations(graph,
484 codegen,
485 dex_compilation_unit,
486 pass_observer,
487 handles,
488 x86_optimizations);
489 }
490#endif
491 default:
492 UNUSED(graph);
493 UNUSED(codegen);
494 UNUSED(dex_compilation_unit);
495 UNUSED(pass_observer);
496 UNUSED(handles);
497 return false;
498 }
499}
500
Aart Bik24773202018-04-26 10:28:51 -0700501bool OptimizingCompiler::RunArchOptimizations(HGraph* graph,
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700502 CodeGenerator* codegen,
Aart Bik2ca10eb2017-11-15 15:17:53 -0800503 const DexCompilationUnit& dex_compilation_unit,
504 PassObserver* pass_observer,
505 VariableSizedHandleScope* handles) const {
Vladimir Markoa0431112018-06-25 09:32:54 +0100506 switch (codegen->GetCompilerOptions().GetInstructionSet()) {
Artem Serov2bbc9532016-10-21 11:51:50 +0100507#if defined(ART_ENABLE_CODEGEN_arm)
Vladimir Marko33bff252017-11-01 14:35:42 +0000508 case InstructionSet::kThumb2:
509 case InstructionSet::kArm: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800510 OptimizationDef arm_optimizations[] = {
511 OptDef(OptimizationPass::kInstructionSimplifierArm),
512 OptDef(OptimizationPass::kSideEffectsAnalysis),
513 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
514 OptDef(OptimizationPass::kScheduling)
Vladimir Markob4536b72015-11-24 13:45:23 +0000515 };
Aart Bik24773202018-04-26 10:28:51 -0700516 return RunOptimizations(graph,
517 codegen,
518 dex_compilation_unit,
519 pass_observer,
520 handles,
521 arm_optimizations);
Vladimir Markob4536b72015-11-24 13:45:23 +0000522 }
523#endif
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100524#ifdef ART_ENABLE_CODEGEN_arm64
Vladimir Marko33bff252017-11-01 14:35:42 +0000525 case InstructionSet::kArm64: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800526 OptimizationDef arm64_optimizations[] = {
527 OptDef(OptimizationPass::kInstructionSimplifierArm64),
528 OptDef(OptimizationPass::kSideEffectsAnalysis),
529 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
530 OptDef(OptimizationPass::kScheduling)
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100531 };
Aart Bik24773202018-04-26 10:28:51 -0700532 return RunOptimizations(graph,
533 codegen,
534 dex_compilation_unit,
535 pass_observer,
536 handles,
537 arm64_optimizations);
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100538 }
539#endif
Alexey Frunzee3fb2452016-05-10 16:08:05 -0700540#ifdef ART_ENABLE_CODEGEN_mips
Vladimir Marko33bff252017-11-01 14:35:42 +0000541 case InstructionSet::kMips: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800542 OptimizationDef mips_optimizations[] = {
543 OptDef(OptimizationPass::kInstructionSimplifierMips),
544 OptDef(OptimizationPass::kSideEffectsAnalysis),
545 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
546 OptDef(OptimizationPass::kPcRelativeFixupsMips)
Alexey Frunzee3fb2452016-05-10 16:08:05 -0700547 };
Aart Bik24773202018-04-26 10:28:51 -0700548 return RunOptimizations(graph,
549 codegen,
550 dex_compilation_unit,
551 pass_observer,
552 handles,
553 mips_optimizations);
Alexey Frunzee3fb2452016-05-10 16:08:05 -0700554 }
555#endif
Lena Djokicb8e9c352017-09-20 15:11:13 +0200556#ifdef ART_ENABLE_CODEGEN_mips64
Vladimir Marko33bff252017-11-01 14:35:42 +0000557 case InstructionSet::kMips64: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800558 OptimizationDef mips64_optimizations[] = {
559 OptDef(OptimizationPass::kSideEffectsAnalysis),
560 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch")
Lena Djokicb8e9c352017-09-20 15:11:13 +0200561 };
Aart Bik24773202018-04-26 10:28:51 -0700562 return RunOptimizations(graph,
563 codegen,
564 dex_compilation_unit,
565 pass_observer,
566 handles,
567 mips64_optimizations);
Lena Djokicb8e9c352017-09-20 15:11:13 +0200568 }
569#endif
Mark Mendell0616ae02015-04-17 12:49:27 -0400570#ifdef ART_ENABLE_CODEGEN_x86
Vladimir Marko33bff252017-11-01 14:35:42 +0000571 case InstructionSet::kX86: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800572 OptimizationDef x86_optimizations[] = {
Shalini Salomi Bodapatidd121f62018-10-26 15:03:53 +0530573 OptDef(OptimizationPass::kInstructionSimplifierX86),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800574 OptDef(OptimizationPass::kSideEffectsAnalysis),
575 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
576 OptDef(OptimizationPass::kPcRelativeFixupsX86),
Hans Boehmf5f56c72018-07-13 00:05:27 +0000577 OptDef(OptimizationPass::kX86MemoryOperandGeneration)
Mark Mendell0616ae02015-04-17 12:49:27 -0400578 };
Aart Bik24773202018-04-26 10:28:51 -0700579 return RunOptimizations(graph,
580 codegen,
581 dex_compilation_unit,
582 pass_observer,
583 handles,
584 x86_optimizations);
Mark Mendell0616ae02015-04-17 12:49:27 -0400585 }
586#endif
Mark Mendellee8d9712016-07-12 11:13:15 -0400587#ifdef ART_ENABLE_CODEGEN_x86_64
Vladimir Marko33bff252017-11-01 14:35:42 +0000588 case InstructionSet::kX86_64: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800589 OptimizationDef x86_64_optimizations[] = {
Shalini Salomi Bodapatidd121f62018-10-26 15:03:53 +0530590 OptDef(OptimizationPass::kInstructionSimplifierX86_64),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800591 OptDef(OptimizationPass::kSideEffectsAnalysis),
592 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
Hans Boehmf5f56c72018-07-13 00:05:27 +0000593 OptDef(OptimizationPass::kX86MemoryOperandGeneration)
Mark Mendellee8d9712016-07-12 11:13:15 -0400594 };
Aart Bik24773202018-04-26 10:28:51 -0700595 return RunOptimizations(graph,
596 codegen,
597 dex_compilation_unit,
598 pass_observer,
599 handles,
600 x86_64_optimizations);
Mark Mendellee8d9712016-07-12 11:13:15 -0400601 }
602#endif
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100603 default:
Aart Bik24773202018-04-26 10:28:51 -0700604 return false;
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100605 }
606}
607
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000608NO_INLINE // Avoid increasing caller's frame size by large stack-allocated objects.
609static void AllocateRegisters(HGraph* graph,
610 CodeGenerator* codegen,
Matthew Gharrity2cd05b72016-08-03 16:57:37 -0700611 PassObserver* pass_observer,
Igor Murashkin6ef45672017-08-08 13:59:55 -0700612 RegisterAllocator::Strategy strategy,
613 OptimizingCompilerStats* stats) {
Mingyao Yang700347e2016-03-02 14:59:32 -0800614 {
615 PassScope scope(PrepareForRegisterAllocation::kPrepareForRegisterAllocationPassName,
616 pass_observer);
Nicolas Geoffray61ba8d22018-08-07 09:55:57 +0100617 PrepareForRegisterAllocation(graph, codegen->GetCompilerOptions(), stats).Run();
Mingyao Yang700347e2016-03-02 14:59:32 -0800618 }
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100619 // Use local allocator shared by SSA liveness analysis and register allocator.
620 // (Register allocator creates new objects in the liveness data.)
621 ScopedArenaAllocator local_allocator(graph->GetArenaStack());
622 SsaLivenessAnalysis liveness(graph, codegen, &local_allocator);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000623 {
624 PassScope scope(SsaLivenessAnalysis::kLivenessPassName, pass_observer);
625 liveness.Analyze();
626 }
627 {
628 PassScope scope(RegisterAllocator::kRegisterAllocatorPassName, pass_observer);
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100629 std::unique_ptr<RegisterAllocator> register_allocator =
630 RegisterAllocator::Create(&local_allocator, codegen, liveness, strategy);
Vladimir Markoca6fff82017-10-03 14:49:14 +0100631 register_allocator->AllocateRegisters();
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000632 }
633}
634
Aart Bik2ca10eb2017-11-15 15:17:53 -0800635// Strip pass name suffix to get optimization name.
636static std::string ConvertPassNameToOptimizationName(const std::string& pass_name) {
637 size_t pos = pass_name.find(kPassNameSeparator);
638 return pos == std::string::npos ? pass_name : pass_name.substr(0, pos);
639}
640
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700641void OptimizingCompiler::RunOptimizations(HGraph* graph,
642 CodeGenerator* codegen,
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700643 const DexCompilationUnit& dex_compilation_unit,
644 PassObserver* pass_observer,
Mathieu Chartiere8a3c572016-10-11 16:52:17 -0700645 VariableSizedHandleScope* handles) const {
Vladimir Marko038924b2019-02-19 15:09:35 +0000646 const std::vector<std::string>* pass_names = GetCompilerOptions().GetPassesToRun();
Aart Bik2ca10eb2017-11-15 15:17:53 -0800647 if (pass_names != nullptr) {
648 // If passes were defined on command-line, build the optimization
649 // passes and run these instead of the built-in optimizations.
Aart Bik2e148682018-04-18 16:11:12 -0700650 // TODO: a way to define depends_on via command-line?
Aart Bik2ca10eb2017-11-15 15:17:53 -0800651 const size_t length = pass_names->size();
652 std::vector<OptimizationDef> optimizations;
653 for (const std::string& pass_name : *pass_names) {
654 std::string opt_name = ConvertPassNameToOptimizationName(pass_name);
Greg Kaisere7e195d2019-03-26 08:13:00 -0700655 optimizations.push_back(OptDef(OptimizationPassByName(opt_name), pass_name.c_str()));
Aart Bik2ca10eb2017-11-15 15:17:53 -0800656 }
657 RunOptimizations(graph,
658 codegen,
659 dex_compilation_unit,
660 pass_observer,
661 handles,
662 optimizations.data(),
663 length);
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -0700664 return;
665 }
666
Aart Bik24773202018-04-26 10:28:51 -0700667 OptimizationDef optimizations[] = {
Aart Bik2e148682018-04-18 16:11:12 -0700668 // Initial optimizations.
Aart Bik2ca10eb2017-11-15 15:17:53 -0800669 OptDef(OptimizationPass::kConstantFolding),
670 OptDef(OptimizationPass::kInstructionSimplifier),
Aart Bik2e148682018-04-18 16:11:12 -0700671 OptDef(OptimizationPass::kDeadCodeElimination,
672 "dead_code_elimination$initial"),
673 // Inlining.
Aart Bik24773202018-04-26 10:28:51 -0700674 OptDef(OptimizationPass::kInliner),
Aart Bik2e148682018-04-18 16:11:12 -0700675 // Simplification (only if inlining occurred).
676 OptDef(OptimizationPass::kConstantFolding,
677 "constant_folding$after_inlining",
678 OptimizationPass::kInliner),
679 OptDef(OptimizationPass::kInstructionSimplifier,
680 "instruction_simplifier$after_inlining",
681 OptimizationPass::kInliner),
682 OptDef(OptimizationPass::kDeadCodeElimination,
683 "dead_code_elimination$after_inlining",
684 OptimizationPass::kInliner),
685 // GVN.
686 OptDef(OptimizationPass::kSideEffectsAnalysis,
687 "side_effects$before_gvn"),
Aart Bik6d057002018-04-09 15:39:58 -0700688 OptDef(OptimizationPass::kGlobalValueNumbering),
Aart Bik2e148682018-04-18 16:11:12 -0700689 // Simplification (TODO: only if GVN occurred).
Aart Bik2ca10eb2017-11-15 15:17:53 -0800690 OptDef(OptimizationPass::kSelectGenerator),
Aart Bik2e148682018-04-18 16:11:12 -0700691 OptDef(OptimizationPass::kConstantFolding,
692 "constant_folding$after_gvn"),
693 OptDef(OptimizationPass::kInstructionSimplifier,
694 "instruction_simplifier$after_gvn"),
695 OptDef(OptimizationPass::kDeadCodeElimination,
696 "dead_code_elimination$after_gvn"),
697 // High-level optimizations.
698 OptDef(OptimizationPass::kSideEffectsAnalysis,
699 "side_effects$before_licm"),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800700 OptDef(OptimizationPass::kInvariantCodeMotion),
701 OptDef(OptimizationPass::kInductionVarAnalysis),
702 OptDef(OptimizationPass::kBoundsCheckElimination),
703 OptDef(OptimizationPass::kLoopOptimization),
Aart Bik2e148682018-04-18 16:11:12 -0700704 // Simplification.
705 OptDef(OptimizationPass::kConstantFolding,
706 "constant_folding$after_bce"),
707 OptDef(OptimizationPass::kInstructionSimplifier,
708 "instruction_simplifier$after_bce"),
709 // Other high-level optimizations.
710 OptDef(OptimizationPass::kSideEffectsAnalysis,
711 "side_effects$before_lse"),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800712 OptDef(OptimizationPass::kLoadStoreAnalysis),
713 OptDef(OptimizationPass::kLoadStoreElimination),
714 OptDef(OptimizationPass::kCHAGuardOptimization),
Aart Bik2e148682018-04-18 16:11:12 -0700715 OptDef(OptimizationPass::kDeadCodeElimination,
716 "dead_code_elimination$final"),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800717 OptDef(OptimizationPass::kCodeSinking),
David Brazdil8993caf2015-12-07 10:04:40 +0000718 // The codegen has a few assumptions that only the instruction simplifier
719 // can satisfy. For example, the code generator does not expect to see a
720 // HTypeConversion from a type to the same type.
Aart Bik2e148682018-04-18 16:11:12 -0700721 OptDef(OptimizationPass::kInstructionSimplifier,
722 "instruction_simplifier$before_codegen"),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800723 // Eliminate constructor fences after code sinking to avoid
724 // complicated sinking logic to split a fence with many inputs.
725 OptDef(OptimizationPass::kConstructorFenceRedundancyElimination)
David Brazdil8993caf2015-12-07 10:04:40 +0000726 };
Aart Bik2ca10eb2017-11-15 15:17:53 -0800727 RunOptimizations(graph,
728 codegen,
729 dex_compilation_unit,
730 pass_observer,
731 handles,
Aart Bik24773202018-04-26 10:28:51 -0700732 optimizations);
David Brazdilbbd733e2015-08-18 17:48:17 +0100733
Aart Bik2ca10eb2017-11-15 15:17:53 -0800734 RunArchOptimizations(graph, codegen, dex_compilation_unit, pass_observer, handles);
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000735}
736
Vladimir Markod8dbc8d2017-09-20 13:37:47 +0100737static ArenaVector<linker::LinkerPatch> EmitAndSortLinkerPatches(CodeGenerator* codegen) {
Vladimir Markoca6fff82017-10-03 14:49:14 +0100738 ArenaVector<linker::LinkerPatch> linker_patches(codegen->GetGraph()->GetAllocator()->Adapter());
Vladimir Marko58155012015-08-19 12:49:41 +0000739 codegen->EmitLinkerPatches(&linker_patches);
740
741 // Sort patches by literal offset. Required for .oat_patches encoding.
742 std::sort(linker_patches.begin(), linker_patches.end(),
Vladimir Markod8dbc8d2017-09-20 13:37:47 +0100743 [](const linker::LinkerPatch& lhs, const linker::LinkerPatch& rhs) {
Vladimir Marko58155012015-08-19 12:49:41 +0000744 return lhs.LiteralOffset() < rhs.LiteralOffset();
745 });
746
747 return linker_patches;
748}
749
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100750CompiledMethod* OptimizingCompiler::Emit(ArenaAllocator* allocator,
David Brazdil58282f42016-01-14 12:45:10 +0000751 CodeVectorAllocator* code_allocator,
752 CodeGenerator* codegen,
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800753 const dex::CodeItem* code_item_for_osr_check) const {
Vladimir Markod8dbc8d2017-09-20 13:37:47 +0100754 ArenaVector<linker::LinkerPatch> linker_patches = EmitAndSortLinkerPatches(codegen);
David Srbeckye7a91942018-08-01 17:23:53 +0100755 ScopedArenaVector<uint8_t> stack_map = codegen->BuildStackMaps(code_item_for_osr_check);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000756
Vladimir Marko038924b2019-02-19 15:09:35 +0000757 CompiledMethodStorage* storage = GetCompiledMethodStorage();
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100758 CompiledMethod* compiled_method = CompiledMethod::SwapAllocCompiledMethod(
Vladimir Marko038924b2019-02-19 15:09:35 +0000759 storage,
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000760 codegen->GetInstructionSet(),
Vladimir Markoca1e0382018-04-11 09:58:41 +0000761 code_allocator->GetMemory(),
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100762 ArrayRef<const uint8_t>(stack_map),
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100763 ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data()),
Vladimir Markod8dbc8d2017-09-20 13:37:47 +0100764 ArrayRef<const linker::LinkerPatch>(linker_patches));
Mathieu Chartiered150002015-08-28 11:16:54 -0700765
Vladimir Markoca1e0382018-04-11 09:58:41 +0000766 for (const linker::LinkerPatch& patch : linker_patches) {
767 if (codegen->NeedsThunkCode(patch) && storage->GetThunkCode(patch).empty()) {
768 ArenaVector<uint8_t> code(allocator->Adapter());
769 std::string debug_name;
770 codegen->EmitThunkCode(patch, &code, &debug_name);
771 storage->SetThunkCode(patch, ArrayRef<const uint8_t>(code), debug_name);
772 }
773 }
774
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100775 return compiled_method;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000776}
777
Vladimir Markoca6fff82017-10-03 14:49:14 +0100778CodeGenerator* OptimizingCompiler::TryCompile(ArenaAllocator* allocator,
779 ArenaStack* arena_stack,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000780 CodeVectorAllocator* code_allocator,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000781 const DexCompilationUnit& dex_compilation_unit,
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000782 ArtMethod* method,
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100783 bool baseline,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000784 bool osr,
Nicolas Geoffraya48c3df2019-06-27 13:11:12 +0000785 bool is_shared_jit_code,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000786 VariableSizedHandleScope* handles) const {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000787 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kAttemptBytecodeCompilation);
Vladimir Marko038924b2019-02-19 15:09:35 +0000788 const CompilerOptions& compiler_options = GetCompilerOptions();
Vladimir Markoa0431112018-06-25 09:32:54 +0100789 InstructionSet instruction_set = compiler_options.GetInstructionSet();
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000790 const DexFile& dex_file = *dex_compilation_unit.GetDexFile();
791 uint32_t method_idx = dex_compilation_unit.GetDexMethodIndex();
Andreas Gampe3f1dcd32018-12-28 09:39:56 -0800792 const dex::CodeItem* code_item = dex_compilation_unit.GetCodeItem();
Calin Juravlecff8cc72015-10-09 12:03:24 +0100793
Roland Levillain3b359c72015-11-17 19:35:12 +0000794 // Always use the Thumb-2 assembler: some runtime functionality
795 // (like implicit stack overflow checks) assume Thumb-2.
Vladimir Marko33bff252017-11-01 14:35:42 +0000796 DCHECK_NE(instruction_set, InstructionSet::kArm);
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100797
798 // Do not attempt to compile on architectures we do not support.
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000799 if (!IsInstructionSetSupported(instruction_set)) {
Igor Murashkin1e065a52017-08-09 13:20:34 -0700800 MaybeRecordStat(compilation_stats_.get(),
801 MethodCompilationStat::kNotCompiledUnsupportedIsa);
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100802 return nullptr;
803 }
804
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000805 if (Compiler::IsPathologicalCase(*code_item, method_idx, dex_file)) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000806 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kNotCompiledPathological);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000807 return nullptr;
808 }
809
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000810 // Implementation of the space filter: do not compile a code item whose size in
Nicolas Geoffray432bf3d2015-07-17 11:11:09 +0100811 // code units is bigger than 128.
812 static constexpr size_t kSpaceFilterOptimizingThreshold = 128;
Andreas Gampe29d38e72016-03-23 15:31:51 +0000813 if ((compiler_options.GetCompilerFilter() == CompilerFilter::kSpace)
Mathieu Chartier698ebbc2018-01-05 11:00:42 -0800814 && (CodeItemInstructionAccessor(dex_file, code_item).InsnsSizeInCodeUnits() >
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800815 kSpaceFilterOptimizingThreshold)) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000816 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kNotCompiledSpaceFilter);
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000817 return nullptr;
818 }
819
Mathieu Chartier8892c6b2018-01-09 15:10:17 -0800820 CodeItemDebugInfoAccessor code_item_accessor(dex_file, code_item, method_idx);
Hans Boehm206348c2018-12-05 11:11:33 -0800821
822 bool dead_reference_safe;
823 ArrayRef<const uint8_t> interpreter_metadata;
824 // For AOT compilation, we may not get a method, for example if its class is erroneous,
825 // possibly due to an unavailable superclass. JIT should always have a method.
826 DCHECK(Runtime::Current()->IsAotCompiler() || method != nullptr);
827 if (method != nullptr) {
828 const dex::ClassDef* containing_class;
829 {
830 ScopedObjectAccess soa(Thread::Current());
831 containing_class = &method->GetClassDef();
832 interpreter_metadata = method->GetQuickenedInfo();
833 }
834 // MethodContainsRSensitiveAccess is currently slow, but HasDeadReferenceSafeAnnotation()
835 // is currently rarely true.
836 dead_reference_safe =
837 annotations::HasDeadReferenceSafeAnnotation(dex_file, *containing_class)
838 && !annotations::MethodContainsRSensitiveAccess(dex_file, *containing_class, method_idx);
839 } else {
840 // If we could not resolve the class, conservatively assume it's dead-reference unsafe.
841 dead_reference_safe = false;
842 }
843
Vladimir Markoca6fff82017-10-03 14:49:14 +0100844 HGraph* graph = new (allocator) HGraph(
845 allocator,
846 arena_stack,
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000847 dex_file,
848 method_idx,
Vladimir Markoa0431112018-06-25 09:32:54 +0100849 compiler_options.GetInstructionSet(),
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000850 kInvalidInvokeType,
Hans Boehm206348c2018-12-05 11:11:33 -0800851 dead_reference_safe,
Vladimir Marko038924b2019-02-19 15:09:35 +0000852 compiler_options.GetDebuggable(),
Nicolas Geoffraya48c3df2019-06-27 13:11:12 +0000853 /* osr= */ osr,
Nicolas Geoffraya59af8a2019-11-27 17:42:32 +0000854 /* is_shared_jit_code= */ is_shared_jit_code,
855 /* baseline= */ baseline);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000856
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000857 if (method != nullptr) {
858 graph->SetArtMethod(method);
David Brazdilbadd8262016-02-02 16:28:56 +0000859 }
860
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000861 std::unique_ptr<CodeGenerator> codegen(
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000862 CodeGenerator::Create(graph,
Vladimir Markoa0431112018-06-25 09:32:54 +0100863 compiler_options,
Calin Juravle2ae48182016-03-16 14:05:09 +0000864 compilation_stats_.get()));
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000865 if (codegen.get() == nullptr) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000866 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kNotCompiledNoCodegen);
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000867 return nullptr;
868 }
Vladimir Marko038924b2019-02-19 15:09:35 +0000869 codegen->GetAssembler()->cfi().SetEnabled(compiler_options.GenerateAnyDebugInfo());
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000870
David Brazdil69ba7b72015-06-23 18:27:30 +0100871 PassObserver pass_observer(graph,
David Brazdil69ba7b72015-06-23 18:27:30 +0100872 codegen.get(),
873 visualizer_output_.get(),
Vladimir Marko038924b2019-02-19 15:09:35 +0000874 compiler_options,
Andreas Gampea0d81af2016-10-27 12:04:57 -0700875 dump_mutex_);
David Brazdil5e8b1372015-01-23 14:39:08 +0000876
David Brazdil809658e2015-02-05 11:34:02 +0000877 {
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000878 VLOG(compiler) << "Building " << pass_observer.GetMethodName();
879 PassScope scope(HGraphBuilder::kBuilderPassName, &pass_observer);
880 HGraphBuilder builder(graph,
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800881 code_item_accessor,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000882 &dex_compilation_unit,
883 &dex_compilation_unit,
Nicolas Geoffray83c8e272017-01-31 14:36:37 +0000884 codegen.get(),
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000885 compilation_stats_.get(),
886 interpreter_metadata,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000887 handles);
888 GraphAnalysisResult result = builder.BuildGraph();
889 if (result != kAnalysisSuccess) {
890 switch (result) {
Igor Murashkin1e065a52017-08-09 13:20:34 -0700891 case kAnalysisSkipped: {
892 MaybeRecordStat(compilation_stats_.get(),
893 MethodCompilationStat::kNotCompiledSkipped);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000894 break;
Nicolas Geoffray8a62a4c2018-07-03 09:39:07 +0100895 }
Igor Murashkin1e065a52017-08-09 13:20:34 -0700896 case kAnalysisInvalidBytecode: {
897 MaybeRecordStat(compilation_stats_.get(),
898 MethodCompilationStat::kNotCompiledInvalidBytecode);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000899 break;
Nicolas Geoffray8a62a4c2018-07-03 09:39:07 +0100900 }
Igor Murashkin1e065a52017-08-09 13:20:34 -0700901 case kAnalysisFailThrowCatchLoop: {
902 MaybeRecordStat(compilation_stats_.get(),
903 MethodCompilationStat::kNotCompiledThrowCatchLoop);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000904 break;
Nicolas Geoffray8a62a4c2018-07-03 09:39:07 +0100905 }
Igor Murashkin1e065a52017-08-09 13:20:34 -0700906 case kAnalysisFailAmbiguousArrayOp: {
907 MaybeRecordStat(compilation_stats_.get(),
908 MethodCompilationStat::kNotCompiledAmbiguousArrayOp);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000909 break;
Nicolas Geoffray8a62a4c2018-07-03 09:39:07 +0100910 }
Nicolas Geoffray0846a8f2018-09-12 15:21:07 +0100911 case kAnalysisFailIrreducibleLoopAndStringInit: {
912 MaybeRecordStat(compilation_stats_.get(),
913 MethodCompilationStat::kNotCompiledIrreducibleLoopAndStringInit);
914 break;
915 }
Nicolas Geoffray7cfc8f52019-08-07 10:41:09 +0100916 case kAnalysisFailPhiEquivalentInOsr: {
917 MaybeRecordStat(compilation_stats_.get(),
918 MethodCompilationStat::kNotCompiledPhiEquivalentInOsr);
919 break;
920 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000921 case kAnalysisSuccess:
922 UNREACHABLE();
David Brazdil809658e2015-02-05 11:34:02 +0000923 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000924 pass_observer.SetGraphInBadState();
925 return nullptr;
Nicolas Geoffrayf5370122014-12-02 11:51:19 +0000926 }
David Brazdilbadd8262016-02-02 16:28:56 +0000927 }
Vladimir Markof9f64412015-09-02 14:05:49 +0100928
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100929 if (baseline) {
930 RunBaselineOptimizations(graph, codegen.get(), dex_compilation_unit, &pass_observer, handles);
931 } else {
932 RunOptimizations(graph, codegen.get(), dex_compilation_unit, &pass_observer, handles);
933 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000934
935 RegisterAllocator::Strategy regalloc_strategy =
936 compiler_options.GetRegisterAllocationStrategy();
Igor Murashkin1e065a52017-08-09 13:20:34 -0700937 AllocateRegisters(graph,
938 codegen.get(),
939 &pass_observer,
Igor Murashkin6ef45672017-08-08 13:59:55 -0700940 regalloc_strategy,
941 compilation_stats_.get());
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000942
943 codegen->Compile(code_allocator);
944 pass_observer.DumpDisassembly();
945
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000946 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kCompiledBytecode);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000947 return codegen.release();
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000948}
949
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000950CodeGenerator* OptimizingCompiler::TryCompileIntrinsic(
951 ArenaAllocator* allocator,
952 ArenaStack* arena_stack,
953 CodeVectorAllocator* code_allocator,
954 const DexCompilationUnit& dex_compilation_unit,
955 ArtMethod* method,
956 VariableSizedHandleScope* handles) const {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000957 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kAttemptIntrinsicCompilation);
Vladimir Marko038924b2019-02-19 15:09:35 +0000958 const CompilerOptions& compiler_options = GetCompilerOptions();
Vladimir Markoa0431112018-06-25 09:32:54 +0100959 InstructionSet instruction_set = compiler_options.GetInstructionSet();
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000960 const DexFile& dex_file = *dex_compilation_unit.GetDexFile();
961 uint32_t method_idx = dex_compilation_unit.GetDexMethodIndex();
962
963 // Always use the Thumb-2 assembler: some runtime functionality
964 // (like implicit stack overflow checks) assume Thumb-2.
965 DCHECK_NE(instruction_set, InstructionSet::kArm);
966
967 // Do not attempt to compile on architectures we do not support.
968 if (!IsInstructionSetSupported(instruction_set)) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000969 return nullptr;
970 }
971
972 HGraph* graph = new (allocator) HGraph(
973 allocator,
974 arena_stack,
975 dex_file,
976 method_idx,
Vladimir Marko2afaff72018-11-30 17:01:50 +0000977 compiler_options.GetInstructionSet(),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000978 kInvalidInvokeType,
Hans Boehm206348c2018-12-05 11:11:33 -0800979 /* dead_reference_safe= */ true, // Intrinsics don't affect dead reference safety.
Vladimir Marko2afaff72018-11-30 17:01:50 +0000980 compiler_options.GetDebuggable(),
Andreas Gampe3db70682018-12-26 15:12:03 -0800981 /* osr= */ false);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000982
983 DCHECK(Runtime::Current()->IsAotCompiler());
984 DCHECK(method != nullptr);
985 graph->SetArtMethod(method);
986
987 std::unique_ptr<CodeGenerator> codegen(
988 CodeGenerator::Create(graph,
Vladimir Markoa0431112018-06-25 09:32:54 +0100989 compiler_options,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000990 compilation_stats_.get()));
991 if (codegen.get() == nullptr) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000992 return nullptr;
993 }
Vladimir Markoa0431112018-06-25 09:32:54 +0100994 codegen->GetAssembler()->cfi().SetEnabled(compiler_options.GenerateAnyDebugInfo());
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000995
996 PassObserver pass_observer(graph,
997 codegen.get(),
998 visualizer_output_.get(),
Vladimir Marko038924b2019-02-19 15:09:35 +0000999 compiler_options,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001000 dump_mutex_);
1001
1002 {
1003 VLOG(compiler) << "Building intrinsic graph " << pass_observer.GetMethodName();
1004 PassScope scope(HGraphBuilder::kBuilderPassName, &pass_observer);
1005 HGraphBuilder builder(graph,
Mathieu Chartier808c7a52017-12-15 11:19:33 -08001006 CodeItemDebugInfoAccessor(), // Null code item.
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001007 &dex_compilation_unit,
1008 &dex_compilation_unit,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001009 codegen.get(),
1010 compilation_stats_.get(),
Andreas Gampe3db70682018-12-26 15:12:03 -08001011 /* interpreter_metadata= */ ArrayRef<const uint8_t>(),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001012 handles);
1013 builder.BuildIntrinsicGraph(method);
1014 }
1015
Aart Bik2ca10eb2017-11-15 15:17:53 -08001016 OptimizationDef optimizations[] = {
Nicolas Geoffray76d4bb0f32018-09-21 12:58:45 +01001017 // The codegen has a few assumptions that only the instruction simplifier
1018 // can satisfy.
Aart Bik2ca10eb2017-11-15 15:17:53 -08001019 OptDef(OptimizationPass::kInstructionSimplifier),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001020 };
Aart Bik2ca10eb2017-11-15 15:17:53 -08001021 RunOptimizations(graph,
1022 codegen.get(),
1023 dex_compilation_unit,
1024 &pass_observer,
1025 handles,
1026 optimizations);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001027
Aart Bik2ca10eb2017-11-15 15:17:53 -08001028 RunArchOptimizations(graph, codegen.get(), dex_compilation_unit, &pass_observer, handles);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001029
1030 AllocateRegisters(graph,
1031 codegen.get(),
1032 &pass_observer,
Vladimir Marko038924b2019-02-19 15:09:35 +00001033 compiler_options.GetRegisterAllocationStrategy(),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001034 compilation_stats_.get());
1035 if (!codegen->IsLeafMethod()) {
1036 VLOG(compiler) << "Intrinsic method is not leaf: " << method->GetIntrinsic()
1037 << " " << graph->PrettyMethod();
1038 return nullptr;
1039 }
1040
1041 codegen->Compile(code_allocator);
1042 pass_observer.DumpDisassembly();
1043
1044 VLOG(compiler) << "Compiled intrinsic: " << method->GetIntrinsic()
1045 << " " << graph->PrettyMethod();
Vladimir Markocd09e1f2017-11-24 15:02:40 +00001046 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kCompiledIntrinsic);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001047 return codegen.release();
1048}
1049
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08001050CompiledMethod* OptimizingCompiler::Compile(const dex::CodeItem* code_item,
Nicolas Geoffray216eaa22015-03-17 17:09:30 +00001051 uint32_t access_flags,
1052 InvokeType invoke_type,
1053 uint16_t class_def_idx,
1054 uint32_t method_idx,
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001055 Handle<mirror::ClassLoader> jclass_loader,
Mathieu Chartier736b5602015-09-02 14:54:11 -07001056 const DexFile& dex_file,
1057 Handle<mirror::DexCache> dex_cache) const {
Vladimir Marko038924b2019-02-19 15:09:35 +00001058 const CompilerOptions& compiler_options = GetCompilerOptions();
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001059 CompiledMethod* compiled_method = nullptr;
1060 Runtime* runtime = Runtime::Current();
1061 DCHECK(runtime->IsAotCompiler());
Vladimir Marko2afaff72018-11-30 17:01:50 +00001062 const VerifiedMethod* verified_method = compiler_options.GetVerifiedMethod(&dex_file, method_idx);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001063 DCHECK(!verified_method->HasRuntimeThrow());
Vladimir Marko2afaff72018-11-30 17:01:50 +00001064 if (compiler_options.IsMethodVerifiedWithoutFailures(method_idx, class_def_idx, dex_file) ||
Vladimir Markoca6fff82017-10-03 14:49:14 +01001065 verifier::CanCompilerHandleVerificationFailure(
1066 verified_method->GetEncounteredVerificationFailures())) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001067 ArenaAllocator allocator(runtime->GetArenaPool());
1068 ArenaStack arena_stack(runtime->GetArenaPool());
Vladimir Markoca6fff82017-10-03 14:49:14 +01001069 CodeVectorAllocator code_allocator(&allocator);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001070 std::unique_ptr<CodeGenerator> codegen;
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001071 bool compiled_intrinsic = false;
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001072 {
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001073 ScopedObjectAccess soa(Thread::Current());
1074 ArtMethod* method =
1075 runtime->GetClassLinker()->ResolveMethod<ClassLinker::ResolveMode::kCheckICCEAndIAE>(
1076 method_idx, dex_cache, jclass_loader, /*referrer=*/ nullptr, invoke_type);
1077 DCHECK_EQ(method == nullptr, soa.Self()->IsExceptionPending());
1078 soa.Self()->ClearException(); // Suppress exception if any.
1079 VariableSizedHandleScope handles(soa.Self());
1080 Handle<mirror::Class> compiling_class =
1081 handles.NewHandle(method != nullptr ? method->GetDeclaringClass() : nullptr);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001082 DexCompilationUnit dex_compilation_unit(
1083 jclass_loader,
1084 runtime->GetClassLinker(),
1085 dex_file,
1086 code_item,
1087 class_def_idx,
1088 method_idx,
1089 access_flags,
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001090 /*verified_method=*/ nullptr, // Not needed by the Optimizing compiler.
1091 dex_cache,
1092 compiling_class);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001093 // Go to native so that we don't block GC during compilation.
1094 ScopedThreadSuspension sts(soa.Self(), kNative);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001095 if (method != nullptr && UNLIKELY(method->IsIntrinsic())) {
Vladimir Marko2afaff72018-11-30 17:01:50 +00001096 DCHECK(compiler_options.IsBootImage());
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001097 codegen.reset(
1098 TryCompileIntrinsic(&allocator,
1099 &arena_stack,
1100 &code_allocator,
1101 dex_compilation_unit,
1102 method,
1103 &handles));
1104 if (codegen != nullptr) {
1105 compiled_intrinsic = true;
1106 }
1107 }
1108 if (codegen == nullptr) {
1109 codegen.reset(
1110 TryCompile(&allocator,
1111 &arena_stack,
1112 &code_allocator,
1113 dex_compilation_unit,
1114 method,
Vladimir Marko2afaff72018-11-30 17:01:50 +00001115 compiler_options.IsBaseline(),
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +01001116 /* osr= */ false,
Nicolas Geoffraya48c3df2019-06-27 13:11:12 +00001117 /* is_shared_jit_code= */ false,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001118 &handles));
1119 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001120 }
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001121 if (codegen.get() != nullptr) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001122 compiled_method = Emit(&allocator,
1123 &code_allocator,
1124 codegen.get(),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001125 compiled_intrinsic ? nullptr : code_item);
1126 if (compiled_intrinsic) {
1127 compiled_method->MarkAsIntrinsic();
1128 }
Vladimir Marko3a40bf22016-03-22 16:26:33 +00001129
1130 if (kArenaAllocatorCountAllocations) {
Vladimir Marko174b2e22017-10-12 13:34:49 +01001131 codegen.reset(); // Release codegen's ScopedArenaAllocator for memory accounting.
Vladimir Markoca6fff82017-10-03 14:49:14 +01001132 size_t total_allocated = allocator.BytesAllocated() + arena_stack.PeakBytesAllocated();
1133 if (total_allocated > kArenaAllocatorMemoryReportThreshold) {
1134 MemStats mem_stats(allocator.GetMemStats());
1135 MemStats peak_stats(arena_stack.GetPeakStats());
Vladimir Marko69d310e2017-10-09 14:12:23 +01001136 LOG(INFO) << "Used " << total_allocated << " bytes of arena memory for compiling "
1137 << dex_file.PrettyMethod(method_idx)
Vladimir Markoca6fff82017-10-03 14:49:14 +01001138 << "\n" << Dumpable<MemStats>(mem_stats)
1139 << "\n" << Dumpable<MemStats>(peak_stats);
Vladimir Marko3a40bf22016-03-22 16:26:33 +00001140 }
1141 }
Calin Juravlef1c6d9e2015-04-13 18:42:21 +01001142 }
Nicolas Geoffray0c3c2662015-10-15 13:53:04 +01001143 } else {
Igor Murashkin1e065a52017-08-09 13:20:34 -07001144 MethodCompilationStat method_stat;
Vladimir Marko2afaff72018-11-30 17:01:50 +00001145 if (compiler_options.VerifyAtRuntime()) {
Igor Murashkin1e065a52017-08-09 13:20:34 -07001146 method_stat = MethodCompilationStat::kNotCompiledVerifyAtRuntime;
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001147 } else {
Igor Murashkin1e065a52017-08-09 13:20:34 -07001148 method_stat = MethodCompilationStat::kNotCompiledVerificationError;
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001149 }
Igor Murashkin1e065a52017-08-09 13:20:34 -07001150 MaybeRecordStat(compilation_stats_.get(), method_stat);
Calin Juravlef1c6d9e2015-04-13 18:42:21 +01001151 }
1152
Calin Juravlecff8cc72015-10-09 12:03:24 +01001153 if (kIsDebugBuild &&
Vladimir Marko2afaff72018-11-30 17:01:50 +00001154 compiler_options.CompilingWithCoreImage() &&
1155 IsInstructionSetSupported(compiler_options.GetInstructionSet())) {
Roland Levillain0d5a2812015-11-13 10:07:31 +00001156 // For testing purposes, we put a special marker on method names
Goran Jakovljevic9c4f0d8f2017-04-05 16:27:25 +02001157 // that should be compiled with this compiler (when the
1158 // instruction set is supported). This makes sure we're not
Roland Levillain0d5a2812015-11-13 10:07:31 +00001159 // regressing.
David Sehr709b0702016-10-13 09:12:37 -07001160 std::string method_name = dex_file.PrettyMethod(method_idx);
Calin Juravle09b1d6f2015-10-07 12:08:54 +01001161 bool shouldCompile = method_name.find("$opt$") != std::string::npos;
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001162 DCHECK((compiled_method != nullptr) || !shouldCompile) << "Didn't compile " << method_name;
Calin Juravle09b1d6f2015-10-07 12:08:54 +01001163 }
1164
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001165 return compiled_method;
1166}
1167
David Srbeckye7a91942018-08-01 17:23:53 +01001168static ScopedArenaVector<uint8_t> CreateJniStackMap(ScopedArenaAllocator* allocator,
Nicolas Geoffraybf5f0f32019-03-05 15:41:50 +00001169 const JniCompiledMethod& jni_compiled_method) {
Vladimir Markoced04832018-07-26 14:42:17 +01001170 // StackMapStream is quite large, so allocate it using the ScopedArenaAllocator
1171 // to stay clear of the frame size limit.
1172 std::unique_ptr<StackMapStream> stack_map_stream(
David Srbeckye7a91942018-08-01 17:23:53 +01001173 new (allocator) StackMapStream(allocator, jni_compiled_method.GetInstructionSet()));
Vladimir Markoced04832018-07-26 14:42:17 +01001174 stack_map_stream->BeginMethod(
David Srbeckyafc97bc2018-07-05 08:14:35 +00001175 jni_compiled_method.GetFrameSize(),
1176 jni_compiled_method.GetCoreSpillMask(),
1177 jni_compiled_method.GetFpSpillMask(),
Nicolas Geoffraya59af8a2019-11-27 17:42:32 +00001178 /* num_dex_registers= */ 0,
1179 /* baseline= */ false);
Nicolas Geoffraybf5f0f32019-03-05 15:41:50 +00001180 stack_map_stream->EndMethod();
David Srbeckye7a91942018-08-01 17:23:53 +01001181 return stack_map_stream->Encode();
David Srbeckyafc97bc2018-07-05 08:14:35 +00001182}
1183
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001184CompiledMethod* OptimizingCompiler::JniCompile(uint32_t access_flags,
1185 uint32_t method_idx,
1186 const DexFile& dex_file,
1187 Handle<mirror::DexCache> dex_cache) const {
David Srbeckyafc97bc2018-07-05 08:14:35 +00001188 Runtime* runtime = Runtime::Current();
1189 ArenaAllocator allocator(runtime->GetArenaPool());
1190 ArenaStack arena_stack(runtime->GetArenaPool());
1191
Vladimir Marko038924b2019-02-19 15:09:35 +00001192 const CompilerOptions& compiler_options = GetCompilerOptions();
Vladimir Markoa0431112018-06-25 09:32:54 +01001193 if (compiler_options.IsBootImage()) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001194 ScopedObjectAccess soa(Thread::Current());
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001195 ArtMethod* method = runtime->GetClassLinker()->LookupResolvedMethod(
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001196 method_idx, dex_cache.Get(), /*class_loader=*/ nullptr);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001197 if (method != nullptr && UNLIKELY(method->IsIntrinsic())) {
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001198 VariableSizedHandleScope handles(soa.Self());
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001199 ScopedNullHandle<mirror::ClassLoader> class_loader; // null means boot class path loader.
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001200 Handle<mirror::Class> compiling_class = handles.NewHandle(method->GetDeclaringClass());
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001201 DexCompilationUnit dex_compilation_unit(
1202 class_loader,
1203 runtime->GetClassLinker(),
1204 dex_file,
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001205 /*code_item=*/ nullptr,
1206 /*class_def_idx=*/ DexFile::kDexNoIndex16,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001207 method_idx,
1208 access_flags,
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001209 /*verified_method=*/ nullptr,
1210 dex_cache,
1211 compiling_class);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001212 CodeVectorAllocator code_allocator(&allocator);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001213 // Go to native so that we don't block GC during compilation.
1214 ScopedThreadSuspension sts(soa.Self(), kNative);
1215 std::unique_ptr<CodeGenerator> codegen(
1216 TryCompileIntrinsic(&allocator,
1217 &arena_stack,
1218 &code_allocator,
1219 dex_compilation_unit,
1220 method,
1221 &handles));
1222 if (codegen != nullptr) {
1223 CompiledMethod* compiled_method = Emit(&allocator,
1224 &code_allocator,
1225 codegen.get(),
Andreas Gampe3db70682018-12-26 15:12:03 -08001226 /* item= */ nullptr);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001227 compiled_method->MarkAsIntrinsic();
1228 return compiled_method;
1229 }
1230 }
1231 }
1232
Vladimir Marko7bdc6e72017-11-28 12:37:13 +00001233 JniCompiledMethod jni_compiled_method = ArtQuickJniCompileMethod(
Vladimir Markoa0431112018-06-25 09:32:54 +01001234 compiler_options, access_flags, method_idx, dex_file);
Vladimir Markocd09e1f2017-11-24 15:02:40 +00001235 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kCompiledNativeStub);
David Srbeckyafc97bc2018-07-05 08:14:35 +00001236
David Srbeckye7a91942018-08-01 17:23:53 +01001237 ScopedArenaAllocator stack_map_allocator(&arena_stack); // Will hold the stack map.
Nicolas Geoffraybf5f0f32019-03-05 15:41:50 +00001238 ScopedArenaVector<uint8_t> stack_map = CreateJniStackMap(&stack_map_allocator,
1239 jni_compiled_method);
Vladimir Marko7bdc6e72017-11-28 12:37:13 +00001240 return CompiledMethod::SwapAllocCompiledMethod(
Vladimir Marko038924b2019-02-19 15:09:35 +00001241 GetCompiledMethodStorage(),
Vladimir Marko7bdc6e72017-11-28 12:37:13 +00001242 jni_compiled_method.GetInstructionSet(),
1243 jni_compiled_method.GetCode(),
David Srbeckyafc97bc2018-07-05 08:14:35 +00001244 ArrayRef<const uint8_t>(stack_map),
Vladimir Marko7bdc6e72017-11-28 12:37:13 +00001245 jni_compiled_method.GetCfi(),
Andreas Gampe3db70682018-12-26 15:12:03 -08001246 /* patches= */ ArrayRef<const linker::LinkerPatch>());
Nicolas Geoffray216eaa22015-03-17 17:09:30 +00001247}
1248
Vladimir Marko038924b2019-02-19 15:09:35 +00001249Compiler* CreateOptimizingCompiler(const CompilerOptions& compiler_options,
1250 CompiledMethodStorage* storage) {
1251 return new OptimizingCompiler(compiler_options, storage);
Andreas Gampe53c913b2014-08-12 23:19:23 -07001252}
1253
Nicolas Geoffrayfbdfa6d2017-02-03 10:43:13 +00001254bool EncodeArtMethodInInlineInfo(ArtMethod* method ATTRIBUTE_UNUSED) {
1255 // Note: the runtime is null only for unit testing.
1256 return Runtime::Current() == nullptr || !Runtime::Current()->IsAotCompiler();
1257}
1258
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001259bool OptimizingCompiler::JitCompile(Thread* self,
1260 jit::JitCodeCache* code_cache,
Nicolas Geoffray7f7539b2019-06-06 16:20:54 +01001261 jit::JitMemoryRegion* region,
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +00001262 ArtMethod* method,
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +01001263 bool baseline,
Nicolas Geoffray01db5f72017-07-19 15:05:49 +01001264 bool osr,
1265 jit::JitLogger* jit_logger) {
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001266 StackHandleScope<3> hs(self);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001267 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(
1268 method->GetDeclaringClass()->GetClassLoader()));
1269 Handle<mirror::DexCache> dex_cache(hs.NewHandle(method->GetDexCache()));
Nicolas Geoffray250a3782016-04-20 16:27:53 +01001270 DCHECK(method->IsCompilable());
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001271
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001272 const DexFile* dex_file = method->GetDexFile();
1273 const uint16_t class_def_idx = method->GetClassDefIndex();
Andreas Gampe3f1dcd32018-12-28 09:39:56 -08001274 const dex::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset());
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001275 const uint32_t method_idx = method->GetDexMethodIndex();
1276 const uint32_t access_flags = method->GetAccessFlags();
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001277
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001278 Runtime* runtime = Runtime::Current();
1279 ArenaAllocator allocator(runtime->GetJitArenaPool());
Vladimir Marko2196c652017-11-30 16:16:07 +00001280
1281 if (UNLIKELY(method->IsNative())) {
Vladimir Marko038924b2019-02-19 15:09:35 +00001282 const CompilerOptions& compiler_options = GetCompilerOptions();
Vladimir Marko2196c652017-11-30 16:16:07 +00001283 JniCompiledMethod jni_compiled_method = ArtQuickJniCompileMethod(
Vladimir Markoa0431112018-06-25 09:32:54 +01001284 compiler_options, access_flags, method_idx, *dex_file);
Vladimir Markoac3ac682018-09-20 11:01:43 +01001285 std::vector<Handle<mirror::Object>> roots;
Vladimir Marko2196c652017-11-30 16:16:07 +00001286 ArenaSet<ArtMethod*, std::less<ArtMethod*>> cha_single_implementation_list(
1287 allocator.Adapter(kArenaAllocCHA));
David Srbeckyafc97bc2018-07-05 08:14:35 +00001288 ArenaStack arena_stack(runtime->GetJitArenaPool());
1289 // StackMapStream is large and it does not fit into this frame, so we need helper method.
David Srbeckye7a91942018-08-01 17:23:53 +01001290 ScopedArenaAllocator stack_map_allocator(&arena_stack); // Will hold the stack map.
Nicolas Geoffraybf5f0f32019-03-05 15:41:50 +00001291 ScopedArenaVector<uint8_t> stack_map = CreateJniStackMap(&stack_map_allocator,
1292 jni_compiled_method);
David Srbeckyadb66f92019-10-10 12:59:43 +00001293
1294 ArrayRef<const uint8_t> reserved_code;
1295 ArrayRef<const uint8_t> reserved_data;
1296 if (!code_cache->Reserve(self,
1297 region,
1298 jni_compiled_method.GetCode().size(),
1299 stack_map.size(),
1300 /* number_of_roots= */ 0,
1301 method,
1302 /*out*/ &reserved_code,
1303 /*out*/ &reserved_data)) {
David Srbeckyafc97bc2018-07-05 08:14:35 +00001304 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kJitOutOfMemoryForCommit);
1305 return false;
1306 }
David Srbeckyadb66f92019-10-10 12:59:43 +00001307 const uint8_t* code = reserved_code.data() + OatQuickMethodHeader::InstructionAlignedSize();
David Srbeckyafc97bc2018-07-05 08:14:35 +00001308
David Srbecky444e9982019-10-02 17:59:23 +01001309 // Add debug info after we know the code location but before we update entry-point.
David Srbeckyadb66f92019-10-10 12:59:43 +00001310 if (compiler_options.GenerateAnyDebugInfo()) {
Vladimir Marko2196c652017-11-30 16:16:07 +00001311 debug::MethodDebugInfo info = {};
David Srbeckyfe1d9522019-03-25 17:19:11 +00001312 info.custom_name = "art_jni_trampoline";
Vladimir Marko2196c652017-11-30 16:16:07 +00001313 info.dex_file = dex_file;
1314 info.class_def_index = class_def_idx;
1315 info.dex_method_index = method_idx;
1316 info.access_flags = access_flags;
1317 info.code_item = code_item;
1318 info.isa = jni_compiled_method.GetInstructionSet();
1319 info.deduped = false;
1320 info.is_native_debuggable = compiler_options.GetNativeDebuggable();
1321 info.is_optimized = true;
1322 info.is_code_address_text_relative = false;
David Srbeckyadb66f92019-10-10 12:59:43 +00001323 info.code_address = reinterpret_cast<uintptr_t>(code);
Vladimir Marko2196c652017-11-30 16:16:07 +00001324 info.code_size = jni_compiled_method.GetCode().size();
David Srbeckyadb66f92019-10-10 12:59:43 +00001325 info.frame_size_in_bytes = jni_compiled_method.GetFrameSize();
Vladimir Marko2196c652017-11-30 16:16:07 +00001326 info.code_info = nullptr;
1327 info.cfi = jni_compiled_method.GetCfi();
David Srbecky444e9982019-10-02 17:59:23 +01001328 GenerateJitDebugInfo(info);
David Srbeckyadb66f92019-10-10 12:59:43 +00001329 }
David Srbecky444e9982019-10-02 17:59:23 +01001330
David Srbeckyadb66f92019-10-10 12:59:43 +00001331 if (!code_cache->Commit(self,
1332 region,
1333 method,
1334 reserved_code,
1335 jni_compiled_method.GetCode(),
1336 reserved_data,
1337 roots,
1338 ArrayRef<const uint8_t>(stack_map),
1339 osr,
1340 /* has_should_deoptimize_flag= */ false,
1341 cha_single_implementation_list)) {
1342 code_cache->Free(self, region, reserved_code.data(), reserved_data.data());
David Srbecky444e9982019-10-02 17:59:23 +01001343 return false;
Vladimir Marko2196c652017-11-30 16:16:07 +00001344 }
1345
1346 Runtime::Current()->GetJit()->AddMemoryUsage(method, allocator.BytesUsed());
1347 if (jit_logger != nullptr) {
1348 jit_logger->WriteLog(code, jni_compiled_method.GetCode().size(), method);
1349 }
1350 return true;
1351 }
1352
1353 ArenaStack arena_stack(runtime->GetJitArenaPool());
Vladimir Markoca6fff82017-10-03 14:49:14 +01001354 CodeVectorAllocator code_allocator(&allocator);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001355 VariableSizedHandleScope handles(self);
1356
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001357 std::unique_ptr<CodeGenerator> codegen;
1358 {
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001359 Handle<mirror::Class> compiling_class = handles.NewHandle(method->GetDeclaringClass());
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001360 DexCompilationUnit dex_compilation_unit(
1361 class_loader,
1362 runtime->GetClassLinker(),
1363 *dex_file,
1364 code_item,
1365 class_def_idx,
1366 method_idx,
1367 access_flags,
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001368 /*verified_method=*/ nullptr,
1369 dex_cache,
1370 compiling_class);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001371
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001372 // Go to native so that we don't block GC during compilation.
1373 ScopedThreadSuspension sts(self, kNative);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001374 codegen.reset(
Vladimir Markoca6fff82017-10-03 14:49:14 +01001375 TryCompile(&allocator,
1376 &arena_stack,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001377 &code_allocator,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001378 dex_compilation_unit,
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +00001379 method,
Nicolas Geoffray7c9cfe82019-11-25 17:40:21 +00001380 baseline || GetCompilerOptions().IsBaseline(),
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001381 osr,
Nicolas Geoffraya48c3df2019-06-27 13:11:12 +00001382 /* is_shared_jit_code= */ code_cache->IsSharedRegion(*region),
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001383 &handles));
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001384 if (codegen.get() == nullptr) {
1385 return false;
1386 }
1387 }
1388
David Srbeckye7a91942018-08-01 17:23:53 +01001389 ScopedArenaVector<uint8_t> stack_map = codegen->BuildStackMaps(code_item);
David Srbeckyadb66f92019-10-10 12:59:43 +00001390
1391 ArrayRef<const uint8_t> reserved_code;
1392 ArrayRef<const uint8_t> reserved_data;
1393 if (!code_cache->Reserve(self,
1394 region,
1395 code_allocator.GetMemory().size(),
1396 stack_map.size(),
1397 /*number_of_roots=*/codegen->GetNumberOfJitRoots(),
1398 method,
1399 /*out*/ &reserved_code,
1400 /*out*/ &reserved_data)) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +00001401 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kJitOutOfMemoryForCommit);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001402 return false;
1403 }
David Srbeckyadb66f92019-10-10 12:59:43 +00001404 const uint8_t* code = reserved_code.data() + OatQuickMethodHeader::InstructionAlignedSize();
1405 const uint8_t* roots_data = reserved_data.data();
1406
Vladimir Markoac3ac682018-09-20 11:01:43 +01001407 std::vector<Handle<mirror::Object>> roots;
1408 codegen->EmitJitRoots(code_allocator.GetData(), roots_data, &roots);
1409 // The root Handle<>s filled by the codegen reference entries in the VariableSizedHandleScope.
1410 DCHECK(std::all_of(roots.begin(),
1411 roots.end(),
1412 [&handles](Handle<mirror::Object> root){
1413 return handles.Contains(root.GetReference());
1414 }));
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001415
David Srbecky444e9982019-10-02 17:59:23 +01001416 // Add debug info after we know the code location but before we update entry-point.
David Srbeckyadb66f92019-10-10 12:59:43 +00001417 const CompilerOptions& compiler_options = GetCompilerOptions();
1418 if (compiler_options.GenerateAnyDebugInfo()) {
Vladimir Marko1b404a82017-09-01 13:35:26 +01001419 debug::MethodDebugInfo info = {};
David Srbeckyc684f332018-01-19 17:38:06 +00001420 DCHECK(info.custom_name.empty());
David Srbecky197160d2016-03-07 17:33:57 +00001421 info.dex_file = dex_file;
1422 info.class_def_index = class_def_idx;
1423 info.dex_method_index = method_idx;
1424 info.access_flags = access_flags;
1425 info.code_item = code_item;
1426 info.isa = codegen->GetInstructionSet();
1427 info.deduped = false;
1428 info.is_native_debuggable = compiler_options.GetNativeDebuggable();
1429 info.is_optimized = true;
1430 info.is_code_address_text_relative = false;
David Srbeckyadb66f92019-10-10 12:59:43 +00001431 info.code_address = reinterpret_cast<uintptr_t>(code);
Vladimir Markoca1e0382018-04-11 09:58:41 +00001432 info.code_size = code_allocator.GetMemory().size();
David Srbeckyadb66f92019-10-10 12:59:43 +00001433 info.frame_size_in_bytes = codegen->GetFrameSize();
1434 info.code_info = stack_map.size() == 0 ? nullptr : stack_map.data();
David Srbecky197160d2016-03-07 17:33:57 +00001435 info.cfi = ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data());
David Srbecky444e9982019-10-02 17:59:23 +01001436 GenerateJitDebugInfo(info);
David Srbeckyadb66f92019-10-10 12:59:43 +00001437 }
David Srbecky444e9982019-10-02 17:59:23 +01001438
David Srbeckyadb66f92019-10-10 12:59:43 +00001439 if (!code_cache->Commit(self,
1440 region,
1441 method,
1442 reserved_code,
1443 code_allocator.GetMemory(),
1444 reserved_data,
1445 roots,
1446 ArrayRef<const uint8_t>(stack_map),
1447 osr,
1448 codegen->GetGraph()->HasShouldDeoptimizeFlag(),
1449 codegen->GetGraph()->GetCHASingleImplementationList())) {
1450 code_cache->Free(self, region, reserved_code.data(), reserved_data.data());
David Srbecky444e9982019-10-02 17:59:23 +01001451 return false;
David Srbecky5cc349f2015-12-18 15:04:48 +00001452 }
1453
Vladimir Markoca6fff82017-10-03 14:49:14 +01001454 Runtime::Current()->GetJit()->AddMemoryUsage(method, allocator.BytesUsed());
Nicolas Geoffray01db5f72017-07-19 15:05:49 +01001455 if (jit_logger != nullptr) {
Vladimir Markoca1e0382018-04-11 09:58:41 +00001456 jit_logger->WriteLog(code, code_allocator.GetMemory().size(), method);
Nicolas Geoffray01db5f72017-07-19 15:05:49 +01001457 }
Nicolas Geoffraya4f81542016-03-08 16:57:48 +00001458
Vladimir Marko174b2e22017-10-12 13:34:49 +01001459 if (kArenaAllocatorCountAllocations) {
1460 codegen.reset(); // Release codegen's ScopedArenaAllocator for memory accounting.
1461 size_t total_allocated = allocator.BytesAllocated() + arena_stack.PeakBytesAllocated();
1462 if (total_allocated > kArenaAllocatorMemoryReportThreshold) {
1463 MemStats mem_stats(allocator.GetMemStats());
1464 MemStats peak_stats(arena_stack.GetPeakStats());
1465 LOG(INFO) << "Used " << total_allocated << " bytes of arena memory for compiling "
1466 << dex_file->PrettyMethod(method_idx)
1467 << "\n" << Dumpable<MemStats>(mem_stats)
1468 << "\n" << Dumpable<MemStats>(peak_stats);
1469 }
1470 }
1471
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001472 return true;
1473}
1474
David Srbecky444e9982019-10-02 17:59:23 +01001475void OptimizingCompiler::GenerateJitDebugInfo(const debug::MethodDebugInfo& info) {
Vladimir Marko038924b2019-02-19 15:09:35 +00001476 const CompilerOptions& compiler_options = GetCompilerOptions();
David Srbecky444e9982019-10-02 17:59:23 +01001477 if (compiler_options.GenerateAnyDebugInfo()) {
David Srbecky43ae7792019-01-09 17:34:01 +00001478 // If both flags are passed, generate full debug info.
1479 const bool mini_debug_info = !compiler_options.GetGenerateDebugInfo();
David Srbeckyc684f332018-01-19 17:38:06 +00001480
David Srbecky43ae7792019-01-09 17:34:01 +00001481 // Create entry for the single method that we just compiled.
David Srbecky8fc2f952019-07-31 18:40:09 +01001482 InstructionSet isa = compiler_options.GetInstructionSet();
1483 const InstructionSetFeatures* features = compiler_options.GetInstructionSetFeatures();
1484 std::vector<uint8_t> elf = debug::MakeElfFileForJIT(isa, features, mini_debug_info, info);
1485
1486 // NB: Don't allow packing of full info since it would remove non-backtrace data.
David Srbeckyadb66f92019-10-10 12:59:43 +00001487 MutexLock mu(Thread::Current(), *Locks::jit_lock_);
David Srbecky8fc2f952019-07-31 18:40:09 +01001488 const void* code_ptr = reinterpret_cast<const void*>(info.code_address);
1489 AddNativeDebugInfoForJit(code_ptr, elf, /*allow_packing=*/ mini_debug_info);
David Srbecky43ae7792019-01-09 17:34:01 +00001490 }
David Srbeckyc684f332018-01-19 17:38:06 +00001491}
1492
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +00001493} // namespace art