blob: 29acc8608e8bf2295e2e6062add4ede580297446 [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"
Nicolas Geoffrayf5df8972014-02-14 18:37:08 +000018#include "compiler/compiler_backend.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070019#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080020#include "mirror/class-inl.h"
21#include "mirror/object_array-inl.h"
Ian Rogers04d7aa92013-03-16 14:29:17 -070022#include "mirror/object-inl.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070023#include "oat_file.h"
Brian Carlstrom700c8d32012-11-05 10:42:02 -080024#include "vector_output_stream.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070025
26#include "common_test.h"
27
28namespace art {
29
Logan Chieneeb7edf2012-03-09 20:38:39 +080030class OatTest : public CommonTest {
31 protected:
Brian Carlstromba150c32013-08-27 17:31:03 -070032 static const bool kCompile = false; // DISABLED_ due to the time to compile libcore
33
Brian Carlstromea46f952013-07-30 01:26:50 -070034 void CheckMethod(mirror::ArtMethod* method,
Logan Chieneeb7edf2012-03-09 20:38:39 +080035 const OatFile::OatMethod& oat_method,
Ian Rogers00f7d0e2012-07-19 15:28:27 -070036 const DexFile* dex_file)
Ian Rogersb726dcb2012-09-05 08:57:23 -070037 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Logan Chieneeb7edf2012-03-09 20:38:39 +080038 const CompiledMethod* compiled_method =
Brian Carlstrom51c24672013-07-11 16:00:56 -070039 compiler_driver_->GetCompiledMethod(MethodReference(dex_file,
40 method->GetDexMethodIndex()));
Logan Chieneeb7edf2012-03-09 20:38:39 +080041
42 if (compiled_method == NULL) {
Ian Rogersef7d42f2014-01-06 12:55:46 -080043 EXPECT_TRUE(oat_method.GetQuickCode() == NULL) << PrettyMethod(method) << " "
44 << oat_method.GetQuickCode();
45 EXPECT_TRUE(oat_method.GetPortableCode() == NULL) << PrettyMethod(method) << " "
46 << oat_method.GetPortableCode();
47 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), 0U);
Logan Chieneeb7edf2012-03-09 20:38:39 +080048 EXPECT_EQ(oat_method.GetCoreSpillMask(), 0U);
49 EXPECT_EQ(oat_method.GetFpSpillMask(), 0U);
50 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -080051 const void* quick_oat_code = oat_method.GetQuickCode();
52 if (quick_oat_code != nullptr) {
53 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), compiled_method->GetFrameSizeInBytes());
54 EXPECT_EQ(oat_method.GetCoreSpillMask(), compiled_method->GetCoreSpillMask());
55 EXPECT_EQ(oat_method.GetFpSpillMask(), compiled_method->GetFpSpillMask());
56 uintptr_t oat_code_aligned = RoundDown(reinterpret_cast<uintptr_t>(quick_oat_code), 2);
57 quick_oat_code = reinterpret_cast<const void*>(oat_code_aligned);
58 const std::vector<uint8_t>* quick_code = compiled_method->GetQuickCode();
59 EXPECT_TRUE(quick_code != nullptr);
60 size_t code_size = quick_code->size() * sizeof(quick_code[0]);
61 EXPECT_EQ(0, memcmp(quick_oat_code, &quick_code[0], code_size))
62 << PrettyMethod(method) << " " << code_size;
63 CHECK_EQ(0, memcmp(quick_oat_code, &quick_code[0], code_size));
64 } else {
65 const void* portable_oat_code = oat_method.GetPortableCode();
66 EXPECT_TRUE(portable_oat_code != nullptr) << PrettyMethod(method);
67 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), 0U);
68 EXPECT_EQ(oat_method.GetCoreSpillMask(), 0U);
69 EXPECT_EQ(oat_method.GetFpSpillMask(), 0U);
70 uintptr_t oat_code_aligned = RoundDown(reinterpret_cast<uintptr_t>(portable_oat_code), 2);
71 portable_oat_code = reinterpret_cast<const void*>(oat_code_aligned);
72 const std::vector<uint8_t>* portable_code = compiled_method->GetPortableCode();
73 EXPECT_TRUE(portable_code != nullptr);
74 size_t code_size = portable_code->size() * sizeof(portable_code[0]);
75 EXPECT_EQ(0, memcmp(quick_oat_code, &portable_code[0], code_size))
76 << PrettyMethod(method) << " " << code_size;
77 CHECK_EQ(0, memcmp(quick_oat_code, &portable_code[0], code_size));
78 }
Logan Chieneeb7edf2012-03-09 20:38:39 +080079 }
80 }
81};
Brian Carlstrome24fa612011-09-29 00:53:55 -070082
83TEST_F(OatTest, WriteRead) {
Ian Rogersca368cb2013-11-15 15:52:08 -080084 TimingLogger timings("CommonTest::WriteRead", false, false);
Jesse Wilson254db0f2011-11-16 16:44:11 -050085 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Brian Carlstrome24fa612011-09-29 00:53:55 -070086
Ian Rogersef7d42f2014-01-06 12:55:46 -080087 // TODO: make selectable.
Nicolas Geoffrayf5df8972014-02-14 18:37:08 +000088 CompilerBackend::Kind compiler_backend = kUsePortableCompiler
89 ? CompilerBackend::kPortable
90 : CompilerBackend::kQuick;
Ian Rogersa073c672013-07-30 17:43:55 -070091 InstructionSet insn_set = kIsTargetBuild ? kThumb2 : kX86;
Dave Allison70202782013-10-22 17:52:19 -070092
93 InstructionSetFeatures insn_features;
Brian Carlstrom6449c622014-02-10 23:48:36 -080094 compiler_options_.reset(new CompilerOptions);
95 verification_results_.reset(new VerificationResults(compiler_options_.get()));
Nicolas Geoffrayf5df8972014-02-14 18:37:08 +000096 method_inliner_map_.reset(new DexFileToMethodInlinerMap);
Brian Carlstrom6449c622014-02-10 23:48:36 -080097 callbacks_.reset(new CompilerCallbacksImpl(verification_results_.get(),
98 method_inliner_map_.get()));
Nicolas Geoffrayea3fa0b2014-02-10 11:59:41 +000099 timer_.reset(new CumulativeLogger("Compilation times"));
Brian Carlstrom6449c622014-02-10 23:48:36 -0800100 compiler_driver_.reset(new CompilerDriver(compiler_options_.get(),
101 verification_results_.get(),
Sebastien Hertz102a8f22013-12-18 11:41:30 +0100102 method_inliner_map_.get(),
103 compiler_backend, insn_set,
Nicolas Geoffrayea3fa0b2014-02-10 11:59:41 +0000104 insn_features, false, NULL, 2, true, true,
105 timer_.get()));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700106 jobject class_loader = NULL;
Brian Carlstromba150c32013-08-27 17:31:03 -0700107 if (kCompile) {
Ian Rogers5fe9af72013-11-14 00:17:20 -0800108 TimingLogger timings("OatTest::WriteRead", false, false);
Brian Carlstrom45602482013-07-21 22:07:55 -0700109 compiler_driver_->CompileAll(class_loader, class_linker->GetBootClassPath(), timings);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700110 }
111
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700112 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700113 ScratchFile tmp;
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700114 OatWriter oat_writer(class_linker->GetBootClassPath(),
115 42U,
116 4096U,
117 "lue.art",
Ian Rogersca368cb2013-11-15 15:52:08 -0800118 compiler_driver_.get(),
119 &timings);
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700120 bool success = compiler_driver_->WriteElf(GetTestAndroidRoot(),
121 !kIsTargetBuild,
122 class_linker->GetBootClassPath(),
123 oat_writer,
124 tmp.GetFile());
125 ASSERT_TRUE(success);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700126
Brian Carlstromba150c32013-08-27 17:31:03 -0700127 if (kCompile) { // OatWriter strips the code, regenerate to compare
Brian Carlstrom45602482013-07-21 22:07:55 -0700128 compiler_driver_->CompileAll(class_loader, class_linker->GetBootClassPath(), timings);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700129 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700130 std::string error_msg;
131 UniquePtr<OatFile> oat_file(OatFile::Open(tmp.GetFilename(), tmp.GetFilename(), NULL, false,
132 &error_msg));
133 ASSERT_TRUE(oat_file.get() != nullptr) << error_msg;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700134 const OatHeader& oat_header = oat_file->GetOatHeader();
Brian Carlstromf852fb22012-10-19 11:01:58 -0700135 ASSERT_TRUE(oat_header.IsValid());
Brian Carlstrom919b11c2013-08-30 13:30:36 -0700136 ASSERT_EQ(1U, oat_header.GetDexFileCount()); // core
Brian Carlstrom28db0122012-10-18 16:20:41 -0700137 ASSERT_EQ(42U, oat_header.GetImageFileLocationOatChecksum());
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800138 ASSERT_EQ(4096U, oat_header.GetImageFileLocationOatDataBegin());
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700139 ASSERT_EQ("lue.art", oat_header.GetImageFileLocation());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700140
Brian Carlstroma004aa92012-02-08 18:05:09 -0800141 const DexFile* dex_file = java_lang_dex_file_;
Brian Carlstrom756ee4e2013-10-03 15:46:12 -0700142 uint32_t dex_file_checksum = dex_file->GetLocationChecksum();
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700143 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file->GetLocation().c_str(),
Brian Carlstrom756ee4e2013-10-03 15:46:12 -0700144 &dex_file_checksum);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700145 ASSERT_TRUE(oat_dex_file != nullptr);
Brian Carlstroma004aa92012-02-08 18:05:09 -0800146 CHECK_EQ(dex_file->GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
147 for (size_t i = 0; i < dex_file->NumClassDefs(); i++) {
148 const DexFile::ClassDef& class_def = dex_file->GetClassDef(i);
149 const byte* class_data = dex_file->GetClassData(class_def);
Brian Carlstromba150c32013-08-27 17:31:03 -0700150 size_t num_virtual_methods = 0;
Ian Rogers0571d352011-11-03 19:51:38 -0700151 if (class_data != NULL) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800152 ClassDataItemIterator it(*dex_file, class_data);
Ian Rogers0571d352011-11-03 19:51:38 -0700153 num_virtual_methods = it.NumVirtualMethods();
154 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800155 const char* descriptor = dex_file->GetClassDescriptor(class_def);
Mathieu Chartier590fee92013-09-13 13:46:47 -0700156 SirtRef<mirror::ClassLoader> loader(Thread::Current(), nullptr);
157 mirror::Class* klass = class_linker->FindClass(descriptor, loader);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700158
Brian Carlstromaded5f72011-10-07 17:15:04 -0700159 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(i));
Brian Carlstromba150c32013-08-27 17:31:03 -0700160 CHECK_EQ(mirror::Class::Status::kStatusNotReady, oat_class->GetStatus()) << descriptor;
161 CHECK_EQ(kCompile ? OatClassType::kOatClassAllCompiled : OatClassType::kOatClassNoneCompiled,
162 oat_class->GetType()) << descriptor;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700163
164 size_t method_index = 0;
165 for (size_t i = 0; i < klass->NumDirectMethods(); i++, method_index++) {
Logan Chieneeb7edf2012-03-09 20:38:39 +0800166 CheckMethod(klass->GetDirectMethod(i),
167 oat_class->GetOatMethod(method_index), dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700168 }
169 for (size_t i = 0; i < num_virtual_methods; i++, method_index++) {
Logan Chieneeb7edf2012-03-09 20:38:39 +0800170 CheckMethod(klass->GetVirtualMethod(i),
171 oat_class->GetOatMethod(method_index), dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700172 }
173 }
174}
175
Brian Carlstrom341df942012-06-27 12:29:22 -0700176TEST_F(OatTest, OatHeaderSizeCheck) {
177 // If this test is failing and you have to update these constants,
178 // it is time to update OatHeader::kOatVersion
Dave Allison70202782013-10-22 17:52:19 -0700179 EXPECT_EQ(76U, sizeof(OatHeader));
Jeff Hao74180ca2013-03-27 15:29:11 -0700180 EXPECT_EQ(28U, sizeof(OatMethodOffsets));
Brian Carlstrom341df942012-06-27 12:29:22 -0700181}
182
Brian Carlstromf852fb22012-10-19 11:01:58 -0700183TEST_F(OatTest, OatHeaderIsValid) {
184 InstructionSet instruction_set = kX86;
Dave Allison70202782013-10-22 17:52:19 -0700185 InstructionSetFeatures instruction_set_features;
Brian Carlstromf852fb22012-10-19 11:01:58 -0700186 std::vector<const DexFile*> dex_files;
187 uint32_t image_file_location_oat_checksum = 0;
188 uint32_t image_file_location_oat_begin = 0;
189 const std::string image_file_location;
190 OatHeader oat_header(instruction_set,
Dave Allison70202782013-10-22 17:52:19 -0700191 instruction_set_features,
Brian Carlstromf852fb22012-10-19 11:01:58 -0700192 &dex_files,
193 image_file_location_oat_checksum,
194 image_file_location_oat_begin,
195 image_file_location);
196 ASSERT_TRUE(oat_header.IsValid());
197
198 char* magic = const_cast<char*>(oat_header.GetMagic());
199 strcpy(magic, ""); // bad magic
200 ASSERT_FALSE(oat_header.IsValid());
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700201 strcpy(magic, "oat\n000"); // bad version
Brian Carlstromf852fb22012-10-19 11:01:58 -0700202 ASSERT_FALSE(oat_header.IsValid());
203}
204
Brian Carlstrome24fa612011-09-29 00:53:55 -0700205} // namespace art