Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 1 | /* |
| 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 Gampe | b68ed2c | 2018-06-20 10:39:31 -0700 | [diff] [blame] | 19 | #include <type_traits> |
| 20 | |
Ian Rogers | d582fa4 | 2014-11-05 23:46:43 -0800 | [diff] [blame] | 21 | #include "arch/instruction_set_features.h" |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 22 | #include "art_field-inl.h" |
Andreas Gampe | c6ea7d0 | 2017-02-01 16:46:28 -0800 | [diff] [blame] | 23 | #include "art_method-inl.h" |
Andreas Gampe | 8228cdf | 2017-05-30 15:03:54 -0700 | [diff] [blame] | 24 | #include "base/callee_save_type.h" |
Vladimir Marko | 2afaff7 | 2018-11-30 17:01:50 +0000 | [diff] [blame] | 25 | #include "base/casts.h" |
Andreas Gampe | 542451c | 2016-07-26 09:02:02 -0700 | [diff] [blame] | 26 | #include "base/enums.h" |
David Sehr | c431b9d | 2018-03-02 12:01:51 -0800 | [diff] [blame] | 27 | #include "base/utils.h" |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 28 | #include "class_linker.h" |
Vladimir Marko | d8dbc8d | 2017-09-20 13:37:47 +0100 | [diff] [blame] | 29 | #include "compiled_method-inl.h" |
David Sehr | b2ec9f5 | 2018-02-21 13:20:31 -0800 | [diff] [blame] | 30 | #include "dex/descriptors_names.h" |
Mathieu Chartier | 5bdab12 | 2015-01-26 18:30:19 -0800 | [diff] [blame] | 31 | #include "dex/verification_results.h" |
Vladimir Marko | 815d5e5 | 2019-03-04 10:18:31 +0000 | [diff] [blame] | 32 | #include "driver/compiled_method_storage.h" |
Vladimir Marko | 20f8559 | 2015-03-19 10:07:02 +0000 | [diff] [blame] | 33 | #include "driver/compiler_options.h" |
Vladimir Marko | dc4bcce | 2018-06-21 16:15:42 +0100 | [diff] [blame] | 34 | #include "jni/java_vm_ext.h" |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 35 | #include "interpreter/interpreter.h" |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 36 | #include "mirror/class-inl.h" |
Andreas Gampe | 8cf9cb3 | 2017-07-19 09:28:38 -0700 | [diff] [blame] | 37 | #include "mirror/class_loader.h" |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 38 | #include "mirror/dex_cache.h" |
| 39 | #include "mirror/object-inl.h" |
Nicolas Geoffray | 524e7ea | 2015-10-16 17:13:34 +0100 | [diff] [blame] | 40 | #include "oat_quick_method_header.h" |
Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 41 | #include "scoped_thread_state_change-inl.h" |
Andreas Gampe | b486a98 | 2017-06-01 13:45:54 -0700 | [diff] [blame] | 42 | #include "thread-current-inl.h" |
Vladimir Marko | 213ee2d | 2018-06-22 11:56:34 +0100 | [diff] [blame] | 43 | #include "utils/atomic_dex_ref_map-inl.h" |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 44 | |
| 45 | namespace art { |
| 46 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 47 | CommonCompilerTest::CommonCompilerTest() {} |
| 48 | CommonCompilerTest::~CommonCompilerTest() {} |
| 49 | |
Vladimir Marko | 815d5e5 | 2019-03-04 10:18:31 +0000 | [diff] [blame] | 50 | void CommonCompilerTest::MakeExecutable(ArtMethod* method, const CompiledMethod* compiled_method) { |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 51 | CHECK(method != nullptr); |
Calin Juravle | e0ac115 | 2017-02-13 19:03:47 -0800 | [diff] [blame] | 52 | // If the code size is 0 it means the method was skipped due to profile guided compilation. |
| 53 | if (compiled_method != nullptr && compiled_method->GetQuickCode().size() != 0u) { |
Vladimir Marko | 35831e8 | 2015-09-11 11:59:18 +0100 | [diff] [blame] | 54 | ArrayRef<const uint8_t> code = compiled_method->GetQuickCode(); |
Mathieu Chartier | cbcedbf | 2017-03-12 22:24:50 -0700 | [diff] [blame] | 55 | const uint32_t code_size = code.size(); |
Vladimir Marko | 35831e8 | 2015-09-11 11:59:18 +0100 | [diff] [blame] | 56 | ArrayRef<const uint8_t> vmap_table = compiled_method->GetVmapTable(); |
Mathieu Chartier | cbcedbf | 2017-03-12 22:24:50 -0700 | [diff] [blame] | 57 | const uint32_t vmap_table_offset = vmap_table.empty() ? 0u |
Vladimir Marko | 35831e8 | 2015-09-11 11:59:18 +0100 | [diff] [blame] | 58 | : sizeof(OatQuickMethodHeader) + vmap_table.size(); |
Nicolas Geoffray | 5708376 | 2019-03-05 09:24:45 +0000 | [diff] [blame] | 59 | OatQuickMethodHeader method_header(vmap_table_offset, code_size); |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 60 | |
Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame] | 61 | header_code_and_maps_chunks_.push_back(std::vector<uint8_t>()); |
| 62 | std::vector<uint8_t>* chunk = &header_code_and_maps_chunks_.back(); |
Vladimir Marko | 562ff44 | 2015-10-27 18:51:20 +0000 | [diff] [blame] | 63 | const size_t max_padding = GetInstructionSetAlignment(compiled_method->GetInstructionSet()); |
David Srbecky | 8cd5454 | 2018-07-15 23:58:44 +0100 | [diff] [blame] | 64 | const size_t size = vmap_table.size() + sizeof(method_header) + code_size; |
Vladimir Marko | 562ff44 | 2015-10-27 18:51:20 +0000 | [diff] [blame] | 65 | chunk->reserve(size + max_padding); |
Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame] | 66 | chunk->resize(sizeof(method_header)); |
Andreas Gampe | b68ed2c | 2018-06-20 10:39:31 -0700 | [diff] [blame] | 67 | static_assert(std::is_trivially_copyable<OatQuickMethodHeader>::value, "Cannot use memcpy"); |
Elliott Hughes | 956af0f | 2014-12-11 14:34:28 -0800 | [diff] [blame] | 68 | memcpy(&(*chunk)[0], &method_header, sizeof(method_header)); |
Vladimir Marko | 35831e8 | 2015-09-11 11:59:18 +0100 | [diff] [blame] | 69 | chunk->insert(chunk->begin(), vmap_table.begin(), vmap_table.end()); |
Vladimir Marko | 35831e8 | 2015-09-11 11:59:18 +0100 | [diff] [blame] | 70 | chunk->insert(chunk->end(), code.begin(), code.end()); |
Vladimir Marko | 562ff44 | 2015-10-27 18:51:20 +0000 | [diff] [blame] | 71 | CHECK_EQ(chunk->size(), size); |
| 72 | const void* unaligned_code_ptr = chunk->data() + (size - code_size); |
| 73 | size_t offset = dchecked_integral_cast<size_t>(reinterpret_cast<uintptr_t>(unaligned_code_ptr)); |
| 74 | size_t padding = compiled_method->AlignCode(offset) - offset; |
| 75 | // Make sure no resizing takes place. |
| 76 | CHECK_GE(chunk->capacity(), chunk->size() + padding); |
| 77 | chunk->insert(chunk->begin(), padding, 0); |
| 78 | const void* code_ptr = reinterpret_cast<const uint8_t*>(unaligned_code_ptr) + padding; |
| 79 | CHECK_EQ(code_ptr, static_cast<const void*>(chunk->data() + (chunk->size() - code_size))); |
Vladimir Marko | 35831e8 | 2015-09-11 11:59:18 +0100 | [diff] [blame] | 80 | MakeExecutable(code_ptr, code.size()); |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 81 | const void* method_code = CompiledMethod::CodePointer(code_ptr, |
| 82 | compiled_method->GetInstructionSet()); |
David Sehr | 709b070 | 2016-10-13 09:12:37 -0700 | [diff] [blame] | 83 | LOG(INFO) << "MakeExecutable " << method->PrettyMethod() << " code=" << method_code; |
Vladimir Marko | fbfc394 | 2017-07-27 16:51:35 +0100 | [diff] [blame] | 84 | method->SetEntryPointFromQuickCompiledCode(method_code); |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 85 | } else { |
| 86 | // No code? You must mean to go into the interpreter. |
| 87 | // Or the generic JNI... |
Ian Rogers | 6f3dbba | 2014-10-14 17:41:57 -0700 | [diff] [blame] | 88 | class_linker_->SetEntryPointsToInterpreter(method); |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 89 | } |
| 90 | } |
| 91 | |
| 92 | void CommonCompilerTest::MakeExecutable(const void* code_start, size_t code_length) { |
| 93 | CHECK(code_start != nullptr); |
| 94 | CHECK_NE(code_length, 0U); |
| 95 | uintptr_t data = reinterpret_cast<uintptr_t>(code_start); |
| 96 | uintptr_t base = RoundDown(data, kPageSize); |
| 97 | uintptr_t limit = RoundUp(data + code_length, kPageSize); |
| 98 | uintptr_t len = limit - base; |
| 99 | int result = mprotect(reinterpret_cast<void*>(base), len, PROT_READ | PROT_WRITE | PROT_EXEC); |
| 100 | CHECK_EQ(result, 0); |
| 101 | |
Orion Hodson | aeb0223 | 2019-06-25 14:18:18 +0100 | [diff] [blame^] | 102 | CHECK(FlushCpuCaches(reinterpret_cast<void*>(base), reinterpret_cast<void*>(base + len))); |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 103 | } |
| 104 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 105 | void CommonCompilerTest::SetUp() { |
| 106 | CommonRuntimeTest::SetUp(); |
| 107 | { |
| 108 | ScopedObjectAccess soa(Thread::Current()); |
| 109 | |
Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 110 | runtime_->SetInstructionSet(instruction_set_); |
Andreas Gampe | 8228cdf | 2017-05-30 15:03:54 -0700 | [diff] [blame] | 111 | for (uint32_t i = 0; i < static_cast<uint32_t>(CalleeSaveType::kLastCalleeSaveType); ++i) { |
| 112 | CalleeSaveType type = CalleeSaveType(i); |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 113 | if (!runtime_->HasCalleeSaveMethod(type)) { |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 114 | runtime_->SetCalleeSaveMethod(runtime_->CreateCalleeSaveMethod(), type); |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 115 | } |
| 116 | } |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 117 | } |
Mathieu Chartier | ceb07b3 | 2015-12-10 09:33:21 -0800 | [diff] [blame] | 118 | } |
| 119 | |
Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 120 | void CommonCompilerTest::ApplyInstructionSet() { |
| 121 | // Copy local instruction_set_ and instruction_set_features_ to *compiler_options_; |
| 122 | CHECK(instruction_set_features_ != nullptr); |
| 123 | if (instruction_set_ == InstructionSet::kThumb2) { |
| 124 | CHECK_EQ(InstructionSet::kArm, instruction_set_features_->GetInstructionSet()); |
| 125 | } else { |
| 126 | CHECK_EQ(instruction_set_, instruction_set_features_->GetInstructionSet()); |
| 127 | } |
| 128 | compiler_options_->instruction_set_ = instruction_set_; |
| 129 | compiler_options_->instruction_set_features_ = |
| 130 | InstructionSetFeatures::FromBitmap(instruction_set_, instruction_set_features_->AsBitmap()); |
| 131 | CHECK(compiler_options_->instruction_set_features_->Equals(instruction_set_features_.get())); |
| 132 | } |
| 133 | |
| 134 | void CommonCompilerTest::OverrideInstructionSetFeatures(InstructionSet instruction_set, |
| 135 | const std::string& variant) { |
| 136 | instruction_set_ = instruction_set; |
| 137 | std::string error_msg; |
| 138 | instruction_set_features_ = |
| 139 | InstructionSetFeatures::FromVariant(instruction_set, variant, &error_msg); |
| 140 | CHECK(instruction_set_features_ != nullptr) << error_msg; |
| 141 | |
| 142 | if (compiler_options_ != nullptr) { |
| 143 | ApplyInstructionSet(); |
| 144 | } |
| 145 | } |
| 146 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 147 | void CommonCompilerTest::SetUpRuntimeOptions(RuntimeOptions* options) { |
| 148 | CommonRuntimeTest::SetUpRuntimeOptions(options); |
| 149 | |
| 150 | compiler_options_.reset(new CompilerOptions); |
| 151 | verification_results_.reset(new VerificationResults(compiler_options_.get())); |
Vladimir Marko | 815d5e5 | 2019-03-04 10:18:31 +0000 | [diff] [blame] | 152 | |
| 153 | ApplyInstructionSet(); |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 154 | } |
| 155 | |
Roland Levillain | bbcc01a | 2015-06-30 14:16:48 +0100 | [diff] [blame] | 156 | Compiler::Kind CommonCompilerTest::GetCompilerKind() const { |
| 157 | return compiler_kind_; |
| 158 | } |
| 159 | |
| 160 | void CommonCompilerTest::SetCompilerKind(Compiler::Kind compiler_kind) { |
| 161 | compiler_kind_ = compiler_kind; |
| 162 | } |
| 163 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 164 | void CommonCompilerTest::TearDown() { |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 165 | verification_results_.reset(); |
| 166 | compiler_options_.reset(); |
| 167 | |
| 168 | CommonRuntimeTest::TearDown(); |
| 169 | } |
| 170 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 171 | void CommonCompilerTest::CompileMethod(ArtMethod* method) { |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 172 | CHECK(method != nullptr); |
Vladimir Marko | dc4bcce | 2018-06-21 16:15:42 +0100 | [diff] [blame] | 173 | TimingLogger timings("CommonCompilerTest::CompileMethod", false, false); |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 174 | TimingLogger::ScopedTiming t(__FUNCTION__, &timings); |
Vladimir Marko | 815d5e5 | 2019-03-04 10:18:31 +0000 | [diff] [blame] | 175 | CompiledMethodStorage storage(/*swap_fd=*/ -1); |
Vladimir Marko | 4b2d1c5 | 2019-03-06 11:21:11 +0000 | [diff] [blame] | 176 | CompiledMethod* compiled_method = nullptr; |
Vladimir Marko | dc4bcce | 2018-06-21 16:15:42 +0100 | [diff] [blame] | 177 | { |
Vladimir Marko | dc4bcce | 2018-06-21 16:15:42 +0100 | [diff] [blame] | 178 | DCHECK(!Runtime::Current()->IsStarted()); |
Vladimir Marko | 815d5e5 | 2019-03-04 10:18:31 +0000 | [diff] [blame] | 179 | Thread* self = Thread::Current(); |
Vladimir Marko | dc4bcce | 2018-06-21 16:15:42 +0100 | [diff] [blame] | 180 | StackHandleScope<2> hs(self); |
Vladimir Marko | 815d5e5 | 2019-03-04 10:18:31 +0000 | [diff] [blame] | 181 | std::unique_ptr<Compiler> compiler( |
| 182 | Compiler::Create(*compiler_options_, &storage, compiler_kind_)); |
| 183 | const DexFile& dex_file = *method->GetDexFile(); |
| 184 | Handle<mirror::DexCache> dex_cache = hs.NewHandle(class_linker_->FindDexCache(self, dex_file)); |
| 185 | Handle<mirror::ClassLoader> class_loader = hs.NewHandle(method->GetClassLoader()); |
Vladimir Marko | 2afaff7 | 2018-11-30 17:01:50 +0000 | [diff] [blame] | 186 | compiler_options_->verification_results_ = verification_results_.get(); |
Vladimir Marko | 815d5e5 | 2019-03-04 10:18:31 +0000 | [diff] [blame] | 187 | if (method->IsNative()) { |
| 188 | compiled_method = compiler->JniCompile(method->GetAccessFlags(), |
| 189 | method->GetDexMethodIndex(), |
| 190 | dex_file, |
| 191 | dex_cache); |
| 192 | } else { |
| 193 | verification_results_->AddDexFile(&dex_file); |
| 194 | verification_results_->CreateVerifiedMethodFor( |
| 195 | MethodReference(&dex_file, method->GetDexMethodIndex())); |
| 196 | compiled_method = compiler->Compile(method->GetCodeItem(), |
| 197 | method->GetAccessFlags(), |
| 198 | method->GetInvokeType(), |
| 199 | method->GetClassDefIndex(), |
| 200 | method->GetDexMethodIndex(), |
| 201 | class_loader, |
| 202 | dex_file, |
| 203 | dex_cache); |
| 204 | } |
Vladimir Marko | 2afaff7 | 2018-11-30 17:01:50 +0000 | [diff] [blame] | 205 | compiler_options_->verification_results_ = nullptr; |
Vladimir Marko | dc4bcce | 2018-06-21 16:15:42 +0100 | [diff] [blame] | 206 | } |
Vladimir Marko | 4b2d1c5 | 2019-03-06 11:21:11 +0000 | [diff] [blame] | 207 | CHECK(method != nullptr); |
| 208 | { |
| 209 | TimingLogger::ScopedTiming t2("MakeExecutable", &timings); |
| 210 | MakeExecutable(method, compiled_method); |
| 211 | } |
| 212 | CompiledMethod::ReleaseSwapAllocatedCompiledMethod(&storage, compiled_method); |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 213 | } |
| 214 | |
Andreas Gampe | 5a4b8a2 | 2014-09-11 08:30:08 -0700 | [diff] [blame] | 215 | void CommonCompilerTest::CompileDirectMethod(Handle<mirror::ClassLoader> class_loader, |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 216 | const char* class_name, const char* method_name, |
| 217 | const char* signature) { |
| 218 | std::string class_descriptor(DotToDescriptor(class_name)); |
| 219 | Thread* self = Thread::Current(); |
Vladimir Marko | e9987b0 | 2018-05-22 16:26:43 +0100 | [diff] [blame] | 220 | ObjPtr<mirror::Class> klass = |
| 221 | class_linker_->FindClass(self, class_descriptor.c_str(), class_loader); |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 222 | CHECK(klass != nullptr) << "Class not found " << class_name; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 223 | auto pointer_size = class_linker_->GetImagePointerSize(); |
Vladimir Marko | ba11882 | 2017-06-12 15:41:56 +0100 | [diff] [blame] | 224 | ArtMethod* method = klass->FindClassMethod(method_name, signature, pointer_size); |
| 225 | CHECK(method != nullptr && method->IsDirect()) << "Direct method not found: " |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 226 | << class_name << "." << method_name << signature; |
| 227 | CompileMethod(method); |
| 228 | } |
| 229 | |
Andreas Gampe | 5a4b8a2 | 2014-09-11 08:30:08 -0700 | [diff] [blame] | 230 | void CommonCompilerTest::CompileVirtualMethod(Handle<mirror::ClassLoader> class_loader, |
Mathieu Chartier | bf99f77 | 2014-08-23 16:37:27 -0700 | [diff] [blame] | 231 | const char* class_name, const char* method_name, |
| 232 | const char* signature) { |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 233 | std::string class_descriptor(DotToDescriptor(class_name)); |
| 234 | Thread* self = Thread::Current(); |
Vladimir Marko | e9987b0 | 2018-05-22 16:26:43 +0100 | [diff] [blame] | 235 | ObjPtr<mirror::Class> klass = |
| 236 | class_linker_->FindClass(self, class_descriptor.c_str(), class_loader); |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 237 | CHECK(klass != nullptr) << "Class not found " << class_name; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 238 | auto pointer_size = class_linker_->GetImagePointerSize(); |
Vladimir Marko | ba11882 | 2017-06-12 15:41:56 +0100 | [diff] [blame] | 239 | ArtMethod* method = klass->FindClassMethod(method_name, signature, pointer_size); |
| 240 | CHECK(method != nullptr && !method->IsDirect()) << "Virtual method not found: " |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 241 | << class_name << "." << method_name << signature; |
| 242 | CompileMethod(method); |
| 243 | } |
| 244 | |
Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 245 | void CommonCompilerTest::ClearBootImageOption() { |
Vladimir Marko | 9c4b970 | 2018-11-14 15:09:02 +0000 | [diff] [blame] | 246 | compiler_options_->image_type_ = CompilerOptions::ImageType::kNone; |
Vladimir Marko | a043111 | 2018-06-25 09:32:54 +0100 | [diff] [blame] | 247 | } |
| 248 | |
Ian Rogers | e63db27 | 2014-07-15 15:36:11 -0700 | [diff] [blame] | 249 | } // namespace art |