blob: d2ee0ede80b81c475f638b9ecbb3ae87831fdcad [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 Carlstroma1ce1fe2014-02-24 23:23:58 -080017#include "common_compiler_test.h"
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000018#include "compiler/compiler.h"
Brian Carlstroma1ce1fe2014-02-24 23:23:58 -080019#include "compiler/oat_writer.h"
Vladimir Marko7624d252014-05-02 14:40:15 +010020#include "entrypoints/quick/quick_entrypoints.h"
Andreas Gampe22f8e5c2014-07-09 11:38:21 -070021#include "implicit_check_options.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070022#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080023#include "mirror/class-inl.h"
Ian Rogers04d7aa92013-03-16 14:29:17 -070024#include "mirror/object-inl.h"
Brian Carlstroma1ce1fe2014-02-24 23:23:58 -080025#include "mirror/object_array-inl.h"
Vladimir Marko7624d252014-05-02 14:40:15 +010026#include "oat_file-inl.h"
Brian Carlstrom700c8d32012-11-05 10:42:02 -080027#include "vector_output_stream.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070028
Brian Carlstrome24fa612011-09-29 00:53:55 -070029namespace art {
30
Brian Carlstroma1ce1fe2014-02-24 23:23:58 -080031class OatTest : public CommonCompilerTest {
Logan Chieneeb7edf2012-03-09 20:38:39 +080032 protected:
Brian Carlstromba150c32013-08-27 17:31:03 -070033 static const bool kCompile = false; // DISABLED_ due to the time to compile libcore
34
Brian Carlstromea46f952013-07-30 01:26:50 -070035 void CheckMethod(mirror::ArtMethod* method,
Logan Chieneeb7edf2012-03-09 20:38:39 +080036 const OatFile::OatMethod& oat_method,
Ian Rogers00f7d0e2012-07-19 15:28:27 -070037 const DexFile* dex_file)
Ian Rogersb726dcb2012-09-05 08:57:23 -070038 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Logan Chieneeb7edf2012-03-09 20:38:39 +080039 const CompiledMethod* compiled_method =
Brian Carlstrom51c24672013-07-11 16:00:56 -070040 compiler_driver_->GetCompiledMethod(MethodReference(dex_file,
41 method->GetDexMethodIndex()));
Logan Chieneeb7edf2012-03-09 20:38:39 +080042
43 if (compiled_method == NULL) {
Ian Rogersef7d42f2014-01-06 12:55:46 -080044 EXPECT_TRUE(oat_method.GetQuickCode() == NULL) << PrettyMethod(method) << " "
45 << oat_method.GetQuickCode();
46 EXPECT_TRUE(oat_method.GetPortableCode() == NULL) << PrettyMethod(method) << " "
47 << oat_method.GetPortableCode();
48 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), 0U);
Logan Chieneeb7edf2012-03-09 20:38:39 +080049 EXPECT_EQ(oat_method.GetCoreSpillMask(), 0U);
50 EXPECT_EQ(oat_method.GetFpSpillMask(), 0U);
51 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -080052 const void* quick_oat_code = oat_method.GetQuickCode();
53 if (quick_oat_code != nullptr) {
54 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());
57 uintptr_t oat_code_aligned = RoundDown(reinterpret_cast<uintptr_t>(quick_oat_code), 2);
58 quick_oat_code = reinterpret_cast<const void*>(oat_code_aligned);
59 const std::vector<uint8_t>* quick_code = compiled_method->GetQuickCode();
60 EXPECT_TRUE(quick_code != nullptr);
61 size_t code_size = quick_code->size() * sizeof(quick_code[0]);
62 EXPECT_EQ(0, memcmp(quick_oat_code, &quick_code[0], code_size))
63 << PrettyMethod(method) << " " << code_size;
64 CHECK_EQ(0, memcmp(quick_oat_code, &quick_code[0], code_size));
65 } else {
66 const void* portable_oat_code = oat_method.GetPortableCode();
67 EXPECT_TRUE(portable_oat_code != nullptr) << PrettyMethod(method);
68 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), 0U);
69 EXPECT_EQ(oat_method.GetCoreSpillMask(), 0U);
70 EXPECT_EQ(oat_method.GetFpSpillMask(), 0U);
71 uintptr_t oat_code_aligned = RoundDown(reinterpret_cast<uintptr_t>(portable_oat_code), 2);
72 portable_oat_code = reinterpret_cast<const void*>(oat_code_aligned);
73 const std::vector<uint8_t>* portable_code = compiled_method->GetPortableCode();
74 EXPECT_TRUE(portable_code != nullptr);
75 size_t code_size = portable_code->size() * sizeof(portable_code[0]);
76 EXPECT_EQ(0, memcmp(quick_oat_code, &portable_code[0], code_size))
77 << PrettyMethod(method) << " " << code_size;
78 CHECK_EQ(0, memcmp(quick_oat_code, &portable_code[0], code_size));
79 }
Logan Chieneeb7edf2012-03-09 20:38:39 +080080 }
81 }
82};
Brian Carlstrome24fa612011-09-29 00:53:55 -070083
84TEST_F(OatTest, WriteRead) {
Brian Carlstroma1ce1fe2014-02-24 23:23:58 -080085 TimingLogger timings("OatTest::WriteRead", false, false);
Jesse Wilson254db0f2011-11-16 16:44:11 -050086 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Brian Carlstrome24fa612011-09-29 00:53:55 -070087
Ian Rogersef7d42f2014-01-06 12:55:46 -080088 // TODO: make selectable.
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000089 Compiler::Kind compiler_kind = kUsePortableCompiler
90 ? Compiler::kPortable
91 : Compiler::kQuick;
Ian Rogersa073c672013-07-30 17:43:55 -070092 InstructionSet insn_set = kIsTargetBuild ? kThumb2 : kX86;
Dave Allison70202782013-10-22 17:52:19 -070093
94 InstructionSetFeatures insn_features;
Brian Carlstrom6449c622014-02-10 23:48:36 -080095 compiler_options_.reset(new CompilerOptions);
96 verification_results_.reset(new VerificationResults(compiler_options_.get()));
Nicolas Geoffrayf5df8972014-02-14 18:37:08 +000097 method_inliner_map_.reset(new DexFileToMethodInlinerMap);
Brian Carlstrom6449c622014-02-10 23:48:36 -080098 callbacks_.reset(new CompilerCallbacksImpl(verification_results_.get(),
99 method_inliner_map_.get()));
Nicolas Geoffrayea3fa0b2014-02-10 11:59:41 +0000100 timer_.reset(new CumulativeLogger("Compilation times"));
Brian Carlstrom6449c622014-02-10 23:48:36 -0800101 compiler_driver_.reset(new CompilerDriver(compiler_options_.get(),
102 verification_results_.get(),
Sebastien Hertz102a8f22013-12-18 11:41:30 +0100103 method_inliner_map_.get(),
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000104 compiler_kind, insn_set,
Nicolas Geoffrayea3fa0b2014-02-10 11:59:41 +0000105 insn_features, false, NULL, 2, true, true,
106 timer_.get()));
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700107 jobject class_loader = NULL;
Brian Carlstromba150c32013-08-27 17:31:03 -0700108 if (kCompile) {
Ian Rogers5fe9af72013-11-14 00:17:20 -0800109 TimingLogger timings("OatTest::WriteRead", false, false);
Ian Rogers3d504072014-03-01 09:16:49 -0800110 compiler_driver_->CompileAll(class_loader, class_linker->GetBootClassPath(), &timings);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700111 }
112
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700113 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700114 ScratchFile tmp;
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700115 SafeMap<std::string, std::string> key_value_store;
116 key_value_store.Put(OatHeader::kImageLocationKey, "lue.art");
117 key_value_store.Put(ImplicitCheckOptions::kImplicitChecksOatHeaderKey,
118 ImplicitCheckOptions::Serialize(true, true, true));
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700119 OatWriter oat_writer(class_linker->GetBootClassPath(),
120 42U,
121 4096U,
Ian Rogersca368cb2013-11-15 15:52:08 -0800122 compiler_driver_.get(),
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700123 &timings,
124 &key_value_store);
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700125 bool success = compiler_driver_->WriteElf(GetTestAndroidRoot(),
126 !kIsTargetBuild,
127 class_linker->GetBootClassPath(),
Ian Rogers3d504072014-03-01 09:16:49 -0800128 &oat_writer,
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700129 tmp.GetFile());
130 ASSERT_TRUE(success);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700131
Brian Carlstromba150c32013-08-27 17:31:03 -0700132 if (kCompile) { // OatWriter strips the code, regenerate to compare
Ian Rogers3d504072014-03-01 09:16:49 -0800133 compiler_driver_->CompileAll(class_loader, class_linker->GetBootClassPath(), &timings);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700134 }
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700135 std::string error_msg;
Ian Rogers700a4022014-05-19 16:49:03 -0700136 std::unique_ptr<OatFile> oat_file(OatFile::Open(tmp.GetFilename(), tmp.GetFilename(), NULL, false,
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700137 &error_msg));
138 ASSERT_TRUE(oat_file.get() != nullptr) << error_msg;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700139 const OatHeader& oat_header = oat_file->GetOatHeader();
Brian Carlstromf852fb22012-10-19 11:01:58 -0700140 ASSERT_TRUE(oat_header.IsValid());
Brian Carlstrom919b11c2013-08-30 13:30:36 -0700141 ASSERT_EQ(1U, oat_header.GetDexFileCount()); // core
Brian Carlstrom28db0122012-10-18 16:20:41 -0700142 ASSERT_EQ(42U, oat_header.GetImageFileLocationOatChecksum());
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800143 ASSERT_EQ(4096U, oat_header.GetImageFileLocationOatDataBegin());
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700144 ASSERT_EQ("lue.art", std::string(oat_header.GetStoreValueByKey(OatHeader::kImageLocationKey)));
Brian Carlstrome24fa612011-09-29 00:53:55 -0700145
Brian Carlstroma004aa92012-02-08 18:05:09 -0800146 const DexFile* dex_file = java_lang_dex_file_;
Brian Carlstrom756ee4e2013-10-03 15:46:12 -0700147 uint32_t dex_file_checksum = dex_file->GetLocationChecksum();
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700148 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file->GetLocation().c_str(),
Brian Carlstrom756ee4e2013-10-03 15:46:12 -0700149 &dex_file_checksum);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700150 ASSERT_TRUE(oat_dex_file != nullptr);
Brian Carlstroma004aa92012-02-08 18:05:09 -0800151 CHECK_EQ(dex_file->GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
152 for (size_t i = 0; i < dex_file->NumClassDefs(); i++) {
153 const DexFile::ClassDef& class_def = dex_file->GetClassDef(i);
154 const byte* class_data = dex_file->GetClassData(class_def);
Brian Carlstromba150c32013-08-27 17:31:03 -0700155 size_t num_virtual_methods = 0;
Ian Rogers0571d352011-11-03 19:51:38 -0700156 if (class_data != NULL) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800157 ClassDataItemIterator it(*dex_file, class_data);
Ian Rogers0571d352011-11-03 19:51:38 -0700158 num_virtual_methods = it.NumVirtualMethods();
159 }
Brian Carlstroma004aa92012-02-08 18:05:09 -0800160 const char* descriptor = dex_file->GetClassDescriptor(class_def);
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700161 StackHandleScope<1> hs(soa.Self());
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700162 mirror::Class* klass = class_linker->FindClass(soa.Self(), descriptor,
163 NullHandle<mirror::ClassLoader>());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700164
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100165 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(i);
166 CHECK_EQ(mirror::Class::Status::kStatusNotReady, oat_class.GetStatus()) << descriptor;
Brian Carlstromba150c32013-08-27 17:31:03 -0700167 CHECK_EQ(kCompile ? OatClassType::kOatClassAllCompiled : OatClassType::kOatClassNoneCompiled,
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100168 oat_class.GetType()) << descriptor;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700169
170 size_t method_index = 0;
171 for (size_t i = 0; i < klass->NumDirectMethods(); i++, method_index++) {
Logan Chieneeb7edf2012-03-09 20:38:39 +0800172 CheckMethod(klass->GetDirectMethod(i),
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100173 oat_class.GetOatMethod(method_index), dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700174 }
175 for (size_t i = 0; i < num_virtual_methods; i++, method_index++) {
Logan Chieneeb7edf2012-03-09 20:38:39 +0800176 CheckMethod(klass->GetVirtualMethod(i),
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100177 oat_class.GetOatMethod(method_index), dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700178 }
179 }
180}
181
Brian Carlstrom341df942012-06-27 12:29:22 -0700182TEST_F(OatTest, OatHeaderSizeCheck) {
183 // If this test is failing and you have to update these constants,
184 // it is time to update OatHeader::kOatVersion
Andreas Gampe2da88232014-02-27 12:26:20 -0800185 EXPECT_EQ(80U, sizeof(OatHeader));
Vladimir Marko7624d252014-05-02 14:40:15 +0100186 EXPECT_EQ(8U, sizeof(OatMethodOffsets));
187 EXPECT_EQ(24U, sizeof(OatQuickMethodHeader));
Serban Constantinescu86797a72014-06-19 16:17:56 +0100188 EXPECT_EQ(77 * GetInstructionSetPointerSize(kRuntimeISA), sizeof(QuickEntryPoints));
Brian Carlstrom341df942012-06-27 12:29:22 -0700189}
190
Brian Carlstromf852fb22012-10-19 11:01:58 -0700191TEST_F(OatTest, OatHeaderIsValid) {
192 InstructionSet instruction_set = kX86;
Dave Allison70202782013-10-22 17:52:19 -0700193 InstructionSetFeatures instruction_set_features;
Brian Carlstromf852fb22012-10-19 11:01:58 -0700194 std::vector<const DexFile*> dex_files;
195 uint32_t image_file_location_oat_checksum = 0;
196 uint32_t image_file_location_oat_begin = 0;
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700197 OatHeader* oat_header = OatHeader::Create(instruction_set,
198 instruction_set_features,
199 &dex_files,
200 image_file_location_oat_checksum,
201 image_file_location_oat_begin,
202 nullptr);
203 ASSERT_NE(oat_header, nullptr);
204 ASSERT_TRUE(oat_header->IsValid());
Brian Carlstromf852fb22012-10-19 11:01:58 -0700205
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700206 char* magic = const_cast<char*>(oat_header->GetMagic());
Brian Carlstromf852fb22012-10-19 11:01:58 -0700207 strcpy(magic, ""); // bad magic
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700208 ASSERT_FALSE(oat_header->IsValid());
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700209 strcpy(magic, "oat\n000"); // bad version
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700210 ASSERT_FALSE(oat_header->IsValid());
Brian Carlstromf852fb22012-10-19 11:01:58 -0700211}
212
Brian Carlstrome24fa612011-09-29 00:53:55 -0700213} // namespace art