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> |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 20 | #include <stdint.h> |
| 21 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 22 | #include "art_method-inl.h" |
Mathieu Chartier | b666f48 | 2015-02-18 14:33:14 -0800 | [diff] [blame] | 23 | #include "base/arena_allocator.h" |
David Brazdil | 5e8b137 | 2015-01-23 14:39:08 +0000 | [diff] [blame] | 24 | #include "base/dumpable.h" |
| 25 | #include "base/timing_logger.h" |
David Brazdil | 46e2a39 | 2015-03-16 17:31:52 +0000 | [diff] [blame] | 26 | #include "boolean_simplifier.h" |
Mingyao Yang | f384f88 | 2014-10-22 16:08:18 -0700 | [diff] [blame] | 27 | #include "bounds_check_elimination.h" |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 28 | #include "builder.h" |
| 29 | #include "code_generator.h" |
Vladimir Marko | 20f8559 | 2015-03-19 10:07:02 +0000 | [diff] [blame] | 30 | #include "compiled_method.h" |
Andreas Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 31 | #include "compiler.h" |
Roland Levillain | 75be283 | 2014-10-17 17:02:00 +0100 | [diff] [blame] | 32 | #include "constant_folding.h" |
| 33 | #include "dead_code_elimination.h" |
Andreas Gampe | 71fb52f | 2014-12-29 17:43:08 -0800 | [diff] [blame] | 34 | #include "dex/quick/dex_file_to_method_inliner_map.h" |
Calin Juravle | f1c6d9e | 2015-04-13 18:42:21 +0100 | [diff] [blame] | 35 | #include "dex/verified_method.h" |
| 36 | #include "dex/verification_results.h" |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 37 | #include "driver/compiler_driver.h" |
Vladimir Marko | 20f8559 | 2015-03-19 10:07:02 +0000 | [diff] [blame] | 38 | #include "driver/compiler_options.h" |
Nicolas Geoffray | 92cf83e | 2014-03-18 17:59:20 +0000 | [diff] [blame] | 39 | #include "driver/dex_compilation_unit.h" |
Nicolas Geoffray | e2dc6fa | 2014-11-17 12:55:12 +0000 | [diff] [blame] | 40 | #include "elf_writer_quick.h" |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 41 | #include "graph_checker.h" |
Nicolas Geoffray | f635e63 | 2014-05-14 09:43:38 +0100 | [diff] [blame] | 42 | #include "graph_visualizer.h" |
Nicolas Geoffray | d31cf3d | 2014-09-08 17:30:24 +0100 | [diff] [blame] | 43 | #include "gvn.h" |
Nicolas Geoffray | e53798a | 2014-12-01 10:31:54 +0000 | [diff] [blame] | 44 | #include "inliner.h" |
Nicolas Geoffray | 3c04974 | 2014-09-24 18:10:46 +0100 | [diff] [blame] | 45 | #include "instruction_simplifier.h" |
Andreas Gampe | 71fb52f | 2014-12-29 17:43:08 -0800 | [diff] [blame] | 46 | #include "intrinsics.h" |
Nicolas Geoffray | 82091da | 2015-01-26 10:02:45 +0000 | [diff] [blame] | 47 | #include "licm.h" |
Nicolas Geoffray | e2dc6fa | 2014-11-17 12:55:12 +0000 | [diff] [blame] | 48 | #include "jni/quick/jni_compiler.h" |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 49 | #include "nodes.h" |
Nicolas Geoffray | 26a25ef | 2014-09-30 13:54:09 +0100 | [diff] [blame] | 50 | #include "prepare_for_register_allocation.h" |
Calin Juravle | f1c6d9e | 2015-04-13 18:42:21 +0100 | [diff] [blame] | 51 | #include "reference_type_propagation.h" |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 52 | #include "register_allocator.h" |
Nicolas Geoffray | 827eedb | 2015-01-26 15:18:36 +0000 | [diff] [blame] | 53 | #include "side_effects_analysis.h" |
Nicolas Geoffray | 3159674 | 2014-11-24 15:28:45 +0000 | [diff] [blame] | 54 | #include "ssa_builder.h" |
Nicolas Geoffray | 7dc206a | 2014-07-11 09:49:49 +0100 | [diff] [blame] | 55 | #include "ssa_phi_elimination.h" |
Nicolas Geoffray | 804d093 | 2014-05-02 08:46:00 +0100 | [diff] [blame] | 56 | #include "ssa_liveness_analysis.h" |
David Srbecky | c6b4dd8 | 2015-04-07 20:32:43 +0100 | [diff] [blame] | 57 | #include "utils/assembler.h" |
Nicolas Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame] | 58 | |
| 59 | namespace art { |
| 60 | |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 61 | /** |
| 62 | * Used by the code generator, to allocate the code in a vector. |
| 63 | */ |
| 64 | class CodeVectorAllocator FINAL : public CodeAllocator { |
| 65 | public: |
Andreas Gampe | 7c3952f | 2015-02-19 18:21:24 -0800 | [diff] [blame] | 66 | CodeVectorAllocator() : size_(0) {} |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 67 | |
| 68 | virtual uint8_t* Allocate(size_t size) { |
| 69 | size_ = size; |
Nicolas Geoffray | 92cf83e | 2014-03-18 17:59:20 +0000 | [diff] [blame] | 70 | memory_.resize(size); |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 71 | return &memory_[0]; |
| 72 | } |
| 73 | |
| 74 | size_t GetSize() const { return size_; } |
Nicolas Geoffray | 92cf83e | 2014-03-18 17:59:20 +0000 | [diff] [blame] | 75 | const std::vector<uint8_t>& GetMemory() const { return memory_; } |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 76 | |
| 77 | private: |
| 78 | std::vector<uint8_t> memory_; |
| 79 | size_t size_; |
| 80 | |
| 81 | DISALLOW_COPY_AND_ASSIGN(CodeVectorAllocator); |
| 82 | }; |
| 83 | |
Nicolas Geoffray | f635e63 | 2014-05-14 09:43:38 +0100 | [diff] [blame] | 84 | /** |
Nicolas Geoffray | f635e63 | 2014-05-14 09:43:38 +0100 | [diff] [blame] | 85 | * 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] | 86 | * be dumped. |
Nicolas Geoffray | f635e63 | 2014-05-14 09:43:38 +0100 | [diff] [blame] | 87 | */ |
| 88 | static const char* kStringFilter = ""; |
| 89 | |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 90 | class PassScope; |
David Brazdil | 809658e | 2015-02-05 11:34:02 +0000 | [diff] [blame] | 91 | |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 92 | class PassObserver : public ValueObject { |
David Brazdil | 5e8b137 | 2015-01-23 14:39:08 +0000 | [diff] [blame] | 93 | public: |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 94 | PassObserver(HGraph* graph, |
| 95 | const char* method_name, |
| 96 | CodeGenerator* codegen, |
| 97 | std::ostream* visualizer_output, |
| 98 | CompilerDriver* compiler_driver) |
| 99 | : graph_(graph), |
| 100 | method_name_(method_name), |
David Brazdil | 809658e | 2015-02-05 11:34:02 +0000 | [diff] [blame] | 101 | timing_logger_enabled_(compiler_driver->GetDumpPasses()), |
David Brazdil | 5e8b137 | 2015-01-23 14:39:08 +0000 | [diff] [blame] | 102 | timing_logger_(method_name, true, true), |
Alexandre Rames | eb7b739 | 2015-06-19 14:47:01 +0100 | [diff] [blame] | 103 | disasm_info_(graph->GetArena()), |
David Brazdil | 809658e | 2015-02-05 11:34:02 +0000 | [diff] [blame] | 104 | visualizer_enabled_(!compiler_driver->GetDumpCfgFileName().empty()), |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 105 | visualizer_(visualizer_output, graph, *codegen), |
| 106 | graph_in_bad_state_(false) { |
David Brazdil | 5e8b137 | 2015-01-23 14:39:08 +0000 | [diff] [blame] | 107 | if (strstr(method_name, kStringFilter) == nullptr) { |
| 108 | timing_logger_enabled_ = visualizer_enabled_ = false; |
| 109 | } |
David Brazdil | 62e074f | 2015-04-07 18:09:37 +0100 | [diff] [blame] | 110 | if (visualizer_enabled_) { |
| 111 | visualizer_.PrintHeader(method_name_); |
Alexandre Rames | eb7b739 | 2015-06-19 14:47:01 +0100 | [diff] [blame] | 112 | codegen->SetDisassemblyInformation(&disasm_info_); |
David Brazdil | 62e074f | 2015-04-07 18:09:37 +0100 | [diff] [blame] | 113 | } |
David Brazdil | 5e8b137 | 2015-01-23 14:39:08 +0000 | [diff] [blame] | 114 | } |
| 115 | |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 116 | ~PassObserver() { |
David Brazdil | 5e8b137 | 2015-01-23 14:39:08 +0000 | [diff] [blame] | 117 | if (timing_logger_enabled_) { |
David Brazdil | 5e8b137 | 2015-01-23 14:39:08 +0000 | [diff] [blame] | 118 | LOG(INFO) << "TIMINGS " << method_name_; |
| 119 | LOG(INFO) << Dumpable<TimingLogger>(timing_logger_); |
| 120 | } |
| 121 | } |
| 122 | |
Alexandre Rames | eb7b739 | 2015-06-19 14:47:01 +0100 | [diff] [blame] | 123 | void DumpDisassembly() const { |
| 124 | if (visualizer_enabled_) { |
| 125 | visualizer_.DumpGraphWithDisassembly(); |
| 126 | } |
| 127 | } |
| 128 | |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 129 | void SetGraphInBadState() { graph_in_bad_state_ = true; } |
| 130 | |
David Brazdil | 5e8b137 | 2015-01-23 14:39:08 +0000 | [diff] [blame] | 131 | private: |
David Brazdil | 809658e | 2015-02-05 11:34:02 +0000 | [diff] [blame] | 132 | void StartPass(const char* pass_name) { |
| 133 | // Dump graph first, then start timer. |
| 134 | if (visualizer_enabled_) { |
David Brazdil | ffee3d3 | 2015-07-06 11:48:53 +0100 | [diff] [blame^] | 135 | visualizer_.DumpGraph(pass_name, /* is_after_pass */ false, graph_in_bad_state_); |
David Brazdil | 809658e | 2015-02-05 11:34:02 +0000 | [diff] [blame] | 136 | } |
| 137 | if (timing_logger_enabled_) { |
| 138 | timing_logger_.StartTiming(pass_name); |
| 139 | } |
| 140 | } |
| 141 | |
| 142 | void EndPass(const char* pass_name) { |
| 143 | // Pause timer first, then dump graph. |
| 144 | if (timing_logger_enabled_) { |
| 145 | timing_logger_.EndTiming(); |
| 146 | } |
| 147 | if (visualizer_enabled_) { |
David Brazdil | ffee3d3 | 2015-07-06 11:48:53 +0100 | [diff] [blame^] | 148 | visualizer_.DumpGraph(pass_name, /* is_after_pass */ true, graph_in_bad_state_); |
David Brazdil | 809658e | 2015-02-05 11:34:02 +0000 | [diff] [blame] | 149 | } |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 150 | |
| 151 | // Validate the HGraph if running in debug mode. |
| 152 | if (kIsDebugBuild) { |
| 153 | if (!graph_in_bad_state_) { |
| 154 | if (graph_->IsInSsaForm()) { |
| 155 | SSAChecker checker(graph_->GetArena(), graph_); |
| 156 | checker.Run(); |
| 157 | if (!checker.IsValid()) { |
| 158 | LOG(FATAL) << "Error after " << pass_name << ": " << Dumpable<SSAChecker>(checker); |
| 159 | } |
| 160 | } else { |
| 161 | GraphChecker checker(graph_->GetArena(), graph_); |
| 162 | checker.Run(); |
| 163 | if (!checker.IsValid()) { |
| 164 | LOG(FATAL) << "Error after " << pass_name << ": " << Dumpable<GraphChecker>(checker); |
| 165 | } |
| 166 | } |
| 167 | } |
| 168 | } |
David Brazdil | 809658e | 2015-02-05 11:34:02 +0000 | [diff] [blame] | 169 | } |
| 170 | |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 171 | HGraph* const graph_; |
David Brazdil | 5e8b137 | 2015-01-23 14:39:08 +0000 | [diff] [blame] | 172 | const char* method_name_; |
| 173 | |
| 174 | bool timing_logger_enabled_; |
David Brazdil | 5e8b137 | 2015-01-23 14:39:08 +0000 | [diff] [blame] | 175 | TimingLogger timing_logger_; |
| 176 | |
Alexandre Rames | eb7b739 | 2015-06-19 14:47:01 +0100 | [diff] [blame] | 177 | DisassemblyInformation disasm_info_; |
| 178 | |
David Brazdil | 5e8b137 | 2015-01-23 14:39:08 +0000 | [diff] [blame] | 179 | bool visualizer_enabled_; |
| 180 | HGraphVisualizer visualizer_; |
| 181 | |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 182 | // Flag to be set by the compiler if the pass failed and the graph is not |
| 183 | // expected to validate. |
| 184 | bool graph_in_bad_state_; |
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 | friend PassScope; |
| 187 | |
| 188 | DISALLOW_COPY_AND_ASSIGN(PassObserver); |
David Brazdil | 5e8b137 | 2015-01-23 14:39:08 +0000 | [diff] [blame] | 189 | }; |
| 190 | |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 191 | class PassScope : public ValueObject { |
David Brazdil | 809658e | 2015-02-05 11:34:02 +0000 | [diff] [blame] | 192 | public: |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 193 | PassScope(const char *pass_name, PassObserver* pass_observer) |
David Brazdil | 809658e | 2015-02-05 11:34:02 +0000 | [diff] [blame] | 194 | : pass_name_(pass_name), |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 195 | pass_observer_(pass_observer) { |
| 196 | pass_observer_->StartPass(pass_name_); |
David Brazdil | 809658e | 2015-02-05 11:34:02 +0000 | [diff] [blame] | 197 | } |
| 198 | |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 199 | ~PassScope() { |
| 200 | pass_observer_->EndPass(pass_name_); |
David Brazdil | 809658e | 2015-02-05 11:34:02 +0000 | [diff] [blame] | 201 | } |
| 202 | |
| 203 | private: |
| 204 | const char* const pass_name_; |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 205 | PassObserver* const pass_observer_; |
David Brazdil | 809658e | 2015-02-05 11:34:02 +0000 | [diff] [blame] | 206 | }; |
| 207 | |
Andreas Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 208 | class OptimizingCompiler FINAL : public Compiler { |
| 209 | public: |
| 210 | explicit OptimizingCompiler(CompilerDriver* driver); |
Nicolas Geoffray | 88157ef | 2014-09-12 10:29:53 +0100 | [diff] [blame] | 211 | ~OptimizingCompiler(); |
Andreas Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 212 | |
| 213 | bool CanCompileMethod(uint32_t method_idx, const DexFile& dex_file, CompilationUnit* cu) const |
| 214 | OVERRIDE; |
| 215 | |
| 216 | CompiledMethod* Compile(const DexFile::CodeItem* code_item, |
| 217 | uint32_t access_flags, |
| 218 | InvokeType invoke_type, |
| 219 | uint16_t class_def_idx, |
| 220 | uint32_t method_idx, |
| 221 | jobject class_loader, |
| 222 | const DexFile& dex_file) const OVERRIDE; |
| 223 | |
Nicolas Geoffray | 216eaa2 | 2015-03-17 17:09:30 +0000 | [diff] [blame] | 224 | CompiledMethod* TryCompile(const DexFile::CodeItem* code_item, |
| 225 | uint32_t access_flags, |
| 226 | InvokeType invoke_type, |
| 227 | uint16_t class_def_idx, |
| 228 | uint32_t method_idx, |
| 229 | jobject class_loader, |
| 230 | const DexFile& dex_file) const; |
| 231 | |
Andreas Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 232 | CompiledMethod* JniCompile(uint32_t access_flags, |
| 233 | uint32_t method_idx, |
Nicolas Geoffray | 216eaa2 | 2015-03-17 17:09:30 +0000 | [diff] [blame] | 234 | const DexFile& dex_file) const OVERRIDE { |
| 235 | return ArtQuickJniCompileMethod(GetCompilerDriver(), access_flags, method_idx, dex_file); |
| 236 | } |
Andreas Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 237 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 238 | uintptr_t GetEntryPointOf(ArtMethod* method) const OVERRIDE |
Nicolas Geoffray | 216eaa2 | 2015-03-17 17:09:30 +0000 | [diff] [blame] | 239 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 240 | return reinterpret_cast<uintptr_t>(method->GetEntryPointFromQuickCompiledCodePtrSize( |
| 241 | InstructionSetPointerSize(GetCompilerDriver()->GetInstructionSet()))); |
| 242 | } |
Andreas Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 243 | |
Nicolas Geoffray | 216eaa2 | 2015-03-17 17:09:30 +0000 | [diff] [blame] | 244 | void InitCompilationUnit(CompilationUnit& cu) const OVERRIDE; |
Andreas Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 245 | |
David Brazdil | ee690a3 | 2014-12-01 17:04:16 +0000 | [diff] [blame] | 246 | void Init() OVERRIDE; |
Andreas Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 247 | |
Nicolas Geoffray | 216eaa2 | 2015-03-17 17:09:30 +0000 | [diff] [blame] | 248 | void UnInit() const OVERRIDE; |
Andreas Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 249 | |
Calin Juravle | 2be39e0 | 2015-04-21 13:56:34 +0100 | [diff] [blame] | 250 | void MaybeRecordStat(MethodCompilationStat compilation_stat) const { |
| 251 | if (compilation_stats_.get() != nullptr) { |
| 252 | compilation_stats_->RecordStat(compilation_stat); |
| 253 | } |
| 254 | } |
| 255 | |
Andreas Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 256 | private: |
Nicolas Geoffray | 88157ef | 2014-09-12 10:29:53 +0100 | [diff] [blame] | 257 | // Whether we should run any optimization or register allocation. If false, will |
| 258 | // just run the code generation after the graph was built. |
| 259 | const bool run_optimizations_; |
Calin Juravle | 48c2b03 | 2014-12-09 18:11:36 +0000 | [diff] [blame] | 260 | |
Nicolas Geoffray | 12df9eb | 2015-01-09 14:53:50 +0000 | [diff] [blame] | 261 | // Optimize and compile `graph`. |
| 262 | CompiledMethod* CompileOptimized(HGraph* graph, |
| 263 | CodeGenerator* codegen, |
| 264 | CompilerDriver* driver, |
| 265 | const DexCompilationUnit& dex_compilation_unit, |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 266 | PassObserver* pass_observer) const; |
Nicolas Geoffray | 12df9eb | 2015-01-09 14:53:50 +0000 | [diff] [blame] | 267 | |
| 268 | // Just compile without doing optimizations. |
| 269 | CompiledMethod* CompileBaseline(CodeGenerator* codegen, |
| 270 | CompilerDriver* driver, |
Alexandre Rames | eb7b739 | 2015-06-19 14:47:01 +0100 | [diff] [blame] | 271 | const DexCompilationUnit& dex_compilation_unit, |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 272 | PassObserver* pass_observer) const; |
Nicolas Geoffray | 12df9eb | 2015-01-09 14:53:50 +0000 | [diff] [blame] | 273 | |
Calin Juravle | 2be39e0 | 2015-04-21 13:56:34 +0100 | [diff] [blame] | 274 | std::unique_ptr<OptimizingCompilerStats> compilation_stats_; |
Nicolas Geoffray | 88157ef | 2014-09-12 10:29:53 +0100 | [diff] [blame] | 275 | |
Andreas Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 276 | std::unique_ptr<std::ostream> visualizer_output_; |
| 277 | |
Nicolas Geoffray | 216eaa2 | 2015-03-17 17:09:30 +0000 | [diff] [blame] | 278 | // Delegate to Quick in case the optimizing compiler cannot compile a method. |
| 279 | std::unique_ptr<Compiler> delegate_; |
| 280 | |
Andreas Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 281 | DISALLOW_COPY_AND_ASSIGN(OptimizingCompiler); |
| 282 | }; |
| 283 | |
Nicolas Geoffray | 88157ef | 2014-09-12 10:29:53 +0100 | [diff] [blame] | 284 | static const int kMaximumCompilationTimeBeforeWarning = 100; /* ms */ |
| 285 | |
| 286 | OptimizingCompiler::OptimizingCompiler(CompilerDriver* driver) |
| 287 | : Compiler(driver, kMaximumCompilationTimeBeforeWarning), |
| 288 | run_optimizations_( |
Nicolas Geoffray | a3d90fb | 2015-03-16 13:55:40 +0000 | [diff] [blame] | 289 | (driver->GetCompilerOptions().GetCompilerFilter() != CompilerOptions::kTime) |
| 290 | && !driver->GetCompilerOptions().GetDebuggable()), |
Nicolas Geoffray | 216eaa2 | 2015-03-17 17:09:30 +0000 | [diff] [blame] | 291 | delegate_(Create(driver, Compiler::Kind::kQuick)) {} |
David Brazdil | ee690a3 | 2014-12-01 17:04:16 +0000 | [diff] [blame] | 292 | |
| 293 | void OptimizingCompiler::Init() { |
Nicolas Geoffray | 216eaa2 | 2015-03-17 17:09:30 +0000 | [diff] [blame] | 294 | delegate_->Init(); |
David Brazdil | ee690a3 | 2014-12-01 17:04:16 +0000 | [diff] [blame] | 295 | // Enable C1visualizer output. Must be done in Init() because the compiler |
| 296 | // driver is not fully initialized when passed to the compiler's constructor. |
| 297 | CompilerDriver* driver = GetCompilerDriver(); |
David Brazdil | 866c031 | 2015-01-13 21:21:31 +0000 | [diff] [blame] | 298 | const std::string cfg_file_name = driver->GetDumpCfgFileName(); |
| 299 | if (!cfg_file_name.empty()) { |
David Brazdil | ee690a3 | 2014-12-01 17:04:16 +0000 | [diff] [blame] | 300 | CHECK_EQ(driver->GetThreadCount(), 1U) |
| 301 | << "Graph visualizer requires the compiler to run single-threaded. " |
| 302 | << "Invoke the compiler with '-j1'."; |
David Brazdil | 866c031 | 2015-01-13 21:21:31 +0000 | [diff] [blame] | 303 | visualizer_output_.reset(new std::ofstream(cfg_file_name)); |
Nicolas Geoffray | f635e63 | 2014-05-14 09:43:38 +0100 | [diff] [blame] | 304 | } |
Calin Juravle | 2be39e0 | 2015-04-21 13:56:34 +0100 | [diff] [blame] | 305 | if (driver->GetDumpStats()) { |
| 306 | compilation_stats_.reset(new OptimizingCompilerStats()); |
| 307 | } |
Nicolas Geoffray | f635e63 | 2014-05-14 09:43:38 +0100 | [diff] [blame] | 308 | } |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 309 | |
Nicolas Geoffray | 216eaa2 | 2015-03-17 17:09:30 +0000 | [diff] [blame] | 310 | void OptimizingCompiler::UnInit() const { |
| 311 | delegate_->UnInit(); |
| 312 | } |
| 313 | |
Nicolas Geoffray | 88157ef | 2014-09-12 10:29:53 +0100 | [diff] [blame] | 314 | OptimizingCompiler::~OptimizingCompiler() { |
Calin Juravle | 2be39e0 | 2015-04-21 13:56:34 +0100 | [diff] [blame] | 315 | if (compilation_stats_.get() != nullptr) { |
| 316 | compilation_stats_->Log(); |
| 317 | } |
Nicolas Geoffray | 88157ef | 2014-09-12 10:29:53 +0100 | [diff] [blame] | 318 | } |
| 319 | |
Nicolas Geoffray | 216eaa2 | 2015-03-17 17:09:30 +0000 | [diff] [blame] | 320 | void OptimizingCompiler::InitCompilationUnit(CompilationUnit& cu) const { |
| 321 | delegate_->InitCompilationUnit(cu); |
| 322 | } |
| 323 | |
Nicolas Geoffray | e2dc6fa | 2014-11-17 12:55:12 +0000 | [diff] [blame] | 324 | bool OptimizingCompiler::CanCompileMethod(uint32_t method_idx ATTRIBUTE_UNUSED, |
| 325 | const DexFile& dex_file ATTRIBUTE_UNUSED, |
| 326 | CompilationUnit* cu ATTRIBUTE_UNUSED) const { |
| 327 | return true; |
Andreas Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 328 | } |
| 329 | |
Nicolas Geoffray | 1ba0f59 | 2014-10-27 15:14:55 +0000 | [diff] [blame] | 330 | static bool IsInstructionSetSupported(InstructionSet instruction_set) { |
| 331 | return instruction_set == kArm64 |
| 332 | || (instruction_set == kThumb2 && !kArm32QuickCodeUseSoftFloat) |
Alexey Frunze | 4dda337 | 2015-06-01 18:31:49 -0700 | [diff] [blame] | 333 | || instruction_set == kMips64 |
Nicolas Geoffray | 1ba0f59 | 2014-10-27 15:14:55 +0000 | [diff] [blame] | 334 | || instruction_set == kX86 |
| 335 | || instruction_set == kX86_64; |
| 336 | } |
| 337 | |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 338 | static bool CanOptimize(const DexFile::CodeItem& code_item) { |
| 339 | // TODO: We currently cannot optimize methods with try/catch. |
| 340 | return code_item.tries_size_ == 0; |
| 341 | } |
| 342 | |
Calin Juravle | 10e244f | 2015-01-26 18:54:32 +0000 | [diff] [blame] | 343 | static void RunOptimizations(HOptimization* optimizations[], |
| 344 | size_t length, |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 345 | PassObserver* pass_observer) { |
Calin Juravle | 10e244f | 2015-01-26 18:54:32 +0000 | [diff] [blame] | 346 | for (size_t i = 0; i < length; ++i) { |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 347 | PassScope scope(optimizations[i]->GetPassName(), pass_observer); |
| 348 | optimizations[i]->Run(); |
Calin Juravle | 10e244f | 2015-01-26 18:54:32 +0000 | [diff] [blame] | 349 | } |
| 350 | } |
| 351 | |
Nicolas Geoffray | e53798a | 2014-12-01 10:31:54 +0000 | [diff] [blame] | 352 | static void RunOptimizations(HGraph* graph, |
| 353 | CompilerDriver* driver, |
| 354 | OptimizingCompilerStats* stats, |
| 355 | const DexCompilationUnit& dex_compilation_unit, |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 356 | PassObserver* pass_observer, |
Calin Juravle | acf735c | 2015-02-12 15:25:22 +0000 | [diff] [blame] | 357 | StackHandleScopeCollection* handles) { |
Vladimir Marko | a3a3c59 | 2015-06-12 14:30:53 +0100 | [diff] [blame] | 358 | ArenaAllocator* arena = graph->GetArena(); |
| 359 | HDeadCodeElimination* dce1 = new (arena) HDeadCodeElimination( |
| 360 | graph, stats, HDeadCodeElimination::kInitialDeadCodeEliminationPassName); |
| 361 | HDeadCodeElimination* dce2 = new (arena) HDeadCodeElimination( |
| 362 | graph, stats, HDeadCodeElimination::kFinalDeadCodeEliminationPassName); |
| 363 | HConstantFolding* fold1 = new (arena) HConstantFolding(graph); |
| 364 | InstructionSimplifier* simplify1 = new (arena) InstructionSimplifier(graph, stats); |
| 365 | HBooleanSimplifier* boolean_simplify = new (arena) HBooleanSimplifier(graph); |
Nicolas Geoffray | e53798a | 2014-12-01 10:31:54 +0000 | [diff] [blame] | 366 | |
Vladimir Marko | a3a3c59 | 2015-06-12 14:30:53 +0100 | [diff] [blame] | 367 | HInliner* inliner = new (arena) HInliner( |
| 368 | graph, dex_compilation_unit, dex_compilation_unit, driver, handles, stats); |
Nicolas Geoffray | e53798a | 2014-12-01 10:31:54 +0000 | [diff] [blame] | 369 | |
Vladimir Marko | a3a3c59 | 2015-06-12 14:30:53 +0100 | [diff] [blame] | 370 | HConstantFolding* fold2 = new (arena) HConstantFolding(graph, "constant_folding_after_inlining"); |
| 371 | SideEffectsAnalysis* side_effects = new (arena) SideEffectsAnalysis(graph); |
| 372 | GVNOptimization* gvn = new (arena) GVNOptimization(graph, *side_effects); |
| 373 | LICM* licm = new (arena) LICM(graph, *side_effects); |
| 374 | BoundsCheckElimination* bce = new (arena) BoundsCheckElimination(graph); |
| 375 | ReferenceTypePropagation* type_propagation = |
| 376 | new (arena) ReferenceTypePropagation(graph, handles); |
| 377 | InstructionSimplifier* simplify2 = new (arena) InstructionSimplifier( |
| 378 | graph, stats, "instruction_simplifier_after_types"); |
| 379 | InstructionSimplifier* simplify3 = new (arena) InstructionSimplifier( |
Nicolas Geoffray | b2bdfce | 2015-06-18 15:46:47 +0100 | [diff] [blame] | 380 | graph, stats, "instruction_simplifier_after_bce"); |
Vladimir Marko | a3a3c59 | 2015-06-12 14:30:53 +0100 | [diff] [blame] | 381 | ReferenceTypePropagation* type_propagation2 = |
| 382 | new (arena) ReferenceTypePropagation(graph, handles); |
Nicolas Geoffray | b2bdfce | 2015-06-18 15:46:47 +0100 | [diff] [blame] | 383 | InstructionSimplifier* simplify4 = new (arena) InstructionSimplifier( |
| 384 | graph, stats, "instruction_simplifier_before_codegen"); |
Nicolas Geoffray | 5e6916c | 2014-11-18 16:53:35 +0000 | [diff] [blame] | 385 | |
Vladimir Marko | a3a3c59 | 2015-06-12 14:30:53 +0100 | [diff] [blame] | 386 | IntrinsicsRecognizer* intrinsics = new (arena) IntrinsicsRecognizer(graph, driver); |
Andreas Gampe | 71fb52f | 2014-12-29 17:43:08 -0800 | [diff] [blame] | 387 | |
Nicolas Geoffray | 3159674 | 2014-11-24 15:28:45 +0000 | [diff] [blame] | 388 | HOptimization* optimizations[] = { |
Vladimir Marko | a3a3c59 | 2015-06-12 14:30:53 +0100 | [diff] [blame] | 389 | intrinsics, |
Vladimir Marko | a3a3c59 | 2015-06-12 14:30:53 +0100 | [diff] [blame] | 390 | fold1, |
| 391 | simplify1, |
| 392 | type_propagation, |
Nicolas Geoffray | 18e6873 | 2015-06-17 23:09:05 +0100 | [diff] [blame] | 393 | dce1, |
Vladimir Marko | a3a3c59 | 2015-06-12 14:30:53 +0100 | [diff] [blame] | 394 | simplify2, |
| 395 | inliner, |
Nicolas Geoffray | 454a481 | 2015-06-09 10:37:32 +0100 | [diff] [blame] | 396 | // Run another type propagation phase: inlining will open up more opprotunities |
| 397 | // to remove checkast/instanceof and null checks. |
Vladimir Marko | a3a3c59 | 2015-06-12 14:30:53 +0100 | [diff] [blame] | 398 | type_propagation2, |
David Brazdil | 46e2a39 | 2015-03-16 17:31:52 +0000 | [diff] [blame] | 399 | // BooleanSimplifier depends on the InstructionSimplifier removing redundant |
| 400 | // suspend checks to recognize empty blocks. |
Vladimir Marko | a3a3c59 | 2015-06-12 14:30:53 +0100 | [diff] [blame] | 401 | boolean_simplify, |
| 402 | fold2, |
| 403 | side_effects, |
| 404 | gvn, |
| 405 | licm, |
| 406 | bce, |
| 407 | simplify3, |
| 408 | dce2, |
Nicolas Geoffray | b2bdfce | 2015-06-18 15:46:47 +0100 | [diff] [blame] | 409 | // The codegen has a few assumptions that only the instruction simplifier can |
| 410 | // satisfy. For example, the code generator does not expect to see a |
| 411 | // HTypeConversion from a type to the same type. |
| 412 | simplify4, |
Nicolas Geoffray | 3159674 | 2014-11-24 15:28:45 +0000 | [diff] [blame] | 413 | }; |
Nicolas Geoffray | 5e6916c | 2014-11-18 16:53:35 +0000 | [diff] [blame] | 414 | |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 415 | RunOptimizations(optimizations, arraysize(optimizations), pass_observer); |
Nicolas Geoffray | 5e6916c | 2014-11-18 16:53:35 +0000 | [diff] [blame] | 416 | } |
| 417 | |
Nicolas Geoffray | 376b2bb | 2014-12-09 14:26:32 +0000 | [diff] [blame] | 418 | // The stack map we generate must be 4-byte aligned on ARM. Since existing |
| 419 | // maps are generated alongside these stack maps, we must also align them. |
Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 420 | static ArrayRef<const uint8_t> AlignVectorSize(std::vector<uint8_t>& vector) { |
Nicolas Geoffray | 376b2bb | 2014-12-09 14:26:32 +0000 | [diff] [blame] | 421 | size_t size = vector.size(); |
| 422 | size_t aligned_size = RoundUp(size, 4); |
| 423 | for (; size < aligned_size; ++size) { |
| 424 | vector.push_back(0); |
| 425 | } |
Andreas Gampe | e21dc3d | 2014-12-08 16:59:43 -0800 | [diff] [blame] | 426 | return ArrayRef<const uint8_t>(vector); |
Nicolas Geoffray | 376b2bb | 2014-12-09 14:26:32 +0000 | [diff] [blame] | 427 | } |
| 428 | |
Andreas Gampe | c2bcafe | 2015-04-10 10:49:32 -0700 | [diff] [blame] | 429 | static void AllocateRegisters(HGraph* graph, |
| 430 | CodeGenerator* codegen, |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 431 | PassObserver* pass_observer) { |
Andreas Gampe | c2bcafe | 2015-04-10 10:49:32 -0700 | [diff] [blame] | 432 | PrepareForRegisterAllocation(graph).Run(); |
Nicolas Geoffray | 0d9f17d | 2015-04-15 14:17:44 +0100 | [diff] [blame] | 433 | SsaLivenessAnalysis liveness(graph, codegen); |
Andreas Gampe | c2bcafe | 2015-04-10 10:49:32 -0700 | [diff] [blame] | 434 | { |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 435 | PassScope scope(SsaLivenessAnalysis::kLivenessPassName, pass_observer); |
Andreas Gampe | c2bcafe | 2015-04-10 10:49:32 -0700 | [diff] [blame] | 436 | liveness.Analyze(); |
| 437 | } |
| 438 | { |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 439 | PassScope scope(RegisterAllocator::kRegisterAllocatorPassName, pass_observer); |
Andreas Gampe | c2bcafe | 2015-04-10 10:49:32 -0700 | [diff] [blame] | 440 | RegisterAllocator(graph->GetArena(), codegen, liveness).AllocateRegisters(); |
| 441 | } |
| 442 | } |
Nicolas Geoffray | 12df9eb | 2015-01-09 14:53:50 +0000 | [diff] [blame] | 443 | |
| 444 | CompiledMethod* OptimizingCompiler::CompileOptimized(HGraph* graph, |
| 445 | CodeGenerator* codegen, |
| 446 | CompilerDriver* compiler_driver, |
| 447 | const DexCompilationUnit& dex_compilation_unit, |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 448 | PassObserver* pass_observer) const { |
Calin Juravle | acf735c | 2015-02-12 15:25:22 +0000 | [diff] [blame] | 449 | StackHandleScopeCollection handles(Thread::Current()); |
Calin Juravle | 2be39e0 | 2015-04-21 13:56:34 +0100 | [diff] [blame] | 450 | RunOptimizations(graph, compiler_driver, compilation_stats_.get(), |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 451 | dex_compilation_unit, pass_observer, &handles); |
Nicolas Geoffray | 12df9eb | 2015-01-09 14:53:50 +0000 | [diff] [blame] | 452 | |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 453 | AllocateRegisters(graph, codegen, pass_observer); |
Nicolas Geoffray | 12df9eb | 2015-01-09 14:53:50 +0000 | [diff] [blame] | 454 | |
| 455 | CodeVectorAllocator allocator; |
| 456 | codegen->CompileOptimized(&allocator); |
| 457 | |
David Srbecky | c6b4dd8 | 2015-04-07 20:32:43 +0100 | [diff] [blame] | 458 | DefaultSrcMap src_mapping_table; |
David Srbecky | 8363c77 | 2015-05-28 16:12:43 +0100 | [diff] [blame] | 459 | if (compiler_driver->GetCompilerOptions().GetGenerateDebugInfo()) { |
David Srbecky | c6b4dd8 | 2015-04-07 20:32:43 +0100 | [diff] [blame] | 460 | codegen->BuildSourceMap(&src_mapping_table); |
| 461 | } |
| 462 | |
Nicolas Geoffray | 12df9eb | 2015-01-09 14:53:50 +0000 | [diff] [blame] | 463 | std::vector<uint8_t> stack_map; |
| 464 | codegen->BuildStackMaps(&stack_map); |
| 465 | |
Calin Juravle | 2be39e0 | 2015-04-21 13:56:34 +0100 | [diff] [blame] | 466 | MaybeRecordStat(MethodCompilationStat::kCompiledOptimized); |
Nicolas Geoffray | 12df9eb | 2015-01-09 14:53:50 +0000 | [diff] [blame] | 467 | |
Alexandre Rames | eb7b739 | 2015-06-19 14:47:01 +0100 | [diff] [blame] | 468 | CompiledMethod* compiled_method = CompiledMethod::SwapAllocCompiledMethod( |
Nicolas Geoffray | 12df9eb | 2015-01-09 14:53:50 +0000 | [diff] [blame] | 469 | compiler_driver, |
| 470 | codegen->GetInstructionSet(), |
| 471 | ArrayRef<const uint8_t>(allocator.GetMemory()), |
Roland Levillain | aa9b7c4 | 2015-02-17 15:40:09 +0000 | [diff] [blame] | 472 | // Follow Quick's behavior and set the frame size to zero if it is |
| 473 | // considered "empty" (see the definition of |
| 474 | // art::CodeGenerator::HasEmptyFrame). |
| 475 | codegen->HasEmptyFrame() ? 0 : codegen->GetFrameSize(), |
Nicolas Geoffray | 12df9eb | 2015-01-09 14:53:50 +0000 | [diff] [blame] | 476 | codegen->GetCoreSpillMask(), |
Nicolas Geoffray | d97dc40 | 2015-01-22 13:50:01 +0000 | [diff] [blame] | 477 | codegen->GetFpuSpillMask(), |
David Srbecky | c6b4dd8 | 2015-04-07 20:32:43 +0100 | [diff] [blame] | 478 | &src_mapping_table, |
| 479 | ArrayRef<const uint8_t>(), // mapping_table. |
| 480 | ArrayRef<const uint8_t>(stack_map), |
| 481 | ArrayRef<const uint8_t>(), // native_gc_map. |
| 482 | ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data()), |
| 483 | ArrayRef<const LinkerPatch>()); |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 484 | pass_observer->DumpDisassembly(); |
Alexandre Rames | eb7b739 | 2015-06-19 14:47:01 +0100 | [diff] [blame] | 485 | return compiled_method; |
Nicolas Geoffray | 12df9eb | 2015-01-09 14:53:50 +0000 | [diff] [blame] | 486 | } |
| 487 | |
Nicolas Geoffray | 12df9eb | 2015-01-09 14:53:50 +0000 | [diff] [blame] | 488 | CompiledMethod* OptimizingCompiler::CompileBaseline( |
| 489 | CodeGenerator* codegen, |
| 490 | CompilerDriver* compiler_driver, |
Alexandre Rames | eb7b739 | 2015-06-19 14:47:01 +0100 | [diff] [blame] | 491 | const DexCompilationUnit& dex_compilation_unit, |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 492 | PassObserver* pass_observer) const { |
Nicolas Geoffray | 12df9eb | 2015-01-09 14:53:50 +0000 | [diff] [blame] | 493 | CodeVectorAllocator allocator; |
| 494 | codegen->CompileBaseline(&allocator); |
| 495 | |
| 496 | std::vector<uint8_t> mapping_table; |
David Srbecky | c6b4dd8 | 2015-04-07 20:32:43 +0100 | [diff] [blame] | 497 | codegen->BuildMappingTable(&mapping_table); |
Nicolas Geoffray | 12df9eb | 2015-01-09 14:53:50 +0000 | [diff] [blame] | 498 | DefaultSrcMap src_mapping_table; |
David Srbecky | 8363c77 | 2015-05-28 16:12:43 +0100 | [diff] [blame] | 499 | if (compiler_driver->GetCompilerOptions().GetGenerateDebugInfo()) { |
David Srbecky | c6b4dd8 | 2015-04-07 20:32:43 +0100 | [diff] [blame] | 500 | codegen->BuildSourceMap(&src_mapping_table); |
| 501 | } |
Nicolas Geoffray | 12df9eb | 2015-01-09 14:53:50 +0000 | [diff] [blame] | 502 | std::vector<uint8_t> vmap_table; |
| 503 | codegen->BuildVMapTable(&vmap_table); |
| 504 | std::vector<uint8_t> gc_map; |
| 505 | codegen->BuildNativeGCMap(&gc_map, dex_compilation_unit); |
| 506 | |
Calin Juravle | 2be39e0 | 2015-04-21 13:56:34 +0100 | [diff] [blame] | 507 | MaybeRecordStat(MethodCompilationStat::kCompiledBaseline); |
Alexandre Rames | eb7b739 | 2015-06-19 14:47:01 +0100 | [diff] [blame] | 508 | CompiledMethod* compiled_method = CompiledMethod::SwapAllocCompiledMethod( |
Roland Levillain | aa9b7c4 | 2015-02-17 15:40:09 +0000 | [diff] [blame] | 509 | compiler_driver, |
| 510 | codegen->GetInstructionSet(), |
| 511 | ArrayRef<const uint8_t>(allocator.GetMemory()), |
| 512 | // Follow Quick's behavior and set the frame size to zero if it is |
| 513 | // considered "empty" (see the definition of |
| 514 | // art::CodeGenerator::HasEmptyFrame). |
| 515 | codegen->HasEmptyFrame() ? 0 : codegen->GetFrameSize(), |
| 516 | codegen->GetCoreSpillMask(), |
| 517 | codegen->GetFpuSpillMask(), |
| 518 | &src_mapping_table, |
| 519 | AlignVectorSize(mapping_table), |
| 520 | AlignVectorSize(vmap_table), |
| 521 | AlignVectorSize(gc_map), |
David Srbecky | c6b4dd8 | 2015-04-07 20:32:43 +0100 | [diff] [blame] | 522 | ArrayRef<const uint8_t>(*codegen->GetAssembler()->cfi().data()), |
| 523 | ArrayRef<const LinkerPatch>()); |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 524 | pass_observer->DumpDisassembly(); |
Alexandre Rames | eb7b739 | 2015-06-19 14:47:01 +0100 | [diff] [blame] | 525 | return compiled_method; |
Nicolas Geoffray | 12df9eb | 2015-01-09 14:53:50 +0000 | [diff] [blame] | 526 | } |
| 527 | |
Nicolas Geoffray | 216eaa2 | 2015-03-17 17:09:30 +0000 | [diff] [blame] | 528 | CompiledMethod* OptimizingCompiler::TryCompile(const DexFile::CodeItem* code_item, |
| 529 | uint32_t access_flags, |
| 530 | InvokeType invoke_type, |
| 531 | uint16_t class_def_idx, |
| 532 | uint32_t method_idx, |
| 533 | jobject class_loader, |
| 534 | const DexFile& dex_file) const { |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 535 | UNUSED(invoke_type); |
David Brazdil | 5e8b137 | 2015-01-23 14:39:08 +0000 | [diff] [blame] | 536 | std::string method_name = PrettyMethod(method_idx, dex_file); |
Calin Juravle | 2be39e0 | 2015-04-21 13:56:34 +0100 | [diff] [blame] | 537 | MaybeRecordStat(MethodCompilationStat::kAttemptCompilation); |
Calin Juravle | cd6dffe | 2015-01-08 17:35:35 +0000 | [diff] [blame] | 538 | CompilerDriver* compiler_driver = GetCompilerDriver(); |
| 539 | InstructionSet instruction_set = compiler_driver->GetInstructionSet(); |
Nicolas Geoffray | 8d48673 | 2014-07-16 16:23:40 +0100 | [diff] [blame] | 540 | // Always use the thumb2 assembler: some runtime functionality (like implicit stack |
| 541 | // overflow checks) assume thumb2. |
| 542 | if (instruction_set == kArm) { |
| 543 | instruction_set = kThumb2; |
Nicolas Geoffray | 8fb5ce3 | 2014-07-04 09:43:26 +0100 | [diff] [blame] | 544 | } |
| 545 | |
| 546 | // Do not attempt to compile on architectures we do not support. |
Nicolas Geoffray | 1ba0f59 | 2014-10-27 15:14:55 +0000 | [diff] [blame] | 547 | if (!IsInstructionSetSupported(instruction_set)) { |
Calin Juravle | 2be39e0 | 2015-04-21 13:56:34 +0100 | [diff] [blame] | 548 | MaybeRecordStat(MethodCompilationStat::kNotCompiledUnsupportedIsa); |
Nicolas Geoffray | 8fb5ce3 | 2014-07-04 09:43:26 +0100 | [diff] [blame] | 549 | return nullptr; |
| 550 | } |
| 551 | |
Nicolas Geoffray | b5f62b3 | 2014-10-30 10:58:41 +0000 | [diff] [blame] | 552 | if (Compiler::IsPathologicalCase(*code_item, method_idx, dex_file)) { |
Calin Juravle | 2be39e0 | 2015-04-21 13:56:34 +0100 | [diff] [blame] | 553 | MaybeRecordStat(MethodCompilationStat::kNotCompiledPathological); |
Nicolas Geoffray | b5f62b3 | 2014-10-30 10:58:41 +0000 | [diff] [blame] | 554 | return nullptr; |
| 555 | } |
| 556 | |
Nicolas Geoffray | 36540cb | 2015-03-23 14:45:53 +0000 | [diff] [blame] | 557 | // Implementation of the space filter: do not compile a code item whose size in |
| 558 | // code units is bigger than 256. |
| 559 | static constexpr size_t kSpaceFilterOptimizingThreshold = 256; |
| 560 | const CompilerOptions& compiler_options = compiler_driver->GetCompilerOptions(); |
| 561 | if ((compiler_options.GetCompilerFilter() == CompilerOptions::kSpace) |
| 562 | && (code_item->insns_size_in_code_units_ > kSpaceFilterOptimizingThreshold)) { |
Calin Juravle | 2be39e0 | 2015-04-21 13:56:34 +0100 | [diff] [blame] | 563 | MaybeRecordStat(MethodCompilationStat::kNotCompiledSpaceFilter); |
Nicolas Geoffray | 36540cb | 2015-03-23 14:45:53 +0000 | [diff] [blame] | 564 | return nullptr; |
| 565 | } |
| 566 | |
Nicolas Geoffray | 92cf83e | 2014-03-18 17:59:20 +0000 | [diff] [blame] | 567 | DexCompilationUnit dex_compilation_unit( |
| 568 | nullptr, class_loader, art::Runtime::Current()->GetClassLinker(), dex_file, code_item, |
Ian Rogers | 72d3262 | 2014-05-06 16:20:11 -0700 | [diff] [blame] | 569 | class_def_idx, method_idx, access_flags, |
Calin Juravle | cd6dffe | 2015-01-08 17:35:35 +0000 | [diff] [blame] | 570 | compiler_driver->GetVerifiedMethod(&dex_file, method_idx)); |
Nicolas Geoffray | 92cf83e | 2014-03-18 17:59:20 +0000 | [diff] [blame] | 571 | |
Calin Juravle | 3cd4fc8 | 2015-05-14 15:15:42 +0100 | [diff] [blame] | 572 | bool requires_barrier = dex_compilation_unit.IsConstructor() |
| 573 | && compiler_driver->RequiresConstructorBarrier(Thread::Current(), |
| 574 | dex_compilation_unit.GetDexFile(), |
| 575 | dex_compilation_unit.GetClassDefIndex()); |
Nicolas Geoffray | 579ea7d | 2015-03-24 17:28:38 +0000 | [diff] [blame] | 576 | ArenaAllocator arena(Runtime::Current()->GetArenaPool()); |
Nicolas Geoffray | e0fe7ae | 2015-03-09 10:02:49 +0000 | [diff] [blame] | 577 | HGraph* graph = new (&arena) HGraph( |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 578 | &arena, dex_file, method_idx, requires_barrier, compiler_driver->GetInstructionSet(), |
| 579 | kInvalidInvokeType, compiler_driver->GetCompilerOptions().GetDebuggable()); |
Nicolas Geoffray | e53798a | 2014-12-01 10:31:54 +0000 | [diff] [blame] | 580 | |
Nicolas Geoffray | 8ccc3f5 | 2014-03-19 10:34:11 +0000 | [diff] [blame] | 581 | // For testing purposes, we put a special marker on method names that should be compiled |
| 582 | // with this compiler. This makes sure we're not regressing. |
Nicolas Geoffray | e53798a | 2014-12-01 10:31:54 +0000 | [diff] [blame] | 583 | bool shouldCompile = method_name.find("$opt$") != std::string::npos; |
Nicolas Geoffray | a3d90fb | 2015-03-16 13:55:40 +0000 | [diff] [blame] | 584 | bool shouldOptimize = method_name.find("$opt$reg$") != std::string::npos && run_optimizations_; |
Nicolas Geoffray | 8ccc3f5 | 2014-03-19 10:34:11 +0000 | [diff] [blame] | 585 | |
Nicolas Geoffray | 12df9eb | 2015-01-09 14:53:50 +0000 | [diff] [blame] | 586 | std::unique_ptr<CodeGenerator> codegen( |
Calin Juravle | cd6dffe | 2015-01-08 17:35:35 +0000 | [diff] [blame] | 587 | CodeGenerator::Create(graph, |
| 588 | instruction_set, |
| 589 | *compiler_driver->GetInstructionSetFeatures(), |
| 590 | compiler_driver->GetCompilerOptions())); |
Nicolas Geoffray | 12df9eb | 2015-01-09 14:53:50 +0000 | [diff] [blame] | 591 | if (codegen.get() == nullptr) { |
Zheng Xu | 5667fdb | 2014-10-23 18:29:55 +0800 | [diff] [blame] | 592 | CHECK(!shouldCompile) << "Could not find code generator for optimizing compiler"; |
Calin Juravle | 2be39e0 | 2015-04-21 13:56:34 +0100 | [diff] [blame] | 593 | MaybeRecordStat(MethodCompilationStat::kNotCompiledNoCodegen); |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 594 | return nullptr; |
| 595 | } |
David Srbecky | c6b4dd8 | 2015-04-07 20:32:43 +0100 | [diff] [blame] | 596 | codegen->GetAssembler()->cfi().SetEnabled( |
David Srbecky | 8363c77 | 2015-05-28 16:12:43 +0100 | [diff] [blame] | 597 | compiler_driver->GetCompilerOptions().GetGenerateDebugInfo()); |
Nicolas Geoffray | 787c307 | 2014-03-17 10:20:19 +0000 | [diff] [blame] | 598 | |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 599 | PassObserver pass_observer(graph, |
| 600 | method_name.c_str(), |
| 601 | codegen.get(), |
| 602 | visualizer_output_.get(), |
| 603 | compiler_driver); |
David Brazdil | 5e8b137 | 2015-01-23 14:39:08 +0000 | [diff] [blame] | 604 | |
| 605 | HGraphBuilder builder(graph, |
| 606 | &dex_compilation_unit, |
| 607 | &dex_compilation_unit, |
| 608 | &dex_file, |
| 609 | compiler_driver, |
Calin Juravle | 2be39e0 | 2015-04-21 13:56:34 +0100 | [diff] [blame] | 610 | compilation_stats_.get()); |
David Brazdil | 5e8b137 | 2015-01-23 14:39:08 +0000 | [diff] [blame] | 611 | |
| 612 | VLOG(compiler) << "Building " << method_name; |
| 613 | |
David Brazdil | 809658e | 2015-02-05 11:34:02 +0000 | [diff] [blame] | 614 | { |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 615 | PassScope scope(HGraphBuilder::kBuilderPassName, &pass_observer); |
David Brazdil | 809658e | 2015-02-05 11:34:02 +0000 | [diff] [blame] | 616 | if (!builder.BuildGraph(*code_item)) { |
Nicolas Geoffray | 335005e | 2015-06-25 10:01:47 +0100 | [diff] [blame] | 617 | DCHECK(!(IsCompilingWithCoreImage() && shouldCompile)) |
| 618 | << "Could not build graph in optimizing compiler"; |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 619 | pass_observer.SetGraphInBadState(); |
David Brazdil | 809658e | 2015-02-05 11:34:02 +0000 | [diff] [blame] | 620 | return nullptr; |
| 621 | } |
David Brazdil | 5e8b137 | 2015-01-23 14:39:08 +0000 | [diff] [blame] | 622 | } |
Nicolas Geoffray | a7062e0 | 2014-05-22 12:50:17 +0100 | [diff] [blame] | 623 | |
Calin Juravle | 48c2b03 | 2014-12-09 18:11:36 +0000 | [diff] [blame] | 624 | bool can_optimize = CanOptimize(*code_item); |
| 625 | bool can_allocate_registers = RegisterAllocator::CanAllocateRegistersFor(*graph, instruction_set); |
Nicolas Geoffray | 216eaa2 | 2015-03-17 17:09:30 +0000 | [diff] [blame] | 626 | |
| 627 | // `run_optimizations_` is set explicitly (either through a compiler filter |
| 628 | // or the debuggable flag). If it is set, we can run baseline. Otherwise, we fall back |
| 629 | // to Quick. |
Nicolas Geoffray | 2e7cd75 | 2015-07-10 11:38:52 +0100 | [diff] [blame] | 630 | bool can_use_baseline = !run_optimizations_ && builder.CanUseBaselineForStringInit(); |
David Brazdil | ffee3d3 | 2015-07-06 11:48:53 +0100 | [diff] [blame^] | 631 | if (run_optimizations_ && can_allocate_registers) { |
David Brazdil | 5e8b137 | 2015-01-23 14:39:08 +0000 | [diff] [blame] | 632 | VLOG(compiler) << "Optimizing " << method_name; |
| 633 | |
David Brazdil | 809658e | 2015-02-05 11:34:02 +0000 | [diff] [blame] | 634 | { |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 635 | PassScope scope(SsaBuilder::kSsaBuilderPassName, &pass_observer); |
David Brazdil | 809658e | 2015-02-05 11:34:02 +0000 | [diff] [blame] | 636 | if (!graph->TryBuildingSsa()) { |
| 637 | // We could not transform the graph to SSA, bailout. |
| 638 | LOG(INFO) << "Skipping compilation of " << method_name << ": it contains a non natural loop"; |
Calin Juravle | 2be39e0 | 2015-04-21 13:56:34 +0100 | [diff] [blame] | 639 | MaybeRecordStat(MethodCompilationStat::kNotCompiledCannotBuildSSA); |
David Brazdil | ffee3d3 | 2015-07-06 11:48:53 +0100 | [diff] [blame^] | 640 | pass_observer.SetGraphInBadState(); |
David Brazdil | 809658e | 2015-02-05 11:34:02 +0000 | [diff] [blame] | 641 | return nullptr; |
| 642 | } |
Nicolas Geoffray | f537012 | 2014-12-02 11:51:19 +0000 | [diff] [blame] | 643 | } |
David Brazdil | 5e8b137 | 2015-01-23 14:39:08 +0000 | [diff] [blame] | 644 | |
David Brazdil | ffee3d3 | 2015-07-06 11:48:53 +0100 | [diff] [blame^] | 645 | if (can_optimize) { |
| 646 | return CompileOptimized(graph, |
| 647 | codegen.get(), |
| 648 | compiler_driver, |
| 649 | dex_compilation_unit, |
| 650 | &pass_observer); |
| 651 | } |
| 652 | } |
| 653 | |
| 654 | if (shouldOptimize && can_allocate_registers) { |
Nicolas Geoffray | 86dbb9a | 2014-06-04 11:12:39 +0100 | [diff] [blame] | 655 | LOG(FATAL) << "Could not allocate registers in optimizing compiler"; |
Zheng Xu | 5667fdb | 2014-10-23 18:29:55 +0800 | [diff] [blame] | 656 | UNREACHABLE(); |
Nicolas Geoffray | 216eaa2 | 2015-03-17 17:09:30 +0000 | [diff] [blame] | 657 | } else if (can_use_baseline) { |
David Brazdil | 5e8b137 | 2015-01-23 14:39:08 +0000 | [diff] [blame] | 658 | VLOG(compiler) << "Compile baseline " << method_name; |
Calin Juravle | 48c2b03 | 2014-12-09 18:11:36 +0000 | [diff] [blame] | 659 | |
| 660 | if (!run_optimizations_) { |
Calin Juravle | 2be39e0 | 2015-04-21 13:56:34 +0100 | [diff] [blame] | 661 | MaybeRecordStat(MethodCompilationStat::kNotOptimizedDisabled); |
Calin Juravle | 48c2b03 | 2014-12-09 18:11:36 +0000 | [diff] [blame] | 662 | } else if (!can_optimize) { |
Calin Juravle | 2be39e0 | 2015-04-21 13:56:34 +0100 | [diff] [blame] | 663 | MaybeRecordStat(MethodCompilationStat::kNotOptimizedTryCatch); |
Calin Juravle | 48c2b03 | 2014-12-09 18:11:36 +0000 | [diff] [blame] | 664 | } else if (!can_allocate_registers) { |
Calin Juravle | 2be39e0 | 2015-04-21 13:56:34 +0100 | [diff] [blame] | 665 | MaybeRecordStat(MethodCompilationStat::kNotOptimizedRegisterAllocator); |
Calin Juravle | 48c2b03 | 2014-12-09 18:11:36 +0000 | [diff] [blame] | 666 | } |
| 667 | |
Alexandre Rames | eb7b739 | 2015-06-19 14:47:01 +0100 | [diff] [blame] | 668 | return CompileBaseline(codegen.get(), |
| 669 | compiler_driver, |
| 670 | dex_compilation_unit, |
David Brazdil | 69ba7b7 | 2015-06-23 18:27:30 +0100 | [diff] [blame] | 671 | &pass_observer); |
Nicolas Geoffray | 216eaa2 | 2015-03-17 17:09:30 +0000 | [diff] [blame] | 672 | } else { |
| 673 | return nullptr; |
Nicolas Geoffray | 86dbb9a | 2014-06-04 11:12:39 +0100 | [diff] [blame] | 674 | } |
Nicolas Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame] | 675 | } |
| 676 | |
Nicolas Geoffray | 216eaa2 | 2015-03-17 17:09:30 +0000 | [diff] [blame] | 677 | CompiledMethod* OptimizingCompiler::Compile(const DexFile::CodeItem* code_item, |
| 678 | uint32_t access_flags, |
| 679 | InvokeType invoke_type, |
| 680 | uint16_t class_def_idx, |
| 681 | uint32_t method_idx, |
Calin Juravle | f1c6d9e | 2015-04-13 18:42:21 +0100 | [diff] [blame] | 682 | jobject jclass_loader, |
Nicolas Geoffray | 216eaa2 | 2015-03-17 17:09:30 +0000 | [diff] [blame] | 683 | const DexFile& dex_file) const { |
Calin Juravle | f1c6d9e | 2015-04-13 18:42:21 +0100 | [diff] [blame] | 684 | CompilerDriver* compiler_driver = GetCompilerDriver(); |
| 685 | CompiledMethod* method = nullptr; |
Nicolas Geoffray | 4824c27 | 2015-06-24 15:53:03 +0100 | [diff] [blame] | 686 | if (compiler_driver->IsMethodVerifiedWithoutFailures(method_idx, class_def_idx, dex_file) && |
| 687 | !compiler_driver->GetVerifiedMethod(&dex_file, method_idx)->HasRuntimeThrow()) { |
Calin Juravle | f1c6d9e | 2015-04-13 18:42:21 +0100 | [diff] [blame] | 688 | method = TryCompile(code_item, access_flags, invoke_type, class_def_idx, |
| 689 | method_idx, jclass_loader, dex_file); |
| 690 | } else { |
| 691 | if (compiler_driver->GetCompilerOptions().VerifyAtRuntime()) { |
Calin Juravle | 2be39e0 | 2015-04-21 13:56:34 +0100 | [diff] [blame] | 692 | MaybeRecordStat(MethodCompilationStat::kNotCompiledVerifyAtRuntime); |
Calin Juravle | f1c6d9e | 2015-04-13 18:42:21 +0100 | [diff] [blame] | 693 | } else { |
Calin Juravle | 2be39e0 | 2015-04-21 13:56:34 +0100 | [diff] [blame] | 694 | MaybeRecordStat(MethodCompilationStat::kNotCompiledClassNotVerified); |
Calin Juravle | f1c6d9e | 2015-04-13 18:42:21 +0100 | [diff] [blame] | 695 | } |
| 696 | } |
| 697 | |
Nicolas Geoffray | 216eaa2 | 2015-03-17 17:09:30 +0000 | [diff] [blame] | 698 | if (method != nullptr) { |
| 699 | return method; |
| 700 | } |
Nicolas Geoffray | 12be74e | 2015-03-30 13:29:08 +0100 | [diff] [blame] | 701 | method = delegate_->Compile(code_item, access_flags, invoke_type, class_def_idx, method_idx, |
Calin Juravle | f1c6d9e | 2015-04-13 18:42:21 +0100 | [diff] [blame] | 702 | jclass_loader, dex_file); |
Nicolas Geoffray | 12be74e | 2015-03-30 13:29:08 +0100 | [diff] [blame] | 703 | |
| 704 | if (method != nullptr) { |
Calin Juravle | 2be39e0 | 2015-04-21 13:56:34 +0100 | [diff] [blame] | 705 | MaybeRecordStat(MethodCompilationStat::kCompiledQuick); |
Nicolas Geoffray | 12be74e | 2015-03-30 13:29:08 +0100 | [diff] [blame] | 706 | } |
| 707 | return method; |
Nicolas Geoffray | 216eaa2 | 2015-03-17 17:09:30 +0000 | [diff] [blame] | 708 | } |
| 709 | |
Andreas Gampe | 53c913b | 2014-08-12 23:19:23 -0700 | [diff] [blame] | 710 | Compiler* CreateOptimizingCompiler(CompilerDriver* driver) { |
| 711 | return new OptimizingCompiler(driver); |
| 712 | } |
| 713 | |
Nicolas Geoffray | 335005e | 2015-06-25 10:01:47 +0100 | [diff] [blame] | 714 | bool IsCompilingWithCoreImage() { |
| 715 | const std::string& image = Runtime::Current()->GetImageLocation(); |
| 716 | return EndsWith(image, "core.art") || EndsWith(image, "core-optimizing.art"); |
| 717 | } |
| 718 | |
Nicolas Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame] | 719 | } // namespace art |