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