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