blob: ae30c7ef8792ee436052186d1dd4070679fc01dc [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
17#include "oat_file.h"
18#include "oat_writer.h"
19
20#include "common_test.h"
21
22namespace art {
23
Logan Chieneeb7edf2012-03-09 20:38:39 +080024class OatTest : public CommonTest {
25 protected:
Mathieu Chartier66f19252012-09-18 08:57:04 -070026 void CheckMethod(AbstractMethod* method,
Logan Chieneeb7edf2012-03-09 20:38:39 +080027 const OatFile::OatMethod& oat_method,
Ian Rogers00f7d0e2012-07-19 15:28:27 -070028 const DexFile* dex_file)
Ian Rogersb726dcb2012-09-05 08:57:23 -070029 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Logan Chieneeb7edf2012-03-09 20:38:39 +080030 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();
TDYa12742d4d732012-03-23 19:10:56 -070037#if !defined(ART_USE_LLVM_COMPILER)
Logan Chieneeb7edf2012-03-09 20:38:39 +080038 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), static_cast<uint32_t>(kStackAlignment));
39 EXPECT_EQ(oat_method.GetCoreSpillMask(), 0U);
40 EXPECT_EQ(oat_method.GetFpSpillMask(), 0U);
TDYa12742d4d732012-03-23 19:10:56 -070041#endif
Logan Chieneeb7edf2012-03-09 20:38:39 +080042 } 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));
TDYa12742d4d732012-03-23 19:10:56 -070053#if !defined(ART_USE_LLVM_COMPILER)
Logan Chieneeb7edf2012-03-09 20:38:39 +080054 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());
TDYa12742d4d732012-03-23 19:10:56 -070057#endif
Logan Chieneeb7edf2012-03-09 20:38:39 +080058 }
59 }
60};
Brian Carlstrome24fa612011-09-29 00:53:55 -070061
62TEST_F(OatTest, WriteRead) {
63 const bool compile = false; // DISABLED_ due to the time to compile libcore
Jesse Wilson254db0f2011-11-16 16:44:11 -050064 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Brian Carlstrome24fa612011-09-29 00:53:55 -070065
Ian Rogers00f7d0e2012-07-19 15:28:27 -070066 jobject class_loader = NULL;
Brian Carlstrome24fa612011-09-29 00:53:55 -070067 if (compile) {
buzbeec531cef2012-10-18 07:09:20 -070068 // TODO: make selectable
69#if defined(ART_USE_PORTABLE_COMPILER)
70 CompilerBackend compiler_backend = kPortable;
71#elif defined(ART_USE_LLVM_COMPILER)
72 CompilerBackend compiler_backend = kIceland; // TODO: remove
73#else
74 CompilerBackend compiler_backend = kQuick;
75#endif
76 compiler_.reset(new Compiler(compiler_backend, kThumb2, false, 2, false, NULL, true, true));
Ian Rogers00f7d0e2012-07-19 15:28:27 -070077 compiler_->CompileAll(class_loader, class_linker->GetBootClassPath());
Brian Carlstrome24fa612011-09-29 00:53:55 -070078 }
79
Ian Rogers00f7d0e2012-07-19 15:28:27 -070080 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrome24fa612011-09-29 00:53:55 -070081 ScratchFile tmp;
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070082 bool success = OatWriter::Create(tmp.GetFile(),
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070083 class_linker->GetBootClassPath(),
84 42U,
Brian Carlstrom28db0122012-10-18 16:20:41 -070085 4096U,
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070086 "lue.art",
87 *compiler_.get());
Brian Carlstrome24fa612011-09-29 00:53:55 -070088 ASSERT_TRUE(success);
89
90 if (compile) { // OatWriter strips the code, regenerate to compare
Ian Rogers00f7d0e2012-07-19 15:28:27 -070091 compiler_->CompileAll(class_loader, class_linker->GetBootClassPath());
Brian Carlstrome24fa612011-09-29 00:53:55 -070092 }
Logan Chien0c717dd2012-03-28 18:31:07 +080093 UniquePtr<OatFile> oat_file(OatFile::Open(tmp.GetFilename(),
94 tmp.GetFilename(),
Brian Carlstrom1cac3432012-12-12 10:56:22 -080095 NULL));
Brian Carlstrome24fa612011-09-29 00:53:55 -070096 ASSERT_TRUE(oat_file.get() != NULL);
97 const OatHeader& oat_header = oat_file->GetOatHeader();
Brian Carlstromf852fb22012-10-19 11:01:58 -070098 ASSERT_TRUE(oat_header.IsValid());
Brian Carlstrome24fa612011-09-29 00:53:55 -070099 ASSERT_EQ(1U, oat_header.GetDexFileCount());
Brian Carlstrom28db0122012-10-18 16:20:41 -0700100 ASSERT_EQ(42U, oat_header.GetImageFileLocationOatChecksum());
101 ASSERT_EQ(4096U, oat_header.GetImageFileLocationOatBegin());
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700102 ASSERT_EQ("lue.art", oat_header.GetImageFileLocation());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700103
Brian Carlstroma004aa92012-02-08 18:05:09 -0800104 const DexFile* dex_file = java_lang_dex_file_;
105 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file->GetLocation());
106 CHECK_EQ(dex_file->GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
107 for (size_t i = 0; i < dex_file->NumClassDefs(); i++) {
108 const DexFile::ClassDef& class_def = dex_file->GetClassDef(i);
109 const byte* class_data = dex_file->GetClassData(class_def);
Ian Rogers0571d352011-11-03 19:51:38 -0700110 size_t num_virtual_methods =0;
111 if (class_data != NULL) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800112 ClassDataItemIterator it(*dex_file, class_data);
Ian Rogers0571d352011-11-03 19:51:38 -0700113 num_virtual_methods = it.NumVirtualMethods();
114 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800115 const char* descriptor = dex_file->GetClassDescriptor(class_def);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700116
Brian Carlstromaded5f72011-10-07 17:15:04 -0700117 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(i));
Brian Carlstrome24fa612011-09-29 00:53:55 -0700118
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700119 Class* klass = class_linker->FindClass(descriptor, NULL);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700120
121 size_t method_index = 0;
122 for (size_t i = 0; i < klass->NumDirectMethods(); i++, method_index++) {
Logan Chieneeb7edf2012-03-09 20:38:39 +0800123 CheckMethod(klass->GetDirectMethod(i),
124 oat_class->GetOatMethod(method_index), dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700125 }
126 for (size_t i = 0; i < num_virtual_methods; i++, method_index++) {
Logan Chieneeb7edf2012-03-09 20:38:39 +0800127 CheckMethod(klass->GetVirtualMethod(i),
128 oat_class->GetOatMethod(method_index), dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700129 }
130 }
131}
132
Brian Carlstrom341df942012-06-27 12:29:22 -0700133TEST_F(OatTest, OatHeaderSizeCheck) {
134 // If this test is failing and you have to update these constants,
135 // it is time to update OatHeader::kOatVersion
Brian Carlstrom28db0122012-10-18 16:20:41 -0700136 EXPECT_EQ(36U, sizeof(OatHeader));
TDYa12758338532012-07-11 23:16:29 -0700137#if !defined(ART_USE_LLVM_COMPILER)
Brian Carlstrom341df942012-06-27 12:29:22 -0700138 EXPECT_EQ(32U, sizeof(OatMethodOffsets));
TDYa12758338532012-07-11 23:16:29 -0700139#else
140 // ART-LLVM has a extra 4 bytes field: proxy_stub_offset_
141 EXPECT_EQ(36U, sizeof(OatMethodOffsets));
142#endif
Brian Carlstrom341df942012-06-27 12:29:22 -0700143}
144
Brian Carlstromf852fb22012-10-19 11:01:58 -0700145TEST_F(OatTest, OatHeaderIsValid) {
146 InstructionSet instruction_set = kX86;
147 std::vector<const DexFile*> dex_files;
148 uint32_t image_file_location_oat_checksum = 0;
149 uint32_t image_file_location_oat_begin = 0;
150 const std::string image_file_location;
151 OatHeader oat_header(instruction_set,
152 &dex_files,
153 image_file_location_oat_checksum,
154 image_file_location_oat_begin,
155 image_file_location);
156 ASSERT_TRUE(oat_header.IsValid());
157
158 char* magic = const_cast<char*>(oat_header.GetMagic());
159 strcpy(magic, ""); // bad magic
160 ASSERT_FALSE(oat_header.IsValid());
161 strcpy(magic, "oat\n000"); // bad version
162 ASSERT_FALSE(oat_header.IsValid());
163}
164
Brian Carlstrome24fa612011-09-29 00:53:55 -0700165} // namespace art