blob: 4b48107848aae28961efd519aadef0567a46320e [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 Marko944da602016-02-19 12:27:55 +000034#include "linker/multi_oat_relative_patcher.h"
Vladimir Marko131980f2015-12-03 18:29:23 +000035#include "linker/vector_output_stream.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080036#include "mirror/class-inl.h"
Ian Rogerse63db272014-07-15 15:36:11 -070037#include "mirror/object-inl.h"
David Srbecky4fda4eb2016-02-05 13:34:46 +000038#include "mirror/object_array-inl.h"
Vladimir Marko7624d252014-05-02 14:40:15 +010039#include "oat_file-inl.h"
Ian Rogerse63db272014-07-15 15:36:11 -070040#include "oat_writer.h"
41#include "scoped_thread_state_change.h"
Vladimir Marko9bdf1082016-01-21 12:15:52 +000042#include "utils/test_dex_file_builder.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070043
Brian Carlstrome24fa612011-09-29 00:53:55 -070044namespace art {
45
Mathieu Chartier07ddb6f2015-11-05 11:16:34 -080046NO_RETURN static void Usage(const char* fmt, ...) {
47 va_list ap;
48 va_start(ap, fmt);
49 std::string error;
50 StringAppendV(&error, fmt, ap);
51 LOG(FATAL) << error;
52 va_end(ap);
53 UNREACHABLE();
54}
55
Brian Carlstroma1ce1fe2014-02-24 23:23:58 -080056class OatTest : public CommonCompilerTest {
Logan Chieneeb7edf2012-03-09 20:38:39 +080057 protected:
Brian Carlstromba150c32013-08-27 17:31:03 -070058 static const bool kCompile = false; // DISABLED_ due to the time to compile libcore
59
Mathieu Chartiere401d142015-04-22 13:56:20 -070060 void CheckMethod(ArtMethod* method,
Logan Chieneeb7edf2012-03-09 20:38:39 +080061 const OatFile::OatMethod& oat_method,
Richard Uhlerfbef44d2014-12-23 09:48:51 -080062 const DexFile& dex_file)
Mathieu Chartier90443472015-07-16 20:32:27 -070063 SHARED_REQUIRES(Locks::mutator_lock_) {
Logan Chieneeb7edf2012-03-09 20:38:39 +080064 const CompiledMethod* compiled_method =
Richard Uhlerfbef44d2014-12-23 09:48:51 -080065 compiler_driver_->GetCompiledMethod(MethodReference(&dex_file,
Brian Carlstrom51c24672013-07-11 16:00:56 -070066 method->GetDexMethodIndex()));
Logan Chieneeb7edf2012-03-09 20:38:39 +080067
Ian Rogersd4c4d952014-10-16 20:31:53 -070068 if (compiled_method == nullptr) {
69 EXPECT_TRUE(oat_method.GetQuickCode() == nullptr) << PrettyMethod(method) << " "
70 << oat_method.GetQuickCode();
Ian Rogersef7d42f2014-01-06 12:55:46 -080071 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), 0U);
Logan Chieneeb7edf2012-03-09 20:38:39 +080072 EXPECT_EQ(oat_method.GetCoreSpillMask(), 0U);
73 EXPECT_EQ(oat_method.GetFpSpillMask(), 0U);
74 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -080075 const void* quick_oat_code = oat_method.GetQuickCode();
Elliott Hughes956af0f2014-12-11 14:34:28 -080076 EXPECT_TRUE(quick_oat_code != nullptr) << PrettyMethod(method);
77 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), compiled_method->GetFrameSizeInBytes());
78 EXPECT_EQ(oat_method.GetCoreSpillMask(), compiled_method->GetCoreSpillMask());
79 EXPECT_EQ(oat_method.GetFpSpillMask(), compiled_method->GetFpSpillMask());
80 uintptr_t oat_code_aligned = RoundDown(reinterpret_cast<uintptr_t>(quick_oat_code), 2);
81 quick_oat_code = reinterpret_cast<const void*>(oat_code_aligned);
Vladimir Marko35831e82015-09-11 11:59:18 +010082 ArrayRef<const uint8_t> quick_code = compiled_method->GetQuickCode();
83 EXPECT_FALSE(quick_code.empty());
84 size_t code_size = quick_code.size() * sizeof(quick_code[0]);
Elliott Hughes956af0f2014-12-11 14:34:28 -080085 EXPECT_EQ(0, memcmp(quick_oat_code, &quick_code[0], code_size))
86 << PrettyMethod(method) << " " << code_size;
87 CHECK_EQ(0, memcmp(quick_oat_code, &quick_code[0], code_size));
Logan Chieneeb7edf2012-03-09 20:38:39 +080088 }
89 }
Mathieu Chartier07ddb6f2015-11-05 11:16:34 -080090
91 void SetupCompiler(Compiler::Kind compiler_kind,
92 InstructionSet insn_set,
93 const std::vector<std::string>& compiler_options,
94 /*out*/std::string* error_msg) {
95 ASSERT_TRUE(error_msg != nullptr);
96 insn_features_.reset(InstructionSetFeatures::FromVariant(insn_set, "default", error_msg));
97 ASSERT_TRUE(insn_features_ != nullptr) << error_msg;
98 compiler_options_.reset(new CompilerOptions);
99 for (const std::string& option : compiler_options) {
100 compiler_options_->ParseCompilerOption(option, Usage);
101 }
102 verification_results_.reset(new VerificationResults(compiler_options_.get()));
103 method_inliner_map_.reset(new DexFileToMethodInlinerMap);
104 callbacks_.reset(new QuickCompilerCallbacks(verification_results_.get(),
105 method_inliner_map_.get(),
106 CompilerCallbacks::CallbackMode::kCompileApp));
107 Runtime::Current()->SetCompilerCallbacks(callbacks_.get());
108 timer_.reset(new CumulativeLogger("Compilation times"));
109 compiler_driver_.reset(new CompilerDriver(compiler_options_.get(),
110 verification_results_.get(),
111 method_inliner_map_.get(),
112 compiler_kind,
113 insn_set,
114 insn_features_.get(),
Vladimir Marko944da602016-02-19 12:27:55 +0000115 /* boot_image */ false,
116 /* image_classes */ nullptr,
117 /* compiled_classes */ nullptr,
118 /* compiled_methods */ nullptr,
119 /* thread_count */ 2,
120 /* dump_stats */ true,
121 /* dump_passes */ true,
Mathieu Chartier07ddb6f2015-11-05 11:16:34 -0800122 timer_.get(),
Vladimir Marko944da602016-02-19 12:27:55 +0000123 /* swap_fd */ -1,
124 /* profile_compilation_info */ 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(),
David Srbecky5d811202016-03-08 13:21:22 +0000179 compiler_driver_->GetInstructionSetFeatures(),
Vladimir Marko10c13562015-11-25 14:33:36 +0000180 &compiler_driver_->GetCompilerOptions(),
181 file);
Vladimir Marko10c13562015-11-25 14:33:36 +0000182 elf_writer->Start();
Vladimir Marko10c13562015-11-25 14:33:36 +0000183 OutputStream* rodata = elf_writer->StartRoData();
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000184 std::unique_ptr<MemMap> opened_dex_files_map;
185 std::vector<std::unique_ptr<const DexFile>> opened_dex_files;
186 if (!oat_writer.WriteAndOpenDexFiles(rodata,
187 file,
188 compiler_driver_->GetInstructionSet(),
189 compiler_driver_->GetInstructionSetFeatures(),
190 &key_value_store,
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800191 verify,
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000192 &opened_dex_files_map,
193 &opened_dex_files)) {
194 return false;
195 }
196 Runtime* runtime = Runtime::Current();
197 ClassLinker* const class_linker = runtime->GetClassLinker();
198 std::vector<const DexFile*> dex_files;
199 for (const std::unique_ptr<const DexFile>& dex_file : opened_dex_files) {
200 dex_files.push_back(dex_file.get());
201 ScopedObjectAccess soa(Thread::Current());
202 class_linker->RegisterDexFile(*dex_file, runtime->GetLinearAlloc());
203 }
Vladimir Marko944da602016-02-19 12:27:55 +0000204 linker::MultiOatRelativePatcher patcher(compiler_driver_->GetInstructionSet(),
205 instruction_set_features_.get());
206 oat_writer.PrepareLayout(compiler_driver_.get(), nullptr, dex_files, &patcher);
207 size_t rodata_size = oat_writer.GetOatHeader().GetExecutableOffset();
208 size_t text_size = oat_writer.GetSize() - rodata_size;
209 elf_writer->SetLoadedSectionSizes(rodata_size, text_size, oat_writer.GetBssSize());
210
Vladimir Marko10c13562015-11-25 14:33:36 +0000211 if (!oat_writer.WriteRodata(rodata)) {
212 return false;
213 }
214 elf_writer->EndRoData(rodata);
215
216 OutputStream* text = elf_writer->StartText();
217 if (!oat_writer.WriteCode(text)) {
218 return false;
219 }
220 elf_writer->EndText(text);
221
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000222 if (!oat_writer.WriteHeader(elf_writer->GetStream(), 42U, 4096U, 0)) {
223 return false;
224 }
225
Vladimir Marko10c13562015-11-25 14:33:36 +0000226 elf_writer->WriteDynamicSection();
Vladimir Marko49b0f452015-12-10 13:49:19 +0000227 elf_writer->WriteDebugInfo(oat_writer.GetMethodDebugInfo());
228 elf_writer->WritePatchLocations(oat_writer.GetAbsolutePatchLocations());
Vladimir Marko10c13562015-11-25 14:33:36 +0000229
230 return elf_writer->End();
Mathieu Chartier07ddb6f2015-11-05 11:16:34 -0800231 }
232
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800233 void TestDexFileInput(bool verify, bool low_4gb);
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800234 void TestZipFileInput(bool verify);
235
Mathieu Chartier07ddb6f2015-11-05 11:16:34 -0800236 std::unique_ptr<const InstructionSetFeatures> insn_features_;
237 std::unique_ptr<QuickCompilerCallbacks> callbacks_;
Logan Chieneeb7edf2012-03-09 20:38:39 +0800238};
Brian Carlstrome24fa612011-09-29 00:53:55 -0700239
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000240class ZipBuilder {
241 public:
242 explicit ZipBuilder(File* zip_file) : zip_file_(zip_file) { }
243
244 bool AddFile(const char* location, const void* data, size_t size) {
245 off_t offset = lseek(zip_file_->Fd(), 0, SEEK_CUR);
246 if (offset == static_cast<off_t>(-1)) {
247 return false;
248 }
249
250 ZipFileHeader file_header;
251 file_header.crc32 = crc32(0u, reinterpret_cast<const Bytef*>(data), size);
252 file_header.compressed_size = size;
253 file_header.uncompressed_size = size;
254 file_header.filename_length = strlen(location);
255
256 if (!zip_file_->WriteFully(&file_header, sizeof(file_header)) ||
257 !zip_file_->WriteFully(location, file_header.filename_length) ||
258 !zip_file_->WriteFully(data, size)) {
259 return false;
260 }
261
262 CentralDirectoryFileHeader cdfh;
263 cdfh.crc32 = file_header.crc32;
264 cdfh.compressed_size = size;
265 cdfh.uncompressed_size = size;
266 cdfh.filename_length = file_header.filename_length;
267 cdfh.relative_offset_of_local_file_header = offset;
268 file_data_.push_back(FileData { cdfh, location });
269 return true;
270 }
271
272 bool Finish() {
273 off_t offset = lseek(zip_file_->Fd(), 0, SEEK_CUR);
274 if (offset == static_cast<off_t>(-1)) {
275 return false;
276 }
277
278 size_t central_directory_size = 0u;
279 for (const FileData& file_data : file_data_) {
280 if (!zip_file_->WriteFully(&file_data.cdfh, sizeof(file_data.cdfh)) ||
281 !zip_file_->WriteFully(file_data.location, file_data.cdfh.filename_length)) {
282 return false;
283 }
284 central_directory_size += sizeof(file_data.cdfh) + file_data.cdfh.filename_length;
285 }
286 EndOfCentralDirectoryRecord eocd_record;
287 eocd_record.number_of_central_directory_records_on_this_disk = file_data_.size();
288 eocd_record.total_number_of_central_directory_records = file_data_.size();
289 eocd_record.size_of_central_directory = central_directory_size;
290 eocd_record.offset_of_start_of_central_directory = offset;
291 return
292 zip_file_->WriteFully(&eocd_record, sizeof(eocd_record)) &&
293 zip_file_->Flush() == 0;
294 }
295
296 private:
297 struct PACKED(1) ZipFileHeader {
298 uint32_t signature = 0x04034b50;
299 uint16_t version_needed_to_extract = 10;
300 uint16_t general_purpose_bit_flag = 0;
301 uint16_t compression_method = 0; // 0 = store only.
302 uint16_t file_last_modification_time = 0u;
303 uint16_t file_last_modification_date = 0u;
304 uint32_t crc32;
305 uint32_t compressed_size;
306 uint32_t uncompressed_size;
307 uint16_t filename_length;
308 uint16_t extra_field_length = 0u; // No extra fields.
309 };
310
311 struct PACKED(1) CentralDirectoryFileHeader {
312 uint32_t signature = 0x02014b50;
313 uint16_t version_made_by = 10;
314 uint16_t version_needed_to_extract = 10;
315 uint16_t general_purpose_bit_flag = 0;
316 uint16_t compression_method = 0; // 0 = store only.
317 uint16_t file_last_modification_time = 0u;
318 uint16_t file_last_modification_date = 0u;
319 uint32_t crc32;
320 uint32_t compressed_size;
321 uint32_t uncompressed_size;
322 uint16_t filename_length;
323 uint16_t extra_field_length = 0u; // No extra fields.
324 uint16_t file_comment_length = 0u; // No file comment.
325 uint16_t disk_number_where_file_starts = 0u;
326 uint16_t internal_file_attributes = 0u;
327 uint32_t external_file_attributes = 0u;
328 uint32_t relative_offset_of_local_file_header;
329 };
330
331 struct PACKED(1) EndOfCentralDirectoryRecord {
332 uint32_t signature = 0x06054b50;
333 uint16_t number_of_this_disk = 0u;
334 uint16_t disk_where_central_directory_starts = 0u;
335 uint16_t number_of_central_directory_records_on_this_disk;
336 uint16_t total_number_of_central_directory_records;
337 uint32_t size_of_central_directory;
338 uint32_t offset_of_start_of_central_directory;
339 uint16_t comment_length = 0u; // No file comment.
340 };
341
342 struct FileData {
343 CentralDirectoryFileHeader cdfh;
344 const char* location;
345 };
346
347 File* zip_file_;
348 std::vector<FileData> file_data_;
349};
350
Brian Carlstrome24fa612011-09-29 00:53:55 -0700351TEST_F(OatTest, WriteRead) {
Brian Carlstroma1ce1fe2014-02-24 23:23:58 -0800352 TimingLogger timings("OatTest::WriteRead", false, false);
Jesse Wilson254db0f2011-11-16 16:44:11 -0500353 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700354
Ian Rogersef7d42f2014-01-06 12:55:46 -0800355 // TODO: make selectable.
Elliott Hughes956af0f2014-12-11 14:34:28 -0800356 Compiler::Kind compiler_kind = Compiler::kQuick;
Ian Rogersa073c672013-07-30 17:43:55 -0700357 InstructionSet insn_set = kIsTargetBuild ? kThumb2 : kX86;
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700358 std::string error_msg;
Mathieu Chartier07ddb6f2015-11-05 11:16:34 -0800359 SetupCompiler(compiler_kind, insn_set, std::vector<std::string>(), /*out*/ &error_msg);
360
Ian Rogersd4c4d952014-10-16 20:31:53 -0700361 jobject class_loader = nullptr;
Brian Carlstromba150c32013-08-27 17:31:03 -0700362 if (kCompile) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800363 TimingLogger timings2("OatTest::WriteRead", false, false);
Vladimir Markod1eaf0d2015-10-29 12:18:29 +0000364 compiler_driver_->SetDexFilesForOatFile(class_linker->GetBootClassPath());
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800365 compiler_driver_->CompileAll(class_loader, class_linker->GetBootClassPath(), &timings2);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700366 }
367
368 ScratchFile tmp;
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700369 SafeMap<std::string, std::string> key_value_store;
370 key_value_store.Put(OatHeader::kImageLocationKey, "lue.art");
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800371 bool success = WriteElf(tmp.GetFile(), class_linker->GetBootClassPath(), key_value_store, false);
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700372 ASSERT_TRUE(success);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700373
Brian Carlstromba150c32013-08-27 17:31:03 -0700374 if (kCompile) { // OatWriter strips the code, regenerate to compare
Ian Rogers3d504072014-03-01 09:16:49 -0800375 compiler_driver_->CompileAll(class_loader, class_linker->GetBootClassPath(), &timings);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700376 }
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800377 std::unique_ptr<OatFile> oat_file(OatFile::Open(tmp.GetFilename(),
378 tmp.GetFilename(),
379 nullptr,
380 nullptr,
381 false,
382 /*low_4gb*/true,
383 nullptr,
384 &error_msg));
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700385 ASSERT_TRUE(oat_file.get() != nullptr) << error_msg;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700386 const OatHeader& oat_header = oat_file->GetOatHeader();
Brian Carlstromf852fb22012-10-19 11:01:58 -0700387 ASSERT_TRUE(oat_header.IsValid());
Yi Kong9515b512015-11-11 14:36:07 +0000388 ASSERT_EQ(class_linker->GetBootClassPath().size(), oat_header.GetDexFileCount()); // core
Brian Carlstrom28db0122012-10-18 16:20:41 -0700389 ASSERT_EQ(42U, oat_header.GetImageFileLocationOatChecksum());
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800390 ASSERT_EQ(4096U, oat_header.GetImageFileLocationOatDataBegin());
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700391 ASSERT_EQ("lue.art", std::string(oat_header.GetStoreValueByKey(OatHeader::kImageLocationKey)));
Brian Carlstrome24fa612011-09-29 00:53:55 -0700392
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800393 ASSERT_TRUE(java_lang_dex_file_ != nullptr);
394 const DexFile& dex_file = *java_lang_dex_file_;
395 uint32_t dex_file_checksum = dex_file.GetLocationChecksum();
396 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation().c_str(),
Brian Carlstrom756ee4e2013-10-03 15:46:12 -0700397 &dex_file_checksum);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700398 ASSERT_TRUE(oat_dex_file != nullptr);
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800399 CHECK_EQ(dex_file.GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
Vladimir Markof4da6752014-08-01 19:04:18 +0100400 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartiere401d142015-04-22 13:56:20 -0700401 auto pointer_size = class_linker->GetImagePointerSize();
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800402 for (size_t i = 0; i < dex_file.NumClassDefs(); i++) {
403 const DexFile::ClassDef& class_def = dex_file.GetClassDef(i);
404 const uint8_t* class_data = dex_file.GetClassData(class_def);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700405
Brian Carlstromba150c32013-08-27 17:31:03 -0700406 size_t num_virtual_methods = 0;
Ian Rogersd4c4d952014-10-16 20:31:53 -0700407 if (class_data != nullptr) {
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800408 ClassDataItemIterator it(dex_file, class_data);
Ian Rogers0571d352011-11-03 19:51:38 -0700409 num_virtual_methods = it.NumVirtualMethods();
410 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700411
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800412 const char* descriptor = dex_file.GetClassDescriptor(class_def);
Mathieu Chartier9865bde2015-12-21 09:58:16 -0800413 mirror::Class* klass = class_linker->FindClass(soa.Self(),
414 descriptor,
415 ScopedNullHandle<mirror::ClassLoader>());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700416
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100417 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(i);
418 CHECK_EQ(mirror::Class::Status::kStatusNotReady, oat_class.GetStatus()) << descriptor;
Brian Carlstromba150c32013-08-27 17:31:03 -0700419 CHECK_EQ(kCompile ? OatClassType::kOatClassAllCompiled : OatClassType::kOatClassNoneCompiled,
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100420 oat_class.GetType()) << descriptor;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700421
422 size_t method_index = 0;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700423 for (auto& m : klass->GetDirectMethods(pointer_size)) {
424 CheckMethod(&m, oat_class.GetOatMethod(method_index), dex_file);
425 ++method_index;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700426 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700427 size_t visited_virtuals = 0;
Alex Lighte64300b2015-12-15 15:02:47 -0800428 // TODO We should also check copied methods in this test.
429 for (auto& m : klass->GetDeclaredVirtualMethods(pointer_size)) {
Alex Lightfcea56f2016-02-17 11:59:05 -0800430 if (!klass->IsInterface()) {
Alex Light36121492016-02-22 13:43:29 -0800431 EXPECT_FALSE(m.IsCopied());
Alex Lightfcea56f2016-02-17 11:59:05 -0800432 }
Alex Lighte64300b2015-12-15 15:02:47 -0800433 CheckMethod(&m, oat_class.GetOatMethod(method_index), dex_file);
434 ++method_index;
435 ++visited_virtuals;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700436 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700437 EXPECT_EQ(visited_virtuals, num_virtual_methods);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700438 }
439}
440
Brian Carlstrom341df942012-06-27 12:29:22 -0700441TEST_F(OatTest, OatHeaderSizeCheck) {
442 // If this test is failing and you have to update these constants,
443 // it is time to update OatHeader::kOatVersion
Elliott Hughes956af0f2014-12-11 14:34:28 -0800444 EXPECT_EQ(72U, sizeof(OatHeader));
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800445 EXPECT_EQ(4U, sizeof(OatMethodOffsets));
446 EXPECT_EQ(28U, sizeof(OatQuickMethodHeader));
Roland Levillain7c1559a2015-12-15 10:55:36 +0000447 EXPECT_EQ(132 * GetInstructionSetPointerSize(kRuntimeISA), sizeof(QuickEntryPoints));
Brian Carlstrom341df942012-06-27 12:29:22 -0700448}
449
Brian Carlstromf852fb22012-10-19 11:01:58 -0700450TEST_F(OatTest, OatHeaderIsValid) {
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700451 InstructionSet insn_set = kX86;
452 std::string error_msg;
453 std::unique_ptr<const InstructionSetFeatures> insn_features(
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700454 InstructionSetFeatures::FromVariant(insn_set, "default", &error_msg));
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700455 ASSERT_TRUE(insn_features.get() != nullptr) << error_msg;
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700456 std::unique_ptr<OatHeader> oat_header(OatHeader::Create(insn_set,
457 insn_features.get(),
Vladimir Marko49b0f452015-12-10 13:49:19 +0000458 0u,
Andreas Gampe928f72b2014-09-09 19:53:48 -0700459 nullptr));
460 ASSERT_NE(oat_header.get(), nullptr);
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700461 ASSERT_TRUE(oat_header->IsValid());
Brian Carlstromf852fb22012-10-19 11:01:58 -0700462
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700463 char* magic = const_cast<char*>(oat_header->GetMagic());
Brian Carlstromf852fb22012-10-19 11:01:58 -0700464 strcpy(magic, ""); // bad magic
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700465 ASSERT_FALSE(oat_header->IsValid());
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700466 strcpy(magic, "oat\n000"); // bad version
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700467 ASSERT_FALSE(oat_header->IsValid());
Brian Carlstromf852fb22012-10-19 11:01:58 -0700468}
469
Mathieu Chartier07ddb6f2015-11-05 11:16:34 -0800470TEST_F(OatTest, EmptyTextSection) {
471 TimingLogger timings("OatTest::EmptyTextSection", false, false);
472
473 // TODO: make selectable.
474 Compiler::Kind compiler_kind = Compiler::kQuick;
475 InstructionSet insn_set = kRuntimeISA;
476 if (insn_set == kArm) insn_set = kThumb2;
477 std::string error_msg;
478 std::vector<std::string> compiler_options;
479 compiler_options.push_back("--compiler-filter=verify-at-runtime");
480 SetupCompiler(compiler_kind, insn_set, compiler_options, /*out*/ &error_msg);
481
482 jobject class_loader;
483 {
484 ScopedObjectAccess soa(Thread::Current());
485 class_loader = LoadDex("Main");
486 }
487 ASSERT_TRUE(class_loader != nullptr);
488 std::vector<const DexFile*> dex_files = GetDexFiles(class_loader);
489 ASSERT_TRUE(!dex_files.empty());
490
491 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
492 for (const DexFile* dex_file : dex_files) {
493 ScopedObjectAccess soa(Thread::Current());
494 class_linker->RegisterDexFile(
495 *dex_file,
496 class_linker->GetOrCreateAllocatorForClassLoader(
497 soa.Decode<mirror::ClassLoader*>(class_loader)));
498 }
499 compiler_driver_->SetDexFilesForOatFile(dex_files);
500 compiler_driver_->CompileAll(class_loader, dex_files, &timings);
501
502 ScratchFile tmp;
503 SafeMap<std::string, std::string> key_value_store;
504 key_value_store.Put(OatHeader::kImageLocationKey, "test.art");
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800505 bool success = WriteElf(tmp.GetFile(), dex_files, key_value_store, false);
Mathieu Chartier07ddb6f2015-11-05 11:16:34 -0800506 ASSERT_TRUE(success);
507
508 std::unique_ptr<OatFile> oat_file(OatFile::Open(tmp.GetFilename(),
509 tmp.GetFilename(),
510 nullptr,
511 nullptr,
512 false,
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800513 /*low_4gb*/false,
Mathieu Chartier07ddb6f2015-11-05 11:16:34 -0800514 nullptr,
515 &error_msg));
516 ASSERT_TRUE(oat_file != nullptr);
517 EXPECT_LT(static_cast<size_t>(oat_file->Size()), static_cast<size_t>(tmp.GetFile()->GetLength()));
518}
519
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800520static void MaybeModifyDexFileToFail(bool verify, std::unique_ptr<const DexFile>& data) {
521 // If in verify mode (= fail the verifier mode), make sure we fail early. We'll fail already
522 // because of the missing map, but that may lead to out of bounds reads.
523 if (verify) {
524 const_cast<DexFile::Header*>(&data->GetHeader())->checksum_++;
525 }
526}
527
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800528void OatTest::TestDexFileInput(bool verify, bool low_4gb) {
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000529 TimingLogger timings("OatTest::DexFileInput", false, false);
530
531 std::vector<const char*> input_filenames;
532
533 ScratchFile dex_file1;
534 TestDexFileBuilder builder1;
535 builder1.AddField("Lsome.TestClass;", "int", "someField");
536 builder1.AddMethod("Lsome.TestClass;", "()I", "foo");
537 std::unique_ptr<const DexFile> dex_file1_data = builder1.Build(dex_file1.GetFilename());
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800538
539 MaybeModifyDexFileToFail(verify, dex_file1_data);
540
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000541 bool success = dex_file1.GetFile()->WriteFully(&dex_file1_data->GetHeader(),
542 dex_file1_data->GetHeader().file_size_);
543 ASSERT_TRUE(success);
544 success = dex_file1.GetFile()->Flush() == 0;
545 ASSERT_TRUE(success);
546 input_filenames.push_back(dex_file1.GetFilename().c_str());
547
548 ScratchFile dex_file2;
549 TestDexFileBuilder builder2;
550 builder2.AddField("Land.AnotherTestClass;", "boolean", "someOtherField");
551 builder2.AddMethod("Land.AnotherTestClass;", "()J", "bar");
552 std::unique_ptr<const DexFile> dex_file2_data = builder2.Build(dex_file2.GetFilename());
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800553
554 MaybeModifyDexFileToFail(verify, dex_file2_data);
555
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000556 success = dex_file2.GetFile()->WriteFully(&dex_file2_data->GetHeader(),
557 dex_file2_data->GetHeader().file_size_);
558 ASSERT_TRUE(success);
559 success = dex_file2.GetFile()->Flush() == 0;
560 ASSERT_TRUE(success);
561 input_filenames.push_back(dex_file2.GetFilename().c_str());
562
563 ScratchFile oat_file;
564 SafeMap<std::string, std::string> key_value_store;
565 key_value_store.Put(OatHeader::kImageLocationKey, "test.art");
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800566 success = WriteElf(oat_file.GetFile(), input_filenames, key_value_store, verify);
567
568 // In verify mode, we expect failure.
569 if (verify) {
570 ASSERT_FALSE(success);
571 return;
572 }
573
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000574 ASSERT_TRUE(success);
575
576 std::string error_msg;
577 std::unique_ptr<OatFile> opened_oat_file(OatFile::Open(oat_file.GetFilename(),
578 oat_file.GetFilename(),
579 nullptr,
580 nullptr,
581 false,
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800582 low_4gb,
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000583 nullptr,
584 &error_msg));
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800585 if (low_4gb) {
586 uintptr_t begin = reinterpret_cast<uintptr_t>(opened_oat_file->Begin());
587 EXPECT_EQ(begin, static_cast<uint32_t>(begin));
588 }
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000589 ASSERT_TRUE(opened_oat_file != nullptr);
590 ASSERT_EQ(2u, opened_oat_file->GetOatDexFiles().size());
591 std::unique_ptr<const DexFile> opened_dex_file1 =
592 opened_oat_file->GetOatDexFiles()[0]->OpenDexFile(&error_msg);
593 std::unique_ptr<const DexFile> opened_dex_file2 =
594 opened_oat_file->GetOatDexFiles()[1]->OpenDexFile(&error_msg);
595
596 ASSERT_EQ(dex_file1_data->GetHeader().file_size_, opened_dex_file1->GetHeader().file_size_);
597 ASSERT_EQ(0, memcmp(&dex_file1_data->GetHeader(),
598 &opened_dex_file1->GetHeader(),
599 dex_file1_data->GetHeader().file_size_));
600 ASSERT_EQ(dex_file1_data->GetLocation(), opened_dex_file1->GetLocation());
601
602 ASSERT_EQ(dex_file2_data->GetHeader().file_size_, opened_dex_file2->GetHeader().file_size_);
603 ASSERT_EQ(0, memcmp(&dex_file2_data->GetHeader(),
604 &opened_dex_file2->GetHeader(),
605 dex_file2_data->GetHeader().file_size_));
606 ASSERT_EQ(dex_file2_data->GetLocation(), opened_dex_file2->GetLocation());
607}
608
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800609TEST_F(OatTest, DexFileInputCheckOutput) {
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800610 TestDexFileInput(false, /*low_4gb*/false);
611}
612
613TEST_F(OatTest, DexFileInputCheckOutputLow4GB) {
614 TestDexFileInput(false, /*low_4gb*/true);
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800615}
616
617TEST_F(OatTest, DexFileInputCheckVerifier) {
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800618 TestDexFileInput(true, /*low_4gb*/false);
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800619}
620
621void OatTest::TestZipFileInput(bool verify) {
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000622 TimingLogger timings("OatTest::DexFileInput", false, false);
623
624 ScratchFile zip_file;
625 ZipBuilder zip_builder(zip_file.GetFile());
626
627 ScratchFile dex_file1;
628 TestDexFileBuilder builder1;
629 builder1.AddField("Lsome.TestClass;", "long", "someField");
630 builder1.AddMethod("Lsome.TestClass;", "()D", "foo");
631 std::unique_ptr<const DexFile> dex_file1_data = builder1.Build(dex_file1.GetFilename());
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800632
633 MaybeModifyDexFileToFail(verify, dex_file1_data);
634
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000635 bool success = dex_file1.GetFile()->WriteFully(&dex_file1_data->GetHeader(),
636 dex_file1_data->GetHeader().file_size_);
637 ASSERT_TRUE(success);
638 success = dex_file1.GetFile()->Flush() == 0;
639 ASSERT_TRUE(success);
640 success = zip_builder.AddFile("classes.dex",
641 &dex_file1_data->GetHeader(),
642 dex_file1_data->GetHeader().file_size_);
643 ASSERT_TRUE(success);
644
645 ScratchFile dex_file2;
646 TestDexFileBuilder builder2;
647 builder2.AddField("Land.AnotherTestClass;", "boolean", "someOtherField");
648 builder2.AddMethod("Land.AnotherTestClass;", "()J", "bar");
649 std::unique_ptr<const DexFile> dex_file2_data = builder2.Build(dex_file2.GetFilename());
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800650
651 MaybeModifyDexFileToFail(verify, dex_file2_data);
652
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000653 success = dex_file2.GetFile()->WriteFully(&dex_file2_data->GetHeader(),
654 dex_file2_data->GetHeader().file_size_);
655 ASSERT_TRUE(success);
656 success = dex_file2.GetFile()->Flush() == 0;
657 ASSERT_TRUE(success);
658 success = zip_builder.AddFile("classes2.dex",
659 &dex_file2_data->GetHeader(),
660 dex_file2_data->GetHeader().file_size_);
661 ASSERT_TRUE(success);
662
663 success = zip_builder.Finish();
664 ASSERT_TRUE(success) << strerror(errno);
665
666 SafeMap<std::string, std::string> key_value_store;
667 key_value_store.Put(OatHeader::kImageLocationKey, "test.art");
668 {
669 // Test using the AddDexFileSource() interface with the zip file.
670 std::vector<const char*> input_filenames { zip_file.GetFilename().c_str() }; // NOLINT [readability/braces] [4]
671
672 ScratchFile oat_file;
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800673 success = WriteElf(oat_file.GetFile(), input_filenames, key_value_store, verify);
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000674
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800675 if (verify) {
676 ASSERT_FALSE(success);
677 } else {
678 ASSERT_TRUE(success);
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000679
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800680 std::string error_msg;
681 std::unique_ptr<OatFile> opened_oat_file(OatFile::Open(oat_file.GetFilename(),
682 oat_file.GetFilename(),
683 nullptr,
684 nullptr,
685 false,
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800686 /*low_4gb*/false,
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800687 nullptr,
688 &error_msg));
689 ASSERT_TRUE(opened_oat_file != nullptr);
690 ASSERT_EQ(2u, opened_oat_file->GetOatDexFiles().size());
691 std::unique_ptr<const DexFile> opened_dex_file1 =
692 opened_oat_file->GetOatDexFiles()[0]->OpenDexFile(&error_msg);
693 std::unique_ptr<const DexFile> opened_dex_file2 =
694 opened_oat_file->GetOatDexFiles()[1]->OpenDexFile(&error_msg);
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000695
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800696 ASSERT_EQ(dex_file1_data->GetHeader().file_size_, opened_dex_file1->GetHeader().file_size_);
697 ASSERT_EQ(0, memcmp(&dex_file1_data->GetHeader(),
698 &opened_dex_file1->GetHeader(),
699 dex_file1_data->GetHeader().file_size_));
700 ASSERT_EQ(DexFile::GetMultiDexLocation(0, zip_file.GetFilename().c_str()),
701 opened_dex_file1->GetLocation());
702
703 ASSERT_EQ(dex_file2_data->GetHeader().file_size_, opened_dex_file2->GetHeader().file_size_);
704 ASSERT_EQ(0, memcmp(&dex_file2_data->GetHeader(),
705 &opened_dex_file2->GetHeader(),
706 dex_file2_data->GetHeader().file_size_));
707 ASSERT_EQ(DexFile::GetMultiDexLocation(1, zip_file.GetFilename().c_str()),
708 opened_dex_file2->GetLocation());
709 }
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000710 }
711
712 {
713 // Test using the AddZipDexFileSource() interface with the zip file handle.
714 ScopedFd zip_fd(dup(zip_file.GetFd()));
715 ASSERT_NE(-1, zip_fd.get());
716
717 ScratchFile oat_file;
718 success = WriteElf(oat_file.GetFile(),
719 std::move(zip_fd),
720 zip_file.GetFilename().c_str(),
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800721 key_value_store,
722 verify);
723 if (verify) {
724 ASSERT_FALSE(success);
725 } else {
726 ASSERT_TRUE(success);
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000727
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800728 std::string error_msg;
729 std::unique_ptr<OatFile> opened_oat_file(OatFile::Open(oat_file.GetFilename(),
730 oat_file.GetFilename(),
731 nullptr,
732 nullptr,
733 false,
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800734 /*low_4gb*/false,
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800735 nullptr,
736 &error_msg));
737 ASSERT_TRUE(opened_oat_file != nullptr);
738 ASSERT_EQ(2u, opened_oat_file->GetOatDexFiles().size());
739 std::unique_ptr<const DexFile> opened_dex_file1 =
740 opened_oat_file->GetOatDexFiles()[0]->OpenDexFile(&error_msg);
741 std::unique_ptr<const DexFile> opened_dex_file2 =
742 opened_oat_file->GetOatDexFiles()[1]->OpenDexFile(&error_msg);
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000743
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800744 ASSERT_EQ(dex_file1_data->GetHeader().file_size_, opened_dex_file1->GetHeader().file_size_);
745 ASSERT_EQ(0, memcmp(&dex_file1_data->GetHeader(),
746 &opened_dex_file1->GetHeader(),
747 dex_file1_data->GetHeader().file_size_));
748 ASSERT_EQ(DexFile::GetMultiDexLocation(0, zip_file.GetFilename().c_str()),
749 opened_dex_file1->GetLocation());
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000750
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800751 ASSERT_EQ(dex_file2_data->GetHeader().file_size_, opened_dex_file2->GetHeader().file_size_);
752 ASSERT_EQ(0, memcmp(&dex_file2_data->GetHeader(),
753 &opened_dex_file2->GetHeader(),
754 dex_file2_data->GetHeader().file_size_));
755 ASSERT_EQ(DexFile::GetMultiDexLocation(1, zip_file.GetFilename().c_str()),
756 opened_dex_file2->GetLocation());
757 }
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000758 }
759}
760
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800761TEST_F(OatTest, ZipFileInputCheckOutput) {
762 TestZipFileInput(false);
763}
764
765TEST_F(OatTest, ZipFileInputCheckVerifier) {
766 TestZipFileInput(true);
767}
768
Brian Carlstrome24fa612011-09-29 00:53:55 -0700769} // namespace art