Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [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 | #ifndef ART_COMPILER_COMMON_COMPILER_TEST_H_ |
| 18 | #define ART_COMPILER_COMMON_COMPILER_TEST_H_ |
| 19 | |
Nicolas Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame] | 20 | #include "compiler.h" |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 21 | #include "compiler_callbacks.h" |
| 22 | #include "common_runtime_test.h" |
| 23 | #include "dex/quick/dex_file_to_method_inliner_map.h" |
| 24 | #include "dex/verification_results.h" |
| 25 | #include "driver/compiler_callbacks_impl.h" |
| 26 | #include "driver/compiler_driver.h" |
| 27 | #include "driver/compiler_options.h" |
| 28 | |
| 29 | namespace art { |
| 30 | |
| 31 | #if defined(__arm__) |
| 32 | |
| 33 | #include <sys/ucontext.h> |
| 34 | |
| 35 | // A signal handler called when have an illegal instruction. We record the fact in |
| 36 | // a global boolean and then increment the PC in the signal context to return to |
| 37 | // the next instruction. We know the instruction is an sdiv (4 bytes long). |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 38 | static inline void baddivideinst(int signo, siginfo *si, void *data) { |
| 39 | UNUSED(signo); |
| 40 | UNUSED(si); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 41 | struct ucontext *uc = (struct ucontext *)data; |
| 42 | struct sigcontext *sc = &uc->uc_mcontext; |
| 43 | sc->arm_r0 = 0; // set R0 to #0 to signal error |
| 44 | sc->arm_pc += 4; // skip offending instruction |
| 45 | } |
| 46 | |
| 47 | // This is in arch/arm/arm_sdiv.S. It does the following: |
| 48 | // mov r1,#1 |
| 49 | // sdiv r0,r1,r1 |
| 50 | // bx lr |
| 51 | // |
| 52 | // the result will be the value 1 if sdiv is supported. If it is not supported |
| 53 | // a SIGILL signal will be raised and the signal handler (baddivideinst) called. |
| 54 | // The signal handler sets r0 to #0 and then increments pc beyond the failed instruction. |
| 55 | // Thus if the instruction is not supported, the result of this function will be #0 |
| 56 | |
| 57 | extern "C" bool CheckForARMSDIVInstruction(); |
| 58 | |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 59 | static inline InstructionSetFeatures GuessInstructionFeatures() { |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 60 | InstructionSetFeatures f; |
| 61 | |
| 62 | // Uncomment this for processing of /proc/cpuinfo. |
| 63 | if (false) { |
| 64 | // Look in /proc/cpuinfo for features we need. Only use this when we can guarantee that |
| 65 | // the kernel puts the appropriate feature flags in here. Sometimes it doesn't. |
| 66 | std::ifstream in("/proc/cpuinfo"); |
| 67 | if (in) { |
| 68 | while (!in.eof()) { |
| 69 | std::string line; |
| 70 | std::getline(in, line); |
| 71 | if (!in.eof()) { |
| 72 | if (line.find("Features") != std::string::npos) { |
| 73 | if (line.find("idivt") != std::string::npos) { |
| 74 | f.SetHasDivideInstruction(true); |
| 75 | } |
| 76 | } |
| 77 | } |
| 78 | in.close(); |
| 79 | } |
| 80 | } else { |
| 81 | LOG(INFO) << "Failed to open /proc/cpuinfo"; |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | // See if have a sdiv instruction. Register a signal handler and try to execute |
| 86 | // an sdiv instruction. If we get a SIGILL then it's not supported. We can't use |
| 87 | // the /proc/cpuinfo method for this because Krait devices don't always put the idivt |
| 88 | // feature in the list. |
| 89 | struct sigaction sa, osa; |
| 90 | sa.sa_flags = SA_ONSTACK | SA_RESTART | SA_SIGINFO; |
| 91 | sa.sa_sigaction = baddivideinst; |
| 92 | sigaction(SIGILL, &sa, &osa); |
| 93 | |
| 94 | if (CheckForARMSDIVInstruction()) { |
| 95 | f.SetHasDivideInstruction(true); |
| 96 | } |
| 97 | |
| 98 | // Restore the signal handler. |
| 99 | sigaction(SIGILL, &osa, nullptr); |
| 100 | |
| 101 | // Other feature guesses in here. |
| 102 | return f; |
| 103 | } |
| 104 | |
| 105 | #endif |
| 106 | |
| 107 | // Given a set of instruction features from the build, parse it. The |
| 108 | // input 'str' is a comma separated list of feature names. Parse it and |
| 109 | // return the InstructionSetFeatures object. |
Ian Rogers | 719d1a3 | 2014-03-06 12:13:39 -0800 | [diff] [blame] | 110 | static inline InstructionSetFeatures ParseFeatureList(std::string str) { |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 111 | InstructionSetFeatures result; |
| 112 | typedef std::vector<std::string> FeatureList; |
| 113 | FeatureList features; |
| 114 | Split(str, ',', features); |
| 115 | for (FeatureList::iterator i = features.begin(); i != features.end(); i++) { |
| 116 | std::string feature = Trim(*i); |
| 117 | if (feature == "default") { |
| 118 | // Nothing to do. |
| 119 | } else if (feature == "div") { |
| 120 | // Supports divide instruction. |
| 121 | result.SetHasDivideInstruction(true); |
| 122 | } else if (feature == "nodiv") { |
| 123 | // Turn off support for divide instruction. |
| 124 | result.SetHasDivideInstruction(false); |
| 125 | } else { |
| 126 | LOG(FATAL) << "Unknown instruction set feature: '" << feature << "'"; |
| 127 | } |
| 128 | } |
| 129 | // Others... |
| 130 | return result; |
| 131 | } |
| 132 | |
| 133 | class CommonCompilerTest : public CommonRuntimeTest { |
| 134 | public: |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 135 | // Create an OatMethod based on pointers (for unit tests). |
| 136 | OatFile::OatMethod CreateOatMethod(const void* code, |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 137 | const uint8_t* gc_map) { |
Vladimir Marko | 8a63057 | 2014-04-09 18:45:35 +0100 | [diff] [blame] | 138 | CHECK(code != nullptr); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 139 | const byte* base; |
Vladimir Marko | 8a63057 | 2014-04-09 18:45:35 +0100 | [diff] [blame] | 140 | uint32_t code_offset, gc_map_offset; |
| 141 | if (gc_map == nullptr) { |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 142 | base = reinterpret_cast<const byte*>(code); // Base of data points at code. |
| 143 | base -= kPointerSize; // Move backward so that code_offset != 0. |
| 144 | code_offset = kPointerSize; |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 145 | gc_map_offset = 0; |
| 146 | } else { |
| 147 | // TODO: 64bit support. |
| 148 | base = nullptr; // Base of data in oat file, ie 0. |
| 149 | code_offset = PointerToLowMemUInt32(code); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 150 | gc_map_offset = PointerToLowMemUInt32(gc_map); |
| 151 | } |
| 152 | return OatFile::OatMethod(base, |
| 153 | code_offset, |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 154 | gc_map_offset); |
| 155 | } |
| 156 | |
| 157 | void MakeExecutable(mirror::ArtMethod* method) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 158 | CHECK(method != nullptr); |
| 159 | |
| 160 | const CompiledMethod* compiled_method = nullptr; |
| 161 | if (!method->IsAbstract()) { |
| 162 | mirror::DexCache* dex_cache = method->GetDeclaringClass()->GetDexCache(); |
| 163 | const DexFile& dex_file = *dex_cache->GetDexFile(); |
| 164 | compiled_method = |
| 165 | compiler_driver_->GetCompiledMethod(MethodReference(&dex_file, |
| 166 | method->GetDexMethodIndex())); |
| 167 | } |
| 168 | if (compiled_method != nullptr) { |
| 169 | const std::vector<uint8_t>* code = compiled_method->GetQuickCode(); |
Vladimir Marko | 8a63057 | 2014-04-09 18:45:35 +0100 | [diff] [blame] | 170 | const void* code_ptr; |
| 171 | if (code != nullptr) { |
| 172 | uint32_t code_size = code->size(); |
| 173 | CHECK_NE(0u, code_size); |
| 174 | const std::vector<uint8_t>& vmap_table = compiled_method->GetVmapTable(); |
| 175 | uint32_t vmap_table_offset = vmap_table.empty() ? 0u |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 176 | : sizeof(OatQuickMethodHeader) + vmap_table.size(); |
Vladimir Marko | 8a63057 | 2014-04-09 18:45:35 +0100 | [diff] [blame] | 177 | const std::vector<uint8_t>& mapping_table = compiled_method->GetMappingTable(); |
| 178 | uint32_t mapping_table_offset = mapping_table.empty() ? 0u |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 179 | : sizeof(OatQuickMethodHeader) + vmap_table.size() + mapping_table.size(); |
| 180 | OatQuickMethodHeader method_header(mapping_table_offset, vmap_table_offset, |
| 181 | compiled_method->GetFrameSizeInBytes(), |
| 182 | compiled_method->GetCoreSpillMask(), |
| 183 | compiled_method->GetFpSpillMask(), code_size); |
Vladimir Marko | 8a63057 | 2014-04-09 18:45:35 +0100 | [diff] [blame] | 184 | |
| 185 | header_code_and_maps_chunks_.push_back(std::vector<uint8_t>()); |
| 186 | std::vector<uint8_t>* chunk = &header_code_and_maps_chunks_.back(); |
| 187 | size_t size = sizeof(method_header) + code_size + vmap_table.size() + mapping_table.size(); |
| 188 | size_t code_offset = compiled_method->AlignCode(size - code_size); |
| 189 | size_t padding = code_offset - (size - code_size); |
| 190 | chunk->reserve(padding + size); |
| 191 | chunk->resize(sizeof(method_header)); |
| 192 | memcpy(&(*chunk)[0], &method_header, sizeof(method_header)); |
| 193 | chunk->insert(chunk->begin(), vmap_table.begin(), vmap_table.end()); |
| 194 | chunk->insert(chunk->begin(), mapping_table.begin(), mapping_table.end()); |
| 195 | chunk->insert(chunk->begin(), padding, 0); |
| 196 | chunk->insert(chunk->end(), code->begin(), code->end()); |
| 197 | CHECK_EQ(padding + size, chunk->size()); |
| 198 | code_ptr = &(*chunk)[code_offset]; |
| 199 | } else { |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 200 | code = compiled_method->GetPortableCode(); |
Vladimir Marko | 8a63057 | 2014-04-09 18:45:35 +0100 | [diff] [blame] | 201 | code_ptr = &(*code)[0]; |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 202 | } |
Vladimir Marko | 8a63057 | 2014-04-09 18:45:35 +0100 | [diff] [blame] | 203 | MakeExecutable(code_ptr, code->size()); |
| 204 | const void* method_code = CompiledMethod::CodePointer(code_ptr, |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 205 | compiled_method->GetInstructionSet()); |
| 206 | LOG(INFO) << "MakeExecutable " << PrettyMethod(method) << " code=" << method_code; |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 207 | OatFile::OatMethod oat_method = CreateOatMethod(method_code, nullptr); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 208 | oat_method.LinkMethod(method); |
| 209 | method->SetEntryPointFromInterpreter(artInterpreterToCompiledCodeBridge); |
| 210 | } else { |
| 211 | // No code? You must mean to go into the interpreter. |
Andreas Gampe | 2da8823 | 2014-02-27 12:26:20 -0800 | [diff] [blame] | 212 | // Or the generic JNI... |
Andreas Gampe | bf6b92a | 2014-03-05 16:11:04 -0800 | [diff] [blame] | 213 | if (!method->IsNative()) { |
| 214 | const void* method_code = kUsePortableCompiler ? GetPortableToInterpreterBridge() |
| 215 | : GetQuickToInterpreterBridge(); |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 216 | OatFile::OatMethod oat_method = CreateOatMethod(method_code, nullptr); |
Andreas Gampe | bf6b92a | 2014-03-05 16:11:04 -0800 | [diff] [blame] | 217 | oat_method.LinkMethod(method); |
| 218 | method->SetEntryPointFromInterpreter(interpreter::artInterpreterToInterpreterBridge); |
| 219 | } else { |
| 220 | const void* method_code = GetQuickGenericJniTrampoline(); |
Andreas Gampe | 36fea8d | 2014-03-10 13:37:40 -0700 | [diff] [blame] | 221 | |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 222 | OatFile::OatMethod oat_method = CreateOatMethod(method_code, nullptr); |
Andreas Gampe | bf6b92a | 2014-03-05 16:11:04 -0800 | [diff] [blame] | 223 | oat_method.LinkMethod(method); |
| 224 | method->SetEntryPointFromInterpreter(artInterpreterToCompiledCodeBridge); |
| 225 | } |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 226 | } |
| 227 | // Create bridges to transition between different kinds of compiled bridge. |
| 228 | if (method->GetEntryPointFromPortableCompiledCode() == nullptr) { |
| 229 | method->SetEntryPointFromPortableCompiledCode(GetPortableToQuickBridge()); |
| 230 | } else { |
| 231 | CHECK(method->GetEntryPointFromQuickCompiledCode() == nullptr); |
| 232 | method->SetEntryPointFromQuickCompiledCode(GetQuickToPortableBridge()); |
| 233 | method->SetIsPortableCompiled(); |
| 234 | } |
| 235 | } |
| 236 | |
| 237 | static void MakeExecutable(const void* code_start, size_t code_length) { |
| 238 | CHECK(code_start != nullptr); |
| 239 | CHECK_NE(code_length, 0U); |
| 240 | uintptr_t data = reinterpret_cast<uintptr_t>(code_start); |
| 241 | uintptr_t base = RoundDown(data, kPageSize); |
| 242 | uintptr_t limit = RoundUp(data + code_length, kPageSize); |
| 243 | uintptr_t len = limit - base; |
| 244 | int result = mprotect(reinterpret_cast<void*>(base), len, PROT_READ | PROT_WRITE | PROT_EXEC); |
| 245 | CHECK_EQ(result, 0); |
| 246 | |
| 247 | // Flush instruction cache |
| 248 | // Only uses __builtin___clear_cache if GCC >= 4.3.3 |
| 249 | #if GCC_VERSION >= 40303 |
| 250 | __builtin___clear_cache(reinterpret_cast<void*>(base), reinterpret_cast<void*>(base + len)); |
| 251 | #else |
Ian Rogers | b48b9eb | 2014-02-28 16:20:21 -0800 | [diff] [blame] | 252 | LOG(WARNING) << "UNIMPLEMENTED: cache flush"; |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 253 | #endif |
| 254 | } |
| 255 | |
| 256 | void MakeExecutable(mirror::ClassLoader* class_loader, const char* class_name) |
| 257 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 258 | std::string class_descriptor(DotToDescriptor(class_name)); |
| 259 | Thread* self = Thread::Current(); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 260 | StackHandleScope<1> hs(self); |
| 261 | Handle<mirror::ClassLoader> loader(hs.NewHandle(class_loader)); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 262 | mirror::Class* klass = class_linker_->FindClass(self, class_descriptor.c_str(), loader); |
| 263 | CHECK(klass != nullptr) << "Class not found " << class_name; |
| 264 | for (size_t i = 0; i < klass->NumDirectMethods(); i++) { |
| 265 | MakeExecutable(klass->GetDirectMethod(i)); |
| 266 | } |
| 267 | for (size_t i = 0; i < klass->NumVirtualMethods(); i++) { |
| 268 | MakeExecutable(klass->GetVirtualMethod(i)); |
| 269 | } |
| 270 | } |
| 271 | |
| 272 | protected: |
| 273 | virtual void SetUp() { |
| 274 | CommonRuntimeTest::SetUp(); |
| 275 | { |
| 276 | ScopedObjectAccess soa(Thread::Current()); |
| 277 | |
| 278 | InstructionSet instruction_set = kNone; |
| 279 | |
| 280 | // Take the default set of instruction features from the build. |
| 281 | InstructionSetFeatures instruction_set_features = |
Ian Rogers | 8afeb85 | 2014-04-02 14:55:49 -0700 | [diff] [blame] | 282 | ParseFeatureList(Runtime::GetDefaultInstructionSetFeatures()); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 283 | |
| 284 | #if defined(__arm__) |
| 285 | instruction_set = kThumb2; |
| 286 | InstructionSetFeatures runtime_features = GuessInstructionFeatures(); |
| 287 | |
| 288 | // for ARM, do a runtime check to make sure that the features we are passed from |
| 289 | // the build match the features we actually determine at runtime. |
Serban Constantinescu | 75b9113 | 2014-04-09 18:39:10 +0100 | [diff] [blame] | 290 | ASSERT_LE(instruction_set_features, runtime_features); |
Stuart Monteith | b95a534 | 2014-03-12 13:32:32 +0000 | [diff] [blame] | 291 | #elif defined(__aarch64__) |
| 292 | instruction_set = kArm64; |
| 293 | // TODO: arm64 compilation support. |
| 294 | compiler_options_->SetCompilerFilter(CompilerOptions::kInterpretOnly); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 295 | #elif defined(__mips__) |
| 296 | instruction_set = kMips; |
| 297 | #elif defined(__i386__) |
| 298 | instruction_set = kX86; |
| 299 | #elif defined(__x86_64__) |
| 300 | instruction_set = kX86_64; |
| 301 | // TODO: x86_64 compilation support. |
Dmitry Petrochenko | 659d87d | 2014-02-27 14:23:11 +0700 | [diff] [blame] | 302 | compiler_options_->SetCompilerFilter(CompilerOptions::kInterpretOnly); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 303 | #endif |
| 304 | |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 305 | runtime_->SetInstructionSet(instruction_set); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 306 | for (int i = 0; i < Runtime::kLastCalleeSaveType; i++) { |
| 307 | Runtime::CalleeSaveType type = Runtime::CalleeSaveType(i); |
| 308 | if (!runtime_->HasCalleeSaveMethod(type)) { |
| 309 | runtime_->SetCalleeSaveMethod( |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 310 | runtime_->CreateCalleeSaveMethod(type), type); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 311 | } |
| 312 | } |
| 313 | |
| 314 | // TODO: make selectable |
Nicolas Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame] | 315 | Compiler::Kind compiler_kind |
| 316 | = (kUsePortableCompiler) ? Compiler::kPortable : Compiler::kQuick; |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 317 | timer_.reset(new CumulativeLogger("Compilation times")); |
| 318 | compiler_driver_.reset(new CompilerDriver(compiler_options_.get(), |
| 319 | verification_results_.get(), |
| 320 | method_inliner_map_.get(), |
Nicolas Geoffray | b34f69a | 2014-03-07 15:28:39 +0000 | [diff] [blame] | 321 | compiler_kind, instruction_set, |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 322 | instruction_set_features, |
| 323 | true, new CompilerDriver::DescriptorSet, |
| 324 | 2, true, true, timer_.get())); |
| 325 | } |
| 326 | // We typically don't generate an image in unit tests, disable this optimization by default. |
| 327 | compiler_driver_->SetSupportBootImageFixup(false); |
| 328 | } |
| 329 | |
| 330 | virtual void SetUpRuntimeOptions(Runtime::Options *options) { |
| 331 | CommonRuntimeTest::SetUpRuntimeOptions(options); |
| 332 | |
| 333 | compiler_options_.reset(new CompilerOptions); |
| 334 | verification_results_.reset(new VerificationResults(compiler_options_.get())); |
| 335 | method_inliner_map_.reset(new DexFileToMethodInlinerMap); |
| 336 | callbacks_.reset(new CompilerCallbacksImpl(verification_results_.get(), |
| 337 | method_inliner_map_.get())); |
| 338 | options->push_back(std::make_pair("compilercallbacks", callbacks_.get())); |
| 339 | } |
| 340 | |
| 341 | virtual void TearDown() { |
| 342 | timer_.reset(); |
| 343 | compiler_driver_.reset(); |
| 344 | callbacks_.reset(); |
| 345 | method_inliner_map_.reset(); |
| 346 | verification_results_.reset(); |
| 347 | compiler_options_.reset(); |
| 348 | |
| 349 | CommonRuntimeTest::TearDown(); |
| 350 | } |
| 351 | |
| 352 | void CompileClass(mirror::ClassLoader* class_loader, const char* class_name) |
| 353 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 354 | std::string class_descriptor(DotToDescriptor(class_name)); |
| 355 | Thread* self = Thread::Current(); |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 356 | StackHandleScope<1> hs(self); |
| 357 | Handle<mirror::ClassLoader> loader(hs.NewHandle(class_loader)); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 358 | mirror::Class* klass = class_linker_->FindClass(self, class_descriptor.c_str(), loader); |
| 359 | CHECK(klass != nullptr) << "Class not found " << class_name; |
| 360 | for (size_t i = 0; i < klass->NumDirectMethods(); i++) { |
| 361 | CompileMethod(klass->GetDirectMethod(i)); |
| 362 | } |
| 363 | for (size_t i = 0; i < klass->NumVirtualMethods(); i++) { |
| 364 | CompileMethod(klass->GetVirtualMethod(i)); |
| 365 | } |
| 366 | } |
| 367 | |
| 368 | void CompileMethod(mirror::ArtMethod* method) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 369 | CHECK(method != nullptr); |
| 370 | TimingLogger timings("CommonTest::CompileMethod", false, false); |
| 371 | timings.StartSplit("CompileOne"); |
Ian Rogers | 3d50407 | 2014-03-01 09:16:49 -0800 | [diff] [blame] | 372 | compiler_driver_->CompileOne(method, &timings); |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 373 | MakeExecutable(method); |
| 374 | timings.EndSplit(); |
| 375 | } |
| 376 | |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 377 | void CompileDirectMethod(Handle<mirror::ClassLoader>& class_loader, const char* class_name, |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 378 | const char* method_name, const char* signature) |
| 379 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 380 | std::string class_descriptor(DotToDescriptor(class_name)); |
| 381 | Thread* self = Thread::Current(); |
| 382 | mirror::Class* klass = class_linker_->FindClass(self, class_descriptor.c_str(), class_loader); |
| 383 | CHECK(klass != nullptr) << "Class not found " << class_name; |
| 384 | mirror::ArtMethod* method = klass->FindDirectMethod(method_name, signature); |
| 385 | CHECK(method != nullptr) << "Direct method not found: " |
| 386 | << class_name << "." << method_name << signature; |
| 387 | CompileMethod(method); |
| 388 | } |
| 389 | |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 390 | void CompileVirtualMethod(Handle<mirror::ClassLoader>& class_loader, const char* class_name, |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 391 | const char* method_name, const char* signature) |
| 392 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
| 393 | std::string class_descriptor(DotToDescriptor(class_name)); |
| 394 | Thread* self = Thread::Current(); |
| 395 | mirror::Class* klass = class_linker_->FindClass(self, class_descriptor.c_str(), class_loader); |
| 396 | CHECK(klass != nullptr) << "Class not found " << class_name; |
| 397 | mirror::ArtMethod* method = klass->FindVirtualMethod(method_name, signature); |
| 398 | CHECK(method != NULL) << "Virtual method not found: " |
| 399 | << class_name << "." << method_name << signature; |
| 400 | CompileMethod(method); |
| 401 | } |
| 402 | |
| 403 | void ReserveImageSpace() { |
| 404 | // Reserve where the image will be loaded up front so that other parts of test set up don't |
| 405 | // accidentally end up colliding with the fixed memory address when we need to load the image. |
| 406 | std::string error_msg; |
| 407 | image_reservation_.reset(MemMap::MapAnonymous("image reservation", |
| 408 | reinterpret_cast<byte*>(ART_BASE_ADDRESS), |
| 409 | (size_t)100 * 1024 * 1024, // 100MB |
| 410 | PROT_NONE, |
| 411 | false /* no need for 4gb flag with fixed mmap*/, |
| 412 | &error_msg)); |
| 413 | CHECK(image_reservation_.get() != nullptr) << error_msg; |
| 414 | } |
| 415 | |
| 416 | void UnreserveImageSpace() { |
| 417 | image_reservation_.reset(); |
| 418 | } |
| 419 | |
| 420 | UniquePtr<CompilerOptions> compiler_options_; |
| 421 | UniquePtr<VerificationResults> verification_results_; |
| 422 | UniquePtr<DexFileToMethodInlinerMap> method_inliner_map_; |
| 423 | UniquePtr<CompilerCallbacksImpl> callbacks_; |
| 424 | UniquePtr<CompilerDriver> compiler_driver_; |
| 425 | UniquePtr<CumulativeLogger> timer_; |
| 426 | |
| 427 | private: |
| 428 | UniquePtr<MemMap> image_reservation_; |
Vladimir Marko | 8a63057 | 2014-04-09 18:45:35 +0100 | [diff] [blame] | 429 | |
| 430 | // Chunks must not move their storage after being created - use the node-based std::list. |
| 431 | std::list<std::vector<uint8_t> > header_code_and_maps_chunks_; |
Brian Carlstrom | a1ce1fe | 2014-02-24 23:23:58 -0800 | [diff] [blame] | 432 | }; |
| 433 | |
| 434 | } // namespace art |
| 435 | |
| 436 | #endif // ART_COMPILER_COMMON_COMPILER_TEST_H_ |