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 | |
Brian Carlstrom | 51c2467 | 2013-07-11 16:00:56 -0700 | [diff] [blame] | 17 | #include "compiler/oat_writer.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 18 | #include "mirror/abstract_method-inl.h" |
| 19 | #include "mirror/class-inl.h" |
| 20 | #include "mirror/object_array-inl.h" |
Ian Rogers | 04d7aa9 | 2013-03-16 14:29:17 -0700 | [diff] [blame] | 21 | #include "mirror/object-inl.h" |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 22 | #include "oat_file.h" |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 23 | #include "vector_output_stream.h" |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 24 | |
| 25 | #include "common_test.h" |
| 26 | |
| 27 | namespace art { |
| 28 | |
Logan Chien | eeb7edf | 2012-03-09 20:38:39 +0800 | [diff] [blame] | 29 | class OatTest : public CommonTest { |
| 30 | protected: |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 31 | void CheckMethod(mirror::AbstractMethod* method, |
Logan Chien | eeb7edf | 2012-03-09 20:38:39 +0800 | [diff] [blame] | 32 | const OatFile::OatMethod& oat_method, |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 33 | const DexFile* dex_file) |
Ian Rogers | b726dcb | 2012-09-05 08:57:23 -0700 | [diff] [blame] | 34 | SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { |
Logan Chien | eeb7edf | 2012-03-09 20:38:39 +0800 | [diff] [blame] | 35 | const CompiledMethod* compiled_method = |
Brian Carlstrom | 51c2467 | 2013-07-11 16:00:56 -0700 | [diff] [blame] | 36 | compiler_driver_->GetCompiledMethod(MethodReference(dex_file, |
| 37 | method->GetDexMethodIndex())); |
Logan Chien | eeb7edf | 2012-03-09 20:38:39 +0800 | [diff] [blame] | 38 | |
| 39 | if (compiled_method == NULL) { |
| 40 | EXPECT_TRUE(oat_method.GetCode() == NULL) << PrettyMethod(method) << " " |
| 41 | << oat_method.GetCode(); |
Ian Rogers | c928de9 | 2013-02-27 14:30:44 -0800 | [diff] [blame] | 42 | #if !defined(ART_USE_PORTABLE_COMPILER) |
Logan Chien | eeb7edf | 2012-03-09 20:38:39 +0800 | [diff] [blame] | 43 | EXPECT_EQ(oat_method.GetFrameSizeInBytes(), static_cast<uint32_t>(kStackAlignment)); |
| 44 | EXPECT_EQ(oat_method.GetCoreSpillMask(), 0U); |
| 45 | EXPECT_EQ(oat_method.GetFpSpillMask(), 0U); |
TDYa127 | 42d4d73 | 2012-03-23 19:10:56 -0700 | [diff] [blame] | 46 | #endif |
Logan Chien | eeb7edf | 2012-03-09 20:38:39 +0800 | [diff] [blame] | 47 | } else { |
| 48 | const void* oat_code = oat_method.GetCode(); |
| 49 | EXPECT_TRUE(oat_code != NULL) << PrettyMethod(method); |
| 50 | uintptr_t oat_code_aligned = RoundDown(reinterpret_cast<uintptr_t>(oat_code), 2); |
| 51 | oat_code = reinterpret_cast<const void*>(oat_code_aligned); |
| 52 | |
| 53 | const std::vector<uint8_t>& code = compiled_method->GetCode(); |
| 54 | size_t code_size = code.size() * sizeof(code[0]); |
| 55 | EXPECT_EQ(0, memcmp(oat_code, &code[0], code_size)) |
| 56 | << PrettyMethod(method) << " " << code_size; |
| 57 | CHECK_EQ(0, memcmp(oat_code, &code[0], code_size)); |
Ian Rogers | c928de9 | 2013-02-27 14:30:44 -0800 | [diff] [blame] | 58 | #if !defined(ART_USE_PORTABLE_COMPILER) |
Logan Chien | eeb7edf | 2012-03-09 20:38:39 +0800 | [diff] [blame] | 59 | EXPECT_EQ(oat_method.GetFrameSizeInBytes(), compiled_method->GetFrameSizeInBytes()); |
| 60 | EXPECT_EQ(oat_method.GetCoreSpillMask(), compiled_method->GetCoreSpillMask()); |
| 61 | EXPECT_EQ(oat_method.GetFpSpillMask(), compiled_method->GetFpSpillMask()); |
TDYa127 | 42d4d73 | 2012-03-23 19:10:56 -0700 | [diff] [blame] | 62 | #endif |
Logan Chien | eeb7edf | 2012-03-09 20:38:39 +0800 | [diff] [blame] | 63 | } |
| 64 | } |
| 65 | }; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 66 | |
| 67 | TEST_F(OatTest, WriteRead) { |
| 68 | const bool compile = false; // DISABLED_ due to the time to compile libcore |
Jesse Wilson | 254db0f | 2011-11-16 16:44:11 -0500 | [diff] [blame] | 69 | ClassLinker* class_linker = Runtime::Current()->GetClassLinker(); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 70 | |
Jeff Hao | 0aba0ba | 2013-06-03 14:49:28 -0700 | [diff] [blame] | 71 | // TODO: make selectable |
| 72 | #if defined(ART_USE_PORTABLE_COMPILER) |
| 73 | CompilerBackend compiler_backend = kPortable; |
| 74 | #else |
| 75 | CompilerBackend compiler_backend = kQuick; |
| 76 | #endif |
Brian Carlstrom | 4560248 | 2013-07-21 22:07:55 -0700 | [diff] [blame] | 77 | compiler_driver_.reset(new CompilerDriver(compiler_backend, kThumb2, false, NULL, 2, true)); |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 78 | jobject class_loader = NULL; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 79 | if (compile) { |
Brian Carlstrom | 4560248 | 2013-07-21 22:07:55 -0700 | [diff] [blame] | 80 | TimingLogger timings("OatTest::WriteRead", false); |
| 81 | compiler_driver_->CompileAll(class_loader, class_linker->GetBootClassPath(), timings); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 82 | } |
| 83 | |
Ian Rogers | 00f7d0e | 2012-07-19 15:28:27 -0700 | [diff] [blame] | 84 | ScopedObjectAccess soa(Thread::Current()); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 85 | ScratchFile tmp; |
Brian Carlstrom | c50d8e1 | 2013-07-23 22:35:16 -0700 | [diff] [blame] | 86 | OatWriter oat_writer(class_linker->GetBootClassPath(), |
| 87 | 42U, |
| 88 | 4096U, |
| 89 | "lue.art", |
| 90 | compiler_driver_.get()); |
| 91 | bool success = compiler_driver_->WriteElf(GetTestAndroidRoot(), |
| 92 | !kIsTargetBuild, |
| 93 | class_linker->GetBootClassPath(), |
| 94 | oat_writer, |
| 95 | tmp.GetFile()); |
| 96 | ASSERT_TRUE(success); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 97 | |
| 98 | if (compile) { // OatWriter strips the code, regenerate to compare |
Brian Carlstrom | 4560248 | 2013-07-21 22:07:55 -0700 | [diff] [blame] | 99 | TimingLogger timings("CommonTest::WriteRead", false); |
| 100 | compiler_driver_->CompileAll(class_loader, class_linker->GetBootClassPath(), timings); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 101 | } |
Brian Carlstrom | f1d3455 | 2013-07-12 20:22:23 -0700 | [diff] [blame] | 102 | UniquePtr<OatFile> oat_file(OatFile::Open(tmp.GetFilename(), tmp.GetFilename(), NULL, false)); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 103 | ASSERT_TRUE(oat_file.get() != NULL); |
| 104 | const OatHeader& oat_header = oat_file->GetOatHeader(); |
Brian Carlstrom | f852fb2 | 2012-10-19 11:01:58 -0700 | [diff] [blame] | 105 | ASSERT_TRUE(oat_header.IsValid()); |
Brian Carlstrom | 654d919 | 2013-04-30 18:35:32 -0700 | [diff] [blame] | 106 | ASSERT_EQ(2U, oat_header.GetDexFileCount()); // core and conscrypt |
Brian Carlstrom | 28db012 | 2012-10-18 16:20:41 -0700 | [diff] [blame] | 107 | ASSERT_EQ(42U, oat_header.GetImageFileLocationOatChecksum()); |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 108 | ASSERT_EQ(4096U, oat_header.GetImageFileLocationOatDataBegin()); |
Brian Carlstrom | 81f3ca1 | 2012-03-17 00:27:35 -0700 | [diff] [blame] | 109 | ASSERT_EQ("lue.art", oat_header.GetImageFileLocation()); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 110 | |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 111 | const DexFile* dex_file = java_lang_dex_file_; |
| 112 | const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file->GetLocation()); |
| 113 | CHECK_EQ(dex_file->GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum()); |
| 114 | for (size_t i = 0; i < dex_file->NumClassDefs(); i++) { |
| 115 | const DexFile::ClassDef& class_def = dex_file->GetClassDef(i); |
| 116 | const byte* class_data = dex_file->GetClassData(class_def); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 117 | size_t num_virtual_methods =0; |
| 118 | if (class_data != NULL) { |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 119 | ClassDataItemIterator it(*dex_file, class_data); |
Ian Rogers | 0571d35 | 2011-11-03 19:51:38 -0700 | [diff] [blame] | 120 | num_virtual_methods = it.NumVirtualMethods(); |
| 121 | } |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 122 | const char* descriptor = dex_file->GetClassDescriptor(class_def); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 123 | |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 124 | UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(i)); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 125 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 126 | mirror::Class* klass = class_linker->FindClass(descriptor, NULL); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 127 | |
| 128 | size_t method_index = 0; |
| 129 | for (size_t i = 0; i < klass->NumDirectMethods(); i++, method_index++) { |
Logan Chien | eeb7edf | 2012-03-09 20:38:39 +0800 | [diff] [blame] | 130 | CheckMethod(klass->GetDirectMethod(i), |
| 131 | oat_class->GetOatMethod(method_index), dex_file); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 132 | } |
| 133 | for (size_t i = 0; i < num_virtual_methods; i++, method_index++) { |
Logan Chien | eeb7edf | 2012-03-09 20:38:39 +0800 | [diff] [blame] | 134 | CheckMethod(klass->GetVirtualMethod(i), |
| 135 | oat_class->GetOatMethod(method_index), dex_file); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 136 | } |
| 137 | } |
| 138 | } |
| 139 | |
Brian Carlstrom | 341df94 | 2012-06-27 12:29:22 -0700 | [diff] [blame] | 140 | TEST_F(OatTest, OatHeaderSizeCheck) { |
| 141 | // If this test is failing and you have to update these constants, |
| 142 | // it is time to update OatHeader::kOatVersion |
Jeff Hao | 0aba0ba | 2013-06-03 14:49:28 -0700 | [diff] [blame] | 143 | EXPECT_EQ(52U, sizeof(OatHeader)); |
Jeff Hao | 74180ca | 2013-03-27 15:29:11 -0700 | [diff] [blame] | 144 | EXPECT_EQ(28U, sizeof(OatMethodOffsets)); |
Brian Carlstrom | 341df94 | 2012-06-27 12:29:22 -0700 | [diff] [blame] | 145 | } |
| 146 | |
Brian Carlstrom | f852fb2 | 2012-10-19 11:01:58 -0700 | [diff] [blame] | 147 | TEST_F(OatTest, OatHeaderIsValid) { |
| 148 | InstructionSet instruction_set = kX86; |
| 149 | std::vector<const DexFile*> dex_files; |
| 150 | uint32_t image_file_location_oat_checksum = 0; |
| 151 | uint32_t image_file_location_oat_begin = 0; |
| 152 | const std::string image_file_location; |
| 153 | OatHeader oat_header(instruction_set, |
| 154 | &dex_files, |
| 155 | image_file_location_oat_checksum, |
| 156 | image_file_location_oat_begin, |
| 157 | image_file_location); |
| 158 | ASSERT_TRUE(oat_header.IsValid()); |
| 159 | |
| 160 | char* magic = const_cast<char*>(oat_header.GetMagic()); |
| 161 | strcpy(magic, ""); // bad magic |
| 162 | ASSERT_FALSE(oat_header.IsValid()); |
Brian Carlstrom | 7934ac2 | 2013-07-26 10:54:15 -0700 | [diff] [blame^] | 163 | strcpy(magic, "oat\n000"); // bad version |
Brian Carlstrom | f852fb2 | 2012-10-19 11:01:58 -0700 | [diff] [blame] | 164 | ASSERT_FALSE(oat_header.IsValid()); |
| 165 | } |
| 166 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 167 | } // namespace art |