Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 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 | |
| 17 | #include "jit_compiler.h" |
| 18 | |
Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 19 | #include "android-base/stringprintf.h" |
| 20 | |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 21 | #include "arch/instruction_set.h" |
| 22 | #include "arch/instruction_set_features.h" |
David Srbecky | 4fda4eb | 2016-02-05 13:34:46 +0000 | [diff] [blame] | 23 | #include "art_method-inl.h" |
Andreas Gampe | 170331f | 2017-12-07 18:41:03 -0800 | [diff] [blame] | 24 | #include "base/logging.h" // For VLOG |
Vladimir Marko | 8581e2a | 2019-02-06 15:54:55 +0000 | [diff] [blame] | 25 | #include "base/string_view_cpp20.h" |
Andreas Gampe | c654816 | 2017-12-08 12:15:22 -0800 | [diff] [blame] | 26 | #include "base/systrace.h" |
Vladimir Marko | 80afd02 | 2015-05-19 18:08:00 +0100 | [diff] [blame] | 27 | #include "base/time_utils.h" |
Mathieu Chartier | a4885cb | 2015-03-09 15:38:54 -0700 | [diff] [blame] | 28 | #include "base/timing_logger.h" |
Vladimir Marko | 038924b | 2019-02-19 15:09:35 +0000 | [diff] [blame] | 29 | #include "compiler.h" |
David Srbecky | c5bfa97 | 2016-02-05 15:49:10 +0000 | [diff] [blame] | 30 | #include "debug/elf_debug_writer.h" |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 31 | #include "driver/compiler_options.h" |
Tamas Berghammer | 160e6df | 2016-01-05 14:29:02 +0000 | [diff] [blame] | 32 | #include "jit/debugger_interface.h" |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 33 | #include "jit/jit.h" |
| 34 | #include "jit/jit_code_cache.h" |
Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 35 | #include "jit/jit_logger.h" |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 36 | |
| 37 | namespace art { |
| 38 | namespace jit { |
| 39 | |
| 40 | JitCompiler* JitCompiler::Create() { |
| 41 | return new JitCompiler(); |
| 42 | } |
| 43 | |
Nicolas Geoffray | c9de61c | 2018-11-27 17:34:31 +0000 | [diff] [blame] | 44 | void JitCompiler::ParseCompilerOptions() { |
Nicolas Geoffray | 62a2f27 | 2017-11-10 16:46:43 +0000 | [diff] [blame] | 45 | // Special case max code units for inlining, whose default is "unset" (implictly |
Roland Levillain | ef07132 | 2018-04-17 14:16:49 +0100 | [diff] [blame] | 46 | // meaning no limit). Do this before parsing the actual passed options. |
Nicolas Geoffray | 62a2f27 | 2017-11-10 16:46:43 +0000 | [diff] [blame] | 47 | compiler_options_->SetInlineMaxCodeUnits(CompilerOptions::kDefaultInlineMaxCodeUnits); |
Vladimir Marko | 6be1dbd | 2018-11-13 13:09:51 +0000 | [diff] [blame] | 48 | Runtime* runtime = Runtime::Current(); |
Andreas Gampe | 097f34c | 2017-08-23 08:57:51 -0700 | [diff] [blame] | 49 | { |
| 50 | std::string error_msg; |
Vladimir Marko | 6be1dbd | 2018-11-13 13:09:51 +0000 | [diff] [blame] | 51 | if (!compiler_options_->ParseCompilerOptions(runtime->GetCompilerOptions(), |
Nicolas Geoffray | c9de61c | 2018-11-27 17:34:31 +0000 | [diff] [blame] | 52 | /*ignore_unrecognized=*/ true, |
| 53 | &error_msg)) { |
Andreas Gampe | 097f34c | 2017-08-23 08:57:51 -0700 | [diff] [blame] | 54 | LOG(FATAL) << error_msg; |
| 55 | UNREACHABLE(); |
| 56 | } |
Nicolas Geoffray | abbb0f7 | 2015-10-29 18:55:58 +0000 | [diff] [blame] | 57 | } |
Vladimir Marko | 2fad527 | 2017-05-17 12:57:18 +0100 | [diff] [blame] | 58 | // JIT is never PIC, no matter what the runtime compiler options specify. |
| 59 | compiler_options_->SetNonPic(); |
| 60 | |
Nicolas Geoffray | c9de61c | 2018-11-27 17:34:31 +0000 | [diff] [blame] | 61 | // If the options don't provide whether we generate debuggable code, set |
| 62 | // debuggability based on the runtime value. |
| 63 | if (!compiler_options_->GetDebuggable()) { |
| 64 | compiler_options_->SetDebuggable(runtime->IsJavaDebuggable()); |
| 65 | } |
Nicolas Geoffray | 57c4704 | 2017-06-29 11:31:39 +0100 | [diff] [blame] | 66 | |
Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 67 | const InstructionSet instruction_set = compiler_options_->GetInstructionSet(); |
| 68 | if (kRuntimeISA == InstructionSet::kArm) { |
| 69 | DCHECK_EQ(instruction_set, InstructionSet::kThumb2); |
| 70 | } else { |
| 71 | DCHECK_EQ(instruction_set, kRuntimeISA); |
| 72 | } |
| 73 | std::unique_ptr<const InstructionSetFeatures> instruction_set_features; |
Vladimir Marko | 8581e2a | 2019-02-06 15:54:55 +0000 | [diff] [blame] | 74 | for (const std::string& option : runtime->GetCompilerOptions()) { |
Mathieu Chartier | 085fc87 | 2015-10-15 18:19:01 -0700 | [diff] [blame] | 75 | VLOG(compiler) << "JIT compiler option " << option; |
| 76 | std::string error_msg; |
Vladimir Marko | 8581e2a | 2019-02-06 15:54:55 +0000 | [diff] [blame] | 77 | if (StartsWith(option, "--instruction-set-variant=")) { |
| 78 | const char* str = option.c_str() + strlen("--instruction-set-variant="); |
Mathieu Chartier | 085fc87 | 2015-10-15 18:19:01 -0700 | [diff] [blame] | 79 | VLOG(compiler) << "JIT instruction set variant " << str; |
Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 80 | instruction_set_features = InstructionSetFeatures::FromVariant( |
Vladimir Marko | 8581e2a | 2019-02-06 15:54:55 +0000 | [diff] [blame] | 81 | instruction_set, str, &error_msg); |
Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 82 | if (instruction_set_features == nullptr) { |
Mathieu Chartier | 085fc87 | 2015-10-15 18:19:01 -0700 | [diff] [blame] | 83 | LOG(WARNING) << "Error parsing " << option << " message=" << error_msg; |
| 84 | } |
Vladimir Marko | 8581e2a | 2019-02-06 15:54:55 +0000 | [diff] [blame] | 85 | } else if (StartsWith(option, "--instruction-set-features=")) { |
| 86 | const char* str = option.c_str() + strlen("--instruction-set-features="); |
Mathieu Chartier | 085fc87 | 2015-10-15 18:19:01 -0700 | [diff] [blame] | 87 | VLOG(compiler) << "JIT instruction set features " << str; |
Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 88 | if (instruction_set_features == nullptr) { |
| 89 | instruction_set_features = InstructionSetFeatures::FromVariant( |
Andreas Gampe | 0415b4e | 2015-01-06 15:17:07 -0800 | [diff] [blame] | 90 | instruction_set, "default", &error_msg); |
Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 91 | if (instruction_set_features == nullptr) { |
Mathieu Chartier | 085fc87 | 2015-10-15 18:19:01 -0700 | [diff] [blame] | 92 | LOG(WARNING) << "Error parsing " << option << " message=" << error_msg; |
| 93 | } |
| 94 | } |
Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 95 | instruction_set_features = |
Vladimir Marko | 8581e2a | 2019-02-06 15:54:55 +0000 | [diff] [blame] | 96 | instruction_set_features->AddFeaturesFromString(str, &error_msg); |
Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 97 | if (instruction_set_features == nullptr) { |
Mathieu Chartier | 085fc87 | 2015-10-15 18:19:01 -0700 | [diff] [blame] | 98 | LOG(WARNING) << "Error parsing " << option << " message=" << error_msg; |
| 99 | } |
| 100 | } |
| 101 | } |
xueliang.zhong | 7f88c1a | 2018-11-06 11:42:41 +0000 | [diff] [blame] | 102 | |
Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 103 | if (instruction_set_features == nullptr) { |
xueliang.zhong | 7f88c1a | 2018-11-06 11:42:41 +0000 | [diff] [blame] | 104 | // '--instruction-set-features/--instruction-set-variant' were not used. |
| 105 | // Use build-time defined features. |
Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 106 | instruction_set_features = InstructionSetFeatures::FromCppDefines(); |
Mathieu Chartier | 085fc87 | 2015-10-15 18:19:01 -0700 | [diff] [blame] | 107 | } |
Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 108 | compiler_options_->instruction_set_features_ = std::move(instruction_set_features); |
Vladimir Marko | 6be1dbd | 2018-11-13 13:09:51 +0000 | [diff] [blame] | 109 | compiler_options_->compiling_with_core_image_ = |
Vladimir Marko | 038924b | 2019-02-19 15:09:35 +0000 | [diff] [blame] | 110 | CompilerOptions::IsCoreImageFilename(runtime->GetImageLocation()); |
Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 111 | |
Nicolas Geoffray | c9de61c | 2018-11-27 17:34:31 +0000 | [diff] [blame] | 112 | if (compiler_options_->GetGenerateDebugInfo()) { |
| 113 | jit_logger_.reset(new JitLogger()); |
| 114 | jit_logger_->OpenLog(); |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | extern "C" void* jit_load() { |
| 119 | VLOG(jit) << "Create jit compiler"; |
| 120 | auto* const jit_compiler = JitCompiler::Create(); |
| 121 | CHECK(jit_compiler != nullptr); |
| 122 | VLOG(jit) << "Done creating jit compiler"; |
| 123 | return jit_compiler; |
| 124 | } |
| 125 | |
| 126 | extern "C" void jit_unload(void* handle) { |
| 127 | DCHECK(handle != nullptr); |
| 128 | delete reinterpret_cast<JitCompiler*>(handle); |
| 129 | } |
| 130 | |
| 131 | extern "C" bool jit_compile_method( |
Nicolas Geoffray | 075456e | 2018-12-14 08:54:21 +0000 | [diff] [blame] | 132 | void* handle, ArtMethod* method, Thread* self, bool baseline, bool osr) |
Nicolas Geoffray | c9de61c | 2018-11-27 17:34:31 +0000 | [diff] [blame] | 133 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| 134 | auto* jit_compiler = reinterpret_cast<JitCompiler*>(handle); |
| 135 | DCHECK(jit_compiler != nullptr); |
Nicolas Geoffray | 075456e | 2018-12-14 08:54:21 +0000 | [diff] [blame] | 136 | return jit_compiler->CompileMethod(self, method, baseline, osr); |
Nicolas Geoffray | c9de61c | 2018-11-27 17:34:31 +0000 | [diff] [blame] | 137 | } |
| 138 | |
| 139 | extern "C" void jit_types_loaded(void* handle, mirror::Class** types, size_t count) |
| 140 | REQUIRES_SHARED(Locks::mutator_lock_) { |
| 141 | auto* jit_compiler = reinterpret_cast<JitCompiler*>(handle); |
| 142 | DCHECK(jit_compiler != nullptr); |
| 143 | const CompilerOptions& compiler_options = jit_compiler->GetCompilerOptions(); |
| 144 | if (compiler_options.GetGenerateDebugInfo()) { |
| 145 | const ArrayRef<mirror::Class*> types_array(types, count); |
| 146 | std::vector<uint8_t> elf_file = debug::WriteDebugElfFileForClasses( |
| 147 | kRuntimeISA, compiler_options.GetInstructionSetFeatures(), types_array); |
Nicolas Geoffray | c9de61c | 2018-11-27 17:34:31 +0000 | [diff] [blame] | 148 | // We never free debug info for types, so we don't need to provide a handle |
| 149 | // (which would have been otherwise used as identifier to remove it later). |
David Srbecky | afc60cd | 2018-12-05 11:59:31 +0000 | [diff] [blame] | 150 | AddNativeDebugInfoForJit(Thread::Current(), |
| 151 | /*code_ptr=*/ nullptr, |
David Srbecky | 0b21e41 | 2018-12-05 13:24:06 +0000 | [diff] [blame] | 152 | elf_file, |
| 153 | debug::PackElfFileForJIT, |
| 154 | compiler_options.GetInstructionSet(), |
| 155 | compiler_options.GetInstructionSetFeatures()); |
Nicolas Geoffray | c9de61c | 2018-11-27 17:34:31 +0000 | [diff] [blame] | 156 | } |
| 157 | } |
| 158 | |
| 159 | extern "C" void jit_update_options(void* handle) { |
| 160 | JitCompiler* jit_compiler = reinterpret_cast<JitCompiler*>(handle); |
| 161 | DCHECK(jit_compiler != nullptr); |
| 162 | jit_compiler->ParseCompilerOptions(); |
| 163 | } |
| 164 | |
| 165 | extern "C" bool jit_generate_debug_info(void* handle) { |
| 166 | JitCompiler* jit_compiler = reinterpret_cast<JitCompiler*>(handle); |
| 167 | DCHECK(jit_compiler != nullptr); |
| 168 | return jit_compiler->GetCompilerOptions().GetGenerateDebugInfo(); |
| 169 | } |
| 170 | |
| 171 | JitCompiler::JitCompiler() { |
| 172 | compiler_options_.reset(new CompilerOptions()); |
| 173 | ParseCompilerOptions(); |
Vladimir Marko | 038924b | 2019-02-19 15:09:35 +0000 | [diff] [blame] | 174 | compiler_.reset( |
| 175 | Compiler::Create(*compiler_options_, /*storage=*/ nullptr, Compiler::kOptimizing)); |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 176 | } |
| 177 | |
| 178 | JitCompiler::~JitCompiler() { |
xueliang.zhong | 383b57d | 2016-10-04 11:19:17 +0100 | [diff] [blame] | 179 | if (compiler_options_->GetGenerateDebugInfo()) { |
| 180 | jit_logger_->CloseLog(); |
Nicolas Geoffray | a25dce9 | 2016-01-12 16:41:10 +0000 | [diff] [blame] | 181 | } |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 182 | } |
| 183 | |
Nicolas Geoffray | 075456e | 2018-12-14 08:54:21 +0000 | [diff] [blame] | 184 | bool JitCompiler::CompileMethod(Thread* self, ArtMethod* method, bool baseline, bool osr) { |
Andreas Gampe | c654816 | 2017-12-08 12:15:22 -0800 | [diff] [blame] | 185 | SCOPED_TRACE << "JIT compiling " << method->PrettyMethod(); |
| 186 | |
Nicolas Geoffray | d9994f0 | 2016-02-11 17:35:55 +0000 | [diff] [blame] | 187 | DCHECK(!method->IsProxyMethod()); |
Nicolas Geoffray | 23ddfe8 | 2017-06-07 14:09:43 +0100 | [diff] [blame] | 188 | DCHECK(method->GetDeclaringClass()->IsResolved()); |
| 189 | |
Nicolas Geoffray | 3d69922 | 2017-09-20 15:15:20 +0100 | [diff] [blame] | 190 | TimingLogger logger( |
| 191 | "JIT compiler timing logger", true, VLOG_IS_ON(jit), TimingLogger::TimingKind::kThreadCpu); |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 192 | self->AssertNoPendingException(); |
| 193 | Runtime* runtime = Runtime::Current(); |
Nicolas Geoffray | 0c3c266 | 2015-10-15 13:53:04 +0100 | [diff] [blame] | 194 | |
Nicolas Geoffray | 0c3c266 | 2015-10-15 13:53:04 +0100 | [diff] [blame] | 195 | // Do the compilation. |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 196 | bool success = false; |
Mathieu Chartier | a4885cb | 2015-03-09 15:38:54 -0700 | [diff] [blame] | 197 | { |
| 198 | TimingLogger::ScopedTiming t2("Compiling", &logger); |
Nicolas Geoffray | 73be1e8 | 2015-09-17 15:22:56 +0100 | [diff] [blame] | 199 | JitCodeCache* const code_cache = runtime->GetJit()->GetCodeCache(); |
Vladimir Marko | 038924b | 2019-02-19 15:09:35 +0000 | [diff] [blame] | 200 | success = compiler_->JitCompile(self, code_cache, method, baseline, osr, jit_logger_.get()); |
Mathieu Chartier | a4885cb | 2015-03-09 15:38:54 -0700 | [diff] [blame] | 201 | } |
Nicolas Geoffray | 0c3c266 | 2015-10-15 13:53:04 +0100 | [diff] [blame] | 202 | |
| 203 | // Trim maps to reduce memory usage. |
Nicolas Geoffray | 25e0456 | 2016-03-01 13:17:58 +0000 | [diff] [blame] | 204 | // TODO: move this to an idle phase. |
Mathieu Chartier | a4885cb | 2015-03-09 15:38:54 -0700 | [diff] [blame] | 205 | { |
| 206 | TimingLogger::ScopedTiming t2("TrimMaps", &logger); |
Nicolas Geoffray | 25e0456 | 2016-03-01 13:17:58 +0000 | [diff] [blame] | 207 | runtime->GetJitArenaPool()->TrimMaps(); |
Mathieu Chartier | a4885cb | 2015-03-09 15:38:54 -0700 | [diff] [blame] | 208 | } |
Nicolas Geoffray | 0c3c266 | 2015-10-15 13:53:04 +0100 | [diff] [blame] | 209 | |
Mathieu Chartier | a4885cb | 2015-03-09 15:38:54 -0700 | [diff] [blame] | 210 | runtime->GetJit()->AddTimingLogger(logger); |
Nicolas Geoffray | d28b969 | 2015-11-04 14:36:55 +0000 | [diff] [blame] | 211 | return success; |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 212 | } |
| 213 | |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 214 | } // namespace jit |
| 215 | } // namespace art |