blob: 94bc30d970b7f0b5089372f05974fcb52bd56456 [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"
Brian Carlstromea46f952013-07-30 01:26:50 -070018#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080019#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:
Brian Carlstromba150c32013-08-27 17:31:03 -070031 static const bool kCompile = false; // DISABLED_ due to the time to compile libcore
32
Brian Carlstromea46f952013-07-30 01:26:50 -070033 void CheckMethod(mirror::ArtMethod* method,
Logan Chieneeb7edf2012-03-09 20:38:39 +080034 const OatFile::OatMethod& oat_method,
Ian Rogers00f7d0e2012-07-19 15:28:27 -070035 const DexFile* dex_file)
Ian Rogersb726dcb2012-09-05 08:57:23 -070036 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Logan Chieneeb7edf2012-03-09 20:38:39 +080037 const CompiledMethod* compiled_method =
Brian Carlstrom51c24672013-07-11 16:00:56 -070038 compiler_driver_->GetCompiledMethod(MethodReference(dex_file,
39 method->GetDexMethodIndex()));
Logan Chieneeb7edf2012-03-09 20:38:39 +080040
41 if (compiled_method == NULL) {
42 EXPECT_TRUE(oat_method.GetCode() == NULL) << PrettyMethod(method) << " "
43 << oat_method.GetCode();
Ian Rogersc928de92013-02-27 14:30:44 -080044#if !defined(ART_USE_PORTABLE_COMPILER)
Brian Carlstromba150c32013-08-27 17:31:03 -070045 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), kCompile ? kStackAlignment : 0);
Logan Chieneeb7edf2012-03-09 20:38:39 +080046 EXPECT_EQ(oat_method.GetCoreSpillMask(), 0U);
47 EXPECT_EQ(oat_method.GetFpSpillMask(), 0U);
TDYa12742d4d732012-03-23 19:10:56 -070048#endif
Logan Chieneeb7edf2012-03-09 20:38:39 +080049 } else {
50 const void* oat_code = oat_method.GetCode();
51 EXPECT_TRUE(oat_code != NULL) << PrettyMethod(method);
52 uintptr_t oat_code_aligned = RoundDown(reinterpret_cast<uintptr_t>(oat_code), 2);
53 oat_code = reinterpret_cast<const void*>(oat_code_aligned);
54
55 const std::vector<uint8_t>& code = compiled_method->GetCode();
56 size_t code_size = code.size() * sizeof(code[0]);
57 EXPECT_EQ(0, memcmp(oat_code, &code[0], code_size))
58 << PrettyMethod(method) << " " << code_size;
59 CHECK_EQ(0, memcmp(oat_code, &code[0], code_size));
Ian Rogersc928de92013-02-27 14:30:44 -080060#if !defined(ART_USE_PORTABLE_COMPILER)
Logan Chieneeb7edf2012-03-09 20:38:39 +080061 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), compiled_method->GetFrameSizeInBytes());
62 EXPECT_EQ(oat_method.GetCoreSpillMask(), compiled_method->GetCoreSpillMask());
63 EXPECT_EQ(oat_method.GetFpSpillMask(), compiled_method->GetFpSpillMask());
TDYa12742d4d732012-03-23 19:10:56 -070064#endif
Logan Chieneeb7edf2012-03-09 20:38:39 +080065 }
66 }
67};
Brian Carlstrome24fa612011-09-29 00:53:55 -070068
69TEST_F(OatTest, WriteRead) {
Ian Rogersca368cb2013-11-15 15:52:08 -080070 TimingLogger timings("CommonTest::WriteRead", false, false);
Jesse Wilson254db0f2011-11-16 16:44:11 -050071 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Brian Carlstrome24fa612011-09-29 00:53:55 -070072
Jeff Hao0aba0ba2013-06-03 14:49:28 -070073 // TODO: make selectable
74#if defined(ART_USE_PORTABLE_COMPILER)
75 CompilerBackend compiler_backend = kPortable;
76#else
77 CompilerBackend compiler_backend = kQuick;
78#endif
Ian Rogersa073c672013-07-30 17:43:55 -070079 InstructionSet insn_set = kIsTargetBuild ? kThumb2 : kX86;
Dave Allison70202782013-10-22 17:52:19 -070080
81 InstructionSetFeatures insn_features;
Sebastien Hertz102a8f22013-12-18 11:41:30 +010082 verified_methods_data_.reset(new VerifiedMethodsData);
83 method_inliner_map_.reset(new DexFileToMethodInlinerMap);
84 compiler_driver_.reset(new CompilerDriver(verified_methods_data_.get(),
85 method_inliner_map_.get(),
86 compiler_backend, insn_set,
Dave Allison70202782013-10-22 17:52:19 -070087 insn_features, false, NULL, 2, true));
Ian Rogers00f7d0e2012-07-19 15:28:27 -070088 jobject class_loader = NULL;
Brian Carlstromba150c32013-08-27 17:31:03 -070089 if (kCompile) {
Ian Rogers5fe9af72013-11-14 00:17:20 -080090 TimingLogger timings("OatTest::WriteRead", false, false);
Brian Carlstrom45602482013-07-21 22:07:55 -070091 compiler_driver_->CompileAll(class_loader, class_linker->GetBootClassPath(), timings);
Brian Carlstrome24fa612011-09-29 00:53:55 -070092 }
93
Ian Rogers00f7d0e2012-07-19 15:28:27 -070094 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrome24fa612011-09-29 00:53:55 -070095 ScratchFile tmp;
Brian Carlstromc50d8e12013-07-23 22:35:16 -070096 OatWriter oat_writer(class_linker->GetBootClassPath(),
97 42U,
98 4096U,
99 "lue.art",
Ian Rogersca368cb2013-11-15 15:52:08 -0800100 compiler_driver_.get(),
101 &timings);
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700102 bool success = compiler_driver_->WriteElf(GetTestAndroidRoot(),
103 !kIsTargetBuild,
104 class_linker->GetBootClassPath(),
105 oat_writer,
106 tmp.GetFile());
107 ASSERT_TRUE(success);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700108
Brian Carlstromba150c32013-08-27 17:31:03 -0700109 if (kCompile) { // OatWriter strips the code, regenerate to compare
Brian Carlstrom45602482013-07-21 22:07:55 -0700110 compiler_driver_->CompileAll(class_loader, class_linker->GetBootClassPath(), timings);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700111 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700112 std::string error_msg;
113 UniquePtr<OatFile> oat_file(OatFile::Open(tmp.GetFilename(), tmp.GetFilename(), NULL, false,
114 &error_msg));
115 ASSERT_TRUE(oat_file.get() != nullptr) << error_msg;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700116 const OatHeader& oat_header = oat_file->GetOatHeader();
Brian Carlstromf852fb22012-10-19 11:01:58 -0700117 ASSERT_TRUE(oat_header.IsValid());
Brian Carlstrom919b11c2013-08-30 13:30:36 -0700118 ASSERT_EQ(1U, oat_header.GetDexFileCount()); // core
Brian Carlstrom28db0122012-10-18 16:20:41 -0700119 ASSERT_EQ(42U, oat_header.GetImageFileLocationOatChecksum());
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800120 ASSERT_EQ(4096U, oat_header.GetImageFileLocationOatDataBegin());
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700121 ASSERT_EQ("lue.art", oat_header.GetImageFileLocation());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700122
Brian Carlstroma004aa92012-02-08 18:05:09 -0800123 const DexFile* dex_file = java_lang_dex_file_;
Brian Carlstrom756ee4e2013-10-03 15:46:12 -0700124 uint32_t dex_file_checksum = dex_file->GetLocationChecksum();
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700125 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file->GetLocation().c_str(),
Brian Carlstrom756ee4e2013-10-03 15:46:12 -0700126 &dex_file_checksum);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700127 ASSERT_TRUE(oat_dex_file != nullptr);
Brian Carlstroma004aa92012-02-08 18:05:09 -0800128 CHECK_EQ(dex_file->GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
129 for (size_t i = 0; i < dex_file->NumClassDefs(); i++) {
130 const DexFile::ClassDef& class_def = dex_file->GetClassDef(i);
131 const byte* class_data = dex_file->GetClassData(class_def);
Brian Carlstromba150c32013-08-27 17:31:03 -0700132 size_t num_virtual_methods = 0;
Ian Rogers0571d352011-11-03 19:51:38 -0700133 if (class_data != NULL) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800134 ClassDataItemIterator it(*dex_file, class_data);
Ian Rogers0571d352011-11-03 19:51:38 -0700135 num_virtual_methods = it.NumVirtualMethods();
136 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800137 const char* descriptor = dex_file->GetClassDescriptor(class_def);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700138 SirtRef<mirror::ClassLoader> loader(Thread::Current(), nullptr);
139 mirror::Class* klass = class_linker->FindClass(descriptor, loader);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700140
Brian Carlstromaded5f72011-10-07 17:15:04 -0700141 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(i));
Brian Carlstromba150c32013-08-27 17:31:03 -0700142 CHECK_EQ(mirror::Class::Status::kStatusNotReady, oat_class->GetStatus()) << descriptor;
143 CHECK_EQ(kCompile ? OatClassType::kOatClassAllCompiled : OatClassType::kOatClassNoneCompiled,
144 oat_class->GetType()) << descriptor;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700145
146 size_t method_index = 0;
147 for (size_t i = 0; i < klass->NumDirectMethods(); i++, method_index++) {
Logan Chieneeb7edf2012-03-09 20:38:39 +0800148 CheckMethod(klass->GetDirectMethod(i),
149 oat_class->GetOatMethod(method_index), dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700150 }
151 for (size_t i = 0; i < num_virtual_methods; i++, method_index++) {
Logan Chieneeb7edf2012-03-09 20:38:39 +0800152 CheckMethod(klass->GetVirtualMethod(i),
153 oat_class->GetOatMethod(method_index), dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700154 }
155 }
156}
157
Brian Carlstrom341df942012-06-27 12:29:22 -0700158TEST_F(OatTest, OatHeaderSizeCheck) {
159 // If this test is failing and you have to update these constants,
160 // it is time to update OatHeader::kOatVersion
Dave Allison70202782013-10-22 17:52:19 -0700161 EXPECT_EQ(76U, sizeof(OatHeader));
Jeff Hao74180ca2013-03-27 15:29:11 -0700162 EXPECT_EQ(28U, sizeof(OatMethodOffsets));
Brian Carlstrom341df942012-06-27 12:29:22 -0700163}
164
Brian Carlstromf852fb22012-10-19 11:01:58 -0700165TEST_F(OatTest, OatHeaderIsValid) {
166 InstructionSet instruction_set = kX86;
Dave Allison70202782013-10-22 17:52:19 -0700167 InstructionSetFeatures instruction_set_features;
Brian Carlstromf852fb22012-10-19 11:01:58 -0700168 std::vector<const DexFile*> dex_files;
169 uint32_t image_file_location_oat_checksum = 0;
170 uint32_t image_file_location_oat_begin = 0;
171 const std::string image_file_location;
172 OatHeader oat_header(instruction_set,
Dave Allison70202782013-10-22 17:52:19 -0700173 instruction_set_features,
Brian Carlstromf852fb22012-10-19 11:01:58 -0700174 &dex_files,
175 image_file_location_oat_checksum,
176 image_file_location_oat_begin,
177 image_file_location);
178 ASSERT_TRUE(oat_header.IsValid());
179
180 char* magic = const_cast<char*>(oat_header.GetMagic());
181 strcpy(magic, ""); // bad magic
182 ASSERT_FALSE(oat_header.IsValid());
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700183 strcpy(magic, "oat\n000"); // bad version
Brian Carlstromf852fb22012-10-19 11:01:58 -0700184 ASSERT_FALSE(oat_header.IsValid());
185}
186
Brian Carlstrome24fa612011-09-29 00:53:55 -0700187} // namespace art