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