blob: 1fd5bdf6fe79f23265b2a1fd5f37e4ac89701113 [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"
Vladimir Marko625a64a2015-11-26 14:44:16 +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(),
114 false,
115 nullptr,
116 nullptr,
117 nullptr,
118 2,
119 true,
120 true,
121 "",
122 false,
123 timer_.get(),
124 -1,
Calin Juravle998c2162015-12-21 15:39:33 +0200125 nullptr,
Jeff Haodcdc85b2015-12-04 14:06:18 -0800126 nullptr));
Mathieu Chartier07ddb6f2015-11-05 11:16:34 -0800127 }
128
129 bool WriteElf(File* file,
130 const std::vector<const DexFile*>& dex_files,
131 SafeMap<std::string, std::string>& key_value_store) {
132 TimingLogger timings("WriteElf", false, false);
Vladimir Marko625a64a2015-11-26 14:44:16 +0000133 OatWriter oat_writer(/*compiling_boot_image*/false, &timings);
134 for (const DexFile* dex_file : dex_files) {
135 ArrayRef<const uint8_t> raw_dex_file(
136 reinterpret_cast<const uint8_t*>(&dex_file->GetHeader()),
137 dex_file->GetHeader().file_size_);
138 if (!oat_writer.AddRawDexFileSource(raw_dex_file,
139 dex_file->GetLocation().c_str(),
140 dex_file->GetLocationChecksum())) {
141 return false;
142 }
143 }
144 return DoWriteElf(file, oat_writer, key_value_store);
145 }
146
147 bool WriteElf(File* file,
148 const std::vector<const char*>& dex_filenames,
149 SafeMap<std::string, std::string>& key_value_store) {
150 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 }
157 return DoWriteElf(file, oat_writer, key_value_store);
158 }
159
160 bool WriteElf(File* file,
161 ScopedFd&& zip_fd,
162 const char* location,
163 SafeMap<std::string, std::string>& key_value_store) {
164 TimingLogger timings("WriteElf", false, false);
165 OatWriter oat_writer(/*compiling_boot_image*/false, &timings);
166 if (!oat_writer.AddZippedDexFilesSource(std::move(zip_fd), location)) {
167 return false;
168 }
169 return DoWriteElf(file, oat_writer, key_value_store);
170 }
171
172 bool DoWriteElf(File* file,
173 OatWriter& oat_writer,
174 SafeMap<std::string, std::string>& key_value_store) {
Vladimir Marko10c13562015-11-25 14:33:36 +0000175 std::unique_ptr<ElfWriter> elf_writer = CreateElfWriterQuick(
176 compiler_driver_->GetInstructionSet(),
177 &compiler_driver_->GetCompilerOptions(),
178 file);
Vladimir Marko10c13562015-11-25 14:33:36 +0000179 elf_writer->Start();
Vladimir Marko10c13562015-11-25 14:33:36 +0000180 OutputStream* rodata = elf_writer->StartRoData();
Vladimir Marko625a64a2015-11-26 14:44:16 +0000181 std::unique_ptr<MemMap> opened_dex_files_map;
182 std::vector<std::unique_ptr<const DexFile>> opened_dex_files;
183 if (!oat_writer.WriteAndOpenDexFiles(rodata,
184 file,
185 compiler_driver_->GetInstructionSet(),
186 compiler_driver_->GetInstructionSetFeatures(),
187 &key_value_store,
188 &opened_dex_files_map,
189 &opened_dex_files)) {
190 return false;
191 }
192 Runtime* runtime = Runtime::Current();
193 ClassLinker* const class_linker = runtime->GetClassLinker();
194 std::vector<const DexFile*> dex_files;
195 for (const std::unique_ptr<const DexFile>& dex_file : opened_dex_files) {
196 dex_files.push_back(dex_file.get());
197 ScopedObjectAccess soa(Thread::Current());
198 class_linker->RegisterDexFile(*dex_file, runtime->GetLinearAlloc());
199 }
200 oat_writer.PrepareLayout(compiler_driver_.get(), nullptr, dex_files);
Vladimir Marko10c13562015-11-25 14:33:36 +0000201 if (!oat_writer.WriteRodata(rodata)) {
202 return false;
203 }
204 elf_writer->EndRoData(rodata);
205
206 OutputStream* text = elf_writer->StartText();
207 if (!oat_writer.WriteCode(text)) {
208 return false;
209 }
210 elf_writer->EndText(text);
211
Vladimir Marko625a64a2015-11-26 14:44:16 +0000212 if (!oat_writer.WriteHeader(elf_writer->GetStream(), 42U, 4096U, 0)) {
213 return false;
214 }
215
Vladimir Marko10c13562015-11-25 14:33:36 +0000216 elf_writer->SetBssSize(oat_writer.GetBssSize());
Vladimir Marko10c13562015-11-25 14:33:36 +0000217 elf_writer->WriteDynamicSection();
Vladimir Marko49b0f452015-12-10 13:49:19 +0000218 elf_writer->WriteDebugInfo(oat_writer.GetMethodDebugInfo());
219 elf_writer->WritePatchLocations(oat_writer.GetAbsolutePatchLocations());
Vladimir Marko10c13562015-11-25 14:33:36 +0000220
221 return elf_writer->End();
Mathieu Chartier07ddb6f2015-11-05 11:16:34 -0800222 }
223
224 std::unique_ptr<const InstructionSetFeatures> insn_features_;
225 std::unique_ptr<QuickCompilerCallbacks> callbacks_;
Logan Chieneeb7edf2012-03-09 20:38:39 +0800226};
Brian Carlstrome24fa612011-09-29 00:53:55 -0700227
Vladimir Marko625a64a2015-11-26 14:44:16 +0000228class ZipBuilder {
229 public:
230 explicit ZipBuilder(File* zip_file) : zip_file_(zip_file) { }
231
232 bool AddFile(const char* location, const void* data, size_t size) {
233 off_t offset = lseek(zip_file_->Fd(), 0, SEEK_CUR);
234 if (offset == static_cast<off_t>(-1)) {
235 return false;
236 }
237
238 ZipFileHeader file_header;
239 file_header.crc32 = crc32(0u, reinterpret_cast<const Bytef*>(data), size);
240 file_header.compressed_size = size;
241 file_header.uncompressed_size = size;
242 file_header.filename_length = strlen(location);
243
244 if (!zip_file_->WriteFully(&file_header, sizeof(file_header)) ||
245 !zip_file_->WriteFully(location, file_header.filename_length) ||
246 !zip_file_->WriteFully(data, size)) {
247 return false;
248 }
249
250 CentralDirectoryFileHeader cdfh;
251 cdfh.crc32 = file_header.crc32;
252 cdfh.compressed_size = size;
253 cdfh.uncompressed_size = size;
254 cdfh.filename_length = file_header.filename_length;
255 cdfh.relative_offset_of_local_file_header = offset;
256 file_data_.push_back(FileData { cdfh, location });
257 return true;
258 }
259
260 bool Finish() {
261 off_t offset = lseek(zip_file_->Fd(), 0, SEEK_CUR);
262 if (offset == static_cast<off_t>(-1)) {
263 return false;
264 }
265
266 size_t central_directory_size = 0u;
267 for (const FileData& file_data : file_data_) {
268 if (!zip_file_->WriteFully(&file_data.cdfh, sizeof(file_data.cdfh)) ||
269 !zip_file_->WriteFully(file_data.location, file_data.cdfh.filename_length)) {
270 return false;
271 }
272 central_directory_size += sizeof(file_data.cdfh) + file_data.cdfh.filename_length;
273 }
274 EndOfCentralDirectoryRecord eocd_record;
275 eocd_record.number_of_central_directory_records_on_this_disk = file_data_.size();
276 eocd_record.total_number_of_central_directory_records = file_data_.size();
277 eocd_record.size_of_central_directory = central_directory_size;
278 eocd_record.offset_of_start_of_central_directory = offset;
279 return
280 zip_file_->WriteFully(&eocd_record, sizeof(eocd_record)) &&
281 zip_file_->Flush() == 0;
282 }
283
284 private:
285 struct PACKED(1) ZipFileHeader {
286 uint32_t signature = 0x04034b50;
287 uint16_t version_needed_to_extract = 10;
288 uint16_t general_purpose_bit_flag = 0;
289 uint16_t compression_method = 0; // 0 = store only.
290 uint16_t file_last_modification_time = 0u;
291 uint16_t file_last_modification_date = 0u;
292 uint32_t crc32;
293 uint32_t compressed_size;
294 uint32_t uncompressed_size;
295 uint16_t filename_length;
296 uint16_t extra_field_length = 0u; // No extra fields.
297 };
298
299 struct PACKED(1) CentralDirectoryFileHeader {
300 uint32_t signature = 0x02014b50;
301 uint16_t version_made_by = 10;
302 uint16_t version_needed_to_extract = 10;
303 uint16_t general_purpose_bit_flag = 0;
304 uint16_t compression_method = 0; // 0 = store only.
305 uint16_t file_last_modification_time = 0u;
306 uint16_t file_last_modification_date = 0u;
307 uint32_t crc32;
308 uint32_t compressed_size;
309 uint32_t uncompressed_size;
310 uint16_t filename_length;
311 uint16_t extra_field_length = 0u; // No extra fields.
312 uint16_t file_comment_length = 0u; // No file comment.
313 uint16_t disk_number_where_file_starts = 0u;
314 uint16_t internal_file_attributes = 0u;
315 uint32_t external_file_attributes = 0u;
316 uint32_t relative_offset_of_local_file_header;
317 };
318
319 struct PACKED(1) EndOfCentralDirectoryRecord {
320 uint32_t signature = 0x06054b50;
321 uint16_t number_of_this_disk = 0u;
322 uint16_t disk_where_central_directory_starts = 0u;
323 uint16_t number_of_central_directory_records_on_this_disk;
324 uint16_t total_number_of_central_directory_records;
325 uint32_t size_of_central_directory;
326 uint32_t offset_of_start_of_central_directory;
327 uint16_t comment_length = 0u; // No file comment.
328 };
329
330 struct FileData {
331 CentralDirectoryFileHeader cdfh;
332 const char* location;
333 };
334
335 File* zip_file_;
336 std::vector<FileData> file_data_;
337};
338
Brian Carlstrome24fa612011-09-29 00:53:55 -0700339TEST_F(OatTest, WriteRead) {
Brian Carlstroma1ce1fe2014-02-24 23:23:58 -0800340 TimingLogger timings("OatTest::WriteRead", false, false);
Jesse Wilson254db0f2011-11-16 16:44:11 -0500341 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700342
Ian Rogersef7d42f2014-01-06 12:55:46 -0800343 // TODO: make selectable.
Elliott Hughes956af0f2014-12-11 14:34:28 -0800344 Compiler::Kind compiler_kind = Compiler::kQuick;
Ian Rogersa073c672013-07-30 17:43:55 -0700345 InstructionSet insn_set = kIsTargetBuild ? kThumb2 : kX86;
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700346 std::string error_msg;
Mathieu Chartier07ddb6f2015-11-05 11:16:34 -0800347 SetupCompiler(compiler_kind, insn_set, std::vector<std::string>(), /*out*/ &error_msg);
348
Ian Rogersd4c4d952014-10-16 20:31:53 -0700349 jobject class_loader = nullptr;
Brian Carlstromba150c32013-08-27 17:31:03 -0700350 if (kCompile) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800351 TimingLogger timings2("OatTest::WriteRead", false, false);
Vladimir Markod1eaf0d2015-10-29 12:18:29 +0000352 compiler_driver_->SetDexFilesForOatFile(class_linker->GetBootClassPath());
Andreas Gampe277ccbd2014-11-03 21:36:10 -0800353 compiler_driver_->CompileAll(class_loader, class_linker->GetBootClassPath(), &timings2);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700354 }
355
356 ScratchFile tmp;
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700357 SafeMap<std::string, std::string> key_value_store;
358 key_value_store.Put(OatHeader::kImageLocationKey, "lue.art");
Mathieu Chartier07ddb6f2015-11-05 11:16:34 -0800359 bool success = WriteElf(tmp.GetFile(), class_linker->GetBootClassPath(), key_value_store);
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700360 ASSERT_TRUE(success);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700361
Brian Carlstromba150c32013-08-27 17:31:03 -0700362 if (kCompile) { // OatWriter strips the code, regenerate to compare
Ian Rogers3d504072014-03-01 09:16:49 -0800363 compiler_driver_->CompileAll(class_loader, class_linker->GetBootClassPath(), &timings);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700364 }
Ian Rogersd4c4d952014-10-16 20:31:53 -0700365 std::unique_ptr<OatFile> oat_file(OatFile::Open(tmp.GetFilename(), tmp.GetFilename(), nullptr,
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700366 nullptr, false, nullptr, &error_msg));
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700367 ASSERT_TRUE(oat_file.get() != nullptr) << error_msg;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700368 const OatHeader& oat_header = oat_file->GetOatHeader();
Brian Carlstromf852fb22012-10-19 11:01:58 -0700369 ASSERT_TRUE(oat_header.IsValid());
Yi Kong9515b512015-11-11 14:36:07 +0000370 ASSERT_EQ(class_linker->GetBootClassPath().size(), oat_header.GetDexFileCount()); // core
Brian Carlstrom28db0122012-10-18 16:20:41 -0700371 ASSERT_EQ(42U, oat_header.GetImageFileLocationOatChecksum());
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800372 ASSERT_EQ(4096U, oat_header.GetImageFileLocationOatDataBegin());
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700373 ASSERT_EQ("lue.art", std::string(oat_header.GetStoreValueByKey(OatHeader::kImageLocationKey)));
Brian Carlstrome24fa612011-09-29 00:53:55 -0700374
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800375 ASSERT_TRUE(java_lang_dex_file_ != nullptr);
376 const DexFile& dex_file = *java_lang_dex_file_;
377 uint32_t dex_file_checksum = dex_file.GetLocationChecksum();
378 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation().c_str(),
Brian Carlstrom756ee4e2013-10-03 15:46:12 -0700379 &dex_file_checksum);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700380 ASSERT_TRUE(oat_dex_file != nullptr);
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800381 CHECK_EQ(dex_file.GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
Vladimir Markof4da6752014-08-01 19:04:18 +0100382 ScopedObjectAccess soa(Thread::Current());
Mathieu Chartiere401d142015-04-22 13:56:20 -0700383 auto pointer_size = class_linker->GetImagePointerSize();
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800384 for (size_t i = 0; i < dex_file.NumClassDefs(); i++) {
385 const DexFile::ClassDef& class_def = dex_file.GetClassDef(i);
386 const uint8_t* class_data = dex_file.GetClassData(class_def);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700387
Brian Carlstromba150c32013-08-27 17:31:03 -0700388 size_t num_virtual_methods = 0;
Ian Rogersd4c4d952014-10-16 20:31:53 -0700389 if (class_data != nullptr) {
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800390 ClassDataItemIterator it(dex_file, class_data);
Ian Rogers0571d352011-11-03 19:51:38 -0700391 num_virtual_methods = it.NumVirtualMethods();
392 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700393
Richard Uhlerfbef44d2014-12-23 09:48:51 -0800394 const char* descriptor = dex_file.GetClassDescriptor(class_def);
Mathieu Chartier9865bde2015-12-21 09:58:16 -0800395 mirror::Class* klass = class_linker->FindClass(soa.Self(),
396 descriptor,
397 ScopedNullHandle<mirror::ClassLoader>());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700398
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100399 const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(i);
400 CHECK_EQ(mirror::Class::Status::kStatusNotReady, oat_class.GetStatus()) << descriptor;
Brian Carlstromba150c32013-08-27 17:31:03 -0700401 CHECK_EQ(kCompile ? OatClassType::kOatClassAllCompiled : OatClassType::kOatClassNoneCompiled,
Vladimir Markod3c5beb2014-04-11 16:32:51 +0100402 oat_class.GetType()) << descriptor;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700403
404 size_t method_index = 0;
Mathieu Chartiere401d142015-04-22 13:56:20 -0700405 for (auto& m : klass->GetDirectMethods(pointer_size)) {
406 CheckMethod(&m, oat_class.GetOatMethod(method_index), dex_file);
407 ++method_index;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700408 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700409 size_t visited_virtuals = 0;
Alex Lighte64300b2015-12-15 15:02:47 -0800410 // TODO We should also check copied methods in this test.
411 for (auto& m : klass->GetDeclaredVirtualMethods(pointer_size)) {
412 EXPECT_FALSE(m.IsMiranda());
413 CheckMethod(&m, oat_class.GetOatMethod(method_index), dex_file);
414 ++method_index;
415 ++visited_virtuals;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700416 }
Mathieu Chartiere401d142015-04-22 13:56:20 -0700417 EXPECT_EQ(visited_virtuals, num_virtual_methods);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700418 }
419}
420
Brian Carlstrom341df942012-06-27 12:29:22 -0700421TEST_F(OatTest, OatHeaderSizeCheck) {
422 // If this test is failing and you have to update these constants,
423 // it is time to update OatHeader::kOatVersion
Elliott Hughes956af0f2014-12-11 14:34:28 -0800424 EXPECT_EQ(72U, sizeof(OatHeader));
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800425 EXPECT_EQ(4U, sizeof(OatMethodOffsets));
426 EXPECT_EQ(28U, sizeof(OatQuickMethodHeader));
Roland Levillain7c1559a2015-12-15 10:55:36 +0000427 EXPECT_EQ(132 * GetInstructionSetPointerSize(kRuntimeISA), sizeof(QuickEntryPoints));
Brian Carlstrom341df942012-06-27 12:29:22 -0700428}
429
Brian Carlstromf852fb22012-10-19 11:01:58 -0700430TEST_F(OatTest, OatHeaderIsValid) {
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700431 InstructionSet insn_set = kX86;
432 std::string error_msg;
433 std::unique_ptr<const InstructionSetFeatures> insn_features(
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700434 InstructionSetFeatures::FromVariant(insn_set, "default", &error_msg));
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700435 ASSERT_TRUE(insn_features.get() != nullptr) << error_msg;
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700436 std::unique_ptr<OatHeader> oat_header(OatHeader::Create(insn_set,
437 insn_features.get(),
Vladimir Marko49b0f452015-12-10 13:49:19 +0000438 0u,
Andreas Gampe928f72b2014-09-09 19:53:48 -0700439 nullptr));
440 ASSERT_NE(oat_header.get(), nullptr);
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700441 ASSERT_TRUE(oat_header->IsValid());
Brian Carlstromf852fb22012-10-19 11:01:58 -0700442
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700443 char* magic = const_cast<char*>(oat_header->GetMagic());
Brian Carlstromf852fb22012-10-19 11:01:58 -0700444 strcpy(magic, ""); // bad magic
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700445 ASSERT_FALSE(oat_header->IsValid());
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700446 strcpy(magic, "oat\n000"); // bad version
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700447 ASSERT_FALSE(oat_header->IsValid());
Brian Carlstromf852fb22012-10-19 11:01:58 -0700448}
449
Mathieu Chartier07ddb6f2015-11-05 11:16:34 -0800450TEST_F(OatTest, EmptyTextSection) {
451 TimingLogger timings("OatTest::EmptyTextSection", false, false);
452
453 // TODO: make selectable.
454 Compiler::Kind compiler_kind = Compiler::kQuick;
455 InstructionSet insn_set = kRuntimeISA;
456 if (insn_set == kArm) insn_set = kThumb2;
457 std::string error_msg;
458 std::vector<std::string> compiler_options;
459 compiler_options.push_back("--compiler-filter=verify-at-runtime");
460 SetupCompiler(compiler_kind, insn_set, compiler_options, /*out*/ &error_msg);
461
462 jobject class_loader;
463 {
464 ScopedObjectAccess soa(Thread::Current());
465 class_loader = LoadDex("Main");
466 }
467 ASSERT_TRUE(class_loader != nullptr);
468 std::vector<const DexFile*> dex_files = GetDexFiles(class_loader);
469 ASSERT_TRUE(!dex_files.empty());
470
471 ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
472 for (const DexFile* dex_file : dex_files) {
473 ScopedObjectAccess soa(Thread::Current());
474 class_linker->RegisterDexFile(
475 *dex_file,
476 class_linker->GetOrCreateAllocatorForClassLoader(
477 soa.Decode<mirror::ClassLoader*>(class_loader)));
478 }
479 compiler_driver_->SetDexFilesForOatFile(dex_files);
480 compiler_driver_->CompileAll(class_loader, dex_files, &timings);
481
482 ScratchFile tmp;
483 SafeMap<std::string, std::string> key_value_store;
484 key_value_store.Put(OatHeader::kImageLocationKey, "test.art");
485 bool success = WriteElf(tmp.GetFile(), dex_files, key_value_store);
486 ASSERT_TRUE(success);
487
488 std::unique_ptr<OatFile> oat_file(OatFile::Open(tmp.GetFilename(),
489 tmp.GetFilename(),
490 nullptr,
491 nullptr,
492 false,
493 nullptr,
494 &error_msg));
495 ASSERT_TRUE(oat_file != nullptr);
496 EXPECT_LT(static_cast<size_t>(oat_file->Size()), static_cast<size_t>(tmp.GetFile()->GetLength()));
497}
498
Vladimir Marko625a64a2015-11-26 14:44:16 +0000499TEST_F(OatTest, DexFileInput) {
500 TimingLogger timings("OatTest::DexFileInput", false, false);
501
502 std::vector<const char*> input_filenames;
503
504 ScratchFile dex_file1;
505 TestDexFileBuilder builder1;
506 builder1.AddField("Lsome.TestClass;", "int", "someField");
507 builder1.AddMethod("Lsome.TestClass;", "()I", "foo");
508 std::unique_ptr<const DexFile> dex_file1_data = builder1.Build(dex_file1.GetFilename());
509 bool success = dex_file1.GetFile()->WriteFully(&dex_file1_data->GetHeader(),
510 dex_file1_data->GetHeader().file_size_);
511 ASSERT_TRUE(success);
512 success = dex_file1.GetFile()->Flush() == 0;
513 ASSERT_TRUE(success);
514 input_filenames.push_back(dex_file1.GetFilename().c_str());
515
516 ScratchFile dex_file2;
517 TestDexFileBuilder builder2;
518 builder2.AddField("Land.AnotherTestClass;", "boolean", "someOtherField");
519 builder2.AddMethod("Land.AnotherTestClass;", "()J", "bar");
520 std::unique_ptr<const DexFile> dex_file2_data = builder2.Build(dex_file2.GetFilename());
521 success = dex_file2.GetFile()->WriteFully(&dex_file2_data->GetHeader(),
522 dex_file2_data->GetHeader().file_size_);
523 ASSERT_TRUE(success);
524 success = dex_file2.GetFile()->Flush() == 0;
525 ASSERT_TRUE(success);
526 input_filenames.push_back(dex_file2.GetFilename().c_str());
527
528 ScratchFile oat_file;
529 SafeMap<std::string, std::string> key_value_store;
530 key_value_store.Put(OatHeader::kImageLocationKey, "test.art");
531 success = WriteElf(oat_file.GetFile(), input_filenames, key_value_store);
532 ASSERT_TRUE(success);
533
534 std::string error_msg;
535 std::unique_ptr<OatFile> opened_oat_file(OatFile::Open(oat_file.GetFilename(),
536 oat_file.GetFilename(),
537 nullptr,
538 nullptr,
539 false,
540 nullptr,
541 &error_msg));
542 ASSERT_TRUE(opened_oat_file != nullptr);
543 ASSERT_EQ(2u, opened_oat_file->GetOatDexFiles().size());
544 std::unique_ptr<const DexFile> opened_dex_file1 =
545 opened_oat_file->GetOatDexFiles()[0]->OpenDexFile(&error_msg);
546 std::unique_ptr<const DexFile> opened_dex_file2 =
547 opened_oat_file->GetOatDexFiles()[1]->OpenDexFile(&error_msg);
548
549 ASSERT_EQ(dex_file1_data->GetHeader().file_size_, opened_dex_file1->GetHeader().file_size_);
550 ASSERT_EQ(0, memcmp(&dex_file1_data->GetHeader(),
551 &opened_dex_file1->GetHeader(),
552 dex_file1_data->GetHeader().file_size_));
553 ASSERT_EQ(dex_file1_data->GetLocation(), opened_dex_file1->GetLocation());
554
555 ASSERT_EQ(dex_file2_data->GetHeader().file_size_, opened_dex_file2->GetHeader().file_size_);
556 ASSERT_EQ(0, memcmp(&dex_file2_data->GetHeader(),
557 &opened_dex_file2->GetHeader(),
558 dex_file2_data->GetHeader().file_size_));
559 ASSERT_EQ(dex_file2_data->GetLocation(), opened_dex_file2->GetLocation());
560}
561
562TEST_F(OatTest, ZipFileInput) {
563 TimingLogger timings("OatTest::DexFileInput", false, false);
564
565 ScratchFile zip_file;
566 ZipBuilder zip_builder(zip_file.GetFile());
567
568 ScratchFile dex_file1;
569 TestDexFileBuilder builder1;
570 builder1.AddField("Lsome.TestClass;", "long", "someField");
571 builder1.AddMethod("Lsome.TestClass;", "()D", "foo");
572 std::unique_ptr<const DexFile> dex_file1_data = builder1.Build(dex_file1.GetFilename());
573 bool success = dex_file1.GetFile()->WriteFully(&dex_file1_data->GetHeader(),
574 dex_file1_data->GetHeader().file_size_);
575 ASSERT_TRUE(success);
576 success = dex_file1.GetFile()->Flush() == 0;
577 ASSERT_TRUE(success);
578 success = zip_builder.AddFile("classes.dex",
579 &dex_file1_data->GetHeader(),
580 dex_file1_data->GetHeader().file_size_);
581 ASSERT_TRUE(success);
582
583 ScratchFile dex_file2;
584 TestDexFileBuilder builder2;
585 builder2.AddField("Land.AnotherTestClass;", "boolean", "someOtherField");
586 builder2.AddMethod("Land.AnotherTestClass;", "()J", "bar");
587 std::unique_ptr<const DexFile> dex_file2_data = builder2.Build(dex_file2.GetFilename());
588 success = dex_file2.GetFile()->WriteFully(&dex_file2_data->GetHeader(),
589 dex_file2_data->GetHeader().file_size_);
590 ASSERT_TRUE(success);
591 success = dex_file2.GetFile()->Flush() == 0;
592 ASSERT_TRUE(success);
593 success = zip_builder.AddFile("classes2.dex",
594 &dex_file2_data->GetHeader(),
595 dex_file2_data->GetHeader().file_size_);
596 ASSERT_TRUE(success);
597
598 success = zip_builder.Finish();
599 ASSERT_TRUE(success) << strerror(errno);
600
601 SafeMap<std::string, std::string> key_value_store;
602 key_value_store.Put(OatHeader::kImageLocationKey, "test.art");
603 {
604 // Test using the AddDexFileSource() interface with the zip file.
605 std::vector<const char*> input_filenames { zip_file.GetFilename().c_str() }; // NOLINT [readability/braces] [4]
606
607 ScratchFile oat_file;
608 success = WriteElf(oat_file.GetFile(), input_filenames, key_value_store);
609 ASSERT_TRUE(success);
610
611 std::string error_msg;
612 std::unique_ptr<OatFile> opened_oat_file(OatFile::Open(oat_file.GetFilename(),
613 oat_file.GetFilename(),
614 nullptr,
615 nullptr,
616 false,
617 nullptr,
618 &error_msg));
619 ASSERT_TRUE(opened_oat_file != nullptr);
620 ASSERT_EQ(2u, opened_oat_file->GetOatDexFiles().size());
621 std::unique_ptr<const DexFile> opened_dex_file1 =
622 opened_oat_file->GetOatDexFiles()[0]->OpenDexFile(&error_msg);
623 std::unique_ptr<const DexFile> opened_dex_file2 =
624 opened_oat_file->GetOatDexFiles()[1]->OpenDexFile(&error_msg);
625
626 ASSERT_EQ(dex_file1_data->GetHeader().file_size_, opened_dex_file1->GetHeader().file_size_);
627 ASSERT_EQ(0, memcmp(&dex_file1_data->GetHeader(),
628 &opened_dex_file1->GetHeader(),
629 dex_file1_data->GetHeader().file_size_));
630 ASSERT_EQ(DexFile::GetMultiDexLocation(0, zip_file.GetFilename().c_str()),
631 opened_dex_file1->GetLocation());
632
633 ASSERT_EQ(dex_file2_data->GetHeader().file_size_, opened_dex_file2->GetHeader().file_size_);
634 ASSERT_EQ(0, memcmp(&dex_file2_data->GetHeader(),
635 &opened_dex_file2->GetHeader(),
636 dex_file2_data->GetHeader().file_size_));
637 ASSERT_EQ(DexFile::GetMultiDexLocation(1, zip_file.GetFilename().c_str()),
638 opened_dex_file2->GetLocation());
639 }
640
641 {
642 // Test using the AddZipDexFileSource() interface with the zip file handle.
643 ScopedFd zip_fd(dup(zip_file.GetFd()));
644 ASSERT_NE(-1, zip_fd.get());
645
646 ScratchFile oat_file;
647 success = WriteElf(oat_file.GetFile(),
648 std::move(zip_fd),
649 zip_file.GetFilename().c_str(),
650 key_value_store);
651 ASSERT_TRUE(success);
652
653 std::string error_msg;
654 std::unique_ptr<OatFile> opened_oat_file(OatFile::Open(oat_file.GetFilename(),
655 oat_file.GetFilename(),
656 nullptr,
657 nullptr,
658 false,
659 nullptr,
660 &error_msg));
661 ASSERT_TRUE(opened_oat_file != nullptr);
662 ASSERT_EQ(2u, opened_oat_file->GetOatDexFiles().size());
663 std::unique_ptr<const DexFile> opened_dex_file1 =
664 opened_oat_file->GetOatDexFiles()[0]->OpenDexFile(&error_msg);
665 std::unique_ptr<const DexFile> opened_dex_file2 =
666 opened_oat_file->GetOatDexFiles()[1]->OpenDexFile(&error_msg);
667
668 ASSERT_EQ(dex_file1_data->GetHeader().file_size_, opened_dex_file1->GetHeader().file_size_);
669 ASSERT_EQ(0, memcmp(&dex_file1_data->GetHeader(),
670 &opened_dex_file1->GetHeader(),
671 dex_file1_data->GetHeader().file_size_));
672 ASSERT_EQ(DexFile::GetMultiDexLocation(0, zip_file.GetFilename().c_str()),
673 opened_dex_file1->GetLocation());
674
675 ASSERT_EQ(dex_file2_data->GetHeader().file_size_, opened_dex_file2->GetHeader().file_size_);
676 ASSERT_EQ(0, memcmp(&dex_file2_data->GetHeader(),
677 &opened_dex_file2->GetHeader(),
678 dex_file2_data->GetHeader().file_size_));
679 ASSERT_EQ(DexFile::GetMultiDexLocation(1, zip_file.GetFilename().c_str()),
680 opened_dex_file2->GetLocation());
681 }
682}
683
Brian Carlstrome24fa612011-09-29 00:53:55 -0700684} // namespace art