blob: c4977decd97d447f54595fcf224b3db2608aed6f [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),
Aart Bika8360cd2018-05-02 16:07:51 -0700110 last_seen_graph_size_(0),
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000111 cached_method_name_(),
Vladimir Marko2da52b02018-05-08 16:31:34 +0100112 timing_logger_enabled_(compiler_driver->GetCompilerOptions().GetDumpPassTimings()),
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000113 timing_logger_(timing_logger_enabled_ ? GetMethodName() : "", true, true),
Vladimir Markoca6fff82017-10-03 14:49:14 +0100114 disasm_info_(graph->GetAllocator()),
Andreas Gampea0d81af2016-10-27 12:04:57 -0700115 visualizer_oss_(),
116 visualizer_output_(visualizer_output),
Nicolas Geoffrayc903b6a2016-01-18 12:56:06 +0000117 visualizer_enabled_(!compiler_driver->GetCompilerOptions().GetDumpCfgFileName().empty()),
Andreas Gampea0d81af2016-10-27 12:04:57 -0700118 visualizer_(&visualizer_oss_, graph, *codegen),
119 visualizer_dump_mutex_(dump_mutex),
David Brazdil69ba7b72015-06-23 18:27:30 +0100120 graph_in_bad_state_(false) {
Andreas Gampe53fcd0f2015-07-22 12:10:13 -0700121 if (timing_logger_enabled_ || visualizer_enabled_) {
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000122 if (!IsVerboseMethod(compiler_driver, GetMethodName())) {
Andreas Gampe53fcd0f2015-07-22 12:10:13 -0700123 timing_logger_enabled_ = visualizer_enabled_ = false;
124 }
125 if (visualizer_enabled_) {
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000126 visualizer_.PrintHeader(GetMethodName());
Andreas Gampe53fcd0f2015-07-22 12:10:13 -0700127 codegen->SetDisassemblyInformation(&disasm_info_);
128 }
David Brazdil62e074f2015-04-07 18:09:37 +0100129 }
David Brazdil5e8b1372015-01-23 14:39:08 +0000130 }
131
David Brazdil69ba7b72015-06-23 18:27:30 +0100132 ~PassObserver() {
David Brazdil5e8b1372015-01-23 14:39:08 +0000133 if (timing_logger_enabled_) {
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000134 LOG(INFO) << "TIMINGS " << GetMethodName();
David Brazdil5e8b1372015-01-23 14:39:08 +0000135 LOG(INFO) << Dumpable<TimingLogger>(timing_logger_);
136 }
Nicolas Geoffray00c141a2016-11-10 15:19:15 +0000137 DCHECK(visualizer_oss_.str().empty());
David Brazdil5e8b1372015-01-23 14:39:08 +0000138 }
139
Nicolas Geoffray00c141a2016-11-10 15:19:15 +0000140 void DumpDisassembly() REQUIRES(!visualizer_dump_mutex_) {
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100141 if (visualizer_enabled_) {
142 visualizer_.DumpGraphWithDisassembly();
Nicolas Geoffray00c141a2016-11-10 15:19:15 +0000143 FlushVisualizer();
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100144 }
145 }
146
David Brazdil69ba7b72015-06-23 18:27:30 +0100147 void SetGraphInBadState() { graph_in_bad_state_ = true; }
148
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000149 const char* GetMethodName() {
150 // PrettyMethod() is expensive, so we delay calling it until we actually have to.
151 if (cached_method_name_.empty()) {
David Sehr709b0702016-10-13 09:12:37 -0700152 cached_method_name_ = graph_->GetDexFile().PrettyMethod(graph_->GetMethodIdx());
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000153 }
154 return cached_method_name_.c_str();
155 }
156
David Brazdil5e8b1372015-01-23 14:39:08 +0000157 private:
Nicolas Geoffray00c141a2016-11-10 15:19:15 +0000158 void StartPass(const char* pass_name) REQUIRES(!visualizer_dump_mutex_) {
Wojciech Staszkiewicze7060702016-08-16 17:31:19 -0700159 VLOG(compiler) << "Starting pass: " << pass_name;
David Brazdil809658e2015-02-05 11:34:02 +0000160 // Dump graph first, then start timer.
161 if (visualizer_enabled_) {
David Brazdilffee3d32015-07-06 11:48:53 +0100162 visualizer_.DumpGraph(pass_name, /* is_after_pass */ false, graph_in_bad_state_);
Nicolas Geoffray00c141a2016-11-10 15:19:15 +0000163 FlushVisualizer();
David Brazdil809658e2015-02-05 11:34:02 +0000164 }
165 if (timing_logger_enabled_) {
166 timing_logger_.StartTiming(pass_name);
167 }
168 }
169
Nicolas Geoffray00c141a2016-11-10 15:19:15 +0000170 void FlushVisualizer() REQUIRES(!visualizer_dump_mutex_) {
171 MutexLock mu(Thread::Current(), visualizer_dump_mutex_);
172 *visualizer_output_ << visualizer_oss_.str();
173 visualizer_output_->flush();
174 visualizer_oss_.str("");
175 visualizer_oss_.clear();
176 }
177
Aart Bika8360cd2018-05-02 16:07:51 -0700178 void EndPass(const char* pass_name, bool pass_change) REQUIRES(!visualizer_dump_mutex_) {
David Brazdil809658e2015-02-05 11:34:02 +0000179 // Pause timer first, then dump graph.
180 if (timing_logger_enabled_) {
181 timing_logger_.EndTiming();
182 }
183 if (visualizer_enabled_) {
David Brazdilffee3d32015-07-06 11:48:53 +0100184 visualizer_.DumpGraph(pass_name, /* is_after_pass */ true, graph_in_bad_state_);
Nicolas Geoffray00c141a2016-11-10 15:19:15 +0000185 FlushVisualizer();
David Brazdil809658e2015-02-05 11:34:02 +0000186 }
David Brazdil69ba7b72015-06-23 18:27:30 +0100187
188 // Validate the HGraph if running in debug mode.
189 if (kIsDebugBuild) {
190 if (!graph_in_bad_state_) {
David Brazdilbadd8262016-02-02 16:28:56 +0000191 GraphChecker checker(graph_);
Aart Bika8360cd2018-05-02 16:07:51 -0700192 last_seen_graph_size_ = checker.Run(pass_change, last_seen_graph_size_);
David Brazdilbadd8262016-02-02 16:28:56 +0000193 if (!checker.IsValid()) {
194 LOG(FATAL) << "Error after " << pass_name << ": " << Dumpable<GraphChecker>(checker);
David Brazdil69ba7b72015-06-23 18:27:30 +0100195 }
196 }
197 }
David Brazdil809658e2015-02-05 11:34:02 +0000198 }
199
Andreas Gampe53fcd0f2015-07-22 12:10:13 -0700200 static bool IsVerboseMethod(CompilerDriver* compiler_driver, const char* method_name) {
201 // Test an exact match to --verbose-methods. If verbose-methods is set, this overrides an
202 // empty kStringFilter matching all methods.
203 if (compiler_driver->GetCompilerOptions().HasVerboseMethods()) {
204 return compiler_driver->GetCompilerOptions().IsVerboseMethod(method_name);
205 }
206
207 // Test the kStringFilter sub-string. constexpr helper variable to silence unreachable-code
208 // warning when the string is empty.
209 constexpr bool kStringFilterEmpty = arraysize(kStringFilter) <= 1;
210 if (kStringFilterEmpty || strstr(method_name, kStringFilter) != nullptr) {
211 return true;
212 }
213
214 return false;
215 }
216
David Brazdil69ba7b72015-06-23 18:27:30 +0100217 HGraph* const graph_;
Aart Bika8360cd2018-05-02 16:07:51 -0700218 size_t last_seen_graph_size_;
Vladimir Marko0d1caa52015-11-20 13:02:22 +0000219
220 std::string cached_method_name_;
David Brazdil5e8b1372015-01-23 14:39:08 +0000221
222 bool timing_logger_enabled_;
David Brazdil5e8b1372015-01-23 14:39:08 +0000223 TimingLogger timing_logger_;
224
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100225 DisassemblyInformation disasm_info_;
226
Andreas Gampea0d81af2016-10-27 12:04:57 -0700227 std::ostringstream visualizer_oss_;
228 std::ostream* visualizer_output_;
David Brazdil5e8b1372015-01-23 14:39:08 +0000229 bool visualizer_enabled_;
230 HGraphVisualizer visualizer_;
Andreas Gampea0d81af2016-10-27 12:04:57 -0700231 Mutex& visualizer_dump_mutex_;
David Brazdil5e8b1372015-01-23 14:39:08 +0000232
David Brazdil69ba7b72015-06-23 18:27:30 +0100233 // Flag to be set by the compiler if the pass failed and the graph is not
234 // expected to validate.
235 bool graph_in_bad_state_;
David Brazdil809658e2015-02-05 11:34:02 +0000236
David Brazdil69ba7b72015-06-23 18:27:30 +0100237 friend PassScope;
238
239 DISALLOW_COPY_AND_ASSIGN(PassObserver);
David Brazdil5e8b1372015-01-23 14:39:08 +0000240};
241
David Brazdil69ba7b72015-06-23 18:27:30 +0100242class PassScope : public ValueObject {
David Brazdil809658e2015-02-05 11:34:02 +0000243 public:
David Brazdil69ba7b72015-06-23 18:27:30 +0100244 PassScope(const char *pass_name, PassObserver* pass_observer)
David Brazdil809658e2015-02-05 11:34:02 +0000245 : pass_name_(pass_name),
Aart Bika8360cd2018-05-02 16:07:51 -0700246 pass_change_(true), // assume change
David Brazdil69ba7b72015-06-23 18:27:30 +0100247 pass_observer_(pass_observer) {
248 pass_observer_->StartPass(pass_name_);
David Brazdil809658e2015-02-05 11:34:02 +0000249 }
250
Aart Bika8360cd2018-05-02 16:07:51 -0700251 void SetPassNotChanged() {
252 pass_change_ = false;
253 }
254
David Brazdil69ba7b72015-06-23 18:27:30 +0100255 ~PassScope() {
Aart Bika8360cd2018-05-02 16:07:51 -0700256 pass_observer_->EndPass(pass_name_, pass_change_);
David Brazdil809658e2015-02-05 11:34:02 +0000257 }
258
259 private:
260 const char* const pass_name_;
Aart Bika8360cd2018-05-02 16:07:51 -0700261 bool pass_change_;
David Brazdil69ba7b72015-06-23 18:27:30 +0100262 PassObserver* const pass_observer_;
David Brazdil809658e2015-02-05 11:34:02 +0000263};
264
Andreas Gampe53c913b2014-08-12 23:19:23 -0700265class OptimizingCompiler FINAL : public Compiler {
266 public:
267 explicit OptimizingCompiler(CompilerDriver* driver);
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -0700268 ~OptimizingCompiler() OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700269
Vladimir Markodf739842016-03-23 16:59:07 +0000270 bool CanCompileMethod(uint32_t method_idx, const DexFile& dex_file) const OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700271
272 CompiledMethod* Compile(const DexFile::CodeItem* code_item,
273 uint32_t access_flags,
274 InvokeType invoke_type,
275 uint16_t class_def_idx,
276 uint32_t method_idx,
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000277 Handle<mirror::ClassLoader> class_loader,
Mathieu Chartier736b5602015-09-02 14:54:11 -0700278 const DexFile& dex_file,
279 Handle<mirror::DexCache> dex_cache) const OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700280
Andreas Gampe53c913b2014-08-12 23:19:23 -0700281 CompiledMethod* JniCompile(uint32_t access_flags,
282 uint32_t method_idx,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000283 const DexFile& dex_file,
284 Handle<mirror::DexCache> dex_cache) const OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700285
Mathieu Chartiere401d142015-04-22 13:56:20 -0700286 uintptr_t GetEntryPointOf(ArtMethod* method) const OVERRIDE
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700287 REQUIRES_SHARED(Locks::mutator_lock_) {
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000288 return reinterpret_cast<uintptr_t>(method->GetEntryPointFromQuickCompiledCodePtrSize(
289 InstructionSetPointerSize(GetCompilerDriver()->GetInstructionSet())));
290 }
Andreas Gampe53c913b2014-08-12 23:19:23 -0700291
David Brazdilee690a32014-12-01 17:04:16 +0000292 void Init() OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700293
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000294 void UnInit() const OVERRIDE;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700295
Nicolas Geoffray01db5f72017-07-19 15:05:49 +0100296 bool JitCompile(Thread* self,
297 jit::JitCodeCache* code_cache,
298 ArtMethod* method,
299 bool osr,
300 jit::JitLogger* jit_logger)
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000301 OVERRIDE
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700302 REQUIRES_SHARED(Locks::mutator_lock_);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000303
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -0700304 private:
Aart Bik24773202018-04-26 10:28:51 -0700305 bool RunOptimizations(HGraph* graph,
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -0700306 CodeGenerator* codegen,
Aart Bik2ca10eb2017-11-15 15:17:53 -0800307 const DexCompilationUnit& dex_compilation_unit,
308 PassObserver* pass_observer,
309 VariableSizedHandleScope* handles,
310 const OptimizationDef definitions[],
311 size_t length) const {
312 // Convert definitions to optimization passes.
313 ArenaVector<HOptimization*> optimizations = ConstructOptimizations(
314 definitions,
315 length,
316 graph->GetAllocator(),
317 graph,
318 compilation_stats_.get(),
319 codegen,
320 GetCompilerDriver(),
321 dex_compilation_unit,
322 handles);
323 DCHECK_EQ(length, optimizations.size());
Aart Bik2e148682018-04-18 16:11:12 -0700324 // Run the optimization passes one by one. Any "depends_on" pass refers back to
325 // the most recent occurrence of that pass, skipped or executed.
326 std::bitset<static_cast<size_t>(OptimizationPass::kLast) + 1u> pass_changes;
327 pass_changes[static_cast<size_t>(OptimizationPass::kNone)] = true;
Aart Bik24773202018-04-26 10:28:51 -0700328 bool change = false;
Aart Bik2ca10eb2017-11-15 15:17:53 -0800329 for (size_t i = 0; i < length; ++i) {
Aart Bik2e148682018-04-18 16:11:12 -0700330 if (pass_changes[static_cast<size_t>(definitions[i].depends_on)]) {
331 // Execute the pass and record whether it changed anything.
332 PassScope scope(optimizations[i]->GetPassName(), pass_observer);
333 bool pass_change = optimizations[i]->Run();
334 pass_changes[static_cast<size_t>(definitions[i].pass)] = pass_change;
Aart Bika8360cd2018-05-02 16:07:51 -0700335 if (pass_change) {
336 change = true;
337 } else {
338 scope.SetPassNotChanged();
339 }
Aart Bik2e148682018-04-18 16:11:12 -0700340 } else {
341 // Skip the pass and record that nothing changed.
342 pass_changes[static_cast<size_t>(definitions[i].pass)] = false;
343 }
Aart Bik2ca10eb2017-11-15 15:17:53 -0800344 }
Aart Bik24773202018-04-26 10:28:51 -0700345 return change;
Aart Bik2ca10eb2017-11-15 15:17:53 -0800346 }
347
Aart Bik24773202018-04-26 10:28:51 -0700348 template <size_t length> bool RunOptimizations(
Aart Bik2ca10eb2017-11-15 15:17:53 -0800349 HGraph* graph,
350 CodeGenerator* codegen,
351 const DexCompilationUnit& dex_compilation_unit,
352 PassObserver* pass_observer,
353 VariableSizedHandleScope* handles,
354 const OptimizationDef (&definitions)[length]) const {
Aart Bik24773202018-04-26 10:28:51 -0700355 return RunOptimizations(
Aart Bik2ca10eb2017-11-15 15:17:53 -0800356 graph, codegen, dex_compilation_unit, pass_observer, handles, definitions, length);
357 }
358
359 void RunOptimizations(HGraph* graph,
360 CodeGenerator* codegen,
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -0700361 const DexCompilationUnit& dex_compilation_unit,
362 PassObserver* pass_observer,
Mathieu Chartiere8a3c572016-10-11 16:52:17 -0700363 VariableSizedHandleScope* handles) const;
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700364
Andreas Gampe53c913b2014-08-12 23:19:23 -0700365 private:
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000366 // Create a 'CompiledMethod' for an optimized graph.
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100367 CompiledMethod* Emit(ArenaAllocator* allocator,
David Brazdil58282f42016-01-14 12:45:10 +0000368 CodeVectorAllocator* code_allocator,
369 CodeGenerator* codegen,
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000370 const DexFile::CodeItem* item) const;
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000371
372 // Try compiling a method and return the code generator used for
373 // compiling it.
374 // This method:
375 // 1) Builds the graph. Returns null if it failed to build it.
David Brazdil58282f42016-01-14 12:45:10 +0000376 // 2) Transforms the graph to SSA. Returns null if it failed.
377 // 3) Runs optimizations on the graph, including register allocator.
378 // 4) Generates code with the `code_allocator` provided.
Vladimir Markoca6fff82017-10-03 14:49:14 +0100379 CodeGenerator* TryCompile(ArenaAllocator* allocator,
380 ArenaStack* arena_stack,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000381 CodeVectorAllocator* code_allocator,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000382 const DexCompilationUnit& dex_compilation_unit,
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000383 ArtMethod* method,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000384 bool osr,
385 VariableSizedHandleScope* handles) const;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000386
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000387 CodeGenerator* TryCompileIntrinsic(ArenaAllocator* allocator,
388 ArenaStack* arena_stack,
389 CodeVectorAllocator* code_allocator,
390 const DexCompilationUnit& dex_compilation_unit,
391 ArtMethod* method,
392 VariableSizedHandleScope* handles) const;
393
Aart Bik24773202018-04-26 10:28:51 -0700394 bool RunArchOptimizations(HGraph* graph,
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700395 CodeGenerator* codegen,
Aart Bik2ca10eb2017-11-15 15:17:53 -0800396 const DexCompilationUnit& dex_compilation_unit,
397 PassObserver* pass_observer,
398 VariableSizedHandleScope* handles) const;
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700399
David Srbeckyc9e02082018-01-24 16:44:02 +0000400 void GenerateJitDebugInfo(ArtMethod* method, debug::MethodDebugInfo method_debug_info)
401 REQUIRES_SHARED(Locks::mutator_lock_);
David Srbeckyc684f332018-01-19 17:38:06 +0000402
Calin Juravle2be39e02015-04-21 13:56:34 +0100403 std::unique_ptr<OptimizingCompilerStats> compilation_stats_;
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100404
Andreas Gampe53c913b2014-08-12 23:19:23 -0700405 std::unique_ptr<std::ostream> visualizer_output_;
406
Andreas Gampea0d81af2016-10-27 12:04:57 -0700407 mutable Mutex dump_mutex_; // To synchronize visualizer writing.
408
Andreas Gampe53c913b2014-08-12 23:19:23 -0700409 DISALLOW_COPY_AND_ASSIGN(OptimizingCompiler);
410};
411
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100412static const int kMaximumCompilationTimeBeforeWarning = 100; /* ms */
413
414OptimizingCompiler::OptimizingCompiler(CompilerDriver* driver)
Andreas Gampea0d81af2016-10-27 12:04:57 -0700415 : Compiler(driver, kMaximumCompilationTimeBeforeWarning),
416 dump_mutex_("Visualizer dump lock") {}
David Brazdilee690a32014-12-01 17:04:16 +0000417
418void OptimizingCompiler::Init() {
419 // Enable C1visualizer output. Must be done in Init() because the compiler
420 // driver is not fully initialized when passed to the compiler's constructor.
421 CompilerDriver* driver = GetCompilerDriver();
Nicolas Geoffrayc903b6a2016-01-18 12:56:06 +0000422 const std::string cfg_file_name = driver->GetCompilerOptions().GetDumpCfgFileName();
David Brazdil866c0312015-01-13 21:21:31 +0000423 if (!cfg_file_name.empty()) {
Calin Juravle87000a92015-08-24 15:34:44 +0100424 std::ios_base::openmode cfg_file_mode =
Nicolas Geoffrayc903b6a2016-01-18 12:56:06 +0000425 driver->GetCompilerOptions().GetDumpCfgAppend() ? std::ofstream::app : std::ofstream::out;
Calin Juravle87000a92015-08-24 15:34:44 +0100426 visualizer_output_.reset(new std::ofstream(cfg_file_name, cfg_file_mode));
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100427 }
Nicolas Geoffray2d8801f2017-11-28 15:50:07 +0000428 if (driver->GetCompilerOptions().GetDumpStats()) {
Calin Juravle2be39e02015-04-21 13:56:34 +0100429 compilation_stats_.reset(new OptimizingCompilerStats());
430 }
Nicolas Geoffrayf635e632014-05-14 09:43:38 +0100431}
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000432
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000433void OptimizingCompiler::UnInit() const {
Nicolas Geoffray216eaa22015-03-17 17:09:30 +0000434}
435
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100436OptimizingCompiler::~OptimizingCompiler() {
Calin Juravle2be39e02015-04-21 13:56:34 +0100437 if (compilation_stats_.get() != nullptr) {
438 compilation_stats_->Log();
439 }
Nicolas Geoffray88157ef2014-09-12 10:29:53 +0100440}
441
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +0000442bool OptimizingCompiler::CanCompileMethod(uint32_t method_idx ATTRIBUTE_UNUSED,
Vladimir Markodf739842016-03-23 16:59:07 +0000443 const DexFile& dex_file ATTRIBUTE_UNUSED) const {
Nicolas Geoffraye2dc6fa2014-11-17 12:55:12 +0000444 return true;
Andreas Gampe53c913b2014-08-12 23:19:23 -0700445}
446
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000447static bool IsInstructionSetSupported(InstructionSet instruction_set) {
Vladimir Marko33bff252017-11-01 14:35:42 +0000448 return instruction_set == InstructionSet::kArm
449 || instruction_set == InstructionSet::kArm64
450 || instruction_set == InstructionSet::kThumb2
451 || instruction_set == InstructionSet::kMips
452 || instruction_set == InstructionSet::kMips64
453 || instruction_set == InstructionSet::kX86
454 || instruction_set == InstructionSet::kX86_64;
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000455}
456
Aart Bik24773202018-04-26 10:28:51 -0700457bool OptimizingCompiler::RunArchOptimizations(HGraph* graph,
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700458 CodeGenerator* codegen,
Aart Bik2ca10eb2017-11-15 15:17:53 -0800459 const DexCompilationUnit& dex_compilation_unit,
460 PassObserver* pass_observer,
461 VariableSizedHandleScope* handles) const {
462 switch (GetCompilerDriver()->GetInstructionSet()) {
Artem Serov2bbc9532016-10-21 11:51:50 +0100463#if defined(ART_ENABLE_CODEGEN_arm)
Vladimir Marko33bff252017-11-01 14:35:42 +0000464 case InstructionSet::kThumb2:
465 case InstructionSet::kArm: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800466 OptimizationDef arm_optimizations[] = {
467 OptDef(OptimizationPass::kInstructionSimplifierArm),
468 OptDef(OptimizationPass::kSideEffectsAnalysis),
469 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
470 OptDef(OptimizationPass::kScheduling)
Vladimir Markob4536b72015-11-24 13:45:23 +0000471 };
Aart Bik24773202018-04-26 10:28:51 -0700472 return RunOptimizations(graph,
473 codegen,
474 dex_compilation_unit,
475 pass_observer,
476 handles,
477 arm_optimizations);
Vladimir Markob4536b72015-11-24 13:45:23 +0000478 }
479#endif
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100480#ifdef ART_ENABLE_CODEGEN_arm64
Vladimir Marko33bff252017-11-01 14:35:42 +0000481 case InstructionSet::kArm64: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800482 OptimizationDef arm64_optimizations[] = {
483 OptDef(OptimizationPass::kInstructionSimplifierArm64),
484 OptDef(OptimizationPass::kSideEffectsAnalysis),
485 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
486 OptDef(OptimizationPass::kScheduling)
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100487 };
Aart Bik24773202018-04-26 10:28:51 -0700488 return RunOptimizations(graph,
489 codegen,
490 dex_compilation_unit,
491 pass_observer,
492 handles,
493 arm64_optimizations);
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100494 }
495#endif
Alexey Frunzee3fb2452016-05-10 16:08:05 -0700496#ifdef ART_ENABLE_CODEGEN_mips
Vladimir Marko33bff252017-11-01 14:35:42 +0000497 case InstructionSet::kMips: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800498 OptimizationDef mips_optimizations[] = {
499 OptDef(OptimizationPass::kInstructionSimplifierMips),
500 OptDef(OptimizationPass::kSideEffectsAnalysis),
501 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
502 OptDef(OptimizationPass::kPcRelativeFixupsMips)
Alexey Frunzee3fb2452016-05-10 16:08:05 -0700503 };
Aart Bik24773202018-04-26 10:28:51 -0700504 return RunOptimizations(graph,
505 codegen,
506 dex_compilation_unit,
507 pass_observer,
508 handles,
509 mips_optimizations);
Alexey Frunzee3fb2452016-05-10 16:08:05 -0700510 }
511#endif
Lena Djokicb8e9c352017-09-20 15:11:13 +0200512#ifdef ART_ENABLE_CODEGEN_mips64
Vladimir Marko33bff252017-11-01 14:35:42 +0000513 case InstructionSet::kMips64: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800514 OptimizationDef mips64_optimizations[] = {
515 OptDef(OptimizationPass::kSideEffectsAnalysis),
516 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch")
Lena Djokicb8e9c352017-09-20 15:11:13 +0200517 };
Aart Bik24773202018-04-26 10:28:51 -0700518 return RunOptimizations(graph,
519 codegen,
520 dex_compilation_unit,
521 pass_observer,
522 handles,
523 mips64_optimizations);
Lena Djokicb8e9c352017-09-20 15:11:13 +0200524 }
525#endif
Mark Mendell0616ae02015-04-17 12:49:27 -0400526#ifdef ART_ENABLE_CODEGEN_x86
Vladimir Marko33bff252017-11-01 14:35:42 +0000527 case InstructionSet::kX86: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800528 OptimizationDef x86_optimizations[] = {
529 OptDef(OptimizationPass::kSideEffectsAnalysis),
530 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
531 OptDef(OptimizationPass::kPcRelativeFixupsX86),
532 OptDef(OptimizationPass::kX86MemoryOperandGeneration)
Mark Mendell0616ae02015-04-17 12:49:27 -0400533 };
Aart Bik24773202018-04-26 10:28:51 -0700534 return RunOptimizations(graph,
535 codegen,
536 dex_compilation_unit,
537 pass_observer,
538 handles,
539 x86_optimizations);
Mark Mendell0616ae02015-04-17 12:49:27 -0400540 }
541#endif
Mark Mendellee8d9712016-07-12 11:13:15 -0400542#ifdef ART_ENABLE_CODEGEN_x86_64
Vladimir Marko33bff252017-11-01 14:35:42 +0000543 case InstructionSet::kX86_64: {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800544 OptimizationDef x86_64_optimizations[] = {
545 OptDef(OptimizationPass::kSideEffectsAnalysis),
546 OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"),
547 OptDef(OptimizationPass::kX86MemoryOperandGeneration)
Mark Mendellee8d9712016-07-12 11:13:15 -0400548 };
Aart Bik24773202018-04-26 10:28:51 -0700549 return RunOptimizations(graph,
550 codegen,
551 dex_compilation_unit,
552 pass_observer,
553 handles,
554 x86_64_optimizations);
Mark Mendellee8d9712016-07-12 11:13:15 -0400555 }
556#endif
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100557 default:
Aart Bik24773202018-04-26 10:28:51 -0700558 return false;
Alexandre Rames44b9cf92015-08-19 15:39:06 +0100559 }
560}
561
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000562NO_INLINE // Avoid increasing caller's frame size by large stack-allocated objects.
563static void AllocateRegisters(HGraph* graph,
564 CodeGenerator* codegen,
Matthew Gharrity2cd05b72016-08-03 16:57:37 -0700565 PassObserver* pass_observer,
Igor Murashkin6ef45672017-08-08 13:59:55 -0700566 RegisterAllocator::Strategy strategy,
567 OptimizingCompilerStats* stats) {
Mingyao Yang700347e2016-03-02 14:59:32 -0800568 {
569 PassScope scope(PrepareForRegisterAllocation::kPrepareForRegisterAllocationPassName,
570 pass_observer);
Igor Murashkin6ef45672017-08-08 13:59:55 -0700571 PrepareForRegisterAllocation(graph, stats).Run();
Mingyao Yang700347e2016-03-02 14:59:32 -0800572 }
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100573 // Use local allocator shared by SSA liveness analysis and register allocator.
574 // (Register allocator creates new objects in the liveness data.)
575 ScopedArenaAllocator local_allocator(graph->GetArenaStack());
576 SsaLivenessAnalysis liveness(graph, codegen, &local_allocator);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000577 {
578 PassScope scope(SsaLivenessAnalysis::kLivenessPassName, pass_observer);
579 liveness.Analyze();
580 }
581 {
582 PassScope scope(RegisterAllocator::kRegisterAllocatorPassName, pass_observer);
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100583 std::unique_ptr<RegisterAllocator> register_allocator =
584 RegisterAllocator::Create(&local_allocator, codegen, liveness, strategy);
Vladimir Markoca6fff82017-10-03 14:49:14 +0100585 register_allocator->AllocateRegisters();
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000586 }
587}
588
Aart Bik2ca10eb2017-11-15 15:17:53 -0800589// Strip pass name suffix to get optimization name.
590static std::string ConvertPassNameToOptimizationName(const std::string& pass_name) {
591 size_t pos = pass_name.find(kPassNameSeparator);
592 return pos == std::string::npos ? pass_name : pass_name.substr(0, pos);
593}
594
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700595void OptimizingCompiler::RunOptimizations(HGraph* graph,
596 CodeGenerator* codegen,
Wojciech Staszkiewiczf5fb0902016-07-22 13:33:11 -0700597 const DexCompilationUnit& dex_compilation_unit,
598 PassObserver* pass_observer,
Mathieu Chartiere8a3c572016-10-11 16:52:17 -0700599 VariableSizedHandleScope* handles) const {
Aart Bik2ca10eb2017-11-15 15:17:53 -0800600 const std::vector<std::string>* pass_names =
601 GetCompilerDriver()->GetCompilerOptions().GetPassesToRun();
602 if (pass_names != nullptr) {
603 // If passes were defined on command-line, build the optimization
604 // passes and run these instead of the built-in optimizations.
Aart Bik2e148682018-04-18 16:11:12 -0700605 // TODO: a way to define depends_on via command-line?
Aart Bik2ca10eb2017-11-15 15:17:53 -0800606 const size_t length = pass_names->size();
607 std::vector<OptimizationDef> optimizations;
608 for (const std::string& pass_name : *pass_names) {
609 std::string opt_name = ConvertPassNameToOptimizationName(pass_name);
610 optimizations.push_back(OptDef(OptimizationPassByName(opt_name.c_str()), pass_name.c_str()));
611 }
612 RunOptimizations(graph,
613 codegen,
614 dex_compilation_unit,
615 pass_observer,
616 handles,
617 optimizations.data(),
618 length);
Wojciech Staszkiewicz5319d3c2016-08-01 17:48:59 -0700619 return;
620 }
621
Aart Bik24773202018-04-26 10:28:51 -0700622 OptimizationDef optimizations[] = {
Aart Bik2e148682018-04-18 16:11:12 -0700623 // Initial optimizations.
Aart Bik2ca10eb2017-11-15 15:17:53 -0800624 OptDef(OptimizationPass::kIntrinsicsRecognizer),
625 OptDef(OptimizationPass::kSharpening),
626 OptDef(OptimizationPass::kConstantFolding),
627 OptDef(OptimizationPass::kInstructionSimplifier),
Aart Bik2e148682018-04-18 16:11:12 -0700628 OptDef(OptimizationPass::kDeadCodeElimination,
629 "dead_code_elimination$initial"),
630 // Inlining.
Aart Bik24773202018-04-26 10:28:51 -0700631 OptDef(OptimizationPass::kInliner),
Aart Bik2e148682018-04-18 16:11:12 -0700632 // Simplification (only if inlining occurred).
633 OptDef(OptimizationPass::kConstantFolding,
634 "constant_folding$after_inlining",
635 OptimizationPass::kInliner),
636 OptDef(OptimizationPass::kInstructionSimplifier,
637 "instruction_simplifier$after_inlining",
638 OptimizationPass::kInliner),
639 OptDef(OptimizationPass::kDeadCodeElimination,
640 "dead_code_elimination$after_inlining",
641 OptimizationPass::kInliner),
642 // GVN.
643 OptDef(OptimizationPass::kSideEffectsAnalysis,
644 "side_effects$before_gvn"),
Aart Bik6d057002018-04-09 15:39:58 -0700645 OptDef(OptimizationPass::kGlobalValueNumbering),
Aart Bik2e148682018-04-18 16:11:12 -0700646 // Simplification (TODO: only if GVN occurred).
Aart Bik2ca10eb2017-11-15 15:17:53 -0800647 OptDef(OptimizationPass::kSelectGenerator),
Aart Bik2e148682018-04-18 16:11:12 -0700648 OptDef(OptimizationPass::kConstantFolding,
649 "constant_folding$after_gvn"),
650 OptDef(OptimizationPass::kInstructionSimplifier,
651 "instruction_simplifier$after_gvn"),
652 OptDef(OptimizationPass::kDeadCodeElimination,
653 "dead_code_elimination$after_gvn"),
654 // High-level optimizations.
655 OptDef(OptimizationPass::kSideEffectsAnalysis,
656 "side_effects$before_licm"),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800657 OptDef(OptimizationPass::kInvariantCodeMotion),
658 OptDef(OptimizationPass::kInductionVarAnalysis),
659 OptDef(OptimizationPass::kBoundsCheckElimination),
660 OptDef(OptimizationPass::kLoopOptimization),
Aart Bik2e148682018-04-18 16:11:12 -0700661 // Simplification.
662 OptDef(OptimizationPass::kConstantFolding,
663 "constant_folding$after_bce"),
664 OptDef(OptimizationPass::kInstructionSimplifier,
665 "instruction_simplifier$after_bce"),
666 // Other high-level optimizations.
667 OptDef(OptimizationPass::kSideEffectsAnalysis,
668 "side_effects$before_lse"),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800669 OptDef(OptimizationPass::kLoadStoreAnalysis),
670 OptDef(OptimizationPass::kLoadStoreElimination),
671 OptDef(OptimizationPass::kCHAGuardOptimization),
Aart Bik2e148682018-04-18 16:11:12 -0700672 OptDef(OptimizationPass::kDeadCodeElimination,
673 "dead_code_elimination$final"),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800674 OptDef(OptimizationPass::kCodeSinking),
David Brazdil8993caf2015-12-07 10:04:40 +0000675 // The codegen has a few assumptions that only the instruction simplifier
676 // can satisfy. For example, the code generator does not expect to see a
677 // HTypeConversion from a type to the same type.
Aart Bik2e148682018-04-18 16:11:12 -0700678 OptDef(OptimizationPass::kInstructionSimplifier,
679 "instruction_simplifier$before_codegen"),
Aart Bik2ca10eb2017-11-15 15:17:53 -0800680 // Eliminate constructor fences after code sinking to avoid
681 // complicated sinking logic to split a fence with many inputs.
682 OptDef(OptimizationPass::kConstructorFenceRedundancyElimination)
David Brazdil8993caf2015-12-07 10:04:40 +0000683 };
Aart Bik2ca10eb2017-11-15 15:17:53 -0800684 RunOptimizations(graph,
685 codegen,
686 dex_compilation_unit,
687 pass_observer,
688 handles,
Aart Bik24773202018-04-26 10:28:51 -0700689 optimizations);
David Brazdilbbd733e2015-08-18 17:48:17 +0100690
Aart Bik2ca10eb2017-11-15 15:17:53 -0800691 RunArchOptimizations(graph, codegen, dex_compilation_unit, pass_observer, handles);
Nicolas Geoffray5e6916c2014-11-18 16:53:35 +0000692}
693
Vladimir Markod8dbc8d2017-09-20 13:37:47 +0100694static ArenaVector<linker::LinkerPatch> EmitAndSortLinkerPatches(CodeGenerator* codegen) {
Vladimir Markoca6fff82017-10-03 14:49:14 +0100695 ArenaVector<linker::LinkerPatch> linker_patches(codegen->GetGraph()->GetAllocator()->Adapter());
Vladimir Marko58155012015-08-19 12:49:41 +0000696 codegen->EmitLinkerPatches(&linker_patches);
697
698 // Sort patches by literal offset. Required for .oat_patches encoding.
699 std::sort(linker_patches.begin(), linker_patches.end(),
Vladimir Markod8dbc8d2017-09-20 13:37:47 +0100700 [](const linker::LinkerPatch& lhs, const linker::LinkerPatch& rhs) {
Vladimir Marko58155012015-08-19 12:49:41 +0000701 return lhs.LiteralOffset() < rhs.LiteralOffset();
702 });
703
704 return linker_patches;
705}
706
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100707CompiledMethod* OptimizingCompiler::Emit(ArenaAllocator* allocator,
David Brazdil58282f42016-01-14 12:45:10 +0000708 CodeVectorAllocator* code_allocator,
709 CodeGenerator* codegen,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000710 const DexFile::CodeItem* code_item_for_osr_check) const {
Vladimir Markod8dbc8d2017-09-20 13:37:47 +0100711 ArenaVector<linker::LinkerPatch> linker_patches = EmitAndSortLinkerPatches(codegen);
Vladimir Markoe764d2e2017-10-05 14:35:55 +0100712 ArenaVector<uint8_t> stack_map(allocator->Adapter(kArenaAllocStackMaps));
713 ArenaVector<uint8_t> method_info(allocator->Adapter(kArenaAllocStackMaps));
Mathieu Chartiercbcedbf2017-03-12 22:24:50 -0700714 size_t stack_map_size = 0;
715 size_t method_info_size = 0;
716 codegen->ComputeStackMapAndMethodInfoSize(&stack_map_size, &method_info_size);
717 stack_map.resize(stack_map_size);
718 method_info.resize(method_info_size);
719 codegen->BuildStackMaps(MemoryRegion(stack_map.data(), stack_map.size()),
720 MemoryRegion(method_info.data(), method_info.size()),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000721 code_item_for_osr_check);
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000722
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100723 CompiledMethod* compiled_method = CompiledMethod::SwapAllocCompiledMethod(
Aart Bik2ca10eb2017-11-15 15:17:53 -0800724 GetCompilerDriver(),
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000725 codegen->GetInstructionSet(),
Vladimir Markoca1e0382018-04-11 09:58:41 +0000726 code_allocator->GetMemory(),
Roland Levillainaa9b7c42015-02-17 15:40:09 +0000727 // Follow Quick's behavior and set the frame size to zero if it is
728 // considered "empty" (see the definition of
729 // art::CodeGenerator::HasEmptyFrame).
730 codegen->HasEmptyFrame() ? 0 : codegen->GetFrameSize(),
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000731 codegen->GetCoreSpillMask(),
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000732 codegen->GetFpuSpillMask(),
Mathieu Chartiercbcedbf2017-03-12 22:24:50 -0700733 ArrayRef<const uint8_t>(method_info),
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100734 ArrayRef<const uint8_t>(stack_map),
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100735 ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data()),
Vladimir Markod8dbc8d2017-09-20 13:37:47 +0100736 ArrayRef<const linker::LinkerPatch>(linker_patches));
Mathieu Chartiered150002015-08-28 11:16:54 -0700737
Vladimir Markoca1e0382018-04-11 09:58:41 +0000738 CompiledMethodStorage* storage = GetCompilerDriver()->GetCompiledMethodStorage();
739 for (const linker::LinkerPatch& patch : linker_patches) {
740 if (codegen->NeedsThunkCode(patch) && storage->GetThunkCode(patch).empty()) {
741 ArenaVector<uint8_t> code(allocator->Adapter());
742 std::string debug_name;
743 codegen->EmitThunkCode(patch, &code, &debug_name);
744 storage->SetThunkCode(patch, ArrayRef<const uint8_t>(code), debug_name);
745 }
746 }
747
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100748 return compiled_method;
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000749}
750
Vladimir Markoca6fff82017-10-03 14:49:14 +0100751CodeGenerator* OptimizingCompiler::TryCompile(ArenaAllocator* allocator,
752 ArenaStack* arena_stack,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000753 CodeVectorAllocator* code_allocator,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000754 const DexCompilationUnit& dex_compilation_unit,
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000755 ArtMethod* method,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000756 bool osr,
757 VariableSizedHandleScope* handles) const {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000758 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kAttemptBytecodeCompilation);
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000759 CompilerDriver* compiler_driver = GetCompilerDriver();
760 InstructionSet instruction_set = compiler_driver->GetInstructionSet();
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000761 const DexFile& dex_file = *dex_compilation_unit.GetDexFile();
762 uint32_t method_idx = dex_compilation_unit.GetDexMethodIndex();
763 const DexFile::CodeItem* code_item = dex_compilation_unit.GetCodeItem();
Calin Juravlecff8cc72015-10-09 12:03:24 +0100764
Roland Levillain3b359c72015-11-17 19:35:12 +0000765 // Always use the Thumb-2 assembler: some runtime functionality
766 // (like implicit stack overflow checks) assume Thumb-2.
Vladimir Marko33bff252017-11-01 14:35:42 +0000767 DCHECK_NE(instruction_set, InstructionSet::kArm);
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100768
769 // Do not attempt to compile on architectures we do not support.
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000770 if (!IsInstructionSetSupported(instruction_set)) {
Igor Murashkin1e065a52017-08-09 13:20:34 -0700771 MaybeRecordStat(compilation_stats_.get(),
772 MethodCompilationStat::kNotCompiledUnsupportedIsa);
Nicolas Geoffray8fb5ce32014-07-04 09:43:26 +0100773 return nullptr;
774 }
775
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000776 if (Compiler::IsPathologicalCase(*code_item, method_idx, dex_file)) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000777 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kNotCompiledPathological);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000778 return nullptr;
779 }
780
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000781 // Implementation of the space filter: do not compile a code item whose size in
Nicolas Geoffray432bf3d2015-07-17 11:11:09 +0100782 // code units is bigger than 128.
783 static constexpr size_t kSpaceFilterOptimizingThreshold = 128;
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000784 const CompilerOptions& compiler_options = compiler_driver->GetCompilerOptions();
Andreas Gampe29d38e72016-03-23 15:31:51 +0000785 if ((compiler_options.GetCompilerFilter() == CompilerFilter::kSpace)
Mathieu Chartier698ebbc2018-01-05 11:00:42 -0800786 && (CodeItemInstructionAccessor(dex_file, code_item).InsnsSizeInCodeUnits() >
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800787 kSpaceFilterOptimizingThreshold)) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000788 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kNotCompiledSpaceFilter);
Nicolas Geoffray36540cb2015-03-23 14:45:53 +0000789 return nullptr;
790 }
791
Mathieu Chartier8892c6b2018-01-09 15:10:17 -0800792 CodeItemDebugInfoAccessor code_item_accessor(dex_file, code_item, method_idx);
Vladimir Markoca6fff82017-10-03 14:49:14 +0100793 HGraph* graph = new (allocator) HGraph(
794 allocator,
795 arena_stack,
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000796 dex_file,
797 method_idx,
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +0000798 compiler_driver->GetInstructionSet(),
799 kInvalidInvokeType,
800 compiler_driver->GetCompilerOptions().GetDebuggable(),
801 osr);
Nicolas Geoffraye53798a2014-12-01 10:31:54 +0000802
Mathieu Chartier210531f2018-01-12 10:15:51 -0800803 ArrayRef<const uint8_t> interpreter_metadata;
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +0000804 // For AOT compilation, we may not get a method, for example if its class is erroneous.
805 // JIT should always have a method.
806 DCHECK(Runtime::Current()->IsAotCompiler() || method != nullptr);
807 if (method != nullptr) {
808 graph->SetArtMethod(method);
809 ScopedObjectAccess soa(Thread::Current());
Nicolas Geoffray8eaa8e52017-11-13 17:47:50 +0000810 interpreter_metadata = method->GetQuickenedInfo();
David Brazdilbadd8262016-02-02 16:28:56 +0000811 }
812
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000813 std::unique_ptr<CodeGenerator> codegen(
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000814 CodeGenerator::Create(graph,
815 instruction_set,
816 *compiler_driver->GetInstructionSetFeatures(),
Calin Juravle2ae48182016-03-16 14:05:09 +0000817 compiler_driver->GetCompilerOptions(),
818 compilation_stats_.get()));
Nicolas Geoffray12df9eb2015-01-09 14:53:50 +0000819 if (codegen.get() == nullptr) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000820 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kNotCompiledNoCodegen);
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000821 return nullptr;
822 }
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100823 codegen->GetAssembler()->cfi().SetEnabled(
David Srbecky5b1c2ca2016-01-25 17:32:41 +0000824 compiler_driver->GetCompilerOptions().GenerateAnyDebugInfo());
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000825
David Brazdil69ba7b72015-06-23 18:27:30 +0100826 PassObserver pass_observer(graph,
David Brazdil69ba7b72015-06-23 18:27:30 +0100827 codegen.get(),
828 visualizer_output_.get(),
Andreas Gampea0d81af2016-10-27 12:04:57 -0700829 compiler_driver,
830 dump_mutex_);
David Brazdil5e8b1372015-01-23 14:39:08 +0000831
David Brazdil809658e2015-02-05 11:34:02 +0000832 {
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000833 VLOG(compiler) << "Building " << pass_observer.GetMethodName();
834 PassScope scope(HGraphBuilder::kBuilderPassName, &pass_observer);
835 HGraphBuilder builder(graph,
Mathieu Chartier808c7a52017-12-15 11:19:33 -0800836 code_item_accessor,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000837 &dex_compilation_unit,
838 &dex_compilation_unit,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000839 compiler_driver,
Nicolas Geoffray83c8e272017-01-31 14:36:37 +0000840 codegen.get(),
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000841 compilation_stats_.get(),
842 interpreter_metadata,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000843 handles);
844 GraphAnalysisResult result = builder.BuildGraph();
845 if (result != kAnalysisSuccess) {
846 switch (result) {
Igor Murashkin1e065a52017-08-09 13:20:34 -0700847 case kAnalysisSkipped: {
848 MaybeRecordStat(compilation_stats_.get(),
849 MethodCompilationStat::kNotCompiledSkipped);
850 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000851 break;
Igor Murashkin1e065a52017-08-09 13:20:34 -0700852 case kAnalysisInvalidBytecode: {
853 MaybeRecordStat(compilation_stats_.get(),
854 MethodCompilationStat::kNotCompiledInvalidBytecode);
855 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000856 break;
Igor Murashkin1e065a52017-08-09 13:20:34 -0700857 case kAnalysisFailThrowCatchLoop: {
858 MaybeRecordStat(compilation_stats_.get(),
859 MethodCompilationStat::kNotCompiledThrowCatchLoop);
860 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000861 break;
Igor Murashkin1e065a52017-08-09 13:20:34 -0700862 case kAnalysisFailAmbiguousArrayOp: {
863 MaybeRecordStat(compilation_stats_.get(),
864 MethodCompilationStat::kNotCompiledAmbiguousArrayOp);
865 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000866 break;
867 case kAnalysisSuccess:
868 UNREACHABLE();
David Brazdil809658e2015-02-05 11:34:02 +0000869 }
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000870 pass_observer.SetGraphInBadState();
871 return nullptr;
Nicolas Geoffrayf5370122014-12-02 11:51:19 +0000872 }
David Brazdilbadd8262016-02-02 16:28:56 +0000873 }
Vladimir Markof9f64412015-09-02 14:05:49 +0100874
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000875 RunOptimizations(graph,
876 codegen.get(),
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000877 dex_compilation_unit,
878 &pass_observer,
879 handles);
880
881 RegisterAllocator::Strategy regalloc_strategy =
882 compiler_options.GetRegisterAllocationStrategy();
Igor Murashkin1e065a52017-08-09 13:20:34 -0700883 AllocateRegisters(graph,
884 codegen.get(),
885 &pass_observer,
Igor Murashkin6ef45672017-08-08 13:59:55 -0700886 regalloc_strategy,
887 compilation_stats_.get());
Nicolas Geoffray22384ae2016-12-12 22:33:36 +0000888
889 codegen->Compile(code_allocator);
890 pass_observer.DumpDisassembly();
891
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000892 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kCompiledBytecode);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +0000893 return codegen.release();
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000894}
895
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000896CodeGenerator* OptimizingCompiler::TryCompileIntrinsic(
897 ArenaAllocator* allocator,
898 ArenaStack* arena_stack,
899 CodeVectorAllocator* code_allocator,
900 const DexCompilationUnit& dex_compilation_unit,
901 ArtMethod* method,
902 VariableSizedHandleScope* handles) const {
Vladimir Markocd09e1f2017-11-24 15:02:40 +0000903 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kAttemptIntrinsicCompilation);
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000904 CompilerDriver* compiler_driver = GetCompilerDriver();
905 InstructionSet instruction_set = compiler_driver->GetInstructionSet();
906 const DexFile& dex_file = *dex_compilation_unit.GetDexFile();
907 uint32_t method_idx = dex_compilation_unit.GetDexMethodIndex();
908
909 // Always use the Thumb-2 assembler: some runtime functionality
910 // (like implicit stack overflow checks) assume Thumb-2.
911 DCHECK_NE(instruction_set, InstructionSet::kArm);
912
913 // Do not attempt to compile on architectures we do not support.
914 if (!IsInstructionSetSupported(instruction_set)) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000915 return nullptr;
916 }
917
918 HGraph* graph = new (allocator) HGraph(
919 allocator,
920 arena_stack,
921 dex_file,
922 method_idx,
923 compiler_driver->GetInstructionSet(),
924 kInvalidInvokeType,
925 compiler_driver->GetCompilerOptions().GetDebuggable(),
926 /* osr */ false);
927
928 DCHECK(Runtime::Current()->IsAotCompiler());
929 DCHECK(method != nullptr);
930 graph->SetArtMethod(method);
931
932 std::unique_ptr<CodeGenerator> codegen(
933 CodeGenerator::Create(graph,
934 instruction_set,
935 *compiler_driver->GetInstructionSetFeatures(),
936 compiler_driver->GetCompilerOptions(),
937 compilation_stats_.get()));
938 if (codegen.get() == nullptr) {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +0000939 return nullptr;
940 }
941 codegen->GetAssembler()->cfi().SetEnabled(
942 compiler_driver->GetCompilerOptions().GenerateAnyDebugInfo());
943
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() &&
Goran Jakovljevic9c4f0d8f2017-04-05 16:27:25 +02001097 IsInstructionSetSupported(compiler_driver->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
1110CompiledMethod* OptimizingCompiler::JniCompile(uint32_t access_flags,
1111 uint32_t method_idx,
1112 const DexFile& dex_file,
1113 Handle<mirror::DexCache> dex_cache) const {
1114 if (GetCompilerDriver()->GetCompilerOptions().IsBootImage()) {
1115 ScopedObjectAccess soa(Thread::Current());
1116 Runtime* runtime = Runtime::Current();
1117 ArtMethod* method = runtime->GetClassLinker()->LookupResolvedMethod(
1118 method_idx, dex_cache.Get(), /* class_loader */ nullptr);
1119 if (method != nullptr && UNLIKELY(method->IsIntrinsic())) {
1120 ScopedNullHandle<mirror::ClassLoader> class_loader; // null means boot class path loader.
1121 DexCompilationUnit dex_compilation_unit(
1122 class_loader,
1123 runtime->GetClassLinker(),
1124 dex_file,
1125 /* code_item */ nullptr,
1126 /* class_def_idx */ DexFile::kDexNoIndex16,
1127 method_idx,
1128 access_flags,
1129 /* verified_method */ nullptr,
1130 dex_cache);
1131 ArenaAllocator allocator(runtime->GetArenaPool());
1132 ArenaStack arena_stack(runtime->GetArenaPool());
1133 CodeVectorAllocator code_allocator(&allocator);
1134 VariableSizedHandleScope handles(soa.Self());
1135 // Go to native so that we don't block GC during compilation.
1136 ScopedThreadSuspension sts(soa.Self(), kNative);
1137 std::unique_ptr<CodeGenerator> codegen(
1138 TryCompileIntrinsic(&allocator,
1139 &arena_stack,
1140 &code_allocator,
1141 dex_compilation_unit,
1142 method,
1143 &handles));
1144 if (codegen != nullptr) {
1145 CompiledMethod* compiled_method = Emit(&allocator,
1146 &code_allocator,
1147 codegen.get(),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001148 /* code_item_for_osr_check */ nullptr);
1149 compiled_method->MarkAsIntrinsic();
1150 return compiled_method;
1151 }
1152 }
1153 }
1154
Vladimir Marko7bdc6e72017-11-28 12:37:13 +00001155 JniCompiledMethod jni_compiled_method = ArtQuickJniCompileMethod(
1156 GetCompilerDriver(), access_flags, method_idx, dex_file);
Vladimir Markocd09e1f2017-11-24 15:02:40 +00001157 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kCompiledNativeStub);
Vladimir Marko7bdc6e72017-11-28 12:37:13 +00001158 return CompiledMethod::SwapAllocCompiledMethod(
1159 GetCompilerDriver(),
1160 jni_compiled_method.GetInstructionSet(),
1161 jni_compiled_method.GetCode(),
1162 jni_compiled_method.GetFrameSize(),
1163 jni_compiled_method.GetCoreSpillMask(),
1164 jni_compiled_method.GetFpSpillMask(),
1165 /* method_info */ ArrayRef<const uint8_t>(),
1166 /* vmap_table */ ArrayRef<const uint8_t>(),
1167 jni_compiled_method.GetCfi(),
1168 /* patches */ ArrayRef<const linker::LinkerPatch>());
Nicolas Geoffray216eaa22015-03-17 17:09:30 +00001169}
1170
Andreas Gampe53c913b2014-08-12 23:19:23 -07001171Compiler* CreateOptimizingCompiler(CompilerDriver* driver) {
1172 return new OptimizingCompiler(driver);
1173}
1174
Nicolas Geoffray335005e2015-06-25 10:01:47 +01001175bool IsCompilingWithCoreImage() {
1176 const std::string& image = Runtime::Current()->GetImageLocation();
Roland Levillain2b03a1f2017-06-06 16:09:59 +01001177 return CompilerDriver::IsCoreImageFilename(image);
Nicolas Geoffray335005e2015-06-25 10:01:47 +01001178}
1179
Nicolas Geoffrayfbdfa6d2017-02-03 10:43:13 +00001180bool EncodeArtMethodInInlineInfo(ArtMethod* method ATTRIBUTE_UNUSED) {
1181 // Note: the runtime is null only for unit testing.
1182 return Runtime::Current() == nullptr || !Runtime::Current()->IsAotCompiler();
1183}
1184
1185bool CanEncodeInlinedMethodInStackMap(const DexFile& caller_dex_file, ArtMethod* callee) {
1186 if (!Runtime::Current()->IsAotCompiler()) {
1187 // JIT can always encode methods in stack maps.
1188 return true;
1189 }
1190 if (IsSameDexFile(caller_dex_file, *callee->GetDexFile())) {
1191 return true;
1192 }
1193 // TODO(ngeoffray): Support more AOT cases for inlining:
1194 // - methods in multidex
1195 // - methods in boot image for on-device non-PIC compilation.
1196 return false;
1197}
1198
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001199bool OptimizingCompiler::JitCompile(Thread* self,
1200 jit::JitCodeCache* code_cache,
Nicolas Geoffrayb331feb2016-02-05 16:51:53 +00001201 ArtMethod* method,
Nicolas Geoffray01db5f72017-07-19 15:05:49 +01001202 bool osr,
1203 jit::JitLogger* jit_logger) {
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001204 StackHandleScope<3> hs(self);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001205 Handle<mirror::ClassLoader> class_loader(hs.NewHandle(
1206 method->GetDeclaringClass()->GetClassLoader()));
1207 Handle<mirror::DexCache> dex_cache(hs.NewHandle(method->GetDexCache()));
Nicolas Geoffray250a3782016-04-20 16:27:53 +01001208 DCHECK(method->IsCompilable());
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001209
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001210 const DexFile* dex_file = method->GetDexFile();
1211 const uint16_t class_def_idx = method->GetClassDefIndex();
1212 const DexFile::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset());
1213 const uint32_t method_idx = method->GetDexMethodIndex();
1214 const uint32_t access_flags = method->GetAccessFlags();
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001215
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001216 Runtime* runtime = Runtime::Current();
1217 ArenaAllocator allocator(runtime->GetJitArenaPool());
Vladimir Marko2196c652017-11-30 16:16:07 +00001218
1219 if (UNLIKELY(method->IsNative())) {
1220 JniCompiledMethod jni_compiled_method = ArtQuickJniCompileMethod(
1221 GetCompilerDriver(), access_flags, method_idx, *dex_file);
1222 ScopedNullHandle<mirror::ObjectArray<mirror::Object>> roots;
1223 ArenaSet<ArtMethod*, std::less<ArtMethod*>> cha_single_implementation_list(
1224 allocator.Adapter(kArenaAllocCHA));
1225 const void* code = code_cache->CommitCode(
1226 self,
1227 method,
1228 /* stack_map_data */ nullptr,
1229 /* method_info_data */ nullptr,
1230 /* roots_data */ nullptr,
1231 jni_compiled_method.GetFrameSize(),
1232 jni_compiled_method.GetCoreSpillMask(),
1233 jni_compiled_method.GetFpSpillMask(),
1234 jni_compiled_method.GetCode().data(),
1235 jni_compiled_method.GetCode().size(),
1236 /* data_size */ 0u,
1237 osr,
1238 roots,
1239 /* has_should_deoptimize_flag */ false,
1240 cha_single_implementation_list);
1241 if (code == nullptr) {
1242 return false;
1243 }
1244
1245 const CompilerOptions& compiler_options = GetCompilerDriver()->GetCompilerOptions();
David Srbeckyf4886df2017-12-11 16:06:29 +00001246 if (compiler_options.GenerateAnyDebugInfo()) {
Vladimir Marko2196c652017-11-30 16:16:07 +00001247 const auto* method_header = reinterpret_cast<const OatQuickMethodHeader*>(code);
1248 const uintptr_t code_address = reinterpret_cast<uintptr_t>(method_header->GetCode());
1249 debug::MethodDebugInfo info = {};
David Srbeckyc684f332018-01-19 17:38:06 +00001250 DCHECK(info.custom_name.empty());
Vladimir Marko2196c652017-11-30 16:16:07 +00001251 info.dex_file = dex_file;
1252 info.class_def_index = class_def_idx;
1253 info.dex_method_index = method_idx;
1254 info.access_flags = access_flags;
1255 info.code_item = code_item;
1256 info.isa = jni_compiled_method.GetInstructionSet();
1257 info.deduped = false;
1258 info.is_native_debuggable = compiler_options.GetNativeDebuggable();
1259 info.is_optimized = true;
1260 info.is_code_address_text_relative = false;
1261 info.code_address = code_address;
1262 info.code_size = jni_compiled_method.GetCode().size();
1263 info.frame_size_in_bytes = method_header->GetFrameSizeInBytes();
1264 info.code_info = nullptr;
1265 info.cfi = jni_compiled_method.GetCfi();
David Srbeckyc9e02082018-01-24 16:44:02 +00001266 GenerateJitDebugInfo(method, info);
Vladimir Marko2196c652017-11-30 16:16:07 +00001267 }
1268
1269 Runtime::Current()->GetJit()->AddMemoryUsage(method, allocator.BytesUsed());
1270 if (jit_logger != nullptr) {
1271 jit_logger->WriteLog(code, jni_compiled_method.GetCode().size(), method);
1272 }
1273 return true;
1274 }
1275
1276 ArenaStack arena_stack(runtime->GetJitArenaPool());
Vladimir Markoca6fff82017-10-03 14:49:14 +01001277 CodeVectorAllocator code_allocator(&allocator);
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001278 VariableSizedHandleScope handles(self);
1279
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001280 std::unique_ptr<CodeGenerator> codegen;
1281 {
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001282 DexCompilationUnit dex_compilation_unit(
1283 class_loader,
1284 runtime->GetClassLinker(),
1285 *dex_file,
1286 code_item,
1287 class_def_idx,
1288 method_idx,
1289 access_flags,
1290 /* verified_method */ nullptr,
1291 dex_cache);
1292
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001293 // Go to native so that we don't block GC during compilation.
1294 ScopedThreadSuspension sts(self, kNative);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001295 codegen.reset(
Vladimir Markoca6fff82017-10-03 14:49:14 +01001296 TryCompile(&allocator,
1297 &arena_stack,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001298 &code_allocator,
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001299 dex_compilation_unit,
Nicolas Geoffray3aaf9642016-06-07 14:14:37 +00001300 method,
Nicolas Geoffray22384ae2016-12-12 22:33:36 +00001301 osr,
1302 &handles));
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001303 if (codegen.get() == nullptr) {
1304 return false;
1305 }
1306 }
1307
Mathieu Chartiercbcedbf2017-03-12 22:24:50 -07001308 size_t stack_map_size = 0;
1309 size_t method_info_size = 0;
1310 codegen->ComputeStackMapAndMethodInfoSize(&stack_map_size, &method_info_size);
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001311 size_t number_of_roots = codegen->GetNumberOfJitRoots();
1312 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
1313 // We allocate an object array to ensure the JIT roots that we will collect in EmitJitRoots
1314 // will be visible by the GC between EmitLiterals and CommitCode. Once CommitCode is
1315 // executed, this array is not needed.
1316 Handle<mirror::ObjectArray<mirror::Object>> roots(
1317 hs.NewHandle(mirror::ObjectArray<mirror::Object>::Alloc(
1318 self, class_linker->GetClassRoot(ClassLinker::kObjectArrayClass), number_of_roots)));
Andreas Gampefa4333d2017-02-14 11:10:34 -08001319 if (roots == nullptr) {
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001320 // Out of memory, just clear the exception to avoid any Java exception uncaught problems.
Vladimir Markocd09e1f2017-11-24 15:02:40 +00001321 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kJitOutOfMemoryForCommit);
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001322 DCHECK(self->IsExceptionPending());
1323 self->ClearException();
1324 return false;
1325 }
1326 uint8_t* stack_map_data = nullptr;
Mathieu Chartiercbcedbf2017-03-12 22:24:50 -07001327 uint8_t* method_info_data = nullptr;
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001328 uint8_t* roots_data = nullptr;
Orion Hodsondbd05fe2017-08-10 11:41:35 +01001329 uint32_t data_size = code_cache->ReserveData(self,
1330 stack_map_size,
1331 method_info_size,
1332 number_of_roots,
1333 method,
1334 &stack_map_data,
1335 &method_info_data,
1336 &roots_data);
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001337 if (stack_map_data == nullptr || roots_data == nullptr) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +00001338 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kJitOutOfMemoryForCommit);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001339 return false;
1340 }
Mathieu Chartiercbcedbf2017-03-12 22:24:50 -07001341 codegen->BuildStackMaps(MemoryRegion(stack_map_data, stack_map_size),
1342 MemoryRegion(method_info_data, method_info_size),
Vladimir Marko92f7f3c2017-10-31 11:38:30 +00001343 code_item);
Nicolas Geoffrayf0acfe72017-01-09 20:54:52 +00001344 codegen->EmitJitRoots(code_allocator.GetData(), roots, roots_data);
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001345
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001346 const void* code = code_cache->CommitCode(
1347 self,
1348 method,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001349 stack_map_data,
Mathieu Chartiercbcedbf2017-03-12 22:24:50 -07001350 method_info_data,
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001351 roots_data,
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001352 codegen->HasEmptyFrame() ? 0 : codegen->GetFrameSize(),
1353 codegen->GetCoreSpillMask(),
1354 codegen->GetFpuSpillMask(),
1355 code_allocator.GetMemory().data(),
Vladimir Markoca1e0382018-04-11 09:58:41 +00001356 code_allocator.GetMemory().size(),
Orion Hodsondbd05fe2017-08-10 11:41:35 +01001357 data_size,
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001358 osr,
Mingyao Yang063fc772016-08-02 11:02:54 -07001359 roots,
1360 codegen->GetGraph()->HasShouldDeoptimizeFlag(),
1361 codegen->GetGraph()->GetCHASingleImplementationList());
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001362
1363 if (code == nullptr) {
Vladimir Markocd09e1f2017-11-24 15:02:40 +00001364 MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kJitOutOfMemoryForCommit);
Nicolas Geoffrayf46501c2016-11-22 13:45:36 +00001365 code_cache->ClearData(self, stack_map_data, roots_data);
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001366 return false;
1367 }
1368
David Srbecky91cc06c2016-03-07 16:13:58 +00001369 const CompilerOptions& compiler_options = GetCompilerDriver()->GetCompilerOptions();
David Srbeckyf4886df2017-12-11 16:06:29 +00001370 if (compiler_options.GenerateAnyDebugInfo()) {
David Srbecky5cc349f2015-12-18 15:04:48 +00001371 const auto* method_header = reinterpret_cast<const OatQuickMethodHeader*>(code);
1372 const uintptr_t code_address = reinterpret_cast<uintptr_t>(method_header->GetCode());
Vladimir Marko1b404a82017-09-01 13:35:26 +01001373 debug::MethodDebugInfo info = {};
David Srbeckyc684f332018-01-19 17:38:06 +00001374 DCHECK(info.custom_name.empty());
David Srbecky197160d2016-03-07 17:33:57 +00001375 info.dex_file = dex_file;
1376 info.class_def_index = class_def_idx;
1377 info.dex_method_index = method_idx;
1378 info.access_flags = access_flags;
1379 info.code_item = code_item;
1380 info.isa = codegen->GetInstructionSet();
1381 info.deduped = false;
1382 info.is_native_debuggable = compiler_options.GetNativeDebuggable();
1383 info.is_optimized = true;
1384 info.is_code_address_text_relative = false;
1385 info.code_address = code_address;
Vladimir Markoca1e0382018-04-11 09:58:41 +00001386 info.code_size = code_allocator.GetMemory().size();
David Srbecky197160d2016-03-07 17:33:57 +00001387 info.frame_size_in_bytes = method_header->GetFrameSizeInBytes();
1388 info.code_info = stack_map_size == 0 ? nullptr : stack_map_data;
1389 info.cfi = ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data());
David Srbeckyc9e02082018-01-24 16:44:02 +00001390 GenerateJitDebugInfo(method, info);
David Srbecky5cc349f2015-12-18 15:04:48 +00001391 }
1392
Vladimir Markoca6fff82017-10-03 14:49:14 +01001393 Runtime::Current()->GetJit()->AddMemoryUsage(method, allocator.BytesUsed());
Nicolas Geoffray01db5f72017-07-19 15:05:49 +01001394 if (jit_logger != nullptr) {
Vladimir Markoca1e0382018-04-11 09:58:41 +00001395 jit_logger->WriteLog(code, code_allocator.GetMemory().size(), method);
Nicolas Geoffray01db5f72017-07-19 15:05:49 +01001396 }
Nicolas Geoffraya4f81542016-03-08 16:57:48 +00001397
Vladimir Marko174b2e22017-10-12 13:34:49 +01001398 if (kArenaAllocatorCountAllocations) {
1399 codegen.reset(); // Release codegen's ScopedArenaAllocator for memory accounting.
1400 size_t total_allocated = allocator.BytesAllocated() + arena_stack.PeakBytesAllocated();
1401 if (total_allocated > kArenaAllocatorMemoryReportThreshold) {
1402 MemStats mem_stats(allocator.GetMemStats());
1403 MemStats peak_stats(arena_stack.GetPeakStats());
1404 LOG(INFO) << "Used " << total_allocated << " bytes of arena memory for compiling "
1405 << dex_file->PrettyMethod(method_idx)
1406 << "\n" << Dumpable<MemStats>(mem_stats)
1407 << "\n" << Dumpable<MemStats>(peak_stats);
1408 }
1409 }
1410
Nicolas Geoffrayd28b9692015-11-04 14:36:55 +00001411 return true;
1412}
1413
David Srbeckyc9e02082018-01-24 16:44:02 +00001414void OptimizingCompiler::GenerateJitDebugInfo(ArtMethod* method, debug::MethodDebugInfo info) {
David Srbeckyc684f332018-01-19 17:38:06 +00001415 const CompilerOptions& compiler_options = GetCompilerDriver()->GetCompilerOptions();
1416 DCHECK(compiler_options.GenerateAnyDebugInfo());
1417
1418 // If both flags are passed, generate full debug info.
1419 const bool mini_debug_info = !compiler_options.GetGenerateDebugInfo();
1420
1421 // Create entry for the single method that we just compiled.
1422 std::vector<uint8_t> elf_file = debug::MakeElfFileForJIT(
1423 GetCompilerDriver()->GetInstructionSet(),
1424 GetCompilerDriver()->GetInstructionSetFeatures(),
1425 mini_debug_info,
1426 ArrayRef<const debug::MethodDebugInfo>(&info, 1));
David Srbeckyfb3de3d2018-01-29 16:11:49 +00001427 MutexLock mu(Thread::Current(), *Locks::native_debug_interface_lock_);
David Srbecky440a9b32018-02-15 17:47:29 +00001428 AddNativeDebugInfoForJit(reinterpret_cast<const void*>(info.code_address), elf_file);
David Srbeckyc9e02082018-01-24 16:44:02 +00001429
1430 VLOG(jit)
1431 << "JIT mini-debug-info added for " << ArtMethod::PrettyMethod(method)
1432 << " size=" << PrettySize(elf_file.size())
David Srbecky440a9b32018-02-15 17:47:29 +00001433 << " total_size=" << PrettySize(GetJitNativeDebugInfoMemUsage());
David Srbeckyc684f332018-01-19 17:38:06 +00001434}
1435
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +00001436} // namespace art