Nicolas Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame] | 1 | /* |
| 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 Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 17 | #include "optimizing_compiler.h" |
| 18 | |
Nicolas Geoffray | f635e63 | 2014-05-14 09:43:38 +0100 | [diff] [blame] | 19 | #include <fstream> |
David Srbecky | 5cc349f | 2015-12-18 15:04:48 +0000 | [diff] [blame] | 20 | #include <memory> |
Andreas Gampe | a0d81af | 2016-10-27 12:04:57 -0700 | [diff] [blame] | 21 | #include <sstream> |
| 22 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 23 | #include <stdint.h> |
| 24 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 25 | #include "art_method-inl.h" |
Mathieu Chartier | b666f48 | 2015-02-18 14:33:14 -0800 | [diff] [blame] | 26 | #include "base/arena_allocator.h" |
Vladimir Marko | f9f6441 | 2015-09-02 14:05:49 +0100 | [diff] [blame] | 27 | #include "base/arena_containers.h" |
David Brazdil | 5e8b137 | 2015-01-23 14:39:08 +0000 | [diff] [blame] | 28 | #include "base/dumpable.h" |
Vladimir Marko | c90d7c7 | 2015-10-06 17:30:45 +0000 | [diff] [blame] | 29 | #include "base/macros.h" |
Andreas Gampe | a0d81af | 2016-10-27 12:04:57 -0700 | [diff] [blame] | 30 | #include "base/mutex.h" |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 31 | #include "base/scoped_arena_allocator.h" |
David Brazdil | 5e8b137 | 2015-01-23 14:39:08 +0000 | [diff] [blame] | 32 | #include "base/timing_logger.h" |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 33 | #include "builder.h" |
Vladimir Marko | b4eb1b1 | 2018-05-24 11:09:38 +0100 | [diff] [blame] | 34 | #include "class_root.h" |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 35 | #include "code_generator.h" |
Vladimir Marko | 20f8559 | 2015-03-19 10:07:02 +0000 | [diff] [blame] | 36 | #include "compiled_method.h" |
Andreas Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 37 | #include "compiler.h" |
David Srbecky | c5bfa97 | 2016-02-05 15:49:10 +0000 | [diff] [blame] | 38 | #include "debug/elf_debug_writer.h" |
David Srbecky | 4fda4eb | 2016-02-05 13:34:46 +0000 | [diff] [blame] | 39 | #include "debug/method_debug_info.h" |
David Sehr | 9e734c7 | 2018-01-04 17:56:19 -0800 | [diff] [blame] | 40 | #include "dex/dex_file_types.h" |
Calin Juravle | f1c6d9e | 2015-04-13 18:42:21 +0100 | [diff] [blame] | 41 | #include "dex/verification_results.h" |
David Srbecky | 4fda4eb | 2016-02-05 13:34:46 +0000 | [diff] [blame] | 42 | #include "dex/verified_method.h" |
Nicolas Geoffray | 9523a3e | 2015-07-17 11:51:28 +0000 | [diff] [blame] | 43 | #include "driver/compiler_driver-inl.h" |
Vladimir Marko | 20f8559 | 2015-03-19 10:07:02 +0000 | [diff] [blame] | 44 | #include "driver/compiler_options.h" |
Nicolas Geoffray | 92cf83e | 2014-03-18 17:59:20 +0000 | [diff] [blame] | 45 | #include "driver/dex_compilation_unit.h" |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 46 | #include "graph_checker.h" |
Nicolas Geoffray | f635e63 | 2014-05-14 09:43:38 +0100 | [diff] [blame] | 47 | #include "graph_visualizer.h" |
Nicolas Geoffray | e53798a | 2014-12-01 10:31:54 +0000 | [diff] [blame] | 48 | #include "inliner.h" |
David Srbecky | 5cc349f | 2015-12-18 15:04:48 +0000 | [diff] [blame] | 49 | #include "jit/debugger_interface.h" |
Nicolas Geoffray | a4f8154 | 2016-03-08 16:57:48 +0000 | [diff] [blame] | 50 | #include "jit/jit.h" |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 51 | #include "jit/jit_code_cache.h" |
Nicolas Geoffray | 01db5f7 | 2017-07-19 15:05:49 +0100 | [diff] [blame] | 52 | #include "jit/jit_logger.h" |
Nicolas Geoffray | e2dc6fa | 2014-11-17 12:55:12 +0000 | [diff] [blame] | 53 | #include "jni/quick/jni_compiler.h" |
Vladimir Marko | d8dbc8d | 2017-09-20 13:37:47 +0100 | [diff] [blame] | 54 | #include "linker/linker_patch.h" |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 55 | #include "nodes.h" |
David Srbecky | 4fda4eb | 2016-02-05 13:34:46 +0000 | [diff] [blame] | 56 | #include "oat_quick_method_header.h" |
Nicolas Geoffray | 26a25ef | 2014-09-30 13:54:09 +0100 | [diff] [blame] | 57 | #include "prepare_for_register_allocation.h" |
Calin Juravle | f1c6d9e | 2015-04-13 18:42:21 +0100 | [diff] [blame] | 58 | #include "reference_type_propagation.h" |
Matthew Gharrity | e928885 | 2016-07-14 14:08:16 -0700 | [diff] [blame] | 59 | #include "register_allocator_linear_scan.h" |
Andreas Gampe | 8cf9cb3 | 2017-07-19 09:28:38 -0700 | [diff] [blame] | 60 | #include "select_generator.h" |
Nicolas Geoffray | 3159674 | 2014-11-24 15:28:45 +0000 | [diff] [blame] | 61 | #include "ssa_builder.h" |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 62 | #include "ssa_liveness_analysis.h" |
David Srbecky | 4fda4eb | 2016-02-05 13:34:46 +0000 | [diff] [blame] | 63 | #include "ssa_phi_elimination.h" |
David Srbecky | afc97bc | 2018-07-05 08:14:35 +0000 | [diff] [blame] | 64 | #include "stack_map_stream.h" |
David Srbecky | c6b4dd8 | 2015-04-07 20:32:43 +0100 | [diff] [blame] | 65 | #include "utils/assembler.h" |
Andreas Gampe | 6d7abbd | 2017-04-24 13:19:09 -0700 | [diff] [blame] | 66 | #include "verifier/verifier_compiler_binding.h" |
Nicolas Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame] | 67 | |
| 68 | namespace art { |
| 69 | |
Vladimir Marko | 3a40bf2 | 2016-03-22 16:26:33 +0000 | [diff] [blame] | 70 | static constexpr size_t kArenaAllocatorMemoryReportThreshold = 8 * MB; |
| 71 | |
Wojciech Staszkiewicz | 5319d3c | 2016-08-01 17:48:59 -0700 | [diff] [blame] | 72 | static constexpr const char* kPassNameSeparator = "$"; |
| 73 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 74 | /** |
| 75 | * Used by the code generator, to allocate the code in a vector. |
| 76 | */ |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 77 | class CodeVectorAllocator final : public CodeAllocator { |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 78 | public: |
Vladimir Marko | e764d2e | 2017-10-05 14:35:55 +0100 | [diff] [blame] | 79 | explicit CodeVectorAllocator(ArenaAllocator* allocator) |
Vladimir Marko | ca1e038 | 2018-04-11 09:58:41 +0000 | [diff] [blame] | 80 | : memory_(allocator->Adapter(kArenaAllocCodeBuffer)) {} |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 81 | |
Andreas Gampe | fa6a1b0 | 2018-09-07 08:11:55 -0700 | [diff] [blame] | 82 | uint8_t* Allocate(size_t size) override { |
Nicolas Geoffray | 92cf83e | 2014-03-18 17:59:20 +0000 | [diff] [blame] | 83 | memory_.resize(size); |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 84 | return &memory_[0]; |
| 85 | } |
| 86 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 87 | ArrayRef<const uint8_t> GetMemory() const override { return ArrayRef<const uint8_t>(memory_); } |
Nicolas Geoffray | 132d836 | 2016-11-16 09:19:42 +0000 | [diff] [blame] | 88 | uint8_t* GetData() { return memory_.data(); } |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 89 | |
| 90 | private: |
Vladimir Marko | f9f6441 | 2015-09-02 14:05:49 +0100 | [diff] [blame] | 91 | ArenaVector<uint8_t> memory_; |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 92 | |
| 93 | DISALLOW_COPY_AND_ASSIGN(CodeVectorAllocator); |
| 94 | }; |
| 95 | |
Nicolas Geoffray | f635e63 | 2014-05-14 09:43:38 +0100 | [diff] [blame] | 96 | /** |
Nicolas Geoffray | f635e63 | 2014-05-14 09:43:38 +0100 | [diff] [blame] | 97 | * Filter to apply to the visualizer. Methods whose name contain that filter will |
David Brazdil | ee690a3 | 2014-12-01 17:04:16 +0000 | [diff] [blame] | 98 | * be dumped. |
Nicolas Geoffray | f635e63 | 2014-05-14 09:43:38 +0100 | [diff] [blame] | 99 | */ |
Andreas Gampe | 53fcd0f | 2015-07-22 12:10:13 -0700 | [diff] [blame] | 100 | static constexpr const char kStringFilter[] = ""; |
Nicolas Geoffray | f635e63 | 2014-05-14 09:43:38 +0100 | [diff] [blame] | 101 | |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 102 | class PassScope; |
David Brazdil | 809658e | 2015-02-05 11:34:02 +0000 | [diff] [blame] | 103 | |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 104 | class PassObserver : public ValueObject { |
David Brazdil | 5e8b137 | 2015-01-23 14:39:08 +0000 | [diff] [blame] | 105 | public: |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 106 | PassObserver(HGraph* graph, |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 107 | CodeGenerator* codegen, |
| 108 | std::ostream* visualizer_output, |
Andreas Gampe | a0d81af | 2016-10-27 12:04:57 -0700 | [diff] [blame] | 109 | CompilerDriver* compiler_driver, |
| 110 | Mutex& dump_mutex) |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 111 | : graph_(graph), |
Aart Bik | a8360cd | 2018-05-02 16:07:51 -0700 | [diff] [blame] | 112 | last_seen_graph_size_(0), |
Vladimir Marko | 0d1caa5 | 2015-11-20 13:02:22 +0000 | [diff] [blame] | 113 | cached_method_name_(), |
Vladimir Marko | 2da52b0 | 2018-05-08 16:31:34 +0100 | [diff] [blame] | 114 | timing_logger_enabled_(compiler_driver->GetCompilerOptions().GetDumpPassTimings()), |
Vladimir Marko | 0d1caa5 | 2015-11-20 13:02:22 +0000 | [diff] [blame] | 115 | timing_logger_(timing_logger_enabled_ ? GetMethodName() : "", true, true), |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 116 | disasm_info_(graph->GetAllocator()), |
Andreas Gampe | a0d81af | 2016-10-27 12:04:57 -0700 | [diff] [blame] | 117 | visualizer_oss_(), |
| 118 | visualizer_output_(visualizer_output), |
Nicolas Geoffray | c903b6a | 2016-01-18 12:56:06 +0000 | [diff] [blame] | 119 | visualizer_enabled_(!compiler_driver->GetCompilerOptions().GetDumpCfgFileName().empty()), |
Andreas Gampe | a0d81af | 2016-10-27 12:04:57 -0700 | [diff] [blame] | 120 | visualizer_(&visualizer_oss_, graph, *codegen), |
| 121 | visualizer_dump_mutex_(dump_mutex), |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 122 | graph_in_bad_state_(false) { |
Andreas Gampe | 53fcd0f | 2015-07-22 12:10:13 -0700 | [diff] [blame] | 123 | if (timing_logger_enabled_ || visualizer_enabled_) { |
Vladimir Marko | 0d1caa5 | 2015-11-20 13:02:22 +0000 | [diff] [blame] | 124 | if (!IsVerboseMethod(compiler_driver, GetMethodName())) { |
Andreas Gampe | 53fcd0f | 2015-07-22 12:10:13 -0700 | [diff] [blame] | 125 | timing_logger_enabled_ = visualizer_enabled_ = false; |
| 126 | } |
| 127 | if (visualizer_enabled_) { |
Vladimir Marko | 0d1caa5 | 2015-11-20 13:02:22 +0000 | [diff] [blame] | 128 | visualizer_.PrintHeader(GetMethodName()); |
Andreas Gampe | 53fcd0f | 2015-07-22 12:10:13 -0700 | [diff] [blame] | 129 | codegen->SetDisassemblyInformation(&disasm_info_); |
| 130 | } |
David Brazdil | 62e074f | 2015-04-07 18:09:37 +0100 | [diff] [blame] | 131 | } |
David Brazdil | 5e8b137 | 2015-01-23 14:39:08 +0000 | [diff] [blame] | 132 | } |
| 133 | |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 134 | ~PassObserver() { |
David Brazdil | 5e8b137 | 2015-01-23 14:39:08 +0000 | [diff] [blame] | 135 | if (timing_logger_enabled_) { |
Vladimir Marko | 0d1caa5 | 2015-11-20 13:02:22 +0000 | [diff] [blame] | 136 | LOG(INFO) << "TIMINGS " << GetMethodName(); |
David Brazdil | 5e8b137 | 2015-01-23 14:39:08 +0000 | [diff] [blame] | 137 | LOG(INFO) << Dumpable<TimingLogger>(timing_logger_); |
| 138 | } |
Nicolas Geoffray | 00c141a | 2016-11-10 15:19:15 +0000 | [diff] [blame] | 139 | DCHECK(visualizer_oss_.str().empty()); |
David Brazdil | 5e8b137 | 2015-01-23 14:39:08 +0000 | [diff] [blame] | 140 | } |
| 141 | |
Nicolas Geoffray | 00c141a | 2016-11-10 15:19:15 +0000 | [diff] [blame] | 142 | void DumpDisassembly() REQUIRES(!visualizer_dump_mutex_) { |
Alexandre Rames | eb7b739 | 2015-06-19 14:47:01 +0100 | [diff] [blame] | 143 | if (visualizer_enabled_) { |
| 144 | visualizer_.DumpGraphWithDisassembly(); |
Nicolas Geoffray | 00c141a | 2016-11-10 15:19:15 +0000 | [diff] [blame] | 145 | FlushVisualizer(); |
Alexandre Rames | eb7b739 | 2015-06-19 14:47:01 +0100 | [diff] [blame] | 146 | } |
| 147 | } |
| 148 | |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 149 | void SetGraphInBadState() { graph_in_bad_state_ = true; } |
| 150 | |
Vladimir Marko | 0d1caa5 | 2015-11-20 13:02:22 +0000 | [diff] [blame] | 151 | const char* GetMethodName() { |
| 152 | // PrettyMethod() is expensive, so we delay calling it until we actually have to. |
| 153 | if (cached_method_name_.empty()) { |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 154 | cached_method_name_ = graph_->GetDexFile().PrettyMethod(graph_->GetMethodIdx()); |
Vladimir Marko | 0d1caa5 | 2015-11-20 13:02:22 +0000 | [diff] [blame] | 155 | } |
| 156 | return cached_method_name_.c_str(); |
| 157 | } |
| 158 | |
David Brazdil | 5e8b137 | 2015-01-23 14:39:08 +0000 | [diff] [blame] | 159 | private: |
Nicolas Geoffray | 00c141a | 2016-11-10 15:19:15 +0000 | [diff] [blame] | 160 | void StartPass(const char* pass_name) REQUIRES(!visualizer_dump_mutex_) { |
Wojciech Staszkiewicz | e706070 | 2016-08-16 17:31:19 -0700 | [diff] [blame] | 161 | VLOG(compiler) << "Starting pass: " << pass_name; |
David Brazdil | 809658e | 2015-02-05 11:34:02 +0000 | [diff] [blame] | 162 | // Dump graph first, then start timer. |
| 163 | if (visualizer_enabled_) { |
David Brazdil | ffee3d3 | 2015-07-06 11:48:53 +0100 | [diff] [blame] | 164 | visualizer_.DumpGraph(pass_name, /* is_after_pass */ false, graph_in_bad_state_); |
Nicolas Geoffray | 00c141a | 2016-11-10 15:19:15 +0000 | [diff] [blame] | 165 | FlushVisualizer(); |
David Brazdil | 809658e | 2015-02-05 11:34:02 +0000 | [diff] [blame] | 166 | } |
| 167 | if (timing_logger_enabled_) { |
| 168 | timing_logger_.StartTiming(pass_name); |
| 169 | } |
| 170 | } |
| 171 | |
Nicolas Geoffray | 00c141a | 2016-11-10 15:19:15 +0000 | [diff] [blame] | 172 | void FlushVisualizer() REQUIRES(!visualizer_dump_mutex_) { |
| 173 | MutexLock mu(Thread::Current(), visualizer_dump_mutex_); |
| 174 | *visualizer_output_ << visualizer_oss_.str(); |
| 175 | visualizer_output_->flush(); |
| 176 | visualizer_oss_.str(""); |
| 177 | visualizer_oss_.clear(); |
| 178 | } |
| 179 | |
Aart Bik | a8360cd | 2018-05-02 16:07:51 -0700 | [diff] [blame] | 180 | void EndPass(const char* pass_name, bool pass_change) REQUIRES(!visualizer_dump_mutex_) { |
David Brazdil | 809658e | 2015-02-05 11:34:02 +0000 | [diff] [blame] | 181 | // Pause timer first, then dump graph. |
| 182 | if (timing_logger_enabled_) { |
| 183 | timing_logger_.EndTiming(); |
| 184 | } |
| 185 | if (visualizer_enabled_) { |
David Brazdil | ffee3d3 | 2015-07-06 11:48:53 +0100 | [diff] [blame] | 186 | visualizer_.DumpGraph(pass_name, /* is_after_pass */ true, graph_in_bad_state_); |
Nicolas Geoffray | 00c141a | 2016-11-10 15:19:15 +0000 | [diff] [blame] | 187 | FlushVisualizer(); |
David Brazdil | 809658e | 2015-02-05 11:34:02 +0000 | [diff] [blame] | 188 | } |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 189 | |
| 190 | // Validate the HGraph if running in debug mode. |
| 191 | if (kIsDebugBuild) { |
| 192 | if (!graph_in_bad_state_) { |
David Brazdil | badd826 | 2016-02-02 16:28:56 +0000 | [diff] [blame] | 193 | GraphChecker checker(graph_); |
Aart Bik | a8360cd | 2018-05-02 16:07:51 -0700 | [diff] [blame] | 194 | last_seen_graph_size_ = checker.Run(pass_change, last_seen_graph_size_); |
David Brazdil | badd826 | 2016-02-02 16:28:56 +0000 | [diff] [blame] | 195 | if (!checker.IsValid()) { |
| 196 | LOG(FATAL) << "Error after " << pass_name << ": " << Dumpable<GraphChecker>(checker); |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 197 | } |
| 198 | } |
| 199 | } |
David Brazdil | 809658e | 2015-02-05 11:34:02 +0000 | [diff] [blame] | 200 | } |
| 201 | |
Andreas Gampe | 53fcd0f | 2015-07-22 12:10:13 -0700 | [diff] [blame] | 202 | static bool IsVerboseMethod(CompilerDriver* compiler_driver, const char* method_name) { |
| 203 | // Test an exact match to --verbose-methods. If verbose-methods is set, this overrides an |
| 204 | // empty kStringFilter matching all methods. |
| 205 | if (compiler_driver->GetCompilerOptions().HasVerboseMethods()) { |
| 206 | return compiler_driver->GetCompilerOptions().IsVerboseMethod(method_name); |
| 207 | } |
| 208 | |
| 209 | // Test the kStringFilter sub-string. constexpr helper variable to silence unreachable-code |
| 210 | // warning when the string is empty. |
| 211 | constexpr bool kStringFilterEmpty = arraysize(kStringFilter) <= 1; |
| 212 | if (kStringFilterEmpty || strstr(method_name, kStringFilter) != nullptr) { |
| 213 | return true; |
| 214 | } |
| 215 | |
| 216 | return false; |
| 217 | } |
| 218 | |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 219 | HGraph* const graph_; |
Aart Bik | a8360cd | 2018-05-02 16:07:51 -0700 | [diff] [blame] | 220 | size_t last_seen_graph_size_; |
Vladimir Marko | 0d1caa5 | 2015-11-20 13:02:22 +0000 | [diff] [blame] | 221 | |
| 222 | std::string cached_method_name_; |
David Brazdil | 5e8b137 | 2015-01-23 14:39:08 +0000 | [diff] [blame] | 223 | |
| 224 | bool timing_logger_enabled_; |
David Brazdil | 5e8b137 | 2015-01-23 14:39:08 +0000 | [diff] [blame] | 225 | TimingLogger timing_logger_; |
| 226 | |
Alexandre Rames | eb7b739 | 2015-06-19 14:47:01 +0100 | [diff] [blame] | 227 | DisassemblyInformation disasm_info_; |
| 228 | |
Andreas Gampe | a0d81af | 2016-10-27 12:04:57 -0700 | [diff] [blame] | 229 | std::ostringstream visualizer_oss_; |
| 230 | std::ostream* visualizer_output_; |
David Brazdil | 5e8b137 | 2015-01-23 14:39:08 +0000 | [diff] [blame] | 231 | bool visualizer_enabled_; |
| 232 | HGraphVisualizer visualizer_; |
Andreas Gampe | a0d81af | 2016-10-27 12:04:57 -0700 | [diff] [blame] | 233 | Mutex& visualizer_dump_mutex_; |
David Brazdil | 5e8b137 | 2015-01-23 14:39:08 +0000 | [diff] [blame] | 234 | |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 235 | // Flag to be set by the compiler if the pass failed and the graph is not |
| 236 | // expected to validate. |
| 237 | bool graph_in_bad_state_; |
David Brazdil | 809658e | 2015-02-05 11:34:02 +0000 | [diff] [blame] | 238 | |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 239 | friend PassScope; |
| 240 | |
| 241 | DISALLOW_COPY_AND_ASSIGN(PassObserver); |
David Brazdil | 5e8b137 | 2015-01-23 14:39:08 +0000 | [diff] [blame] | 242 | }; |
| 243 | |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 244 | class PassScope : public ValueObject { |
David Brazdil | 809658e | 2015-02-05 11:34:02 +0000 | [diff] [blame] | 245 | public: |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 246 | PassScope(const char *pass_name, PassObserver* pass_observer) |
David Brazdil | 809658e | 2015-02-05 11:34:02 +0000 | [diff] [blame] | 247 | : pass_name_(pass_name), |
Aart Bik | a8360cd | 2018-05-02 16:07:51 -0700 | [diff] [blame] | 248 | pass_change_(true), // assume change |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 249 | pass_observer_(pass_observer) { |
| 250 | pass_observer_->StartPass(pass_name_); |
David Brazdil | 809658e | 2015-02-05 11:34:02 +0000 | [diff] [blame] | 251 | } |
| 252 | |
Aart Bik | a8360cd | 2018-05-02 16:07:51 -0700 | [diff] [blame] | 253 | void SetPassNotChanged() { |
| 254 | pass_change_ = false; |
| 255 | } |
| 256 | |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 257 | ~PassScope() { |
Aart Bik | a8360cd | 2018-05-02 16:07:51 -0700 | [diff] [blame] | 258 | pass_observer_->EndPass(pass_name_, pass_change_); |
David Brazdil | 809658e | 2015-02-05 11:34:02 +0000 | [diff] [blame] | 259 | } |
| 260 | |
| 261 | private: |
| 262 | const char* const pass_name_; |
Aart Bik | a8360cd | 2018-05-02 16:07:51 -0700 | [diff] [blame] | 263 | bool pass_change_; |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 264 | PassObserver* const pass_observer_; |
David Brazdil | 809658e | 2015-02-05 11:34:02 +0000 | [diff] [blame] | 265 | }; |
| 266 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 267 | class OptimizingCompiler final : public Compiler { |
Andreas Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 268 | public: |
| 269 | explicit OptimizingCompiler(CompilerDriver* driver); |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 270 | ~OptimizingCompiler() override; |
Andreas Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 271 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 272 | bool CanCompileMethod(uint32_t method_idx, const DexFile& dex_file) const override; |
Andreas Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 273 | |
| 274 | CompiledMethod* Compile(const DexFile::CodeItem* code_item, |
| 275 | uint32_t access_flags, |
| 276 | InvokeType invoke_type, |
| 277 | uint16_t class_def_idx, |
| 278 | uint32_t method_idx, |
Vladimir Marko | 8d6768d | 2017-03-14 10:13:21 +0000 | [diff] [blame] | 279 | Handle<mirror::ClassLoader> class_loader, |
Mathieu Chartier | 736b560 | 2015-09-02 14:54:11 -0700 | [diff] [blame] | 280 | const DexFile& dex_file, |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 281 | Handle<mirror::DexCache> dex_cache) const override; |
Andreas Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 282 | |
Andreas Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 283 | CompiledMethod* JniCompile(uint32_t access_flags, |
| 284 | uint32_t method_idx, |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 285 | const DexFile& dex_file, |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 286 | Handle<mirror::DexCache> dex_cache) const override; |
Andreas Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 287 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 288 | uintptr_t GetEntryPointOf(ArtMethod* method) const override |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 289 | REQUIRES_SHARED(Locks::mutator_lock_) { |
Nicolas Geoffray | 216eaa2 | 2015-03-17 17:09:30 +0000 | [diff] [blame] | 290 | return reinterpret_cast<uintptr_t>(method->GetEntryPointFromQuickCompiledCodePtrSize( |
Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 291 | InstructionSetPointerSize(GetCompilerDriver()->GetCompilerOptions().GetInstructionSet()))); |
Nicolas Geoffray | 216eaa2 | 2015-03-17 17:09:30 +0000 | [diff] [blame] | 292 | } |
Andreas Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 293 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 294 | void Init() override; |
Andreas Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 295 | |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 296 | void UnInit() const override; |
Andreas Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 297 | |
Nicolas Geoffray | 01db5f7 | 2017-07-19 15:05:49 +0100 | [diff] [blame] | 298 | bool JitCompile(Thread* self, |
| 299 | jit::JitCodeCache* code_cache, |
| 300 | ArtMethod* method, |
Nicolas Geoffray | acc56ac | 2018-10-09 08:45:24 +0100 | [diff] [blame] | 301 | bool baseline, |
Nicolas Geoffray | 01db5f7 | 2017-07-19 15:05:49 +0100 | [diff] [blame] | 302 | bool osr, |
| 303 | jit::JitLogger* jit_logger) |
Roland Levillain | bbc6e7e | 2018-08-24 16:58:47 +0100 | [diff] [blame] | 304 | override |
Andreas Gampe | bdf7f1c | 2016-08-30 16:38:47 -0700 | [diff] [blame] | 305 | REQUIRES_SHARED(Locks::mutator_lock_); |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 306 | |
Wojciech Staszkiewicz | 5319d3c | 2016-08-01 17:48:59 -0700 | [diff] [blame] | 307 | private: |
Aart Bik | 2477320 | 2018-04-26 10:28:51 -0700 | [diff] [blame] | 308 | bool RunOptimizations(HGraph* graph, |
Wojciech Staszkiewicz | 5319d3c | 2016-08-01 17:48:59 -0700 | [diff] [blame] | 309 | CodeGenerator* codegen, |
Aart Bik | 2ca10eb | 2017-11-15 15:17:53 -0800 | [diff] [blame] | 310 | const DexCompilationUnit& dex_compilation_unit, |
| 311 | PassObserver* pass_observer, |
| 312 | VariableSizedHandleScope* handles, |
| 313 | const OptimizationDef definitions[], |
| 314 | size_t length) const { |
| 315 | // Convert definitions to optimization passes. |
| 316 | ArenaVector<HOptimization*> optimizations = ConstructOptimizations( |
| 317 | definitions, |
| 318 | length, |
| 319 | graph->GetAllocator(), |
| 320 | graph, |
| 321 | compilation_stats_.get(), |
| 322 | codegen, |
| 323 | GetCompilerDriver(), |
| 324 | dex_compilation_unit, |
| 325 | handles); |
| 326 | DCHECK_EQ(length, optimizations.size()); |
Aart Bik | 2e14868 | 2018-04-18 16:11:12 -0700 | [diff] [blame] | 327 | // Run the optimization passes one by one. Any "depends_on" pass refers back to |
| 328 | // the most recent occurrence of that pass, skipped or executed. |
| 329 | std::bitset<static_cast<size_t>(OptimizationPass::kLast) + 1u> pass_changes; |
| 330 | pass_changes[static_cast<size_t>(OptimizationPass::kNone)] = true; |
Aart Bik | 2477320 | 2018-04-26 10:28:51 -0700 | [diff] [blame] | 331 | bool change = false; |
Aart Bik | 2ca10eb | 2017-11-15 15:17:53 -0800 | [diff] [blame] | 332 | for (size_t i = 0; i < length; ++i) { |
Aart Bik | 2e14868 | 2018-04-18 16:11:12 -0700 | [diff] [blame] | 333 | if (pass_changes[static_cast<size_t>(definitions[i].depends_on)]) { |
| 334 | // Execute the pass and record whether it changed anything. |
| 335 | PassScope scope(optimizations[i]->GetPassName(), pass_observer); |
| 336 | bool pass_change = optimizations[i]->Run(); |
| 337 | pass_changes[static_cast<size_t>(definitions[i].pass)] = pass_change; |
Aart Bik | a8360cd | 2018-05-02 16:07:51 -0700 | [diff] [blame] | 338 | if (pass_change) { |
| 339 | change = true; |
| 340 | } else { |
| 341 | scope.SetPassNotChanged(); |
| 342 | } |
Aart Bik | 2e14868 | 2018-04-18 16:11:12 -0700 | [diff] [blame] | 343 | } else { |
| 344 | // Skip the pass and record that nothing changed. |
| 345 | pass_changes[static_cast<size_t>(definitions[i].pass)] = false; |
| 346 | } |
Aart Bik | 2ca10eb | 2017-11-15 15:17:53 -0800 | [diff] [blame] | 347 | } |
Aart Bik | 2477320 | 2018-04-26 10:28:51 -0700 | [diff] [blame] | 348 | return change; |
Aart Bik | 2ca10eb | 2017-11-15 15:17:53 -0800 | [diff] [blame] | 349 | } |
| 350 | |
Aart Bik | 2477320 | 2018-04-26 10:28:51 -0700 | [diff] [blame] | 351 | template <size_t length> bool RunOptimizations( |
Aart Bik | 2ca10eb | 2017-11-15 15:17:53 -0800 | [diff] [blame] | 352 | HGraph* graph, |
| 353 | CodeGenerator* codegen, |
| 354 | const DexCompilationUnit& dex_compilation_unit, |
| 355 | PassObserver* pass_observer, |
| 356 | VariableSizedHandleScope* handles, |
| 357 | const OptimizationDef (&definitions)[length]) const { |
Aart Bik | 2477320 | 2018-04-26 10:28:51 -0700 | [diff] [blame] | 358 | return RunOptimizations( |
Aart Bik | 2ca10eb | 2017-11-15 15:17:53 -0800 | [diff] [blame] | 359 | graph, codegen, dex_compilation_unit, pass_observer, handles, definitions, length); |
| 360 | } |
| 361 | |
| 362 | void RunOptimizations(HGraph* graph, |
| 363 | CodeGenerator* codegen, |
Wojciech Staszkiewicz | 5319d3c | 2016-08-01 17:48:59 -0700 | [diff] [blame] | 364 | const DexCompilationUnit& dex_compilation_unit, |
| 365 | PassObserver* pass_observer, |
Mathieu Chartier | e8a3c57 | 2016-10-11 16:52:17 -0700 | [diff] [blame] | 366 | VariableSizedHandleScope* handles) const; |
Wojciech Staszkiewicz | f5fb090 | 2016-07-22 13:33:11 -0700 | [diff] [blame] | 367 | |
Andreas Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 368 | private: |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 369 | // Create a 'CompiledMethod' for an optimized graph. |
Vladimir Marko | e764d2e | 2017-10-05 14:35:55 +0100 | [diff] [blame] | 370 | CompiledMethod* Emit(ArenaAllocator* allocator, |
David Brazdil | 58282f4 | 2016-01-14 12:45:10 +0000 | [diff] [blame] | 371 | CodeVectorAllocator* code_allocator, |
| 372 | CodeGenerator* codegen, |
Nicolas Geoffray | b331feb | 2016-02-05 16:51:53 +0000 | [diff] [blame] | 373 | const DexFile::CodeItem* item) const; |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 374 | |
| 375 | // Try compiling a method and return the code generator used for |
| 376 | // compiling it. |
| 377 | // This method: |
| 378 | // 1) Builds the graph. Returns null if it failed to build it. |
David Brazdil | 58282f4 | 2016-01-14 12:45:10 +0000 | [diff] [blame] | 379 | // 2) Transforms the graph to SSA. Returns null if it failed. |
| 380 | // 3) Runs optimizations on the graph, including register allocator. |
| 381 | // 4) Generates code with the `code_allocator` provided. |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 382 | CodeGenerator* TryCompile(ArenaAllocator* allocator, |
| 383 | ArenaStack* arena_stack, |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 384 | CodeVectorAllocator* code_allocator, |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 385 | const DexCompilationUnit& dex_compilation_unit, |
Nicolas Geoffray | 3aaf964 | 2016-06-07 14:14:37 +0000 | [diff] [blame] | 386 | ArtMethod* method, |
Nicolas Geoffray | acc56ac | 2018-10-09 08:45:24 +0100 | [diff] [blame] | 387 | bool baseline, |
Nicolas Geoffray | 22384ae | 2016-12-12 22:33:36 +0000 | [diff] [blame] | 388 | bool osr, |
| 389 | VariableSizedHandleScope* handles) const; |
Nicolas Geoffray | 12df9eb | 2015-01-09 14:53:50 +0000 | [diff] [blame] | 390 | |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 391 | CodeGenerator* TryCompileIntrinsic(ArenaAllocator* allocator, |
| 392 | ArenaStack* arena_stack, |
| 393 | CodeVectorAllocator* code_allocator, |
| 394 | const DexCompilationUnit& dex_compilation_unit, |
| 395 | ArtMethod* method, |
| 396 | VariableSizedHandleScope* handles) const; |
| 397 | |
Aart Bik | 2477320 | 2018-04-26 10:28:51 -0700 | [diff] [blame] | 398 | bool RunArchOptimizations(HGraph* graph, |
Wojciech Staszkiewicz | f5fb090 | 2016-07-22 13:33:11 -0700 | [diff] [blame] | 399 | CodeGenerator* codegen, |
Aart Bik | 2ca10eb | 2017-11-15 15:17:53 -0800 | [diff] [blame] | 400 | const DexCompilationUnit& dex_compilation_unit, |
| 401 | PassObserver* pass_observer, |
| 402 | VariableSizedHandleScope* handles) const; |
Wojciech Staszkiewicz | f5fb090 | 2016-07-22 13:33:11 -0700 | [diff] [blame] | 403 | |
Nicolas Geoffray | acc56ac | 2018-10-09 08:45:24 +0100 | [diff] [blame] | 404 | bool RunBaselineOptimizations(HGraph* graph, |
| 405 | CodeGenerator* codegen, |
| 406 | const DexCompilationUnit& dex_compilation_unit, |
| 407 | PassObserver* pass_observer, |
| 408 | VariableSizedHandleScope* handles) const; |
| 409 | |
Stephen Hines | 48ba197 | 2018-09-24 13:35:54 -0700 | [diff] [blame] | 410 | void GenerateJitDebugInfo(ArtMethod* method, |
| 411 | const debug::MethodDebugInfo& method_debug_info) |
David Srbecky | c9e0208 | 2018-01-24 16:44:02 +0000 | [diff] [blame] | 412 | REQUIRES_SHARED(Locks::mutator_lock_); |
David Srbecky | c684f33 | 2018-01-19 17:38:06 +0000 | [diff] [blame] | 413 | |
Calin Juravle | 2be39e0 | 2015-04-21 13:56:34 +0100 | [diff] [blame] | 414 | std::unique_ptr<OptimizingCompilerStats> compilation_stats_; |
Nicolas Geoffray | 88157ef | 2014-09-12 10:29:53 +0100 | [diff] [blame] | 415 | |
Andreas Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 416 | std::unique_ptr<std::ostream> visualizer_output_; |
| 417 | |
Andreas Gampe | a0d81af | 2016-10-27 12:04:57 -0700 | [diff] [blame] | 418 | mutable Mutex dump_mutex_; // To synchronize visualizer writing. |
| 419 | |
Andreas Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 420 | DISALLOW_COPY_AND_ASSIGN(OptimizingCompiler); |
| 421 | }; |
| 422 | |
Nicolas Geoffray | 88157ef | 2014-09-12 10:29:53 +0100 | [diff] [blame] | 423 | static const int kMaximumCompilationTimeBeforeWarning = 100; /* ms */ |
| 424 | |
| 425 | OptimizingCompiler::OptimizingCompiler(CompilerDriver* driver) |
Andreas Gampe | a0d81af | 2016-10-27 12:04:57 -0700 | [diff] [blame] | 426 | : Compiler(driver, kMaximumCompilationTimeBeforeWarning), |
| 427 | dump_mutex_("Visualizer dump lock") {} |
David Brazdil | ee690a3 | 2014-12-01 17:04:16 +0000 | [diff] [blame] | 428 | |
| 429 | void OptimizingCompiler::Init() { |
| 430 | // Enable C1visualizer output. Must be done in Init() because the compiler |
| 431 | // driver is not fully initialized when passed to the compiler's constructor. |
| 432 | CompilerDriver* driver = GetCompilerDriver(); |
Nicolas Geoffray | c903b6a | 2016-01-18 12:56:06 +0000 | [diff] [blame] | 433 | const std::string cfg_file_name = driver->GetCompilerOptions().GetDumpCfgFileName(); |
David Brazdil | 866c031 | 2015-01-13 21:21:31 +0000 | [diff] [blame] | 434 | if (!cfg_file_name.empty()) { |
Calin Juravle | 87000a9 | 2015-08-24 15:34:44 +0100 | [diff] [blame] | 435 | std::ios_base::openmode cfg_file_mode = |
Nicolas Geoffray | c903b6a | 2016-01-18 12:56:06 +0000 | [diff] [blame] | 436 | driver->GetCompilerOptions().GetDumpCfgAppend() ? std::ofstream::app : std::ofstream::out; |
Calin Juravle | 87000a9 | 2015-08-24 15:34:44 +0100 | [diff] [blame] | 437 | visualizer_output_.reset(new std::ofstream(cfg_file_name, cfg_file_mode)); |
Nicolas Geoffray | f635e63 | 2014-05-14 09:43:38 +0100 | [diff] [blame] | 438 | } |
Nicolas Geoffray | 2d8801f | 2017-11-28 15:50:07 +0000 | [diff] [blame] | 439 | if (driver->GetCompilerOptions().GetDumpStats()) { |
Calin Juravle | 2be39e0 | 2015-04-21 13:56:34 +0100 | [diff] [blame] | 440 | compilation_stats_.reset(new OptimizingCompilerStats()); |
| 441 | } |
Nicolas Geoffray | f635e63 | 2014-05-14 09:43:38 +0100 | [diff] [blame] | 442 | } |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 443 | |
Nicolas Geoffray | 216eaa2 | 2015-03-17 17:09:30 +0000 | [diff] [blame] | 444 | void OptimizingCompiler::UnInit() const { |
Nicolas Geoffray | 216eaa2 | 2015-03-17 17:09:30 +0000 | [diff] [blame] | 445 | } |
| 446 | |
Nicolas Geoffray | 88157ef | 2014-09-12 10:29:53 +0100 | [diff] [blame] | 447 | OptimizingCompiler::~OptimizingCompiler() { |
Calin Juravle | 2be39e0 | 2015-04-21 13:56:34 +0100 | [diff] [blame] | 448 | if (compilation_stats_.get() != nullptr) { |
| 449 | compilation_stats_->Log(); |
| 450 | } |
Nicolas Geoffray | 88157ef | 2014-09-12 10:29:53 +0100 | [diff] [blame] | 451 | } |
| 452 | |
Nicolas Geoffray | e2dc6fa | 2014-11-17 12:55:12 +0000 | [diff] [blame] | 453 | bool OptimizingCompiler::CanCompileMethod(uint32_t method_idx ATTRIBUTE_UNUSED, |
Vladimir Marko | df73984 | 2016-03-23 16:59:07 +0000 | [diff] [blame] | 454 | const DexFile& dex_file ATTRIBUTE_UNUSED) const { |
Nicolas Geoffray | e2dc6fa | 2014-11-17 12:55:12 +0000 | [diff] [blame] | 455 | return true; |
Andreas Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 456 | } |
| 457 | |
Nicolas Geoffray | 1ba0f59 | 2014-10-27 15:14:55 +0000 | [diff] [blame] | 458 | static bool IsInstructionSetSupported(InstructionSet instruction_set) { |
Vladimir Marko | 33bff25 | 2017-11-01 14:35:42 +0000 | [diff] [blame] | 459 | return instruction_set == InstructionSet::kArm |
| 460 | || instruction_set == InstructionSet::kArm64 |
| 461 | || instruction_set == InstructionSet::kThumb2 |
| 462 | || instruction_set == InstructionSet::kMips |
| 463 | || instruction_set == InstructionSet::kMips64 |
| 464 | || instruction_set == InstructionSet::kX86 |
| 465 | || instruction_set == InstructionSet::kX86_64; |
Nicolas Geoffray | 1ba0f59 | 2014-10-27 15:14:55 +0000 | [diff] [blame] | 466 | } |
| 467 | |
Nicolas Geoffray | acc56ac | 2018-10-09 08:45:24 +0100 | [diff] [blame] | 468 | bool OptimizingCompiler::RunBaselineOptimizations(HGraph* graph, |
| 469 | CodeGenerator* codegen, |
| 470 | const DexCompilationUnit& dex_compilation_unit, |
| 471 | PassObserver* pass_observer, |
| 472 | VariableSizedHandleScope* handles) const { |
| 473 | switch (codegen->GetCompilerOptions().GetInstructionSet()) { |
| 474 | #ifdef ART_ENABLE_CODEGEN_mips |
| 475 | case InstructionSet::kMips: { |
| 476 | OptimizationDef mips_optimizations[] = { |
| 477 | OptDef(OptimizationPass::kPcRelativeFixupsMips) |
| 478 | }; |
| 479 | return RunOptimizations(graph, |
| 480 | codegen, |
| 481 | dex_compilation_unit, |
| 482 | pass_observer, |
| 483 | handles, |
| 484 | mips_optimizations); |
| 485 | } |
| 486 | #endif |
| 487 | #ifdef ART_ENABLE_CODEGEN_x86 |
| 488 | case InstructionSet::kX86: { |
| 489 | OptimizationDef x86_optimizations[] = { |
| 490 | OptDef(OptimizationPass::kPcRelativeFixupsX86), |
| 491 | }; |
| 492 | return RunOptimizations(graph, |
| 493 | codegen, |
| 494 | dex_compilation_unit, |
| 495 | pass_observer, |
| 496 | handles, |
| 497 | x86_optimizations); |
| 498 | } |
| 499 | #endif |
| 500 | default: |
| 501 | UNUSED(graph); |
| 502 | UNUSED(codegen); |
| 503 | UNUSED(dex_compilation_unit); |
| 504 | UNUSED(pass_observer); |
| 505 | UNUSED(handles); |
| 506 | return false; |
| 507 | } |
| 508 | } |
| 509 | |
Aart Bik | 2477320 | 2018-04-26 10:28:51 -0700 | [diff] [blame] | 510 | bool OptimizingCompiler::RunArchOptimizations(HGraph* graph, |
Wojciech Staszkiewicz | f5fb090 | 2016-07-22 13:33:11 -0700 | [diff] [blame] | 511 | CodeGenerator* codegen, |
Aart Bik | 2ca10eb | 2017-11-15 15:17:53 -0800 | [diff] [blame] | 512 | const DexCompilationUnit& dex_compilation_unit, |
| 513 | PassObserver* pass_observer, |
| 514 | VariableSizedHandleScope* handles) const { |
Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 515 | switch (codegen->GetCompilerOptions().GetInstructionSet()) { |
Artem Serov | 2bbc953 | 2016-10-21 11:51:50 +0100 | [diff] [blame] | 516 | #if defined(ART_ENABLE_CODEGEN_arm) |
Vladimir Marko | 33bff25 | 2017-11-01 14:35:42 +0000 | [diff] [blame] | 517 | case InstructionSet::kThumb2: |
| 518 | case InstructionSet::kArm: { |
Aart Bik | 2ca10eb | 2017-11-15 15:17:53 -0800 | [diff] [blame] | 519 | OptimizationDef arm_optimizations[] = { |
| 520 | OptDef(OptimizationPass::kInstructionSimplifierArm), |
| 521 | OptDef(OptimizationPass::kSideEffectsAnalysis), |
| 522 | OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"), |
| 523 | OptDef(OptimizationPass::kScheduling) |
Vladimir Marko | b4536b7 | 2015-11-24 13:45:23 +0000 | [diff] [blame] | 524 | }; |
Aart Bik | 2477320 | 2018-04-26 10:28:51 -0700 | [diff] [blame] | 525 | return RunOptimizations(graph, |
| 526 | codegen, |
| 527 | dex_compilation_unit, |
| 528 | pass_observer, |
| 529 | handles, |
| 530 | arm_optimizations); |
Vladimir Marko | b4536b7 | 2015-11-24 13:45:23 +0000 | [diff] [blame] | 531 | } |
| 532 | #endif |
Alexandre Rames | 44b9cf9 | 2015-08-19 15:39:06 +0100 | [diff] [blame] | 533 | #ifdef ART_ENABLE_CODEGEN_arm64 |
Vladimir Marko | 33bff25 | 2017-11-01 14:35:42 +0000 | [diff] [blame] | 534 | case InstructionSet::kArm64: { |
Aart Bik | 2ca10eb | 2017-11-15 15:17:53 -0800 | [diff] [blame] | 535 | OptimizationDef arm64_optimizations[] = { |
| 536 | OptDef(OptimizationPass::kInstructionSimplifierArm64), |
| 537 | OptDef(OptimizationPass::kSideEffectsAnalysis), |
| 538 | OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"), |
| 539 | OptDef(OptimizationPass::kScheduling) |
Alexandre Rames | 44b9cf9 | 2015-08-19 15:39:06 +0100 | [diff] [blame] | 540 | }; |
Aart Bik | 2477320 | 2018-04-26 10:28:51 -0700 | [diff] [blame] | 541 | return RunOptimizations(graph, |
| 542 | codegen, |
| 543 | dex_compilation_unit, |
| 544 | pass_observer, |
| 545 | handles, |
| 546 | arm64_optimizations); |
Alexandre Rames | 44b9cf9 | 2015-08-19 15:39:06 +0100 | [diff] [blame] | 547 | } |
| 548 | #endif |
Alexey Frunze | e3fb245 | 2016-05-10 16:08:05 -0700 | [diff] [blame] | 549 | #ifdef ART_ENABLE_CODEGEN_mips |
Vladimir Marko | 33bff25 | 2017-11-01 14:35:42 +0000 | [diff] [blame] | 550 | case InstructionSet::kMips: { |
Aart Bik | 2ca10eb | 2017-11-15 15:17:53 -0800 | [diff] [blame] | 551 | OptimizationDef mips_optimizations[] = { |
| 552 | OptDef(OptimizationPass::kInstructionSimplifierMips), |
| 553 | OptDef(OptimizationPass::kSideEffectsAnalysis), |
| 554 | OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"), |
| 555 | OptDef(OptimizationPass::kPcRelativeFixupsMips) |
Alexey Frunze | e3fb245 | 2016-05-10 16:08:05 -0700 | [diff] [blame] | 556 | }; |
Aart Bik | 2477320 | 2018-04-26 10:28:51 -0700 | [diff] [blame] | 557 | return RunOptimizations(graph, |
| 558 | codegen, |
| 559 | dex_compilation_unit, |
| 560 | pass_observer, |
| 561 | handles, |
| 562 | mips_optimizations); |
Alexey Frunze | e3fb245 | 2016-05-10 16:08:05 -0700 | [diff] [blame] | 563 | } |
| 564 | #endif |
Lena Djokic | b8e9c35 | 2017-09-20 15:11:13 +0200 | [diff] [blame] | 565 | #ifdef ART_ENABLE_CODEGEN_mips64 |
Vladimir Marko | 33bff25 | 2017-11-01 14:35:42 +0000 | [diff] [blame] | 566 | case InstructionSet::kMips64: { |
Aart Bik | 2ca10eb | 2017-11-15 15:17:53 -0800 | [diff] [blame] | 567 | OptimizationDef mips64_optimizations[] = { |
| 568 | OptDef(OptimizationPass::kSideEffectsAnalysis), |
| 569 | OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch") |
Lena Djokic | b8e9c35 | 2017-09-20 15:11:13 +0200 | [diff] [blame] | 570 | }; |
Aart Bik | 2477320 | 2018-04-26 10:28:51 -0700 | [diff] [blame] | 571 | return RunOptimizations(graph, |
| 572 | codegen, |
| 573 | dex_compilation_unit, |
| 574 | pass_observer, |
| 575 | handles, |
| 576 | mips64_optimizations); |
Lena Djokic | b8e9c35 | 2017-09-20 15:11:13 +0200 | [diff] [blame] | 577 | } |
| 578 | #endif |
Mark Mendell | 0616ae0 | 2015-04-17 12:49:27 -0400 | [diff] [blame] | 579 | #ifdef ART_ENABLE_CODEGEN_x86 |
Vladimir Marko | 33bff25 | 2017-11-01 14:35:42 +0000 | [diff] [blame] | 580 | case InstructionSet::kX86: { |
Aart Bik | 2ca10eb | 2017-11-15 15:17:53 -0800 | [diff] [blame] | 581 | OptimizationDef x86_optimizations[] = { |
| 582 | OptDef(OptimizationPass::kSideEffectsAnalysis), |
| 583 | OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"), |
| 584 | OptDef(OptimizationPass::kPcRelativeFixupsX86), |
Hans Boehm | f5f56c7 | 2018-07-13 00:05:27 +0000 | [diff] [blame] | 585 | OptDef(OptimizationPass::kX86MemoryOperandGeneration) |
Mark Mendell | 0616ae0 | 2015-04-17 12:49:27 -0400 | [diff] [blame] | 586 | }; |
Aart Bik | 2477320 | 2018-04-26 10:28:51 -0700 | [diff] [blame] | 587 | return RunOptimizations(graph, |
| 588 | codegen, |
| 589 | dex_compilation_unit, |
| 590 | pass_observer, |
| 591 | handles, |
| 592 | x86_optimizations); |
Mark Mendell | 0616ae0 | 2015-04-17 12:49:27 -0400 | [diff] [blame] | 593 | } |
| 594 | #endif |
Mark Mendell | ee8d971 | 2016-07-12 11:13:15 -0400 | [diff] [blame] | 595 | #ifdef ART_ENABLE_CODEGEN_x86_64 |
Vladimir Marko | 33bff25 | 2017-11-01 14:35:42 +0000 | [diff] [blame] | 596 | case InstructionSet::kX86_64: { |
Aart Bik | 2ca10eb | 2017-11-15 15:17:53 -0800 | [diff] [blame] | 597 | OptimizationDef x86_64_optimizations[] = { |
| 598 | OptDef(OptimizationPass::kSideEffectsAnalysis), |
| 599 | OptDef(OptimizationPass::kGlobalValueNumbering, "GVN$after_arch"), |
Hans Boehm | f5f56c7 | 2018-07-13 00:05:27 +0000 | [diff] [blame] | 600 | OptDef(OptimizationPass::kX86MemoryOperandGeneration) |
Mark Mendell | ee8d971 | 2016-07-12 11:13:15 -0400 | [diff] [blame] | 601 | }; |
Aart Bik | 2477320 | 2018-04-26 10:28:51 -0700 | [diff] [blame] | 602 | return RunOptimizations(graph, |
| 603 | codegen, |
| 604 | dex_compilation_unit, |
| 605 | pass_observer, |
| 606 | handles, |
| 607 | x86_64_optimizations); |
Mark Mendell | ee8d971 | 2016-07-12 11:13:15 -0400 | [diff] [blame] | 608 | } |
| 609 | #endif |
Alexandre Rames | 44b9cf9 | 2015-08-19 15:39:06 +0100 | [diff] [blame] | 610 | default: |
Aart Bik | 2477320 | 2018-04-26 10:28:51 -0700 | [diff] [blame] | 611 | return false; |
Alexandre Rames | 44b9cf9 | 2015-08-19 15:39:06 +0100 | [diff] [blame] | 612 | } |
| 613 | } |
| 614 | |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 615 | NO_INLINE // Avoid increasing caller's frame size by large stack-allocated objects. |
| 616 | static void AllocateRegisters(HGraph* graph, |
| 617 | CodeGenerator* codegen, |
Matthew Gharrity | 2cd05b7 | 2016-08-03 16:57:37 -0700 | [diff] [blame] | 618 | PassObserver* pass_observer, |
Igor Murashkin | 6ef4567 | 2017-08-08 13:59:55 -0700 | [diff] [blame] | 619 | RegisterAllocator::Strategy strategy, |
| 620 | OptimizingCompilerStats* stats) { |
Mingyao Yang | 700347e | 2016-03-02 14:59:32 -0800 | [diff] [blame] | 621 | { |
| 622 | PassScope scope(PrepareForRegisterAllocation::kPrepareForRegisterAllocationPassName, |
| 623 | pass_observer); |
Nicolas Geoffray | 61ba8d2 | 2018-08-07 09:55:57 +0100 | [diff] [blame] | 624 | PrepareForRegisterAllocation(graph, codegen->GetCompilerOptions(), stats).Run(); |
Mingyao Yang | 700347e | 2016-03-02 14:59:32 -0800 | [diff] [blame] | 625 | } |
Vladimir Marko | e764d2e | 2017-10-05 14:35:55 +0100 | [diff] [blame] | 626 | // Use local allocator shared by SSA liveness analysis and register allocator. |
| 627 | // (Register allocator creates new objects in the liveness data.) |
| 628 | ScopedArenaAllocator local_allocator(graph->GetArenaStack()); |
| 629 | SsaLivenessAnalysis liveness(graph, codegen, &local_allocator); |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 630 | { |
| 631 | PassScope scope(SsaLivenessAnalysis::kLivenessPassName, pass_observer); |
| 632 | liveness.Analyze(); |
| 633 | } |
| 634 | { |
| 635 | PassScope scope(RegisterAllocator::kRegisterAllocatorPassName, pass_observer); |
Vladimir Marko | e764d2e | 2017-10-05 14:35:55 +0100 | [diff] [blame] | 636 | std::unique_ptr<RegisterAllocator> register_allocator = |
| 637 | RegisterAllocator::Create(&local_allocator, codegen, liveness, strategy); |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 638 | register_allocator->AllocateRegisters(); |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 639 | } |
| 640 | } |
| 641 | |
Aart Bik | 2ca10eb | 2017-11-15 15:17:53 -0800 | [diff] [blame] | 642 | // Strip pass name suffix to get optimization name. |
| 643 | static std::string ConvertPassNameToOptimizationName(const std::string& pass_name) { |
| 644 | size_t pos = pass_name.find(kPassNameSeparator); |
| 645 | return pos == std::string::npos ? pass_name : pass_name.substr(0, pos); |
| 646 | } |
| 647 | |
Wojciech Staszkiewicz | f5fb090 | 2016-07-22 13:33:11 -0700 | [diff] [blame] | 648 | void OptimizingCompiler::RunOptimizations(HGraph* graph, |
| 649 | CodeGenerator* codegen, |
Wojciech Staszkiewicz | f5fb090 | 2016-07-22 13:33:11 -0700 | [diff] [blame] | 650 | const DexCompilationUnit& dex_compilation_unit, |
| 651 | PassObserver* pass_observer, |
Mathieu Chartier | e8a3c57 | 2016-10-11 16:52:17 -0700 | [diff] [blame] | 652 | VariableSizedHandleScope* handles) const { |
Aart Bik | 2ca10eb | 2017-11-15 15:17:53 -0800 | [diff] [blame] | 653 | const std::vector<std::string>* pass_names = |
| 654 | GetCompilerDriver()->GetCompilerOptions().GetPassesToRun(); |
| 655 | if (pass_names != nullptr) { |
| 656 | // If passes were defined on command-line, build the optimization |
| 657 | // passes and run these instead of the built-in optimizations. |
Aart Bik | 2e14868 | 2018-04-18 16:11:12 -0700 | [diff] [blame] | 658 | // TODO: a way to define depends_on via command-line? |
Aart Bik | 2ca10eb | 2017-11-15 15:17:53 -0800 | [diff] [blame] | 659 | const size_t length = pass_names->size(); |
| 660 | std::vector<OptimizationDef> optimizations; |
| 661 | for (const std::string& pass_name : *pass_names) { |
| 662 | std::string opt_name = ConvertPassNameToOptimizationName(pass_name); |
| 663 | optimizations.push_back(OptDef(OptimizationPassByName(opt_name.c_str()), pass_name.c_str())); |
| 664 | } |
| 665 | RunOptimizations(graph, |
| 666 | codegen, |
| 667 | dex_compilation_unit, |
| 668 | pass_observer, |
| 669 | handles, |
| 670 | optimizations.data(), |
| 671 | length); |
Wojciech Staszkiewicz | 5319d3c | 2016-08-01 17:48:59 -0700 | [diff] [blame] | 672 | return; |
| 673 | } |
| 674 | |
Aart Bik | 2477320 | 2018-04-26 10:28:51 -0700 | [diff] [blame] | 675 | OptimizationDef optimizations[] = { |
Aart Bik | 2e14868 | 2018-04-18 16:11:12 -0700 | [diff] [blame] | 676 | // Initial optimizations. |
Aart Bik | 2ca10eb | 2017-11-15 15:17:53 -0800 | [diff] [blame] | 677 | OptDef(OptimizationPass::kConstantFolding), |
| 678 | OptDef(OptimizationPass::kInstructionSimplifier), |
Aart Bik | 2e14868 | 2018-04-18 16:11:12 -0700 | [diff] [blame] | 679 | OptDef(OptimizationPass::kDeadCodeElimination, |
| 680 | "dead_code_elimination$initial"), |
| 681 | // Inlining. |
Aart Bik | 2477320 | 2018-04-26 10:28:51 -0700 | [diff] [blame] | 682 | OptDef(OptimizationPass::kInliner), |
Aart Bik | 2e14868 | 2018-04-18 16:11:12 -0700 | [diff] [blame] | 683 | // Simplification (only if inlining occurred). |
| 684 | OptDef(OptimizationPass::kConstantFolding, |
| 685 | "constant_folding$after_inlining", |
| 686 | OptimizationPass::kInliner), |
| 687 | OptDef(OptimizationPass::kInstructionSimplifier, |
| 688 | "instruction_simplifier$after_inlining", |
| 689 | OptimizationPass::kInliner), |
| 690 | OptDef(OptimizationPass::kDeadCodeElimination, |
| 691 | "dead_code_elimination$after_inlining", |
| 692 | OptimizationPass::kInliner), |
| 693 | // GVN. |
| 694 | OptDef(OptimizationPass::kSideEffectsAnalysis, |
| 695 | "side_effects$before_gvn"), |
Aart Bik | 6d05700 | 2018-04-09 15:39:58 -0700 | [diff] [blame] | 696 | OptDef(OptimizationPass::kGlobalValueNumbering), |
Aart Bik | 2e14868 | 2018-04-18 16:11:12 -0700 | [diff] [blame] | 697 | // Simplification (TODO: only if GVN occurred). |
Aart Bik | 2ca10eb | 2017-11-15 15:17:53 -0800 | [diff] [blame] | 698 | OptDef(OptimizationPass::kSelectGenerator), |
Aart Bik | 2e14868 | 2018-04-18 16:11:12 -0700 | [diff] [blame] | 699 | OptDef(OptimizationPass::kConstantFolding, |
| 700 | "constant_folding$after_gvn"), |
| 701 | OptDef(OptimizationPass::kInstructionSimplifier, |
| 702 | "instruction_simplifier$after_gvn"), |
| 703 | OptDef(OptimizationPass::kDeadCodeElimination, |
| 704 | "dead_code_elimination$after_gvn"), |
| 705 | // High-level optimizations. |
| 706 | OptDef(OptimizationPass::kSideEffectsAnalysis, |
| 707 | "side_effects$before_licm"), |
Aart Bik | 2ca10eb | 2017-11-15 15:17:53 -0800 | [diff] [blame] | 708 | OptDef(OptimizationPass::kInvariantCodeMotion), |
| 709 | OptDef(OptimizationPass::kInductionVarAnalysis), |
| 710 | OptDef(OptimizationPass::kBoundsCheckElimination), |
| 711 | OptDef(OptimizationPass::kLoopOptimization), |
Aart Bik | 2e14868 | 2018-04-18 16:11:12 -0700 | [diff] [blame] | 712 | // Simplification. |
| 713 | OptDef(OptimizationPass::kConstantFolding, |
| 714 | "constant_folding$after_bce"), |
| 715 | OptDef(OptimizationPass::kInstructionSimplifier, |
| 716 | "instruction_simplifier$after_bce"), |
| 717 | // Other high-level optimizations. |
| 718 | OptDef(OptimizationPass::kSideEffectsAnalysis, |
| 719 | "side_effects$before_lse"), |
Aart Bik | 2ca10eb | 2017-11-15 15:17:53 -0800 | [diff] [blame] | 720 | OptDef(OptimizationPass::kLoadStoreAnalysis), |
| 721 | OptDef(OptimizationPass::kLoadStoreElimination), |
| 722 | OptDef(OptimizationPass::kCHAGuardOptimization), |
Aart Bik | 2e14868 | 2018-04-18 16:11:12 -0700 | [diff] [blame] | 723 | OptDef(OptimizationPass::kDeadCodeElimination, |
| 724 | "dead_code_elimination$final"), |
Aart Bik | 2ca10eb | 2017-11-15 15:17:53 -0800 | [diff] [blame] | 725 | OptDef(OptimizationPass::kCodeSinking), |
David Brazdil | 8993caf | 2015-12-07 10:04:40 +0000 | [diff] [blame] | 726 | // The codegen has a few assumptions that only the instruction simplifier |
| 727 | // can satisfy. For example, the code generator does not expect to see a |
| 728 | // HTypeConversion from a type to the same type. |
Aart Bik | 2e14868 | 2018-04-18 16:11:12 -0700 | [diff] [blame] | 729 | OptDef(OptimizationPass::kInstructionSimplifier, |
| 730 | "instruction_simplifier$before_codegen"), |
Aart Bik | 2ca10eb | 2017-11-15 15:17:53 -0800 | [diff] [blame] | 731 | // Eliminate constructor fences after code sinking to avoid |
| 732 | // complicated sinking logic to split a fence with many inputs. |
| 733 | OptDef(OptimizationPass::kConstructorFenceRedundancyElimination) |
David Brazdil | 8993caf | 2015-12-07 10:04:40 +0000 | [diff] [blame] | 734 | }; |
Aart Bik | 2ca10eb | 2017-11-15 15:17:53 -0800 | [diff] [blame] | 735 | RunOptimizations(graph, |
| 736 | codegen, |
| 737 | dex_compilation_unit, |
| 738 | pass_observer, |
| 739 | handles, |
Aart Bik | 2477320 | 2018-04-26 10:28:51 -0700 | [diff] [blame] | 740 | optimizations); |
David Brazdil | bbd733e | 2015-08-18 17:48:17 +0100 | [diff] [blame] | 741 | |
Aart Bik | 2ca10eb | 2017-11-15 15:17:53 -0800 | [diff] [blame] | 742 | RunArchOptimizations(graph, codegen, dex_compilation_unit, pass_observer, handles); |
Nicolas Geoffray | 5e6916c | 2014-11-18 16:53:35 +0000 | [diff] [blame] | 743 | } |
| 744 | |
Vladimir Marko | d8dbc8d | 2017-09-20 13:37:47 +0100 | [diff] [blame] | 745 | static ArenaVector<linker::LinkerPatch> EmitAndSortLinkerPatches(CodeGenerator* codegen) { |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 746 | ArenaVector<linker::LinkerPatch> linker_patches(codegen->GetGraph()->GetAllocator()->Adapter()); |
Vladimir Marko | 5815501 | 2015-08-19 12:49:41 +0000 | [diff] [blame] | 747 | codegen->EmitLinkerPatches(&linker_patches); |
| 748 | |
| 749 | // Sort patches by literal offset. Required for .oat_patches encoding. |
| 750 | std::sort(linker_patches.begin(), linker_patches.end(), |
Vladimir Marko | d8dbc8d | 2017-09-20 13:37:47 +0100 | [diff] [blame] | 751 | [](const linker::LinkerPatch& lhs, const linker::LinkerPatch& rhs) { |
Vladimir Marko | 5815501 | 2015-08-19 12:49:41 +0000 | [diff] [blame] | 752 | return lhs.LiteralOffset() < rhs.LiteralOffset(); |
| 753 | }); |
| 754 | |
| 755 | return linker_patches; |
| 756 | } |
| 757 | |
Vladimir Marko | e764d2e | 2017-10-05 14:35:55 +0100 | [diff] [blame] | 758 | CompiledMethod* OptimizingCompiler::Emit(ArenaAllocator* allocator, |
David Brazdil | 58282f4 | 2016-01-14 12:45:10 +0000 | [diff] [blame] | 759 | CodeVectorAllocator* code_allocator, |
| 760 | CodeGenerator* codegen, |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 761 | const DexFile::CodeItem* code_item_for_osr_check) const { |
Vladimir Marko | d8dbc8d | 2017-09-20 13:37:47 +0100 | [diff] [blame] | 762 | ArenaVector<linker::LinkerPatch> linker_patches = EmitAndSortLinkerPatches(codegen); |
David Srbecky | e7a9194 | 2018-08-01 17:23:53 +0100 | [diff] [blame] | 763 | ScopedArenaVector<uint8_t> stack_map = codegen->BuildStackMaps(code_item_for_osr_check); |
Nicolas Geoffray | 12df9eb | 2015-01-09 14:53:50 +0000 | [diff] [blame] | 764 | |
Alexandre Rames | eb7b739 | 2015-06-19 14:47:01 +0100 | [diff] [blame] | 765 | CompiledMethod* compiled_method = CompiledMethod::SwapAllocCompiledMethod( |
Aart Bik | 2ca10eb | 2017-11-15 15:17:53 -0800 | [diff] [blame] | 766 | GetCompilerDriver(), |
Nicolas Geoffray | 12df9eb | 2015-01-09 14:53:50 +0000 | [diff] [blame] | 767 | codegen->GetInstructionSet(), |
Vladimir Marko | ca1e038 | 2018-04-11 09:58:41 +0000 | [diff] [blame] | 768 | code_allocator->GetMemory(), |
David Srbecky | c6b4dd8 | 2015-04-07 20:32:43 +0100 | [diff] [blame] | 769 | ArrayRef<const uint8_t>(stack_map), |
David Srbecky | c6b4dd8 | 2015-04-07 20:32:43 +0100 | [diff] [blame] | 770 | ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data()), |
Vladimir Marko | d8dbc8d | 2017-09-20 13:37:47 +0100 | [diff] [blame] | 771 | ArrayRef<const linker::LinkerPatch>(linker_patches)); |
Mathieu Chartier | ed15000 | 2015-08-28 11:16:54 -0700 | [diff] [blame] | 772 | |
Vladimir Marko | ca1e038 | 2018-04-11 09:58:41 +0000 | [diff] [blame] | 773 | CompiledMethodStorage* storage = GetCompilerDriver()->GetCompiledMethodStorage(); |
| 774 | for (const linker::LinkerPatch& patch : linker_patches) { |
| 775 | if (codegen->NeedsThunkCode(patch) && storage->GetThunkCode(patch).empty()) { |
| 776 | ArenaVector<uint8_t> code(allocator->Adapter()); |
| 777 | std::string debug_name; |
| 778 | codegen->EmitThunkCode(patch, &code, &debug_name); |
| 779 | storage->SetThunkCode(patch, ArrayRef<const uint8_t>(code), debug_name); |
| 780 | } |
| 781 | } |
| 782 | |
Alexandre Rames | eb7b739 | 2015-06-19 14:47:01 +0100 | [diff] [blame] | 783 | return compiled_method; |
Nicolas Geoffray | 12df9eb | 2015-01-09 14:53:50 +0000 | [diff] [blame] | 784 | } |
| 785 | |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 786 | CodeGenerator* OptimizingCompiler::TryCompile(ArenaAllocator* allocator, |
| 787 | ArenaStack* arena_stack, |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 788 | CodeVectorAllocator* code_allocator, |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 789 | const DexCompilationUnit& dex_compilation_unit, |
Nicolas Geoffray | 3aaf964 | 2016-06-07 14:14:37 +0000 | [diff] [blame] | 790 | ArtMethod* method, |
Nicolas Geoffray | acc56ac | 2018-10-09 08:45:24 +0100 | [diff] [blame] | 791 | bool baseline, |
Nicolas Geoffray | 22384ae | 2016-12-12 22:33:36 +0000 | [diff] [blame] | 792 | bool osr, |
| 793 | VariableSizedHandleScope* handles) const { |
Vladimir Marko | cd09e1f | 2017-11-24 15:02:40 +0000 | [diff] [blame] | 794 | MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kAttemptBytecodeCompilation); |
Calin Juravle | cd6dffe | 2015-01-08 17:35:35 +0000 | [diff] [blame] | 795 | CompilerDriver* compiler_driver = GetCompilerDriver(); |
Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 796 | const CompilerOptions& compiler_options = compiler_driver->GetCompilerOptions(); |
| 797 | InstructionSet instruction_set = compiler_options.GetInstructionSet(); |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 798 | const DexFile& dex_file = *dex_compilation_unit.GetDexFile(); |
| 799 | uint32_t method_idx = dex_compilation_unit.GetDexMethodIndex(); |
| 800 | const DexFile::CodeItem* code_item = dex_compilation_unit.GetCodeItem(); |
Calin Juravle | cff8cc7 | 2015-10-09 12:03:24 +0100 | [diff] [blame] | 801 | |
Roland Levillain | 3b359c7 | 2015-11-17 19:35:12 +0000 | [diff] [blame] | 802 | // Always use the Thumb-2 assembler: some runtime functionality |
| 803 | // (like implicit stack overflow checks) assume Thumb-2. |
Vladimir Marko | 33bff25 | 2017-11-01 14:35:42 +0000 | [diff] [blame] | 804 | DCHECK_NE(instruction_set, InstructionSet::kArm); |
Nicolas Geoffray | 8fb5ce3 | 2014-07-04 09:43:26 +0100 | [diff] [blame] | 805 | |
| 806 | // Do not attempt to compile on architectures we do not support. |
Nicolas Geoffray | 1ba0f59 | 2014-10-27 15:14:55 +0000 | [diff] [blame] | 807 | if (!IsInstructionSetSupported(instruction_set)) { |
Igor Murashkin | 1e065a5 | 2017-08-09 13:20:34 -0700 | [diff] [blame] | 808 | MaybeRecordStat(compilation_stats_.get(), |
| 809 | MethodCompilationStat::kNotCompiledUnsupportedIsa); |
Nicolas Geoffray | 8fb5ce3 | 2014-07-04 09:43:26 +0100 | [diff] [blame] | 810 | return nullptr; |
| 811 | } |
| 812 | |
Nicolas Geoffray | b5f62b3 | 2014-10-30 10:58:41 +0000 | [diff] [blame] | 813 | if (Compiler::IsPathologicalCase(*code_item, method_idx, dex_file)) { |
Vladimir Marko | cd09e1f | 2017-11-24 15:02:40 +0000 | [diff] [blame] | 814 | MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kNotCompiledPathological); |
Nicolas Geoffray | b5f62b3 | 2014-10-30 10:58:41 +0000 | [diff] [blame] | 815 | return nullptr; |
| 816 | } |
| 817 | |
Nicolas Geoffray | 36540cb | 2015-03-23 14:45:53 +0000 | [diff] [blame] | 818 | // Implementation of the space filter: do not compile a code item whose size in |
Nicolas Geoffray | 432bf3d | 2015-07-17 11:11:09 +0100 | [diff] [blame] | 819 | // code units is bigger than 128. |
| 820 | static constexpr size_t kSpaceFilterOptimizingThreshold = 128; |
Andreas Gampe | 29d38e7 | 2016-03-23 15:31:51 +0000 | [diff] [blame] | 821 | if ((compiler_options.GetCompilerFilter() == CompilerFilter::kSpace) |
Mathieu Chartier | 698ebbc | 2018-01-05 11:00:42 -0800 | [diff] [blame] | 822 | && (CodeItemInstructionAccessor(dex_file, code_item).InsnsSizeInCodeUnits() > |
Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 823 | kSpaceFilterOptimizingThreshold)) { |
Vladimir Marko | cd09e1f | 2017-11-24 15:02:40 +0000 | [diff] [blame] | 824 | MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kNotCompiledSpaceFilter); |
Nicolas Geoffray | 36540cb | 2015-03-23 14:45:53 +0000 | [diff] [blame] | 825 | return nullptr; |
| 826 | } |
| 827 | |
Mathieu Chartier | 8892c6b | 2018-01-09 15:10:17 -0800 | [diff] [blame] | 828 | CodeItemDebugInfoAccessor code_item_accessor(dex_file, code_item, method_idx); |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 829 | HGraph* graph = new (allocator) HGraph( |
| 830 | allocator, |
| 831 | arena_stack, |
Nicolas Geoffray | b331feb | 2016-02-05 16:51:53 +0000 | [diff] [blame] | 832 | dex_file, |
| 833 | method_idx, |
Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 834 | compiler_options.GetInstructionSet(), |
Nicolas Geoffray | b331feb | 2016-02-05 16:51:53 +0000 | [diff] [blame] | 835 | kInvalidInvokeType, |
| 836 | compiler_driver->GetCompilerOptions().GetDebuggable(), |
| 837 | osr); |
Nicolas Geoffray | e53798a | 2014-12-01 10:31:54 +0000 | [diff] [blame] | 838 | |
Mathieu Chartier | 210531f | 2018-01-12 10:15:51 -0800 | [diff] [blame] | 839 | ArrayRef<const uint8_t> interpreter_metadata; |
Nicolas Geoffray | 3aaf964 | 2016-06-07 14:14:37 +0000 | [diff] [blame] | 840 | // For AOT compilation, we may not get a method, for example if its class is erroneous. |
| 841 | // JIT should always have a method. |
| 842 | DCHECK(Runtime::Current()->IsAotCompiler() || method != nullptr); |
| 843 | if (method != nullptr) { |
| 844 | graph->SetArtMethod(method); |
| 845 | ScopedObjectAccess soa(Thread::Current()); |
Nicolas Geoffray | 8eaa8e5 | 2017-11-13 17:47:50 +0000 | [diff] [blame] | 846 | interpreter_metadata = method->GetQuickenedInfo(); |
David Brazdil | badd826 | 2016-02-02 16:28:56 +0000 | [diff] [blame] | 847 | } |
| 848 | |
Nicolas Geoffray | 12df9eb | 2015-01-09 14:53:50 +0000 | [diff] [blame] | 849 | std::unique_ptr<CodeGenerator> codegen( |
Calin Juravle | cd6dffe | 2015-01-08 17:35:35 +0000 | [diff] [blame] | 850 | CodeGenerator::Create(graph, |
Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 851 | compiler_options, |
Calin Juravle | 2ae4818 | 2016-03-16 14:05:09 +0000 | [diff] [blame] | 852 | compilation_stats_.get())); |
Nicolas Geoffray | 12df9eb | 2015-01-09 14:53:50 +0000 | [diff] [blame] | 853 | if (codegen.get() == nullptr) { |
Vladimir Marko | cd09e1f | 2017-11-24 15:02:40 +0000 | [diff] [blame] | 854 | MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kNotCompiledNoCodegen); |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 855 | return nullptr; |
| 856 | } |
David Srbecky | c6b4dd8 | 2015-04-07 20:32:43 +0100 | [diff] [blame] | 857 | codegen->GetAssembler()->cfi().SetEnabled( |
David Srbecky | 5b1c2ca | 2016-01-25 17:32:41 +0000 | [diff] [blame] | 858 | compiler_driver->GetCompilerOptions().GenerateAnyDebugInfo()); |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 859 | |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 860 | PassObserver pass_observer(graph, |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 861 | codegen.get(), |
| 862 | visualizer_output_.get(), |
Andreas Gampe | a0d81af | 2016-10-27 12:04:57 -0700 | [diff] [blame] | 863 | compiler_driver, |
| 864 | dump_mutex_); |
David Brazdil | 5e8b137 | 2015-01-23 14:39:08 +0000 | [diff] [blame] | 865 | |
David Brazdil | 809658e | 2015-02-05 11:34:02 +0000 | [diff] [blame] | 866 | { |
Nicolas Geoffray | 22384ae | 2016-12-12 22:33:36 +0000 | [diff] [blame] | 867 | VLOG(compiler) << "Building " << pass_observer.GetMethodName(); |
| 868 | PassScope scope(HGraphBuilder::kBuilderPassName, &pass_observer); |
| 869 | HGraphBuilder builder(graph, |
Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 870 | code_item_accessor, |
Nicolas Geoffray | 22384ae | 2016-12-12 22:33:36 +0000 | [diff] [blame] | 871 | &dex_compilation_unit, |
| 872 | &dex_compilation_unit, |
Nicolas Geoffray | 22384ae | 2016-12-12 22:33:36 +0000 | [diff] [blame] | 873 | compiler_driver, |
Nicolas Geoffray | 83c8e27 | 2017-01-31 14:36:37 +0000 | [diff] [blame] | 874 | codegen.get(), |
Nicolas Geoffray | 22384ae | 2016-12-12 22:33:36 +0000 | [diff] [blame] | 875 | compilation_stats_.get(), |
| 876 | interpreter_metadata, |
Nicolas Geoffray | 22384ae | 2016-12-12 22:33:36 +0000 | [diff] [blame] | 877 | handles); |
| 878 | GraphAnalysisResult result = builder.BuildGraph(); |
| 879 | if (result != kAnalysisSuccess) { |
| 880 | switch (result) { |
Igor Murashkin | 1e065a5 | 2017-08-09 13:20:34 -0700 | [diff] [blame] | 881 | case kAnalysisSkipped: { |
| 882 | MaybeRecordStat(compilation_stats_.get(), |
| 883 | MethodCompilationStat::kNotCompiledSkipped); |
Nicolas Geoffray | 22384ae | 2016-12-12 22:33:36 +0000 | [diff] [blame] | 884 | break; |
Nicolas Geoffray | 8a62a4c | 2018-07-03 09:39:07 +0100 | [diff] [blame] | 885 | } |
Igor Murashkin | 1e065a5 | 2017-08-09 13:20:34 -0700 | [diff] [blame] | 886 | case kAnalysisInvalidBytecode: { |
| 887 | MaybeRecordStat(compilation_stats_.get(), |
| 888 | MethodCompilationStat::kNotCompiledInvalidBytecode); |
Nicolas Geoffray | 22384ae | 2016-12-12 22:33:36 +0000 | [diff] [blame] | 889 | break; |
Nicolas Geoffray | 8a62a4c | 2018-07-03 09:39:07 +0100 | [diff] [blame] | 890 | } |
Igor Murashkin | 1e065a5 | 2017-08-09 13:20:34 -0700 | [diff] [blame] | 891 | case kAnalysisFailThrowCatchLoop: { |
| 892 | MaybeRecordStat(compilation_stats_.get(), |
| 893 | MethodCompilationStat::kNotCompiledThrowCatchLoop); |
Nicolas Geoffray | 22384ae | 2016-12-12 22:33:36 +0000 | [diff] [blame] | 894 | break; |
Nicolas Geoffray | 8a62a4c | 2018-07-03 09:39:07 +0100 | [diff] [blame] | 895 | } |
Igor Murashkin | 1e065a5 | 2017-08-09 13:20:34 -0700 | [diff] [blame] | 896 | case kAnalysisFailAmbiguousArrayOp: { |
| 897 | MaybeRecordStat(compilation_stats_.get(), |
| 898 | MethodCompilationStat::kNotCompiledAmbiguousArrayOp); |
Nicolas Geoffray | 22384ae | 2016-12-12 22:33:36 +0000 | [diff] [blame] | 899 | break; |
Nicolas Geoffray | 8a62a4c | 2018-07-03 09:39:07 +0100 | [diff] [blame] | 900 | } |
Nicolas Geoffray | 0846a8f | 2018-09-12 15:21:07 +0100 | [diff] [blame] | 901 | case kAnalysisFailIrreducibleLoopAndStringInit: { |
| 902 | MaybeRecordStat(compilation_stats_.get(), |
| 903 | MethodCompilationStat::kNotCompiledIrreducibleLoopAndStringInit); |
| 904 | break; |
| 905 | } |
Nicolas Geoffray | 22384ae | 2016-12-12 22:33:36 +0000 | [diff] [blame] | 906 | case kAnalysisSuccess: |
| 907 | UNREACHABLE(); |
David Brazdil | 809658e | 2015-02-05 11:34:02 +0000 | [diff] [blame] | 908 | } |
Nicolas Geoffray | 22384ae | 2016-12-12 22:33:36 +0000 | [diff] [blame] | 909 | pass_observer.SetGraphInBadState(); |
| 910 | return nullptr; |
Nicolas Geoffray | f537012 | 2014-12-02 11:51:19 +0000 | [diff] [blame] | 911 | } |
David Brazdil | badd826 | 2016-02-02 16:28:56 +0000 | [diff] [blame] | 912 | } |
Vladimir Marko | f9f6441 | 2015-09-02 14:05:49 +0100 | [diff] [blame] | 913 | |
Nicolas Geoffray | acc56ac | 2018-10-09 08:45:24 +0100 | [diff] [blame] | 914 | if (baseline) { |
| 915 | RunBaselineOptimizations(graph, codegen.get(), dex_compilation_unit, &pass_observer, handles); |
| 916 | } else { |
| 917 | RunOptimizations(graph, codegen.get(), dex_compilation_unit, &pass_observer, handles); |
| 918 | } |
Nicolas Geoffray | 22384ae | 2016-12-12 22:33:36 +0000 | [diff] [blame] | 919 | |
| 920 | RegisterAllocator::Strategy regalloc_strategy = |
| 921 | compiler_options.GetRegisterAllocationStrategy(); |
Igor Murashkin | 1e065a5 | 2017-08-09 13:20:34 -0700 | [diff] [blame] | 922 | AllocateRegisters(graph, |
| 923 | codegen.get(), |
| 924 | &pass_observer, |
Igor Murashkin | 6ef4567 | 2017-08-08 13:59:55 -0700 | [diff] [blame] | 925 | regalloc_strategy, |
| 926 | compilation_stats_.get()); |
Nicolas Geoffray | 22384ae | 2016-12-12 22:33:36 +0000 | [diff] [blame] | 927 | |
| 928 | codegen->Compile(code_allocator); |
| 929 | pass_observer.DumpDisassembly(); |
| 930 | |
Vladimir Marko | cd09e1f | 2017-11-24 15:02:40 +0000 | [diff] [blame] | 931 | MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kCompiledBytecode); |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 932 | return codegen.release(); |
Nicolas Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame] | 933 | } |
| 934 | |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 935 | CodeGenerator* OptimizingCompiler::TryCompileIntrinsic( |
| 936 | ArenaAllocator* allocator, |
| 937 | ArenaStack* arena_stack, |
| 938 | CodeVectorAllocator* code_allocator, |
| 939 | const DexCompilationUnit& dex_compilation_unit, |
| 940 | ArtMethod* method, |
| 941 | VariableSizedHandleScope* handles) const { |
Vladimir Marko | cd09e1f | 2017-11-24 15:02:40 +0000 | [diff] [blame] | 942 | MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kAttemptIntrinsicCompilation); |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 943 | CompilerDriver* compiler_driver = GetCompilerDriver(); |
Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 944 | const CompilerOptions& compiler_options = compiler_driver->GetCompilerOptions(); |
| 945 | InstructionSet instruction_set = compiler_options.GetInstructionSet(); |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 946 | const DexFile& dex_file = *dex_compilation_unit.GetDexFile(); |
| 947 | uint32_t method_idx = dex_compilation_unit.GetDexMethodIndex(); |
| 948 | |
| 949 | // Always use the Thumb-2 assembler: some runtime functionality |
| 950 | // (like implicit stack overflow checks) assume Thumb-2. |
| 951 | DCHECK_NE(instruction_set, InstructionSet::kArm); |
| 952 | |
| 953 | // Do not attempt to compile on architectures we do not support. |
| 954 | if (!IsInstructionSetSupported(instruction_set)) { |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 955 | return nullptr; |
| 956 | } |
| 957 | |
| 958 | HGraph* graph = new (allocator) HGraph( |
| 959 | allocator, |
| 960 | arena_stack, |
| 961 | dex_file, |
| 962 | method_idx, |
Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 963 | compiler_driver->GetCompilerOptions().GetInstructionSet(), |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 964 | kInvalidInvokeType, |
| 965 | compiler_driver->GetCompilerOptions().GetDebuggable(), |
| 966 | /* osr */ false); |
| 967 | |
| 968 | DCHECK(Runtime::Current()->IsAotCompiler()); |
| 969 | DCHECK(method != nullptr); |
| 970 | graph->SetArtMethod(method); |
| 971 | |
| 972 | std::unique_ptr<CodeGenerator> codegen( |
| 973 | CodeGenerator::Create(graph, |
Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 974 | compiler_options, |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 975 | compilation_stats_.get())); |
| 976 | if (codegen.get() == nullptr) { |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 977 | return nullptr; |
| 978 | } |
Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 979 | codegen->GetAssembler()->cfi().SetEnabled(compiler_options.GenerateAnyDebugInfo()); |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 980 | |
| 981 | PassObserver pass_observer(graph, |
| 982 | codegen.get(), |
| 983 | visualizer_output_.get(), |
| 984 | compiler_driver, |
| 985 | dump_mutex_); |
| 986 | |
| 987 | { |
| 988 | VLOG(compiler) << "Building intrinsic graph " << pass_observer.GetMethodName(); |
| 989 | PassScope scope(HGraphBuilder::kBuilderPassName, &pass_observer); |
| 990 | HGraphBuilder builder(graph, |
Mathieu Chartier | 808c7a5 | 2017-12-15 11:19:33 -0800 | [diff] [blame] | 991 | CodeItemDebugInfoAccessor(), // Null code item. |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 992 | &dex_compilation_unit, |
| 993 | &dex_compilation_unit, |
| 994 | compiler_driver, |
| 995 | codegen.get(), |
| 996 | compilation_stats_.get(), |
Mathieu Chartier | 210531f | 2018-01-12 10:15:51 -0800 | [diff] [blame] | 997 | /* interpreter_metadata */ ArrayRef<const uint8_t>(), |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 998 | handles); |
| 999 | builder.BuildIntrinsicGraph(method); |
| 1000 | } |
| 1001 | |
Aart Bik | 2ca10eb | 2017-11-15 15:17:53 -0800 | [diff] [blame] | 1002 | OptimizationDef optimizations[] = { |
Nicolas Geoffray | 76d4bb0f3 | 2018-09-21 12:58:45 +0100 | [diff] [blame] | 1003 | // The codegen has a few assumptions that only the instruction simplifier |
| 1004 | // can satisfy. |
Aart Bik | 2ca10eb | 2017-11-15 15:17:53 -0800 | [diff] [blame] | 1005 | OptDef(OptimizationPass::kInstructionSimplifier), |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 1006 | }; |
Aart Bik | 2ca10eb | 2017-11-15 15:17:53 -0800 | [diff] [blame] | 1007 | RunOptimizations(graph, |
| 1008 | codegen.get(), |
| 1009 | dex_compilation_unit, |
| 1010 | &pass_observer, |
| 1011 | handles, |
| 1012 | optimizations); |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 1013 | |
Aart Bik | 2ca10eb | 2017-11-15 15:17:53 -0800 | [diff] [blame] | 1014 | RunArchOptimizations(graph, codegen.get(), dex_compilation_unit, &pass_observer, handles); |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 1015 | |
| 1016 | AllocateRegisters(graph, |
| 1017 | codegen.get(), |
| 1018 | &pass_observer, |
| 1019 | compiler_driver->GetCompilerOptions().GetRegisterAllocationStrategy(), |
| 1020 | compilation_stats_.get()); |
| 1021 | if (!codegen->IsLeafMethod()) { |
| 1022 | VLOG(compiler) << "Intrinsic method is not leaf: " << method->GetIntrinsic() |
| 1023 | << " " << graph->PrettyMethod(); |
| 1024 | return nullptr; |
| 1025 | } |
| 1026 | |
| 1027 | codegen->Compile(code_allocator); |
| 1028 | pass_observer.DumpDisassembly(); |
| 1029 | |
| 1030 | VLOG(compiler) << "Compiled intrinsic: " << method->GetIntrinsic() |
| 1031 | << " " << graph->PrettyMethod(); |
Vladimir Marko | cd09e1f | 2017-11-24 15:02:40 +0000 | [diff] [blame] | 1032 | MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kCompiledIntrinsic); |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 1033 | return codegen.release(); |
| 1034 | } |
| 1035 | |
Nicolas Geoffray | 216eaa2 | 2015-03-17 17:09:30 +0000 | [diff] [blame] | 1036 | CompiledMethod* OptimizingCompiler::Compile(const DexFile::CodeItem* code_item, |
| 1037 | uint32_t access_flags, |
| 1038 | InvokeType invoke_type, |
| 1039 | uint16_t class_def_idx, |
| 1040 | uint32_t method_idx, |
Vladimir Marko | 8d6768d | 2017-03-14 10:13:21 +0000 | [diff] [blame] | 1041 | Handle<mirror::ClassLoader> jclass_loader, |
Mathieu Chartier | 736b560 | 2015-09-02 14:54:11 -0700 | [diff] [blame] | 1042 | const DexFile& dex_file, |
| 1043 | Handle<mirror::DexCache> dex_cache) const { |
Calin Juravle | f1c6d9e | 2015-04-13 18:42:21 +0100 | [diff] [blame] | 1044 | CompilerDriver* compiler_driver = GetCompilerDriver(); |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 1045 | CompiledMethod* compiled_method = nullptr; |
| 1046 | Runtime* runtime = Runtime::Current(); |
| 1047 | DCHECK(runtime->IsAotCompiler()); |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 1048 | const VerifiedMethod* verified_method = compiler_driver->GetVerifiedMethod(&dex_file, method_idx); |
| 1049 | DCHECK(!verified_method->HasRuntimeThrow()); |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 1050 | if (compiler_driver->IsMethodVerifiedWithoutFailures(method_idx, class_def_idx, dex_file) || |
| 1051 | verifier::CanCompilerHandleVerificationFailure( |
| 1052 | verified_method->GetEncounteredVerificationFailures())) { |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 1053 | ArenaAllocator allocator(runtime->GetArenaPool()); |
| 1054 | ArenaStack arena_stack(runtime->GetArenaPool()); |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 1055 | CodeVectorAllocator code_allocator(&allocator); |
Nicolas Geoffray | 22384ae | 2016-12-12 22:33:36 +0000 | [diff] [blame] | 1056 | std::unique_ptr<CodeGenerator> codegen; |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 1057 | bool compiled_intrinsic = false; |
Nicolas Geoffray | 22384ae | 2016-12-12 22:33:36 +0000 | [diff] [blame] | 1058 | { |
Vladimir Marko | a2c211c | 2018-11-01 09:50:52 +0000 | [diff] [blame^] | 1059 | ScopedObjectAccess soa(Thread::Current()); |
| 1060 | ArtMethod* method = |
| 1061 | runtime->GetClassLinker()->ResolveMethod<ClassLinker::ResolveMode::kCheckICCEAndIAE>( |
| 1062 | method_idx, dex_cache, jclass_loader, /*referrer=*/ nullptr, invoke_type); |
| 1063 | DCHECK_EQ(method == nullptr, soa.Self()->IsExceptionPending()); |
| 1064 | soa.Self()->ClearException(); // Suppress exception if any. |
| 1065 | VariableSizedHandleScope handles(soa.Self()); |
| 1066 | Handle<mirror::Class> compiling_class = |
| 1067 | handles.NewHandle(method != nullptr ? method->GetDeclaringClass() : nullptr); |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 1068 | DexCompilationUnit dex_compilation_unit( |
| 1069 | jclass_loader, |
| 1070 | runtime->GetClassLinker(), |
| 1071 | dex_file, |
| 1072 | code_item, |
| 1073 | class_def_idx, |
| 1074 | method_idx, |
| 1075 | access_flags, |
Vladimir Marko | a2c211c | 2018-11-01 09:50:52 +0000 | [diff] [blame^] | 1076 | /*verified_method=*/ nullptr, // Not needed by the Optimizing compiler. |
| 1077 | dex_cache, |
| 1078 | compiling_class); |
Nicolas Geoffray | 22384ae | 2016-12-12 22:33:36 +0000 | [diff] [blame] | 1079 | // Go to native so that we don't block GC during compilation. |
| 1080 | ScopedThreadSuspension sts(soa.Self(), kNative); |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 1081 | if (method != nullptr && UNLIKELY(method->IsIntrinsic())) { |
| 1082 | DCHECK(compiler_driver->GetCompilerOptions().IsBootImage()); |
| 1083 | codegen.reset( |
| 1084 | TryCompileIntrinsic(&allocator, |
| 1085 | &arena_stack, |
| 1086 | &code_allocator, |
| 1087 | dex_compilation_unit, |
| 1088 | method, |
| 1089 | &handles)); |
| 1090 | if (codegen != nullptr) { |
| 1091 | compiled_intrinsic = true; |
| 1092 | } |
| 1093 | } |
| 1094 | if (codegen == nullptr) { |
| 1095 | codegen.reset( |
| 1096 | TryCompile(&allocator, |
| 1097 | &arena_stack, |
| 1098 | &code_allocator, |
| 1099 | dex_compilation_unit, |
| 1100 | method, |
Nicolas Geoffray | acc56ac | 2018-10-09 08:45:24 +0100 | [diff] [blame] | 1101 | compiler_driver->GetCompilerOptions().IsBaseline(), |
| 1102 | /* osr= */ false, |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 1103 | &handles)); |
| 1104 | } |
Nicolas Geoffray | 22384ae | 2016-12-12 22:33:36 +0000 | [diff] [blame] | 1105 | } |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 1106 | if (codegen.get() != nullptr) { |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 1107 | compiled_method = Emit(&allocator, |
| 1108 | &code_allocator, |
| 1109 | codegen.get(), |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 1110 | compiled_intrinsic ? nullptr : code_item); |
| 1111 | if (compiled_intrinsic) { |
| 1112 | compiled_method->MarkAsIntrinsic(); |
| 1113 | } |
Vladimir Marko | 3a40bf2 | 2016-03-22 16:26:33 +0000 | [diff] [blame] | 1114 | |
| 1115 | if (kArenaAllocatorCountAllocations) { |
Vladimir Marko | 174b2e2 | 2017-10-12 13:34:49 +0100 | [diff] [blame] | 1116 | codegen.reset(); // Release codegen's ScopedArenaAllocator for memory accounting. |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 1117 | size_t total_allocated = allocator.BytesAllocated() + arena_stack.PeakBytesAllocated(); |
| 1118 | if (total_allocated > kArenaAllocatorMemoryReportThreshold) { |
| 1119 | MemStats mem_stats(allocator.GetMemStats()); |
| 1120 | MemStats peak_stats(arena_stack.GetPeakStats()); |
Vladimir Marko | 69d310e | 2017-10-09 14:12:23 +0100 | [diff] [blame] | 1121 | LOG(INFO) << "Used " << total_allocated << " bytes of arena memory for compiling " |
| 1122 | << dex_file.PrettyMethod(method_idx) |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 1123 | << "\n" << Dumpable<MemStats>(mem_stats) |
| 1124 | << "\n" << Dumpable<MemStats>(peak_stats); |
Vladimir Marko | 3a40bf2 | 2016-03-22 16:26:33 +0000 | [diff] [blame] | 1125 | } |
| 1126 | } |
Calin Juravle | f1c6d9e | 2015-04-13 18:42:21 +0100 | [diff] [blame] | 1127 | } |
Nicolas Geoffray | 0c3c266 | 2015-10-15 13:53:04 +0100 | [diff] [blame] | 1128 | } else { |
Igor Murashkin | 1e065a5 | 2017-08-09 13:20:34 -0700 | [diff] [blame] | 1129 | MethodCompilationStat method_stat; |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 1130 | if (compiler_driver->GetCompilerOptions().VerifyAtRuntime()) { |
Igor Murashkin | 1e065a5 | 2017-08-09 13:20:34 -0700 | [diff] [blame] | 1131 | method_stat = MethodCompilationStat::kNotCompiledVerifyAtRuntime; |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 1132 | } else { |
Igor Murashkin | 1e065a5 | 2017-08-09 13:20:34 -0700 | [diff] [blame] | 1133 | method_stat = MethodCompilationStat::kNotCompiledVerificationError; |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 1134 | } |
Igor Murashkin | 1e065a5 | 2017-08-09 13:20:34 -0700 | [diff] [blame] | 1135 | MaybeRecordStat(compilation_stats_.get(), method_stat); |
Calin Juravle | f1c6d9e | 2015-04-13 18:42:21 +0100 | [diff] [blame] | 1136 | } |
| 1137 | |
Calin Juravle | cff8cc7 | 2015-10-09 12:03:24 +0100 | [diff] [blame] | 1138 | if (kIsDebugBuild && |
| 1139 | IsCompilingWithCoreImage() && |
Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 1140 | IsInstructionSetSupported(compiler_driver->GetCompilerOptions().GetInstructionSet())) { |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 1141 | // For testing purposes, we put a special marker on method names |
Goran Jakovljevic | 9c4f0d8f | 2017-04-05 16:27:25 +0200 | [diff] [blame] | 1142 | // that should be compiled with this compiler (when the |
| 1143 | // instruction set is supported). This makes sure we're not |
Roland Levillain | 0d5a281 | 2015-11-13 10:07:31 +0000 | [diff] [blame] | 1144 | // regressing. |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 1145 | std::string method_name = dex_file.PrettyMethod(method_idx); |
Calin Juravle | 09b1d6f | 2015-10-07 12:08:54 +0100 | [diff] [blame] | 1146 | bool shouldCompile = method_name.find("$opt$") != std::string::npos; |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 1147 | DCHECK((compiled_method != nullptr) || !shouldCompile) << "Didn't compile " << method_name; |
Calin Juravle | 09b1d6f | 2015-10-07 12:08:54 +0100 | [diff] [blame] | 1148 | } |
| 1149 | |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 1150 | return compiled_method; |
| 1151 | } |
| 1152 | |
David Srbecky | e7a9194 | 2018-08-01 17:23:53 +0100 | [diff] [blame] | 1153 | static ScopedArenaVector<uint8_t> CreateJniStackMap(ScopedArenaAllocator* allocator, |
| 1154 | const JniCompiledMethod& jni_compiled_method) { |
Vladimir Marko | ced0483 | 2018-07-26 14:42:17 +0100 | [diff] [blame] | 1155 | // StackMapStream is quite large, so allocate it using the ScopedArenaAllocator |
| 1156 | // to stay clear of the frame size limit. |
| 1157 | std::unique_ptr<StackMapStream> stack_map_stream( |
David Srbecky | e7a9194 | 2018-08-01 17:23:53 +0100 | [diff] [blame] | 1158 | new (allocator) StackMapStream(allocator, jni_compiled_method.GetInstructionSet())); |
Vladimir Marko | ced0483 | 2018-07-26 14:42:17 +0100 | [diff] [blame] | 1159 | stack_map_stream->BeginMethod( |
David Srbecky | afc97bc | 2018-07-05 08:14:35 +0000 | [diff] [blame] | 1160 | jni_compiled_method.GetFrameSize(), |
| 1161 | jni_compiled_method.GetCoreSpillMask(), |
| 1162 | jni_compiled_method.GetFpSpillMask(), |
| 1163 | /* num_dex_registers */ 0); |
Vladimir Marko | ced0483 | 2018-07-26 14:42:17 +0100 | [diff] [blame] | 1164 | stack_map_stream->EndMethod(); |
David Srbecky | e7a9194 | 2018-08-01 17:23:53 +0100 | [diff] [blame] | 1165 | return stack_map_stream->Encode(); |
David Srbecky | afc97bc | 2018-07-05 08:14:35 +0000 | [diff] [blame] | 1166 | } |
| 1167 | |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 1168 | CompiledMethod* OptimizingCompiler::JniCompile(uint32_t access_flags, |
| 1169 | uint32_t method_idx, |
| 1170 | const DexFile& dex_file, |
| 1171 | Handle<mirror::DexCache> dex_cache) const { |
David Srbecky | afc97bc | 2018-07-05 08:14:35 +0000 | [diff] [blame] | 1172 | Runtime* runtime = Runtime::Current(); |
| 1173 | ArenaAllocator allocator(runtime->GetArenaPool()); |
| 1174 | ArenaStack arena_stack(runtime->GetArenaPool()); |
| 1175 | |
Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 1176 | const CompilerOptions& compiler_options = GetCompilerDriver()->GetCompilerOptions(); |
| 1177 | if (compiler_options.IsBootImage()) { |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 1178 | ScopedObjectAccess soa(Thread::Current()); |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 1179 | ArtMethod* method = runtime->GetClassLinker()->LookupResolvedMethod( |
Vladimir Marko | a2c211c | 2018-11-01 09:50:52 +0000 | [diff] [blame^] | 1180 | method_idx, dex_cache.Get(), /*class_loader=*/ nullptr); |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 1181 | if (method != nullptr && UNLIKELY(method->IsIntrinsic())) { |
Vladimir Marko | a2c211c | 2018-11-01 09:50:52 +0000 | [diff] [blame^] | 1182 | VariableSizedHandleScope handles(soa.Self()); |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 1183 | ScopedNullHandle<mirror::ClassLoader> class_loader; // null means boot class path loader. |
Vladimir Marko | a2c211c | 2018-11-01 09:50:52 +0000 | [diff] [blame^] | 1184 | Handle<mirror::Class> compiling_class = handles.NewHandle(method->GetDeclaringClass()); |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 1185 | DexCompilationUnit dex_compilation_unit( |
| 1186 | class_loader, |
| 1187 | runtime->GetClassLinker(), |
| 1188 | dex_file, |
Vladimir Marko | a2c211c | 2018-11-01 09:50:52 +0000 | [diff] [blame^] | 1189 | /*code_item=*/ nullptr, |
| 1190 | /*class_def_idx=*/ DexFile::kDexNoIndex16, |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 1191 | method_idx, |
| 1192 | access_flags, |
Vladimir Marko | a2c211c | 2018-11-01 09:50:52 +0000 | [diff] [blame^] | 1193 | /*verified_method=*/ nullptr, |
| 1194 | dex_cache, |
| 1195 | compiling_class); |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 1196 | CodeVectorAllocator code_allocator(&allocator); |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 1197 | // Go to native so that we don't block GC during compilation. |
| 1198 | ScopedThreadSuspension sts(soa.Self(), kNative); |
| 1199 | std::unique_ptr<CodeGenerator> codegen( |
| 1200 | TryCompileIntrinsic(&allocator, |
| 1201 | &arena_stack, |
| 1202 | &code_allocator, |
| 1203 | dex_compilation_unit, |
| 1204 | method, |
| 1205 | &handles)); |
| 1206 | if (codegen != nullptr) { |
| 1207 | CompiledMethod* compiled_method = Emit(&allocator, |
| 1208 | &code_allocator, |
| 1209 | codegen.get(), |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 1210 | /* code_item_for_osr_check */ nullptr); |
| 1211 | compiled_method->MarkAsIntrinsic(); |
| 1212 | return compiled_method; |
| 1213 | } |
| 1214 | } |
| 1215 | } |
| 1216 | |
Vladimir Marko | 7bdc6e7 | 2017-11-28 12:37:13 +0000 | [diff] [blame] | 1217 | JniCompiledMethod jni_compiled_method = ArtQuickJniCompileMethod( |
Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 1218 | compiler_options, access_flags, method_idx, dex_file); |
Vladimir Marko | cd09e1f | 2017-11-24 15:02:40 +0000 | [diff] [blame] | 1219 | MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kCompiledNativeStub); |
David Srbecky | afc97bc | 2018-07-05 08:14:35 +0000 | [diff] [blame] | 1220 | |
David Srbecky | e7a9194 | 2018-08-01 17:23:53 +0100 | [diff] [blame] | 1221 | ScopedArenaAllocator stack_map_allocator(&arena_stack); // Will hold the stack map. |
| 1222 | ScopedArenaVector<uint8_t> stack_map = CreateJniStackMap(&stack_map_allocator, |
| 1223 | jni_compiled_method); |
Vladimir Marko | 7bdc6e7 | 2017-11-28 12:37:13 +0000 | [diff] [blame] | 1224 | return CompiledMethod::SwapAllocCompiledMethod( |
| 1225 | GetCompilerDriver(), |
| 1226 | jni_compiled_method.GetInstructionSet(), |
| 1227 | jni_compiled_method.GetCode(), |
David Srbecky | afc97bc | 2018-07-05 08:14:35 +0000 | [diff] [blame] | 1228 | ArrayRef<const uint8_t>(stack_map), |
Vladimir Marko | 7bdc6e7 | 2017-11-28 12:37:13 +0000 | [diff] [blame] | 1229 | jni_compiled_method.GetCfi(), |
| 1230 | /* patches */ ArrayRef<const linker::LinkerPatch>()); |
Nicolas Geoffray | 216eaa2 | 2015-03-17 17:09:30 +0000 | [diff] [blame] | 1231 | } |
| 1232 | |
Andreas Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 1233 | Compiler* CreateOptimizingCompiler(CompilerDriver* driver) { |
| 1234 | return new OptimizingCompiler(driver); |
| 1235 | } |
| 1236 | |
Nicolas Geoffray | 335005e | 2015-06-25 10:01:47 +0100 | [diff] [blame] | 1237 | bool IsCompilingWithCoreImage() { |
| 1238 | const std::string& image = Runtime::Current()->GetImageLocation(); |
Roland Levillain | 2b03a1f | 2017-06-06 16:09:59 +0100 | [diff] [blame] | 1239 | return CompilerDriver::IsCoreImageFilename(image); |
Nicolas Geoffray | 335005e | 2015-06-25 10:01:47 +0100 | [diff] [blame] | 1240 | } |
| 1241 | |
Nicolas Geoffray | fbdfa6d | 2017-02-03 10:43:13 +0000 | [diff] [blame] | 1242 | bool EncodeArtMethodInInlineInfo(ArtMethod* method ATTRIBUTE_UNUSED) { |
| 1243 | // Note: the runtime is null only for unit testing. |
| 1244 | return Runtime::Current() == nullptr || !Runtime::Current()->IsAotCompiler(); |
| 1245 | } |
| 1246 | |
| 1247 | bool CanEncodeInlinedMethodInStackMap(const DexFile& caller_dex_file, ArtMethod* callee) { |
| 1248 | if (!Runtime::Current()->IsAotCompiler()) { |
| 1249 | // JIT can always encode methods in stack maps. |
| 1250 | return true; |
| 1251 | } |
| 1252 | if (IsSameDexFile(caller_dex_file, *callee->GetDexFile())) { |
| 1253 | return true; |
| 1254 | } |
| 1255 | // TODO(ngeoffray): Support more AOT cases for inlining: |
| 1256 | // - methods in multidex |
| 1257 | // - methods in boot image for on-device non-PIC compilation. |
| 1258 | return false; |
| 1259 | } |
| 1260 | |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 1261 | bool OptimizingCompiler::JitCompile(Thread* self, |
| 1262 | jit::JitCodeCache* code_cache, |
Nicolas Geoffray | b331feb | 2016-02-05 16:51:53 +0000 | [diff] [blame] | 1263 | ArtMethod* method, |
Nicolas Geoffray | acc56ac | 2018-10-09 08:45:24 +0100 | [diff] [blame] | 1264 | bool baseline, |
Nicolas Geoffray | 01db5f7 | 2017-07-19 15:05:49 +0100 | [diff] [blame] | 1265 | bool osr, |
| 1266 | jit::JitLogger* jit_logger) { |
Nicolas Geoffray | 132d836 | 2016-11-16 09:19:42 +0000 | [diff] [blame] | 1267 | StackHandleScope<3> hs(self); |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 1268 | Handle<mirror::ClassLoader> class_loader(hs.NewHandle( |
| 1269 | method->GetDeclaringClass()->GetClassLoader())); |
| 1270 | Handle<mirror::DexCache> dex_cache(hs.NewHandle(method->GetDexCache())); |
Nicolas Geoffray | 250a378 | 2016-04-20 16:27:53 +0100 | [diff] [blame] | 1271 | DCHECK(method->IsCompilable()); |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 1272 | |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 1273 | const DexFile* dex_file = method->GetDexFile(); |
| 1274 | const uint16_t class_def_idx = method->GetClassDefIndex(); |
| 1275 | const DexFile::CodeItem* code_item = dex_file->GetCodeItem(method->GetCodeItemOffset()); |
| 1276 | const uint32_t method_idx = method->GetDexMethodIndex(); |
| 1277 | const uint32_t access_flags = method->GetAccessFlags(); |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 1278 | |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 1279 | Runtime* runtime = Runtime::Current(); |
| 1280 | ArenaAllocator allocator(runtime->GetJitArenaPool()); |
Vladimir Marko | 2196c65 | 2017-11-30 16:16:07 +0000 | [diff] [blame] | 1281 | |
| 1282 | if (UNLIKELY(method->IsNative())) { |
Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 1283 | const CompilerOptions& compiler_options = GetCompilerDriver()->GetCompilerOptions(); |
Vladimir Marko | 2196c65 | 2017-11-30 16:16:07 +0000 | [diff] [blame] | 1284 | JniCompiledMethod jni_compiled_method = ArtQuickJniCompileMethod( |
Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 1285 | compiler_options, access_flags, method_idx, *dex_file); |
Vladimir Marko | ac3ac68 | 2018-09-20 11:01:43 +0100 | [diff] [blame] | 1286 | std::vector<Handle<mirror::Object>> roots; |
Vladimir Marko | 2196c65 | 2017-11-30 16:16:07 +0000 | [diff] [blame] | 1287 | ArenaSet<ArtMethod*, std::less<ArtMethod*>> cha_single_implementation_list( |
| 1288 | allocator.Adapter(kArenaAllocCHA)); |
David Srbecky | afc97bc | 2018-07-05 08:14:35 +0000 | [diff] [blame] | 1289 | ArenaStack arena_stack(runtime->GetJitArenaPool()); |
| 1290 | // StackMapStream is large and it does not fit into this frame, so we need helper method. |
David Srbecky | e7a9194 | 2018-08-01 17:23:53 +0100 | [diff] [blame] | 1291 | ScopedArenaAllocator stack_map_allocator(&arena_stack); // Will hold the stack map. |
| 1292 | ScopedArenaVector<uint8_t> stack_map = CreateJniStackMap(&stack_map_allocator, |
| 1293 | jni_compiled_method); |
David Srbecky | afc97bc | 2018-07-05 08:14:35 +0000 | [diff] [blame] | 1294 | uint8_t* stack_map_data = nullptr; |
David Srbecky | afc97bc | 2018-07-05 08:14:35 +0000 | [diff] [blame] | 1295 | uint8_t* roots_data = nullptr; |
| 1296 | uint32_t data_size = code_cache->ReserveData(self, |
| 1297 | stack_map.size(), |
David Srbecky | afc97bc | 2018-07-05 08:14:35 +0000 | [diff] [blame] | 1298 | /* number_of_roots */ 0, |
| 1299 | method, |
| 1300 | &stack_map_data, |
David Srbecky | afc97bc | 2018-07-05 08:14:35 +0000 | [diff] [blame] | 1301 | &roots_data); |
| 1302 | if (stack_map_data == nullptr || roots_data == nullptr) { |
| 1303 | MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kJitOutOfMemoryForCommit); |
| 1304 | return false; |
| 1305 | } |
| 1306 | memcpy(stack_map_data, stack_map.data(), stack_map.size()); |
David Srbecky | afc97bc | 2018-07-05 08:14:35 +0000 | [diff] [blame] | 1307 | |
Vladimir Marko | 2196c65 | 2017-11-30 16:16:07 +0000 | [diff] [blame] | 1308 | const void* code = code_cache->CommitCode( |
| 1309 | self, |
| 1310 | method, |
David Srbecky | afc97bc | 2018-07-05 08:14:35 +0000 | [diff] [blame] | 1311 | stack_map_data, |
David Srbecky | afc97bc | 2018-07-05 08:14:35 +0000 | [diff] [blame] | 1312 | roots_data, |
Vladimir Marko | 2196c65 | 2017-11-30 16:16:07 +0000 | [diff] [blame] | 1313 | jni_compiled_method.GetCode().data(), |
| 1314 | jni_compiled_method.GetCode().size(), |
David Srbecky | afc97bc | 2018-07-05 08:14:35 +0000 | [diff] [blame] | 1315 | data_size, |
Vladimir Marko | 2196c65 | 2017-11-30 16:16:07 +0000 | [diff] [blame] | 1316 | osr, |
| 1317 | roots, |
| 1318 | /* has_should_deoptimize_flag */ false, |
| 1319 | cha_single_implementation_list); |
| 1320 | if (code == nullptr) { |
| 1321 | return false; |
| 1322 | } |
| 1323 | |
David Srbecky | f4886df | 2017-12-11 16:06:29 +0000 | [diff] [blame] | 1324 | if (compiler_options.GenerateAnyDebugInfo()) { |
Vladimir Marko | 2196c65 | 2017-11-30 16:16:07 +0000 | [diff] [blame] | 1325 | const auto* method_header = reinterpret_cast<const OatQuickMethodHeader*>(code); |
| 1326 | const uintptr_t code_address = reinterpret_cast<uintptr_t>(method_header->GetCode()); |
| 1327 | debug::MethodDebugInfo info = {}; |
David Srbecky | c684f33 | 2018-01-19 17:38:06 +0000 | [diff] [blame] | 1328 | DCHECK(info.custom_name.empty()); |
Vladimir Marko | 2196c65 | 2017-11-30 16:16:07 +0000 | [diff] [blame] | 1329 | info.dex_file = dex_file; |
| 1330 | info.class_def_index = class_def_idx; |
| 1331 | info.dex_method_index = method_idx; |
| 1332 | info.access_flags = access_flags; |
| 1333 | info.code_item = code_item; |
| 1334 | info.isa = jni_compiled_method.GetInstructionSet(); |
| 1335 | info.deduped = false; |
| 1336 | info.is_native_debuggable = compiler_options.GetNativeDebuggable(); |
| 1337 | info.is_optimized = true; |
| 1338 | info.is_code_address_text_relative = false; |
| 1339 | info.code_address = code_address; |
| 1340 | info.code_size = jni_compiled_method.GetCode().size(); |
| 1341 | info.frame_size_in_bytes = method_header->GetFrameSizeInBytes(); |
| 1342 | info.code_info = nullptr; |
| 1343 | info.cfi = jni_compiled_method.GetCfi(); |
David Srbecky | c9e0208 | 2018-01-24 16:44:02 +0000 | [diff] [blame] | 1344 | GenerateJitDebugInfo(method, info); |
Vladimir Marko | 2196c65 | 2017-11-30 16:16:07 +0000 | [diff] [blame] | 1345 | } |
| 1346 | |
| 1347 | Runtime::Current()->GetJit()->AddMemoryUsage(method, allocator.BytesUsed()); |
| 1348 | if (jit_logger != nullptr) { |
| 1349 | jit_logger->WriteLog(code, jni_compiled_method.GetCode().size(), method); |
| 1350 | } |
| 1351 | return true; |
| 1352 | } |
| 1353 | |
| 1354 | ArenaStack arena_stack(runtime->GetJitArenaPool()); |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 1355 | CodeVectorAllocator code_allocator(&allocator); |
Nicolas Geoffray | 22384ae | 2016-12-12 22:33:36 +0000 | [diff] [blame] | 1356 | VariableSizedHandleScope handles(self); |
| 1357 | |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 1358 | std::unique_ptr<CodeGenerator> codegen; |
| 1359 | { |
Vladimir Marko | a2c211c | 2018-11-01 09:50:52 +0000 | [diff] [blame^] | 1360 | Handle<mirror::Class> compiling_class = handles.NewHandle(method->GetDeclaringClass()); |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 1361 | DexCompilationUnit dex_compilation_unit( |
| 1362 | class_loader, |
| 1363 | runtime->GetClassLinker(), |
| 1364 | *dex_file, |
| 1365 | code_item, |
| 1366 | class_def_idx, |
| 1367 | method_idx, |
| 1368 | access_flags, |
Vladimir Marko | a2c211c | 2018-11-01 09:50:52 +0000 | [diff] [blame^] | 1369 | /*verified_method=*/ nullptr, |
| 1370 | dex_cache, |
| 1371 | compiling_class); |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 1372 | |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 1373 | // Go to native so that we don't block GC during compilation. |
| 1374 | ScopedThreadSuspension sts(self, kNative); |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 1375 | codegen.reset( |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 1376 | TryCompile(&allocator, |
| 1377 | &arena_stack, |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 1378 | &code_allocator, |
Vladimir Marko | 92f7f3c | 2017-10-31 11:38:30 +0000 | [diff] [blame] | 1379 | dex_compilation_unit, |
Nicolas Geoffray | 3aaf964 | 2016-06-07 14:14:37 +0000 | [diff] [blame] | 1380 | method, |
Nicolas Geoffray | acc56ac | 2018-10-09 08:45:24 +0100 | [diff] [blame] | 1381 | baseline, |
Nicolas Geoffray | 22384ae | 2016-12-12 22:33:36 +0000 | [diff] [blame] | 1382 | osr, |
| 1383 | &handles)); |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 1384 | if (codegen.get() == nullptr) { |
| 1385 | return false; |
| 1386 | } |
| 1387 | } |
| 1388 | |
David Srbecky | e7a9194 | 2018-08-01 17:23:53 +0100 | [diff] [blame] | 1389 | ScopedArenaVector<uint8_t> stack_map = codegen->BuildStackMaps(code_item); |
Nicolas Geoffray | 132d836 | 2016-11-16 09:19:42 +0000 | [diff] [blame] | 1390 | size_t number_of_roots = codegen->GetNumberOfJitRoots(); |
Nicolas Geoffray | 132d836 | 2016-11-16 09:19:42 +0000 | [diff] [blame] | 1391 | uint8_t* stack_map_data = nullptr; |
| 1392 | uint8_t* roots_data = nullptr; |
Orion Hodson | dbd05fe | 2017-08-10 11:41:35 +0100 | [diff] [blame] | 1393 | uint32_t data_size = code_cache->ReserveData(self, |
David Srbecky | e7a9194 | 2018-08-01 17:23:53 +0100 | [diff] [blame] | 1394 | stack_map.size(), |
Orion Hodson | dbd05fe | 2017-08-10 11:41:35 +0100 | [diff] [blame] | 1395 | number_of_roots, |
| 1396 | method, |
| 1397 | &stack_map_data, |
Orion Hodson | dbd05fe | 2017-08-10 11:41:35 +0100 | [diff] [blame] | 1398 | &roots_data); |
Nicolas Geoffray | 132d836 | 2016-11-16 09:19:42 +0000 | [diff] [blame] | 1399 | if (stack_map_data == nullptr || roots_data == nullptr) { |
Vladimir Marko | cd09e1f | 2017-11-24 15:02:40 +0000 | [diff] [blame] | 1400 | MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kJitOutOfMemoryForCommit); |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 1401 | return false; |
| 1402 | } |
David Srbecky | e7a9194 | 2018-08-01 17:23:53 +0100 | [diff] [blame] | 1403 | memcpy(stack_map_data, stack_map.data(), stack_map.size()); |
Vladimir Marko | ac3ac68 | 2018-09-20 11:01:43 +0100 | [diff] [blame] | 1404 | std::vector<Handle<mirror::Object>> roots; |
| 1405 | codegen->EmitJitRoots(code_allocator.GetData(), roots_data, &roots); |
| 1406 | // The root Handle<>s filled by the codegen reference entries in the VariableSizedHandleScope. |
| 1407 | DCHECK(std::all_of(roots.begin(), |
| 1408 | roots.end(), |
| 1409 | [&handles](Handle<mirror::Object> root){ |
| 1410 | return handles.Contains(root.GetReference()); |
| 1411 | })); |
Nicolas Geoffray | 132d836 | 2016-11-16 09:19:42 +0000 | [diff] [blame] | 1412 | |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 1413 | const void* code = code_cache->CommitCode( |
| 1414 | self, |
| 1415 | method, |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 1416 | stack_map_data, |
Nicolas Geoffray | 132d836 | 2016-11-16 09:19:42 +0000 | [diff] [blame] | 1417 | roots_data, |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 1418 | code_allocator.GetMemory().data(), |
Vladimir Marko | ca1e038 | 2018-04-11 09:58:41 +0000 | [diff] [blame] | 1419 | code_allocator.GetMemory().size(), |
Orion Hodson | dbd05fe | 2017-08-10 11:41:35 +0100 | [diff] [blame] | 1420 | data_size, |
Nicolas Geoffray | 132d836 | 2016-11-16 09:19:42 +0000 | [diff] [blame] | 1421 | osr, |
Mingyao Yang | 063fc77 | 2016-08-02 11:02:54 -0700 | [diff] [blame] | 1422 | roots, |
| 1423 | codegen->GetGraph()->HasShouldDeoptimizeFlag(), |
| 1424 | codegen->GetGraph()->GetCHASingleImplementationList()); |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 1425 | |
| 1426 | if (code == nullptr) { |
Vladimir Marko | cd09e1f | 2017-11-24 15:02:40 +0000 | [diff] [blame] | 1427 | MaybeRecordStat(compilation_stats_.get(), MethodCompilationStat::kJitOutOfMemoryForCommit); |
Nicolas Geoffray | f46501c | 2016-11-22 13:45:36 +0000 | [diff] [blame] | 1428 | code_cache->ClearData(self, stack_map_data, roots_data); |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 1429 | return false; |
| 1430 | } |
| 1431 | |
David Srbecky | 91cc06c | 2016-03-07 16:13:58 +0000 | [diff] [blame] | 1432 | const CompilerOptions& compiler_options = GetCompilerDriver()->GetCompilerOptions(); |
David Srbecky | f4886df | 2017-12-11 16:06:29 +0000 | [diff] [blame] | 1433 | if (compiler_options.GenerateAnyDebugInfo()) { |
David Srbecky | 5cc349f | 2015-12-18 15:04:48 +0000 | [diff] [blame] | 1434 | const auto* method_header = reinterpret_cast<const OatQuickMethodHeader*>(code); |
| 1435 | const uintptr_t code_address = reinterpret_cast<uintptr_t>(method_header->GetCode()); |
Vladimir Marko | 1b404a8 | 2017-09-01 13:35:26 +0100 | [diff] [blame] | 1436 | debug::MethodDebugInfo info = {}; |
David Srbecky | c684f33 | 2018-01-19 17:38:06 +0000 | [diff] [blame] | 1437 | DCHECK(info.custom_name.empty()); |
David Srbecky | 197160d | 2016-03-07 17:33:57 +0000 | [diff] [blame] | 1438 | info.dex_file = dex_file; |
| 1439 | info.class_def_index = class_def_idx; |
| 1440 | info.dex_method_index = method_idx; |
| 1441 | info.access_flags = access_flags; |
| 1442 | info.code_item = code_item; |
| 1443 | info.isa = codegen->GetInstructionSet(); |
| 1444 | info.deduped = false; |
| 1445 | info.is_native_debuggable = compiler_options.GetNativeDebuggable(); |
| 1446 | info.is_optimized = true; |
| 1447 | info.is_code_address_text_relative = false; |
| 1448 | info.code_address = code_address; |
Vladimir Marko | ca1e038 | 2018-04-11 09:58:41 +0000 | [diff] [blame] | 1449 | info.code_size = code_allocator.GetMemory().size(); |
David Srbecky | 197160d | 2016-03-07 17:33:57 +0000 | [diff] [blame] | 1450 | info.frame_size_in_bytes = method_header->GetFrameSizeInBytes(); |
David Srbecky | e7a9194 | 2018-08-01 17:23:53 +0100 | [diff] [blame] | 1451 | info.code_info = stack_map.size() == 0 ? nullptr : stack_map_data; |
David Srbecky | 197160d | 2016-03-07 17:33:57 +0000 | [diff] [blame] | 1452 | info.cfi = ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data()); |
David Srbecky | c9e0208 | 2018-01-24 16:44:02 +0000 | [diff] [blame] | 1453 | GenerateJitDebugInfo(method, info); |
David Srbecky | 5cc349f | 2015-12-18 15:04:48 +0000 | [diff] [blame] | 1454 | } |
| 1455 | |
Vladimir Marko | ca6fff8 | 2017-10-03 14:49:14 +0100 | [diff] [blame] | 1456 | Runtime::Current()->GetJit()->AddMemoryUsage(method, allocator.BytesUsed()); |
Nicolas Geoffray | 01db5f7 | 2017-07-19 15:05:49 +0100 | [diff] [blame] | 1457 | if (jit_logger != nullptr) { |
Vladimir Marko | ca1e038 | 2018-04-11 09:58:41 +0000 | [diff] [blame] | 1458 | jit_logger->WriteLog(code, code_allocator.GetMemory().size(), method); |
Nicolas Geoffray | 01db5f7 | 2017-07-19 15:05:49 +0100 | [diff] [blame] | 1459 | } |
Nicolas Geoffray | a4f8154 | 2016-03-08 16:57:48 +0000 | [diff] [blame] | 1460 | |
Vladimir Marko | 174b2e2 | 2017-10-12 13:34:49 +0100 | [diff] [blame] | 1461 | if (kArenaAllocatorCountAllocations) { |
| 1462 | codegen.reset(); // Release codegen's ScopedArenaAllocator for memory accounting. |
| 1463 | size_t total_allocated = allocator.BytesAllocated() + arena_stack.PeakBytesAllocated(); |
| 1464 | if (total_allocated > kArenaAllocatorMemoryReportThreshold) { |
| 1465 | MemStats mem_stats(allocator.GetMemStats()); |
| 1466 | MemStats peak_stats(arena_stack.GetPeakStats()); |
| 1467 | LOG(INFO) << "Used " << total_allocated << " bytes of arena memory for compiling " |
| 1468 | << dex_file->PrettyMethod(method_idx) |
| 1469 | << "\n" << Dumpable<MemStats>(mem_stats) |
| 1470 | << "\n" << Dumpable<MemStats>(peak_stats); |
| 1471 | } |
| 1472 | } |
| 1473 | |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 1474 | return true; |
| 1475 | } |
| 1476 | |
Stephen Hines | 48ba197 | 2018-09-24 13:35:54 -0700 | [diff] [blame] | 1477 | void OptimizingCompiler::GenerateJitDebugInfo( |
| 1478 | ArtMethod* method, const debug::MethodDebugInfo& info) { |
David Srbecky | c684f33 | 2018-01-19 17:38:06 +0000 | [diff] [blame] | 1479 | const CompilerOptions& compiler_options = GetCompilerDriver()->GetCompilerOptions(); |
| 1480 | DCHECK(compiler_options.GenerateAnyDebugInfo()); |
| 1481 | |
| 1482 | // If both flags are passed, generate full debug info. |
| 1483 | const bool mini_debug_info = !compiler_options.GetGenerateDebugInfo(); |
| 1484 | |
| 1485 | // Create entry for the single method that we just compiled. |
| 1486 | std::vector<uint8_t> elf_file = debug::MakeElfFileForJIT( |
Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 1487 | compiler_options.GetInstructionSet(), |
| 1488 | compiler_options.GetInstructionSetFeatures(), |
David Srbecky | c684f33 | 2018-01-19 17:38:06 +0000 | [diff] [blame] | 1489 | mini_debug_info, |
| 1490 | ArrayRef<const debug::MethodDebugInfo>(&info, 1)); |
David Srbecky | fb3de3d | 2018-01-29 16:11:49 +0000 | [diff] [blame] | 1491 | MutexLock mu(Thread::Current(), *Locks::native_debug_interface_lock_); |
David Srbecky | 440a9b3 | 2018-02-15 17:47:29 +0000 | [diff] [blame] | 1492 | AddNativeDebugInfoForJit(reinterpret_cast<const void*>(info.code_address), elf_file); |
David Srbecky | c9e0208 | 2018-01-24 16:44:02 +0000 | [diff] [blame] | 1493 | |
| 1494 | VLOG(jit) |
| 1495 | << "JIT mini-debug-info added for " << ArtMethod::PrettyMethod(method) |
| 1496 | << " size=" << PrettySize(elf_file.size()) |
David Srbecky | 440a9b3 | 2018-02-15 17:47:29 +0000 | [diff] [blame] | 1497 | << " total_size=" << PrettySize(GetJitNativeDebugInfoMemUsage()); |
David Srbecky | c684f33 | 2018-01-19 17:38:06 +0000 | [diff] [blame] | 1498 | } |
| 1499 | |
Nicolas Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame] | 1500 | } // namespace art |