blob: 4b6a557455e15bc525005eeb60c0dd06e80597a0 [file] [log] [blame]
Ian Rogerse63db272014-07-15 15:36:11 -07001/*
2 * Copyright (C) 2011 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 "common_compiler_test.h"
18
Andreas Gampeb68ed2c2018-06-20 10:39:31 -070019#include <type_traits>
20
Ian Rogersd582fa42014-11-05 23:46:43 -080021#include "arch/instruction_set_features.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070022#include "art_field-inl.h"
Andreas Gampec6ea7d02017-02-01 16:46:28 -080023#include "art_method-inl.h"
Andreas Gampe8228cdf2017-05-30 15:03:54 -070024#include "base/callee_save_type.h"
Vladimir Marko2afaff72018-11-30 17:01:50 +000025#include "base/casts.h"
Andreas Gampe542451c2016-07-26 09:02:02 -070026#include "base/enums.h"
David Sehrc431b9d2018-03-02 12:01:51 -080027#include "base/utils.h"
Ian Rogerse63db272014-07-15 15:36:11 -070028#include "class_linker.h"
Vladimir Markod8dbc8d2017-09-20 13:37:47 +010029#include "compiled_method-inl.h"
David Sehrb2ec9f52018-02-21 13:20:31 -080030#include "dex/descriptors_names.h"
Mathieu Chartier5bdab122015-01-26 18:30:19 -080031#include "dex/verification_results.h"
Vladimir Marko815d5e52019-03-04 10:18:31 +000032#include "driver/compiled_method_storage.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000033#include "driver/compiler_options.h"
Vladimir Markodc4bcce2018-06-21 16:15:42 +010034#include "jni/java_vm_ext.h"
Ian Rogerse63db272014-07-15 15:36:11 -070035#include "interpreter/interpreter.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070036#include "mirror/class-inl.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070037#include "mirror/class_loader.h"
Ian Rogerse63db272014-07-15 15:36:11 -070038#include "mirror/dex_cache.h"
39#include "mirror/object-inl.h"
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010040#include "oat_quick_method_header.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070041#include "scoped_thread_state_change-inl.h"
Andreas Gampeb486a982017-06-01 13:45:54 -070042#include "thread-current-inl.h"
Vladimir Marko213ee2d2018-06-22 11:56:34 +010043#include "utils/atomic_dex_ref_map-inl.h"
Ian Rogerse63db272014-07-15 15:36:11 -070044
45namespace art {
46
Vladimir Markof91fc122020-05-13 09:21:00 +010047std::unique_ptr<CompilerOptions> CommonCompilerTest::CreateCompilerOptions(
48 InstructionSet instruction_set, const std::string& variant) {
49 std::unique_ptr<CompilerOptions> compiler_options = std::make_unique<CompilerOptions>();
50 compiler_options->instruction_set_ = instruction_set;
51 std::string error_msg;
52 compiler_options->instruction_set_features_ =
53 InstructionSetFeatures::FromVariant(instruction_set, variant, &error_msg);
54 CHECK(compiler_options->instruction_set_features_ != nullptr) << error_msg;
55 return compiler_options;
56}
57
Ian Rogerse63db272014-07-15 15:36:11 -070058CommonCompilerTest::CommonCompilerTest() {}
59CommonCompilerTest::~CommonCompilerTest() {}
60
Vladimir Marko815d5e52019-03-04 10:18:31 +000061void CommonCompilerTest::MakeExecutable(ArtMethod* method, const CompiledMethod* compiled_method) {
Ian Rogerse63db272014-07-15 15:36:11 -070062 CHECK(method != nullptr);
Calin Juravlee0ac1152017-02-13 19:03:47 -080063 // If the code size is 0 it means the method was skipped due to profile guided compilation.
64 if (compiled_method != nullptr && compiled_method->GetQuickCode().size() != 0u) {
Vladimir Marko35831e82015-09-11 11:59:18 +010065 ArrayRef<const uint8_t> code = compiled_method->GetQuickCode();
Mathieu Chartiercbcedbf2017-03-12 22:24:50 -070066 const uint32_t code_size = code.size();
Vladimir Marko35831e82015-09-11 11:59:18 +010067 ArrayRef<const uint8_t> vmap_table = compiled_method->GetVmapTable();
Mathieu Chartiercbcedbf2017-03-12 22:24:50 -070068 const uint32_t vmap_table_offset = vmap_table.empty() ? 0u
Vladimir Marko35831e82015-09-11 11:59:18 +010069 : sizeof(OatQuickMethodHeader) + vmap_table.size();
Nicolas Geoffray57083762019-03-05 09:24:45 +000070 OatQuickMethodHeader method_header(vmap_table_offset, code_size);
Ian Rogerse63db272014-07-15 15:36:11 -070071
Elliott Hughes956af0f2014-12-11 14:34:28 -080072 header_code_and_maps_chunks_.push_back(std::vector<uint8_t>());
73 std::vector<uint8_t>* chunk = &header_code_and_maps_chunks_.back();
Vladimir Marko562ff442015-10-27 18:51:20 +000074 const size_t max_padding = GetInstructionSetAlignment(compiled_method->GetInstructionSet());
David Srbecky8cd54542018-07-15 23:58:44 +010075 const size_t size = vmap_table.size() + sizeof(method_header) + code_size;
Vladimir Marko562ff442015-10-27 18:51:20 +000076 chunk->reserve(size + max_padding);
Elliott Hughes956af0f2014-12-11 14:34:28 -080077 chunk->resize(sizeof(method_header));
Andreas Gampeb68ed2c2018-06-20 10:39:31 -070078 static_assert(std::is_trivially_copyable<OatQuickMethodHeader>::value, "Cannot use memcpy");
Elliott Hughes956af0f2014-12-11 14:34:28 -080079 memcpy(&(*chunk)[0], &method_header, sizeof(method_header));
Vladimir Marko35831e82015-09-11 11:59:18 +010080 chunk->insert(chunk->begin(), vmap_table.begin(), vmap_table.end());
Vladimir Marko35831e82015-09-11 11:59:18 +010081 chunk->insert(chunk->end(), code.begin(), code.end());
Vladimir Marko562ff442015-10-27 18:51:20 +000082 CHECK_EQ(chunk->size(), size);
83 const void* unaligned_code_ptr = chunk->data() + (size - code_size);
84 size_t offset = dchecked_integral_cast<size_t>(reinterpret_cast<uintptr_t>(unaligned_code_ptr));
85 size_t padding = compiled_method->AlignCode(offset) - offset;
86 // Make sure no resizing takes place.
87 CHECK_GE(chunk->capacity(), chunk->size() + padding);
88 chunk->insert(chunk->begin(), padding, 0);
89 const void* code_ptr = reinterpret_cast<const uint8_t*>(unaligned_code_ptr) + padding;
90 CHECK_EQ(code_ptr, static_cast<const void*>(chunk->data() + (chunk->size() - code_size)));
Vladimir Marko35831e82015-09-11 11:59:18 +010091 MakeExecutable(code_ptr, code.size());
Ian Rogerse63db272014-07-15 15:36:11 -070092 const void* method_code = CompiledMethod::CodePointer(code_ptr,
93 compiled_method->GetInstructionSet());
David Sehr709b0702016-10-13 09:12:37 -070094 LOG(INFO) << "MakeExecutable " << method->PrettyMethod() << " code=" << method_code;
Vladimir Markofbfc3942017-07-27 16:51:35 +010095 method->SetEntryPointFromQuickCompiledCode(method_code);
Ian Rogerse63db272014-07-15 15:36:11 -070096 } else {
97 // No code? You must mean to go into the interpreter.
98 // Or the generic JNI...
Ian Rogers6f3dbba2014-10-14 17:41:57 -070099 class_linker_->SetEntryPointsToInterpreter(method);
Ian Rogerse63db272014-07-15 15:36:11 -0700100 }
101}
102
103void CommonCompilerTest::MakeExecutable(const void* code_start, size_t code_length) {
104 CHECK(code_start != nullptr);
105 CHECK_NE(code_length, 0U);
106 uintptr_t data = reinterpret_cast<uintptr_t>(code_start);
107 uintptr_t base = RoundDown(data, kPageSize);
108 uintptr_t limit = RoundUp(data + code_length, kPageSize);
109 uintptr_t len = limit - base;
David Srbecky2acd1ec2020-05-16 01:38:49 +0100110 // Remove hwasan tag. This is done in kernel in newer versions. This supports older kernels.
111 void* base_ptr = HWASanUntag(reinterpret_cast<void*>(base));
112 int result = mprotect(base_ptr, len, PROT_READ | PROT_WRITE | PROT_EXEC);
Ian Rogerse63db272014-07-15 15:36:11 -0700113 CHECK_EQ(result, 0);
114
Orion Hodsonaeb02232019-06-25 14:18:18 +0100115 CHECK(FlushCpuCaches(reinterpret_cast<void*>(base), reinterpret_cast<void*>(base + len)));
Ian Rogerse63db272014-07-15 15:36:11 -0700116}
117
Ian Rogerse63db272014-07-15 15:36:11 -0700118void CommonCompilerTest::SetUp() {
119 CommonRuntimeTest::SetUp();
120 {
121 ScopedObjectAccess soa(Thread::Current());
122
Vladimir Markoa0431112018-06-25 09:32:54 +0100123 runtime_->SetInstructionSet(instruction_set_);
Andreas Gampe8228cdf2017-05-30 15:03:54 -0700124 for (uint32_t i = 0; i < static_cast<uint32_t>(CalleeSaveType::kLastCalleeSaveType); ++i) {
125 CalleeSaveType type = CalleeSaveType(i);
Ian Rogerse63db272014-07-15 15:36:11 -0700126 if (!runtime_->HasCalleeSaveMethod(type)) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700127 runtime_->SetCalleeSaveMethod(runtime_->CreateCalleeSaveMethod(), type);
Ian Rogerse63db272014-07-15 15:36:11 -0700128 }
129 }
Ian Rogerse63db272014-07-15 15:36:11 -0700130 }
Mathieu Chartierceb07b32015-12-10 09:33:21 -0800131}
132
Vladimir Markoa0431112018-06-25 09:32:54 +0100133void CommonCompilerTest::ApplyInstructionSet() {
134 // Copy local instruction_set_ and instruction_set_features_ to *compiler_options_;
135 CHECK(instruction_set_features_ != nullptr);
136 if (instruction_set_ == InstructionSet::kThumb2) {
137 CHECK_EQ(InstructionSet::kArm, instruction_set_features_->GetInstructionSet());
138 } else {
139 CHECK_EQ(instruction_set_, instruction_set_features_->GetInstructionSet());
140 }
141 compiler_options_->instruction_set_ = instruction_set_;
142 compiler_options_->instruction_set_features_ =
143 InstructionSetFeatures::FromBitmap(instruction_set_, instruction_set_features_->AsBitmap());
144 CHECK(compiler_options_->instruction_set_features_->Equals(instruction_set_features_.get()));
145}
146
147void CommonCompilerTest::OverrideInstructionSetFeatures(InstructionSet instruction_set,
148 const std::string& variant) {
149 instruction_set_ = instruction_set;
150 std::string error_msg;
151 instruction_set_features_ =
152 InstructionSetFeatures::FromVariant(instruction_set, variant, &error_msg);
153 CHECK(instruction_set_features_ != nullptr) << error_msg;
154
155 if (compiler_options_ != nullptr) {
156 ApplyInstructionSet();
157 }
158}
159
Ian Rogerse63db272014-07-15 15:36:11 -0700160void CommonCompilerTest::SetUpRuntimeOptions(RuntimeOptions* options) {
161 CommonRuntimeTest::SetUpRuntimeOptions(options);
162
163 compiler_options_.reset(new CompilerOptions);
164 verification_results_.reset(new VerificationResults(compiler_options_.get()));
Vladimir Marko815d5e52019-03-04 10:18:31 +0000165
166 ApplyInstructionSet();
Ian Rogerse63db272014-07-15 15:36:11 -0700167}
168
Roland Levillainbbcc01a2015-06-30 14:16:48 +0100169Compiler::Kind CommonCompilerTest::GetCompilerKind() const {
170 return compiler_kind_;
171}
172
173void CommonCompilerTest::SetCompilerKind(Compiler::Kind compiler_kind) {
174 compiler_kind_ = compiler_kind;
175}
176
Ian Rogerse63db272014-07-15 15:36:11 -0700177void CommonCompilerTest::TearDown() {
Ian Rogerse63db272014-07-15 15:36:11 -0700178 verification_results_.reset();
179 compiler_options_.reset();
180
181 CommonRuntimeTest::TearDown();
182}
183
Mathieu Chartiere401d142015-04-22 13:56:20 -0700184void CommonCompilerTest::CompileMethod(ArtMethod* method) {
Ian Rogerse63db272014-07-15 15:36:11 -0700185 CHECK(method != nullptr);
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100186 TimingLogger timings("CommonCompilerTest::CompileMethod", false, false);
Ian Rogerse63db272014-07-15 15:36:11 -0700187 TimingLogger::ScopedTiming t(__FUNCTION__, &timings);
Vladimir Marko815d5e52019-03-04 10:18:31 +0000188 CompiledMethodStorage storage(/*swap_fd=*/ -1);
Vladimir Marko4b2d1c52019-03-06 11:21:11 +0000189 CompiledMethod* compiled_method = nullptr;
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100190 {
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100191 DCHECK(!Runtime::Current()->IsStarted());
Vladimir Marko815d5e52019-03-04 10:18:31 +0000192 Thread* self = Thread::Current();
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100193 StackHandleScope<2> hs(self);
Vladimir Marko815d5e52019-03-04 10:18:31 +0000194 std::unique_ptr<Compiler> compiler(
195 Compiler::Create(*compiler_options_, &storage, compiler_kind_));
196 const DexFile& dex_file = *method->GetDexFile();
197 Handle<mirror::DexCache> dex_cache = hs.NewHandle(class_linker_->FindDexCache(self, dex_file));
198 Handle<mirror::ClassLoader> class_loader = hs.NewHandle(method->GetClassLoader());
Vladimir Marko2afaff72018-11-30 17:01:50 +0000199 compiler_options_->verification_results_ = verification_results_.get();
Vladimir Marko815d5e52019-03-04 10:18:31 +0000200 if (method->IsNative()) {
201 compiled_method = compiler->JniCompile(method->GetAccessFlags(),
202 method->GetDexMethodIndex(),
203 dex_file,
204 dex_cache);
205 } else {
206 verification_results_->AddDexFile(&dex_file);
207 verification_results_->CreateVerifiedMethodFor(
208 MethodReference(&dex_file, method->GetDexMethodIndex()));
209 compiled_method = compiler->Compile(method->GetCodeItem(),
210 method->GetAccessFlags(),
211 method->GetInvokeType(),
212 method->GetClassDefIndex(),
213 method->GetDexMethodIndex(),
214 class_loader,
215 dex_file,
216 dex_cache);
217 }
Vladimir Marko2afaff72018-11-30 17:01:50 +0000218 compiler_options_->verification_results_ = nullptr;
Vladimir Markodc4bcce2018-06-21 16:15:42 +0100219 }
Vladimir Marko4b2d1c52019-03-06 11:21:11 +0000220 CHECK(method != nullptr);
221 {
222 TimingLogger::ScopedTiming t2("MakeExecutable", &timings);
223 MakeExecutable(method, compiled_method);
224 }
225 CompiledMethod::ReleaseSwapAllocatedCompiledMethod(&storage, compiled_method);
Ian Rogerse63db272014-07-15 15:36:11 -0700226}
227
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700228void CommonCompilerTest::CompileDirectMethod(Handle<mirror::ClassLoader> class_loader,
Ian Rogerse63db272014-07-15 15:36:11 -0700229 const char* class_name, const char* method_name,
230 const char* signature) {
231 std::string class_descriptor(DotToDescriptor(class_name));
232 Thread* self = Thread::Current();
Vladimir Markoe9987b02018-05-22 16:26:43 +0100233 ObjPtr<mirror::Class> klass =
234 class_linker_->FindClass(self, class_descriptor.c_str(), class_loader);
Ian Rogerse63db272014-07-15 15:36:11 -0700235 CHECK(klass != nullptr) << "Class not found " << class_name;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700236 auto pointer_size = class_linker_->GetImagePointerSize();
Vladimir Markoba118822017-06-12 15:41:56 +0100237 ArtMethod* method = klass->FindClassMethod(method_name, signature, pointer_size);
238 CHECK(method != nullptr && method->IsDirect()) << "Direct method not found: "
Ian Rogerse63db272014-07-15 15:36:11 -0700239 << class_name << "." << method_name << signature;
240 CompileMethod(method);
241}
242
Andreas Gampe5a4b8a22014-09-11 08:30:08 -0700243void CommonCompilerTest::CompileVirtualMethod(Handle<mirror::ClassLoader> class_loader,
Mathieu Chartierbf99f772014-08-23 16:37:27 -0700244 const char* class_name, const char* method_name,
245 const char* signature) {
Ian Rogerse63db272014-07-15 15:36:11 -0700246 std::string class_descriptor(DotToDescriptor(class_name));
247 Thread* self = Thread::Current();
Vladimir Markoe9987b02018-05-22 16:26:43 +0100248 ObjPtr<mirror::Class> klass =
249 class_linker_->FindClass(self, class_descriptor.c_str(), class_loader);
Ian Rogerse63db272014-07-15 15:36:11 -0700250 CHECK(klass != nullptr) << "Class not found " << class_name;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700251 auto pointer_size = class_linker_->GetImagePointerSize();
Vladimir Markoba118822017-06-12 15:41:56 +0100252 ArtMethod* method = klass->FindClassMethod(method_name, signature, pointer_size);
253 CHECK(method != nullptr && !method->IsDirect()) << "Virtual method not found: "
Ian Rogerse63db272014-07-15 15:36:11 -0700254 << class_name << "." << method_name << signature;
255 CompileMethod(method);
256}
257
Vladimir Markoa0431112018-06-25 09:32:54 +0100258void CommonCompilerTest::ClearBootImageOption() {
Vladimir Marko9c4b9702018-11-14 15:09:02 +0000259 compiler_options_->image_type_ = CompilerOptions::ImageType::kNone;
Vladimir Markoa0431112018-06-25 09:32:54 +0100260}
261
Ian Rogerse63db272014-07-15 15:36:11 -0700262} // namespace art