blob: 05a33d7a7fd82a5067ff8f4913391f88824cd83b [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
Ian Rogersd582fa42014-11-05 23:46:43 -080017#include "arch/instruction_set_features.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070018#include "art_method-inl.h"
Igor Murashkina315f5c2015-07-31 17:35:52 -070019#include "base/out.h"
Andreas Gampe53c913b2014-08-12 23:19:23 -070020#include "class_linker.h"
Brian Carlstroma1ce1fe2014-02-24 23:23:58 -080021#include "common_compiler_test.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000022#include "compiled_method.h"
Ian Rogerse63db272014-07-15 15:36:11 -070023#include "compiler.h"
Mathieu Chartier5bdab122015-01-26 18:30:19 -080024#include "dex/pass_manager.h"
Ian Rogerse63db272014-07-15 15:36:11 -070025#include "dex/quick/dex_file_to_method_inliner_map.h"
26#include "dex/quick_compiler_callbacks.h"
Mathieu Chartier5bdab122015-01-26 18:30:19 -080027#include "dex/verification_results.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000028#include "driver/compiler_driver.h"
29#include "driver/compiler_options.h"
Vladimir Marko7624d252014-05-02 14:40:15 +010030#include "entrypoints/quick/quick_entrypoints.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080031#include "mirror/class-inl.h"
Brian Carlstroma1ce1fe2014-02-24 23:23:58 -080032#include "mirror/object_array-inl.h"
Ian Rogerse63db272014-07-15 15:36:11 -070033#include "mirror/object-inl.h"
Vladimir Marko7624d252014-05-02 14:40:15 +010034#include "oat_file-inl.h"
Ian Rogerse63db272014-07-15 15:36:11 -070035#include "oat_writer.h"
36#include "scoped_thread_state_change.h"
Brian Carlstrom700c8d32012-11-05 10:42:02 -080037#include "vector_output_stream.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070038
Brian Carlstrome24fa612011-09-29 00:53:55 -070039namespace art {
40
Brian Carlstroma1ce1fe2014-02-24 23:23:58 -080041class OatTest : public CommonCompilerTest {
Logan Chieneeb7edf2012-03-09 20:38:39 +080042 protected:
Brian Carlstromba150c32013-08-27 17:31:03 -070043 static const bool kCompile = false; // DISABLED_ due to the time to compile libcore
44
Mathieu Chartiere401d142015-04-22 13:56:20 -070045 void CheckMethod(ArtMethod* method,
Logan Chieneeb7edf2012-03-09 20:38:39 +080046 const OatFile::OatMethod& oat_method,
Richard Uhlerfbef44d2014-12-23 09:48:51 -080047 const DexFile& dex_file)
Mathieu Chartier90443472015-07-16 20:32:27 -070048 SHARED_REQUIRES(Locks::mutator_lock_) {
Logan Chieneeb7edf2012-03-09 20:38:39 +080049 const CompiledMethod* compiled_method =
Richard Uhlerfbef44d2014-12-23 09:48:51 -080050 compiler_driver_->GetCompiledMethod(MethodReference(&dex_file,
Brian Carlstrom51c24672013-07-11 16:00:56 -070051 method->GetDexMethodIndex()));
Logan Chieneeb7edf2012-03-09 20:38:39 +080052
Ian Rogersd4c4d952014-10-16 20:31:53 -070053 if (compiled_method == nullptr) {
54 EXPECT_TRUE(oat_method.GetQuickCode() == nullptr) << PrettyMethod(method) << " "
55 << oat_method.GetQuickCode();
Ian Rogersef7d42f2014-01-06 12:55:46 -080056 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), 0U);
Logan Chieneeb7edf2012-03-09 20:38:39 +080057 EXPECT_EQ(oat_method.GetCoreSpillMask(), 0U);
58 EXPECT_EQ(oat_method.GetFpSpillMask(), 0U);
59 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -080060 const void* quick_oat_code = oat_method.GetQuickCode();
Elliott Hughes956af0f2014-12-11 14:34:28 -080061 EXPECT_TRUE(quick_oat_code != nullptr) << PrettyMethod(method);
62 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), compiled_method->GetFrameSizeInBytes());
63 EXPECT_EQ(oat_method.GetCoreSpillMask(), compiled_method->GetCoreSpillMask());
64 EXPECT_EQ(oat_method.GetFpSpillMask(), compiled_method->GetFpSpillMask());
65 uintptr_t oat_code_aligned = RoundDown(reinterpret_cast<uintptr_t>(quick_oat_code), 2);
66 quick_oat_code = reinterpret_cast<const void*>(oat_code_aligned);
Andreas Gampee21dc3d2014-12-08 16:59:43 -080067 const SwapVector<uint8_t>* quick_code = compiled_method->GetQuickCode();
Elliott Hughes956af0f2014-12-11 14:34:28 -080068 EXPECT_TRUE(quick_code != nullptr);
69 size_t code_size = quick_code->size() * sizeof(quick_code[0]);
70 EXPECT_EQ(0, memcmp(quick_oat_code, &quick_code[0], code_size))
71 << PrettyMethod(method) << " " << code_size;
72 CHECK_EQ(0, memcmp(quick_oat_code, &quick_code[0], code_size));
Logan Chieneeb7edf2012-03-09 20:38:39 +080073 }
74 }
75};
Brian Carlstrome24fa612011-09-29 00:53:55 -070076
77TEST_F(OatTest, WriteRead) {
Brian Carlstroma1ce1fe2014-02-24 23:23:58 -080078 TimingLogger timings("OatTest::WriteRead", false, false);
Jesse Wilson254db0f2011-11-16 16:44:11 -050079 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Brian Carlstrome24fa612011-09-29 00:53:55 -070080
Ian Rogersef7d42f2014-01-06 12:55:46 -080081 // TODO: make selectable.
Elliott Hughes956af0f2014-12-11 14:34:28 -080082 Compiler::Kind compiler_kind = Compiler::kQuick;
Ian Rogersa073c672013-07-30 17:43:55 -070083 InstructionSet insn_set = kIsTargetBuild ? kThumb2 : kX86;
Dave Allison70202782013-10-22 17:52:19 -070084
Ian Rogers6f3dbba2014-10-14 17:41:57 -070085 std::string error_msg;
86 std::unique_ptr<const InstructionSetFeatures> insn_features(
Igor Murashkina315f5c2015-07-31 17:35:52 -070087 InstructionSetFeatures::FromVariant(insn_set, "default", outof(error_msg)));
Ian Rogers6f3dbba2014-10-14 17:41:57 -070088 ASSERT_TRUE(insn_features.get() != nullptr) << error_msg;
Brian Carlstrom6449c622014-02-10 23:48:36 -080089 compiler_options_.reset(new CompilerOptions);
90 verification_results_.reset(new VerificationResults(compiler_options_.get()));
Nicolas Geoffrayf5df8972014-02-14 18:37:08 +000091 method_inliner_map_.reset(new DexFileToMethodInlinerMap);
Nicolas Geoffrayea3fa0b2014-02-10 11:59:41 +000092 timer_.reset(new CumulativeLogger("Compilation times"));
Brian Carlstrom6449c622014-02-10 23:48:36 -080093 compiler_driver_.reset(new CompilerDriver(compiler_options_.get(),
94 verification_results_.get(),
Sebastien Hertz102a8f22013-12-18 11:41:30 +010095 method_inliner_map_.get(),
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +000096 compiler_kind, insn_set,
Andreas Gampe70bef0d2015-04-15 02:37:28 -070097 insn_features.get(), false, nullptr, nullptr, nullptr,
98 2, true, true, "", timer_.get(), -1, ""));
Ian Rogersd4c4d952014-10-16 20:31:53 -070099 jobject class_loader = nullptr;
Brian Carlstromba150c32013-08-27 17:31:03 -0700100 if (kCompile) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800101 TimingLogger timings2("OatTest::WriteRead", false, false);
102 compiler_driver_->CompileAll(class_loader, class_linker->GetBootClassPath(), &timings2);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700103 }
104
105 ScratchFile tmp;
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700106 SafeMap<std::string, std::string> key_value_store;
107 key_value_store.Put(OatHeader::kImageLocationKey, "lue.art");
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700108 OatWriter oat_writer(class_linker->GetBootClassPath(),
109 42U,
110 4096U,
Alex Lighta59dd802014-07-02 16:28:08 -0700111 0,
Ian Rogersca368cb2013-11-15 15:52:08 -0800112 compiler_driver_.get(),
Vladimir Markof4da6752014-08-01 19:04:18 +0100113 nullptr,
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700114 &timings,
115 &key_value_store);
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700116 bool success = compiler_driver_->WriteElf(GetTestAndroidRoot(),
117 !kIsTargetBuild,
118 class_linker->GetBootClassPath(),
Ian Rogers3d504072014-03-01 09:16:49 -0800119 &oat_writer,
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700120 tmp.GetFile());
121 ASSERT_TRUE(success);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700122
Brian Carlstromba150c32013-08-27 17:31:03 -0700123 if (kCompile) { // OatWriter strips the code, regenerate to compare
Ian Rogers3d504072014-03-01 09:16:49 -0800124 compiler_driver_->CompileAll(class_loader, class_linker->GetBootClassPath(), &timings);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700125 }
Ian Rogersd4c4d952014-10-16 20:31:53 -0700126 std::unique_ptr<OatFile> oat_file(OatFile::Open(tmp.GetFilename(), tmp.GetFilename(), nullptr,
Igor Murashkina315f5c2015-07-31 17:35:52 -0700127 nullptr, false, nullptr, outof(error_msg)));
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700128 ASSERT_TRUE(oat_file.get() != nullptr) << error_msg;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700129 const OatHeader& oat_header = oat_file->GetOatHeader();
Brian Carlstromf852fb22012-10-19 11:01:58 -0700130 ASSERT_TRUE(oat_header.IsValid());
Brian Carlstrom919b11c2013-08-30 13:30:36 -0700131 ASSERT_EQ(1U, oat_header.GetDexFileCount()); // core
Brian Carlstrom28db0122012-10-18 16:20:41 -0700132 ASSERT_EQ(42U, oat_header.GetImageFileLocationOatChecksum());
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800133 ASSERT_EQ(4096U, oat_header.GetImageFileLocationOatDataBegin());
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700134 ASSERT_EQ("lue.art", std::string(oat_header.GetStoreValueByKey(OatHeader::kImageLocationKey)));
Brian Carlstrome24fa612011-09-29 00:53:55 -0700135
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800136 ASSERT_TRUE(java_lang_dex_file_ != nullptr);
137 const DexFile& dex_file = *java_lang_dex_file_;
138 uint32_t dex_file_checksum = dex_file.GetLocationChecksum();
139 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation().c_str(),
Brian Carlstrom756ee4e2013-10-03 15:46:12 -0700140 &dex_file_checksum);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700141 ASSERT_TRUE(oat_dex_file != nullptr);
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800142 CHECK_EQ(dex_file.GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
Vladimir Markof4da6752014-08-01 19:04:18 +0100143 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartiere401d142015-04-22 13:56:20 -0700144 auto pointer_size = class_linker->GetImagePointerSize();
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800145 for (size_t i = 0; i < dex_file.NumClassDefs(); i++) {
146 const DexFile::ClassDef& class_def = dex_file.GetClassDef(i);
147 const uint8_t* class_data = dex_file.GetClassData(class_def);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700148
Brian Carlstromba150c32013-08-27 17:31:03 -0700149 size_t num_virtual_methods = 0;
Ian Rogersd4c4d952014-10-16 20:31:53 -0700150 if (class_data != nullptr) {
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800151 ClassDataItemIterator it(dex_file, class_data);
Ian Rogers0571d352011-11-03 19:51:38 -0700152 num_virtual_methods = it.NumVirtualMethods();
153 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700154
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800155 const char* descriptor = dex_file.GetClassDescriptor(class_def);
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700156 mirror::Class* klass = class_linker->FindClass(soa.Self(), descriptor,
157 NullHandle<mirror::ClassLoader>());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700158
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100159 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(i);
160 CHECK_EQ(mirror::Class::Status::kStatusNotReady, oat_class.GetStatus()) << descriptor;
Brian Carlstromba150c32013-08-27 17:31:03 -0700161 CHECK_EQ(kCompile ? OatClassType::kOatClassAllCompiled : OatClassType::kOatClassNoneCompiled,
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100162 oat_class.GetType()) << descriptor;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700163
164 size_t method_index = 0;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700165 for (auto& m : klass->GetDirectMethods(pointer_size)) {
166 CheckMethod(&m, oat_class.GetOatMethod(method_index), dex_file);
167 ++method_index;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700168 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700169 size_t visited_virtuals = 0;
170 for (auto& m : klass->GetVirtualMethods(pointer_size)) {
171 if (!m.IsMiranda()) {
172 CheckMethod(&m, oat_class.GetOatMethod(method_index), dex_file);
173 ++method_index;
174 ++visited_virtuals;
175 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700176 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700177 EXPECT_EQ(visited_virtuals, num_virtual_methods);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700178 }
179}
180
Brian Carlstrom341df942012-06-27 12:29:22 -0700181TEST_F(OatTest, OatHeaderSizeCheck) {
182 // If this test is failing and you have to update these constants,
183 // it is time to update OatHeader::kOatVersion
Elliott Hughes956af0f2014-12-11 14:34:28 -0800184 EXPECT_EQ(72U, sizeof(OatHeader));
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800185 EXPECT_EQ(4U, sizeof(OatMethodOffsets));
186 EXPECT_EQ(28U, sizeof(OatQuickMethodHeader));
Man Cao1aee9002015-07-14 22:31:42 -0700187 EXPECT_EQ(113 * GetInstructionSetPointerSize(kRuntimeISA), sizeof(QuickEntryPoints));
Brian Carlstrom341df942012-06-27 12:29:22 -0700188}
189
Brian Carlstromf852fb22012-10-19 11:01:58 -0700190TEST_F(OatTest, OatHeaderIsValid) {
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700191 InstructionSet insn_set = kX86;
192 std::string error_msg;
193 std::unique_ptr<const InstructionSetFeatures> insn_features(
Igor Murashkina315f5c2015-07-31 17:35:52 -0700194 InstructionSetFeatures::FromVariant(insn_set, "default", outof(error_msg)));
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700195 ASSERT_TRUE(insn_features.get() != nullptr) << error_msg;
Brian Carlstromf852fb22012-10-19 11:01:58 -0700196 std::vector<const DexFile*> dex_files;
197 uint32_t image_file_location_oat_checksum = 0;
198 uint32_t image_file_location_oat_begin = 0;
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700199 std::unique_ptr<OatHeader> oat_header(OatHeader::Create(insn_set,
200 insn_features.get(),
Andreas Gampe928f72b2014-09-09 19:53:48 -0700201 &dex_files,
202 image_file_location_oat_checksum,
203 image_file_location_oat_begin,
204 nullptr));
205 ASSERT_NE(oat_header.get(), nullptr);
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700206 ASSERT_TRUE(oat_header->IsValid());
Brian Carlstromf852fb22012-10-19 11:01:58 -0700207
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700208 char* magic = const_cast<char*>(oat_header->GetMagic());
Brian Carlstromf852fb22012-10-19 11:01:58 -0700209 strcpy(magic, ""); // bad magic
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700210 ASSERT_FALSE(oat_header->IsValid());
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700211 strcpy(magic, "oat\n000"); // bad version
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700212 ASSERT_FALSE(oat_header->IsValid());
Brian Carlstromf852fb22012-10-19 11:01:58 -0700213}
214
Brian Carlstrome24fa612011-09-29 00:53:55 -0700215} // namespace art