blob: 9a6bc19b139e8343faf1d1ae25cfebe01e3497f3 [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
Brian Carlstrom51c24672013-07-11 16:00:56 -070017#include "compiler/oat_writer.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080018#include "mirror/abstract_method-inl.h"
19#include "mirror/class-inl.h"
20#include "mirror/object_array-inl.h"
Ian Rogers04d7aa92013-03-16 14:29:17 -070021#include "mirror/object-inl.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070022#include "oat_file.h"
Brian Carlstrom700c8d32012-11-05 10:42:02 -080023#include "vector_output_stream.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070024
25#include "common_test.h"
26
27namespace art {
28
Logan Chieneeb7edf2012-03-09 20:38:39 +080029class OatTest : public CommonTest {
30 protected:
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080031 void CheckMethod(mirror::AbstractMethod* method,
Logan Chieneeb7edf2012-03-09 20:38:39 +080032 const OatFile::OatMethod& oat_method,
Ian Rogers00f7d0e2012-07-19 15:28:27 -070033 const DexFile* dex_file)
Ian Rogersb726dcb2012-09-05 08:57:23 -070034 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Logan Chieneeb7edf2012-03-09 20:38:39 +080035 const CompiledMethod* compiled_method =
Brian Carlstrom51c24672013-07-11 16:00:56 -070036 compiler_driver_->GetCompiledMethod(MethodReference(dex_file,
37 method->GetDexMethodIndex()));
Logan Chieneeb7edf2012-03-09 20:38:39 +080038
39 if (compiled_method == NULL) {
40 EXPECT_TRUE(oat_method.GetCode() == NULL) << PrettyMethod(method) << " "
41 << oat_method.GetCode();
Ian Rogersc928de92013-02-27 14:30:44 -080042#if !defined(ART_USE_PORTABLE_COMPILER)
Logan Chieneeb7edf2012-03-09 20:38:39 +080043 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), static_cast<uint32_t>(kStackAlignment));
44 EXPECT_EQ(oat_method.GetCoreSpillMask(), 0U);
45 EXPECT_EQ(oat_method.GetFpSpillMask(), 0U);
TDYa12742d4d732012-03-23 19:10:56 -070046#endif
Logan Chieneeb7edf2012-03-09 20:38:39 +080047 } 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 Rogersc928de92013-02-27 14:30:44 -080058#if !defined(ART_USE_PORTABLE_COMPILER)
Logan Chieneeb7edf2012-03-09 20:38:39 +080059 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());
TDYa12742d4d732012-03-23 19:10:56 -070062#endif
Logan Chieneeb7edf2012-03-09 20:38:39 +080063 }
64 }
65};
Brian Carlstrome24fa612011-09-29 00:53:55 -070066
67TEST_F(OatTest, WriteRead) {
68 const bool compile = false; // DISABLED_ due to the time to compile libcore
Jesse Wilson254db0f2011-11-16 16:44:11 -050069 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Brian Carlstrome24fa612011-09-29 00:53:55 -070070
Jeff Hao0aba0ba2013-06-03 14:49:28 -070071 // 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 Carlstrom45602482013-07-21 22:07:55 -070077 compiler_driver_.reset(new CompilerDriver(compiler_backend, kThumb2, false, NULL, 2, true));
Ian Rogers00f7d0e2012-07-19 15:28:27 -070078 jobject class_loader = NULL;
Brian Carlstrome24fa612011-09-29 00:53:55 -070079 if (compile) {
Brian Carlstrom45602482013-07-21 22:07:55 -070080 TimingLogger timings("OatTest::WriteRead", false);
81 compiler_driver_->CompileAll(class_loader, class_linker->GetBootClassPath(), timings);
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",
Ian Rogers1212a022013-03-04 10:48:41 -080093 *compiler_driver_.get());
Brian Carlstrom700c8d32012-11-05 10:42:02 -080094 ASSERT_TRUE(success_oat);
Brian Carlstrom3f47c122013-03-07 00:02:40 -080095 bool success_elf = compiler_driver_->WriteElf(GetTestAndroidRoot(),
Brian Carlstrom265091e2013-01-30 14:08:26 -080096 !kIsTargetBuild,
97 class_linker->GetBootClassPath(),
98 oat_contents,
99 tmp.GetFile());
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800100 ASSERT_TRUE(success_elf);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700101
102 if (compile) { // OatWriter strips the code, regenerate to compare
Brian Carlstrom45602482013-07-21 22:07:55 -0700103 TimingLogger timings("CommonTest::WriteRead", false);
104 compiler_driver_->CompileAll(class_loader, class_linker->GetBootClassPath(), timings);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700105 }
Brian Carlstromf1d34552013-07-12 20:22:23 -0700106 UniquePtr<OatFile> oat_file(OatFile::Open(tmp.GetFilename(), tmp.GetFilename(), NULL, false));
Brian Carlstrome24fa612011-09-29 00:53:55 -0700107 ASSERT_TRUE(oat_file.get() != NULL);
108 const OatHeader& oat_header = oat_file->GetOatHeader();
Brian Carlstromf852fb22012-10-19 11:01:58 -0700109 ASSERT_TRUE(oat_header.IsValid());
Brian Carlstrom654d9192013-04-30 18:35:32 -0700110 ASSERT_EQ(2U, oat_header.GetDexFileCount()); // core and conscrypt
Brian Carlstrom28db0122012-10-18 16:20:41 -0700111 ASSERT_EQ(42U, oat_header.GetImageFileLocationOatChecksum());
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800112 ASSERT_EQ(4096U, oat_header.GetImageFileLocationOatDataBegin());
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700113 ASSERT_EQ("lue.art", oat_header.GetImageFileLocation());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700114
Brian Carlstroma004aa92012-02-08 18:05:09 -0800115 const DexFile* dex_file = java_lang_dex_file_;
116 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file->GetLocation());
117 CHECK_EQ(dex_file->GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
118 for (size_t i = 0; i < dex_file->NumClassDefs(); i++) {
119 const DexFile::ClassDef& class_def = dex_file->GetClassDef(i);
120 const byte* class_data = dex_file->GetClassData(class_def);
Ian Rogers0571d352011-11-03 19:51:38 -0700121 size_t num_virtual_methods =0;
122 if (class_data != NULL) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800123 ClassDataItemIterator it(*dex_file, class_data);
Ian Rogers0571d352011-11-03 19:51:38 -0700124 num_virtual_methods = it.NumVirtualMethods();
125 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800126 const char* descriptor = dex_file->GetClassDescriptor(class_def);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700127
Brian Carlstromaded5f72011-10-07 17:15:04 -0700128 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(i));
Brian Carlstrome24fa612011-09-29 00:53:55 -0700129
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800130 mirror::Class* klass = class_linker->FindClass(descriptor, NULL);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700131
132 size_t method_index = 0;
133 for (size_t i = 0; i < klass->NumDirectMethods(); i++, method_index++) {
Logan Chieneeb7edf2012-03-09 20:38:39 +0800134 CheckMethod(klass->GetDirectMethod(i),
135 oat_class->GetOatMethod(method_index), dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700136 }
137 for (size_t i = 0; i < num_virtual_methods; i++, method_index++) {
Logan Chieneeb7edf2012-03-09 20:38:39 +0800138 CheckMethod(klass->GetVirtualMethod(i),
139 oat_class->GetOatMethod(method_index), dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700140 }
141 }
142}
143
Brian Carlstrom341df942012-06-27 12:29:22 -0700144TEST_F(OatTest, OatHeaderSizeCheck) {
145 // If this test is failing and you have to update these constants,
146 // it is time to update OatHeader::kOatVersion
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700147 EXPECT_EQ(52U, sizeof(OatHeader));
Jeff Hao74180ca2013-03-27 15:29:11 -0700148 EXPECT_EQ(28U, sizeof(OatMethodOffsets));
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