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