blob: 8da3626e8c69d8b1ba21e6c21ec1c62f090ce5b1 [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
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 Carlstrome24fa612011-09-29 00:53:55 -070016
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080017#include "mirror/abstract_method-inl.h"
18#include "mirror/class-inl.h"
19#include "mirror/object_array-inl.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070020#include "oat_file.h"
21#include "oat_writer.h"
Brian Carlstrom700c8d32012-11-05 10:42:02 -080022#include "vector_output_stream.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070023
24#include "common_test.h"
25
26namespace art {
27
Logan Chieneeb7edf2012-03-09 20:38:39 +080028class OatTest : public CommonTest {
29 protected:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080030 void CheckMethod(mirror::AbstractMethod* method,
Logan Chieneeb7edf2012-03-09 20:38:39 +080031 const OatFile::OatMethod& oat_method,
Ian Rogers00f7d0e2012-07-19 15:28:27 -070032 const DexFile* dex_file)
Ian Rogersb726dcb2012-09-05 08:57:23 -070033 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Logan Chieneeb7edf2012-03-09 20:38:39 +080034 const CompiledMethod* compiled_method =
35 compiler_->GetCompiledMethod(Compiler::MethodReference(dex_file,
36 method->GetDexMethodIndex()));
37
38 if (compiled_method == NULL) {
39 EXPECT_TRUE(oat_method.GetCode() == NULL) << PrettyMethod(method) << " "
40 << oat_method.GetCode();
TDYa12742d4d732012-03-23 19:10:56 -070041#if !defined(ART_USE_LLVM_COMPILER)
Logan Chieneeb7edf2012-03-09 20:38:39 +080042 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), static_cast<uint32_t>(kStackAlignment));
43 EXPECT_EQ(oat_method.GetCoreSpillMask(), 0U);
44 EXPECT_EQ(oat_method.GetFpSpillMask(), 0U);
TDYa12742d4d732012-03-23 19:10:56 -070045#endif
Logan Chieneeb7edf2012-03-09 20:38:39 +080046 } else {
47 const void* oat_code = oat_method.GetCode();
48 EXPECT_TRUE(oat_code != NULL) << PrettyMethod(method);
49 uintptr_t oat_code_aligned = RoundDown(reinterpret_cast<uintptr_t>(oat_code), 2);
50 oat_code = reinterpret_cast<const void*>(oat_code_aligned);
51
52 const std::vector<uint8_t>& code = compiled_method->GetCode();
53 size_t code_size = code.size() * sizeof(code[0]);
54 EXPECT_EQ(0, memcmp(oat_code, &code[0], code_size))
55 << PrettyMethod(method) << " " << code_size;
56 CHECK_EQ(0, memcmp(oat_code, &code[0], code_size));
TDYa12742d4d732012-03-23 19:10:56 -070057#if !defined(ART_USE_LLVM_COMPILER)
Logan Chieneeb7edf2012-03-09 20:38:39 +080058 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), compiled_method->GetFrameSizeInBytes());
59 EXPECT_EQ(oat_method.GetCoreSpillMask(), compiled_method->GetCoreSpillMask());
60 EXPECT_EQ(oat_method.GetFpSpillMask(), compiled_method->GetFpSpillMask());
TDYa12742d4d732012-03-23 19:10:56 -070061#endif
Logan Chieneeb7edf2012-03-09 20:38:39 +080062 }
63 }
64};
Brian Carlstrome24fa612011-09-29 00:53:55 -070065
66TEST_F(OatTest, WriteRead) {
67 const bool compile = false; // DISABLED_ due to the time to compile libcore
Jesse Wilson254db0f2011-11-16 16:44:11 -050068 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Brian Carlstrome24fa612011-09-29 00:53:55 -070069
Ian Rogers00f7d0e2012-07-19 15:28:27 -070070 jobject class_loader = NULL;
Brian Carlstrome24fa612011-09-29 00:53:55 -070071 if (compile) {
buzbeec531cef2012-10-18 07:09:20 -070072 // TODO: make selectable
73#if defined(ART_USE_PORTABLE_COMPILER)
74 CompilerBackend compiler_backend = kPortable;
75#elif defined(ART_USE_LLVM_COMPILER)
76 CompilerBackend compiler_backend = kIceland; // TODO: remove
77#else
78 CompilerBackend compiler_backend = kQuick;
79#endif
80 compiler_.reset(new Compiler(compiler_backend, kThumb2, false, 2, false, NULL, true, true));
Ian Rogers00f7d0e2012-07-19 15:28:27 -070081 compiler_->CompileAll(class_loader, class_linker->GetBootClassPath());
Brian Carlstrome24fa612011-09-29 00:53:55 -070082 }
83
Ian Rogers00f7d0e2012-07-19 15:28:27 -070084 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrome24fa612011-09-29 00:53:55 -070085 ScratchFile tmp;
Brian Carlstrom700c8d32012-11-05 10:42:02 -080086 std::vector<uint8_t> oat_contents;
87 VectorOutputStream output_stream(tmp.GetFilename(), oat_contents);
88 bool success_oat = OatWriter::Create(output_stream,
89 class_linker->GetBootClassPath(),
90 42U,
91 4096U,
92 "lue.art",
93 *compiler_.get());
94 ASSERT_TRUE(success_oat);
95 bool success_elf = compiler_->WriteElf(oat_contents, tmp.GetFile());
96 ASSERT_TRUE(success_elf);
Brian Carlstrome24fa612011-09-29 00:53:55 -070097
98 if (compile) { // OatWriter strips the code, regenerate to compare
Ian Rogers00f7d0e2012-07-19 15:28:27 -070099 compiler_->CompileAll(class_loader, class_linker->GetBootClassPath());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700100 }
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800101 UniquePtr<OatFile> oat_file(OatFile::Open(tmp.GetFilename(), tmp.GetFilename(), NULL));
Brian Carlstrome24fa612011-09-29 00:53:55 -0700102 ASSERT_TRUE(oat_file.get() != NULL);
103 const OatHeader& oat_header = oat_file->GetOatHeader();
Brian Carlstromf852fb22012-10-19 11:01:58 -0700104 ASSERT_TRUE(oat_header.IsValid());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700105 ASSERT_EQ(1U, oat_header.GetDexFileCount());
Brian Carlstrom28db0122012-10-18 16:20:41 -0700106 ASSERT_EQ(42U, oat_header.GetImageFileLocationOatChecksum());
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800107 ASSERT_EQ(4096U, oat_header.GetImageFileLocationOatDataBegin());
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700108 ASSERT_EQ("lue.art", oat_header.GetImageFileLocation());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700109
Brian Carlstroma004aa92012-02-08 18:05:09 -0800110 const DexFile* dex_file = java_lang_dex_file_;
111 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file->GetLocation());
112 CHECK_EQ(dex_file->GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
113 for (size_t i = 0; i < dex_file->NumClassDefs(); i++) {
114 const DexFile::ClassDef& class_def = dex_file->GetClassDef(i);
115 const byte* class_data = dex_file->GetClassData(class_def);
Ian Rogers0571d352011-11-03 19:51:38 -0700116 size_t num_virtual_methods =0;
117 if (class_data != NULL) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800118 ClassDataItemIterator it(*dex_file, class_data);
Ian Rogers0571d352011-11-03 19:51:38 -0700119 num_virtual_methods = it.NumVirtualMethods();
120 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800121 const char* descriptor = dex_file->GetClassDescriptor(class_def);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700122
Brian Carlstromaded5f72011-10-07 17:15:04 -0700123 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(i));
Brian Carlstrome24fa612011-09-29 00:53:55 -0700124
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800125 mirror::Class* klass = class_linker->FindClass(descriptor, NULL);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700126
127 size_t method_index = 0;
128 for (size_t i = 0; i < klass->NumDirectMethods(); i++, method_index++) {
Logan Chieneeb7edf2012-03-09 20:38:39 +0800129 CheckMethod(klass->GetDirectMethod(i),
130 oat_class->GetOatMethod(method_index), dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700131 }
132 for (size_t i = 0; i < num_virtual_methods; i++, method_index++) {
Logan Chieneeb7edf2012-03-09 20:38:39 +0800133 CheckMethod(klass->GetVirtualMethod(i),
134 oat_class->GetOatMethod(method_index), dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700135 }
136 }
137}
138
Brian Carlstrom341df942012-06-27 12:29:22 -0700139TEST_F(OatTest, OatHeaderSizeCheck) {
140 // If this test is failing and you have to update these constants,
141 // it is time to update OatHeader::kOatVersion
Brian Carlstrom28db0122012-10-18 16:20:41 -0700142 EXPECT_EQ(36U, sizeof(OatHeader));
TDYa12758338532012-07-11 23:16:29 -0700143#if !defined(ART_USE_LLVM_COMPILER)
Brian Carlstrom341df942012-06-27 12:29:22 -0700144 EXPECT_EQ(32U, sizeof(OatMethodOffsets));
TDYa12758338532012-07-11 23:16:29 -0700145#else
146 // ART-LLVM has a extra 4 bytes field: proxy_stub_offset_
147 EXPECT_EQ(36U, sizeof(OatMethodOffsets));
148#endif
Brian Carlstrom341df942012-06-27 12:29:22 -0700149}
150
Brian Carlstromf852fb22012-10-19 11:01:58 -0700151TEST_F(OatTest, OatHeaderIsValid) {
152 InstructionSet instruction_set = kX86;
153 std::vector<const DexFile*> dex_files;
154 uint32_t image_file_location_oat_checksum = 0;
155 uint32_t image_file_location_oat_begin = 0;
156 const std::string image_file_location;
157 OatHeader oat_header(instruction_set,
158 &dex_files,
159 image_file_location_oat_checksum,
160 image_file_location_oat_begin,
161 image_file_location);
162 ASSERT_TRUE(oat_header.IsValid());
163
164 char* magic = const_cast<char*>(oat_header.GetMagic());
165 strcpy(magic, ""); // bad magic
166 ASSERT_FALSE(oat_header.IsValid());
167 strcpy(magic, "oat\n000"); // bad version
168 ASSERT_FALSE(oat_header.IsValid());
169}
170
Brian Carlstrome24fa612011-09-29 00:53:55 -0700171} // namespace art