blob: d3b404a3b6575cb2ed8e988a289da76a4905649a [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"
David Srbecky4fda4eb2016-02-05 13:34:46 +000024#include "debug/method_debug_info.h"
Mathieu Chartier5bdab122015-01-26 18:30:19 -080025#include "dex/pass_manager.h"
Ian Rogerse63db272014-07-15 15:36:11 -070026#include "dex/quick/dex_file_to_method_inliner_map.h"
27#include "dex/quick_compiler_callbacks.h"
Mathieu Chartier5bdab122015-01-26 18:30:19 -080028#include "dex/verification_results.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000029#include "driver/compiler_driver.h"
30#include "driver/compiler_options.h"
Vladimir Marko10c13562015-11-25 14:33:36 +000031#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"
Ian Rogerse63db272014-07-15 15:36:11 -070036#include "mirror/object-inl.h"
David Srbecky4fda4eb2016-02-05 13:34:46 +000037#include "mirror/object_array-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"
Vladimir Marko9bdf1082016-01-21 12:15:52 +000041#include "utils/test_dex_file_builder.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070042
Brian Carlstrome24fa612011-09-29 00:53:55 -070043namespace art {
44
Mathieu Chartier07ddb6f2015-11-05 11:16:34 -080045NO_RETURN static void Usage(const char* fmt, ...) {
46 va_list ap;
47 va_start(ap, fmt);
48 std::string error;
49 StringAppendV(&error, fmt, ap);
50 LOG(FATAL) << error;
51 va_end(ap);
52 UNREACHABLE();
53}
54
Brian Carlstroma1ce1fe2014-02-24 23:23:58 -080055class OatTest : public CommonCompilerTest {
Logan Chieneeb7edf2012-03-09 20:38:39 +080056 protected:
Brian Carlstromba150c32013-08-27 17:31:03 -070057 static const bool kCompile = false; // DISABLED_ due to the time to compile libcore
58
Mathieu Chartiere401d142015-04-22 13:56:20 -070059 void CheckMethod(ArtMethod* method,
Logan Chieneeb7edf2012-03-09 20:38:39 +080060 const OatFile::OatMethod& oat_method,
Richard Uhlerfbef44d2014-12-23 09:48:51 -080061 const DexFile& dex_file)
Mathieu Chartier90443472015-07-16 20:32:27 -070062 SHARED_REQUIRES(Locks::mutator_lock_) {
Logan Chieneeb7edf2012-03-09 20:38:39 +080063 const CompiledMethod* compiled_method =
Richard Uhlerfbef44d2014-12-23 09:48:51 -080064 compiler_driver_->GetCompiledMethod(MethodReference(&dex_file,
Brian Carlstrom51c24672013-07-11 16:00:56 -070065 method->GetDexMethodIndex()));
Logan Chieneeb7edf2012-03-09 20:38:39 +080066
Ian Rogersd4c4d952014-10-16 20:31:53 -070067 if (compiled_method == nullptr) {
68 EXPECT_TRUE(oat_method.GetQuickCode() == nullptr) << PrettyMethod(method) << " "
69 << oat_method.GetQuickCode();
Ian Rogersef7d42f2014-01-06 12:55:46 -080070 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), 0U);
Logan Chieneeb7edf2012-03-09 20:38:39 +080071 EXPECT_EQ(oat_method.GetCoreSpillMask(), 0U);
72 EXPECT_EQ(oat_method.GetFpSpillMask(), 0U);
73 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -080074 const void* quick_oat_code = oat_method.GetQuickCode();
Elliott Hughes956af0f2014-12-11 14:34:28 -080075 EXPECT_TRUE(quick_oat_code != nullptr) << PrettyMethod(method);
76 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), compiled_method->GetFrameSizeInBytes());
77 EXPECT_EQ(oat_method.GetCoreSpillMask(), compiled_method->GetCoreSpillMask());
78 EXPECT_EQ(oat_method.GetFpSpillMask(), compiled_method->GetFpSpillMask());
79 uintptr_t oat_code_aligned = RoundDown(reinterpret_cast<uintptr_t>(quick_oat_code), 2);
80 quick_oat_code = reinterpret_cast<const void*>(oat_code_aligned);
Vladimir Marko35831e82015-09-11 11:59:18 +010081 ArrayRef<const uint8_t> quick_code = compiled_method->GetQuickCode();
82 EXPECT_FALSE(quick_code.empty());
83 size_t code_size = quick_code.size() * sizeof(quick_code[0]);
Elliott Hughes956af0f2014-12-11 14:34:28 -080084 EXPECT_EQ(0, memcmp(quick_oat_code, &quick_code[0], code_size))
85 << PrettyMethod(method) << " " << code_size;
86 CHECK_EQ(0, memcmp(quick_oat_code, &quick_code[0], code_size));
Logan Chieneeb7edf2012-03-09 20:38:39 +080087 }
88 }
Mathieu Chartier07ddb6f2015-11-05 11:16:34 -080089
90 void SetupCompiler(Compiler::Kind compiler_kind,
91 InstructionSet insn_set,
92 const std::vector<std::string>& compiler_options,
93 /*out*/std::string* error_msg) {
94 ASSERT_TRUE(error_msg != nullptr);
95 insn_features_.reset(InstructionSetFeatures::FromVariant(insn_set, "default", error_msg));
96 ASSERT_TRUE(insn_features_ != nullptr) << error_msg;
97 compiler_options_.reset(new CompilerOptions);
98 for (const std::string& option : compiler_options) {
99 compiler_options_->ParseCompilerOption(option, Usage);
100 }
101 verification_results_.reset(new VerificationResults(compiler_options_.get()));
102 method_inliner_map_.reset(new DexFileToMethodInlinerMap);
103 callbacks_.reset(new QuickCompilerCallbacks(verification_results_.get(),
104 method_inliner_map_.get(),
105 CompilerCallbacks::CallbackMode::kCompileApp));
106 Runtime::Current()->SetCompilerCallbacks(callbacks_.get());
107 timer_.reset(new CumulativeLogger("Compilation times"));
108 compiler_driver_.reset(new CompilerDriver(compiler_options_.get(),
109 verification_results_.get(),
110 method_inliner_map_.get(),
111 compiler_kind,
112 insn_set,
113 insn_features_.get(),
Vladimir Marko45724f92016-02-17 17:46:10 +0000114 false,
115 nullptr,
116 nullptr,
117 nullptr,
118 2,
119 true,
120 true,
Mathieu Chartier07ddb6f2015-11-05 11:16:34 -0800121 timer_.get(),
Vladimir Marko45724f92016-02-17 17:46:10 +0000122 -1,
123 nullptr,
124 nullptr));
Mathieu Chartier07ddb6f2015-11-05 11:16:34 -0800125 }
126
127 bool WriteElf(File* file,
128 const std::vector<const DexFile*>& dex_files,
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800129 SafeMap<std::string, std::string>& key_value_store,
130 bool verify) {
Mathieu Chartier07ddb6f2015-11-05 11:16:34 -0800131 TimingLogger timings("WriteElf", false, false);
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000132 OatWriter oat_writer(/*compiling_boot_image*/false, &timings);
133 for (const DexFile* dex_file : dex_files) {
134 ArrayRef<const uint8_t> raw_dex_file(
135 reinterpret_cast<const uint8_t*>(&dex_file->GetHeader()),
136 dex_file->GetHeader().file_size_);
137 if (!oat_writer.AddRawDexFileSource(raw_dex_file,
138 dex_file->GetLocation().c_str(),
139 dex_file->GetLocationChecksum())) {
140 return false;
141 }
142 }
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800143 return DoWriteElf(file, oat_writer, key_value_store, verify);
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000144 }
145
146 bool WriteElf(File* file,
147 const std::vector<const char*>& dex_filenames,
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800148 SafeMap<std::string, std::string>& key_value_store,
149 bool verify) {
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000150 TimingLogger timings("WriteElf", false, false);
151 OatWriter oat_writer(/*compiling_boot_image*/false, &timings);
152 for (const char* dex_filename : dex_filenames) {
153 if (!oat_writer.AddDexFileSource(dex_filename, dex_filename)) {
154 return false;
155 }
156 }
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800157 return DoWriteElf(file, oat_writer, key_value_store, verify);
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000158 }
159
160 bool WriteElf(File* file,
161 ScopedFd&& zip_fd,
162 const char* location,
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800163 SafeMap<std::string, std::string>& key_value_store,
164 bool verify) {
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000165 TimingLogger timings("WriteElf", false, false);
166 OatWriter oat_writer(/*compiling_boot_image*/false, &timings);
167 if (!oat_writer.AddZippedDexFilesSource(std::move(zip_fd), location)) {
168 return false;
169 }
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800170 return DoWriteElf(file, oat_writer, key_value_store, verify);
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000171 }
172
173 bool DoWriteElf(File* file,
174 OatWriter& oat_writer,
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800175 SafeMap<std::string, std::string>& key_value_store,
176 bool verify) {
Vladimir Marko10c13562015-11-25 14:33:36 +0000177 std::unique_ptr<ElfWriter> elf_writer = CreateElfWriterQuick(
178 compiler_driver_->GetInstructionSet(),
179 &compiler_driver_->GetCompilerOptions(),
180 file);
Vladimir Marko10c13562015-11-25 14:33:36 +0000181 elf_writer->Start();
Vladimir Marko10c13562015-11-25 14:33:36 +0000182 OutputStream* rodata = elf_writer->StartRoData();
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000183 std::unique_ptr<MemMap> opened_dex_files_map;
184 std::vector<std::unique_ptr<const DexFile>> opened_dex_files;
185 if (!oat_writer.WriteAndOpenDexFiles(rodata,
186 file,
187 compiler_driver_->GetInstructionSet(),
188 compiler_driver_->GetInstructionSetFeatures(),
189 &key_value_store,
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800190 verify,
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000191 &opened_dex_files_map,
192 &opened_dex_files)) {
193 return false;
194 }
195 Runtime* runtime = Runtime::Current();
196 ClassLinker* const class_linker = runtime->GetClassLinker();
197 std::vector<const DexFile*> dex_files;
198 for (const std::unique_ptr<const DexFile>& dex_file : opened_dex_files) {
199 dex_files.push_back(dex_file.get());
200 ScopedObjectAccess soa(Thread::Current());
201 class_linker->RegisterDexFile(*dex_file, runtime->GetLinearAlloc());
202 }
203 oat_writer.PrepareLayout(compiler_driver_.get(), nullptr, dex_files);
Vladimir Marko10c13562015-11-25 14:33:36 +0000204 if (!oat_writer.WriteRodata(rodata)) {
205 return false;
206 }
207 elf_writer->EndRoData(rodata);
208
209 OutputStream* text = elf_writer->StartText();
210 if (!oat_writer.WriteCode(text)) {
211 return false;
212 }
213 elf_writer->EndText(text);
214
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000215 if (!oat_writer.WriteHeader(elf_writer->GetStream(), 42U, 4096U, 0)) {
216 return false;
217 }
218
Vladimir Marko45724f92016-02-17 17:46:10 +0000219 elf_writer->SetBssSize(oat_writer.GetBssSize());
Vladimir Marko10c13562015-11-25 14:33:36 +0000220 elf_writer->WriteDynamicSection();
Vladimir Marko49b0f452015-12-10 13:49:19 +0000221 elf_writer->WriteDebugInfo(oat_writer.GetMethodDebugInfo());
222 elf_writer->WritePatchLocations(oat_writer.GetAbsolutePatchLocations());
Vladimir Marko10c13562015-11-25 14:33:36 +0000223
224 return elf_writer->End();
Mathieu Chartier07ddb6f2015-11-05 11:16:34 -0800225 }
226
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800227 void TestDexFileInput(bool verify);
228 void TestZipFileInput(bool verify);
229
Mathieu Chartier07ddb6f2015-11-05 11:16:34 -0800230 std::unique_ptr<const InstructionSetFeatures> insn_features_;
231 std::unique_ptr<QuickCompilerCallbacks> callbacks_;
Logan Chieneeb7edf2012-03-09 20:38:39 +0800232};
Brian Carlstrome24fa612011-09-29 00:53:55 -0700233
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000234class ZipBuilder {
235 public:
236 explicit ZipBuilder(File* zip_file) : zip_file_(zip_file) { }
237
238 bool AddFile(const char* location, const void* data, size_t size) {
239 off_t offset = lseek(zip_file_->Fd(), 0, SEEK_CUR);
240 if (offset == static_cast<off_t>(-1)) {
241 return false;
242 }
243
244 ZipFileHeader file_header;
245 file_header.crc32 = crc32(0u, reinterpret_cast<const Bytef*>(data), size);
246 file_header.compressed_size = size;
247 file_header.uncompressed_size = size;
248 file_header.filename_length = strlen(location);
249
250 if (!zip_file_->WriteFully(&file_header, sizeof(file_header)) ||
251 !zip_file_->WriteFully(location, file_header.filename_length) ||
252 !zip_file_->WriteFully(data, size)) {
253 return false;
254 }
255
256 CentralDirectoryFileHeader cdfh;
257 cdfh.crc32 = file_header.crc32;
258 cdfh.compressed_size = size;
259 cdfh.uncompressed_size = size;
260 cdfh.filename_length = file_header.filename_length;
261 cdfh.relative_offset_of_local_file_header = offset;
262 file_data_.push_back(FileData { cdfh, location });
263 return true;
264 }
265
266 bool Finish() {
267 off_t offset = lseek(zip_file_->Fd(), 0, SEEK_CUR);
268 if (offset == static_cast<off_t>(-1)) {
269 return false;
270 }
271
272 size_t central_directory_size = 0u;
273 for (const FileData& file_data : file_data_) {
274 if (!zip_file_->WriteFully(&file_data.cdfh, sizeof(file_data.cdfh)) ||
275 !zip_file_->WriteFully(file_data.location, file_data.cdfh.filename_length)) {
276 return false;
277 }
278 central_directory_size += sizeof(file_data.cdfh) + file_data.cdfh.filename_length;
279 }
280 EndOfCentralDirectoryRecord eocd_record;
281 eocd_record.number_of_central_directory_records_on_this_disk = file_data_.size();
282 eocd_record.total_number_of_central_directory_records = file_data_.size();
283 eocd_record.size_of_central_directory = central_directory_size;
284 eocd_record.offset_of_start_of_central_directory = offset;
285 return
286 zip_file_->WriteFully(&eocd_record, sizeof(eocd_record)) &&
287 zip_file_->Flush() == 0;
288 }
289
290 private:
291 struct PACKED(1) ZipFileHeader {
292 uint32_t signature = 0x04034b50;
293 uint16_t version_needed_to_extract = 10;
294 uint16_t general_purpose_bit_flag = 0;
295 uint16_t compression_method = 0; // 0 = store only.
296 uint16_t file_last_modification_time = 0u;
297 uint16_t file_last_modification_date = 0u;
298 uint32_t crc32;
299 uint32_t compressed_size;
300 uint32_t uncompressed_size;
301 uint16_t filename_length;
302 uint16_t extra_field_length = 0u; // No extra fields.
303 };
304
305 struct PACKED(1) CentralDirectoryFileHeader {
306 uint32_t signature = 0x02014b50;
307 uint16_t version_made_by = 10;
308 uint16_t version_needed_to_extract = 10;
309 uint16_t general_purpose_bit_flag = 0;
310 uint16_t compression_method = 0; // 0 = store only.
311 uint16_t file_last_modification_time = 0u;
312 uint16_t file_last_modification_date = 0u;
313 uint32_t crc32;
314 uint32_t compressed_size;
315 uint32_t uncompressed_size;
316 uint16_t filename_length;
317 uint16_t extra_field_length = 0u; // No extra fields.
318 uint16_t file_comment_length = 0u; // No file comment.
319 uint16_t disk_number_where_file_starts = 0u;
320 uint16_t internal_file_attributes = 0u;
321 uint32_t external_file_attributes = 0u;
322 uint32_t relative_offset_of_local_file_header;
323 };
324
325 struct PACKED(1) EndOfCentralDirectoryRecord {
326 uint32_t signature = 0x06054b50;
327 uint16_t number_of_this_disk = 0u;
328 uint16_t disk_where_central_directory_starts = 0u;
329 uint16_t number_of_central_directory_records_on_this_disk;
330 uint16_t total_number_of_central_directory_records;
331 uint32_t size_of_central_directory;
332 uint32_t offset_of_start_of_central_directory;
333 uint16_t comment_length = 0u; // No file comment.
334 };
335
336 struct FileData {
337 CentralDirectoryFileHeader cdfh;
338 const char* location;
339 };
340
341 File* zip_file_;
342 std::vector<FileData> file_data_;
343};
344
Brian Carlstrome24fa612011-09-29 00:53:55 -0700345TEST_F(OatTest, WriteRead) {
Brian Carlstroma1ce1fe2014-02-24 23:23:58 -0800346 TimingLogger timings("OatTest::WriteRead", false, false);
Jesse Wilson254db0f2011-11-16 16:44:11 -0500347 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700348
Ian Rogersef7d42f2014-01-06 12:55:46 -0800349 // TODO: make selectable.
Elliott Hughes956af0f2014-12-11 14:34:28 -0800350 Compiler::Kind compiler_kind = Compiler::kQuick;
Ian Rogersa073c672013-07-30 17:43:55 -0700351 InstructionSet insn_set = kIsTargetBuild ? kThumb2 : kX86;
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700352 std::string error_msg;
Mathieu Chartier07ddb6f2015-11-05 11:16:34 -0800353 SetupCompiler(compiler_kind, insn_set, std::vector<std::string>(), /*out*/ &error_msg);
354
Ian Rogersd4c4d952014-10-16 20:31:53 -0700355 jobject class_loader = nullptr;
Brian Carlstromba150c32013-08-27 17:31:03 -0700356 if (kCompile) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800357 TimingLogger timings2("OatTest::WriteRead", false, false);
Vladimir Markod1eaf0d2015-10-29 12:18:29 +0000358 compiler_driver_->SetDexFilesForOatFile(class_linker->GetBootClassPath());
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800359 compiler_driver_->CompileAll(class_loader, class_linker->GetBootClassPath(), &timings2);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700360 }
361
362 ScratchFile tmp;
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700363 SafeMap<std::string, std::string> key_value_store;
364 key_value_store.Put(OatHeader::kImageLocationKey, "lue.art");
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800365 bool success = WriteElf(tmp.GetFile(), class_linker->GetBootClassPath(), key_value_store, false);
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700366 ASSERT_TRUE(success);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700367
Brian Carlstromba150c32013-08-27 17:31:03 -0700368 if (kCompile) { // OatWriter strips the code, regenerate to compare
Ian Rogers3d504072014-03-01 09:16:49 -0800369 compiler_driver_->CompileAll(class_loader, class_linker->GetBootClassPath(), &timings);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700370 }
Ian Rogersd4c4d952014-10-16 20:31:53 -0700371 std::unique_ptr<OatFile> oat_file(OatFile::Open(tmp.GetFilename(), tmp.GetFilename(), nullptr,
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700372 nullptr, false, nullptr, &error_msg));
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700373 ASSERT_TRUE(oat_file.get() != nullptr) << error_msg;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700374 const OatHeader& oat_header = oat_file->GetOatHeader();
Brian Carlstromf852fb22012-10-19 11:01:58 -0700375 ASSERT_TRUE(oat_header.IsValid());
Yi Kong9515b512015-11-11 14:36:07 +0000376 ASSERT_EQ(class_linker->GetBootClassPath().size(), oat_header.GetDexFileCount()); // core
Brian Carlstrom28db0122012-10-18 16:20:41 -0700377 ASSERT_EQ(42U, oat_header.GetImageFileLocationOatChecksum());
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800378 ASSERT_EQ(4096U, oat_header.GetImageFileLocationOatDataBegin());
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700379 ASSERT_EQ("lue.art", std::string(oat_header.GetStoreValueByKey(OatHeader::kImageLocationKey)));
Brian Carlstrome24fa612011-09-29 00:53:55 -0700380
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800381 ASSERT_TRUE(java_lang_dex_file_ != nullptr);
382 const DexFile& dex_file = *java_lang_dex_file_;
383 uint32_t dex_file_checksum = dex_file.GetLocationChecksum();
384 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation().c_str(),
Brian Carlstrom756ee4e2013-10-03 15:46:12 -0700385 &dex_file_checksum);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700386 ASSERT_TRUE(oat_dex_file != nullptr);
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800387 CHECK_EQ(dex_file.GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
Vladimir Markof4da6752014-08-01 19:04:18 +0100388 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartiere401d142015-04-22 13:56:20 -0700389 auto pointer_size = class_linker->GetImagePointerSize();
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800390 for (size_t i = 0; i < dex_file.NumClassDefs(); i++) {
391 const DexFile::ClassDef& class_def = dex_file.GetClassDef(i);
392 const uint8_t* class_data = dex_file.GetClassData(class_def);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700393
Brian Carlstromba150c32013-08-27 17:31:03 -0700394 size_t num_virtual_methods = 0;
Ian Rogersd4c4d952014-10-16 20:31:53 -0700395 if (class_data != nullptr) {
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800396 ClassDataItemIterator it(dex_file, class_data);
Ian Rogers0571d352011-11-03 19:51:38 -0700397 num_virtual_methods = it.NumVirtualMethods();
398 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700399
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800400 const char* descriptor = dex_file.GetClassDescriptor(class_def);
Mathieu Chartier9865bde2015-12-21 09:58:16 -0800401 mirror::Class* klass = class_linker->FindClass(soa.Self(),
402 descriptor,
403 ScopedNullHandle<mirror::ClassLoader>());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700404
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100405 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(i);
406 CHECK_EQ(mirror::Class::Status::kStatusNotReady, oat_class.GetStatus()) << descriptor;
Brian Carlstromba150c32013-08-27 17:31:03 -0700407 CHECK_EQ(kCompile ? OatClassType::kOatClassAllCompiled : OatClassType::kOatClassNoneCompiled,
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100408 oat_class.GetType()) << descriptor;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700409
410 size_t method_index = 0;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700411 for (auto& m : klass->GetDirectMethods(pointer_size)) {
412 CheckMethod(&m, oat_class.GetOatMethod(method_index), dex_file);
413 ++method_index;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700414 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700415 size_t visited_virtuals = 0;
Alex Lighte64300b2015-12-15 15:02:47 -0800416 // TODO We should also check copied methods in this test.
417 for (auto& m : klass->GetDeclaredVirtualMethods(pointer_size)) {
Alex Lightfcea56f2016-02-17 11:59:05 -0800418 if (!klass->IsInterface()) {
419 EXPECT_FALSE(m.MightBeCopied());
420 }
Alex Lighte64300b2015-12-15 15:02:47 -0800421 CheckMethod(&m, oat_class.GetOatMethod(method_index), dex_file);
422 ++method_index;
423 ++visited_virtuals;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700424 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700425 EXPECT_EQ(visited_virtuals, num_virtual_methods);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700426 }
427}
428
Brian Carlstrom341df942012-06-27 12:29:22 -0700429TEST_F(OatTest, OatHeaderSizeCheck) {
430 // If this test is failing and you have to update these constants,
431 // it is time to update OatHeader::kOatVersion
Elliott Hughes956af0f2014-12-11 14:34:28 -0800432 EXPECT_EQ(72U, sizeof(OatHeader));
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800433 EXPECT_EQ(4U, sizeof(OatMethodOffsets));
434 EXPECT_EQ(28U, sizeof(OatQuickMethodHeader));
Roland Levillain7c1559a2015-12-15 10:55:36 +0000435 EXPECT_EQ(132 * GetInstructionSetPointerSize(kRuntimeISA), sizeof(QuickEntryPoints));
Brian Carlstrom341df942012-06-27 12:29:22 -0700436}
437
Brian Carlstromf852fb22012-10-19 11:01:58 -0700438TEST_F(OatTest, OatHeaderIsValid) {
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700439 InstructionSet insn_set = kX86;
440 std::string error_msg;
441 std::unique_ptr<const InstructionSetFeatures> insn_features(
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700442 InstructionSetFeatures::FromVariant(insn_set, "default", &error_msg));
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700443 ASSERT_TRUE(insn_features.get() != nullptr) << error_msg;
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700444 std::unique_ptr<OatHeader> oat_header(OatHeader::Create(insn_set,
445 insn_features.get(),
Vladimir Marko49b0f452015-12-10 13:49:19 +0000446 0u,
Andreas Gampe928f72b2014-09-09 19:53:48 -0700447 nullptr));
448 ASSERT_NE(oat_header.get(), nullptr);
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700449 ASSERT_TRUE(oat_header->IsValid());
Brian Carlstromf852fb22012-10-19 11:01:58 -0700450
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700451 char* magic = const_cast<char*>(oat_header->GetMagic());
Brian Carlstromf852fb22012-10-19 11:01:58 -0700452 strcpy(magic, ""); // bad magic
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700453 ASSERT_FALSE(oat_header->IsValid());
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700454 strcpy(magic, "oat\n000"); // bad version
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700455 ASSERT_FALSE(oat_header->IsValid());
Brian Carlstromf852fb22012-10-19 11:01:58 -0700456}
457
Mathieu Chartier07ddb6f2015-11-05 11:16:34 -0800458TEST_F(OatTest, EmptyTextSection) {
459 TimingLogger timings("OatTest::EmptyTextSection", false, false);
460
461 // TODO: make selectable.
462 Compiler::Kind compiler_kind = Compiler::kQuick;
463 InstructionSet insn_set = kRuntimeISA;
464 if (insn_set == kArm) insn_set = kThumb2;
465 std::string error_msg;
466 std::vector<std::string> compiler_options;
467 compiler_options.push_back("--compiler-filter=verify-at-runtime");
468 SetupCompiler(compiler_kind, insn_set, compiler_options, /*out*/ &error_msg);
469
470 jobject class_loader;
471 {
472 ScopedObjectAccess soa(Thread::Current());
473 class_loader = LoadDex("Main");
474 }
475 ASSERT_TRUE(class_loader != nullptr);
476 std::vector<const DexFile*> dex_files = GetDexFiles(class_loader);
477 ASSERT_TRUE(!dex_files.empty());
478
479 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
480 for (const DexFile* dex_file : dex_files) {
481 ScopedObjectAccess soa(Thread::Current());
482 class_linker->RegisterDexFile(
483 *dex_file,
484 class_linker->GetOrCreateAllocatorForClassLoader(
485 soa.Decode<mirror::ClassLoader*>(class_loader)));
486 }
487 compiler_driver_->SetDexFilesForOatFile(dex_files);
488 compiler_driver_->CompileAll(class_loader, dex_files, &timings);
489
490 ScratchFile tmp;
491 SafeMap<std::string, std::string> key_value_store;
492 key_value_store.Put(OatHeader::kImageLocationKey, "test.art");
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800493 bool success = WriteElf(tmp.GetFile(), dex_files, key_value_store, false);
Mathieu Chartier07ddb6f2015-11-05 11:16:34 -0800494 ASSERT_TRUE(success);
495
496 std::unique_ptr<OatFile> oat_file(OatFile::Open(tmp.GetFilename(),
497 tmp.GetFilename(),
498 nullptr,
499 nullptr,
500 false,
501 nullptr,
502 &error_msg));
503 ASSERT_TRUE(oat_file != nullptr);
504 EXPECT_LT(static_cast<size_t>(oat_file->Size()), static_cast<size_t>(tmp.GetFile()->GetLength()));
505}
506
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800507static void MaybeModifyDexFileToFail(bool verify, std::unique_ptr<const DexFile>& data) {
508 // If in verify mode (= fail the verifier mode), make sure we fail early. We'll fail already
509 // because of the missing map, but that may lead to out of bounds reads.
510 if (verify) {
511 const_cast<DexFile::Header*>(&data->GetHeader())->checksum_++;
512 }
513}
514
515void OatTest::TestDexFileInput(bool verify) {
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000516 TimingLogger timings("OatTest::DexFileInput", false, false);
517
518 std::vector<const char*> input_filenames;
519
520 ScratchFile dex_file1;
521 TestDexFileBuilder builder1;
522 builder1.AddField("Lsome.TestClass;", "int", "someField");
523 builder1.AddMethod("Lsome.TestClass;", "()I", "foo");
524 std::unique_ptr<const DexFile> dex_file1_data = builder1.Build(dex_file1.GetFilename());
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800525
526 MaybeModifyDexFileToFail(verify, dex_file1_data);
527
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000528 bool success = dex_file1.GetFile()->WriteFully(&dex_file1_data->GetHeader(),
529 dex_file1_data->GetHeader().file_size_);
530 ASSERT_TRUE(success);
531 success = dex_file1.GetFile()->Flush() == 0;
532 ASSERT_TRUE(success);
533 input_filenames.push_back(dex_file1.GetFilename().c_str());
534
535 ScratchFile dex_file2;
536 TestDexFileBuilder builder2;
537 builder2.AddField("Land.AnotherTestClass;", "boolean", "someOtherField");
538 builder2.AddMethod("Land.AnotherTestClass;", "()J", "bar");
539 std::unique_ptr<const DexFile> dex_file2_data = builder2.Build(dex_file2.GetFilename());
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800540
541 MaybeModifyDexFileToFail(verify, dex_file2_data);
542
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000543 success = dex_file2.GetFile()->WriteFully(&dex_file2_data->GetHeader(),
544 dex_file2_data->GetHeader().file_size_);
545 ASSERT_TRUE(success);
546 success = dex_file2.GetFile()->Flush() == 0;
547 ASSERT_TRUE(success);
548 input_filenames.push_back(dex_file2.GetFilename().c_str());
549
550 ScratchFile oat_file;
551 SafeMap<std::string, std::string> key_value_store;
552 key_value_store.Put(OatHeader::kImageLocationKey, "test.art");
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800553 success = WriteElf(oat_file.GetFile(), input_filenames, key_value_store, verify);
554
555 // In verify mode, we expect failure.
556 if (verify) {
557 ASSERT_FALSE(success);
558 return;
559 }
560
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000561 ASSERT_TRUE(success);
562
563 std::string error_msg;
564 std::unique_ptr<OatFile> opened_oat_file(OatFile::Open(oat_file.GetFilename(),
565 oat_file.GetFilename(),
566 nullptr,
567 nullptr,
568 false,
569 nullptr,
570 &error_msg));
571 ASSERT_TRUE(opened_oat_file != nullptr);
572 ASSERT_EQ(2u, opened_oat_file->GetOatDexFiles().size());
573 std::unique_ptr<const DexFile> opened_dex_file1 =
574 opened_oat_file->GetOatDexFiles()[0]->OpenDexFile(&error_msg);
575 std::unique_ptr<const DexFile> opened_dex_file2 =
576 opened_oat_file->GetOatDexFiles()[1]->OpenDexFile(&error_msg);
577
578 ASSERT_EQ(dex_file1_data->GetHeader().file_size_, opened_dex_file1->GetHeader().file_size_);
579 ASSERT_EQ(0, memcmp(&dex_file1_data->GetHeader(),
580 &opened_dex_file1->GetHeader(),
581 dex_file1_data->GetHeader().file_size_));
582 ASSERT_EQ(dex_file1_data->GetLocation(), opened_dex_file1->GetLocation());
583
584 ASSERT_EQ(dex_file2_data->GetHeader().file_size_, opened_dex_file2->GetHeader().file_size_);
585 ASSERT_EQ(0, memcmp(&dex_file2_data->GetHeader(),
586 &opened_dex_file2->GetHeader(),
587 dex_file2_data->GetHeader().file_size_));
588 ASSERT_EQ(dex_file2_data->GetLocation(), opened_dex_file2->GetLocation());
589}
590
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800591TEST_F(OatTest, DexFileInputCheckOutput) {
592 TestDexFileInput(false);
593}
594
595TEST_F(OatTest, DexFileInputCheckVerifier) {
596 TestDexFileInput(true);
597}
598
599void OatTest::TestZipFileInput(bool verify) {
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000600 TimingLogger timings("OatTest::DexFileInput", false, false);
601
602 ScratchFile zip_file;
603 ZipBuilder zip_builder(zip_file.GetFile());
604
605 ScratchFile dex_file1;
606 TestDexFileBuilder builder1;
607 builder1.AddField("Lsome.TestClass;", "long", "someField");
608 builder1.AddMethod("Lsome.TestClass;", "()D", "foo");
609 std::unique_ptr<const DexFile> dex_file1_data = builder1.Build(dex_file1.GetFilename());
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800610
611 MaybeModifyDexFileToFail(verify, dex_file1_data);
612
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000613 bool success = dex_file1.GetFile()->WriteFully(&dex_file1_data->GetHeader(),
614 dex_file1_data->GetHeader().file_size_);
615 ASSERT_TRUE(success);
616 success = dex_file1.GetFile()->Flush() == 0;
617 ASSERT_TRUE(success);
618 success = zip_builder.AddFile("classes.dex",
619 &dex_file1_data->GetHeader(),
620 dex_file1_data->GetHeader().file_size_);
621 ASSERT_TRUE(success);
622
623 ScratchFile dex_file2;
624 TestDexFileBuilder builder2;
625 builder2.AddField("Land.AnotherTestClass;", "boolean", "someOtherField");
626 builder2.AddMethod("Land.AnotherTestClass;", "()J", "bar");
627 std::unique_ptr<const DexFile> dex_file2_data = builder2.Build(dex_file2.GetFilename());
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800628
629 MaybeModifyDexFileToFail(verify, dex_file2_data);
630
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000631 success = dex_file2.GetFile()->WriteFully(&dex_file2_data->GetHeader(),
632 dex_file2_data->GetHeader().file_size_);
633 ASSERT_TRUE(success);
634 success = dex_file2.GetFile()->Flush() == 0;
635 ASSERT_TRUE(success);
636 success = zip_builder.AddFile("classes2.dex",
637 &dex_file2_data->GetHeader(),
638 dex_file2_data->GetHeader().file_size_);
639 ASSERT_TRUE(success);
640
641 success = zip_builder.Finish();
642 ASSERT_TRUE(success) << strerror(errno);
643
644 SafeMap<std::string, std::string> key_value_store;
645 key_value_store.Put(OatHeader::kImageLocationKey, "test.art");
646 {
647 // Test using the AddDexFileSource() interface with the zip file.
648 std::vector<const char*> input_filenames { zip_file.GetFilename().c_str() }; // NOLINT [readability/braces] [4]
649
650 ScratchFile oat_file;
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800651 success = WriteElf(oat_file.GetFile(), input_filenames, key_value_store, verify);
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000652
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800653 if (verify) {
654 ASSERT_FALSE(success);
655 } else {
656 ASSERT_TRUE(success);
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000657
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800658 std::string error_msg;
659 std::unique_ptr<OatFile> opened_oat_file(OatFile::Open(oat_file.GetFilename(),
660 oat_file.GetFilename(),
661 nullptr,
662 nullptr,
663 false,
664 nullptr,
665 &error_msg));
666 ASSERT_TRUE(opened_oat_file != nullptr);
667 ASSERT_EQ(2u, opened_oat_file->GetOatDexFiles().size());
668 std::unique_ptr<const DexFile> opened_dex_file1 =
669 opened_oat_file->GetOatDexFiles()[0]->OpenDexFile(&error_msg);
670 std::unique_ptr<const DexFile> opened_dex_file2 =
671 opened_oat_file->GetOatDexFiles()[1]->OpenDexFile(&error_msg);
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000672
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800673 ASSERT_EQ(dex_file1_data->GetHeader().file_size_, opened_dex_file1->GetHeader().file_size_);
674 ASSERT_EQ(0, memcmp(&dex_file1_data->GetHeader(),
675 &opened_dex_file1->GetHeader(),
676 dex_file1_data->GetHeader().file_size_));
677 ASSERT_EQ(DexFile::GetMultiDexLocation(0, zip_file.GetFilename().c_str()),
678 opened_dex_file1->GetLocation());
679
680 ASSERT_EQ(dex_file2_data->GetHeader().file_size_, opened_dex_file2->GetHeader().file_size_);
681 ASSERT_EQ(0, memcmp(&dex_file2_data->GetHeader(),
682 &opened_dex_file2->GetHeader(),
683 dex_file2_data->GetHeader().file_size_));
684 ASSERT_EQ(DexFile::GetMultiDexLocation(1, zip_file.GetFilename().c_str()),
685 opened_dex_file2->GetLocation());
686 }
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000687 }
688
689 {
690 // Test using the AddZipDexFileSource() interface with the zip file handle.
691 ScopedFd zip_fd(dup(zip_file.GetFd()));
692 ASSERT_NE(-1, zip_fd.get());
693
694 ScratchFile oat_file;
695 success = WriteElf(oat_file.GetFile(),
696 std::move(zip_fd),
697 zip_file.GetFilename().c_str(),
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800698 key_value_store,
699 verify);
700 if (verify) {
701 ASSERT_FALSE(success);
702 } else {
703 ASSERT_TRUE(success);
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000704
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800705 std::string error_msg;
706 std::unique_ptr<OatFile> opened_oat_file(OatFile::Open(oat_file.GetFilename(),
707 oat_file.GetFilename(),
708 nullptr,
709 nullptr,
710 false,
711 nullptr,
712 &error_msg));
713 ASSERT_TRUE(opened_oat_file != nullptr);
714 ASSERT_EQ(2u, opened_oat_file->GetOatDexFiles().size());
715 std::unique_ptr<const DexFile> opened_dex_file1 =
716 opened_oat_file->GetOatDexFiles()[0]->OpenDexFile(&error_msg);
717 std::unique_ptr<const DexFile> opened_dex_file2 =
718 opened_oat_file->GetOatDexFiles()[1]->OpenDexFile(&error_msg);
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000719
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800720 ASSERT_EQ(dex_file1_data->GetHeader().file_size_, opened_dex_file1->GetHeader().file_size_);
721 ASSERT_EQ(0, memcmp(&dex_file1_data->GetHeader(),
722 &opened_dex_file1->GetHeader(),
723 dex_file1_data->GetHeader().file_size_));
724 ASSERT_EQ(DexFile::GetMultiDexLocation(0, zip_file.GetFilename().c_str()),
725 opened_dex_file1->GetLocation());
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000726
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800727 ASSERT_EQ(dex_file2_data->GetHeader().file_size_, opened_dex_file2->GetHeader().file_size_);
728 ASSERT_EQ(0, memcmp(&dex_file2_data->GetHeader(),
729 &opened_dex_file2->GetHeader(),
730 dex_file2_data->GetHeader().file_size_));
731 ASSERT_EQ(DexFile::GetMultiDexLocation(1, zip_file.GetFilename().c_str()),
732 opened_dex_file2->GetLocation());
733 }
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000734 }
735}
736
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800737TEST_F(OatTest, ZipFileInputCheckOutput) {
738 TestZipFileInput(false);
739}
740
741TEST_F(OatTest, ZipFileInputCheckVerifier) {
742 TestZipFileInput(true);
743}
744
Brian Carlstrome24fa612011-09-29 00:53:55 -0700745} // namespace art