blob: f4bafcbef0b92597e0966dd96941dc72ddc5f5fd [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 */
77class CodeVectorAllocator FINAL : public CodeAllocator {
78 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
82 virtual uint8_t* Allocate(size_t size) {
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000083 memory_.resize(size);
Nicolas Geoffray787c3072014-03-17 10:20:19 +000084 return &memory_[0];
85 }
86
Vladimir Markoca1e0382018-04-11 09:58:41 +000087 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
Andreas Gampe53c913b2014-08-12 23:19:23 -0700267class OptimizingCompiler FINAL : public Compiler {
268 public:
269 explicit OptimizingCompiler(CompilerDriver* driver);
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -0700270 ~OptimizingCompiler() OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700271
Vladimir Markodf739842016-03-23 16:59:07 +0000272 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,
281 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,
286 Handle<mirror::DexCache> dex_cache) const OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700287
Mathieu Chartiere401d142015-04-22 13:56:20 -0700288 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
David Brazdilee690a32014-12-01 17:04:16 +0000294 void Init() OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700295
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000296 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,
301 bool osr,
302 jit::JitLogger* jit_logger)
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000303 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,
322 GetCompilerDriver(),
323 dex_compilation_unit,
324 handles);
325 DCHECK_EQ(length, optimizations.size());
Aart Bik2e148682018-04-18 16:11:12 -0700326 // Run the optimization passes one by one. Any "depends_on" pass refers back to
327 // the most recent occurrence of that pass, skipped or executed.
328 std::bitset<static_cast<size_t>(OptimizationPass::kLast) + 1u> pass_changes;
329 pass_changes[static_cast<size_t>(OptimizationPass::kNone)] = true;
Aart Bik24773202018-04-26 10:28:51 -0700330 bool change = false;
Aart Bik2ca10eb2017-11-15 15:17:53 -0800331 for (size_t i = 0; i < length; ++i) {
Aart Bik2e148682018-04-18 16:11:12 -0700332 if (pass_changes[static_cast<size_t>(definitions[i].depends_on)]) {
333 // Execute the pass and record whether it changed anything.
334 PassScope scope(optimizations[i]->GetPassName(), pass_observer);
335 bool pass_change = optimizations[i]->Run();
336 pass_changes[static_cast<size_t>(definitions[i].pass)] = pass_change;
Aart Bika8360cd2018-05-02 16:07:51 -0700337 if (pass_change) {
338 change = true;
339 } else {
340 scope.SetPassNotChanged();
341 }
Aart Bik2e148682018-04-18 16:11:12 -0700342 } else {
343 // Skip the pass and record that nothing changed.
344 pass_changes[static_cast<size_t>(definitions[i].pass)] = false;
345 }
Aart Bik2ca10eb2017-11-15 15:17:53 -0800346 }
Aart Bik24773202018-04-26 10:28:51 -0700347 return change;
Aart Bik2ca10eb2017-11-15 15:17:53 -0800348 }
349
Aart Bik24773202018-04-26 10:28:51 -0700350 template <size_t length> bool RunOptimizations(
Aart Bik2ca10eb2017-11-15 15:17:53 -0800351 HGraph* graph,
352 CodeGenerator* codegen,
353 const DexCompilationUnit& dex_compilation_unit,
354 PassObserver* pass_observer,
355 VariableSizedHandleScope* handles,
356 const OptimizationDef (&definitions)[length]) const {
Aart Bik24773202018-04-26 10:28:51 -0700357 return RunOptimizations(
Aart Bik2ca10eb2017-11-15 15:17:53 -0800358 graph, codegen, dex_compilation_unit, pass_observer, handles, definitions, length);
359 }
360
361 void RunOptimizations(HGraph* graph,
362 CodeGenerator* codegen,
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -0700363 const DexCompilationUnit& dex_compilation_unit,
364 PassObserver* pass_observer,
Mathieu Chartiere8a3c572016-10-11 16:52:17 -0700365 VariableSizedHandleScope* handles) const;
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700366
Andreas Gampe53c913b2014-08-12 23:19:23 -0700367 private:
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000368 // Create a 'CompiledMethod' for an optimized graph.
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100369 CompiledMethod* Emit(ArenaAllocator* allocator,
David Brazdil58282f42016-01-14 12:45:10 +0000370 CodeVectorAllocator* code_allocator,
371 CodeGenerator* codegen,
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000372 const DexFile::CodeItem* item) const;
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000373
374 // Try compiling a method and return the code generator used for
375 // compiling it.
376 // This method:
377 // 1) Builds the graph. Returns null if it failed to build it.
David Brazdil58282f42016-01-14 12:45:10 +0000378 // 2) Transforms the graph to SSA. Returns null if it failed.
379 // 3) Runs optimizations on the graph, including register allocator.
380 // 4) Generates code with the `code_allocator` provided.
Vladimir Markoca6fff82017-10-03 14:49:14 +0100381 CodeGenerator* TryCompile(ArenaAllocator* allocator,
382 ArenaStack* arena_stack,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000383 CodeVectorAllocator* code_allocator,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000384 const DexCompilationUnit& dex_compilation_unit,
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000385 ArtMethod* method,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000386 bool osr,
387 VariableSizedHandleScope* handles) const;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000388
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000389 CodeGenerator* TryCompileIntrinsic(ArenaAllocator* allocator,
390 ArenaStack* arena_stack,
391 CodeVectorAllocator* code_allocator,
392 const DexCompilationUnit& dex_compilation_unit,
393 ArtMethod* method,
394 VariableSizedHandleScope* handles) const;
395
Aart Bik24773202018-04-26 10:28:51 -0700396 bool RunArchOptimizations(HGraph* graph,
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700397 CodeGenerator* codegen,
Aart Bik2ca10eb2017-11-15 15:17:53 -0800398 const DexCompilationUnit& dex_compilation_unit,
399 PassObserver* pass_observer,
400 VariableSizedHandleScope* handles) const;
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700401
David Srbeckyc9e02082018-01-24 16:44:02 +0000402 void GenerateJitDebugInfo(ArtMethod* method, debug::MethodDebugInfo method_debug_info)
403 REQUIRES_SHARED(Locks::mutator_lock_);
David Srbeckyc684f332018-01-19 17:38:06 +0000404
Calin Juravle2be39e02015-04-21 13:56:34 +0100405 std::unique_ptr<OptimizingCompilerStats> compilation_stats_;
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100406
Andreas Gampe53c913b2014-08-12 23:19:23 -0700407 std::unique_ptr<std::ostream> visualizer_output_;
408
Andreas Gampea0d81af2016-10-27 12:04:57 -0700409 mutable Mutex dump_mutex_; // To synchronize visualizer writing.
410
Andreas Gampe53c913b2014-08-12 23:19:23 -0700411 DISALLOW_COPY_AND_ASSIGN(OptimizingCompiler);
412};
413
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100414static const int kMaximumCompilationTimeBeforeWarning = 100; /* ms */
415
416OptimizingCompiler::OptimizingCompiler(CompilerDriver* driver)
Andreas Gampea0d81af2016-10-27 12:04:57 -0700417 : Compiler(driver, kMaximumCompilationTimeBeforeWarning),
418 dump_mutex_("Visualizer dump lock") {}
David Brazdilee690a32014-12-01 17:04:16 +0000419
420void OptimizingCompiler::Init() {
421 // Enable C1visualizer output. Must be done in Init() because the compiler
422 // driver is not fully initialized when passed to the compiler's constructor.
423 CompilerDriver* driver = GetCompilerDriver();
Nicolas Geoffrayc903b6a2016-01-18 12:56:06 +0000424 const std::string cfg_file_name = driver->GetCompilerOptions().GetDumpCfgFileName();
David Brazdil866c0312015-01-13 21:21:31 +0000425 if (!cfg_file_name.empty()) {
Calin Juravle87000a92015-08-24 15:34:44 +0100426 std::ios_base::openmode cfg_file_mode =
Nicolas Geoffrayc903b6a2016-01-18 12:56:06 +0000427 driver->GetCompilerOptions().GetDumpCfgAppend() ? std::ofstream::app : std::ofstream::out;
Calin Juravle87000a92015-08-24 15:34:44 +0100428 visualizer_output_.reset(new std::ofstream(cfg_file_name, cfg_file_mode));
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100429 }
Nicolas Geoffray2d8801f2017-11-28 15:50:07 +0000430 if (driver->GetCompilerOptions().GetDumpStats()) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100431 compilation_stats_.reset(new OptimizingCompilerStats());
432 }
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100433}
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000434
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000435void OptimizingCompiler::UnInit() const {
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000436}
437
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
Aart Bik24773202018-04-26 10:28:51 -0700459bool OptimizingCompiler::RunArchOptimizations(HGraph* graph,
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700460 CodeGenerator* codegen,
Aart Bik2ca10eb2017-11-15 15:17:53 -0800461 const DexCompilationUnit& dex_compilation_unit,
462 PassObserver* pass_observer,
463 VariableSizedHandleScope* handles) const {
Vladimir Markoa0431112018-06-25 09:32:54 +0100464 switch (codegen->GetCompilerOptions().GetInstructionSet()) {
Artem Serov2bbc9532016-10-21 11:51:50 +0100465#if defined(ART_ENABLE_CODEGEN_arm)
Vladimir Marko33bff252017-11-01 14:35:42 +0000466 case InstructionSet::kThumb2:
467 case InstructionSet::kArm: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800468 OptimizationDef arm_optimizations[] = {
469 OptDef(OptimizationPass::kInstructionSimplifierArm),
470 OptDef(OptimizationPass::kSideEffectsAnalysis),
471 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
472 OptDef(OptimizationPass::kScheduling)
Vladimir Markob4536b72015-11-24 13:45:23 +0000473 };
Aart Bik24773202018-04-26 10:28:51 -0700474 return RunOptimizations(graph,
475 codegen,
476 dex_compilation_unit,
477 pass_observer,
478 handles,
479 arm_optimizations);
Vladimir Markob4536b72015-11-24 13:45:23 +0000480 }
481#endif
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100482#ifdef ART_ENABLE_CODEGEN_arm64
Vladimir Marko33bff252017-11-01 14:35:42 +0000483 case InstructionSet::kArm64: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800484 OptimizationDef arm64_optimizations[] = {
485 OptDef(OptimizationPass::kInstructionSimplifierArm64),
486 OptDef(OptimizationPass::kSideEffectsAnalysis),
487 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
488 OptDef(OptimizationPass::kScheduling)
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100489 };
Aart Bik24773202018-04-26 10:28:51 -0700490 return RunOptimizations(graph,
491 codegen,
492 dex_compilation_unit,
493 pass_observer,
494 handles,
495 arm64_optimizations);
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100496 }
497#endif
Alexey Frunzee3fb2452016-05-10 16:08:05 -0700498#ifdef ART_ENABLE_CODEGEN_mips
Vladimir Marko33bff252017-11-01 14:35:42 +0000499 case InstructionSet::kMips: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800500 OptimizationDef mips_optimizations[] = {
501 OptDef(OptimizationPass::kInstructionSimplifierMips),
502 OptDef(OptimizationPass::kSideEffectsAnalysis),
503 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
504 OptDef(OptimizationPass::kPcRelativeFixupsMips)
Alexey Frunzee3fb2452016-05-10 16:08:05 -0700505 };
Aart Bik24773202018-04-26 10:28:51 -0700506 return RunOptimizations(graph,
507 codegen,
508 dex_compilation_unit,
509 pass_observer,
510 handles,
511 mips_optimizations);
Alexey Frunzee3fb2452016-05-10 16:08:05 -0700512 }
513#endif
Lena Djokicb8e9c352017-09-20 15:11:13 +0200514#ifdef ART_ENABLE_CODEGEN_mips64
Vladimir Marko33bff252017-11-01 14:35:42 +0000515 case InstructionSet::kMips64: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800516 OptimizationDef mips64_optimizations[] = {
517 OptDef(OptimizationPass::kSideEffectsAnalysis),
518 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch")
Lena Djokicb8e9c352017-09-20 15:11:13 +0200519 };
Aart Bik24773202018-04-26 10:28:51 -0700520 return RunOptimizations(graph,
521 codegen,
522 dex_compilation_unit,
523 pass_observer,
524 handles,
525 mips64_optimizations);
Lena Djokicb8e9c352017-09-20 15:11:13 +0200526 }
527#endif
Mark Mendell0616ae02015-04-17 12:49:27 -0400528#ifdef ART_ENABLE_CODEGEN_x86
Vladimir Marko33bff252017-11-01 14:35:42 +0000529 case InstructionSet::kX86: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800530 OptimizationDef x86_optimizations[] = {
531 OptDef(OptimizationPass::kSideEffectsAnalysis),
532 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
533 OptDef(OptimizationPass::kPcRelativeFixupsX86),
Gupta Kumar, Sanjiv61908882018-06-29 13:06:35 +0530534 OptDef(OptimizationPass::kX86MemoryOperandGeneration),
535 OptDef(OptimizationPass::kInstructionSimplifierX86)
Mark Mendell0616ae02015-04-17 12:49:27 -0400536 };
Aart Bik24773202018-04-26 10:28:51 -0700537 return RunOptimizations(graph,
538 codegen,
539 dex_compilation_unit,
540 pass_observer,
541 handles,
542 x86_optimizations);
Mark Mendell0616ae02015-04-17 12:49:27 -0400543 }
544#endif
Mark Mendellee8d9712016-07-12 11:13:15 -0400545#ifdef ART_ENABLE_CODEGEN_x86_64
Vladimir Marko33bff252017-11-01 14:35:42 +0000546 case InstructionSet::kX86_64: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800547 OptimizationDef x86_64_optimizations[] = {
548 OptDef(OptimizationPass::kSideEffectsAnalysis),
549 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
Gupta Kumar, Sanjiv61908882018-06-29 13:06:35 +0530550 OptDef(OptimizationPass::kX86MemoryOperandGeneration),
551 OptDef(OptimizationPass::kInstructionSimplifierX86)
Mark Mendellee8d9712016-07-12 11:13:15 -0400552 };
Aart Bik24773202018-04-26 10:28:51 -0700553 return RunOptimizations(graph,
554 codegen,
555 dex_compilation_unit,
556 pass_observer,
557 handles,
558 x86_64_optimizations);
Mark Mendellee8d9712016-07-12 11:13:15 -0400559 }
560#endif
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100561 default:
Aart Bik24773202018-04-26 10:28:51 -0700562 return false;
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100563 }
564}
565
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000566NO_INLINE // Avoid increasing caller's frame size by large stack-allocated objects.
567static void AllocateRegisters(HGraph* graph,
568 CodeGenerator* codegen,
Matthew Gharrity2cd05b72016-08-03 16:57:37 -0700569 PassObserver* pass_observer,
Igor Murashkin6ef45672017-08-08 13:59:55 -0700570 RegisterAllocator::Strategy strategy,
571 OptimizingCompilerStats* stats) {
Mingyao Yang700347e2016-03-02 14:59:32 -0800572 {
573 PassScope scope(PrepareForRegisterAllocation::kPrepareForRegisterAllocationPassName,
574 pass_observer);
Igor Murashkin6ef45672017-08-08 13:59:55 -0700575 PrepareForRegisterAllocation(graph, stats).Run();
Mingyao Yang700347e2016-03-02 14:59:32 -0800576 }
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100577 // Use local allocator shared by SSA liveness analysis and register allocator.
578 // (Register allocator creates new objects in the liveness data.)
579 ScopedArenaAllocator local_allocator(graph->GetArenaStack());
580 SsaLivenessAnalysis liveness(graph, codegen, &local_allocator);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000581 {
582 PassScope scope(SsaLivenessAnalysis::kLivenessPassName, pass_observer);
583 liveness.Analyze();
584 }
585 {
586 PassScope scope(RegisterAllocator::kRegisterAllocatorPassName, pass_observer);
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100587 std::unique_ptr<RegisterAllocator> register_allocator =
588 RegisterAllocator::Create(&local_allocator, codegen, liveness, strategy);
Vladimir Markoca6fff82017-10-03 14:49:14 +0100589 register_allocator->AllocateRegisters();
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000590 }
591}
592
Aart Bik2ca10eb2017-11-15 15:17:53 -0800593// Strip pass name suffix to get optimization name.
594static std::string ConvertPassNameToOptimizationName(const std::string& pass_name) {
595 size_t pos = pass_name.find(kPassNameSeparator);
596 return pos == std::string::npos ? pass_name : pass_name.substr(0, pos);
597}
598
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700599void OptimizingCompiler::RunOptimizations(HGraph* graph,
600 CodeGenerator* codegen,
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700601 const DexCompilationUnit& dex_compilation_unit,
602 PassObserver* pass_observer,
Mathieu Chartiere8a3c572016-10-11 16:52:17 -0700603 VariableSizedHandleScope* handles) const {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800604 const std::vector<std::string>* pass_names =
605 GetCompilerDriver()->GetCompilerOptions().GetPassesToRun();
606 if (pass_names != nullptr) {
607 // If passes were defined on command-line, build the optimization
608 // passes and run these instead of the built-in optimizations.
Aart Bik2e148682018-04-18 16:11:12 -0700609 // TODO: a way to define depends_on via command-line?
Aart Bik2ca10eb2017-11-15 15:17:53 -0800610 const size_t length = pass_names->size();
611 std::vector<OptimizationDef> optimizations;
612 for (const std::string& pass_name : *pass_names) {
613 std::string opt_name = ConvertPassNameToOptimizationName(pass_name);
614 optimizations.push_back(OptDef(OptimizationPassByName(opt_name.c_str()), pass_name.c_str()));
615 }
616 RunOptimizations(graph,
617 codegen,
618 dex_compilation_unit,
619 pass_observer,
620 handles,
621 optimizations.data(),
622 length);
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -0700623 return;
624 }
625
Aart Bik24773202018-04-26 10:28:51 -0700626 OptimizationDef optimizations[] = {
Aart Bik2e148682018-04-18 16:11:12 -0700627 // Initial optimizations.
Aart Bik2ca10eb2017-11-15 15:17:53 -0800628 OptDef(OptimizationPass::kIntrinsicsRecognizer),
629 OptDef(OptimizationPass::kSharpening),
630 OptDef(OptimizationPass::kConstantFolding),
631 OptDef(OptimizationPass::kInstructionSimplifier),
Aart Bik2e148682018-04-18 16:11:12 -0700632 OptDef(OptimizationPass::kDeadCodeElimination,
633 "dead_code_elimination$initial"),
634 // Inlining.
Aart Bik24773202018-04-26 10:28:51 -0700635 OptDef(OptimizationPass::kInliner),
Aart Bik2e148682018-04-18 16:11:12 -0700636 // Simplification (only if inlining occurred).
637 OptDef(OptimizationPass::kConstantFolding,
638 "constant_folding$after_inlining",
639 OptimizationPass::kInliner),
640 OptDef(OptimizationPass::kInstructionSimplifier,
641 "instruction_simplifier$after_inlining",
642 OptimizationPass::kInliner),
643 OptDef(OptimizationPass::kDeadCodeElimination,
644 "dead_code_elimination$after_inlining",
645 OptimizationPass::kInliner),
646 // GVN.
647 OptDef(OptimizationPass::kSideEffectsAnalysis,
648 "side_effects$before_gvn"),
Aart Bik6d057002018-04-09 15:39:58 -0700649 OptDef(OptimizationPass::kGlobalValueNumbering),
Aart Bik2e148682018-04-18 16:11:12 -0700650 // Simplification (TODO: only if GVN occurred).
Aart Bik2ca10eb2017-11-15 15:17:53 -0800651 OptDef(OptimizationPass::kSelectGenerator),
Aart Bik2e148682018-04-18 16:11:12 -0700652 OptDef(OptimizationPass::kConstantFolding,
653 "constant_folding$after_gvn"),
654 OptDef(OptimizationPass::kInstructionSimplifier,
655 "instruction_simplifier$after_gvn"),
656 OptDef(OptimizationPass::kDeadCodeElimination,
657 "dead_code_elimination$after_gvn"),
658 // High-level optimizations.
659 OptDef(OptimizationPass::kSideEffectsAnalysis,
660 "side_effects$before_licm"),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800661 OptDef(OptimizationPass::kInvariantCodeMotion),
662 OptDef(OptimizationPass::kInductionVarAnalysis),
663 OptDef(OptimizationPass::kBoundsCheckElimination),
664 OptDef(OptimizationPass::kLoopOptimization),
Aart Bik2e148682018-04-18 16:11:12 -0700665 // Simplification.
666 OptDef(OptimizationPass::kConstantFolding,
667 "constant_folding$after_bce"),
668 OptDef(OptimizationPass::kInstructionSimplifier,
669 "instruction_simplifier$after_bce"),
670 // Other high-level optimizations.
671 OptDef(OptimizationPass::kSideEffectsAnalysis,
672 "side_effects$before_lse"),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800673 OptDef(OptimizationPass::kLoadStoreAnalysis),
674 OptDef(OptimizationPass::kLoadStoreElimination),
675 OptDef(OptimizationPass::kCHAGuardOptimization),
Aart Bik2e148682018-04-18 16:11:12 -0700676 OptDef(OptimizationPass::kDeadCodeElimination,
677 "dead_code_elimination$final"),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800678 OptDef(OptimizationPass::kCodeSinking),
David Brazdil8993caf2015-12-07 10:04:40 +0000679 // The codegen has a few assumptions that only the instruction simplifier
680 // can satisfy. For example, the code generator does not expect to see a
681 // HTypeConversion from a type to the same type.
Aart Bik2e148682018-04-18 16:11:12 -0700682 OptDef(OptimizationPass::kInstructionSimplifier,
683 "instruction_simplifier$before_codegen"),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800684 // Eliminate constructor fences after code sinking to avoid
685 // complicated sinking logic to split a fence with many inputs.
686 OptDef(OptimizationPass::kConstructorFenceRedundancyElimination)
David Brazdil8993caf2015-12-07 10:04:40 +0000687 };
Aart Bik2ca10eb2017-11-15 15:17:53 -0800688 RunOptimizations(graph,
689 codegen,
690 dex_compilation_unit,
691 pass_observer,
692 handles,
Aart Bik24773202018-04-26 10:28:51 -0700693 optimizations);
David Brazdilbbd733e2015-08-18 17:48:17 +0100694
Aart Bik2ca10eb2017-11-15 15:17:53 -0800695 RunArchOptimizations(graph, codegen, dex_compilation_unit, pass_observer, handles);
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000696}
697
Vladimir Markod8dbc8d2017-09-20 13:37:47 +0100698static ArenaVector<linker::LinkerPatch> EmitAndSortLinkerPatches(CodeGenerator* codegen) {
Vladimir Markoca6fff82017-10-03 14:49:14 +0100699 ArenaVector<linker::LinkerPatch> linker_patches(codegen->GetGraph()->GetAllocator()->Adapter());
Vladimir Marko58155012015-08-19 12:49:41 +0000700 codegen->EmitLinkerPatches(&linker_patches);
701
702 // Sort patches by literal offset. Required for .oat_patches encoding.
703 std::sort(linker_patches.begin(), linker_patches.end(),
Vladimir Markod8dbc8d2017-09-20 13:37:47 +0100704 [](const linker::LinkerPatch& lhs, const linker::LinkerPatch& rhs) {
Vladimir Marko58155012015-08-19 12:49:41 +0000705 return lhs.LiteralOffset() < rhs.LiteralOffset();
706 });
707
708 return linker_patches;
709}
710
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100711CompiledMethod* OptimizingCompiler::Emit(ArenaAllocator* allocator,
David Brazdil58282f42016-01-14 12:45:10 +0000712 CodeVectorAllocator* code_allocator,
713 CodeGenerator* codegen,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000714 const DexFile::CodeItem* code_item_for_osr_check) const {
Vladimir Markod8dbc8d2017-09-20 13:37:47 +0100715 ArenaVector<linker::LinkerPatch> linker_patches = EmitAndSortLinkerPatches(codegen);
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100716 ArenaVector<uint8_t> stack_map(allocator->Adapter(kArenaAllocStackMaps));
717 ArenaVector<uint8_t> method_info(allocator->Adapter(kArenaAllocStackMaps));
Mathieu Chartiercbcedbf2017-03-12 22:24:50 -0700718 size_t stack_map_size = 0;
719 size_t method_info_size = 0;
720 codegen->ComputeStackMapAndMethodInfoSize(&stack_map_size, &method_info_size);
721 stack_map.resize(stack_map_size);
722 method_info.resize(method_info_size);
723 codegen->BuildStackMaps(MemoryRegion(stack_map.data(), stack_map.size()),
724 MemoryRegion(method_info.data(), method_info.size()),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000725 code_item_for_osr_check);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000726
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100727 CompiledMethod* compiled_method = CompiledMethod::SwapAllocCompiledMethod(
Aart Bik2ca10eb2017-11-15 15:17:53 -0800728 GetCompilerDriver(),
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000729 codegen->GetInstructionSet(),
Vladimir Markoca1e0382018-04-11 09:58:41 +0000730 code_allocator->GetMemory(),
Roland Levillainaa9b7c42015-02-17 15:40:09 +0000731 // Follow Quick's behavior and set the frame size to zero if it is
732 // considered "empty" (see the definition of
733 // art::CodeGenerator::HasEmptyFrame).
734 codegen->HasEmptyFrame() ? 0 : codegen->GetFrameSize(),
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000735 codegen->GetCoreSpillMask(),
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000736 codegen->GetFpuSpillMask(),
Mathieu Chartiercbcedbf2017-03-12 22:24:50 -0700737 ArrayRef<const uint8_t>(method_info),
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100738 ArrayRef<const uint8_t>(stack_map),
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100739 ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data()),
Vladimir Markod8dbc8d2017-09-20 13:37:47 +0100740 ArrayRef<const linker::LinkerPatch>(linker_patches));
Mathieu Chartiered150002015-08-28 11:16:54 -0700741
Vladimir Markoca1e0382018-04-11 09:58:41 +0000742 CompiledMethodStorage* storage = GetCompilerDriver()->GetCompiledMethodStorage();
743 for (const linker::LinkerPatch& patch : linker_patches) {
744 if (codegen->NeedsThunkCode(patch) && storage->GetThunkCode(patch).empty()) {
745 ArenaVector<uint8_t> code(allocator->Adapter());
746 std::string debug_name;
747 codegen->EmitThunkCode(patch, &code, &debug_name);
748 storage->SetThunkCode(patch, ArrayRef<const uint8_t>(code), debug_name);
749 }
750 }
751
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100752 return compiled_method;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000753}
754
Vladimir Markoca6fff82017-10-03 14:49:14 +0100755CodeGenerator* OptimizingCompiler::TryCompile(ArenaAllocator* allocator,
756 ArenaStack* arena_stack,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000757 CodeVectorAllocator* code_allocator,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000758 const DexCompilationUnit& dex_compilation_unit,
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000759 ArtMethod* method,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000760 bool osr,
761 VariableSizedHandleScope* handles) const {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000762 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kAttemptBytecodeCompilation);
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000763 CompilerDriver* compiler_driver = GetCompilerDriver();
Vladimir Markoa0431112018-06-25 09:32:54 +0100764 const CompilerOptions& compiler_options = compiler_driver->GetCompilerOptions();
765 InstructionSet instruction_set = compiler_options.GetInstructionSet();
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000766 const DexFile& dex_file = *dex_compilation_unit.GetDexFile();
767 uint32_t method_idx = dex_compilation_unit.GetDexMethodIndex();
768 const DexFile::CodeItem* code_item = dex_compilation_unit.GetCodeItem();
Calin Juravlecff8cc72015-10-09 12:03:24 +0100769
Roland Levillain3b359c72015-11-17 19:35:12 +0000770 // Always use the Thumb-2 assembler: some runtime functionality
771 // (like implicit stack overflow checks) assume Thumb-2.
Vladimir Marko33bff252017-11-01 14:35:42 +0000772 DCHECK_NE(instruction_set, InstructionSet::kArm);
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100773
774 // Do not attempt to compile on architectures we do not support.
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000775 if (!IsInstructionSetSupported(instruction_set)) {
Igor Murashkin1e065a52017-08-09 13:20:34 -0700776 MaybeRecordStat(compilation_stats_.get(),
777 MethodCompilationStat::kNotCompiledUnsupportedIsa);
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100778 return nullptr;
779 }
780
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000781 if (Compiler::IsPathologicalCase(*code_item, method_idx, dex_file)) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000782 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kNotCompiledPathological);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000783 return nullptr;
784 }
785
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000786 // Implementation of the space filter: do not compile a code item whose size in
Nicolas Geoffray432bf3d2015-07-17 11:11:09 +0100787 // code units is bigger than 128.
788 static constexpr size_t kSpaceFilterOptimizingThreshold = 128;
Andreas Gampe29d38e72016-03-23 15:31:51 +0000789 if ((compiler_options.GetCompilerFilter() == CompilerFilter::kSpace)
Mathieu Chartier698ebbc2018-01-05 11:00:42 -0800790 && (CodeItemInstructionAccessor(dex_file, code_item).InsnsSizeInCodeUnits() >
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800791 kSpaceFilterOptimizingThreshold)) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000792 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kNotCompiledSpaceFilter);
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000793 return nullptr;
794 }
795
Mathieu Chartier8892c6b2018-01-09 15:10:17 -0800796 CodeItemDebugInfoAccessor code_item_accessor(dex_file, code_item, method_idx);
Vladimir Markoca6fff82017-10-03 14:49:14 +0100797 HGraph* graph = new (allocator) HGraph(
798 allocator,
799 arena_stack,
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000800 dex_file,
801 method_idx,
Vladimir Markoa0431112018-06-25 09:32:54 +0100802 compiler_options.GetInstructionSet(),
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000803 kInvalidInvokeType,
804 compiler_driver->GetCompilerOptions().GetDebuggable(),
805 osr);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000806
Mathieu Chartier210531f2018-01-12 10:15:51 -0800807 ArrayRef<const uint8_t> interpreter_metadata;
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000808 // For AOT compilation, we may not get a method, for example if its class is erroneous.
809 // JIT should always have a method.
810 DCHECK(Runtime::Current()->IsAotCompiler() || method != nullptr);
811 if (method != nullptr) {
812 graph->SetArtMethod(method);
813 ScopedObjectAccess soa(Thread::Current());
Nicolas Geoffray8eaa8e52017-11-13 17:47:50 +0000814 interpreter_metadata = method->GetQuickenedInfo();
David Brazdilbadd8262016-02-02 16:28:56 +0000815 }
816
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000817 std::unique_ptr<CodeGenerator> codegen(
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000818 CodeGenerator::Create(graph,
Vladimir Markoa0431112018-06-25 09:32:54 +0100819 compiler_options,
Calin Juravle2ae48182016-03-16 14:05:09 +0000820 compilation_stats_.get()));
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000821 if (codegen.get() == nullptr) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000822 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kNotCompiledNoCodegen);
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000823 return nullptr;
824 }
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100825 codegen->GetAssembler()->cfi().SetEnabled(
David Srbecky5b1c2ca2016-01-25 17:32:41 +0000826 compiler_driver->GetCompilerOptions().GenerateAnyDebugInfo());
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000827
David Brazdil69ba7b72015-06-23 18:27:30 +0100828 PassObserver pass_observer(graph,
David Brazdil69ba7b72015-06-23 18:27:30 +0100829 codegen.get(),
830 visualizer_output_.get(),
Andreas Gampea0d81af2016-10-27 12:04:57 -0700831 compiler_driver,
832 dump_mutex_);
David Brazdil5e8b1372015-01-23 14:39:08 +0000833
David Brazdil809658e2015-02-05 11:34:02 +0000834 {
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000835 VLOG(compiler) << "Building " << pass_observer.GetMethodName();
836 PassScope scope(HGraphBuilder::kBuilderPassName, &pass_observer);
837 HGraphBuilder builder(graph,
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800838 code_item_accessor,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000839 &dex_compilation_unit,
840 &dex_compilation_unit,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000841 compiler_driver,
Nicolas Geoffray83c8e272017-01-31 14:36:37 +0000842 codegen.get(),
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000843 compilation_stats_.get(),
844 interpreter_metadata,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000845 handles);
846 GraphAnalysisResult result = builder.BuildGraph();
847 if (result != kAnalysisSuccess) {
848 switch (result) {
Igor Murashkin1e065a52017-08-09 13:20:34 -0700849 case kAnalysisSkipped: {
850 MaybeRecordStat(compilation_stats_.get(),
851 MethodCompilationStat::kNotCompiledSkipped);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000852 break;
Nicolas Geoffray8a62a4c2018-07-03 09:39:07 +0100853 }
Igor Murashkin1e065a52017-08-09 13:20:34 -0700854 case kAnalysisInvalidBytecode: {
855 MaybeRecordStat(compilation_stats_.get(),
856 MethodCompilationStat::kNotCompiledInvalidBytecode);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000857 break;
Nicolas Geoffray8a62a4c2018-07-03 09:39:07 +0100858 }
Igor Murashkin1e065a52017-08-09 13:20:34 -0700859 case kAnalysisFailThrowCatchLoop: {
860 MaybeRecordStat(compilation_stats_.get(),
861 MethodCompilationStat::kNotCompiledThrowCatchLoop);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000862 break;
Nicolas Geoffray8a62a4c2018-07-03 09:39:07 +0100863 }
Igor Murashkin1e065a52017-08-09 13:20:34 -0700864 case kAnalysisFailAmbiguousArrayOp: {
865 MaybeRecordStat(compilation_stats_.get(),
866 MethodCompilationStat::kNotCompiledAmbiguousArrayOp);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000867 break;
Nicolas Geoffray8a62a4c2018-07-03 09:39:07 +0100868 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000869 case kAnalysisSuccess:
870 UNREACHABLE();
David Brazdil809658e2015-02-05 11:34:02 +0000871 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000872 pass_observer.SetGraphInBadState();
873 return nullptr;
Nicolas Geoffrayf5370122014-12-02 11:51:19 +0000874 }
David Brazdilbadd8262016-02-02 16:28:56 +0000875 }
Vladimir Markof9f64412015-09-02 14:05:49 +0100876
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000877 RunOptimizations(graph,
878 codegen.get(),
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000879 dex_compilation_unit,
880 &pass_observer,
881 handles);
882
883 RegisterAllocator::Strategy regalloc_strategy =
884 compiler_options.GetRegisterAllocationStrategy();
Igor Murashkin1e065a52017-08-09 13:20:34 -0700885 AllocateRegisters(graph,
886 codegen.get(),
887 &pass_observer,
Igor Murashkin6ef45672017-08-08 13:59:55 -0700888 regalloc_strategy,
889 compilation_stats_.get());
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000890
891 codegen->Compile(code_allocator);
892 pass_observer.DumpDisassembly();
893
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000894 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kCompiledBytecode);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000895 return codegen.release();
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000896}
897
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000898CodeGenerator* OptimizingCompiler::TryCompileIntrinsic(
899 ArenaAllocator* allocator,
900 ArenaStack* arena_stack,
901 CodeVectorAllocator* code_allocator,
902 const DexCompilationUnit& dex_compilation_unit,
903 ArtMethod* method,
904 VariableSizedHandleScope* handles) const {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000905 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kAttemptIntrinsicCompilation);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000906 CompilerDriver* compiler_driver = GetCompilerDriver();
Vladimir Markoa0431112018-06-25 09:32:54 +0100907 const CompilerOptions& compiler_options = compiler_driver->GetCompilerOptions();
908 InstructionSet instruction_set = compiler_options.GetInstructionSet();
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000909 const DexFile& dex_file = *dex_compilation_unit.GetDexFile();
910 uint32_t method_idx = dex_compilation_unit.GetDexMethodIndex();
911
912 // Always use the Thumb-2 assembler: some runtime functionality
913 // (like implicit stack overflow checks) assume Thumb-2.
914 DCHECK_NE(instruction_set, InstructionSet::kArm);
915
916 // Do not attempt to compile on architectures we do not support.
917 if (!IsInstructionSetSupported(instruction_set)) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000918 return nullptr;
919 }
920
921 HGraph* graph = new (allocator) HGraph(
922 allocator,
923 arena_stack,
924 dex_file,
925 method_idx,
Vladimir Markoa0431112018-06-25 09:32:54 +0100926 compiler_driver->GetCompilerOptions().GetInstructionSet(),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000927 kInvalidInvokeType,
928 compiler_driver->GetCompilerOptions().GetDebuggable(),
929 /* osr */ false);
930
931 DCHECK(Runtime::Current()->IsAotCompiler());
932 DCHECK(method != nullptr);
933 graph->SetArtMethod(method);
934
935 std::unique_ptr<CodeGenerator> codegen(
936 CodeGenerator::Create(graph,
Vladimir Markoa0431112018-06-25 09:32:54 +0100937 compiler_options,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000938 compilation_stats_.get()));
939 if (codegen.get() == nullptr) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000940 return nullptr;
941 }
Vladimir Markoa0431112018-06-25 09:32:54 +0100942 codegen->GetAssembler()->cfi().SetEnabled(compiler_options.GenerateAnyDebugInfo());
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000943
944 PassObserver pass_observer(graph,
945 codegen.get(),
946 visualizer_output_.get(),
947 compiler_driver,
948 dump_mutex_);
949
950 {
951 VLOG(compiler) << "Building intrinsic graph " << pass_observer.GetMethodName();
952 PassScope scope(HGraphBuilder::kBuilderPassName, &pass_observer);
953 HGraphBuilder builder(graph,
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800954 CodeItemDebugInfoAccessor(), // Null code item.
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000955 &dex_compilation_unit,
956 &dex_compilation_unit,
957 compiler_driver,
958 codegen.get(),
959 compilation_stats_.get(),
Mathieu Chartier210531f2018-01-12 10:15:51 -0800960 /* interpreter_metadata */ ArrayRef<const uint8_t>(),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000961 handles);
962 builder.BuildIntrinsicGraph(method);
963 }
964
Aart Bik2ca10eb2017-11-15 15:17:53 -0800965 OptimizationDef optimizations[] = {
966 OptDef(OptimizationPass::kIntrinsicsRecognizer),
967 // Some intrinsics are converted to HIR by the simplifier and the codegen also
968 // has a few assumptions that only the instruction simplifier can satisfy.
969 OptDef(OptimizationPass::kInstructionSimplifier),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000970 };
Aart Bik2ca10eb2017-11-15 15:17:53 -0800971 RunOptimizations(graph,
972 codegen.get(),
973 dex_compilation_unit,
974 &pass_observer,
975 handles,
976 optimizations);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000977
Aart Bik2ca10eb2017-11-15 15:17:53 -0800978 RunArchOptimizations(graph, codegen.get(), dex_compilation_unit, &pass_observer, handles);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000979
980 AllocateRegisters(graph,
981 codegen.get(),
982 &pass_observer,
983 compiler_driver->GetCompilerOptions().GetRegisterAllocationStrategy(),
984 compilation_stats_.get());
985 if (!codegen->IsLeafMethod()) {
986 VLOG(compiler) << "Intrinsic method is not leaf: " << method->GetIntrinsic()
987 << " " << graph->PrettyMethod();
988 return nullptr;
989 }
990
991 codegen->Compile(code_allocator);
992 pass_observer.DumpDisassembly();
993
994 VLOG(compiler) << "Compiled intrinsic: " << method->GetIntrinsic()
995 << " " << graph->PrettyMethod();
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000996 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kCompiledIntrinsic);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000997 return codegen.release();
998}
999
Nicolas Geoffray216eaa22015-03-17 17:09:30 +00001000CompiledMethod* OptimizingCompiler::Compile(const DexFile::CodeItem* code_item,
1001 uint32_t access_flags,
1002 InvokeType invoke_type,
1003 uint16_t class_def_idx,
1004 uint32_t method_idx,
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001005 Handle<mirror::ClassLoader> jclass_loader,
Mathieu Chartier736b5602015-09-02 14:54:11 -07001006 const DexFile& dex_file,
1007 Handle<mirror::DexCache> dex_cache) const {
Calin Juravlef1c6d9e2015-04-13 18:42:21 +01001008 CompilerDriver* compiler_driver = GetCompilerDriver();
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001009 CompiledMethod* compiled_method = nullptr;
1010 Runtime* runtime = Runtime::Current();
1011 DCHECK(runtime->IsAotCompiler());
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001012 const VerifiedMethod* verified_method = compiler_driver->GetVerifiedMethod(&dex_file, method_idx);
1013 DCHECK(!verified_method->HasRuntimeThrow());
Vladimir Markoca6fff82017-10-03 14:49:14 +01001014 if (compiler_driver->IsMethodVerifiedWithoutFailures(method_idx, class_def_idx, dex_file) ||
1015 verifier::CanCompilerHandleVerificationFailure(
1016 verified_method->GetEncounteredVerificationFailures())) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001017 ArenaAllocator allocator(runtime->GetArenaPool());
1018 ArenaStack arena_stack(runtime->GetArenaPool());
Vladimir Markoca6fff82017-10-03 14:49:14 +01001019 CodeVectorAllocator code_allocator(&allocator);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001020 std::unique_ptr<CodeGenerator> codegen;
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001021 bool compiled_intrinsic = false;
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001022 {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001023 DexCompilationUnit dex_compilation_unit(
1024 jclass_loader,
1025 runtime->GetClassLinker(),
1026 dex_file,
1027 code_item,
1028 class_def_idx,
1029 method_idx,
1030 access_flags,
1031 /* verified_method */ nullptr, // Not needed by the Optimizing compiler.
1032 dex_cache);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001033 ScopedObjectAccess soa(Thread::Current());
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001034 ArtMethod* method = compiler_driver->ResolveMethod(
1035 soa, dex_cache, jclass_loader, &dex_compilation_unit, method_idx, invoke_type);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001036 VariableSizedHandleScope handles(soa.Self());
1037 // Go to native so that we don't block GC during compilation.
1038 ScopedThreadSuspension sts(soa.Self(), kNative);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001039 if (method != nullptr && UNLIKELY(method->IsIntrinsic())) {
1040 DCHECK(compiler_driver->GetCompilerOptions().IsBootImage());
1041 codegen.reset(
1042 TryCompileIntrinsic(&allocator,
1043 &arena_stack,
1044 &code_allocator,
1045 dex_compilation_unit,
1046 method,
1047 &handles));
1048 if (codegen != nullptr) {
1049 compiled_intrinsic = true;
1050 }
1051 }
1052 if (codegen == nullptr) {
1053 codegen.reset(
1054 TryCompile(&allocator,
1055 &arena_stack,
1056 &code_allocator,
1057 dex_compilation_unit,
1058 method,
1059 /* osr */ false,
1060 &handles));
1061 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001062 }
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001063 if (codegen.get() != nullptr) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001064 compiled_method = Emit(&allocator,
1065 &code_allocator,
1066 codegen.get(),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001067 compiled_intrinsic ? nullptr : code_item);
1068 if (compiled_intrinsic) {
1069 compiled_method->MarkAsIntrinsic();
1070 }
Vladimir Marko3a40bf22016-03-22 16:26:33 +00001071
1072 if (kArenaAllocatorCountAllocations) {
Vladimir Marko174b2e22017-10-12 13:34:49 +01001073 codegen.reset(); // Release codegen's ScopedArenaAllocator for memory accounting.
Vladimir Markoca6fff82017-10-03 14:49:14 +01001074 size_t total_allocated = allocator.BytesAllocated() + arena_stack.PeakBytesAllocated();
1075 if (total_allocated > kArenaAllocatorMemoryReportThreshold) {
1076 MemStats mem_stats(allocator.GetMemStats());
1077 MemStats peak_stats(arena_stack.GetPeakStats());
Vladimir Marko69d310e2017-10-09 14:12:23 +01001078 LOG(INFO) << "Used " << total_allocated << " bytes of arena memory for compiling "
1079 << dex_file.PrettyMethod(method_idx)
Vladimir Markoca6fff82017-10-03 14:49:14 +01001080 << "\n" << Dumpable<MemStats>(mem_stats)
1081 << "\n" << Dumpable<MemStats>(peak_stats);
Vladimir Marko3a40bf22016-03-22 16:26:33 +00001082 }
1083 }
Calin Juravlef1c6d9e2015-04-13 18:42:21 +01001084 }
Nicolas Geoffray0c3c2662015-10-15 13:53:04 +01001085 } else {
Igor Murashkin1e065a52017-08-09 13:20:34 -07001086 MethodCompilationStat method_stat;
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001087 if (compiler_driver->GetCompilerOptions().VerifyAtRuntime()) {
Igor Murashkin1e065a52017-08-09 13:20:34 -07001088 method_stat = MethodCompilationStat::kNotCompiledVerifyAtRuntime;
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001089 } else {
Igor Murashkin1e065a52017-08-09 13:20:34 -07001090 method_stat = MethodCompilationStat::kNotCompiledVerificationError;
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001091 }
Igor Murashkin1e065a52017-08-09 13:20:34 -07001092 MaybeRecordStat(compilation_stats_.get(), method_stat);
Calin Juravlef1c6d9e2015-04-13 18:42:21 +01001093 }
1094
Calin Juravlecff8cc72015-10-09 12:03:24 +01001095 if (kIsDebugBuild &&
1096 IsCompilingWithCoreImage() &&
Vladimir Markoa0431112018-06-25 09:32:54 +01001097 IsInstructionSetSupported(compiler_driver->GetCompilerOptions().GetInstructionSet())) {
Roland Levillain0d5a2812015-11-13 10:07:31 +00001098 // For testing purposes, we put a special marker on method names
Goran Jakovljevic9c4f0d8f2017-04-05 16:27:25 +02001099 // that should be compiled with this compiler (when the
1100 // instruction set is supported). This makes sure we're not
Roland Levillain0d5a2812015-11-13 10:07:31 +00001101 // regressing.
David Sehr709b0702016-10-13 09:12:37 -07001102 std::string method_name = dex_file.PrettyMethod(method_idx);
Calin Juravle09b1d6f2015-10-07 12:08:54 +01001103 bool shouldCompile = method_name.find("$opt$") != std::string::npos;
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001104 DCHECK((compiled_method != nullptr) || !shouldCompile) << "Didn't compile " << method_name;
Calin Juravle09b1d6f2015-10-07 12:08:54 +01001105 }
1106
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001107 return compiled_method;
1108}
1109
David Srbeckyafc97bc2018-07-05 08:14:35 +00001110static void CreateJniStackMap(ArenaStack* arena_stack,
1111 const JniCompiledMethod& jni_compiled_method,
1112 /* out */ ArenaVector<uint8_t>* stack_map,
1113 /* out */ ArenaVector<uint8_t>* method_info) {
1114 ScopedArenaAllocator allocator(arena_stack);
1115 StackMapStream stack_map_stream(&allocator, jni_compiled_method.GetInstructionSet());
1116 stack_map_stream.BeginMethod(
1117 jni_compiled_method.GetFrameSize(),
1118 jni_compiled_method.GetCoreSpillMask(),
1119 jni_compiled_method.GetFpSpillMask(),
1120 /* num_dex_registers */ 0);
1121 stack_map_stream.EndMethod();
1122 stack_map->resize(stack_map_stream.PrepareForFillIn());
1123 method_info->resize(stack_map_stream.ComputeMethodInfoSize());
1124 stack_map_stream.FillInCodeInfo(MemoryRegion(stack_map->data(), stack_map->size()));
1125 stack_map_stream.FillInMethodInfo(MemoryRegion(method_info->data(), method_info->size()));
1126}
1127
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001128CompiledMethod* OptimizingCompiler::JniCompile(uint32_t access_flags,
1129 uint32_t method_idx,
1130 const DexFile& dex_file,
1131 Handle<mirror::DexCache> dex_cache) const {
David Srbeckyafc97bc2018-07-05 08:14:35 +00001132 Runtime* runtime = Runtime::Current();
1133 ArenaAllocator allocator(runtime->GetArenaPool());
1134 ArenaStack arena_stack(runtime->GetArenaPool());
1135
Vladimir Markoa0431112018-06-25 09:32:54 +01001136 const CompilerOptions& compiler_options = GetCompilerDriver()->GetCompilerOptions();
1137 if (compiler_options.IsBootImage()) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001138 ScopedObjectAccess soa(Thread::Current());
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001139 ArtMethod* method = runtime->GetClassLinker()->LookupResolvedMethod(
1140 method_idx, dex_cache.Get(), /* class_loader */ nullptr);
1141 if (method != nullptr && UNLIKELY(method->IsIntrinsic())) {
1142 ScopedNullHandle<mirror::ClassLoader> class_loader; // null means boot class path loader.
1143 DexCompilationUnit dex_compilation_unit(
1144 class_loader,
1145 runtime->GetClassLinker(),
1146 dex_file,
1147 /* code_item */ nullptr,
1148 /* class_def_idx */ DexFile::kDexNoIndex16,
1149 method_idx,
1150 access_flags,
1151 /* verified_method */ nullptr,
1152 dex_cache);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001153 CodeVectorAllocator code_allocator(&allocator);
1154 VariableSizedHandleScope handles(soa.Self());
1155 // Go to native so that we don't block GC during compilation.
1156 ScopedThreadSuspension sts(soa.Self(), kNative);
1157 std::unique_ptr<CodeGenerator> codegen(
1158 TryCompileIntrinsic(&allocator,
1159 &arena_stack,
1160 &code_allocator,
1161 dex_compilation_unit,
1162 method,
1163 &handles));
1164 if (codegen != nullptr) {
1165 CompiledMethod* compiled_method = Emit(&allocator,
1166 &code_allocator,
1167 codegen.get(),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001168 /* code_item_for_osr_check */ nullptr);
1169 compiled_method->MarkAsIntrinsic();
1170 return compiled_method;
1171 }
1172 }
1173 }
1174
Vladimir Marko7bdc6e72017-11-28 12:37:13 +00001175 JniCompiledMethod jni_compiled_method = ArtQuickJniCompileMethod(
Vladimir Markoa0431112018-06-25 09:32:54 +01001176 compiler_options, access_flags, method_idx, dex_file);
Vladimir Markocd09e1f2017-11-24 15:02:40 +00001177 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kCompiledNativeStub);
David Srbeckyafc97bc2018-07-05 08:14:35 +00001178
1179 ArenaVector<uint8_t> stack_map(allocator.Adapter(kArenaAllocStackMaps));
1180 ArenaVector<uint8_t> method_info(allocator.Adapter(kArenaAllocStackMaps));
1181 CreateJniStackMap(&arena_stack, jni_compiled_method, &stack_map, &method_info);
Vladimir Marko7bdc6e72017-11-28 12:37:13 +00001182 return CompiledMethod::SwapAllocCompiledMethod(
1183 GetCompilerDriver(),
1184 jni_compiled_method.GetInstructionSet(),
1185 jni_compiled_method.GetCode(),
1186 jni_compiled_method.GetFrameSize(),
1187 jni_compiled_method.GetCoreSpillMask(),
1188 jni_compiled_method.GetFpSpillMask(),
David Srbeckyafc97bc2018-07-05 08:14:35 +00001189 ArrayRef<const uint8_t>(method_info),
1190 ArrayRef<const uint8_t>(stack_map),
Vladimir Marko7bdc6e72017-11-28 12:37:13 +00001191 jni_compiled_method.GetCfi(),
1192 /* patches */ ArrayRef<const linker::LinkerPatch>());
Nicolas Geoffray216eaa22015-03-17 17:09:30 +00001193}
1194
Andreas Gampe53c913b2014-08-12 23:19:23 -07001195Compiler* CreateOptimizingCompiler(CompilerDriver* driver) {
1196 return new OptimizingCompiler(driver);
1197}
1198
Nicolas Geoffray335005e2015-06-25 10:01:47 +01001199bool IsCompilingWithCoreImage() {
1200 const std::string& image = Runtime::Current()->GetImageLocation();
Roland Levillain2b03a1f2017-06-06 16:09:59 +01001201 return CompilerDriver::IsCoreImageFilename(image);
Nicolas Geoffray335005e2015-06-25 10:01:47 +01001202}
1203
Nicolas Geoffrayfbdfa6d2017-02-03 10:43:13 +00001204bool EncodeArtMethodInInlineInfo(ArtMethod* method ATTRIBUTE_UNUSED) {
1205 // Note: the runtime is null only for unit testing.
1206 return Runtime::Current() == nullptr || !Runtime::Current()->IsAotCompiler();
1207}
1208
1209bool CanEncodeInlinedMethodInStackMap(const DexFile& caller_dex_file, ArtMethod* callee) {
1210 if (!Runtime::Current()->IsAotCompiler()) {
1211 // JIT can always encode methods in stack maps.
1212 return true;
1213 }
1214 if (IsSameDexFile(caller_dex_file, *callee->GetDexFile())) {
1215 return true;
1216 }
1217 // TODO(ngeoffray): Support more AOT cases for inlining:
1218 // - methods in multidex
1219 // - methods in boot image for on-device non-PIC compilation.
1220 return false;
1221}
1222
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001223bool OptimizingCompiler::JitCompile(Thread* self,
1224 jit::JitCodeCache* code_cache,
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +00001225 ArtMethod* method,
Nicolas Geoffray01db5f72017-07-19 15:05:49 +01001226 bool osr,
1227 jit::JitLogger* jit_logger) {
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001228 StackHandleScope<3> hs(self);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001229 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(
1230 method->GetDeclaringClass()->GetClassLoader()));
1231 Handle<mirror::DexCache> dex_cache(hs.NewHandle(method->GetDexCache()));
Nicolas Geoffray250a3782016-04-20 16:27:53 +01001232 DCHECK(method->IsCompilable());
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001233
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001234 const DexFile* dex_file = method->GetDexFile();
1235 const uint16_t class_def_idx = method->GetClassDefIndex();
1236 const DexFile::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset());
1237 const uint32_t method_idx = method->GetDexMethodIndex();
1238 const uint32_t access_flags = method->GetAccessFlags();
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001239
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001240 Runtime* runtime = Runtime::Current();
1241 ArenaAllocator allocator(runtime->GetJitArenaPool());
Vladimir Marko2196c652017-11-30 16:16:07 +00001242
1243 if (UNLIKELY(method->IsNative())) {
Vladimir Markoa0431112018-06-25 09:32:54 +01001244 const CompilerOptions& compiler_options = GetCompilerDriver()->GetCompilerOptions();
Vladimir Marko2196c652017-11-30 16:16:07 +00001245 JniCompiledMethod jni_compiled_method = ArtQuickJniCompileMethod(
Vladimir Markoa0431112018-06-25 09:32:54 +01001246 compiler_options, access_flags, method_idx, *dex_file);
Vladimir Marko2196c652017-11-30 16:16:07 +00001247 ScopedNullHandle<mirror::ObjectArray<mirror::Object>> roots;
1248 ArenaSet<ArtMethod*, std::less<ArtMethod*>> cha_single_implementation_list(
1249 allocator.Adapter(kArenaAllocCHA));
David Srbeckyafc97bc2018-07-05 08:14:35 +00001250 ArenaVector<uint8_t> stack_map(allocator.Adapter(kArenaAllocStackMaps));
1251 ArenaVector<uint8_t> method_info(allocator.Adapter(kArenaAllocStackMaps));
1252 ArenaStack arena_stack(runtime->GetJitArenaPool());
1253 // StackMapStream is large and it does not fit into this frame, so we need helper method.
1254 // TODO: Try to avoid the extra memory copy that results from this.
1255 CreateJniStackMap(&arena_stack, jni_compiled_method, &stack_map, &method_info);
1256 uint8_t* stack_map_data = nullptr;
1257 uint8_t* method_info_data = nullptr;
1258 uint8_t* roots_data = nullptr;
1259 uint32_t data_size = code_cache->ReserveData(self,
1260 stack_map.size(),
1261 method_info.size(),
1262 /* number_of_roots */ 0,
1263 method,
1264 &stack_map_data,
1265 &method_info_data,
1266 &roots_data);
1267 if (stack_map_data == nullptr || roots_data == nullptr) {
1268 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kJitOutOfMemoryForCommit);
1269 return false;
1270 }
1271 memcpy(stack_map_data, stack_map.data(), stack_map.size());
1272 memcpy(method_info_data, method_info.data(), method_info.size());
1273
Vladimir Marko2196c652017-11-30 16:16:07 +00001274 const void* code = code_cache->CommitCode(
1275 self,
1276 method,
David Srbeckyafc97bc2018-07-05 08:14:35 +00001277 stack_map_data,
1278 method_info_data,
1279 roots_data,
Vladimir Marko2196c652017-11-30 16:16:07 +00001280 jni_compiled_method.GetFrameSize(),
1281 jni_compiled_method.GetCoreSpillMask(),
1282 jni_compiled_method.GetFpSpillMask(),
1283 jni_compiled_method.GetCode().data(),
1284 jni_compiled_method.GetCode().size(),
David Srbeckyafc97bc2018-07-05 08:14:35 +00001285 data_size,
Vladimir Marko2196c652017-11-30 16:16:07 +00001286 osr,
1287 roots,
1288 /* has_should_deoptimize_flag */ false,
1289 cha_single_implementation_list);
1290 if (code == nullptr) {
1291 return false;
1292 }
1293
David Srbeckyf4886df2017-12-11 16:06:29 +00001294 if (compiler_options.GenerateAnyDebugInfo()) {
Vladimir Marko2196c652017-11-30 16:16:07 +00001295 const auto* method_header = reinterpret_cast<const OatQuickMethodHeader*>(code);
1296 const uintptr_t code_address = reinterpret_cast<uintptr_t>(method_header->GetCode());
1297 debug::MethodDebugInfo info = {};
David Srbeckyc684f332018-01-19 17:38:06 +00001298 DCHECK(info.custom_name.empty());
Vladimir Marko2196c652017-11-30 16:16:07 +00001299 info.dex_file = dex_file;
1300 info.class_def_index = class_def_idx;
1301 info.dex_method_index = method_idx;
1302 info.access_flags = access_flags;
1303 info.code_item = code_item;
1304 info.isa = jni_compiled_method.GetInstructionSet();
1305 info.deduped = false;
1306 info.is_native_debuggable = compiler_options.GetNativeDebuggable();
1307 info.is_optimized = true;
1308 info.is_code_address_text_relative = false;
1309 info.code_address = code_address;
1310 info.code_size = jni_compiled_method.GetCode().size();
1311 info.frame_size_in_bytes = method_header->GetFrameSizeInBytes();
1312 info.code_info = nullptr;
1313 info.cfi = jni_compiled_method.GetCfi();
David Srbeckyc9e02082018-01-24 16:44:02 +00001314 GenerateJitDebugInfo(method, info);
Vladimir Marko2196c652017-11-30 16:16:07 +00001315 }
1316
1317 Runtime::Current()->GetJit()->AddMemoryUsage(method, allocator.BytesUsed());
1318 if (jit_logger != nullptr) {
1319 jit_logger->WriteLog(code, jni_compiled_method.GetCode().size(), method);
1320 }
1321 return true;
1322 }
1323
1324 ArenaStack arena_stack(runtime->GetJitArenaPool());
Vladimir Markoca6fff82017-10-03 14:49:14 +01001325 CodeVectorAllocator code_allocator(&allocator);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001326 VariableSizedHandleScope handles(self);
1327
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001328 std::unique_ptr<CodeGenerator> codegen;
1329 {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001330 DexCompilationUnit dex_compilation_unit(
1331 class_loader,
1332 runtime->GetClassLinker(),
1333 *dex_file,
1334 code_item,
1335 class_def_idx,
1336 method_idx,
1337 access_flags,
1338 /* verified_method */ nullptr,
1339 dex_cache);
1340
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001341 // Go to native so that we don't block GC during compilation.
1342 ScopedThreadSuspension sts(self, kNative);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001343 codegen.reset(
Vladimir Markoca6fff82017-10-03 14:49:14 +01001344 TryCompile(&allocator,
1345 &arena_stack,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001346 &code_allocator,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001347 dex_compilation_unit,
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +00001348 method,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001349 osr,
1350 &handles));
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001351 if (codegen.get() == nullptr) {
1352 return false;
1353 }
1354 }
1355
Mathieu Chartiercbcedbf2017-03-12 22:24:50 -07001356 size_t stack_map_size = 0;
1357 size_t method_info_size = 0;
1358 codegen->ComputeStackMapAndMethodInfoSize(&stack_map_size, &method_info_size);
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001359 size_t number_of_roots = codegen->GetNumberOfJitRoots();
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001360 // We allocate an object array to ensure the JIT roots that we will collect in EmitJitRoots
1361 // will be visible by the GC between EmitLiterals and CommitCode. Once CommitCode is
1362 // executed, this array is not needed.
1363 Handle<mirror::ObjectArray<mirror::Object>> roots(
1364 hs.NewHandle(mirror::ObjectArray<mirror::Object>::Alloc(
Vladimir Markob4eb1b12018-05-24 11:09:38 +01001365 self, GetClassRoot<mirror::ObjectArray<mirror::Object>>(), number_of_roots)));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001366 if (roots == nullptr) {
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001367 // Out of memory, just clear the exception to avoid any Java exception uncaught problems.
Vladimir Markocd09e1f2017-11-24 15:02:40 +00001368 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kJitOutOfMemoryForCommit);
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001369 DCHECK(self->IsExceptionPending());
1370 self->ClearException();
1371 return false;
1372 }
1373 uint8_t* stack_map_data = nullptr;
Mathieu Chartiercbcedbf2017-03-12 22:24:50 -07001374 uint8_t* method_info_data = nullptr;
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001375 uint8_t* roots_data = nullptr;
Orion Hodsondbd05fe2017-08-10 11:41:35 +01001376 uint32_t data_size = code_cache->ReserveData(self,
1377 stack_map_size,
1378 method_info_size,
1379 number_of_roots,
1380 method,
1381 &stack_map_data,
1382 &method_info_data,
1383 &roots_data);
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001384 if (stack_map_data == nullptr || roots_data == nullptr) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +00001385 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kJitOutOfMemoryForCommit);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001386 return false;
1387 }
Mathieu Chartiercbcedbf2017-03-12 22:24:50 -07001388 codegen->BuildStackMaps(MemoryRegion(stack_map_data, stack_map_size),
1389 MemoryRegion(method_info_data, method_info_size),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001390 code_item);
Nicolas Geoffrayf0acfe72017-01-09 20:54:52 +00001391 codegen->EmitJitRoots(code_allocator.GetData(), roots, roots_data);
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001392
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001393 const void* code = code_cache->CommitCode(
1394 self,
1395 method,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001396 stack_map_data,
Mathieu Chartiercbcedbf2017-03-12 22:24:50 -07001397 method_info_data,
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001398 roots_data,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001399 codegen->HasEmptyFrame() ? 0 : codegen->GetFrameSize(),
1400 codegen->GetCoreSpillMask(),
1401 codegen->GetFpuSpillMask(),
1402 code_allocator.GetMemory().data(),
Vladimir Markoca1e0382018-04-11 09:58:41 +00001403 code_allocator.GetMemory().size(),
Orion Hodsondbd05fe2017-08-10 11:41:35 +01001404 data_size,
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001405 osr,
Mingyao Yang063fc772016-08-02 11:02:54 -07001406 roots,
1407 codegen->GetGraph()->HasShouldDeoptimizeFlag(),
1408 codegen->GetGraph()->GetCHASingleImplementationList());
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001409
1410 if (code == nullptr) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +00001411 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kJitOutOfMemoryForCommit);
Nicolas Geoffrayf46501c2016-11-22 13:45:36 +00001412 code_cache->ClearData(self, stack_map_data, roots_data);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001413 return false;
1414 }
1415
David Srbecky91cc06c2016-03-07 16:13:58 +00001416 const CompilerOptions& compiler_options = GetCompilerDriver()->GetCompilerOptions();
David Srbeckyf4886df2017-12-11 16:06:29 +00001417 if (compiler_options.GenerateAnyDebugInfo()) {
David Srbecky5cc349f2015-12-18 15:04:48 +00001418 const auto* method_header = reinterpret_cast<const OatQuickMethodHeader*>(code);
1419 const uintptr_t code_address = reinterpret_cast<uintptr_t>(method_header->GetCode());
Vladimir Marko1b404a82017-09-01 13:35:26 +01001420 debug::MethodDebugInfo info = {};
David Srbeckyc684f332018-01-19 17:38:06 +00001421 DCHECK(info.custom_name.empty());
David Srbecky197160d2016-03-07 17:33:57 +00001422 info.dex_file = dex_file;
1423 info.class_def_index = class_def_idx;
1424 info.dex_method_index = method_idx;
1425 info.access_flags = access_flags;
1426 info.code_item = code_item;
1427 info.isa = codegen->GetInstructionSet();
1428 info.deduped = false;
1429 info.is_native_debuggable = compiler_options.GetNativeDebuggable();
1430 info.is_optimized = true;
1431 info.is_code_address_text_relative = false;
1432 info.code_address = code_address;
Vladimir Markoca1e0382018-04-11 09:58:41 +00001433 info.code_size = code_allocator.GetMemory().size();
David Srbecky197160d2016-03-07 17:33:57 +00001434 info.frame_size_in_bytes = method_header->GetFrameSizeInBytes();
1435 info.code_info = stack_map_size == 0 ? nullptr : stack_map_data;
1436 info.cfi = ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data());
David Srbeckyc9e02082018-01-24 16:44:02 +00001437 GenerateJitDebugInfo(method, info);
David Srbecky5cc349f2015-12-18 15:04:48 +00001438 }
1439
Vladimir Markoca6fff82017-10-03 14:49:14 +01001440 Runtime::Current()->GetJit()->AddMemoryUsage(method, allocator.BytesUsed());
Nicolas Geoffray01db5f72017-07-19 15:05:49 +01001441 if (jit_logger != nullptr) {
Vladimir Markoca1e0382018-04-11 09:58:41 +00001442 jit_logger->WriteLog(code, code_allocator.GetMemory().size(), method);
Nicolas Geoffray01db5f72017-07-19 15:05:49 +01001443 }
Nicolas Geoffraya4f81542016-03-08 16:57:48 +00001444
Vladimir Marko174b2e22017-10-12 13:34:49 +01001445 if (kArenaAllocatorCountAllocations) {
1446 codegen.reset(); // Release codegen's ScopedArenaAllocator for memory accounting.
1447 size_t total_allocated = allocator.BytesAllocated() + arena_stack.PeakBytesAllocated();
1448 if (total_allocated > kArenaAllocatorMemoryReportThreshold) {
1449 MemStats mem_stats(allocator.GetMemStats());
1450 MemStats peak_stats(arena_stack.GetPeakStats());
1451 LOG(INFO) << "Used " << total_allocated << " bytes of arena memory for compiling "
1452 << dex_file->PrettyMethod(method_idx)
1453 << "\n" << Dumpable<MemStats>(mem_stats)
1454 << "\n" << Dumpable<MemStats>(peak_stats);
1455 }
1456 }
1457
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001458 return true;
1459}
1460
David Srbeckyc9e02082018-01-24 16:44:02 +00001461void OptimizingCompiler::GenerateJitDebugInfo(ArtMethod* method, debug::MethodDebugInfo info) {
David Srbeckyc684f332018-01-19 17:38:06 +00001462 const CompilerOptions& compiler_options = GetCompilerDriver()->GetCompilerOptions();
1463 DCHECK(compiler_options.GenerateAnyDebugInfo());
1464
1465 // If both flags are passed, generate full debug info.
1466 const bool mini_debug_info = !compiler_options.GetGenerateDebugInfo();
1467
1468 // Create entry for the single method that we just compiled.
1469 std::vector<uint8_t> elf_file = debug::MakeElfFileForJIT(
Vladimir Markoa0431112018-06-25 09:32:54 +01001470 compiler_options.GetInstructionSet(),
1471 compiler_options.GetInstructionSetFeatures(),
David Srbeckyc684f332018-01-19 17:38:06 +00001472 mini_debug_info,
1473 ArrayRef<const debug::MethodDebugInfo>(&info, 1));
David Srbeckyfb3de3d2018-01-29 16:11:49 +00001474 MutexLock mu(Thread::Current(), *Locks::native_debug_interface_lock_);
David Srbecky440a9b32018-02-15 17:47:29 +00001475 AddNativeDebugInfoForJit(reinterpret_cast<const void*>(info.code_address), elf_file);
David Srbeckyc9e02082018-01-24 16:44:02 +00001476
1477 VLOG(jit)
1478 << "JIT mini-debug-info added for " << ArtMethod::PrettyMethod(method)
1479 << " size=" << PrettySize(elf_file.size())
David Srbecky440a9b32018-02-15 17:47:29 +00001480 << " total_size=" << PrettySize(GetJitNativeDebugInfoMemUsage());
David Srbeckyc684f332018-01-19 17:38:06 +00001481}
1482
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +00001483} // namespace art