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