Elliott Hughes | 2faa5f1 | 2012-01-30 14:42:07 -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 | */ |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 16 | |
| 17 | #include "oat_file.h" |
| 18 | #include "oat_writer.h" |
| 19 | |
| 20 | #include "common_test.h" |
| 21 | |
| 22 | namespace art { |
| 23 | |
Logan Chien | eeb7edf | 2012-03-09 20:38:39 +0800 | [diff] [blame] | 24 | class OatTest : public CommonTest { |
| 25 | protected: |
Mathieu Chartier | 66f1925 | 2012-09-18 08:57:04 -0700 | [diff] [blame] | 26 | void CheckMethod(AbstractMethod* method, |
Logan Chien | eeb7edf | 2012-03-09 20:38:39 +0800 | [diff] [blame] | 27 | const OatFile::OatMethod& oat_method, |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 28 | const DexFile* dex_file) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 29 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Logan Chien | eeb7edf | 2012-03-09 20:38:39 +0800 | [diff] [blame] | 30 | const CompiledMethod* compiled_method = |
| 31 | compiler_->GetCompiledMethod(Compiler::MethodReference(dex_file, |
| 32 | method->GetDexMethodIndex())); |
| 33 | |
| 34 | if (compiled_method == NULL) { |
| 35 | EXPECT_TRUE(oat_method.GetCode() == NULL) << PrettyMethod(method) << " " |
| 36 | << oat_method.GetCode(); |
TDYa127 | 42d4d73 | 2012-03-23 19:10:56 -0700 | [diff] [blame] | 37 | #if !defined(ART_USE_LLVM_COMPILER) |
Logan Chien | eeb7edf | 2012-03-09 20:38:39 +0800 | [diff] [blame] | 38 | EXPECT_EQ(oat_method.GetFrameSizeInBytes(), static_cast<uint32_t>(kStackAlignment)); |
| 39 | EXPECT_EQ(oat_method.GetCoreSpillMask(), 0U); |
| 40 | EXPECT_EQ(oat_method.GetFpSpillMask(), 0U); |
TDYa127 | 42d4d73 | 2012-03-23 19:10:56 -0700 | [diff] [blame] | 41 | #endif |
Logan Chien | eeb7edf | 2012-03-09 20:38:39 +0800 | [diff] [blame] | 42 | } else { |
| 43 | const void* oat_code = oat_method.GetCode(); |
| 44 | EXPECT_TRUE(oat_code != NULL) << PrettyMethod(method); |
| 45 | uintptr_t oat_code_aligned = RoundDown(reinterpret_cast<uintptr_t>(oat_code), 2); |
| 46 | oat_code = reinterpret_cast<const void*>(oat_code_aligned); |
| 47 | |
| 48 | const std::vector<uint8_t>& code = compiled_method->GetCode(); |
| 49 | size_t code_size = code.size() * sizeof(code[0]); |
| 50 | EXPECT_EQ(0, memcmp(oat_code, &code[0], code_size)) |
| 51 | << PrettyMethod(method) << " " << code_size; |
| 52 | CHECK_EQ(0, memcmp(oat_code, &code[0], code_size)); |
TDYa127 | 42d4d73 | 2012-03-23 19:10:56 -0700 | [diff] [blame] | 53 | #if !defined(ART_USE_LLVM_COMPILER) |
Logan Chien | eeb7edf | 2012-03-09 20:38:39 +0800 | [diff] [blame] | 54 | EXPECT_EQ(oat_method.GetFrameSizeInBytes(), compiled_method->GetFrameSizeInBytes()); |
| 55 | EXPECT_EQ(oat_method.GetCoreSpillMask(), compiled_method->GetCoreSpillMask()); |
| 56 | EXPECT_EQ(oat_method.GetFpSpillMask(), compiled_method->GetFpSpillMask()); |
TDYa127 | 42d4d73 | 2012-03-23 19:10:56 -0700 | [diff] [blame] | 57 | #endif |
Logan Chien | eeb7edf | 2012-03-09 20:38:39 +0800 | [diff] [blame] | 58 | } |
| 59 | } |
| 60 | }; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 61 | |
| 62 | TEST_F(OatTest, WriteRead) { |
| 63 | const bool compile = false; // DISABLED_ due to the time to compile libcore |
Jesse Wilson | 254db0f | 2011-11-16 16:44:11 -0500 | [diff] [blame] | 64 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 65 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 66 | jobject class_loader = NULL; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 67 | if (compile) { |
Brian Carlstrom | ba0668e | 2012-03-26 13:14:07 -0700 | [diff] [blame] | 68 | compiler_.reset(new Compiler(kThumb2, false, 2, false, NULL, true, true)); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 69 | compiler_->CompileAll(class_loader, class_linker->GetBootClassPath()); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 70 | } |
| 71 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 72 | ScopedObjectAccess soa(Thread::Current()); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 73 | ScratchFile tmp; |
Brian Carlstrom | 81f3ca1 | 2012-03-17 00:27:35 -0700 | [diff] [blame] | 74 | bool success = OatWriter::Create(tmp.GetFile(), |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 75 | class_loader, |
Brian Carlstrom | 81f3ca1 | 2012-03-17 00:27:35 -0700 | [diff] [blame] | 76 | class_linker->GetBootClassPath(), |
| 77 | 42U, |
| 78 | "lue.art", |
| 79 | *compiler_.get()); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 80 | ASSERT_TRUE(success); |
| 81 | |
| 82 | if (compile) { // OatWriter strips the code, regenerate to compare |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 83 | compiler_->CompileAll(class_loader, class_linker->GetBootClassPath()); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 84 | } |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 85 | UniquePtr<OatFile> oat_file(OatFile::Open(tmp.GetFilename(), |
| 86 | tmp.GetFilename(), |
| 87 | NULL, |
| 88 | OatFile::kRelocNone)); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 89 | ASSERT_TRUE(oat_file.get() != NULL); |
| 90 | const OatHeader& oat_header = oat_file->GetOatHeader(); |
| 91 | ASSERT_EQ(1U, oat_header.GetDexFileCount()); |
Brian Carlstrom | 81f3ca1 | 2012-03-17 00:27:35 -0700 | [diff] [blame] | 92 | ASSERT_EQ(42U, oat_header.GetImageFileLocationChecksum()); |
| 93 | ASSERT_EQ("lue.art", oat_header.GetImageFileLocation()); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 94 | |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 95 | const DexFile* dex_file = java_lang_dex_file_; |
| 96 | const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file->GetLocation()); |
| 97 | CHECK_EQ(dex_file->GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum()); |
| 98 | for (size_t i = 0; i < dex_file->NumClassDefs(); i++) { |
| 99 | const DexFile::ClassDef& class_def = dex_file->GetClassDef(i); |
| 100 | const byte* class_data = dex_file->GetClassData(class_def); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 101 | size_t num_virtual_methods =0; |
| 102 | if (class_data != NULL) { |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 103 | ClassDataItemIterator it(*dex_file, class_data); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 104 | num_virtual_methods = it.NumVirtualMethods(); |
| 105 | } |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 106 | const char* descriptor = dex_file->GetClassDescriptor(class_def); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 107 | |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 108 | UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(i)); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 109 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 110 | Class* klass = class_linker->FindClass(descriptor, NULL); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 111 | |
| 112 | size_t method_index = 0; |
| 113 | for (size_t i = 0; i < klass->NumDirectMethods(); i++, method_index++) { |
Logan Chien | eeb7edf | 2012-03-09 20:38:39 +0800 | [diff] [blame] | 114 | CheckMethod(klass->GetDirectMethod(i), |
| 115 | oat_class->GetOatMethod(method_index), dex_file); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 116 | } |
| 117 | for (size_t i = 0; i < num_virtual_methods; i++, method_index++) { |
Logan Chien | eeb7edf | 2012-03-09 20:38:39 +0800 | [diff] [blame] | 118 | CheckMethod(klass->GetVirtualMethod(i), |
| 119 | oat_class->GetOatMethod(method_index), dex_file); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 120 | } |
| 121 | } |
| 122 | } |
| 123 | |
Brian Carlstrom | 341df94 | 2012-06-27 12:29:22 -0700 | [diff] [blame] | 124 | TEST_F(OatTest, OatHeaderSizeCheck) { |
| 125 | // If this test is failing and you have to update these constants, |
| 126 | // it is time to update OatHeader::kOatVersion |
| 127 | EXPECT_EQ(32U, sizeof(OatHeader)); |
| 128 | EXPECT_EQ(32U, sizeof(OatMethodOffsets)); |
| 129 | } |
| 130 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 131 | } // namespace art |