blob: a6163a7fcf39d75ecaac0ec738dc9b72f2430667 [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"
34#include "code_generator.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000035#include "compiled_method.h"
Andreas Gampe53c913b2014-08-12 23:19:23 -070036#include "compiler.h"
David Srbeckyc5bfa972016-02-05 15:49:10 +000037#include "debug/elf_debug_writer.h"
David Srbecky4fda4eb2016-02-05 13:34:46 +000038#include "debug/method_debug_info.h"
David Sehr9e734c72018-01-04 17:56:19 -080039#include "dex/dex_file_types.h"
Calin Juravlef1c6d9e2015-04-13 18:42:21 +010040#include "dex/verification_results.h"
David Srbecky4fda4eb2016-02-05 13:34:46 +000041#include "dex/verified_method.h"
Nicolas Geoffray9523a3e2015-07-17 11:51:28 +000042#include "driver/compiler_driver-inl.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000043#include "driver/compiler_options.h"
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000044#include "driver/dex_compilation_unit.h"
David Brazdil69ba7b72015-06-23 18:27:30 +010045#include "graph_checker.h"
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010046#include "graph_visualizer.h"
Nicolas Geoffraye53798a2014-12-01 10:31:54 +000047#include "inliner.h"
David Srbecky5cc349f2015-12-18 15:04:48 +000048#include "jit/debugger_interface.h"
Nicolas Geoffraya4f81542016-03-08 16:57:48 +000049#include "jit/jit.h"
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +000050#include "jit/jit_code_cache.h"
Nicolas Geoffray01db5f72017-07-19 15:05:49 +010051#include "jit/jit_logger.h"
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +000052#include "jni/quick/jni_compiler.h"
Vladimir Markod8dbc8d2017-09-20 13:37:47 +010053#include "linker/linker_patch.h"
Nicolas Geoffray787c3072014-03-17 10:20:19 +000054#include "nodes.h"
David Srbecky4fda4eb2016-02-05 13:34:46 +000055#include "oat_quick_method_header.h"
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +010056#include "prepare_for_register_allocation.h"
Calin Juravlef1c6d9e2015-04-13 18:42:21 +010057#include "reference_type_propagation.h"
Matthew Gharritye9288852016-07-14 14:08:16 -070058#include "register_allocator_linear_scan.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070059#include "select_generator.h"
Nicolas Geoffray31596742014-11-24 15:28:45 +000060#include "ssa_builder.h"
Nicolas Geoffray804d0932014-05-02 08:46:00 +010061#include "ssa_liveness_analysis.h"
David Srbecky4fda4eb2016-02-05 13:34:46 +000062#include "ssa_phi_elimination.h"
David Srbeckyc6b4dd82015-04-07 20:32:43 +010063#include "utils/assembler.h"
Andreas Gampe6d7abbd2017-04-24 13:19:09 -070064#include "verifier/verifier_compiler_binding.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000065
66namespace art {
67
Vladimir Marko3a40bf22016-03-22 16:26:33 +000068static constexpr size_t kArenaAllocatorMemoryReportThreshold = 8 * MB;
69
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -070070static constexpr const char* kPassNameSeparator = "$";
71
Nicolas Geoffray787c3072014-03-17 10:20:19 +000072/**
73 * Used by the code generator, to allocate the code in a vector.
74 */
75class CodeVectorAllocator FINAL : public CodeAllocator {
76 public:
Vladimir Markoe764d2e2017-10-05 14:35:55 +010077 explicit CodeVectorAllocator(ArenaAllocator* allocator)
Vladimir Markoca1e0382018-04-11 09:58:41 +000078 : memory_(allocator->Adapter(kArenaAllocCodeBuffer)) {}
Nicolas Geoffray787c3072014-03-17 10:20:19 +000079
80 virtual uint8_t* Allocate(size_t size) {
Nicolas Geoffray92cf83e2014-03-18 17:59:20 +000081 memory_.resize(size);
Nicolas Geoffray787c3072014-03-17 10:20:19 +000082 return &memory_[0];
83 }
84
Vladimir Markoca1e0382018-04-11 09:58:41 +000085 ArrayRef<const uint8_t> GetMemory() const OVERRIDE { return ArrayRef<const uint8_t>(memory_); }
Nicolas Geoffray132d8362016-11-16 09:19:42 +000086 uint8_t* GetData() { return memory_.data(); }
Nicolas Geoffray787c3072014-03-17 10:20:19 +000087
88 private:
Vladimir Markof9f64412015-09-02 14:05:49 +010089 ArenaVector<uint8_t> memory_;
Nicolas Geoffray787c3072014-03-17 10:20:19 +000090
91 DISALLOW_COPY_AND_ASSIGN(CodeVectorAllocator);
92};
93
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010094/**
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010095 * Filter to apply to the visualizer. Methods whose name contain that filter will
David Brazdilee690a32014-12-01 17:04:16 +000096 * be dumped.
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010097 */
Andreas Gampe53fcd0f2015-07-22 12:10:13 -070098static constexpr const char kStringFilter[] = "";
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010099
David Brazdil69ba7b72015-06-23 18:27:30 +0100100class PassScope;
David Brazdil809658e2015-02-05 11:34:02 +0000101
David Brazdil69ba7b72015-06-23 18:27:30 +0100102class PassObserver : public ValueObject {
David Brazdil5e8b1372015-01-23 14:39:08 +0000103 public:
David Brazdil69ba7b72015-06-23 18:27:30 +0100104 PassObserver(HGraph* graph,
David Brazdil69ba7b72015-06-23 18:27:30 +0100105 CodeGenerator* codegen,
106 std::ostream* visualizer_output,
Andreas Gampea0d81af2016-10-27 12:04:57 -0700107 CompilerDriver* compiler_driver,
108 Mutex& dump_mutex)
David Brazdil69ba7b72015-06-23 18:27:30 +0100109 : graph_(graph),
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000110 cached_method_name_(),
Nicolas Geoffray2d8801f2017-11-28 15:50:07 +0000111 timing_logger_enabled_(compiler_driver->GetCompilerOptions().GetDumpTimings()),
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000112 timing_logger_(timing_logger_enabled_ ? GetMethodName() : "", true, true),
Vladimir Markoca6fff82017-10-03 14:49:14 +0100113 disasm_info_(graph->GetAllocator()),
Andreas Gampea0d81af2016-10-27 12:04:57 -0700114 visualizer_oss_(),
115 visualizer_output_(visualizer_output),
Nicolas Geoffrayc903b6a2016-01-18 12:56:06 +0000116 visualizer_enabled_(!compiler_driver->GetCompilerOptions().GetDumpCfgFileName().empty()),
Andreas Gampea0d81af2016-10-27 12:04:57 -0700117 visualizer_(&visualizer_oss_, graph, *codegen),
118 visualizer_dump_mutex_(dump_mutex),
David Brazdil69ba7b72015-06-23 18:27:30 +0100119 graph_in_bad_state_(false) {
Andreas Gampe53fcd0f2015-07-22 12:10:13 -0700120 if (timing_logger_enabled_ || visualizer_enabled_) {
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000121 if (!IsVerboseMethod(compiler_driver, GetMethodName())) {
Andreas Gampe53fcd0f2015-07-22 12:10:13 -0700122 timing_logger_enabled_ = visualizer_enabled_ = false;
123 }
124 if (visualizer_enabled_) {
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000125 visualizer_.PrintHeader(GetMethodName());
Andreas Gampe53fcd0f2015-07-22 12:10:13 -0700126 codegen->SetDisassemblyInformation(&disasm_info_);
127 }
David Brazdil62e074f2015-04-07 18:09:37 +0100128 }
David Brazdil5e8b1372015-01-23 14:39:08 +0000129 }
130
David Brazdil69ba7b72015-06-23 18:27:30 +0100131 ~PassObserver() {
David Brazdil5e8b1372015-01-23 14:39:08 +0000132 if (timing_logger_enabled_) {
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000133 LOG(INFO) << "TIMINGS " << GetMethodName();
David Brazdil5e8b1372015-01-23 14:39:08 +0000134 LOG(INFO) << Dumpable<TimingLogger>(timing_logger_);
135 }
Nicolas Geoffray00c141a2016-11-10 15:19:15 +0000136 DCHECK(visualizer_oss_.str().empty());
David Brazdil5e8b1372015-01-23 14:39:08 +0000137 }
138
Nicolas Geoffray00c141a2016-11-10 15:19:15 +0000139 void DumpDisassembly() REQUIRES(!visualizer_dump_mutex_) {
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100140 if (visualizer_enabled_) {
141 visualizer_.DumpGraphWithDisassembly();
Nicolas Geoffray00c141a2016-11-10 15:19:15 +0000142 FlushVisualizer();
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100143 }
144 }
145
David Brazdil69ba7b72015-06-23 18:27:30 +0100146 void SetGraphInBadState() { graph_in_bad_state_ = true; }
147
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000148 const char* GetMethodName() {
149 // PrettyMethod() is expensive, so we delay calling it until we actually have to.
150 if (cached_method_name_.empty()) {
David Sehr709b0702016-10-13 09:12:37 -0700151 cached_method_name_ = graph_->GetDexFile().PrettyMethod(graph_->GetMethodIdx());
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000152 }
153 return cached_method_name_.c_str();
154 }
155
David Brazdil5e8b1372015-01-23 14:39:08 +0000156 private:
Nicolas Geoffray00c141a2016-11-10 15:19:15 +0000157 void StartPass(const char* pass_name) REQUIRES(!visualizer_dump_mutex_) {
Wojciech Staszkiewicze7060702016-08-16 17:31:19 -0700158 VLOG(compiler) << "Starting pass: " << pass_name;
David Brazdil809658e2015-02-05 11:34:02 +0000159 // Dump graph first, then start timer.
160 if (visualizer_enabled_) {
David Brazdilffee3d32015-07-06 11:48:53 +0100161 visualizer_.DumpGraph(pass_name, /* is_after_pass */ false, graph_in_bad_state_);
Nicolas Geoffray00c141a2016-11-10 15:19:15 +0000162 FlushVisualizer();
David Brazdil809658e2015-02-05 11:34:02 +0000163 }
164 if (timing_logger_enabled_) {
165 timing_logger_.StartTiming(pass_name);
166 }
167 }
168
Nicolas Geoffray00c141a2016-11-10 15:19:15 +0000169 void FlushVisualizer() REQUIRES(!visualizer_dump_mutex_) {
170 MutexLock mu(Thread::Current(), visualizer_dump_mutex_);
171 *visualizer_output_ << visualizer_oss_.str();
172 visualizer_output_->flush();
173 visualizer_oss_.str("");
174 visualizer_oss_.clear();
175 }
176
177 void EndPass(const char* pass_name) REQUIRES(!visualizer_dump_mutex_) {
David Brazdil809658e2015-02-05 11:34:02 +0000178 // Pause timer first, then dump graph.
179 if (timing_logger_enabled_) {
180 timing_logger_.EndTiming();
181 }
182 if (visualizer_enabled_) {
David Brazdilffee3d32015-07-06 11:48:53 +0100183 visualizer_.DumpGraph(pass_name, /* is_after_pass */ true, graph_in_bad_state_);
Nicolas Geoffray00c141a2016-11-10 15:19:15 +0000184 FlushVisualizer();
David Brazdil809658e2015-02-05 11:34:02 +0000185 }
David Brazdil69ba7b72015-06-23 18:27:30 +0100186
187 // Validate the HGraph if running in debug mode.
188 if (kIsDebugBuild) {
189 if (!graph_in_bad_state_) {
David Brazdilbadd8262016-02-02 16:28:56 +0000190 GraphChecker checker(graph_);
191 checker.Run();
192 if (!checker.IsValid()) {
193 LOG(FATAL) << "Error after " << pass_name << ": " << Dumpable<GraphChecker>(checker);
David Brazdil69ba7b72015-06-23 18:27:30 +0100194 }
195 }
196 }
David Brazdil809658e2015-02-05 11:34:02 +0000197 }
198
Andreas Gampe53fcd0f2015-07-22 12:10:13 -0700199 static bool IsVerboseMethod(CompilerDriver* compiler_driver, const char* method_name) {
200 // Test an exact match to --verbose-methods. If verbose-methods is set, this overrides an
201 // empty kStringFilter matching all methods.
202 if (compiler_driver->GetCompilerOptions().HasVerboseMethods()) {
203 return compiler_driver->GetCompilerOptions().IsVerboseMethod(method_name);
204 }
205
206 // Test the kStringFilter sub-string. constexpr helper variable to silence unreachable-code
207 // warning when the string is empty.
208 constexpr bool kStringFilterEmpty = arraysize(kStringFilter) <= 1;
209 if (kStringFilterEmpty || strstr(method_name, kStringFilter) != nullptr) {
210 return true;
211 }
212
213 return false;
214 }
215
David Brazdil69ba7b72015-06-23 18:27:30 +0100216 HGraph* const graph_;
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000217
218 std::string cached_method_name_;
David Brazdil5e8b1372015-01-23 14:39:08 +0000219
220 bool timing_logger_enabled_;
David Brazdil5e8b1372015-01-23 14:39:08 +0000221 TimingLogger timing_logger_;
222
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100223 DisassemblyInformation disasm_info_;
224
Andreas Gampea0d81af2016-10-27 12:04:57 -0700225 std::ostringstream visualizer_oss_;
226 std::ostream* visualizer_output_;
David Brazdil5e8b1372015-01-23 14:39:08 +0000227 bool visualizer_enabled_;
228 HGraphVisualizer visualizer_;
Andreas Gampea0d81af2016-10-27 12:04:57 -0700229 Mutex& visualizer_dump_mutex_;
David Brazdil5e8b1372015-01-23 14:39:08 +0000230
David Brazdil69ba7b72015-06-23 18:27:30 +0100231 // Flag to be set by the compiler if the pass failed and the graph is not
232 // expected to validate.
233 bool graph_in_bad_state_;
David Brazdil809658e2015-02-05 11:34:02 +0000234
David Brazdil69ba7b72015-06-23 18:27:30 +0100235 friend PassScope;
236
237 DISALLOW_COPY_AND_ASSIGN(PassObserver);
David Brazdil5e8b1372015-01-23 14:39:08 +0000238};
239
David Brazdil69ba7b72015-06-23 18:27:30 +0100240class PassScope : public ValueObject {
David Brazdil809658e2015-02-05 11:34:02 +0000241 public:
David Brazdil69ba7b72015-06-23 18:27:30 +0100242 PassScope(const char *pass_name, PassObserver* pass_observer)
David Brazdil809658e2015-02-05 11:34:02 +0000243 : pass_name_(pass_name),
David Brazdil69ba7b72015-06-23 18:27:30 +0100244 pass_observer_(pass_observer) {
245 pass_observer_->StartPass(pass_name_);
David Brazdil809658e2015-02-05 11:34:02 +0000246 }
247
David Brazdil69ba7b72015-06-23 18:27:30 +0100248 ~PassScope() {
249 pass_observer_->EndPass(pass_name_);
David Brazdil809658e2015-02-05 11:34:02 +0000250 }
251
252 private:
253 const char* const pass_name_;
David Brazdil69ba7b72015-06-23 18:27:30 +0100254 PassObserver* const pass_observer_;
David Brazdil809658e2015-02-05 11:34:02 +0000255};
256
Andreas Gampe53c913b2014-08-12 23:19:23 -0700257class OptimizingCompiler FINAL : public Compiler {
258 public:
259 explicit OptimizingCompiler(CompilerDriver* driver);
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -0700260 ~OptimizingCompiler() OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700261
Vladimir Markodf739842016-03-23 16:59:07 +0000262 bool CanCompileMethod(uint32_t method_idx, const DexFile& dex_file) const OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700263
264 CompiledMethod* Compile(const DexFile::CodeItem* code_item,
265 uint32_t access_flags,
266 InvokeType invoke_type,
267 uint16_t class_def_idx,
268 uint32_t method_idx,
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000269 Handle<mirror::ClassLoader> class_loader,
Mathieu Chartier736b5602015-09-02 14:54:11 -0700270 const DexFile& dex_file,
271 Handle<mirror::DexCache> dex_cache) const OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700272
Andreas Gampe53c913b2014-08-12 23:19:23 -0700273 CompiledMethod* JniCompile(uint32_t access_flags,
274 uint32_t method_idx,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000275 const DexFile& dex_file,
276 Handle<mirror::DexCache> dex_cache) const OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700277
Mathieu Chartiere401d142015-04-22 13:56:20 -0700278 uintptr_t GetEntryPointOf(ArtMethod* method) const OVERRIDE
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700279 REQUIRES_SHARED(Locks::mutator_lock_) {
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000280 return reinterpret_cast<uintptr_t>(method->GetEntryPointFromQuickCompiledCodePtrSize(
281 InstructionSetPointerSize(GetCompilerDriver()->GetInstructionSet())));
282 }
Andreas Gampe53c913b2014-08-12 23:19:23 -0700283
David Brazdilee690a32014-12-01 17:04:16 +0000284 void Init() OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700285
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000286 void UnInit() const OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700287
Nicolas Geoffray01db5f72017-07-19 15:05:49 +0100288 bool JitCompile(Thread* self,
289 jit::JitCodeCache* code_cache,
290 ArtMethod* method,
291 bool osr,
292 jit::JitLogger* jit_logger)
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000293 OVERRIDE
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700294 REQUIRES_SHARED(Locks::mutator_lock_);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000295
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -0700296 private:
Aart Bik24773202018-04-26 10:28:51 -0700297 bool RunOptimizations(HGraph* graph,
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -0700298 CodeGenerator* codegen,
Aart Bik2ca10eb2017-11-15 15:17:53 -0800299 const DexCompilationUnit& dex_compilation_unit,
300 PassObserver* pass_observer,
301 VariableSizedHandleScope* handles,
302 const OptimizationDef definitions[],
303 size_t length) const {
304 // Convert definitions to optimization passes.
305 ArenaVector<HOptimization*> optimizations = ConstructOptimizations(
306 definitions,
307 length,
308 graph->GetAllocator(),
309 graph,
310 compilation_stats_.get(),
311 codegen,
312 GetCompilerDriver(),
313 dex_compilation_unit,
314 handles);
315 DCHECK_EQ(length, optimizations.size());
Aart Bik2e148682018-04-18 16:11:12 -0700316 // Run the optimization passes one by one. Any "depends_on" pass refers back to
317 // the most recent occurrence of that pass, skipped or executed.
318 std::bitset<static_cast<size_t>(OptimizationPass::kLast) + 1u> pass_changes;
319 pass_changes[static_cast<size_t>(OptimizationPass::kNone)] = true;
Aart Bik24773202018-04-26 10:28:51 -0700320 bool change = false;
Aart Bik2ca10eb2017-11-15 15:17:53 -0800321 for (size_t i = 0; i < length; ++i) {
Aart Bik2e148682018-04-18 16:11:12 -0700322 if (pass_changes[static_cast<size_t>(definitions[i].depends_on)]) {
323 // Execute the pass and record whether it changed anything.
324 PassScope scope(optimizations[i]->GetPassName(), pass_observer);
325 bool pass_change = optimizations[i]->Run();
326 pass_changes[static_cast<size_t>(definitions[i].pass)] = pass_change;
327 change |= pass_change;
328 } else {
329 // Skip the pass and record that nothing changed.
330 pass_changes[static_cast<size_t>(definitions[i].pass)] = false;
331 }
Aart Bik2ca10eb2017-11-15 15:17:53 -0800332 }
Aart Bik24773202018-04-26 10:28:51 -0700333 return change;
Aart Bik2ca10eb2017-11-15 15:17:53 -0800334 }
335
Aart Bik24773202018-04-26 10:28:51 -0700336 template <size_t length> bool RunOptimizations(
Aart Bik2ca10eb2017-11-15 15:17:53 -0800337 HGraph* graph,
338 CodeGenerator* codegen,
339 const DexCompilationUnit& dex_compilation_unit,
340 PassObserver* pass_observer,
341 VariableSizedHandleScope* handles,
342 const OptimizationDef (&definitions)[length]) const {
Aart Bik24773202018-04-26 10:28:51 -0700343 return RunOptimizations(
Aart Bik2ca10eb2017-11-15 15:17:53 -0800344 graph, codegen, dex_compilation_unit, pass_observer, handles, definitions, length);
345 }
346
347 void RunOptimizations(HGraph* graph,
348 CodeGenerator* codegen,
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -0700349 const DexCompilationUnit& dex_compilation_unit,
350 PassObserver* pass_observer,
Mathieu Chartiere8a3c572016-10-11 16:52:17 -0700351 VariableSizedHandleScope* handles) const;
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700352
Andreas Gampe53c913b2014-08-12 23:19:23 -0700353 private:
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000354 // Create a 'CompiledMethod' for an optimized graph.
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100355 CompiledMethod* Emit(ArenaAllocator* allocator,
David Brazdil58282f42016-01-14 12:45:10 +0000356 CodeVectorAllocator* code_allocator,
357 CodeGenerator* codegen,
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000358 const DexFile::CodeItem* item) const;
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000359
360 // Try compiling a method and return the code generator used for
361 // compiling it.
362 // This method:
363 // 1) Builds the graph. Returns null if it failed to build it.
David Brazdil58282f42016-01-14 12:45:10 +0000364 // 2) Transforms the graph to SSA. Returns null if it failed.
365 // 3) Runs optimizations on the graph, including register allocator.
366 // 4) Generates code with the `code_allocator` provided.
Vladimir Markoca6fff82017-10-03 14:49:14 +0100367 CodeGenerator* TryCompile(ArenaAllocator* allocator,
368 ArenaStack* arena_stack,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000369 CodeVectorAllocator* code_allocator,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000370 const DexCompilationUnit& dex_compilation_unit,
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000371 ArtMethod* method,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000372 bool osr,
373 VariableSizedHandleScope* handles) const;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000374
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000375 CodeGenerator* TryCompileIntrinsic(ArenaAllocator* allocator,
376 ArenaStack* arena_stack,
377 CodeVectorAllocator* code_allocator,
378 const DexCompilationUnit& dex_compilation_unit,
379 ArtMethod* method,
380 VariableSizedHandleScope* handles) const;
381
Aart Bik24773202018-04-26 10:28:51 -0700382 bool RunArchOptimizations(HGraph* graph,
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700383 CodeGenerator* codegen,
Aart Bik2ca10eb2017-11-15 15:17:53 -0800384 const DexCompilationUnit& dex_compilation_unit,
385 PassObserver* pass_observer,
386 VariableSizedHandleScope* handles) const;
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700387
David Srbeckyc9e02082018-01-24 16:44:02 +0000388 void GenerateJitDebugInfo(ArtMethod* method, debug::MethodDebugInfo method_debug_info)
389 REQUIRES_SHARED(Locks::mutator_lock_);
David Srbeckyc684f332018-01-19 17:38:06 +0000390
Calin Juravle2be39e02015-04-21 13:56:34 +0100391 std::unique_ptr<OptimizingCompilerStats> compilation_stats_;
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100392
Andreas Gampe53c913b2014-08-12 23:19:23 -0700393 std::unique_ptr<std::ostream> visualizer_output_;
394
Andreas Gampea0d81af2016-10-27 12:04:57 -0700395 mutable Mutex dump_mutex_; // To synchronize visualizer writing.
396
Andreas Gampe53c913b2014-08-12 23:19:23 -0700397 DISALLOW_COPY_AND_ASSIGN(OptimizingCompiler);
398};
399
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100400static const int kMaximumCompilationTimeBeforeWarning = 100; /* ms */
401
402OptimizingCompiler::OptimizingCompiler(CompilerDriver* driver)
Andreas Gampea0d81af2016-10-27 12:04:57 -0700403 : Compiler(driver, kMaximumCompilationTimeBeforeWarning),
404 dump_mutex_("Visualizer dump lock") {}
David Brazdilee690a32014-12-01 17:04:16 +0000405
406void OptimizingCompiler::Init() {
407 // Enable C1visualizer output. Must be done in Init() because the compiler
408 // driver is not fully initialized when passed to the compiler's constructor.
409 CompilerDriver* driver = GetCompilerDriver();
Nicolas Geoffrayc903b6a2016-01-18 12:56:06 +0000410 const std::string cfg_file_name = driver->GetCompilerOptions().GetDumpCfgFileName();
David Brazdil866c0312015-01-13 21:21:31 +0000411 if (!cfg_file_name.empty()) {
Calin Juravle87000a92015-08-24 15:34:44 +0100412 std::ios_base::openmode cfg_file_mode =
Nicolas Geoffrayc903b6a2016-01-18 12:56:06 +0000413 driver->GetCompilerOptions().GetDumpCfgAppend() ? std::ofstream::app : std::ofstream::out;
Calin Juravle87000a92015-08-24 15:34:44 +0100414 visualizer_output_.reset(new std::ofstream(cfg_file_name, cfg_file_mode));
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100415 }
Nicolas Geoffray2d8801f2017-11-28 15:50:07 +0000416 if (driver->GetCompilerOptions().GetDumpStats()) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100417 compilation_stats_.reset(new OptimizingCompilerStats());
418 }
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100419}
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000420
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000421void OptimizingCompiler::UnInit() const {
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000422}
423
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100424OptimizingCompiler::~OptimizingCompiler() {
Calin Juravle2be39e02015-04-21 13:56:34 +0100425 if (compilation_stats_.get() != nullptr) {
426 compilation_stats_->Log();
427 }
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100428}
429
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +0000430bool OptimizingCompiler::CanCompileMethod(uint32_t method_idx ATTRIBUTE_UNUSED,
Vladimir Markodf739842016-03-23 16:59:07 +0000431 const DexFile& dex_file ATTRIBUTE_UNUSED) const {
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +0000432 return true;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700433}
434
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000435static bool IsInstructionSetSupported(InstructionSet instruction_set) {
Vladimir Marko33bff252017-11-01 14:35:42 +0000436 return instruction_set == InstructionSet::kArm
437 || instruction_set == InstructionSet::kArm64
438 || instruction_set == InstructionSet::kThumb2
439 || instruction_set == InstructionSet::kMips
440 || instruction_set == InstructionSet::kMips64
441 || instruction_set == InstructionSet::kX86
442 || instruction_set == InstructionSet::kX86_64;
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000443}
444
Aart Bik24773202018-04-26 10:28:51 -0700445bool OptimizingCompiler::RunArchOptimizations(HGraph* graph,
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700446 CodeGenerator* codegen,
Aart Bik2ca10eb2017-11-15 15:17:53 -0800447 const DexCompilationUnit& dex_compilation_unit,
448 PassObserver* pass_observer,
449 VariableSizedHandleScope* handles) const {
450 switch (GetCompilerDriver()->GetInstructionSet()) {
Artem Serov2bbc9532016-10-21 11:51:50 +0100451#if defined(ART_ENABLE_CODEGEN_arm)
Vladimir Marko33bff252017-11-01 14:35:42 +0000452 case InstructionSet::kThumb2:
453 case InstructionSet::kArm: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800454 OptimizationDef arm_optimizations[] = {
455 OptDef(OptimizationPass::kInstructionSimplifierArm),
456 OptDef(OptimizationPass::kSideEffectsAnalysis),
457 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
458 OptDef(OptimizationPass::kScheduling)
Vladimir Markob4536b72015-11-24 13:45:23 +0000459 };
Aart Bik24773202018-04-26 10:28:51 -0700460 return RunOptimizations(graph,
461 codegen,
462 dex_compilation_unit,
463 pass_observer,
464 handles,
465 arm_optimizations);
Vladimir Markob4536b72015-11-24 13:45:23 +0000466 }
467#endif
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100468#ifdef ART_ENABLE_CODEGEN_arm64
Vladimir Marko33bff252017-11-01 14:35:42 +0000469 case InstructionSet::kArm64: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800470 OptimizationDef arm64_optimizations[] = {
471 OptDef(OptimizationPass::kInstructionSimplifierArm64),
472 OptDef(OptimizationPass::kSideEffectsAnalysis),
473 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
474 OptDef(OptimizationPass::kScheduling)
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100475 };
Aart Bik24773202018-04-26 10:28:51 -0700476 return RunOptimizations(graph,
477 codegen,
478 dex_compilation_unit,
479 pass_observer,
480 handles,
481 arm64_optimizations);
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100482 }
483#endif
Alexey Frunzee3fb2452016-05-10 16:08:05 -0700484#ifdef ART_ENABLE_CODEGEN_mips
Vladimir Marko33bff252017-11-01 14:35:42 +0000485 case InstructionSet::kMips: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800486 OptimizationDef mips_optimizations[] = {
487 OptDef(OptimizationPass::kInstructionSimplifierMips),
488 OptDef(OptimizationPass::kSideEffectsAnalysis),
489 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
490 OptDef(OptimizationPass::kPcRelativeFixupsMips)
Alexey Frunzee3fb2452016-05-10 16:08:05 -0700491 };
Aart Bik24773202018-04-26 10:28:51 -0700492 return RunOptimizations(graph,
493 codegen,
494 dex_compilation_unit,
495 pass_observer,
496 handles,
497 mips_optimizations);
Alexey Frunzee3fb2452016-05-10 16:08:05 -0700498 }
499#endif
Lena Djokicb8e9c352017-09-20 15:11:13 +0200500#ifdef ART_ENABLE_CODEGEN_mips64
Vladimir Marko33bff252017-11-01 14:35:42 +0000501 case InstructionSet::kMips64: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800502 OptimizationDef mips64_optimizations[] = {
503 OptDef(OptimizationPass::kSideEffectsAnalysis),
504 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch")
Lena Djokicb8e9c352017-09-20 15:11:13 +0200505 };
Aart Bik24773202018-04-26 10:28:51 -0700506 return RunOptimizations(graph,
507 codegen,
508 dex_compilation_unit,
509 pass_observer,
510 handles,
511 mips64_optimizations);
Lena Djokicb8e9c352017-09-20 15:11:13 +0200512 }
513#endif
Mark Mendell0616ae02015-04-17 12:49:27 -0400514#ifdef ART_ENABLE_CODEGEN_x86
Vladimir Marko33bff252017-11-01 14:35:42 +0000515 case InstructionSet::kX86: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800516 OptimizationDef x86_optimizations[] = {
517 OptDef(OptimizationPass::kSideEffectsAnalysis),
518 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
519 OptDef(OptimizationPass::kPcRelativeFixupsX86),
520 OptDef(OptimizationPass::kX86MemoryOperandGeneration)
Mark Mendell0616ae02015-04-17 12:49:27 -0400521 };
Aart Bik24773202018-04-26 10:28:51 -0700522 return RunOptimizations(graph,
523 codegen,
524 dex_compilation_unit,
525 pass_observer,
526 handles,
527 x86_optimizations);
Mark Mendell0616ae02015-04-17 12:49:27 -0400528 }
529#endif
Mark Mendellee8d9712016-07-12 11:13:15 -0400530#ifdef ART_ENABLE_CODEGEN_x86_64
Vladimir Marko33bff252017-11-01 14:35:42 +0000531 case InstructionSet::kX86_64: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800532 OptimizationDef x86_64_optimizations[] = {
533 OptDef(OptimizationPass::kSideEffectsAnalysis),
534 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
535 OptDef(OptimizationPass::kX86MemoryOperandGeneration)
Mark Mendellee8d9712016-07-12 11:13:15 -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_64_optimizations);
Mark Mendellee8d9712016-07-12 11:13:15 -0400543 }
544#endif
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100545 default:
Aart Bik24773202018-04-26 10:28:51 -0700546 return false;
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100547 }
548}
549
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000550NO_INLINE // Avoid increasing caller's frame size by large stack-allocated objects.
551static void AllocateRegisters(HGraph* graph,
552 CodeGenerator* codegen,
Matthew Gharrity2cd05b72016-08-03 16:57:37 -0700553 PassObserver* pass_observer,
Igor Murashkin6ef45672017-08-08 13:59:55 -0700554 RegisterAllocator::Strategy strategy,
555 OptimizingCompilerStats* stats) {
Mingyao Yang700347e2016-03-02 14:59:32 -0800556 {
557 PassScope scope(PrepareForRegisterAllocation::kPrepareForRegisterAllocationPassName,
558 pass_observer);
Igor Murashkin6ef45672017-08-08 13:59:55 -0700559 PrepareForRegisterAllocation(graph, stats).Run();
Mingyao Yang700347e2016-03-02 14:59:32 -0800560 }
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100561 // Use local allocator shared by SSA liveness analysis and register allocator.
562 // (Register allocator creates new objects in the liveness data.)
563 ScopedArenaAllocator local_allocator(graph->GetArenaStack());
564 SsaLivenessAnalysis liveness(graph, codegen, &local_allocator);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000565 {
566 PassScope scope(SsaLivenessAnalysis::kLivenessPassName, pass_observer);
567 liveness.Analyze();
568 }
569 {
570 PassScope scope(RegisterAllocator::kRegisterAllocatorPassName, pass_observer);
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100571 std::unique_ptr<RegisterAllocator> register_allocator =
572 RegisterAllocator::Create(&local_allocator, codegen, liveness, strategy);
Vladimir Markoca6fff82017-10-03 14:49:14 +0100573 register_allocator->AllocateRegisters();
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000574 }
575}
576
Aart Bik2ca10eb2017-11-15 15:17:53 -0800577// Strip pass name suffix to get optimization name.
578static std::string ConvertPassNameToOptimizationName(const std::string& pass_name) {
579 size_t pos = pass_name.find(kPassNameSeparator);
580 return pos == std::string::npos ? pass_name : pass_name.substr(0, pos);
581}
582
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700583void OptimizingCompiler::RunOptimizations(HGraph* graph,
584 CodeGenerator* codegen,
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700585 const DexCompilationUnit& dex_compilation_unit,
586 PassObserver* pass_observer,
Mathieu Chartiere8a3c572016-10-11 16:52:17 -0700587 VariableSizedHandleScope* handles) const {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800588 const std::vector<std::string>* pass_names =
589 GetCompilerDriver()->GetCompilerOptions().GetPassesToRun();
590 if (pass_names != nullptr) {
591 // If passes were defined on command-line, build the optimization
592 // passes and run these instead of the built-in optimizations.
Aart Bik2e148682018-04-18 16:11:12 -0700593 // TODO: a way to define depends_on via command-line?
Aart Bik2ca10eb2017-11-15 15:17:53 -0800594 const size_t length = pass_names->size();
595 std::vector<OptimizationDef> optimizations;
596 for (const std::string& pass_name : *pass_names) {
597 std::string opt_name = ConvertPassNameToOptimizationName(pass_name);
598 optimizations.push_back(OptDef(OptimizationPassByName(opt_name.c_str()), pass_name.c_str()));
599 }
600 RunOptimizations(graph,
601 codegen,
602 dex_compilation_unit,
603 pass_observer,
604 handles,
605 optimizations.data(),
606 length);
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -0700607 return;
608 }
609
Aart Bik24773202018-04-26 10:28:51 -0700610 OptimizationDef optimizations[] = {
Aart Bik2e148682018-04-18 16:11:12 -0700611 // Initial optimizations.
Aart Bik2ca10eb2017-11-15 15:17:53 -0800612 OptDef(OptimizationPass::kIntrinsicsRecognizer),
613 OptDef(OptimizationPass::kSharpening),
614 OptDef(OptimizationPass::kConstantFolding),
615 OptDef(OptimizationPass::kInstructionSimplifier),
Aart Bik2e148682018-04-18 16:11:12 -0700616 OptDef(OptimizationPass::kDeadCodeElimination,
617 "dead_code_elimination$initial"),
618 // Inlining.
Aart Bik24773202018-04-26 10:28:51 -0700619 OptDef(OptimizationPass::kInliner),
Aart Bik2e148682018-04-18 16:11:12 -0700620 // Simplification (only if inlining occurred).
621 OptDef(OptimizationPass::kConstantFolding,
622 "constant_folding$after_inlining",
623 OptimizationPass::kInliner),
624 OptDef(OptimizationPass::kInstructionSimplifier,
625 "instruction_simplifier$after_inlining",
626 OptimizationPass::kInliner),
627 OptDef(OptimizationPass::kDeadCodeElimination,
628 "dead_code_elimination$after_inlining",
629 OptimizationPass::kInliner),
630 // GVN.
631 OptDef(OptimizationPass::kSideEffectsAnalysis,
632 "side_effects$before_gvn"),
Aart Bik6d057002018-04-09 15:39:58 -0700633 OptDef(OptimizationPass::kGlobalValueNumbering),
Aart Bik2e148682018-04-18 16:11:12 -0700634 // Simplification (TODO: only if GVN occurred).
Aart Bik2ca10eb2017-11-15 15:17:53 -0800635 OptDef(OptimizationPass::kSelectGenerator),
Aart Bik2e148682018-04-18 16:11:12 -0700636 OptDef(OptimizationPass::kConstantFolding,
637 "constant_folding$after_gvn"),
638 OptDef(OptimizationPass::kInstructionSimplifier,
639 "instruction_simplifier$after_gvn"),
640 OptDef(OptimizationPass::kDeadCodeElimination,
641 "dead_code_elimination$after_gvn"),
642 // High-level optimizations.
643 OptDef(OptimizationPass::kSideEffectsAnalysis,
644 "side_effects$before_licm"),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800645 OptDef(OptimizationPass::kInvariantCodeMotion),
646 OptDef(OptimizationPass::kInductionVarAnalysis),
647 OptDef(OptimizationPass::kBoundsCheckElimination),
648 OptDef(OptimizationPass::kLoopOptimization),
Aart Bik2e148682018-04-18 16:11:12 -0700649 // Simplification.
650 OptDef(OptimizationPass::kConstantFolding,
651 "constant_folding$after_bce"),
652 OptDef(OptimizationPass::kInstructionSimplifier,
653 "instruction_simplifier$after_bce"),
654 // Other high-level optimizations.
655 OptDef(OptimizationPass::kSideEffectsAnalysis,
656 "side_effects$before_lse"),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800657 OptDef(OptimizationPass::kLoadStoreAnalysis),
658 OptDef(OptimizationPass::kLoadStoreElimination),
659 OptDef(OptimizationPass::kCHAGuardOptimization),
Aart Bik2e148682018-04-18 16:11:12 -0700660 OptDef(OptimizationPass::kDeadCodeElimination,
661 "dead_code_elimination$final"),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800662 OptDef(OptimizationPass::kCodeSinking),
David Brazdil8993caf2015-12-07 10:04:40 +0000663 // The codegen has a few assumptions that only the instruction simplifier
664 // can satisfy. For example, the code generator does not expect to see a
665 // HTypeConversion from a type to the same type.
Aart Bik2e148682018-04-18 16:11:12 -0700666 OptDef(OptimizationPass::kInstructionSimplifier,
667 "instruction_simplifier$before_codegen"),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800668 // Eliminate constructor fences after code sinking to avoid
669 // complicated sinking logic to split a fence with many inputs.
670 OptDef(OptimizationPass::kConstructorFenceRedundancyElimination)
David Brazdil8993caf2015-12-07 10:04:40 +0000671 };
Aart Bik2ca10eb2017-11-15 15:17:53 -0800672 RunOptimizations(graph,
673 codegen,
674 dex_compilation_unit,
675 pass_observer,
676 handles,
Aart Bik24773202018-04-26 10:28:51 -0700677 optimizations);
David Brazdilbbd733e2015-08-18 17:48:17 +0100678
Aart Bik2ca10eb2017-11-15 15:17:53 -0800679 RunArchOptimizations(graph, codegen, dex_compilation_unit, pass_observer, handles);
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000680}
681
Vladimir Markod8dbc8d2017-09-20 13:37:47 +0100682static ArenaVector<linker::LinkerPatch> EmitAndSortLinkerPatches(CodeGenerator* codegen) {
Vladimir Markoca6fff82017-10-03 14:49:14 +0100683 ArenaVector<linker::LinkerPatch> linker_patches(codegen->GetGraph()->GetAllocator()->Adapter());
Vladimir Marko58155012015-08-19 12:49:41 +0000684 codegen->EmitLinkerPatches(&linker_patches);
685
686 // Sort patches by literal offset. Required for .oat_patches encoding.
687 std::sort(linker_patches.begin(), linker_patches.end(),
Vladimir Markod8dbc8d2017-09-20 13:37:47 +0100688 [](const linker::LinkerPatch& lhs, const linker::LinkerPatch& rhs) {
Vladimir Marko58155012015-08-19 12:49:41 +0000689 return lhs.LiteralOffset() < rhs.LiteralOffset();
690 });
691
692 return linker_patches;
693}
694
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100695CompiledMethod* OptimizingCompiler::Emit(ArenaAllocator* allocator,
David Brazdil58282f42016-01-14 12:45:10 +0000696 CodeVectorAllocator* code_allocator,
697 CodeGenerator* codegen,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000698 const DexFile::CodeItem* code_item_for_osr_check) const {
Vladimir Markod8dbc8d2017-09-20 13:37:47 +0100699 ArenaVector<linker::LinkerPatch> linker_patches = EmitAndSortLinkerPatches(codegen);
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100700 ArenaVector<uint8_t> stack_map(allocator->Adapter(kArenaAllocStackMaps));
701 ArenaVector<uint8_t> method_info(allocator->Adapter(kArenaAllocStackMaps));
Mathieu Chartiercbcedbf2017-03-12 22:24:50 -0700702 size_t stack_map_size = 0;
703 size_t method_info_size = 0;
704 codegen->ComputeStackMapAndMethodInfoSize(&stack_map_size, &method_info_size);
705 stack_map.resize(stack_map_size);
706 method_info.resize(method_info_size);
707 codegen->BuildStackMaps(MemoryRegion(stack_map.data(), stack_map.size()),
708 MemoryRegion(method_info.data(), method_info.size()),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000709 code_item_for_osr_check);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000710
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100711 CompiledMethod* compiled_method = CompiledMethod::SwapAllocCompiledMethod(
Aart Bik2ca10eb2017-11-15 15:17:53 -0800712 GetCompilerDriver(),
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000713 codegen->GetInstructionSet(),
Vladimir Markoca1e0382018-04-11 09:58:41 +0000714 code_allocator->GetMemory(),
Roland Levillainaa9b7c42015-02-17 15:40:09 +0000715 // Follow Quick's behavior and set the frame size to zero if it is
716 // considered "empty" (see the definition of
717 // art::CodeGenerator::HasEmptyFrame).
718 codegen->HasEmptyFrame() ? 0 : codegen->GetFrameSize(),
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000719 codegen->GetCoreSpillMask(),
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000720 codegen->GetFpuSpillMask(),
Mathieu Chartiercbcedbf2017-03-12 22:24:50 -0700721 ArrayRef<const uint8_t>(method_info),
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100722 ArrayRef<const uint8_t>(stack_map),
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100723 ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data()),
Vladimir Markod8dbc8d2017-09-20 13:37:47 +0100724 ArrayRef<const linker::LinkerPatch>(linker_patches));
Mathieu Chartiered150002015-08-28 11:16:54 -0700725
Vladimir Markoca1e0382018-04-11 09:58:41 +0000726 CompiledMethodStorage* storage = GetCompilerDriver()->GetCompiledMethodStorage();
727 for (const linker::LinkerPatch& patch : linker_patches) {
728 if (codegen->NeedsThunkCode(patch) && storage->GetThunkCode(patch).empty()) {
729 ArenaVector<uint8_t> code(allocator->Adapter());
730 std::string debug_name;
731 codegen->EmitThunkCode(patch, &code, &debug_name);
732 storage->SetThunkCode(patch, ArrayRef<const uint8_t>(code), debug_name);
733 }
734 }
735
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100736 return compiled_method;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000737}
738
Vladimir Markoca6fff82017-10-03 14:49:14 +0100739CodeGenerator* OptimizingCompiler::TryCompile(ArenaAllocator* allocator,
740 ArenaStack* arena_stack,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000741 CodeVectorAllocator* code_allocator,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000742 const DexCompilationUnit& dex_compilation_unit,
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000743 ArtMethod* method,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000744 bool osr,
745 VariableSizedHandleScope* handles) const {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000746 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kAttemptBytecodeCompilation);
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000747 CompilerDriver* compiler_driver = GetCompilerDriver();
748 InstructionSet instruction_set = compiler_driver->GetInstructionSet();
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000749 const DexFile& dex_file = *dex_compilation_unit.GetDexFile();
750 uint32_t method_idx = dex_compilation_unit.GetDexMethodIndex();
751 const DexFile::CodeItem* code_item = dex_compilation_unit.GetCodeItem();
Calin Juravlecff8cc72015-10-09 12:03:24 +0100752
Roland Levillain3b359c72015-11-17 19:35:12 +0000753 // Always use the Thumb-2 assembler: some runtime functionality
754 // (like implicit stack overflow checks) assume Thumb-2.
Vladimir Marko33bff252017-11-01 14:35:42 +0000755 DCHECK_NE(instruction_set, InstructionSet::kArm);
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100756
757 // Do not attempt to compile on architectures we do not support.
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000758 if (!IsInstructionSetSupported(instruction_set)) {
Igor Murashkin1e065a52017-08-09 13:20:34 -0700759 MaybeRecordStat(compilation_stats_.get(),
760 MethodCompilationStat::kNotCompiledUnsupportedIsa);
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100761 return nullptr;
762 }
763
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000764 if (Compiler::IsPathologicalCase(*code_item, method_idx, dex_file)) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000765 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kNotCompiledPathological);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000766 return nullptr;
767 }
768
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000769 // Implementation of the space filter: do not compile a code item whose size in
Nicolas Geoffray432bf3d2015-07-17 11:11:09 +0100770 // code units is bigger than 128.
771 static constexpr size_t kSpaceFilterOptimizingThreshold = 128;
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000772 const CompilerOptions& compiler_options = compiler_driver->GetCompilerOptions();
Andreas Gampe29d38e72016-03-23 15:31:51 +0000773 if ((compiler_options.GetCompilerFilter() == CompilerFilter::kSpace)
Mathieu Chartier698ebbc2018-01-05 11:00:42 -0800774 && (CodeItemInstructionAccessor(dex_file, code_item).InsnsSizeInCodeUnits() >
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800775 kSpaceFilterOptimizingThreshold)) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000776 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kNotCompiledSpaceFilter);
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000777 return nullptr;
778 }
779
Mathieu Chartier8892c6b2018-01-09 15:10:17 -0800780 CodeItemDebugInfoAccessor code_item_accessor(dex_file, code_item, method_idx);
Vladimir Markoca6fff82017-10-03 14:49:14 +0100781 HGraph* graph = new (allocator) HGraph(
782 allocator,
783 arena_stack,
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000784 dex_file,
785 method_idx,
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000786 compiler_driver->GetInstructionSet(),
787 kInvalidInvokeType,
788 compiler_driver->GetCompilerOptions().GetDebuggable(),
789 osr);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000790
Mathieu Chartier210531f2018-01-12 10:15:51 -0800791 ArrayRef<const uint8_t> interpreter_metadata;
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000792 // For AOT compilation, we may not get a method, for example if its class is erroneous.
793 // JIT should always have a method.
794 DCHECK(Runtime::Current()->IsAotCompiler() || method != nullptr);
795 if (method != nullptr) {
796 graph->SetArtMethod(method);
797 ScopedObjectAccess soa(Thread::Current());
Nicolas Geoffray8eaa8e52017-11-13 17:47:50 +0000798 interpreter_metadata = method->GetQuickenedInfo();
David Brazdilbadd8262016-02-02 16:28:56 +0000799 }
800
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000801 std::unique_ptr<CodeGenerator> codegen(
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000802 CodeGenerator::Create(graph,
803 instruction_set,
804 *compiler_driver->GetInstructionSetFeatures(),
Calin Juravle2ae48182016-03-16 14:05:09 +0000805 compiler_driver->GetCompilerOptions(),
806 compilation_stats_.get()));
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000807 if (codegen.get() == nullptr) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000808 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kNotCompiledNoCodegen);
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000809 return nullptr;
810 }
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100811 codegen->GetAssembler()->cfi().SetEnabled(
David Srbecky5b1c2ca2016-01-25 17:32:41 +0000812 compiler_driver->GetCompilerOptions().GenerateAnyDebugInfo());
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000813
David Brazdil69ba7b72015-06-23 18:27:30 +0100814 PassObserver pass_observer(graph,
David Brazdil69ba7b72015-06-23 18:27:30 +0100815 codegen.get(),
816 visualizer_output_.get(),
Andreas Gampea0d81af2016-10-27 12:04:57 -0700817 compiler_driver,
818 dump_mutex_);
David Brazdil5e8b1372015-01-23 14:39:08 +0000819
David Brazdil809658e2015-02-05 11:34:02 +0000820 {
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000821 VLOG(compiler) << "Building " << pass_observer.GetMethodName();
822 PassScope scope(HGraphBuilder::kBuilderPassName, &pass_observer);
823 HGraphBuilder builder(graph,
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800824 code_item_accessor,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000825 &dex_compilation_unit,
826 &dex_compilation_unit,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000827 compiler_driver,
Nicolas Geoffray83c8e272017-01-31 14:36:37 +0000828 codegen.get(),
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000829 compilation_stats_.get(),
830 interpreter_metadata,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000831 handles);
832 GraphAnalysisResult result = builder.BuildGraph();
833 if (result != kAnalysisSuccess) {
834 switch (result) {
Igor Murashkin1e065a52017-08-09 13:20:34 -0700835 case kAnalysisSkipped: {
836 MaybeRecordStat(compilation_stats_.get(),
837 MethodCompilationStat::kNotCompiledSkipped);
838 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000839 break;
Igor Murashkin1e065a52017-08-09 13:20:34 -0700840 case kAnalysisInvalidBytecode: {
841 MaybeRecordStat(compilation_stats_.get(),
842 MethodCompilationStat::kNotCompiledInvalidBytecode);
843 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000844 break;
Igor Murashkin1e065a52017-08-09 13:20:34 -0700845 case kAnalysisFailThrowCatchLoop: {
846 MaybeRecordStat(compilation_stats_.get(),
847 MethodCompilationStat::kNotCompiledThrowCatchLoop);
848 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000849 break;
Igor Murashkin1e065a52017-08-09 13:20:34 -0700850 case kAnalysisFailAmbiguousArrayOp: {
851 MaybeRecordStat(compilation_stats_.get(),
852 MethodCompilationStat::kNotCompiledAmbiguousArrayOp);
853 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000854 break;
855 case kAnalysisSuccess:
856 UNREACHABLE();
David Brazdil809658e2015-02-05 11:34:02 +0000857 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000858 pass_observer.SetGraphInBadState();
859 return nullptr;
Nicolas Geoffrayf5370122014-12-02 11:51:19 +0000860 }
David Brazdilbadd8262016-02-02 16:28:56 +0000861 }
Vladimir Markof9f64412015-09-02 14:05:49 +0100862
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000863 RunOptimizations(graph,
864 codegen.get(),
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000865 dex_compilation_unit,
866 &pass_observer,
867 handles);
868
869 RegisterAllocator::Strategy regalloc_strategy =
870 compiler_options.GetRegisterAllocationStrategy();
Igor Murashkin1e065a52017-08-09 13:20:34 -0700871 AllocateRegisters(graph,
872 codegen.get(),
873 &pass_observer,
Igor Murashkin6ef45672017-08-08 13:59:55 -0700874 regalloc_strategy,
875 compilation_stats_.get());
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000876
877 codegen->Compile(code_allocator);
878 pass_observer.DumpDisassembly();
879
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000880 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kCompiledBytecode);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000881 return codegen.release();
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000882}
883
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000884CodeGenerator* OptimizingCompiler::TryCompileIntrinsic(
885 ArenaAllocator* allocator,
886 ArenaStack* arena_stack,
887 CodeVectorAllocator* code_allocator,
888 const DexCompilationUnit& dex_compilation_unit,
889 ArtMethod* method,
890 VariableSizedHandleScope* handles) const {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000891 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kAttemptIntrinsicCompilation);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000892 CompilerDriver* compiler_driver = GetCompilerDriver();
893 InstructionSet instruction_set = compiler_driver->GetInstructionSet();
894 const DexFile& dex_file = *dex_compilation_unit.GetDexFile();
895 uint32_t method_idx = dex_compilation_unit.GetDexMethodIndex();
896
897 // Always use the Thumb-2 assembler: some runtime functionality
898 // (like implicit stack overflow checks) assume Thumb-2.
899 DCHECK_NE(instruction_set, InstructionSet::kArm);
900
901 // Do not attempt to compile on architectures we do not support.
902 if (!IsInstructionSetSupported(instruction_set)) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000903 return nullptr;
904 }
905
906 HGraph* graph = new (allocator) HGraph(
907 allocator,
908 arena_stack,
909 dex_file,
910 method_idx,
911 compiler_driver->GetInstructionSet(),
912 kInvalidInvokeType,
913 compiler_driver->GetCompilerOptions().GetDebuggable(),
914 /* osr */ false);
915
916 DCHECK(Runtime::Current()->IsAotCompiler());
917 DCHECK(method != nullptr);
918 graph->SetArtMethod(method);
919
920 std::unique_ptr<CodeGenerator> codegen(
921 CodeGenerator::Create(graph,
922 instruction_set,
923 *compiler_driver->GetInstructionSetFeatures(),
924 compiler_driver->GetCompilerOptions(),
925 compilation_stats_.get()));
926 if (codegen.get() == nullptr) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000927 return nullptr;
928 }
929 codegen->GetAssembler()->cfi().SetEnabled(
930 compiler_driver->GetCompilerOptions().GenerateAnyDebugInfo());
931
932 PassObserver pass_observer(graph,
933 codegen.get(),
934 visualizer_output_.get(),
935 compiler_driver,
936 dump_mutex_);
937
938 {
939 VLOG(compiler) << "Building intrinsic graph " << pass_observer.GetMethodName();
940 PassScope scope(HGraphBuilder::kBuilderPassName, &pass_observer);
941 HGraphBuilder builder(graph,
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800942 CodeItemDebugInfoAccessor(), // Null code item.
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000943 &dex_compilation_unit,
944 &dex_compilation_unit,
945 compiler_driver,
946 codegen.get(),
947 compilation_stats_.get(),
Mathieu Chartier210531f2018-01-12 10:15:51 -0800948 /* interpreter_metadata */ ArrayRef<const uint8_t>(),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000949 handles);
950 builder.BuildIntrinsicGraph(method);
951 }
952
Aart Bik2ca10eb2017-11-15 15:17:53 -0800953 OptimizationDef optimizations[] = {
954 OptDef(OptimizationPass::kIntrinsicsRecognizer),
955 // Some intrinsics are converted to HIR by the simplifier and the codegen also
956 // has a few assumptions that only the instruction simplifier can satisfy.
957 OptDef(OptimizationPass::kInstructionSimplifier),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000958 };
Aart Bik2ca10eb2017-11-15 15:17:53 -0800959 RunOptimizations(graph,
960 codegen.get(),
961 dex_compilation_unit,
962 &pass_observer,
963 handles,
964 optimizations);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000965
Aart Bik2ca10eb2017-11-15 15:17:53 -0800966 RunArchOptimizations(graph, codegen.get(), dex_compilation_unit, &pass_observer, handles);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000967
968 AllocateRegisters(graph,
969 codegen.get(),
970 &pass_observer,
971 compiler_driver->GetCompilerOptions().GetRegisterAllocationStrategy(),
972 compilation_stats_.get());
973 if (!codegen->IsLeafMethod()) {
974 VLOG(compiler) << "Intrinsic method is not leaf: " << method->GetIntrinsic()
975 << " " << graph->PrettyMethod();
976 return nullptr;
977 }
978
979 codegen->Compile(code_allocator);
980 pass_observer.DumpDisassembly();
981
982 VLOG(compiler) << "Compiled intrinsic: " << method->GetIntrinsic()
983 << " " << graph->PrettyMethod();
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000984 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kCompiledIntrinsic);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000985 return codegen.release();
986}
987
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000988CompiledMethod* OptimizingCompiler::Compile(const DexFile::CodeItem* code_item,
989 uint32_t access_flags,
990 InvokeType invoke_type,
991 uint16_t class_def_idx,
992 uint32_t method_idx,
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000993 Handle<mirror::ClassLoader> jclass_loader,
Mathieu Chartier736b5602015-09-02 14:54:11 -0700994 const DexFile& dex_file,
995 Handle<mirror::DexCache> dex_cache) const {
Calin Juravlef1c6d9e2015-04-13 18:42:21 +0100996 CompilerDriver* compiler_driver = GetCompilerDriver();
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000997 CompiledMethod* compiled_method = nullptr;
998 Runtime* runtime = Runtime::Current();
999 DCHECK(runtime->IsAotCompiler());
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001000 const VerifiedMethod* verified_method = compiler_driver->GetVerifiedMethod(&dex_file, method_idx);
1001 DCHECK(!verified_method->HasRuntimeThrow());
Vladimir Markoca6fff82017-10-03 14:49:14 +01001002 if (compiler_driver->IsMethodVerifiedWithoutFailures(method_idx, class_def_idx, dex_file) ||
1003 verifier::CanCompilerHandleVerificationFailure(
1004 verified_method->GetEncounteredVerificationFailures())) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001005 ArenaAllocator allocator(runtime->GetArenaPool());
1006 ArenaStack arena_stack(runtime->GetArenaPool());
Vladimir Markoca6fff82017-10-03 14:49:14 +01001007 CodeVectorAllocator code_allocator(&allocator);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001008 std::unique_ptr<CodeGenerator> codegen;
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001009 bool compiled_intrinsic = false;
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001010 {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001011 DexCompilationUnit dex_compilation_unit(
1012 jclass_loader,
1013 runtime->GetClassLinker(),
1014 dex_file,
1015 code_item,
1016 class_def_idx,
1017 method_idx,
1018 access_flags,
1019 /* verified_method */ nullptr, // Not needed by the Optimizing compiler.
1020 dex_cache);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001021 ScopedObjectAccess soa(Thread::Current());
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001022 ArtMethod* method = compiler_driver->ResolveMethod(
1023 soa, dex_cache, jclass_loader, &dex_compilation_unit, method_idx, invoke_type);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001024 VariableSizedHandleScope handles(soa.Self());
1025 // Go to native so that we don't block GC during compilation.
1026 ScopedThreadSuspension sts(soa.Self(), kNative);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001027 if (method != nullptr && UNLIKELY(method->IsIntrinsic())) {
1028 DCHECK(compiler_driver->GetCompilerOptions().IsBootImage());
1029 codegen.reset(
1030 TryCompileIntrinsic(&allocator,
1031 &arena_stack,
1032 &code_allocator,
1033 dex_compilation_unit,
1034 method,
1035 &handles));
1036 if (codegen != nullptr) {
1037 compiled_intrinsic = true;
1038 }
1039 }
1040 if (codegen == nullptr) {
1041 codegen.reset(
1042 TryCompile(&allocator,
1043 &arena_stack,
1044 &code_allocator,
1045 dex_compilation_unit,
1046 method,
1047 /* osr */ false,
1048 &handles));
1049 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001050 }
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001051 if (codegen.get() != nullptr) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001052 compiled_method = Emit(&allocator,
1053 &code_allocator,
1054 codegen.get(),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001055 compiled_intrinsic ? nullptr : code_item);
1056 if (compiled_intrinsic) {
1057 compiled_method->MarkAsIntrinsic();
1058 }
Vladimir Marko3a40bf22016-03-22 16:26:33 +00001059
1060 if (kArenaAllocatorCountAllocations) {
Vladimir Marko174b2e22017-10-12 13:34:49 +01001061 codegen.reset(); // Release codegen's ScopedArenaAllocator for memory accounting.
Vladimir Markoca6fff82017-10-03 14:49:14 +01001062 size_t total_allocated = allocator.BytesAllocated() + arena_stack.PeakBytesAllocated();
1063 if (total_allocated > kArenaAllocatorMemoryReportThreshold) {
1064 MemStats mem_stats(allocator.GetMemStats());
1065 MemStats peak_stats(arena_stack.GetPeakStats());
Vladimir Marko69d310e2017-10-09 14:12:23 +01001066 LOG(INFO) << "Used " << total_allocated << " bytes of arena memory for compiling "
1067 << dex_file.PrettyMethod(method_idx)
Vladimir Markoca6fff82017-10-03 14:49:14 +01001068 << "\n" << Dumpable<MemStats>(mem_stats)
1069 << "\n" << Dumpable<MemStats>(peak_stats);
Vladimir Marko3a40bf22016-03-22 16:26:33 +00001070 }
1071 }
Calin Juravlef1c6d9e2015-04-13 18:42:21 +01001072 }
Nicolas Geoffray0c3c2662015-10-15 13:53:04 +01001073 } else {
Igor Murashkin1e065a52017-08-09 13:20:34 -07001074 MethodCompilationStat method_stat;
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001075 if (compiler_driver->GetCompilerOptions().VerifyAtRuntime()) {
Igor Murashkin1e065a52017-08-09 13:20:34 -07001076 method_stat = MethodCompilationStat::kNotCompiledVerifyAtRuntime;
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001077 } else {
Igor Murashkin1e065a52017-08-09 13:20:34 -07001078 method_stat = MethodCompilationStat::kNotCompiledVerificationError;
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001079 }
Igor Murashkin1e065a52017-08-09 13:20:34 -07001080 MaybeRecordStat(compilation_stats_.get(), method_stat);
Calin Juravlef1c6d9e2015-04-13 18:42:21 +01001081 }
1082
Calin Juravlecff8cc72015-10-09 12:03:24 +01001083 if (kIsDebugBuild &&
1084 IsCompilingWithCoreImage() &&
Goran Jakovljevic9c4f0d8f2017-04-05 16:27:25 +02001085 IsInstructionSetSupported(compiler_driver->GetInstructionSet())) {
Roland Levillain0d5a2812015-11-13 10:07:31 +00001086 // For testing purposes, we put a special marker on method names
Goran Jakovljevic9c4f0d8f2017-04-05 16:27:25 +02001087 // that should be compiled with this compiler (when the
1088 // instruction set is supported). This makes sure we're not
Roland Levillain0d5a2812015-11-13 10:07:31 +00001089 // regressing.
David Sehr709b0702016-10-13 09:12:37 -07001090 std::string method_name = dex_file.PrettyMethod(method_idx);
Calin Juravle09b1d6f2015-10-07 12:08:54 +01001091 bool shouldCompile = method_name.find("$opt$") != std::string::npos;
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001092 DCHECK((compiled_method != nullptr) || !shouldCompile) << "Didn't compile " << method_name;
Calin Juravle09b1d6f2015-10-07 12:08:54 +01001093 }
1094
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001095 return compiled_method;
1096}
1097
1098CompiledMethod* OptimizingCompiler::JniCompile(uint32_t access_flags,
1099 uint32_t method_idx,
1100 const DexFile& dex_file,
1101 Handle<mirror::DexCache> dex_cache) const {
1102 if (GetCompilerDriver()->GetCompilerOptions().IsBootImage()) {
1103 ScopedObjectAccess soa(Thread::Current());
1104 Runtime* runtime = Runtime::Current();
1105 ArtMethod* method = runtime->GetClassLinker()->LookupResolvedMethod(
1106 method_idx, dex_cache.Get(), /* class_loader */ nullptr);
1107 if (method != nullptr && UNLIKELY(method->IsIntrinsic())) {
1108 ScopedNullHandle<mirror::ClassLoader> class_loader; // null means boot class path loader.
1109 DexCompilationUnit dex_compilation_unit(
1110 class_loader,
1111 runtime->GetClassLinker(),
1112 dex_file,
1113 /* code_item */ nullptr,
1114 /* class_def_idx */ DexFile::kDexNoIndex16,
1115 method_idx,
1116 access_flags,
1117 /* verified_method */ nullptr,
1118 dex_cache);
1119 ArenaAllocator allocator(runtime->GetArenaPool());
1120 ArenaStack arena_stack(runtime->GetArenaPool());
1121 CodeVectorAllocator code_allocator(&allocator);
1122 VariableSizedHandleScope handles(soa.Self());
1123 // Go to native so that we don't block GC during compilation.
1124 ScopedThreadSuspension sts(soa.Self(), kNative);
1125 std::unique_ptr<CodeGenerator> codegen(
1126 TryCompileIntrinsic(&allocator,
1127 &arena_stack,
1128 &code_allocator,
1129 dex_compilation_unit,
1130 method,
1131 &handles));
1132 if (codegen != nullptr) {
1133 CompiledMethod* compiled_method = Emit(&allocator,
1134 &code_allocator,
1135 codegen.get(),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001136 /* code_item_for_osr_check */ nullptr);
1137 compiled_method->MarkAsIntrinsic();
1138 return compiled_method;
1139 }
1140 }
1141 }
1142
Vladimir Marko7bdc6e72017-11-28 12:37:13 +00001143 JniCompiledMethod jni_compiled_method = ArtQuickJniCompileMethod(
1144 GetCompilerDriver(), access_flags, method_idx, dex_file);
Vladimir Markocd09e1f2017-11-24 15:02:40 +00001145 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kCompiledNativeStub);
Vladimir Marko7bdc6e72017-11-28 12:37:13 +00001146 return CompiledMethod::SwapAllocCompiledMethod(
1147 GetCompilerDriver(),
1148 jni_compiled_method.GetInstructionSet(),
1149 jni_compiled_method.GetCode(),
1150 jni_compiled_method.GetFrameSize(),
1151 jni_compiled_method.GetCoreSpillMask(),
1152 jni_compiled_method.GetFpSpillMask(),
1153 /* method_info */ ArrayRef<const uint8_t>(),
1154 /* vmap_table */ ArrayRef<const uint8_t>(),
1155 jni_compiled_method.GetCfi(),
1156 /* patches */ ArrayRef<const linker::LinkerPatch>());
Nicolas Geoffray216eaa22015-03-17 17:09:30 +00001157}
1158
Andreas Gampe53c913b2014-08-12 23:19:23 -07001159Compiler* CreateOptimizingCompiler(CompilerDriver* driver) {
1160 return new OptimizingCompiler(driver);
1161}
1162
Nicolas Geoffray335005e2015-06-25 10:01:47 +01001163bool IsCompilingWithCoreImage() {
1164 const std::string& image = Runtime::Current()->GetImageLocation();
Roland Levillain2b03a1f2017-06-06 16:09:59 +01001165 return CompilerDriver::IsCoreImageFilename(image);
Nicolas Geoffray335005e2015-06-25 10:01:47 +01001166}
1167
Nicolas Geoffrayfbdfa6d2017-02-03 10:43:13 +00001168bool EncodeArtMethodInInlineInfo(ArtMethod* method ATTRIBUTE_UNUSED) {
1169 // Note: the runtime is null only for unit testing.
1170 return Runtime::Current() == nullptr || !Runtime::Current()->IsAotCompiler();
1171}
1172
1173bool CanEncodeInlinedMethodInStackMap(const DexFile& caller_dex_file, ArtMethod* callee) {
1174 if (!Runtime::Current()->IsAotCompiler()) {
1175 // JIT can always encode methods in stack maps.
1176 return true;
1177 }
1178 if (IsSameDexFile(caller_dex_file, *callee->GetDexFile())) {
1179 return true;
1180 }
1181 // TODO(ngeoffray): Support more AOT cases for inlining:
1182 // - methods in multidex
1183 // - methods in boot image for on-device non-PIC compilation.
1184 return false;
1185}
1186
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001187bool OptimizingCompiler::JitCompile(Thread* self,
1188 jit::JitCodeCache* code_cache,
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +00001189 ArtMethod* method,
Nicolas Geoffray01db5f72017-07-19 15:05:49 +01001190 bool osr,
1191 jit::JitLogger* jit_logger) {
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001192 StackHandleScope<3> hs(self);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001193 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(
1194 method->GetDeclaringClass()->GetClassLoader()));
1195 Handle<mirror::DexCache> dex_cache(hs.NewHandle(method->GetDexCache()));
Nicolas Geoffray250a3782016-04-20 16:27:53 +01001196 DCHECK(method->IsCompilable());
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001197
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001198 const DexFile* dex_file = method->GetDexFile();
1199 const uint16_t class_def_idx = method->GetClassDefIndex();
1200 const DexFile::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset());
1201 const uint32_t method_idx = method->GetDexMethodIndex();
1202 const uint32_t access_flags = method->GetAccessFlags();
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001203
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001204 Runtime* runtime = Runtime::Current();
1205 ArenaAllocator allocator(runtime->GetJitArenaPool());
Vladimir Marko2196c652017-11-30 16:16:07 +00001206
1207 if (UNLIKELY(method->IsNative())) {
1208 JniCompiledMethod jni_compiled_method = ArtQuickJniCompileMethod(
1209 GetCompilerDriver(), access_flags, method_idx, *dex_file);
1210 ScopedNullHandle<mirror::ObjectArray<mirror::Object>> roots;
1211 ArenaSet<ArtMethod*, std::less<ArtMethod*>> cha_single_implementation_list(
1212 allocator.Adapter(kArenaAllocCHA));
1213 const void* code = code_cache->CommitCode(
1214 self,
1215 method,
1216 /* stack_map_data */ nullptr,
1217 /* method_info_data */ nullptr,
1218 /* roots_data */ nullptr,
1219 jni_compiled_method.GetFrameSize(),
1220 jni_compiled_method.GetCoreSpillMask(),
1221 jni_compiled_method.GetFpSpillMask(),
1222 jni_compiled_method.GetCode().data(),
1223 jni_compiled_method.GetCode().size(),
1224 /* data_size */ 0u,
1225 osr,
1226 roots,
1227 /* has_should_deoptimize_flag */ false,
1228 cha_single_implementation_list);
1229 if (code == nullptr) {
1230 return false;
1231 }
1232
1233 const CompilerOptions& compiler_options = GetCompilerDriver()->GetCompilerOptions();
David Srbeckyf4886df2017-12-11 16:06:29 +00001234 if (compiler_options.GenerateAnyDebugInfo()) {
Vladimir Marko2196c652017-11-30 16:16:07 +00001235 const auto* method_header = reinterpret_cast<const OatQuickMethodHeader*>(code);
1236 const uintptr_t code_address = reinterpret_cast<uintptr_t>(method_header->GetCode());
1237 debug::MethodDebugInfo info = {};
David Srbeckyc684f332018-01-19 17:38:06 +00001238 DCHECK(info.custom_name.empty());
Vladimir Marko2196c652017-11-30 16:16:07 +00001239 info.dex_file = dex_file;
1240 info.class_def_index = class_def_idx;
1241 info.dex_method_index = method_idx;
1242 info.access_flags = access_flags;
1243 info.code_item = code_item;
1244 info.isa = jni_compiled_method.GetInstructionSet();
1245 info.deduped = false;
1246 info.is_native_debuggable = compiler_options.GetNativeDebuggable();
1247 info.is_optimized = true;
1248 info.is_code_address_text_relative = false;
1249 info.code_address = code_address;
1250 info.code_size = jni_compiled_method.GetCode().size();
1251 info.frame_size_in_bytes = method_header->GetFrameSizeInBytes();
1252 info.code_info = nullptr;
1253 info.cfi = jni_compiled_method.GetCfi();
David Srbeckyc9e02082018-01-24 16:44:02 +00001254 GenerateJitDebugInfo(method, info);
Vladimir Marko2196c652017-11-30 16:16:07 +00001255 }
1256
1257 Runtime::Current()->GetJit()->AddMemoryUsage(method, allocator.BytesUsed());
1258 if (jit_logger != nullptr) {
1259 jit_logger->WriteLog(code, jni_compiled_method.GetCode().size(), method);
1260 }
1261 return true;
1262 }
1263
1264 ArenaStack arena_stack(runtime->GetJitArenaPool());
Vladimir Markoca6fff82017-10-03 14:49:14 +01001265 CodeVectorAllocator code_allocator(&allocator);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001266 VariableSizedHandleScope handles(self);
1267
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001268 std::unique_ptr<CodeGenerator> codegen;
1269 {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001270 DexCompilationUnit dex_compilation_unit(
1271 class_loader,
1272 runtime->GetClassLinker(),
1273 *dex_file,
1274 code_item,
1275 class_def_idx,
1276 method_idx,
1277 access_flags,
1278 /* verified_method */ nullptr,
1279 dex_cache);
1280
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001281 // Go to native so that we don't block GC during compilation.
1282 ScopedThreadSuspension sts(self, kNative);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001283 codegen.reset(
Vladimir Markoca6fff82017-10-03 14:49:14 +01001284 TryCompile(&allocator,
1285 &arena_stack,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001286 &code_allocator,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001287 dex_compilation_unit,
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +00001288 method,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001289 osr,
1290 &handles));
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001291 if (codegen.get() == nullptr) {
1292 return false;
1293 }
1294 }
1295
Mathieu Chartiercbcedbf2017-03-12 22:24:50 -07001296 size_t stack_map_size = 0;
1297 size_t method_info_size = 0;
1298 codegen->ComputeStackMapAndMethodInfoSize(&stack_map_size, &method_info_size);
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001299 size_t number_of_roots = codegen->GetNumberOfJitRoots();
1300 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1301 // We allocate an object array to ensure the JIT roots that we will collect in EmitJitRoots
1302 // will be visible by the GC between EmitLiterals and CommitCode. Once CommitCode is
1303 // executed, this array is not needed.
1304 Handle<mirror::ObjectArray<mirror::Object>> roots(
1305 hs.NewHandle(mirror::ObjectArray<mirror::Object>::Alloc(
1306 self, class_linker->GetClassRoot(ClassLinker::kObjectArrayClass), number_of_roots)));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001307 if (roots == nullptr) {
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001308 // Out of memory, just clear the exception to avoid any Java exception uncaught problems.
Vladimir Markocd09e1f2017-11-24 15:02:40 +00001309 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kJitOutOfMemoryForCommit);
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001310 DCHECK(self->IsExceptionPending());
1311 self->ClearException();
1312 return false;
1313 }
1314 uint8_t* stack_map_data = nullptr;
Mathieu Chartiercbcedbf2017-03-12 22:24:50 -07001315 uint8_t* method_info_data = nullptr;
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001316 uint8_t* roots_data = nullptr;
Orion Hodsondbd05fe2017-08-10 11:41:35 +01001317 uint32_t data_size = code_cache->ReserveData(self,
1318 stack_map_size,
1319 method_info_size,
1320 number_of_roots,
1321 method,
1322 &stack_map_data,
1323 &method_info_data,
1324 &roots_data);
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001325 if (stack_map_data == nullptr || roots_data == nullptr) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +00001326 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kJitOutOfMemoryForCommit);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001327 return false;
1328 }
Mathieu Chartiercbcedbf2017-03-12 22:24:50 -07001329 codegen->BuildStackMaps(MemoryRegion(stack_map_data, stack_map_size),
1330 MemoryRegion(method_info_data, method_info_size),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001331 code_item);
Nicolas Geoffrayf0acfe72017-01-09 20:54:52 +00001332 codegen->EmitJitRoots(code_allocator.GetData(), roots, roots_data);
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001333
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001334 const void* code = code_cache->CommitCode(
1335 self,
1336 method,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001337 stack_map_data,
Mathieu Chartiercbcedbf2017-03-12 22:24:50 -07001338 method_info_data,
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001339 roots_data,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001340 codegen->HasEmptyFrame() ? 0 : codegen->GetFrameSize(),
1341 codegen->GetCoreSpillMask(),
1342 codegen->GetFpuSpillMask(),
1343 code_allocator.GetMemory().data(),
Vladimir Markoca1e0382018-04-11 09:58:41 +00001344 code_allocator.GetMemory().size(),
Orion Hodsondbd05fe2017-08-10 11:41:35 +01001345 data_size,
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001346 osr,
Mingyao Yang063fc772016-08-02 11:02:54 -07001347 roots,
1348 codegen->GetGraph()->HasShouldDeoptimizeFlag(),
1349 codegen->GetGraph()->GetCHASingleImplementationList());
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001350
1351 if (code == nullptr) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +00001352 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kJitOutOfMemoryForCommit);
Nicolas Geoffrayf46501c2016-11-22 13:45:36 +00001353 code_cache->ClearData(self, stack_map_data, roots_data);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001354 return false;
1355 }
1356
David Srbecky91cc06c2016-03-07 16:13:58 +00001357 const CompilerOptions& compiler_options = GetCompilerDriver()->GetCompilerOptions();
David Srbeckyf4886df2017-12-11 16:06:29 +00001358 if (compiler_options.GenerateAnyDebugInfo()) {
David Srbecky5cc349f2015-12-18 15:04:48 +00001359 const auto* method_header = reinterpret_cast<const OatQuickMethodHeader*>(code);
1360 const uintptr_t code_address = reinterpret_cast<uintptr_t>(method_header->GetCode());
Vladimir Marko1b404a82017-09-01 13:35:26 +01001361 debug::MethodDebugInfo info = {};
David Srbeckyc684f332018-01-19 17:38:06 +00001362 DCHECK(info.custom_name.empty());
David Srbecky197160d2016-03-07 17:33:57 +00001363 info.dex_file = dex_file;
1364 info.class_def_index = class_def_idx;
1365 info.dex_method_index = method_idx;
1366 info.access_flags = access_flags;
1367 info.code_item = code_item;
1368 info.isa = codegen->GetInstructionSet();
1369 info.deduped = false;
1370 info.is_native_debuggable = compiler_options.GetNativeDebuggable();
1371 info.is_optimized = true;
1372 info.is_code_address_text_relative = false;
1373 info.code_address = code_address;
Vladimir Markoca1e0382018-04-11 09:58:41 +00001374 info.code_size = code_allocator.GetMemory().size();
David Srbecky197160d2016-03-07 17:33:57 +00001375 info.frame_size_in_bytes = method_header->GetFrameSizeInBytes();
1376 info.code_info = stack_map_size == 0 ? nullptr : stack_map_data;
1377 info.cfi = ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data());
David Srbeckyc9e02082018-01-24 16:44:02 +00001378 GenerateJitDebugInfo(method, info);
David Srbecky5cc349f2015-12-18 15:04:48 +00001379 }
1380
Vladimir Markoca6fff82017-10-03 14:49:14 +01001381 Runtime::Current()->GetJit()->AddMemoryUsage(method, allocator.BytesUsed());
Nicolas Geoffray01db5f72017-07-19 15:05:49 +01001382 if (jit_logger != nullptr) {
Vladimir Markoca1e0382018-04-11 09:58:41 +00001383 jit_logger->WriteLog(code, code_allocator.GetMemory().size(), method);
Nicolas Geoffray01db5f72017-07-19 15:05:49 +01001384 }
Nicolas Geoffraya4f81542016-03-08 16:57:48 +00001385
Vladimir Marko174b2e22017-10-12 13:34:49 +01001386 if (kArenaAllocatorCountAllocations) {
1387 codegen.reset(); // Release codegen's ScopedArenaAllocator for memory accounting.
1388 size_t total_allocated = allocator.BytesAllocated() + arena_stack.PeakBytesAllocated();
1389 if (total_allocated > kArenaAllocatorMemoryReportThreshold) {
1390 MemStats mem_stats(allocator.GetMemStats());
1391 MemStats peak_stats(arena_stack.GetPeakStats());
1392 LOG(INFO) << "Used " << total_allocated << " bytes of arena memory for compiling "
1393 << dex_file->PrettyMethod(method_idx)
1394 << "\n" << Dumpable<MemStats>(mem_stats)
1395 << "\n" << Dumpable<MemStats>(peak_stats);
1396 }
1397 }
1398
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001399 return true;
1400}
1401
David Srbeckyc9e02082018-01-24 16:44:02 +00001402void OptimizingCompiler::GenerateJitDebugInfo(ArtMethod* method, debug::MethodDebugInfo info) {
David Srbeckyc684f332018-01-19 17:38:06 +00001403 const CompilerOptions& compiler_options = GetCompilerDriver()->GetCompilerOptions();
1404 DCHECK(compiler_options.GenerateAnyDebugInfo());
1405
1406 // If both flags are passed, generate full debug info.
1407 const bool mini_debug_info = !compiler_options.GetGenerateDebugInfo();
1408
1409 // Create entry for the single method that we just compiled.
1410 std::vector<uint8_t> elf_file = debug::MakeElfFileForJIT(
1411 GetCompilerDriver()->GetInstructionSet(),
1412 GetCompilerDriver()->GetInstructionSetFeatures(),
1413 mini_debug_info,
1414 ArrayRef<const debug::MethodDebugInfo>(&info, 1));
David Srbeckyfb3de3d2018-01-29 16:11:49 +00001415 MutexLock mu(Thread::Current(), *Locks::native_debug_interface_lock_);
David Srbecky440a9b32018-02-15 17:47:29 +00001416 AddNativeDebugInfoForJit(reinterpret_cast<const void*>(info.code_address), elf_file);
David Srbeckyc9e02082018-01-24 16:44:02 +00001417
1418 VLOG(jit)
1419 << "JIT mini-debug-info added for " << ArtMethod::PrettyMethod(method)
1420 << " size=" << PrettySize(elf_file.size())
David Srbecky440a9b32018-02-15 17:47:29 +00001421 << " total_size=" << PrettySize(GetJitNativeDebugInfoMemUsage());
David Srbeckyc684f332018-01-19 17:38:06 +00001422}
1423
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +00001424} // namespace art