blob: 58f46d69a2b293ac58814bf3105f309834a746b5 [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"
Mathieu Chartier07ddb6f2015-11-05 11:16:34 -080019#include "base/unix_file/fd_file.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 Marko10c13562015-11-25 14:33:36 +000030#include "dwarf/method_debug_info.h"
31#include "elf_writer.h"
32#include "elf_writer_quick.h"
Vladimir Marko7624d252014-05-02 14:40:15 +010033#include "entrypoints/quick/quick_entrypoints.h"
Vladimir Marko131980f2015-12-03 18:29:23 +000034#include "linker/vector_output_stream.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080035#include "mirror/class-inl.h"
Brian Carlstroma1ce1fe2014-02-24 23:23:58 -080036#include "mirror/object_array-inl.h"
Ian Rogerse63db272014-07-15 15:36:11 -070037#include "mirror/object-inl.h"
Vladimir Marko7624d252014-05-02 14:40:15 +010038#include "oat_file-inl.h"
Ian Rogerse63db272014-07-15 15:36:11 -070039#include "oat_writer.h"
40#include "scoped_thread_state_change.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070041
Brian Carlstrome24fa612011-09-29 00:53:55 -070042namespace art {
43
Mathieu Chartier07ddb6f2015-11-05 11:16:34 -080044NO_RETURN static void Usage(const char* fmt, ...) {
45 va_list ap;
46 va_start(ap, fmt);
47 std::string error;
48 StringAppendV(&error, fmt, ap);
49 LOG(FATAL) << error;
50 va_end(ap);
51 UNREACHABLE();
52}
53
Brian Carlstroma1ce1fe2014-02-24 23:23:58 -080054class OatTest : public CommonCompilerTest {
Logan Chieneeb7edf2012-03-09 20:38:39 +080055 protected:
Brian Carlstromba150c32013-08-27 17:31:03 -070056 static const bool kCompile = false; // DISABLED_ due to the time to compile libcore
57
Mathieu Chartiere401d142015-04-22 13:56:20 -070058 void CheckMethod(ArtMethod* method,
Logan Chieneeb7edf2012-03-09 20:38:39 +080059 const OatFile::OatMethod& oat_method,
Richard Uhlerfbef44d2014-12-23 09:48:51 -080060 const DexFile& dex_file)
Mathieu Chartier90443472015-07-16 20:32:27 -070061 SHARED_REQUIRES(Locks::mutator_lock_) {
Logan Chieneeb7edf2012-03-09 20:38:39 +080062 const CompiledMethod* compiled_method =
Richard Uhlerfbef44d2014-12-23 09:48:51 -080063 compiler_driver_->GetCompiledMethod(MethodReference(&dex_file,
Brian Carlstrom51c24672013-07-11 16:00:56 -070064 method->GetDexMethodIndex()));
Logan Chieneeb7edf2012-03-09 20:38:39 +080065
Ian Rogersd4c4d952014-10-16 20:31:53 -070066 if (compiled_method == nullptr) {
67 EXPECT_TRUE(oat_method.GetQuickCode() == nullptr) << PrettyMethod(method) << " "
68 << oat_method.GetQuickCode();
Ian Rogersef7d42f2014-01-06 12:55:46 -080069 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), 0U);
Logan Chieneeb7edf2012-03-09 20:38:39 +080070 EXPECT_EQ(oat_method.GetCoreSpillMask(), 0U);
71 EXPECT_EQ(oat_method.GetFpSpillMask(), 0U);
72 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -080073 const void* quick_oat_code = oat_method.GetQuickCode();
Elliott Hughes956af0f2014-12-11 14:34:28 -080074 EXPECT_TRUE(quick_oat_code != nullptr) << PrettyMethod(method);
75 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), compiled_method->GetFrameSizeInBytes());
76 EXPECT_EQ(oat_method.GetCoreSpillMask(), compiled_method->GetCoreSpillMask());
77 EXPECT_EQ(oat_method.GetFpSpillMask(), compiled_method->GetFpSpillMask());
78 uintptr_t oat_code_aligned = RoundDown(reinterpret_cast<uintptr_t>(quick_oat_code), 2);
79 quick_oat_code = reinterpret_cast<const void*>(oat_code_aligned);
Vladimir Marko35831e82015-09-11 11:59:18 +010080 ArrayRef<const uint8_t> quick_code = compiled_method->GetQuickCode();
81 EXPECT_FALSE(quick_code.empty());
82 size_t code_size = quick_code.size() * sizeof(quick_code[0]);
Elliott Hughes956af0f2014-12-11 14:34:28 -080083 EXPECT_EQ(0, memcmp(quick_oat_code, &quick_code[0], code_size))
84 << PrettyMethod(method) << " " << code_size;
85 CHECK_EQ(0, memcmp(quick_oat_code, &quick_code[0], code_size));
Logan Chieneeb7edf2012-03-09 20:38:39 +080086 }
87 }
Mathieu Chartier07ddb6f2015-11-05 11:16:34 -080088
89 void SetupCompiler(Compiler::Kind compiler_kind,
90 InstructionSet insn_set,
91 const std::vector<std::string>& compiler_options,
92 /*out*/std::string* error_msg) {
93 ASSERT_TRUE(error_msg != nullptr);
94 insn_features_.reset(InstructionSetFeatures::FromVariant(insn_set, "default", error_msg));
95 ASSERT_TRUE(insn_features_ != nullptr) << error_msg;
96 compiler_options_.reset(new CompilerOptions);
97 for (const std::string& option : compiler_options) {
98 compiler_options_->ParseCompilerOption(option, Usage);
99 }
100 verification_results_.reset(new VerificationResults(compiler_options_.get()));
101 method_inliner_map_.reset(new DexFileToMethodInlinerMap);
102 callbacks_.reset(new QuickCompilerCallbacks(verification_results_.get(),
103 method_inliner_map_.get(),
104 CompilerCallbacks::CallbackMode::kCompileApp));
105 Runtime::Current()->SetCompilerCallbacks(callbacks_.get());
106 timer_.reset(new CumulativeLogger("Compilation times"));
107 compiler_driver_.reset(new CompilerDriver(compiler_options_.get(),
108 verification_results_.get(),
109 method_inliner_map_.get(),
110 compiler_kind,
111 insn_set,
112 insn_features_.get(),
113 false,
114 nullptr,
115 nullptr,
116 nullptr,
117 2,
118 true,
119 true,
120 "",
121 false,
122 timer_.get(),
123 -1,
Jeff Haodcdc85b2015-12-04 14:06:18 -0800124 "",
125 nullptr));
Mathieu Chartier07ddb6f2015-11-05 11:16:34 -0800126 }
127
128 bool WriteElf(File* file,
129 const std::vector<const DexFile*>& dex_files,
130 SafeMap<std::string, std::string>& key_value_store) {
131 TimingLogger timings("WriteElf", false, false);
132 OatWriter oat_writer(dex_files,
133 42U,
134 4096U,
135 0,
136 compiler_driver_.get(),
137 nullptr,
Mathieu Chartierda5b28a2015-11-05 08:03:47 -0800138 /*compiling_boot_image*/false,
Mathieu Chartier07ddb6f2015-11-05 11:16:34 -0800139 &timings,
140 &key_value_store);
Vladimir Marko10c13562015-11-25 14:33:36 +0000141 std::unique_ptr<ElfWriter> elf_writer = CreateElfWriterQuick(
142 compiler_driver_->GetInstructionSet(),
143 &compiler_driver_->GetCompilerOptions(),
144 file);
145
146 elf_writer->Start();
147
148 OutputStream* rodata = elf_writer->StartRoData();
149 if (!oat_writer.WriteRodata(rodata)) {
150 return false;
151 }
152 elf_writer->EndRoData(rodata);
153
154 OutputStream* text = elf_writer->StartText();
155 if (!oat_writer.WriteCode(text)) {
156 return false;
157 }
158 elf_writer->EndText(text);
159
160 elf_writer->SetBssSize(oat_writer.GetBssSize());
Vladimir Marko10c13562015-11-25 14:33:36 +0000161 elf_writer->WriteDynamicSection();
Vladimir Marko49b0f452015-12-10 13:49:19 +0000162 elf_writer->WriteDebugInfo(oat_writer.GetMethodDebugInfo());
163 elf_writer->WritePatchLocations(oat_writer.GetAbsolutePatchLocations());
Vladimir Marko10c13562015-11-25 14:33:36 +0000164
165 return elf_writer->End();
Mathieu Chartier07ddb6f2015-11-05 11:16:34 -0800166 }
167
168 std::unique_ptr<const InstructionSetFeatures> insn_features_;
169 std::unique_ptr<QuickCompilerCallbacks> callbacks_;
Logan Chieneeb7edf2012-03-09 20:38:39 +0800170};
Brian Carlstrome24fa612011-09-29 00:53:55 -0700171
172TEST_F(OatTest, WriteRead) {
Brian Carlstroma1ce1fe2014-02-24 23:23:58 -0800173 TimingLogger timings("OatTest::WriteRead", false, false);
Jesse Wilson254db0f2011-11-16 16:44:11 -0500174 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700175
Ian Rogersef7d42f2014-01-06 12:55:46 -0800176 // TODO: make selectable.
Elliott Hughes956af0f2014-12-11 14:34:28 -0800177 Compiler::Kind compiler_kind = Compiler::kQuick;
Ian Rogersa073c672013-07-30 17:43:55 -0700178 InstructionSet insn_set = kIsTargetBuild ? kThumb2 : kX86;
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700179 std::string error_msg;
Mathieu Chartier07ddb6f2015-11-05 11:16:34 -0800180 SetupCompiler(compiler_kind, insn_set, std::vector<std::string>(), /*out*/ &error_msg);
181
Ian Rogersd4c4d952014-10-16 20:31:53 -0700182 jobject class_loader = nullptr;
Brian Carlstromba150c32013-08-27 17:31:03 -0700183 if (kCompile) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800184 TimingLogger timings2("OatTest::WriteRead", false, false);
Vladimir Markod1eaf0d2015-10-29 12:18:29 +0000185 compiler_driver_->SetDexFilesForOatFile(class_linker->GetBootClassPath());
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800186 compiler_driver_->CompileAll(class_loader, class_linker->GetBootClassPath(), &timings2);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700187 }
188
189 ScratchFile tmp;
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700190 SafeMap<std::string, std::string> key_value_store;
191 key_value_store.Put(OatHeader::kImageLocationKey, "lue.art");
Mathieu Chartier07ddb6f2015-11-05 11:16:34 -0800192 bool success = WriteElf(tmp.GetFile(), class_linker->GetBootClassPath(), key_value_store);
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700193 ASSERT_TRUE(success);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700194
Brian Carlstromba150c32013-08-27 17:31:03 -0700195 if (kCompile) { // OatWriter strips the code, regenerate to compare
Ian Rogers3d504072014-03-01 09:16:49 -0800196 compiler_driver_->CompileAll(class_loader, class_linker->GetBootClassPath(), &timings);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700197 }
Ian Rogersd4c4d952014-10-16 20:31:53 -0700198 std::unique_ptr<OatFile> oat_file(OatFile::Open(tmp.GetFilename(), tmp.GetFilename(), nullptr,
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700199 nullptr, false, nullptr, &error_msg));
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700200 ASSERT_TRUE(oat_file.get() != nullptr) << error_msg;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700201 const OatHeader& oat_header = oat_file->GetOatHeader();
Brian Carlstromf852fb22012-10-19 11:01:58 -0700202 ASSERT_TRUE(oat_header.IsValid());
Yi Kong9515b512015-11-11 14:36:07 +0000203 ASSERT_EQ(class_linker->GetBootClassPath().size(), oat_header.GetDexFileCount()); // core
Brian Carlstrom28db0122012-10-18 16:20:41 -0700204 ASSERT_EQ(42U, oat_header.GetImageFileLocationOatChecksum());
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800205 ASSERT_EQ(4096U, oat_header.GetImageFileLocationOatDataBegin());
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700206 ASSERT_EQ("lue.art", std::string(oat_header.GetStoreValueByKey(OatHeader::kImageLocationKey)));
Brian Carlstrome24fa612011-09-29 00:53:55 -0700207
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800208 ASSERT_TRUE(java_lang_dex_file_ != nullptr);
209 const DexFile& dex_file = *java_lang_dex_file_;
210 uint32_t dex_file_checksum = dex_file.GetLocationChecksum();
211 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation().c_str(),
Brian Carlstrom756ee4e2013-10-03 15:46:12 -0700212 &dex_file_checksum);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700213 ASSERT_TRUE(oat_dex_file != nullptr);
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800214 CHECK_EQ(dex_file.GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
Vladimir Markof4da6752014-08-01 19:04:18 +0100215 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartiere401d142015-04-22 13:56:20 -0700216 auto pointer_size = class_linker->GetImagePointerSize();
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800217 for (size_t i = 0; i < dex_file.NumClassDefs(); i++) {
218 const DexFile::ClassDef& class_def = dex_file.GetClassDef(i);
219 const uint8_t* class_data = dex_file.GetClassData(class_def);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700220
Brian Carlstromba150c32013-08-27 17:31:03 -0700221 size_t num_virtual_methods = 0;
Ian Rogersd4c4d952014-10-16 20:31:53 -0700222 if (class_data != nullptr) {
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800223 ClassDataItemIterator it(dex_file, class_data);
Ian Rogers0571d352011-11-03 19:51:38 -0700224 num_virtual_methods = it.NumVirtualMethods();
225 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700226
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800227 const char* descriptor = dex_file.GetClassDescriptor(class_def);
Mathieu Chartier9865bde2015-12-21 09:58:16 -0800228 mirror::Class* klass = class_linker->FindClass(soa.Self(),
229 descriptor,
230 ScopedNullHandle<mirror::ClassLoader>());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700231
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100232 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(i);
233 CHECK_EQ(mirror::Class::Status::kStatusNotReady, oat_class.GetStatus()) << descriptor;
Brian Carlstromba150c32013-08-27 17:31:03 -0700234 CHECK_EQ(kCompile ? OatClassType::kOatClassAllCompiled : OatClassType::kOatClassNoneCompiled,
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100235 oat_class.GetType()) << descriptor;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700236
237 size_t method_index = 0;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700238 for (auto& m : klass->GetDirectMethods(pointer_size)) {
239 CheckMethod(&m, oat_class.GetOatMethod(method_index), dex_file);
240 ++method_index;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700241 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700242 size_t visited_virtuals = 0;
Alex Lighte64300b2015-12-15 15:02:47 -0800243 // TODO We should also check copied methods in this test.
244 for (auto& m : klass->GetDeclaredVirtualMethods(pointer_size)) {
245 EXPECT_FALSE(m.IsMiranda());
246 CheckMethod(&m, oat_class.GetOatMethod(method_index), dex_file);
247 ++method_index;
248 ++visited_virtuals;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700249 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700250 EXPECT_EQ(visited_virtuals, num_virtual_methods);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700251 }
252}
253
Brian Carlstrom341df942012-06-27 12:29:22 -0700254TEST_F(OatTest, OatHeaderSizeCheck) {
255 // If this test is failing and you have to update these constants,
256 // it is time to update OatHeader::kOatVersion
Elliott Hughes956af0f2014-12-11 14:34:28 -0800257 EXPECT_EQ(72U, sizeof(OatHeader));
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800258 EXPECT_EQ(4U, sizeof(OatMethodOffsets));
259 EXPECT_EQ(28U, sizeof(OatQuickMethodHeader));
Roland Levillain7c1559a2015-12-15 10:55:36 +0000260 EXPECT_EQ(132 * GetInstructionSetPointerSize(kRuntimeISA), sizeof(QuickEntryPoints));
Brian Carlstrom341df942012-06-27 12:29:22 -0700261}
262
Brian Carlstromf852fb22012-10-19 11:01:58 -0700263TEST_F(OatTest, OatHeaderIsValid) {
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700264 InstructionSet insn_set = kX86;
265 std::string error_msg;
266 std::unique_ptr<const InstructionSetFeatures> insn_features(
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700267 InstructionSetFeatures::FromVariant(insn_set, "default", &error_msg));
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700268 ASSERT_TRUE(insn_features.get() != nullptr) << error_msg;
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700269 std::unique_ptr<OatHeader> oat_header(OatHeader::Create(insn_set,
270 insn_features.get(),
Vladimir Marko49b0f452015-12-10 13:49:19 +0000271 0u,
Andreas Gampe928f72b2014-09-09 19:53:48 -0700272 nullptr));
273 ASSERT_NE(oat_header.get(), nullptr);
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700274 ASSERT_TRUE(oat_header->IsValid());
Brian Carlstromf852fb22012-10-19 11:01:58 -0700275
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700276 char* magic = const_cast<char*>(oat_header->GetMagic());
Brian Carlstromf852fb22012-10-19 11:01:58 -0700277 strcpy(magic, ""); // bad magic
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700278 ASSERT_FALSE(oat_header->IsValid());
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700279 strcpy(magic, "oat\n000"); // bad version
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700280 ASSERT_FALSE(oat_header->IsValid());
Brian Carlstromf852fb22012-10-19 11:01:58 -0700281}
282
Mathieu Chartier07ddb6f2015-11-05 11:16:34 -0800283TEST_F(OatTest, EmptyTextSection) {
284 TimingLogger timings("OatTest::EmptyTextSection", false, false);
285
286 // TODO: make selectable.
287 Compiler::Kind compiler_kind = Compiler::kQuick;
288 InstructionSet insn_set = kRuntimeISA;
289 if (insn_set == kArm) insn_set = kThumb2;
290 std::string error_msg;
291 std::vector<std::string> compiler_options;
292 compiler_options.push_back("--compiler-filter=verify-at-runtime");
293 SetupCompiler(compiler_kind, insn_set, compiler_options, /*out*/ &error_msg);
294
295 jobject class_loader;
296 {
297 ScopedObjectAccess soa(Thread::Current());
298 class_loader = LoadDex("Main");
299 }
300 ASSERT_TRUE(class_loader != nullptr);
301 std::vector<const DexFile*> dex_files = GetDexFiles(class_loader);
302 ASSERT_TRUE(!dex_files.empty());
303
304 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
305 for (const DexFile* dex_file : dex_files) {
306 ScopedObjectAccess soa(Thread::Current());
307 class_linker->RegisterDexFile(
308 *dex_file,
309 class_linker->GetOrCreateAllocatorForClassLoader(
310 soa.Decode<mirror::ClassLoader*>(class_loader)));
311 }
312 compiler_driver_->SetDexFilesForOatFile(dex_files);
313 compiler_driver_->CompileAll(class_loader, dex_files, &timings);
314
315 ScratchFile tmp;
316 SafeMap<std::string, std::string> key_value_store;
317 key_value_store.Put(OatHeader::kImageLocationKey, "test.art");
318 bool success = WriteElf(tmp.GetFile(), dex_files, key_value_store);
319 ASSERT_TRUE(success);
320
321 std::unique_ptr<OatFile> oat_file(OatFile::Open(tmp.GetFilename(),
322 tmp.GetFilename(),
323 nullptr,
324 nullptr,
325 false,
326 nullptr,
327 &error_msg));
328 ASSERT_TRUE(oat_file != nullptr);
329 EXPECT_LT(static_cast<size_t>(oat_file->Size()), static_cast<size_t>(tmp.GetFile()->GetLength()));
330}
331
Brian Carlstrome24fa612011-09-29 00:53:55 -0700332} // namespace art