blob: 4f495b6d8149c262162ad3024f6ae31c13d0e191 [file] [log] [blame]
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +00001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Andreas Gampe53c913b2014-08-12 23:19:23 -070017#include "optimizing_compiler.h"
18
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010019#include <fstream>
David Srbecky5cc349f2015-12-18 15:04:48 +000020#include <memory>
Andreas Gampea0d81af2016-10-27 12:04:57 -070021#include <sstream>
22
Nicolas Geoffray787c3072014-03-17 10:20:19 +000023#include <stdint.h>
24
Mathieu Chartiere401d142015-04-22 13:56:20 -070025#include "art_method-inl.h"
Mathieu Chartierb666f482015-02-18 14:33:14 -080026#include "base/arena_allocator.h"
Vladimir Markof9f64412015-09-02 14:05:49 +010027#include "base/arena_containers.h"
David Brazdil5e8b1372015-01-23 14:39:08 +000028#include "base/dumpable.h"
Vladimir Markoc90d7c72015-10-06 17:30:45 +000029#include "base/macros.h"
Andreas Gampea0d81af2016-10-27 12:04:57 -070030#include "base/mutex.h"
Vladimir Markoca6fff82017-10-03 14:49:14 +010031#include "base/scoped_arena_allocator.h"
David Brazdil5e8b1372015-01-23 14:39:08 +000032#include "base/timing_logger.h"
Nicolas Geoffray787c3072014-03-17 10:20:19 +000033#include "builder.h"
Vladimir Markob4eb1b12018-05-24 11:09:38 +010034#include "class_root.h"
Nicolas Geoffray787c3072014-03-17 10:20:19 +000035#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"
Nicolas Geoffray9523a3e2015-07-17 11:51:28 +000043#include "driver/compiler_driver-inl.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
68namespace art {
69
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,
Andreas Gampea0d81af2016-10-27 12:04:57 -0700109 CompilerDriver* compiler_driver,
110 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 Marko2da52b02018-05-08 16:31:34 +0100114 timing_logger_enabled_(compiler_driver->GetCompilerOptions().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),
Nicolas Geoffrayc903b6a2016-01-18 12:56:06 +0000119 visualizer_enabled_(!compiler_driver->GetCompilerOptions().GetDumpCfgFileName().empty()),
Andreas Gampea0d81af2016-10-27 12:04:57 -0700120 visualizer_(&visualizer_oss_, graph, *codegen),
121 visualizer_dump_mutex_(dump_mutex),
David Brazdil69ba7b72015-06-23 18:27:30 +0100122 graph_in_bad_state_(false) {
Andreas Gampe53fcd0f2015-07-22 12:10:13 -0700123 if (timing_logger_enabled_ || visualizer_enabled_) {
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000124 if (!IsVerboseMethod(compiler_driver, GetMethodName())) {
Andreas Gampe53fcd0f2015-07-22 12:10:13 -0700125 timing_logger_enabled_ = visualizer_enabled_ = false;
126 }
127 if (visualizer_enabled_) {
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000128 visualizer_.PrintHeader(GetMethodName());
Andreas Gampe53fcd0f2015-07-22 12:10:13 -0700129 codegen->SetDisassemblyInformation(&disasm_info_);
130 }
David Brazdil62e074f2015-04-07 18:09:37 +0100131 }
David Brazdil5e8b1372015-01-23 14:39:08 +0000132 }
133
David Brazdil69ba7b72015-06-23 18:27:30 +0100134 ~PassObserver() {
David Brazdil5e8b1372015-01-23 14:39:08 +0000135 if (timing_logger_enabled_) {
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000136 LOG(INFO) << "TIMINGS " << GetMethodName();
David Brazdil5e8b1372015-01-23 14:39:08 +0000137 LOG(INFO) << Dumpable<TimingLogger>(timing_logger_);
138 }
Nicolas Geoffray00c141a2016-11-10 15:19:15 +0000139 DCHECK(visualizer_oss_.str().empty());
David Brazdil5e8b1372015-01-23 14:39:08 +0000140 }
141
Nicolas Geoffray00c141a2016-11-10 15:19:15 +0000142 void DumpDisassembly() REQUIRES(!visualizer_dump_mutex_) {
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100143 if (visualizer_enabled_) {
144 visualizer_.DumpGraphWithDisassembly();
Nicolas Geoffray00c141a2016-11-10 15:19:15 +0000145 FlushVisualizer();
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100146 }
147 }
148
David Brazdil69ba7b72015-06-23 18:27:30 +0100149 void SetGraphInBadState() { graph_in_bad_state_ = true; }
150
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000151 const char* GetMethodName() {
152 // PrettyMethod() is expensive, so we delay calling it until we actually have to.
153 if (cached_method_name_.empty()) {
David Sehr709b0702016-10-13 09:12:37 -0700154 cached_method_name_ = graph_->GetDexFile().PrettyMethod(graph_->GetMethodIdx());
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000155 }
156 return cached_method_name_.c_str();
157 }
158
David Brazdil5e8b1372015-01-23 14:39:08 +0000159 private:
Nicolas Geoffray00c141a2016-11-10 15:19:15 +0000160 void StartPass(const char* pass_name) REQUIRES(!visualizer_dump_mutex_) {
Wojciech Staszkiewicze7060702016-08-16 17:31:19 -0700161 VLOG(compiler) << "Starting pass: " << pass_name;
David Brazdil809658e2015-02-05 11:34:02 +0000162 // Dump graph first, then start timer.
163 if (visualizer_enabled_) {
David Brazdilffee3d32015-07-06 11:48:53 +0100164 visualizer_.DumpGraph(pass_name, /* is_after_pass */ false, graph_in_bad_state_);
Nicolas Geoffray00c141a2016-11-10 15:19:15 +0000165 FlushVisualizer();
David Brazdil809658e2015-02-05 11:34:02 +0000166 }
167 if (timing_logger_enabled_) {
168 timing_logger_.StartTiming(pass_name);
169 }
170 }
171
Nicolas Geoffray00c141a2016-11-10 15:19:15 +0000172 void FlushVisualizer() REQUIRES(!visualizer_dump_mutex_) {
173 MutexLock mu(Thread::Current(), visualizer_dump_mutex_);
174 *visualizer_output_ << visualizer_oss_.str();
175 visualizer_output_->flush();
176 visualizer_oss_.str("");
177 visualizer_oss_.clear();
178 }
179
Aart Bika8360cd2018-05-02 16:07:51 -0700180 void EndPass(const char* pass_name, bool pass_change) REQUIRES(!visualizer_dump_mutex_) {
David Brazdil809658e2015-02-05 11:34:02 +0000181 // Pause timer first, then dump graph.
182 if (timing_logger_enabled_) {
183 timing_logger_.EndTiming();
184 }
185 if (visualizer_enabled_) {
David Brazdilffee3d32015-07-06 11:48:53 +0100186 visualizer_.DumpGraph(pass_name, /* is_after_pass */ true, graph_in_bad_state_);
Nicolas Geoffray00c141a2016-11-10 15:19:15 +0000187 FlushVisualizer();
David Brazdil809658e2015-02-05 11:34:02 +0000188 }
David Brazdil69ba7b72015-06-23 18:27:30 +0100189
190 // Validate the HGraph if running in debug mode.
191 if (kIsDebugBuild) {
192 if (!graph_in_bad_state_) {
David Brazdilbadd8262016-02-02 16:28:56 +0000193 GraphChecker checker(graph_);
Aart Bika8360cd2018-05-02 16:07:51 -0700194 last_seen_graph_size_ = checker.Run(pass_change, last_seen_graph_size_);
David Brazdilbadd8262016-02-02 16:28:56 +0000195 if (!checker.IsValid()) {
196 LOG(FATAL) << "Error after " << pass_name << ": " << Dumpable<GraphChecker>(checker);
David Brazdil69ba7b72015-06-23 18:27:30 +0100197 }
198 }
199 }
David Brazdil809658e2015-02-05 11:34:02 +0000200 }
201
Andreas Gampe53fcd0f2015-07-22 12:10:13 -0700202 static bool IsVerboseMethod(CompilerDriver* compiler_driver, const char* method_name) {
203 // Test an exact match to --verbose-methods. If verbose-methods is set, this overrides an
204 // empty kStringFilter matching all methods.
205 if (compiler_driver->GetCompilerOptions().HasVerboseMethods()) {
206 return compiler_driver->GetCompilerOptions().IsVerboseMethod(method_name);
207 }
208
209 // Test the kStringFilter sub-string. constexpr helper variable to silence unreachable-code
210 // warning when the string is empty.
211 constexpr bool kStringFilterEmpty = arraysize(kStringFilter) <= 1;
212 if (kStringFilterEmpty || strstr(method_name, kStringFilter) != nullptr) {
213 return true;
214 }
215
216 return false;
217 }
218
David Brazdil69ba7b72015-06-23 18:27:30 +0100219 HGraph* const graph_;
Aart Bika8360cd2018-05-02 16:07:51 -0700220 size_t last_seen_graph_size_;
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000221
222 std::string cached_method_name_;
David Brazdil5e8b1372015-01-23 14:39:08 +0000223
224 bool timing_logger_enabled_;
David Brazdil5e8b1372015-01-23 14:39:08 +0000225 TimingLogger timing_logger_;
226
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100227 DisassemblyInformation disasm_info_;
228
Andreas Gampea0d81af2016-10-27 12:04:57 -0700229 std::ostringstream visualizer_oss_;
230 std::ostream* visualizer_output_;
David Brazdil5e8b1372015-01-23 14:39:08 +0000231 bool visualizer_enabled_;
232 HGraphVisualizer visualizer_;
Andreas Gampea0d81af2016-10-27 12:04:57 -0700233 Mutex& visualizer_dump_mutex_;
David Brazdil5e8b1372015-01-23 14:39:08 +0000234
David Brazdil69ba7b72015-06-23 18:27:30 +0100235 // Flag to be set by the compiler if the pass failed and the graph is not
236 // expected to validate.
237 bool graph_in_bad_state_;
David Brazdil809658e2015-02-05 11:34:02 +0000238
David Brazdil69ba7b72015-06-23 18:27:30 +0100239 friend PassScope;
240
241 DISALLOW_COPY_AND_ASSIGN(PassObserver);
David Brazdil5e8b1372015-01-23 14:39:08 +0000242};
243
David Brazdil69ba7b72015-06-23 18:27:30 +0100244class PassScope : public ValueObject {
David Brazdil809658e2015-02-05 11:34:02 +0000245 public:
David Brazdil69ba7b72015-06-23 18:27:30 +0100246 PassScope(const char *pass_name, PassObserver* pass_observer)
David Brazdil809658e2015-02-05 11:34:02 +0000247 : pass_name_(pass_name),
Aart Bika8360cd2018-05-02 16:07:51 -0700248 pass_change_(true), // assume change
David Brazdil69ba7b72015-06-23 18:27:30 +0100249 pass_observer_(pass_observer) {
250 pass_observer_->StartPass(pass_name_);
David Brazdil809658e2015-02-05 11:34:02 +0000251 }
252
Aart Bika8360cd2018-05-02 16:07:51 -0700253 void SetPassNotChanged() {
254 pass_change_ = false;
255 }
256
David Brazdil69ba7b72015-06-23 18:27:30 +0100257 ~PassScope() {
Aart Bika8360cd2018-05-02 16:07:51 -0700258 pass_observer_->EndPass(pass_name_, pass_change_);
David Brazdil809658e2015-02-05 11:34:02 +0000259 }
260
261 private:
262 const char* const pass_name_;
Aart Bika8360cd2018-05-02 16:07:51 -0700263 bool pass_change_;
David Brazdil69ba7b72015-06-23 18:27:30 +0100264 PassObserver* const pass_observer_;
David Brazdil809658e2015-02-05 11:34:02 +0000265};
266
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100267class OptimizingCompiler final : public Compiler {
Andreas Gampe53c913b2014-08-12 23:19:23 -0700268 public:
269 explicit OptimizingCompiler(CompilerDriver* driver);
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100270 ~OptimizingCompiler() override;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700271
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100272 bool CanCompileMethod(uint32_t method_idx, const DexFile& dex_file) const override;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700273
274 CompiledMethod* Compile(const DexFile::CodeItem* code_item,
275 uint32_t access_flags,
276 InvokeType invoke_type,
277 uint16_t class_def_idx,
278 uint32_t method_idx,
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000279 Handle<mirror::ClassLoader> class_loader,
Mathieu Chartier736b5602015-09-02 14:54:11 -0700280 const DexFile& dex_file,
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100281 Handle<mirror::DexCache> dex_cache) const override;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700282
Andreas Gampe53c913b2014-08-12 23:19:23 -0700283 CompiledMethod* JniCompile(uint32_t access_flags,
284 uint32_t method_idx,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000285 const DexFile& dex_file,
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100286 Handle<mirror::DexCache> dex_cache) const override;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700287
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100288 uintptr_t GetEntryPointOf(ArtMethod* method) const override
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700289 REQUIRES_SHARED(Locks::mutator_lock_) {
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000290 return reinterpret_cast<uintptr_t>(method->GetEntryPointFromQuickCompiledCodePtrSize(
Vladimir Markoa0431112018-06-25 09:32:54 +0100291 InstructionSetPointerSize(GetCompilerDriver()->GetCompilerOptions().GetInstructionSet())));
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000292 }
Andreas Gampe53c913b2014-08-12 23:19:23 -0700293
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100294 void Init() override;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700295
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100296 void UnInit() const override;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700297
Nicolas Geoffray01db5f72017-07-19 15:05:49 +0100298 bool JitCompile(Thread* self,
299 jit::JitCodeCache* code_cache,
300 ArtMethod* method,
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100301 bool baseline,
Nicolas Geoffray01db5f72017-07-19 15:05:49 +0100302 bool osr,
303 jit::JitLogger* jit_logger)
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100304 override
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700305 REQUIRES_SHARED(Locks::mutator_lock_);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000306
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -0700307 private:
Aart Bik24773202018-04-26 10:28:51 -0700308 bool RunOptimizations(HGraph* graph,
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -0700309 CodeGenerator* codegen,
Aart Bik2ca10eb2017-11-15 15:17:53 -0800310 const DexCompilationUnit& dex_compilation_unit,
311 PassObserver* pass_observer,
312 VariableSizedHandleScope* handles,
313 const OptimizationDef definitions[],
314 size_t length) const {
315 // Convert definitions to optimization passes.
316 ArenaVector<HOptimization*> optimizations = ConstructOptimizations(
317 definitions,
318 length,
319 graph->GetAllocator(),
320 graph,
321 compilation_stats_.get(),
322 codegen,
323 GetCompilerDriver(),
324 dex_compilation_unit,
325 handles);
326 DCHECK_EQ(length, optimizations.size());
Aart Bik2e148682018-04-18 16:11:12 -0700327 // Run the optimization passes one by one. Any "depends_on" pass refers back to
328 // the most recent occurrence of that pass, skipped or executed.
329 std::bitset<static_cast<size_t>(OptimizationPass::kLast) + 1u> pass_changes;
330 pass_changes[static_cast<size_t>(OptimizationPass::kNone)] = true;
Aart Bik24773202018-04-26 10:28:51 -0700331 bool change = false;
Aart Bik2ca10eb2017-11-15 15:17:53 -0800332 for (size_t i = 0; i < length; ++i) {
Aart Bik2e148682018-04-18 16:11:12 -0700333 if (pass_changes[static_cast<size_t>(definitions[i].depends_on)]) {
334 // Execute the pass and record whether it changed anything.
335 PassScope scope(optimizations[i]->GetPassName(), pass_observer);
336 bool pass_change = optimizations[i]->Run();
337 pass_changes[static_cast<size_t>(definitions[i].pass)] = pass_change;
Aart Bika8360cd2018-05-02 16:07:51 -0700338 if (pass_change) {
339 change = true;
340 } else {
341 scope.SetPassNotChanged();
342 }
Aart Bik2e148682018-04-18 16:11:12 -0700343 } else {
344 // Skip the pass and record that nothing changed.
345 pass_changes[static_cast<size_t>(definitions[i].pass)] = false;
346 }
Aart Bik2ca10eb2017-11-15 15:17:53 -0800347 }
Aart Bik24773202018-04-26 10:28:51 -0700348 return change;
Aart Bik2ca10eb2017-11-15 15:17:53 -0800349 }
350
Aart Bik24773202018-04-26 10:28:51 -0700351 template <size_t length> bool RunOptimizations(
Aart Bik2ca10eb2017-11-15 15:17:53 -0800352 HGraph* graph,
353 CodeGenerator* codegen,
354 const DexCompilationUnit& dex_compilation_unit,
355 PassObserver* pass_observer,
356 VariableSizedHandleScope* handles,
357 const OptimizationDef (&definitions)[length]) const {
Aart Bik24773202018-04-26 10:28:51 -0700358 return RunOptimizations(
Aart Bik2ca10eb2017-11-15 15:17:53 -0800359 graph, codegen, dex_compilation_unit, pass_observer, handles, definitions, length);
360 }
361
362 void RunOptimizations(HGraph* graph,
363 CodeGenerator* codegen,
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -0700364 const DexCompilationUnit& dex_compilation_unit,
365 PassObserver* pass_observer,
Mathieu Chartiere8a3c572016-10-11 16:52:17 -0700366 VariableSizedHandleScope* handles) const;
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700367
Andreas Gampe53c913b2014-08-12 23:19:23 -0700368 private:
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000369 // Create a 'CompiledMethod' for an optimized graph.
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100370 CompiledMethod* Emit(ArenaAllocator* allocator,
David Brazdil58282f42016-01-14 12:45:10 +0000371 CodeVectorAllocator* code_allocator,
372 CodeGenerator* codegen,
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000373 const DexFile::CodeItem* item) const;
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000374
375 // Try compiling a method and return the code generator used for
376 // compiling it.
377 // This method:
378 // 1) Builds the graph. Returns null if it failed to build it.
David Brazdil58282f42016-01-14 12:45:10 +0000379 // 2) Transforms the graph to SSA. Returns null if it failed.
380 // 3) Runs optimizations on the graph, including register allocator.
381 // 4) Generates code with the `code_allocator` provided.
Vladimir Markoca6fff82017-10-03 14:49:14 +0100382 CodeGenerator* TryCompile(ArenaAllocator* allocator,
383 ArenaStack* arena_stack,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000384 CodeVectorAllocator* code_allocator,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000385 const DexCompilationUnit& dex_compilation_unit,
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000386 ArtMethod* method,
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100387 bool baseline,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000388 bool osr,
389 VariableSizedHandleScope* handles) const;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000390
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000391 CodeGenerator* TryCompileIntrinsic(ArenaAllocator* allocator,
392 ArenaStack* arena_stack,
393 CodeVectorAllocator* code_allocator,
394 const DexCompilationUnit& dex_compilation_unit,
395 ArtMethod* method,
396 VariableSizedHandleScope* handles) const;
397
Aart Bik24773202018-04-26 10:28:51 -0700398 bool RunArchOptimizations(HGraph* graph,
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700399 CodeGenerator* codegen,
Aart Bik2ca10eb2017-11-15 15:17:53 -0800400 const DexCompilationUnit& dex_compilation_unit,
401 PassObserver* pass_observer,
402 VariableSizedHandleScope* handles) const;
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700403
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100404 bool RunBaselineOptimizations(HGraph* graph,
405 CodeGenerator* codegen,
406 const DexCompilationUnit& dex_compilation_unit,
407 PassObserver* pass_observer,
408 VariableSizedHandleScope* handles) const;
409
Stephen Hines48ba1972018-09-24 13:35:54 -0700410 void GenerateJitDebugInfo(ArtMethod* method,
411 const debug::MethodDebugInfo& method_debug_info)
David Srbeckyc9e02082018-01-24 16:44:02 +0000412 REQUIRES_SHARED(Locks::mutator_lock_);
David Srbeckyc684f332018-01-19 17:38:06 +0000413
Calin Juravle2be39e02015-04-21 13:56:34 +0100414 std::unique_ptr<OptimizingCompilerStats> compilation_stats_;
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100415
Andreas Gampe53c913b2014-08-12 23:19:23 -0700416 std::unique_ptr<std::ostream> visualizer_output_;
417
Andreas Gampea0d81af2016-10-27 12:04:57 -0700418 mutable Mutex dump_mutex_; // To synchronize visualizer writing.
419
Andreas Gampe53c913b2014-08-12 23:19:23 -0700420 DISALLOW_COPY_AND_ASSIGN(OptimizingCompiler);
421};
422
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100423static const int kMaximumCompilationTimeBeforeWarning = 100; /* ms */
424
425OptimizingCompiler::OptimizingCompiler(CompilerDriver* driver)
Andreas Gampea0d81af2016-10-27 12:04:57 -0700426 : Compiler(driver, kMaximumCompilationTimeBeforeWarning),
427 dump_mutex_("Visualizer dump lock") {}
David Brazdilee690a32014-12-01 17:04:16 +0000428
429void OptimizingCompiler::Init() {
430 // Enable C1visualizer output. Must be done in Init() because the compiler
431 // driver is not fully initialized when passed to the compiler's constructor.
432 CompilerDriver* driver = GetCompilerDriver();
Nicolas Geoffrayc903b6a2016-01-18 12:56:06 +0000433 const std::string cfg_file_name = driver->GetCompilerOptions().GetDumpCfgFileName();
David Brazdil866c0312015-01-13 21:21:31 +0000434 if (!cfg_file_name.empty()) {
Calin Juravle87000a92015-08-24 15:34:44 +0100435 std::ios_base::openmode cfg_file_mode =
Nicolas Geoffrayc903b6a2016-01-18 12:56:06 +0000436 driver->GetCompilerOptions().GetDumpCfgAppend() ? std::ofstream::app : std::ofstream::out;
Calin Juravle87000a92015-08-24 15:34:44 +0100437 visualizer_output_.reset(new std::ofstream(cfg_file_name, cfg_file_mode));
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100438 }
Nicolas Geoffray2d8801f2017-11-28 15:50:07 +0000439 if (driver->GetCompilerOptions().GetDumpStats()) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100440 compilation_stats_.reset(new OptimizingCompilerStats());
441 }
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100442}
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000443
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000444void OptimizingCompiler::UnInit() const {
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000445}
446
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100447OptimizingCompiler::~OptimizingCompiler() {
Calin Juravle2be39e02015-04-21 13:56:34 +0100448 if (compilation_stats_.get() != nullptr) {
449 compilation_stats_->Log();
450 }
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100451}
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
462 || instruction_set == InstructionSet::kMips
463 || instruction_set == InstructionSet::kMips64
464 || instruction_set == InstructionSet::kX86
465 || instruction_set == InstructionSet::kX86_64;
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000466}
467
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100468bool OptimizingCompiler::RunBaselineOptimizations(HGraph* graph,
469 CodeGenerator* codegen,
470 const DexCompilationUnit& dex_compilation_unit,
471 PassObserver* pass_observer,
472 VariableSizedHandleScope* handles) const {
473 switch (codegen->GetCompilerOptions().GetInstructionSet()) {
474#ifdef ART_ENABLE_CODEGEN_mips
475 case InstructionSet::kMips: {
476 OptimizationDef mips_optimizations[] = {
477 OptDef(OptimizationPass::kPcRelativeFixupsMips)
478 };
479 return RunOptimizations(graph,
480 codegen,
481 dex_compilation_unit,
482 pass_observer,
483 handles,
484 mips_optimizations);
485 }
486#endif
487#ifdef ART_ENABLE_CODEGEN_x86
488 case InstructionSet::kX86: {
489 OptimizationDef x86_optimizations[] = {
490 OptDef(OptimizationPass::kPcRelativeFixupsX86),
491 };
492 return RunOptimizations(graph,
493 codegen,
494 dex_compilation_unit,
495 pass_observer,
496 handles,
497 x86_optimizations);
498 }
499#endif
500 default:
501 UNUSED(graph);
502 UNUSED(codegen);
503 UNUSED(dex_compilation_unit);
504 UNUSED(pass_observer);
505 UNUSED(handles);
506 return false;
507 }
508}
509
Aart Bik24773202018-04-26 10:28:51 -0700510bool OptimizingCompiler::RunArchOptimizations(HGraph* graph,
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700511 CodeGenerator* codegen,
Aart Bik2ca10eb2017-11-15 15:17:53 -0800512 const DexCompilationUnit& dex_compilation_unit,
513 PassObserver* pass_observer,
514 VariableSizedHandleScope* handles) const {
Vladimir Markoa0431112018-06-25 09:32:54 +0100515 switch (codegen->GetCompilerOptions().GetInstructionSet()) {
Artem Serov2bbc9532016-10-21 11:51:50 +0100516#if defined(ART_ENABLE_CODEGEN_arm)
Vladimir Marko33bff252017-11-01 14:35:42 +0000517 case InstructionSet::kThumb2:
518 case InstructionSet::kArm: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800519 OptimizationDef arm_optimizations[] = {
520 OptDef(OptimizationPass::kInstructionSimplifierArm),
521 OptDef(OptimizationPass::kSideEffectsAnalysis),
522 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
523 OptDef(OptimizationPass::kScheduling)
Vladimir Markob4536b72015-11-24 13:45:23 +0000524 };
Aart Bik24773202018-04-26 10:28:51 -0700525 return RunOptimizations(graph,
526 codegen,
527 dex_compilation_unit,
528 pass_observer,
529 handles,
530 arm_optimizations);
Vladimir Markob4536b72015-11-24 13:45:23 +0000531 }
532#endif
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100533#ifdef ART_ENABLE_CODEGEN_arm64
Vladimir Marko33bff252017-11-01 14:35:42 +0000534 case InstructionSet::kArm64: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800535 OptimizationDef arm64_optimizations[] = {
536 OptDef(OptimizationPass::kInstructionSimplifierArm64),
537 OptDef(OptimizationPass::kSideEffectsAnalysis),
538 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
539 OptDef(OptimizationPass::kScheduling)
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100540 };
Aart Bik24773202018-04-26 10:28:51 -0700541 return RunOptimizations(graph,
542 codegen,
543 dex_compilation_unit,
544 pass_observer,
545 handles,
546 arm64_optimizations);
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100547 }
548#endif
Alexey Frunzee3fb2452016-05-10 16:08:05 -0700549#ifdef ART_ENABLE_CODEGEN_mips
Vladimir Marko33bff252017-11-01 14:35:42 +0000550 case InstructionSet::kMips: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800551 OptimizationDef mips_optimizations[] = {
552 OptDef(OptimizationPass::kInstructionSimplifierMips),
553 OptDef(OptimizationPass::kSideEffectsAnalysis),
554 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
555 OptDef(OptimizationPass::kPcRelativeFixupsMips)
Alexey Frunzee3fb2452016-05-10 16:08:05 -0700556 };
Aart Bik24773202018-04-26 10:28:51 -0700557 return RunOptimizations(graph,
558 codegen,
559 dex_compilation_unit,
560 pass_observer,
561 handles,
562 mips_optimizations);
Alexey Frunzee3fb2452016-05-10 16:08:05 -0700563 }
564#endif
Lena Djokicb8e9c352017-09-20 15:11:13 +0200565#ifdef ART_ENABLE_CODEGEN_mips64
Vladimir Marko33bff252017-11-01 14:35:42 +0000566 case InstructionSet::kMips64: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800567 OptimizationDef mips64_optimizations[] = {
568 OptDef(OptimizationPass::kSideEffectsAnalysis),
569 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch")
Lena Djokicb8e9c352017-09-20 15:11:13 +0200570 };
Aart Bik24773202018-04-26 10:28:51 -0700571 return RunOptimizations(graph,
572 codegen,
573 dex_compilation_unit,
574 pass_observer,
575 handles,
576 mips64_optimizations);
Lena Djokicb8e9c352017-09-20 15:11:13 +0200577 }
578#endif
Mark Mendell0616ae02015-04-17 12:49:27 -0400579#ifdef ART_ENABLE_CODEGEN_x86
Vladimir Marko33bff252017-11-01 14:35:42 +0000580 case InstructionSet::kX86: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800581 OptimizationDef x86_optimizations[] = {
582 OptDef(OptimizationPass::kSideEffectsAnalysis),
583 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
584 OptDef(OptimizationPass::kPcRelativeFixupsX86),
Hans Boehmf5f56c72018-07-13 00:05:27 +0000585 OptDef(OptimizationPass::kX86MemoryOperandGeneration)
Mark Mendell0616ae02015-04-17 12:49:27 -0400586 };
Aart Bik24773202018-04-26 10:28:51 -0700587 return RunOptimizations(graph,
588 codegen,
589 dex_compilation_unit,
590 pass_observer,
591 handles,
592 x86_optimizations);
Mark Mendell0616ae02015-04-17 12:49:27 -0400593 }
594#endif
Mark Mendellee8d9712016-07-12 11:13:15 -0400595#ifdef ART_ENABLE_CODEGEN_x86_64
Vladimir Marko33bff252017-11-01 14:35:42 +0000596 case InstructionSet::kX86_64: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800597 OptimizationDef x86_64_optimizations[] = {
598 OptDef(OptimizationPass::kSideEffectsAnalysis),
599 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
Hans Boehmf5f56c72018-07-13 00:05:27 +0000600 OptDef(OptimizationPass::kX86MemoryOperandGeneration)
Mark Mendellee8d9712016-07-12 11:13:15 -0400601 };
Aart Bik24773202018-04-26 10:28:51 -0700602 return RunOptimizations(graph,
603 codegen,
604 dex_compilation_unit,
605 pass_observer,
606 handles,
607 x86_64_optimizations);
Mark Mendellee8d9712016-07-12 11:13:15 -0400608 }
609#endif
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100610 default:
Aart Bik24773202018-04-26 10:28:51 -0700611 return false;
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100612 }
613}
614
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000615NO_INLINE // Avoid increasing caller's frame size by large stack-allocated objects.
616static void AllocateRegisters(HGraph* graph,
617 CodeGenerator* codegen,
Matthew Gharrity2cd05b72016-08-03 16:57:37 -0700618 PassObserver* pass_observer,
Igor Murashkin6ef45672017-08-08 13:59:55 -0700619 RegisterAllocator::Strategy strategy,
620 OptimizingCompilerStats* stats) {
Mingyao Yang700347e2016-03-02 14:59:32 -0800621 {
622 PassScope scope(PrepareForRegisterAllocation::kPrepareForRegisterAllocationPassName,
623 pass_observer);
Nicolas Geoffray61ba8d22018-08-07 09:55:57 +0100624 PrepareForRegisterAllocation(graph, codegen->GetCompilerOptions(), stats).Run();
Mingyao Yang700347e2016-03-02 14:59:32 -0800625 }
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100626 // Use local allocator shared by SSA liveness analysis and register allocator.
627 // (Register allocator creates new objects in the liveness data.)
628 ScopedArenaAllocator local_allocator(graph->GetArenaStack());
629 SsaLivenessAnalysis liveness(graph, codegen, &local_allocator);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000630 {
631 PassScope scope(SsaLivenessAnalysis::kLivenessPassName, pass_observer);
632 liveness.Analyze();
633 }
634 {
635 PassScope scope(RegisterAllocator::kRegisterAllocatorPassName, pass_observer);
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100636 std::unique_ptr<RegisterAllocator> register_allocator =
637 RegisterAllocator::Create(&local_allocator, codegen, liveness, strategy);
Vladimir Markoca6fff82017-10-03 14:49:14 +0100638 register_allocator->AllocateRegisters();
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000639 }
640}
641
Aart Bik2ca10eb2017-11-15 15:17:53 -0800642// Strip pass name suffix to get optimization name.
643static std::string ConvertPassNameToOptimizationName(const std::string& pass_name) {
644 size_t pos = pass_name.find(kPassNameSeparator);
645 return pos == std::string::npos ? pass_name : pass_name.substr(0, pos);
646}
647
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700648void OptimizingCompiler::RunOptimizations(HGraph* graph,
649 CodeGenerator* codegen,
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700650 const DexCompilationUnit& dex_compilation_unit,
651 PassObserver* pass_observer,
Mathieu Chartiere8a3c572016-10-11 16:52:17 -0700652 VariableSizedHandleScope* handles) const {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800653 const std::vector<std::string>* pass_names =
654 GetCompilerDriver()->GetCompilerOptions().GetPassesToRun();
655 if (pass_names != nullptr) {
656 // If passes were defined on command-line, build the optimization
657 // passes and run these instead of the built-in optimizations.
Aart Bik2e148682018-04-18 16:11:12 -0700658 // TODO: a way to define depends_on via command-line?
Aart Bik2ca10eb2017-11-15 15:17:53 -0800659 const size_t length = pass_names->size();
660 std::vector<OptimizationDef> optimizations;
661 for (const std::string& pass_name : *pass_names) {
662 std::string opt_name = ConvertPassNameToOptimizationName(pass_name);
663 optimizations.push_back(OptDef(OptimizationPassByName(opt_name.c_str()), pass_name.c_str()));
664 }
665 RunOptimizations(graph,
666 codegen,
667 dex_compilation_unit,
668 pass_observer,
669 handles,
670 optimizations.data(),
671 length);
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -0700672 return;
673 }
674
Aart Bik24773202018-04-26 10:28:51 -0700675 OptimizationDef optimizations[] = {
Aart Bik2e148682018-04-18 16:11:12 -0700676 // Initial optimizations.
Aart Bik2ca10eb2017-11-15 15:17:53 -0800677 OptDef(OptimizationPass::kConstantFolding),
678 OptDef(OptimizationPass::kInstructionSimplifier),
Aart Bik2e148682018-04-18 16:11:12 -0700679 OptDef(OptimizationPass::kDeadCodeElimination,
680 "dead_code_elimination$initial"),
681 // Inlining.
Aart Bik24773202018-04-26 10:28:51 -0700682 OptDef(OptimizationPass::kInliner),
Aart Bik2e148682018-04-18 16:11:12 -0700683 // Simplification (only if inlining occurred).
684 OptDef(OptimizationPass::kConstantFolding,
685 "constant_folding$after_inlining",
686 OptimizationPass::kInliner),
687 OptDef(OptimizationPass::kInstructionSimplifier,
688 "instruction_simplifier$after_inlining",
689 OptimizationPass::kInliner),
690 OptDef(OptimizationPass::kDeadCodeElimination,
691 "dead_code_elimination$after_inlining",
692 OptimizationPass::kInliner),
693 // GVN.
694 OptDef(OptimizationPass::kSideEffectsAnalysis,
695 "side_effects$before_gvn"),
Aart Bik6d057002018-04-09 15:39:58 -0700696 OptDef(OptimizationPass::kGlobalValueNumbering),
Aart Bik2e148682018-04-18 16:11:12 -0700697 // Simplification (TODO: only if GVN occurred).
Aart Bik2ca10eb2017-11-15 15:17:53 -0800698 OptDef(OptimizationPass::kSelectGenerator),
Aart Bik2e148682018-04-18 16:11:12 -0700699 OptDef(OptimizationPass::kConstantFolding,
700 "constant_folding$after_gvn"),
701 OptDef(OptimizationPass::kInstructionSimplifier,
702 "instruction_simplifier$after_gvn"),
703 OptDef(OptimizationPass::kDeadCodeElimination,
704 "dead_code_elimination$after_gvn"),
705 // High-level optimizations.
706 OptDef(OptimizationPass::kSideEffectsAnalysis,
707 "side_effects$before_licm"),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800708 OptDef(OptimizationPass::kInvariantCodeMotion),
709 OptDef(OptimizationPass::kInductionVarAnalysis),
710 OptDef(OptimizationPass::kBoundsCheckElimination),
711 OptDef(OptimizationPass::kLoopOptimization),
Aart Bik2e148682018-04-18 16:11:12 -0700712 // Simplification.
713 OptDef(OptimizationPass::kConstantFolding,
714 "constant_folding$after_bce"),
715 OptDef(OptimizationPass::kInstructionSimplifier,
716 "instruction_simplifier$after_bce"),
717 // Other high-level optimizations.
718 OptDef(OptimizationPass::kSideEffectsAnalysis,
719 "side_effects$before_lse"),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800720 OptDef(OptimizationPass::kLoadStoreAnalysis),
721 OptDef(OptimizationPass::kLoadStoreElimination),
722 OptDef(OptimizationPass::kCHAGuardOptimization),
Aart Bik2e148682018-04-18 16:11:12 -0700723 OptDef(OptimizationPass::kDeadCodeElimination,
724 "dead_code_elimination$final"),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800725 OptDef(OptimizationPass::kCodeSinking),
David Brazdil8993caf2015-12-07 10:04:40 +0000726 // The codegen has a few assumptions that only the instruction simplifier
727 // can satisfy. For example, the code generator does not expect to see a
728 // HTypeConversion from a type to the same type.
Aart Bik2e148682018-04-18 16:11:12 -0700729 OptDef(OptimizationPass::kInstructionSimplifier,
730 "instruction_simplifier$before_codegen"),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800731 // Eliminate constructor fences after code sinking to avoid
732 // complicated sinking logic to split a fence with many inputs.
733 OptDef(OptimizationPass::kConstructorFenceRedundancyElimination)
David Brazdil8993caf2015-12-07 10:04:40 +0000734 };
Aart Bik2ca10eb2017-11-15 15:17:53 -0800735 RunOptimizations(graph,
736 codegen,
737 dex_compilation_unit,
738 pass_observer,
739 handles,
Aart Bik24773202018-04-26 10:28:51 -0700740 optimizations);
David Brazdilbbd733e2015-08-18 17:48:17 +0100741
Aart Bik2ca10eb2017-11-15 15:17:53 -0800742 RunArchOptimizations(graph, codegen, dex_compilation_unit, pass_observer, handles);
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000743}
744
Vladimir Markod8dbc8d2017-09-20 13:37:47 +0100745static ArenaVector<linker::LinkerPatch> EmitAndSortLinkerPatches(CodeGenerator* codegen) {
Vladimir Markoca6fff82017-10-03 14:49:14 +0100746 ArenaVector<linker::LinkerPatch> linker_patches(codegen->GetGraph()->GetAllocator()->Adapter());
Vladimir Marko58155012015-08-19 12:49:41 +0000747 codegen->EmitLinkerPatches(&linker_patches);
748
749 // Sort patches by literal offset. Required for .oat_patches encoding.
750 std::sort(linker_patches.begin(), linker_patches.end(),
Vladimir Markod8dbc8d2017-09-20 13:37:47 +0100751 [](const linker::LinkerPatch& lhs, const linker::LinkerPatch& rhs) {
Vladimir Marko58155012015-08-19 12:49:41 +0000752 return lhs.LiteralOffset() < rhs.LiteralOffset();
753 });
754
755 return linker_patches;
756}
757
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100758CompiledMethod* OptimizingCompiler::Emit(ArenaAllocator* allocator,
David Brazdil58282f42016-01-14 12:45:10 +0000759 CodeVectorAllocator* code_allocator,
760 CodeGenerator* codegen,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000761 const DexFile::CodeItem* code_item_for_osr_check) const {
Vladimir Markod8dbc8d2017-09-20 13:37:47 +0100762 ArenaVector<linker::LinkerPatch> linker_patches = EmitAndSortLinkerPatches(codegen);
David Srbeckye7a91942018-08-01 17:23:53 +0100763 ScopedArenaVector<uint8_t> stack_map = codegen->BuildStackMaps(code_item_for_osr_check);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000764
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100765 CompiledMethod* compiled_method = CompiledMethod::SwapAllocCompiledMethod(
Aart Bik2ca10eb2017-11-15 15:17:53 -0800766 GetCompilerDriver(),
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000767 codegen->GetInstructionSet(),
Vladimir Markoca1e0382018-04-11 09:58:41 +0000768 code_allocator->GetMemory(),
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100769 ArrayRef<const uint8_t>(stack_map),
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100770 ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data()),
Vladimir Markod8dbc8d2017-09-20 13:37:47 +0100771 ArrayRef<const linker::LinkerPatch>(linker_patches));
Mathieu Chartiered150002015-08-28 11:16:54 -0700772
Vladimir Markoca1e0382018-04-11 09:58:41 +0000773 CompiledMethodStorage* storage = GetCompilerDriver()->GetCompiledMethodStorage();
774 for (const linker::LinkerPatch& patch : linker_patches) {
775 if (codegen->NeedsThunkCode(patch) && storage->GetThunkCode(patch).empty()) {
776 ArenaVector<uint8_t> code(allocator->Adapter());
777 std::string debug_name;
778 codegen->EmitThunkCode(patch, &code, &debug_name);
779 storage->SetThunkCode(patch, ArrayRef<const uint8_t>(code), debug_name);
780 }
781 }
782
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100783 return compiled_method;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000784}
785
Vladimir Markoca6fff82017-10-03 14:49:14 +0100786CodeGenerator* OptimizingCompiler::TryCompile(ArenaAllocator* allocator,
787 ArenaStack* arena_stack,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000788 CodeVectorAllocator* code_allocator,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000789 const DexCompilationUnit& dex_compilation_unit,
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000790 ArtMethod* method,
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100791 bool baseline,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000792 bool osr,
793 VariableSizedHandleScope* handles) const {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000794 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kAttemptBytecodeCompilation);
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000795 CompilerDriver* compiler_driver = GetCompilerDriver();
Vladimir Markoa0431112018-06-25 09:32:54 +0100796 const CompilerOptions& compiler_options = compiler_driver->GetCompilerOptions();
797 InstructionSet instruction_set = compiler_options.GetInstructionSet();
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000798 const DexFile& dex_file = *dex_compilation_unit.GetDexFile();
799 uint32_t method_idx = dex_compilation_unit.GetDexMethodIndex();
800 const DexFile::CodeItem* code_item = dex_compilation_unit.GetCodeItem();
Calin Juravlecff8cc72015-10-09 12:03:24 +0100801
Roland Levillain3b359c72015-11-17 19:35:12 +0000802 // Always use the Thumb-2 assembler: some runtime functionality
803 // (like implicit stack overflow checks) assume Thumb-2.
Vladimir Marko33bff252017-11-01 14:35:42 +0000804 DCHECK_NE(instruction_set, InstructionSet::kArm);
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100805
806 // Do not attempt to compile on architectures we do not support.
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000807 if (!IsInstructionSetSupported(instruction_set)) {
Igor Murashkin1e065a52017-08-09 13:20:34 -0700808 MaybeRecordStat(compilation_stats_.get(),
809 MethodCompilationStat::kNotCompiledUnsupportedIsa);
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100810 return nullptr;
811 }
812
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000813 if (Compiler::IsPathologicalCase(*code_item, method_idx, dex_file)) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000814 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kNotCompiledPathological);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000815 return nullptr;
816 }
817
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000818 // Implementation of the space filter: do not compile a code item whose size in
Nicolas Geoffray432bf3d2015-07-17 11:11:09 +0100819 // code units is bigger than 128.
820 static constexpr size_t kSpaceFilterOptimizingThreshold = 128;
Andreas Gampe29d38e72016-03-23 15:31:51 +0000821 if ((compiler_options.GetCompilerFilter() == CompilerFilter::kSpace)
Mathieu Chartier698ebbc2018-01-05 11:00:42 -0800822 && (CodeItemInstructionAccessor(dex_file, code_item).InsnsSizeInCodeUnits() >
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800823 kSpaceFilterOptimizingThreshold)) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000824 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kNotCompiledSpaceFilter);
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000825 return nullptr;
826 }
827
Mathieu Chartier8892c6b2018-01-09 15:10:17 -0800828 CodeItemDebugInfoAccessor code_item_accessor(dex_file, code_item, method_idx);
Vladimir Markoca6fff82017-10-03 14:49:14 +0100829 HGraph* graph = new (allocator) HGraph(
830 allocator,
831 arena_stack,
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000832 dex_file,
833 method_idx,
Vladimir Markoa0431112018-06-25 09:32:54 +0100834 compiler_options.GetInstructionSet(),
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000835 kInvalidInvokeType,
836 compiler_driver->GetCompilerOptions().GetDebuggable(),
837 osr);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000838
Mathieu Chartier210531f2018-01-12 10:15:51 -0800839 ArrayRef<const uint8_t> interpreter_metadata;
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000840 // For AOT compilation, we may not get a method, for example if its class is erroneous.
841 // JIT should always have a method.
842 DCHECK(Runtime::Current()->IsAotCompiler() || method != nullptr);
843 if (method != nullptr) {
844 graph->SetArtMethod(method);
845 ScopedObjectAccess soa(Thread::Current());
Nicolas Geoffray8eaa8e52017-11-13 17:47:50 +0000846 interpreter_metadata = method->GetQuickenedInfo();
David Brazdilbadd8262016-02-02 16:28:56 +0000847 }
848
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000849 std::unique_ptr<CodeGenerator> codegen(
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000850 CodeGenerator::Create(graph,
Vladimir Markoa0431112018-06-25 09:32:54 +0100851 compiler_options,
Calin Juravle2ae48182016-03-16 14:05:09 +0000852 compilation_stats_.get()));
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000853 if (codegen.get() == nullptr) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000854 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kNotCompiledNoCodegen);
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000855 return nullptr;
856 }
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100857 codegen->GetAssembler()->cfi().SetEnabled(
David Srbecky5b1c2ca2016-01-25 17:32:41 +0000858 compiler_driver->GetCompilerOptions().GenerateAnyDebugInfo());
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000859
David Brazdil69ba7b72015-06-23 18:27:30 +0100860 PassObserver pass_observer(graph,
David Brazdil69ba7b72015-06-23 18:27:30 +0100861 codegen.get(),
862 visualizer_output_.get(),
Andreas Gampea0d81af2016-10-27 12:04:57 -0700863 compiler_driver,
864 dump_mutex_);
David Brazdil5e8b1372015-01-23 14:39:08 +0000865
David Brazdil809658e2015-02-05 11:34:02 +0000866 {
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000867 VLOG(compiler) << "Building " << pass_observer.GetMethodName();
868 PassScope scope(HGraphBuilder::kBuilderPassName, &pass_observer);
869 HGraphBuilder builder(graph,
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800870 code_item_accessor,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000871 &dex_compilation_unit,
872 &dex_compilation_unit,
Nicolas Geoffray83c8e272017-01-31 14:36:37 +0000873 codegen.get(),
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000874 compilation_stats_.get(),
875 interpreter_metadata,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000876 handles);
877 GraphAnalysisResult result = builder.BuildGraph();
878 if (result != kAnalysisSuccess) {
879 switch (result) {
Igor Murashkin1e065a52017-08-09 13:20:34 -0700880 case kAnalysisSkipped: {
881 MaybeRecordStat(compilation_stats_.get(),
882 MethodCompilationStat::kNotCompiledSkipped);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000883 break;
Nicolas Geoffray8a62a4c2018-07-03 09:39:07 +0100884 }
Igor Murashkin1e065a52017-08-09 13:20:34 -0700885 case kAnalysisInvalidBytecode: {
886 MaybeRecordStat(compilation_stats_.get(),
887 MethodCompilationStat::kNotCompiledInvalidBytecode);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000888 break;
Nicolas Geoffray8a62a4c2018-07-03 09:39:07 +0100889 }
Igor Murashkin1e065a52017-08-09 13:20:34 -0700890 case kAnalysisFailThrowCatchLoop: {
891 MaybeRecordStat(compilation_stats_.get(),
892 MethodCompilationStat::kNotCompiledThrowCatchLoop);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000893 break;
Nicolas Geoffray8a62a4c2018-07-03 09:39:07 +0100894 }
Igor Murashkin1e065a52017-08-09 13:20:34 -0700895 case kAnalysisFailAmbiguousArrayOp: {
896 MaybeRecordStat(compilation_stats_.get(),
897 MethodCompilationStat::kNotCompiledAmbiguousArrayOp);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000898 break;
Nicolas Geoffray8a62a4c2018-07-03 09:39:07 +0100899 }
Nicolas Geoffray0846a8f2018-09-12 15:21:07 +0100900 case kAnalysisFailIrreducibleLoopAndStringInit: {
901 MaybeRecordStat(compilation_stats_.get(),
902 MethodCompilationStat::kNotCompiledIrreducibleLoopAndStringInit);
903 break;
904 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000905 case kAnalysisSuccess:
906 UNREACHABLE();
David Brazdil809658e2015-02-05 11:34:02 +0000907 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000908 pass_observer.SetGraphInBadState();
909 return nullptr;
Nicolas Geoffrayf5370122014-12-02 11:51:19 +0000910 }
David Brazdilbadd8262016-02-02 16:28:56 +0000911 }
Vladimir Markof9f64412015-09-02 14:05:49 +0100912
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +0100913 if (baseline) {
914 RunBaselineOptimizations(graph, codegen.get(), dex_compilation_unit, &pass_observer, handles);
915 } else {
916 RunOptimizations(graph, codegen.get(), dex_compilation_unit, &pass_observer, handles);
917 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000918
919 RegisterAllocator::Strategy regalloc_strategy =
920 compiler_options.GetRegisterAllocationStrategy();
Igor Murashkin1e065a52017-08-09 13:20:34 -0700921 AllocateRegisters(graph,
922 codegen.get(),
923 &pass_observer,
Igor Murashkin6ef45672017-08-08 13:59:55 -0700924 regalloc_strategy,
925 compilation_stats_.get());
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000926
927 codegen->Compile(code_allocator);
928 pass_observer.DumpDisassembly();
929
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000930 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kCompiledBytecode);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000931 return codegen.release();
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000932}
933
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000934CodeGenerator* OptimizingCompiler::TryCompileIntrinsic(
935 ArenaAllocator* allocator,
936 ArenaStack* arena_stack,
937 CodeVectorAllocator* code_allocator,
938 const DexCompilationUnit& dex_compilation_unit,
939 ArtMethod* method,
940 VariableSizedHandleScope* handles) const {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000941 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kAttemptIntrinsicCompilation);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000942 CompilerDriver* compiler_driver = GetCompilerDriver();
Vladimir Markoa0431112018-06-25 09:32:54 +0100943 const CompilerOptions& compiler_options = compiler_driver->GetCompilerOptions();
944 InstructionSet instruction_set = compiler_options.GetInstructionSet();
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000945 const DexFile& dex_file = *dex_compilation_unit.GetDexFile();
946 uint32_t method_idx = dex_compilation_unit.GetDexMethodIndex();
947
948 // Always use the Thumb-2 assembler: some runtime functionality
949 // (like implicit stack overflow checks) assume Thumb-2.
950 DCHECK_NE(instruction_set, InstructionSet::kArm);
951
952 // Do not attempt to compile on architectures we do not support.
953 if (!IsInstructionSetSupported(instruction_set)) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000954 return nullptr;
955 }
956
957 HGraph* graph = new (allocator) HGraph(
958 allocator,
959 arena_stack,
960 dex_file,
961 method_idx,
Vladimir Markoa0431112018-06-25 09:32:54 +0100962 compiler_driver->GetCompilerOptions().GetInstructionSet(),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000963 kInvalidInvokeType,
964 compiler_driver->GetCompilerOptions().GetDebuggable(),
965 /* osr */ false);
966
967 DCHECK(Runtime::Current()->IsAotCompiler());
968 DCHECK(method != nullptr);
969 graph->SetArtMethod(method);
970
971 std::unique_ptr<CodeGenerator> codegen(
972 CodeGenerator::Create(graph,
Vladimir Markoa0431112018-06-25 09:32:54 +0100973 compiler_options,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000974 compilation_stats_.get()));
975 if (codegen.get() == nullptr) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000976 return nullptr;
977 }
Vladimir Markoa0431112018-06-25 09:32:54 +0100978 codegen->GetAssembler()->cfi().SetEnabled(compiler_options.GenerateAnyDebugInfo());
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000979
980 PassObserver pass_observer(graph,
981 codegen.get(),
982 visualizer_output_.get(),
983 compiler_driver,
984 dump_mutex_);
985
986 {
987 VLOG(compiler) << "Building intrinsic graph " << pass_observer.GetMethodName();
988 PassScope scope(HGraphBuilder::kBuilderPassName, &pass_observer);
989 HGraphBuilder builder(graph,
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800990 CodeItemDebugInfoAccessor(), // Null code item.
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000991 &dex_compilation_unit,
992 &dex_compilation_unit,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000993 codegen.get(),
994 compilation_stats_.get(),
Mathieu Chartier210531f2018-01-12 10:15:51 -0800995 /* interpreter_metadata */ ArrayRef<const uint8_t>(),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000996 handles);
997 builder.BuildIntrinsicGraph(method);
998 }
999
Aart Bik2ca10eb2017-11-15 15:17:53 -08001000 OptimizationDef optimizations[] = {
Nicolas Geoffray76d4bb0f32018-09-21 12:58:45 +01001001 // The codegen has a few assumptions that only the instruction simplifier
1002 // can satisfy.
Aart Bik2ca10eb2017-11-15 15:17:53 -08001003 OptDef(OptimizationPass::kInstructionSimplifier),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001004 };
Aart Bik2ca10eb2017-11-15 15:17:53 -08001005 RunOptimizations(graph,
1006 codegen.get(),
1007 dex_compilation_unit,
1008 &pass_observer,
1009 handles,
1010 optimizations);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001011
Aart Bik2ca10eb2017-11-15 15:17:53 -08001012 RunArchOptimizations(graph, codegen.get(), dex_compilation_unit, &pass_observer, handles);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001013
1014 AllocateRegisters(graph,
1015 codegen.get(),
1016 &pass_observer,
1017 compiler_driver->GetCompilerOptions().GetRegisterAllocationStrategy(),
1018 compilation_stats_.get());
1019 if (!codegen->IsLeafMethod()) {
1020 VLOG(compiler) << "Intrinsic method is not leaf: " << method->GetIntrinsic()
1021 << " " << graph->PrettyMethod();
1022 return nullptr;
1023 }
1024
1025 codegen->Compile(code_allocator);
1026 pass_observer.DumpDisassembly();
1027
1028 VLOG(compiler) << "Compiled intrinsic: " << method->GetIntrinsic()
1029 << " " << graph->PrettyMethod();
Vladimir Markocd09e1f2017-11-24 15:02:40 +00001030 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kCompiledIntrinsic);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001031 return codegen.release();
1032}
1033
Nicolas Geoffray216eaa22015-03-17 17:09:30 +00001034CompiledMethod* OptimizingCompiler::Compile(const DexFile::CodeItem* code_item,
1035 uint32_t access_flags,
1036 InvokeType invoke_type,
1037 uint16_t class_def_idx,
1038 uint32_t method_idx,
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001039 Handle<mirror::ClassLoader> jclass_loader,
Mathieu Chartier736b5602015-09-02 14:54:11 -07001040 const DexFile& dex_file,
1041 Handle<mirror::DexCache> dex_cache) const {
Calin Juravlef1c6d9e2015-04-13 18:42:21 +01001042 CompilerDriver* compiler_driver = GetCompilerDriver();
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001043 CompiledMethod* compiled_method = nullptr;
1044 Runtime* runtime = Runtime::Current();
1045 DCHECK(runtime->IsAotCompiler());
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001046 const VerifiedMethod* verified_method = compiler_driver->GetVerifiedMethod(&dex_file, method_idx);
1047 DCHECK(!verified_method->HasRuntimeThrow());
Vladimir Markoca6fff82017-10-03 14:49:14 +01001048 if (compiler_driver->IsMethodVerifiedWithoutFailures(method_idx, class_def_idx, dex_file) ||
1049 verifier::CanCompilerHandleVerificationFailure(
1050 verified_method->GetEncounteredVerificationFailures())) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001051 ArenaAllocator allocator(runtime->GetArenaPool());
1052 ArenaStack arena_stack(runtime->GetArenaPool());
Vladimir Markoca6fff82017-10-03 14:49:14 +01001053 CodeVectorAllocator code_allocator(&allocator);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001054 std::unique_ptr<CodeGenerator> codegen;
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001055 bool compiled_intrinsic = false;
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001056 {
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001057 ScopedObjectAccess soa(Thread::Current());
1058 ArtMethod* method =
1059 runtime->GetClassLinker()->ResolveMethod<ClassLinker::ResolveMode::kCheckICCEAndIAE>(
1060 method_idx, dex_cache, jclass_loader, /*referrer=*/ nullptr, invoke_type);
1061 DCHECK_EQ(method == nullptr, soa.Self()->IsExceptionPending());
1062 soa.Self()->ClearException(); // Suppress exception if any.
1063 VariableSizedHandleScope handles(soa.Self());
1064 Handle<mirror::Class> compiling_class =
1065 handles.NewHandle(method != nullptr ? method->GetDeclaringClass() : nullptr);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001066 DexCompilationUnit dex_compilation_unit(
1067 jclass_loader,
1068 runtime->GetClassLinker(),
1069 dex_file,
1070 code_item,
1071 class_def_idx,
1072 method_idx,
1073 access_flags,
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001074 /*verified_method=*/ nullptr, // Not needed by the Optimizing compiler.
1075 dex_cache,
1076 compiling_class);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001077 // Go to native so that we don't block GC during compilation.
1078 ScopedThreadSuspension sts(soa.Self(), kNative);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001079 if (method != nullptr && UNLIKELY(method->IsIntrinsic())) {
1080 DCHECK(compiler_driver->GetCompilerOptions().IsBootImage());
1081 codegen.reset(
1082 TryCompileIntrinsic(&allocator,
1083 &arena_stack,
1084 &code_allocator,
1085 dex_compilation_unit,
1086 method,
1087 &handles));
1088 if (codegen != nullptr) {
1089 compiled_intrinsic = true;
1090 }
1091 }
1092 if (codegen == nullptr) {
1093 codegen.reset(
1094 TryCompile(&allocator,
1095 &arena_stack,
1096 &code_allocator,
1097 dex_compilation_unit,
1098 method,
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +01001099 compiler_driver->GetCompilerOptions().IsBaseline(),
1100 /* osr= */ false,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001101 &handles));
1102 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001103 }
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001104 if (codegen.get() != nullptr) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001105 compiled_method = Emit(&allocator,
1106 &code_allocator,
1107 codegen.get(),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001108 compiled_intrinsic ? nullptr : code_item);
1109 if (compiled_intrinsic) {
1110 compiled_method->MarkAsIntrinsic();
1111 }
Vladimir Marko3a40bf22016-03-22 16:26:33 +00001112
1113 if (kArenaAllocatorCountAllocations) {
Vladimir Marko174b2e22017-10-12 13:34:49 +01001114 codegen.reset(); // Release codegen's ScopedArenaAllocator for memory accounting.
Vladimir Markoca6fff82017-10-03 14:49:14 +01001115 size_t total_allocated = allocator.BytesAllocated() + arena_stack.PeakBytesAllocated();
1116 if (total_allocated > kArenaAllocatorMemoryReportThreshold) {
1117 MemStats mem_stats(allocator.GetMemStats());
1118 MemStats peak_stats(arena_stack.GetPeakStats());
Vladimir Marko69d310e2017-10-09 14:12:23 +01001119 LOG(INFO) << "Used " << total_allocated << " bytes of arena memory for compiling "
1120 << dex_file.PrettyMethod(method_idx)
Vladimir Markoca6fff82017-10-03 14:49:14 +01001121 << "\n" << Dumpable<MemStats>(mem_stats)
1122 << "\n" << Dumpable<MemStats>(peak_stats);
Vladimir Marko3a40bf22016-03-22 16:26:33 +00001123 }
1124 }
Calin Juravlef1c6d9e2015-04-13 18:42:21 +01001125 }
Nicolas Geoffray0c3c2662015-10-15 13:53:04 +01001126 } else {
Igor Murashkin1e065a52017-08-09 13:20:34 -07001127 MethodCompilationStat method_stat;
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001128 if (compiler_driver->GetCompilerOptions().VerifyAtRuntime()) {
Igor Murashkin1e065a52017-08-09 13:20:34 -07001129 method_stat = MethodCompilationStat::kNotCompiledVerifyAtRuntime;
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001130 } else {
Igor Murashkin1e065a52017-08-09 13:20:34 -07001131 method_stat = MethodCompilationStat::kNotCompiledVerificationError;
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001132 }
Igor Murashkin1e065a52017-08-09 13:20:34 -07001133 MaybeRecordStat(compilation_stats_.get(), method_stat);
Calin Juravlef1c6d9e2015-04-13 18:42:21 +01001134 }
1135
Calin Juravlecff8cc72015-10-09 12:03:24 +01001136 if (kIsDebugBuild &&
1137 IsCompilingWithCoreImage() &&
Vladimir Markoa0431112018-06-25 09:32:54 +01001138 IsInstructionSetSupported(compiler_driver->GetCompilerOptions().GetInstructionSet())) {
Roland Levillain0d5a2812015-11-13 10:07:31 +00001139 // For testing purposes, we put a special marker on method names
Goran Jakovljevic9c4f0d8f2017-04-05 16:27:25 +02001140 // that should be compiled with this compiler (when the
1141 // instruction set is supported). This makes sure we're not
Roland Levillain0d5a2812015-11-13 10:07:31 +00001142 // regressing.
David Sehr709b0702016-10-13 09:12:37 -07001143 std::string method_name = dex_file.PrettyMethod(method_idx);
Calin Juravle09b1d6f2015-10-07 12:08:54 +01001144 bool shouldCompile = method_name.find("$opt$") != std::string::npos;
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001145 DCHECK((compiled_method != nullptr) || !shouldCompile) << "Didn't compile " << method_name;
Calin Juravle09b1d6f2015-10-07 12:08:54 +01001146 }
1147
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001148 return compiled_method;
1149}
1150
David Srbeckye7a91942018-08-01 17:23:53 +01001151static ScopedArenaVector<uint8_t> CreateJniStackMap(ScopedArenaAllocator* allocator,
1152 const JniCompiledMethod& jni_compiled_method) {
Vladimir Markoced04832018-07-26 14:42:17 +01001153 // StackMapStream is quite large, so allocate it using the ScopedArenaAllocator
1154 // to stay clear of the frame size limit.
1155 std::unique_ptr<StackMapStream> stack_map_stream(
David Srbeckye7a91942018-08-01 17:23:53 +01001156 new (allocator) StackMapStream(allocator, jni_compiled_method.GetInstructionSet()));
Vladimir Markoced04832018-07-26 14:42:17 +01001157 stack_map_stream->BeginMethod(
David Srbeckyafc97bc2018-07-05 08:14:35 +00001158 jni_compiled_method.GetFrameSize(),
1159 jni_compiled_method.GetCoreSpillMask(),
1160 jni_compiled_method.GetFpSpillMask(),
1161 /* num_dex_registers */ 0);
Vladimir Markoced04832018-07-26 14:42:17 +01001162 stack_map_stream->EndMethod();
David Srbeckye7a91942018-08-01 17:23:53 +01001163 return stack_map_stream->Encode();
David Srbeckyafc97bc2018-07-05 08:14:35 +00001164}
1165
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001166CompiledMethod* OptimizingCompiler::JniCompile(uint32_t access_flags,
1167 uint32_t method_idx,
1168 const DexFile& dex_file,
1169 Handle<mirror::DexCache> dex_cache) const {
David Srbeckyafc97bc2018-07-05 08:14:35 +00001170 Runtime* runtime = Runtime::Current();
1171 ArenaAllocator allocator(runtime->GetArenaPool());
1172 ArenaStack arena_stack(runtime->GetArenaPool());
1173
Vladimir Markoa0431112018-06-25 09:32:54 +01001174 const CompilerOptions& compiler_options = GetCompilerDriver()->GetCompilerOptions();
1175 if (compiler_options.IsBootImage()) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001176 ScopedObjectAccess soa(Thread::Current());
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001177 ArtMethod* method = runtime->GetClassLinker()->LookupResolvedMethod(
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001178 method_idx, dex_cache.Get(), /*class_loader=*/ nullptr);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001179 if (method != nullptr && UNLIKELY(method->IsIntrinsic())) {
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001180 VariableSizedHandleScope handles(soa.Self());
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001181 ScopedNullHandle<mirror::ClassLoader> class_loader; // null means boot class path loader.
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001182 Handle<mirror::Class> compiling_class = handles.NewHandle(method->GetDeclaringClass());
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001183 DexCompilationUnit dex_compilation_unit(
1184 class_loader,
1185 runtime->GetClassLinker(),
1186 dex_file,
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001187 /*code_item=*/ nullptr,
1188 /*class_def_idx=*/ DexFile::kDexNoIndex16,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001189 method_idx,
1190 access_flags,
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001191 /*verified_method=*/ nullptr,
1192 dex_cache,
1193 compiling_class);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001194 CodeVectorAllocator code_allocator(&allocator);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001195 // Go to native so that we don't block GC during compilation.
1196 ScopedThreadSuspension sts(soa.Self(), kNative);
1197 std::unique_ptr<CodeGenerator> codegen(
1198 TryCompileIntrinsic(&allocator,
1199 &arena_stack,
1200 &code_allocator,
1201 dex_compilation_unit,
1202 method,
1203 &handles));
1204 if (codegen != nullptr) {
1205 CompiledMethod* compiled_method = Emit(&allocator,
1206 &code_allocator,
1207 codegen.get(),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001208 /* code_item_for_osr_check */ nullptr);
1209 compiled_method->MarkAsIntrinsic();
1210 return compiled_method;
1211 }
1212 }
1213 }
1214
Vladimir Marko7bdc6e72017-11-28 12:37:13 +00001215 JniCompiledMethod jni_compiled_method = ArtQuickJniCompileMethod(
Vladimir Markoa0431112018-06-25 09:32:54 +01001216 compiler_options, access_flags, method_idx, dex_file);
Vladimir Markocd09e1f2017-11-24 15:02:40 +00001217 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kCompiledNativeStub);
David Srbeckyafc97bc2018-07-05 08:14:35 +00001218
David Srbeckye7a91942018-08-01 17:23:53 +01001219 ScopedArenaAllocator stack_map_allocator(&arena_stack); // Will hold the stack map.
1220 ScopedArenaVector<uint8_t> stack_map = CreateJniStackMap(&stack_map_allocator,
1221 jni_compiled_method);
Vladimir Marko7bdc6e72017-11-28 12:37:13 +00001222 return CompiledMethod::SwapAllocCompiledMethod(
1223 GetCompilerDriver(),
1224 jni_compiled_method.GetInstructionSet(),
1225 jni_compiled_method.GetCode(),
David Srbeckyafc97bc2018-07-05 08:14:35 +00001226 ArrayRef<const uint8_t>(stack_map),
Vladimir Marko7bdc6e72017-11-28 12:37:13 +00001227 jni_compiled_method.GetCfi(),
1228 /* patches */ ArrayRef<const linker::LinkerPatch>());
Nicolas Geoffray216eaa22015-03-17 17:09:30 +00001229}
1230
Andreas Gampe53c913b2014-08-12 23:19:23 -07001231Compiler* CreateOptimizingCompiler(CompilerDriver* driver) {
1232 return new OptimizingCompiler(driver);
1233}
1234
Nicolas Geoffray335005e2015-06-25 10:01:47 +01001235bool IsCompilingWithCoreImage() {
1236 const std::string& image = Runtime::Current()->GetImageLocation();
Roland Levillain2b03a1f2017-06-06 16:09:59 +01001237 return CompilerDriver::IsCoreImageFilename(image);
Nicolas Geoffray335005e2015-06-25 10:01:47 +01001238}
1239
Nicolas Geoffrayfbdfa6d2017-02-03 10:43:13 +00001240bool EncodeArtMethodInInlineInfo(ArtMethod* method ATTRIBUTE_UNUSED) {
1241 // Note: the runtime is null only for unit testing.
1242 return Runtime::Current() == nullptr || !Runtime::Current()->IsAotCompiler();
1243}
1244
1245bool CanEncodeInlinedMethodInStackMap(const DexFile& caller_dex_file, ArtMethod* callee) {
1246 if (!Runtime::Current()->IsAotCompiler()) {
1247 // JIT can always encode methods in stack maps.
1248 return true;
1249 }
1250 if (IsSameDexFile(caller_dex_file, *callee->GetDexFile())) {
1251 return true;
1252 }
1253 // TODO(ngeoffray): Support more AOT cases for inlining:
1254 // - methods in multidex
1255 // - methods in boot image for on-device non-PIC compilation.
1256 return false;
1257}
1258
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001259bool OptimizingCompiler::JitCompile(Thread* self,
1260 jit::JitCodeCache* code_cache,
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +00001261 ArtMethod* method,
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +01001262 bool baseline,
Nicolas Geoffray01db5f72017-07-19 15:05:49 +01001263 bool osr,
1264 jit::JitLogger* jit_logger) {
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001265 StackHandleScope<3> hs(self);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001266 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(
1267 method->GetDeclaringClass()->GetClassLoader()));
1268 Handle<mirror::DexCache> dex_cache(hs.NewHandle(method->GetDexCache()));
Nicolas Geoffray250a3782016-04-20 16:27:53 +01001269 DCHECK(method->IsCompilable());
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001270
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001271 const DexFile* dex_file = method->GetDexFile();
1272 const uint16_t class_def_idx = method->GetClassDefIndex();
1273 const DexFile::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset());
1274 const uint32_t method_idx = method->GetDexMethodIndex();
1275 const uint32_t access_flags = method->GetAccessFlags();
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001276
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001277 Runtime* runtime = Runtime::Current();
1278 ArenaAllocator allocator(runtime->GetJitArenaPool());
Vladimir Marko2196c652017-11-30 16:16:07 +00001279
1280 if (UNLIKELY(method->IsNative())) {
Vladimir Markoa0431112018-06-25 09:32:54 +01001281 const CompilerOptions& compiler_options = GetCompilerDriver()->GetCompilerOptions();
Vladimir Marko2196c652017-11-30 16:16:07 +00001282 JniCompiledMethod jni_compiled_method = ArtQuickJniCompileMethod(
Vladimir Markoa0431112018-06-25 09:32:54 +01001283 compiler_options, access_flags, method_idx, *dex_file);
Vladimir Markoac3ac682018-09-20 11:01:43 +01001284 std::vector<Handle<mirror::Object>> roots;
Vladimir Marko2196c652017-11-30 16:16:07 +00001285 ArenaSet<ArtMethod*, std::less<ArtMethod*>> cha_single_implementation_list(
1286 allocator.Adapter(kArenaAllocCHA));
David Srbeckyafc97bc2018-07-05 08:14:35 +00001287 ArenaStack arena_stack(runtime->GetJitArenaPool());
1288 // StackMapStream is large and it does not fit into this frame, so we need helper method.
David Srbeckye7a91942018-08-01 17:23:53 +01001289 ScopedArenaAllocator stack_map_allocator(&arena_stack); // Will hold the stack map.
1290 ScopedArenaVector<uint8_t> stack_map = CreateJniStackMap(&stack_map_allocator,
1291 jni_compiled_method);
David Srbeckyafc97bc2018-07-05 08:14:35 +00001292 uint8_t* stack_map_data = nullptr;
David Srbeckyafc97bc2018-07-05 08:14:35 +00001293 uint8_t* roots_data = nullptr;
1294 uint32_t data_size = code_cache->ReserveData(self,
1295 stack_map.size(),
David Srbeckyafc97bc2018-07-05 08:14:35 +00001296 /* number_of_roots */ 0,
1297 method,
1298 &stack_map_data,
David Srbeckyafc97bc2018-07-05 08:14:35 +00001299 &roots_data);
1300 if (stack_map_data == nullptr || roots_data == nullptr) {
1301 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kJitOutOfMemoryForCommit);
1302 return false;
1303 }
1304 memcpy(stack_map_data, stack_map.data(), stack_map.size());
David Srbeckyafc97bc2018-07-05 08:14:35 +00001305
Vladimir Marko2196c652017-11-30 16:16:07 +00001306 const void* code = code_cache->CommitCode(
1307 self,
1308 method,
David Srbeckyafc97bc2018-07-05 08:14:35 +00001309 stack_map_data,
David Srbeckyafc97bc2018-07-05 08:14:35 +00001310 roots_data,
Vladimir Marko2196c652017-11-30 16:16:07 +00001311 jni_compiled_method.GetCode().data(),
1312 jni_compiled_method.GetCode().size(),
David Srbeckyafc97bc2018-07-05 08:14:35 +00001313 data_size,
Vladimir Marko2196c652017-11-30 16:16:07 +00001314 osr,
1315 roots,
1316 /* has_should_deoptimize_flag */ false,
1317 cha_single_implementation_list);
1318 if (code == nullptr) {
1319 return false;
1320 }
1321
David Srbeckyf4886df2017-12-11 16:06:29 +00001322 if (compiler_options.GenerateAnyDebugInfo()) {
Vladimir Marko2196c652017-11-30 16:16:07 +00001323 const auto* method_header = reinterpret_cast<const OatQuickMethodHeader*>(code);
1324 const uintptr_t code_address = reinterpret_cast<uintptr_t>(method_header->GetCode());
1325 debug::MethodDebugInfo info = {};
David Srbeckyc684f332018-01-19 17:38:06 +00001326 DCHECK(info.custom_name.empty());
Vladimir Marko2196c652017-11-30 16:16:07 +00001327 info.dex_file = dex_file;
1328 info.class_def_index = class_def_idx;
1329 info.dex_method_index = method_idx;
1330 info.access_flags = access_flags;
1331 info.code_item = code_item;
1332 info.isa = jni_compiled_method.GetInstructionSet();
1333 info.deduped = false;
1334 info.is_native_debuggable = compiler_options.GetNativeDebuggable();
1335 info.is_optimized = true;
1336 info.is_code_address_text_relative = false;
1337 info.code_address = code_address;
1338 info.code_size = jni_compiled_method.GetCode().size();
1339 info.frame_size_in_bytes = method_header->GetFrameSizeInBytes();
1340 info.code_info = nullptr;
1341 info.cfi = jni_compiled_method.GetCfi();
David Srbeckyc9e02082018-01-24 16:44:02 +00001342 GenerateJitDebugInfo(method, info);
Vladimir Marko2196c652017-11-30 16:16:07 +00001343 }
1344
1345 Runtime::Current()->GetJit()->AddMemoryUsage(method, allocator.BytesUsed());
1346 if (jit_logger != nullptr) {
1347 jit_logger->WriteLog(code, jni_compiled_method.GetCode().size(), method);
1348 }
1349 return true;
1350 }
1351
1352 ArenaStack arena_stack(runtime->GetJitArenaPool());
Vladimir Markoca6fff82017-10-03 14:49:14 +01001353 CodeVectorAllocator code_allocator(&allocator);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001354 VariableSizedHandleScope handles(self);
1355
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001356 std::unique_ptr<CodeGenerator> codegen;
1357 {
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001358 Handle<mirror::Class> compiling_class = handles.NewHandle(method->GetDeclaringClass());
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001359 DexCompilationUnit dex_compilation_unit(
1360 class_loader,
1361 runtime->GetClassLinker(),
1362 *dex_file,
1363 code_item,
1364 class_def_idx,
1365 method_idx,
1366 access_flags,
Vladimir Markoa2c211c2018-11-01 09:50:52 +00001367 /*verified_method=*/ nullptr,
1368 dex_cache,
1369 compiling_class);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001370
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001371 // Go to native so that we don't block GC during compilation.
1372 ScopedThreadSuspension sts(self, kNative);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001373 codegen.reset(
Vladimir Markoca6fff82017-10-03 14:49:14 +01001374 TryCompile(&allocator,
1375 &arena_stack,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001376 &code_allocator,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001377 dex_compilation_unit,
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +00001378 method,
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +01001379 baseline,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001380 osr,
1381 &handles));
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001382 if (codegen.get() == nullptr) {
1383 return false;
1384 }
1385 }
1386
David Srbeckye7a91942018-08-01 17:23:53 +01001387 ScopedArenaVector<uint8_t> stack_map = codegen->BuildStackMaps(code_item);
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001388 size_t number_of_roots = codegen->GetNumberOfJitRoots();
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001389 uint8_t* stack_map_data = nullptr;
1390 uint8_t* roots_data = nullptr;
Orion Hodsondbd05fe2017-08-10 11:41:35 +01001391 uint32_t data_size = code_cache->ReserveData(self,
David Srbeckye7a91942018-08-01 17:23:53 +01001392 stack_map.size(),
Orion Hodsondbd05fe2017-08-10 11:41:35 +01001393 number_of_roots,
1394 method,
1395 &stack_map_data,
Orion Hodsondbd05fe2017-08-10 11:41:35 +01001396 &roots_data);
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001397 if (stack_map_data == nullptr || roots_data == nullptr) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +00001398 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kJitOutOfMemoryForCommit);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001399 return false;
1400 }
David Srbeckye7a91942018-08-01 17:23:53 +01001401 memcpy(stack_map_data, stack_map.data(), stack_map.size());
Vladimir Markoac3ac682018-09-20 11:01:43 +01001402 std::vector<Handle<mirror::Object>> roots;
1403 codegen->EmitJitRoots(code_allocator.GetData(), roots_data, &roots);
1404 // The root Handle<>s filled by the codegen reference entries in the VariableSizedHandleScope.
1405 DCHECK(std::all_of(roots.begin(),
1406 roots.end(),
1407 [&handles](Handle<mirror::Object> root){
1408 return handles.Contains(root.GetReference());
1409 }));
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001410
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001411 const void* code = code_cache->CommitCode(
1412 self,
1413 method,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001414 stack_map_data,
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001415 roots_data,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001416 code_allocator.GetMemory().data(),
Vladimir Markoca1e0382018-04-11 09:58:41 +00001417 code_allocator.GetMemory().size(),
Orion Hodsondbd05fe2017-08-10 11:41:35 +01001418 data_size,
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001419 osr,
Mingyao Yang063fc772016-08-02 11:02:54 -07001420 roots,
1421 codegen->GetGraph()->HasShouldDeoptimizeFlag(),
1422 codegen->GetGraph()->GetCHASingleImplementationList());
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001423
1424 if (code == nullptr) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +00001425 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kJitOutOfMemoryForCommit);
Nicolas Geoffrayf46501c2016-11-22 13:45:36 +00001426 code_cache->ClearData(self, stack_map_data, roots_data);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001427 return false;
1428 }
1429
David Srbecky91cc06c2016-03-07 16:13:58 +00001430 const CompilerOptions& compiler_options = GetCompilerDriver()->GetCompilerOptions();
David Srbeckyf4886df2017-12-11 16:06:29 +00001431 if (compiler_options.GenerateAnyDebugInfo()) {
David Srbecky5cc349f2015-12-18 15:04:48 +00001432 const auto* method_header = reinterpret_cast<const OatQuickMethodHeader*>(code);
1433 const uintptr_t code_address = reinterpret_cast<uintptr_t>(method_header->GetCode());
Vladimir Marko1b404a82017-09-01 13:35:26 +01001434 debug::MethodDebugInfo info = {};
David Srbeckyc684f332018-01-19 17:38:06 +00001435 DCHECK(info.custom_name.empty());
David Srbecky197160d2016-03-07 17:33:57 +00001436 info.dex_file = dex_file;
1437 info.class_def_index = class_def_idx;
1438 info.dex_method_index = method_idx;
1439 info.access_flags = access_flags;
1440 info.code_item = code_item;
1441 info.isa = codegen->GetInstructionSet();
1442 info.deduped = false;
1443 info.is_native_debuggable = compiler_options.GetNativeDebuggable();
1444 info.is_optimized = true;
1445 info.is_code_address_text_relative = false;
1446 info.code_address = code_address;
Vladimir Markoca1e0382018-04-11 09:58:41 +00001447 info.code_size = code_allocator.GetMemory().size();
David Srbecky197160d2016-03-07 17:33:57 +00001448 info.frame_size_in_bytes = method_header->GetFrameSizeInBytes();
David Srbeckye7a91942018-08-01 17:23:53 +01001449 info.code_info = stack_map.size() == 0 ? nullptr : stack_map_data;
David Srbecky197160d2016-03-07 17:33:57 +00001450 info.cfi = ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data());
David Srbeckyc9e02082018-01-24 16:44:02 +00001451 GenerateJitDebugInfo(method, info);
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
Stephen Hines48ba1972018-09-24 13:35:54 -07001475void OptimizingCompiler::GenerateJitDebugInfo(
1476 ArtMethod* method, const debug::MethodDebugInfo& info) {
David Srbeckyc684f332018-01-19 17:38:06 +00001477 const CompilerOptions& compiler_options = GetCompilerDriver()->GetCompilerOptions();
1478 DCHECK(compiler_options.GenerateAnyDebugInfo());
1479
1480 // If both flags are passed, generate full debug info.
1481 const bool mini_debug_info = !compiler_options.GetGenerateDebugInfo();
1482
1483 // Create entry for the single method that we just compiled.
1484 std::vector<uint8_t> elf_file = debug::MakeElfFileForJIT(
Vladimir Markoa0431112018-06-25 09:32:54 +01001485 compiler_options.GetInstructionSet(),
1486 compiler_options.GetInstructionSetFeatures(),
David Srbeckyc684f332018-01-19 17:38:06 +00001487 mini_debug_info,
1488 ArrayRef<const debug::MethodDebugInfo>(&info, 1));
David Srbeckyfb3de3d2018-01-29 16:11:49 +00001489 MutexLock mu(Thread::Current(), *Locks::native_debug_interface_lock_);
David Srbecky440a9b32018-02-15 17:47:29 +00001490 AddNativeDebugInfoForJit(reinterpret_cast<const void*>(info.code_address), elf_file);
David Srbeckyc9e02082018-01-24 16:44:02 +00001491
1492 VLOG(jit)
1493 << "JIT mini-debug-info added for " << ArtMethod::PrettyMethod(method)
1494 << " size=" << PrettySize(elf_file.size())
David Srbecky440a9b32018-02-15 17:47:29 +00001495 << " total_size=" << PrettySize(GetJitNativeDebugInfoMemUsage());
David Srbeckyc684f332018-01-19 17:38:06 +00001496}
1497
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +00001498} // namespace art