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