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