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