blob: 2b511fc082d7e551ac30cb66199f3c0fbbff52cd [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
17#include "oat_writer.h"
18
Vladimir Marko9bdf1082016-01-21 12:15:52 +000019#include <unistd.h>
Elliott Hughesa0e18062012-04-13 15:59:59 -070020#include <zlib.h>
21
Vladimir Markoc74658b2015-03-31 10:26:41 +010022#include "arch/arm64/instruction_set_features_arm64.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070023#include "art_method-inl.h"
Ian Rogerse77493c2014-08-20 15:08:45 -070024#include "base/allocator.h"
Brian Carlstromba150c32013-08-27 17:31:03 -070025#include "base/bit_vector.h"
Vladimir Marko9bdf1082016-01-21 12:15:52 +000026#include "base/file_magic.h"
Elliott Hughes1aa246d2012-12-13 09:29:36 -080027#include "base/stl_util.h"
Elliott Hughes76160052012-12-12 16:31:20 -080028#include "base/unix_file/fd_file.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070029#include "class_linker.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070030#include "compiled_class.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000031#include "compiled_method.h"
David Srbecky4fda4eb2016-02-05 13:34:46 +000032#include "debug/method_debug_info.h"
Vladimir Markoc7f83202014-01-24 17:55:18 +000033#include "dex/verification_results.h"
David Srbecky4fda4eb2016-02-05 13:34:46 +000034#include "dex_file-inl.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000035#include "driver/compiler_driver.h"
36#include "driver/compiler_options.h"
Vladimir Marko09d09432015-09-08 13:47:48 +010037#include "gc/space/image_space.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070038#include "gc/space/space.h"
Artem Udovichenkod9786b02015-10-14 16:36:55 +030039#include "handle_scope-inl.h"
Vladimir Markof4da6752014-08-01 19:04:18 +010040#include "image_writer.h"
Vladimir Marko944da602016-02-19 12:27:55 +000041#include "linker/multi_oat_relative_patcher.h"
Vladimir Marko131980f2015-12-03 18:29:23 +000042#include "linker/output_stream.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080043#include "mirror/array.h"
44#include "mirror/class_loader.h"
Vladimir Marko3481ba22015-04-13 12:22:36 +010045#include "mirror/dex_cache-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070046#include "mirror/object-inl.h"
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010047#include "oat_quick_method_header.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070048#include "os.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070049#include "safe_map.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070050#include "scoped_thread_state_change.h"
Artem Udovichenkod9786b02015-10-14 16:36:55 +030051#include "type_lookup_table.h"
Vladimir Marko09d09432015-09-08 13:47:48 +010052#include "utils/dex_cache_arrays_layout-inl.h"
jeffhaoec014232012-09-05 10:42:25 -070053#include "verifier/method_verifier.h"
Vladimir Marko9bdf1082016-01-21 12:15:52 +000054#include "zip_archive.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070055
56namespace art {
57
Vladimir Marko9bdf1082016-01-21 12:15:52 +000058namespace { // anonymous namespace
59
60typedef DexFile::Header __attribute__((aligned(1))) UnalignedDexFileHeader;
61
62const UnalignedDexFileHeader* AsUnalignedDexFileHeader(const uint8_t* raw_data) {
63 return reinterpret_cast<const UnalignedDexFileHeader*>(raw_data);
64}
65
66} // anonymous namespace
67
68// Defines the location of the raw dex file to write.
69class OatWriter::DexFileSource {
70 public:
71 explicit DexFileSource(ZipEntry* zip_entry)
72 : type_(kZipEntry), source_(zip_entry) {
73 DCHECK(source_ != nullptr);
74 }
75
76 explicit DexFileSource(File* raw_file)
77 : type_(kRawFile), source_(raw_file) {
78 DCHECK(source_ != nullptr);
79 }
80
81 explicit DexFileSource(const uint8_t* dex_file)
82 : type_(kRawData), source_(dex_file) {
83 DCHECK(source_ != nullptr);
84 }
85
86 bool IsZipEntry() const { return type_ == kZipEntry; }
87 bool IsRawFile() const { return type_ == kRawFile; }
88 bool IsRawData() const { return type_ == kRawData; }
89
90 ZipEntry* GetZipEntry() const {
91 DCHECK(IsZipEntry());
92 DCHECK(source_ != nullptr);
93 return static_cast<ZipEntry*>(const_cast<void*>(source_));
94 }
95
96 File* GetRawFile() const {
97 DCHECK(IsRawFile());
98 DCHECK(source_ != nullptr);
99 return static_cast<File*>(const_cast<void*>(source_));
100 }
101
102 const uint8_t* GetRawData() const {
103 DCHECK(IsRawData());
104 DCHECK(source_ != nullptr);
105 return static_cast<const uint8_t*>(source_);
106 }
107
108 void Clear() {
109 type_ = kNone;
110 source_ = nullptr;
111 }
112
113 private:
114 enum Type {
115 kNone,
116 kZipEntry,
117 kRawFile,
118 kRawData,
119 };
120
121 Type type_;
122 const void* source_;
123};
124
Vladimir Marko49b0f452015-12-10 13:49:19 +0000125class OatWriter::OatClass {
126 public:
127 OatClass(size_t offset,
128 const dchecked_vector<CompiledMethod*>& compiled_methods,
129 uint32_t num_non_null_compiled_methods,
130 mirror::Class::Status status);
131 OatClass(OatClass&& src) = default;
132 size_t GetOatMethodOffsetsOffsetFromOatHeader(size_t class_def_method_index_) const;
133 size_t GetOatMethodOffsetsOffsetFromOatClass(size_t class_def_method_index_) const;
134 size_t SizeOf() const;
135 bool Write(OatWriter* oat_writer, OutputStream* out, const size_t file_offset) const;
136
137 CompiledMethod* GetCompiledMethod(size_t class_def_method_index) const {
138 return compiled_methods_[class_def_method_index];
139 }
140
141 // Offset of start of OatClass from beginning of OatHeader. It is
142 // used to validate file position when writing.
143 size_t offset_;
144
145 // CompiledMethods for each class_def_method_index, or null if no method is available.
146 dchecked_vector<CompiledMethod*> compiled_methods_;
147
148 // Offset from OatClass::offset_ to the OatMethodOffsets for the
149 // class_def_method_index. If 0, it means the corresponding
150 // CompiledMethod entry in OatClass::compiled_methods_ should be
151 // null and that the OatClass::type_ should be kOatClassBitmap.
152 dchecked_vector<uint32_t> oat_method_offsets_offsets_from_oat_class_;
153
154 // Data to write.
155
156 static_assert(mirror::Class::Status::kStatusMax < (1 << 16), "class status won't fit in 16bits");
157 int16_t status_;
158
159 static_assert(OatClassType::kOatClassMax < (1 << 16), "oat_class type won't fit in 16bits");
160 uint16_t type_;
161
162 uint32_t method_bitmap_size_;
163
164 // bit vector indexed by ClassDef method index. When
165 // OatClassType::type_ is kOatClassBitmap, a set bit indicates the
166 // method has an OatMethodOffsets in methods_offsets_, otherwise
167 // the entry was ommited to save space. If OatClassType::type_ is
168 // not is kOatClassBitmap, the bitmap will be null.
169 std::unique_ptr<BitVector> method_bitmap_;
170
171 // OatMethodOffsets and OatMethodHeaders for each CompiledMethod
172 // present in the OatClass. Note that some may be missing if
173 // OatClass::compiled_methods_ contains null values (and
174 // oat_method_offsets_offsets_from_oat_class_ should contain 0
175 // values in this case).
176 dchecked_vector<OatMethodOffsets> method_offsets_;
177 dchecked_vector<OatQuickMethodHeader> method_headers_;
178
179 private:
180 size_t GetMethodOffsetsRawSize() const {
181 return method_offsets_.size() * sizeof(method_offsets_[0]);
182 }
183
184 DISALLOW_COPY_AND_ASSIGN(OatClass);
185};
186
187class OatWriter::OatDexFile {
188 public:
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000189 OatDexFile(const char* dex_file_location,
190 DexFileSource source,
191 CreateTypeLookupTable create_type_lookup_table);
Vladimir Marko49b0f452015-12-10 13:49:19 +0000192 OatDexFile(OatDexFile&& src) = default;
193
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000194 const char* GetLocation() const {
195 return dex_file_location_data_;
196 }
197
198 void ReserveTypeLookupTable(OatWriter* oat_writer);
199 void ReserveClassOffsets(OatWriter* oat_writer);
200
Vladimir Marko49b0f452015-12-10 13:49:19 +0000201 size_t SizeOf() const;
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000202 bool Write(OatWriter* oat_writer, OutputStream* out) const;
203 bool WriteClassOffsets(OatWriter* oat_writer, OutputStream* out);
204
205 // The source of the dex file.
206 DexFileSource source_;
207
208 // Whether to create the type lookup table.
209 CreateTypeLookupTable create_type_lookup_table_;
210
211 // Dex file size. Initialized when writing the dex file.
212 size_t dex_file_size_;
Vladimir Marko49b0f452015-12-10 13:49:19 +0000213
214 // Offset of start of OatDexFile from beginning of OatHeader. It is
215 // used to validate file position when writing.
216 size_t offset_;
217
218 // Data to write.
219 uint32_t dex_file_location_size_;
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000220 const char* dex_file_location_data_;
Vladimir Marko49b0f452015-12-10 13:49:19 +0000221 uint32_t dex_file_location_checksum_;
222 uint32_t dex_file_offset_;
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000223 uint32_t class_offsets_offset_;
Vladimir Marko49b0f452015-12-10 13:49:19 +0000224 uint32_t lookup_table_offset_;
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000225
226 // Data to write to a separate section.
Vladimir Marko49b0f452015-12-10 13:49:19 +0000227 dchecked_vector<uint32_t> class_offsets_;
228
229 private:
230 size_t GetClassOffsetsRawSize() const {
231 return class_offsets_.size() * sizeof(class_offsets_[0]);
232 }
233
234 DISALLOW_COPY_AND_ASSIGN(OatDexFile);
235};
236
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100237#define DCHECK_OFFSET() \
238 DCHECK_EQ(static_cast<off_t>(file_offset + relative_offset), out->Seek(0, kSeekCurrent)) \
239 << "file_offset=" << file_offset << " relative_offset=" << relative_offset
240
241#define DCHECK_OFFSET_() \
242 DCHECK_EQ(static_cast<off_t>(file_offset + offset_), out->Seek(0, kSeekCurrent)) \
243 << "file_offset=" << file_offset << " offset_=" << offset_
244
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000245OatWriter::OatWriter(bool compiling_boot_image, TimingLogger* timings)
246 : write_state_(WriteState::kAddingDexFileSources),
247 timings_(timings),
248 raw_dex_files_(),
249 zip_archives_(),
250 zipped_dex_files_(),
251 zipped_dex_file_locations_(),
252 compiler_driver_(nullptr),
253 image_writer_(nullptr),
Mathieu Chartierda5b28a2015-11-05 08:03:47 -0800254 compiling_boot_image_(compiling_boot_image),
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000255 dex_files_(nullptr),
Vladimir Markof4da6752014-08-01 19:04:18 +0100256 size_(0u),
Vladimir Marko5c42c292015-02-25 12:02:49 +0000257 bss_size_(0u),
Vladimir Markof4da6752014-08-01 19:04:18 +0100258 oat_data_offset_(0u),
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700259 oat_header_(nullptr),
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700260 size_dex_file_alignment_(0),
261 size_executable_offset_alignment_(0),
262 size_oat_header_(0),
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700263 size_oat_header_key_value_store_(0),
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700264 size_dex_file_(0),
Ian Rogers848871b2013-08-05 10:56:33 -0700265 size_interpreter_to_interpreter_bridge_(0),
266 size_interpreter_to_compiled_code_bridge_(0),
267 size_jni_dlsym_lookup_(0),
Andreas Gampe2da88232014-02-27 12:26:20 -0800268 size_quick_generic_jni_trampoline_(0),
Jeff Hao88474b42013-10-23 16:24:40 -0700269 size_quick_imt_conflict_trampoline_(0),
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700270 size_quick_resolution_trampoline_(0),
Ian Rogers848871b2013-08-05 10:56:33 -0700271 size_quick_to_interpreter_bridge_(0),
272 size_trampoline_alignment_(0),
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100273 size_method_header_(0),
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700274 size_code_(0),
275 size_code_alignment_(0),
Vladimir Markof4da6752014-08-01 19:04:18 +0100276 size_relative_call_thunks_(0),
Vladimir Markoc74658b2015-03-31 10:26:41 +0100277 size_misc_thunks_(0),
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700278 size_mapping_table_(0),
279 size_vmap_table_(0),
280 size_gc_map_(0),
281 size_oat_dex_file_location_size_(0),
282 size_oat_dex_file_location_data_(0),
283 size_oat_dex_file_location_checksum_(0),
284 size_oat_dex_file_offset_(0),
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000285 size_oat_dex_file_class_offsets_offset_(0),
Vladimir Marko49b0f452015-12-10 13:49:19 +0000286 size_oat_dex_file_lookup_table_offset_(0),
Vladimir Marko49b0f452015-12-10 13:49:19 +0000287 size_oat_lookup_table_alignment_(0),
288 size_oat_lookup_table_(0),
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000289 size_oat_class_offsets_alignment_(0),
290 size_oat_class_offsets_(0),
Brian Carlstromba150c32013-08-27 17:31:03 -0700291 size_oat_class_type_(0),
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700292 size_oat_class_status_(0),
Brian Carlstromba150c32013-08-27 17:31:03 -0700293 size_oat_class_method_bitmaps_(0),
Vladimir Markof4da6752014-08-01 19:04:18 +0100294 size_oat_class_method_offsets_(0),
Vladimir Marko944da602016-02-19 12:27:55 +0000295 relative_patcher_(nullptr),
296 absolute_patch_locations_() {
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000297}
298
299bool OatWriter::AddDexFileSource(const char* filename,
300 const char* location,
301 CreateTypeLookupTable create_type_lookup_table) {
302 DCHECK(write_state_ == WriteState::kAddingDexFileSources);
303 uint32_t magic;
304 std::string error_msg;
305 ScopedFd fd(OpenAndReadMagic(filename, &magic, &error_msg));
306 if (fd.get() == -1) {
307 PLOG(ERROR) << "Failed to read magic number from dex file: '" << filename << "'";
308 return false;
309 } else if (IsDexMagic(magic)) {
310 // The file is open for reading, not writing, so it's OK to let the File destructor
311 // close it without checking for explicit Close(), so pass checkUsage = false.
312 raw_dex_files_.emplace_back(new File(fd.release(), location, /* checkUsage */ false));
313 oat_dex_files_.emplace_back(location,
314 DexFileSource(raw_dex_files_.back().get()),
315 create_type_lookup_table);
316 } else if (IsZipMagic(magic)) {
317 if (!AddZippedDexFilesSource(std::move(fd), location, create_type_lookup_table)) {
318 return false;
319 }
320 } else {
321 LOG(ERROR) << "Expected valid zip or dex file: '" << filename << "'";
322 return false;
323 }
324 return true;
325}
326
327// Add dex file source(s) from a zip file specified by a file handle.
328bool OatWriter::AddZippedDexFilesSource(ScopedFd&& zip_fd,
329 const char* location,
330 CreateTypeLookupTable create_type_lookup_table) {
331 DCHECK(write_state_ == WriteState::kAddingDexFileSources);
332 std::string error_msg;
333 zip_archives_.emplace_back(ZipArchive::OpenFromFd(zip_fd.release(), location, &error_msg));
334 ZipArchive* zip_archive = zip_archives_.back().get();
335 if (zip_archive == nullptr) {
336 LOG(ERROR) << "Failed to open zip from file descriptor for '" << location << "': "
337 << error_msg;
338 return false;
339 }
340 for (size_t i = 0; ; ++i) {
341 std::string entry_name = DexFile::GetMultiDexClassesDexName(i);
342 std::unique_ptr<ZipEntry> entry(zip_archive->Find(entry_name.c_str(), &error_msg));
343 if (entry == nullptr) {
344 break;
345 }
346 zipped_dex_files_.push_back(std::move(entry));
347 zipped_dex_file_locations_.push_back(DexFile::GetMultiDexLocation(i, location));
348 const char* full_location = zipped_dex_file_locations_.back().c_str();
349 oat_dex_files_.emplace_back(full_location,
350 DexFileSource(zipped_dex_files_.back().get()),
351 create_type_lookup_table);
352 }
353 if (zipped_dex_file_locations_.empty()) {
354 LOG(ERROR) << "No dex files in zip file '" << location << "': " << error_msg;
355 return false;
356 }
357 return true;
358}
359
360// Add dex file source from raw memory.
361bool OatWriter::AddRawDexFileSource(const ArrayRef<const uint8_t>& data,
362 const char* location,
363 uint32_t location_checksum,
364 CreateTypeLookupTable create_type_lookup_table) {
365 DCHECK(write_state_ == WriteState::kAddingDexFileSources);
366 if (data.size() < sizeof(DexFile::Header)) {
367 LOG(ERROR) << "Provided data is shorter than dex file header. size: "
368 << data.size() << " File: " << location;
369 return false;
370 }
371 if (!ValidateDexFileHeader(data.data(), location)) {
372 return false;
373 }
374 const UnalignedDexFileHeader* header = AsUnalignedDexFileHeader(data.data());
375 if (data.size() < header->file_size_) {
376 LOG(ERROR) << "Truncated dex file data. Data size: " << data.size()
377 << " file size from header: " << header->file_size_ << " File: " << location;
378 return false;
379 }
380
381 oat_dex_files_.emplace_back(location, DexFileSource(data.data()), create_type_lookup_table);
382 oat_dex_files_.back().dex_file_location_checksum_ = location_checksum;
383 return true;
384}
385
386dchecked_vector<const char*> OatWriter::GetSourceLocations() const {
387 dchecked_vector<const char*> locations;
388 locations.reserve(oat_dex_files_.size());
389 for (const OatDexFile& oat_dex_file : oat_dex_files_) {
390 locations.push_back(oat_dex_file.GetLocation());
391 }
392 return locations;
393}
394
395bool OatWriter::WriteAndOpenDexFiles(
396 OutputStream* rodata,
397 File* file,
398 InstructionSet instruction_set,
399 const InstructionSetFeatures* instruction_set_features,
400 SafeMap<std::string, std::string>* key_value_store,
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800401 bool verify,
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000402 /*out*/ std::unique_ptr<MemMap>* opened_dex_files_map,
403 /*out*/ std::vector<std::unique_ptr<const DexFile>>* opened_dex_files) {
404 CHECK(write_state_ == WriteState::kAddingDexFileSources);
405
406 size_t offset = InitOatHeader(instruction_set,
407 instruction_set_features,
408 dchecked_integral_cast<uint32_t>(oat_dex_files_.size()),
409 key_value_store);
410 offset = InitOatDexFiles(offset);
411 size_ = offset;
412
413 std::unique_ptr<MemMap> dex_files_map;
414 std::vector<std::unique_ptr<const DexFile>> dex_files;
415 if (!WriteDexFiles(rodata, file)) {
416 return false;
417 }
418 // Reserve space for type lookup tables and update type_lookup_table_offset_.
419 for (OatDexFile& oat_dex_file : oat_dex_files_) {
420 oat_dex_file.ReserveTypeLookupTable(this);
421 }
422 size_t size_after_type_lookup_tables = size_;
423 // Reserve space for class offsets and update class_offsets_offset_.
424 for (OatDexFile& oat_dex_file : oat_dex_files_) {
425 oat_dex_file.ReserveClassOffsets(this);
426 }
427 if (!WriteOatDexFiles(rodata) ||
428 !ExtendForTypeLookupTables(rodata, file, size_after_type_lookup_tables) ||
Andreas Gampe3a2bd292016-01-26 17:23:47 -0800429 !OpenDexFiles(file, verify, &dex_files_map, &dex_files) ||
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000430 !WriteTypeLookupTables(dex_files_map.get(), dex_files)) {
431 return false;
432 }
433
434 *opened_dex_files_map = std::move(dex_files_map);
435 *opened_dex_files = std::move(dex_files);
436 write_state_ = WriteState::kPrepareLayout;
437 return true;
438}
439
440void OatWriter::PrepareLayout(const CompilerDriver* compiler,
441 ImageWriter* image_writer,
Vladimir Marko944da602016-02-19 12:27:55 +0000442 const std::vector<const DexFile*>& dex_files,
443 linker::MultiOatRelativePatcher* relative_patcher) {
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000444 CHECK(write_state_ == WriteState::kPrepareLayout);
445
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000446 compiler_driver_ = compiler;
447 image_writer_ = image_writer;
Vladimir Marko944da602016-02-19 12:27:55 +0000448 dex_files_ = &dex_files;
449 relative_patcher_ = relative_patcher;
450 SetMultiOatRelativePatcherAdjustment();
451
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000452 if (compiling_boot_image_) {
453 CHECK(image_writer_ != nullptr);
Mathieu Chartierda5b28a2015-11-05 08:03:47 -0800454 }
Vladimir Markob163bb72015-03-31 21:49:49 +0100455 InstructionSet instruction_set = compiler_driver_->GetInstructionSet();
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000456 CHECK_EQ(instruction_set, oat_header_->GetInstructionSet());
Vladimir Markof4da6752014-08-01 19:04:18 +0100457
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000458 uint32_t offset = size_;
Ian Rogersca368cb2013-11-15 15:52:08 -0800459 {
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000460 TimingLogger::ScopedTiming split("InitOatClasses", timings_);
Ian Rogersca368cb2013-11-15 15:52:08 -0800461 offset = InitOatClasses(offset);
462 }
463 {
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000464 TimingLogger::ScopedTiming split("InitOatMaps", timings_);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100465 offset = InitOatMaps(offset);
466 }
467 {
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000468 TimingLogger::ScopedTiming split("InitOatCode", timings_);
Ian Rogersca368cb2013-11-15 15:52:08 -0800469 offset = InitOatCode(offset);
470 }
471 {
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000472 TimingLogger::ScopedTiming split("InitOatCodeDexFiles", timings_);
Ian Rogersca368cb2013-11-15 15:52:08 -0800473 offset = InitOatCodeDexFiles(offset);
474 }
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700475 size_ = offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700476
Mathieu Chartierda5b28a2015-11-05 08:03:47 -0800477 if (!HasBootImage()) {
Vladimir Marko09d09432015-09-08 13:47:48 +0100478 // Allocate space for app dex cache arrays in the .bss section.
479 size_t bss_start = RoundUp(size_, kPageSize);
480 size_t pointer_size = GetInstructionSetPointerSize(instruction_set);
481 bss_size_ = 0u;
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000482 for (const DexFile* dex_file : *dex_files_) {
Vladimir Marko09d09432015-09-08 13:47:48 +0100483 dex_cache_arrays_offsets_.Put(dex_file, bss_start + bss_size_);
484 DexCacheArraysLayout layout(pointer_size, dex_file);
485 bss_size_ += layout.Size();
486 }
487 }
488
Brian Carlstrome24fa612011-09-29 00:53:55 -0700489 CHECK_EQ(dex_files_->size(), oat_dex_files_.size());
Mathieu Chartierda5b28a2015-11-05 08:03:47 -0800490 if (compiling_boot_image_) {
491 CHECK_EQ(image_writer_ != nullptr,
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000492 oat_header_->GetStoreValueByKey(OatHeader::kImageLocationKey) == nullptr);
Mathieu Chartierda5b28a2015-11-05 08:03:47 -0800493 }
Vladimir Marko9bdf1082016-01-21 12:15:52 +0000494
495 write_state_ = WriteState::kWriteRoData;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700496}
497
Ian Rogers0571d352011-11-03 19:51:38 -0700498OatWriter::~OatWriter() {
Ian Rogers0571d352011-11-03 19:51:38 -0700499}
500
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100501struct OatWriter::GcMapDataAccess {
Vladimir Marko35831e82015-09-11 11:59:18 +0100502 static ArrayRef<const uint8_t> GetData(const CompiledMethod* compiled_method) ALWAYS_INLINE {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100503 return compiled_method->GetGcMap();
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100504 }
505
506 static uint32_t GetOffset(OatClass* oat_class, size_t method_offsets_index) ALWAYS_INLINE {
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800507 uint32_t offset = oat_class->method_headers_[method_offsets_index].gc_map_offset_;
508 return offset == 0u ? 0u :
509 (oat_class->method_offsets_[method_offsets_index].code_offset_ & ~1) - offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100510 }
511
512 static void SetOffset(OatClass* oat_class, size_t method_offsets_index, uint32_t offset)
513 ALWAYS_INLINE {
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800514 oat_class->method_headers_[method_offsets_index].gc_map_offset_ =
515 (oat_class->method_offsets_[method_offsets_index].code_offset_ & ~1) - offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100516 }
517
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800518 static const char* Name() {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100519 return "GC map";
520 }
521};
522
523struct OatWriter::MappingTableDataAccess {
Vladimir Marko35831e82015-09-11 11:59:18 +0100524 static ArrayRef<const uint8_t> GetData(const CompiledMethod* compiled_method) ALWAYS_INLINE {
Nicolas Geoffray376b2bb2014-12-09 14:26:32 +0000525 return compiled_method->GetMappingTable();
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100526 }
527
528 static uint32_t GetOffset(OatClass* oat_class, size_t method_offsets_index) ALWAYS_INLINE {
Vladimir Marko8a630572014-04-09 18:45:35 +0100529 uint32_t offset = oat_class->method_headers_[method_offsets_index].mapping_table_offset_;
530 return offset == 0u ? 0u :
531 (oat_class->method_offsets_[method_offsets_index].code_offset_ & ~1) - offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100532 }
533
534 static void SetOffset(OatClass* oat_class, size_t method_offsets_index, uint32_t offset)
535 ALWAYS_INLINE {
Vladimir Marko8a630572014-04-09 18:45:35 +0100536 oat_class->method_headers_[method_offsets_index].mapping_table_offset_ =
537 (oat_class->method_offsets_[method_offsets_index].code_offset_ & ~1) - offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100538 }
539
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800540 static const char* Name() {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100541 return "mapping table";
542 }
543};
544
545struct OatWriter::VmapTableDataAccess {
Vladimir Marko35831e82015-09-11 11:59:18 +0100546 static ArrayRef<const uint8_t> GetData(const CompiledMethod* compiled_method) ALWAYS_INLINE {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800547 return compiled_method->GetVmapTable();
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100548 }
549
550 static uint32_t GetOffset(OatClass* oat_class, size_t method_offsets_index) ALWAYS_INLINE {
Vladimir Marko8a630572014-04-09 18:45:35 +0100551 uint32_t offset = oat_class->method_headers_[method_offsets_index].vmap_table_offset_;
552 return offset == 0u ? 0u :
553 (oat_class->method_offsets_[method_offsets_index].code_offset_ & ~1) - offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100554 }
555
556 static void SetOffset(OatClass* oat_class, size_t method_offsets_index, uint32_t offset)
557 ALWAYS_INLINE {
Vladimir Marko8a630572014-04-09 18:45:35 +0100558 oat_class->method_headers_[method_offsets_index].vmap_table_offset_ =
559 (oat_class->method_offsets_[method_offsets_index].code_offset_ & ~1) - offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100560 }
561
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800562 static const char* Name() {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100563 return "vmap table";
564 }
565};
566
567class OatWriter::DexMethodVisitor {
568 public:
569 DexMethodVisitor(OatWriter* writer, size_t offset)
570 : writer_(writer),
571 offset_(offset),
572 dex_file_(nullptr),
573 class_def_index_(DexFile::kDexNoIndex) {
574 }
575
576 virtual bool StartClass(const DexFile* dex_file, size_t class_def_index) {
577 DCHECK(dex_file_ == nullptr);
578 DCHECK_EQ(class_def_index_, DexFile::kDexNoIndex);
579 dex_file_ = dex_file;
580 class_def_index_ = class_def_index;
581 return true;
582 }
583
584 virtual bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it) = 0;
585
586 virtual bool EndClass() {
587 if (kIsDebugBuild) {
588 dex_file_ = nullptr;
589 class_def_index_ = DexFile::kDexNoIndex;
590 }
591 return true;
592 }
593
594 size_t GetOffset() const {
595 return offset_;
596 }
597
598 protected:
599 virtual ~DexMethodVisitor() { }
600
601 OatWriter* const writer_;
602
603 // The offset is usually advanced for each visited method by the derived class.
604 size_t offset_;
605
606 // The dex file and class def index are set in StartClass().
607 const DexFile* dex_file_;
608 size_t class_def_index_;
609};
610
611class OatWriter::OatDexMethodVisitor : public DexMethodVisitor {
612 public:
613 OatDexMethodVisitor(OatWriter* writer, size_t offset)
614 : DexMethodVisitor(writer, offset),
615 oat_class_index_(0u),
616 method_offsets_index_(0u) {
617 }
618
619 bool StartClass(const DexFile* dex_file, size_t class_def_index) {
620 DexMethodVisitor::StartClass(dex_file, class_def_index);
621 DCHECK_LT(oat_class_index_, writer_->oat_classes_.size());
622 method_offsets_index_ = 0u;
623 return true;
624 }
625
626 bool EndClass() {
627 ++oat_class_index_;
628 return DexMethodVisitor::EndClass();
629 }
630
631 protected:
632 size_t oat_class_index_;
633 size_t method_offsets_index_;
634};
635
636class OatWriter::InitOatClassesMethodVisitor : public DexMethodVisitor {
637 public:
638 InitOatClassesMethodVisitor(OatWriter* writer, size_t offset)
639 : DexMethodVisitor(writer, offset),
640 compiled_methods_(),
641 num_non_null_compiled_methods_(0u) {
Vladimir Marko49b0f452015-12-10 13:49:19 +0000642 size_t num_classes = 0u;
643 for (const OatDexFile& oat_dex_file : writer_->oat_dex_files_) {
644 num_classes += oat_dex_file.class_offsets_.size();
645 }
646 writer_->oat_classes_.reserve(num_classes);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100647 compiled_methods_.reserve(256u);
648 }
649
650 bool StartClass(const DexFile* dex_file, size_t class_def_index) {
651 DexMethodVisitor::StartClass(dex_file, class_def_index);
652 compiled_methods_.clear();
653 num_non_null_compiled_methods_ = 0u;
654 return true;
655 }
656
Artem Udovichenkod9786b02015-10-14 16:36:55 +0300657 bool VisitMethod(size_t class_def_method_index ATTRIBUTE_UNUSED,
658 const ClassDataItemIterator& it) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100659 // Fill in the compiled_methods_ array for methods that have a
660 // CompiledMethod. We track the number of non-null entries in
661 // num_non_null_compiled_methods_ since we only want to allocate
662 // OatMethodOffsets for the compiled methods.
663 uint32_t method_idx = it.GetMemberIndex();
664 CompiledMethod* compiled_method =
665 writer_->compiler_driver_->GetCompiledMethod(MethodReference(dex_file_, method_idx));
666 compiled_methods_.push_back(compiled_method);
667 if (compiled_method != nullptr) {
668 ++num_non_null_compiled_methods_;
669 }
670 return true;
671 }
672
673 bool EndClass() {
674 ClassReference class_ref(dex_file_, class_def_index_);
675 CompiledClass* compiled_class = writer_->compiler_driver_->GetCompiledClass(class_ref);
676 mirror::Class::Status status;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700677 if (compiled_class != nullptr) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100678 status = compiled_class->GetStatus();
679 } else if (writer_->compiler_driver_->GetVerificationResults()->IsClassRejected(class_ref)) {
680 status = mirror::Class::kStatusError;
681 } else {
682 status = mirror::Class::kStatusNotReady;
683 }
684
Vladimir Marko49b0f452015-12-10 13:49:19 +0000685 writer_->oat_classes_.emplace_back(offset_,
686 compiled_methods_,
687 num_non_null_compiled_methods_,
688 status);
689 offset_ += writer_->oat_classes_.back().SizeOf();
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100690 return DexMethodVisitor::EndClass();
691 }
692
693 private:
Vladimir Marko49b0f452015-12-10 13:49:19 +0000694 dchecked_vector<CompiledMethod*> compiled_methods_;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100695 size_t num_non_null_compiled_methods_;
696};
697
698class OatWriter::InitCodeMethodVisitor : public OatDexMethodVisitor {
699 public:
700 InitCodeMethodVisitor(OatWriter* writer, size_t offset)
David Srbecky009e2a62015-04-15 02:46:30 +0100701 : OatDexMethodVisitor(writer, offset),
David Srbecky009e2a62015-04-15 02:46:30 +0100702 debuggable_(writer->GetCompilerDriver()->GetCompilerOptions().GetDebuggable()) {
David Srbeckyf8980872015-05-22 17:04:47 +0100703 writer_->absolute_patch_locations_.reserve(
Vladimir Markof4da6752014-08-01 19:04:18 +0100704 writer_->compiler_driver_->GetNonRelativeLinkerPatchCount());
705 }
706
707 bool EndClass() {
708 OatDexMethodVisitor::EndClass();
709 if (oat_class_index_ == writer_->oat_classes_.size()) {
Vladimir Marko71b0ddf2015-04-02 19:45:06 +0100710 offset_ = writer_->relative_patcher_->ReserveSpaceEnd(offset_);
Vladimir Markof4da6752014-08-01 19:04:18 +0100711 }
712 return true;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100713 }
714
715 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it)
Mathieu Chartier90443472015-07-16 20:32:27 -0700716 SHARED_REQUIRES(Locks::mutator_lock_) {
Vladimir Marko49b0f452015-12-10 13:49:19 +0000717 OatClass* oat_class = &writer_->oat_classes_[oat_class_index_];
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100718 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index);
719
720 if (compiled_method != nullptr) {
721 // Derived from CompiledMethod.
722 uint32_t quick_code_offset = 0;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100723
Vladimir Marko35831e82015-09-11 11:59:18 +0100724 ArrayRef<const uint8_t> quick_code = compiled_method->GetQuickCode();
725 uint32_t code_size = quick_code.size() * sizeof(uint8_t);
Elliott Hughes956af0f2014-12-11 14:34:28 -0800726 uint32_t thumb_offset = compiled_method->CodeDelta();
Elliott Hughes956af0f2014-12-11 14:34:28 -0800727
David Srbecky009e2a62015-04-15 02:46:30 +0100728 // Deduplicate code arrays if we are not producing debuggable code.
Vladimir Markoc74658b2015-03-31 10:26:41 +0100729 bool deduped = false;
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800730 MethodReference method_ref(dex_file_, it.GetMemberIndex());
Nicolas Geoffrayed6195a2015-07-13 17:02:30 +0000731 if (debuggable_) {
Vladimir Marko944da602016-02-19 12:27:55 +0000732 quick_code_offset = writer_->relative_patcher_->GetOffset(method_ref);
733 if (quick_code_offset != 0u) {
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800734 // Duplicate methods, we want the same code for both of them so that the oat writer puts
735 // the same code in both ArtMethods so that we do not get different oat code at runtime.
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800736 deduped = true;
737 } else {
738 quick_code_offset = NewQuickCodeOffset(compiled_method, it, thumb_offset);
739 }
Nicolas Geoffrayed6195a2015-07-13 17:02:30 +0000740 } else {
741 auto lb = dedupe_map_.lower_bound(compiled_method);
742 if (lb != dedupe_map_.end() && !dedupe_map_.key_comp()(compiled_method, lb->first)) {
743 quick_code_offset = lb->second;
744 deduped = true;
Nicolas Geoffrayf0758792015-07-13 11:56:00 +0000745 } else {
Nicolas Geoffrayed6195a2015-07-13 17:02:30 +0000746 quick_code_offset = NewQuickCodeOffset(compiled_method, it, thumb_offset);
747 dedupe_map_.PutBefore(lb, compiled_method, quick_code_offset);
David Srbecky009e2a62015-04-15 02:46:30 +0100748 }
Elliott Hughes956af0f2014-12-11 14:34:28 -0800749 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100750
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100751 if (code_size != 0) {
Vladimir Marko944da602016-02-19 12:27:55 +0000752 if (writer_->relative_patcher_->GetOffset(method_ref) != 0u) {
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100753 // TODO: Should this be a hard failure?
754 LOG(WARNING) << "Multiple definitions of "
755 << PrettyMethod(method_ref.dex_method_index, *method_ref.dex_file)
Vladimir Marko944da602016-02-19 12:27:55 +0000756 << " offsets " << writer_->relative_patcher_->GetOffset(method_ref)
757 << " " << quick_code_offset;
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100758 } else {
Vladimir Marko944da602016-02-19 12:27:55 +0000759 writer_->relative_patcher_->SetOffset(method_ref, quick_code_offset);
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100760 }
Elliott Hughes956af0f2014-12-11 14:34:28 -0800761 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100762
Elliott Hughes956af0f2014-12-11 14:34:28 -0800763 // Update quick method header.
764 DCHECK_LT(method_offsets_index_, oat_class->method_headers_.size());
765 OatQuickMethodHeader* method_header = &oat_class->method_headers_[method_offsets_index_];
766 uint32_t mapping_table_offset = method_header->mapping_table_offset_;
767 uint32_t vmap_table_offset = method_header->vmap_table_offset_;
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100768 // If we don't have quick code, then we must have a vmap, as that is how the dex2dex
769 // compiler records its transformations.
Vladimir Marko35831e82015-09-11 11:59:18 +0100770 DCHECK(!quick_code.empty() || vmap_table_offset != 0);
Elliott Hughes956af0f2014-12-11 14:34:28 -0800771 uint32_t gc_map_offset = method_header->gc_map_offset_;
772 // The code offset was 0 when the mapping/vmap table offset was set, so it's set
773 // to 0-offset and we need to adjust it by code_offset.
774 uint32_t code_offset = quick_code_offset - thumb_offset;
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100775 if (mapping_table_offset != 0u && code_offset != 0u) {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800776 mapping_table_offset += code_offset;
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100777 DCHECK_LT(mapping_table_offset, code_offset) << "Overflow in oat offsets";
Elliott Hughes956af0f2014-12-11 14:34:28 -0800778 }
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100779 if (vmap_table_offset != 0u && code_offset != 0u) {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800780 vmap_table_offset += code_offset;
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100781 DCHECK_LT(vmap_table_offset, code_offset) << "Overflow in oat offsets";
Elliott Hughes956af0f2014-12-11 14:34:28 -0800782 }
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100783 if (gc_map_offset != 0u && code_offset != 0u) {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800784 gc_map_offset += code_offset;
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100785 DCHECK_LT(gc_map_offset, code_offset) << "Overflow in oat offsets";
Elliott Hughes956af0f2014-12-11 14:34:28 -0800786 }
787 uint32_t frame_size_in_bytes = compiled_method->GetFrameSizeInBytes();
788 uint32_t core_spill_mask = compiled_method->GetCoreSpillMask();
789 uint32_t fp_spill_mask = compiled_method->GetFpSpillMask();
790 *method_header = OatQuickMethodHeader(mapping_table_offset, vmap_table_offset,
791 gc_map_offset, frame_size_in_bytes, core_spill_mask,
792 fp_spill_mask, code_size);
Vladimir Marko7624d252014-05-02 14:40:15 +0100793
Nicolas Geoffrayed6195a2015-07-13 17:02:30 +0000794 if (!deduped) {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800795 // Update offsets. (Checksum is updated when writing.)
796 offset_ += sizeof(*method_header); // Method header is prepended before code.
797 offset_ += code_size;
798 // Record absolute patch locations.
799 if (!compiled_method->GetPatches().empty()) {
800 uintptr_t base_loc = offset_ - code_size - writer_->oat_header_->GetExecutableOffset();
801 for (const LinkerPatch& patch : compiled_method->GetPatches()) {
Vladimir Marko20f85592015-03-19 10:07:02 +0000802 if (!patch.IsPcRelative()) {
David Srbeckyf8980872015-05-22 17:04:47 +0100803 writer_->absolute_patch_locations_.push_back(base_loc + patch.LiteralOffset());
Vladimir Markof4da6752014-08-01 19:04:18 +0100804 }
805 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100806 }
Elliott Hughes956af0f2014-12-11 14:34:28 -0800807 }
Alex Light78382fa2014-06-06 15:45:32 -0700808
David Srbecky91cc06c2016-03-07 16:13:58 +0000809 const CompilerOptions& compiler_options = writer_->compiler_driver_->GetCompilerOptions();
David Srbecky197160d2016-03-07 17:33:57 +0000810 // Exclude quickened dex methods (code_size == 0) since they have no native code.
811 if (compiler_options.GenerateAnyDebugInfo() && code_size != 0) {
812 bool has_code_info = method_header->IsOptimized();
Elliott Hughes956af0f2014-12-11 14:34:28 -0800813 // Record debug information for this function if we are doing that.
David Srbecky197160d2016-03-07 17:33:57 +0000814 debug::MethodDebugInfo info;
815 info.dex_file = dex_file_;
816 info.class_def_index = class_def_index_;
817 info.dex_method_index = it.GetMemberIndex();
818 info.access_flags = it.GetMethodAccessFlags();
819 info.code_item = it.GetMethodCodeItem();
820 info.isa = compiled_method->GetInstructionSet();
821 info.deduped = deduped;
822 info.is_native_debuggable = compiler_options.GetNativeDebuggable();
823 info.is_optimized = method_header->IsOptimized();
824 info.is_code_address_text_relative = true;
825 info.code_address = code_offset - writer_->oat_header_->GetExecutableOffset();
826 info.code_size = code_size;
827 info.frame_size_in_bytes = compiled_method->GetFrameSizeInBytes();
828 info.code_info = has_code_info ? compiled_method->GetVmapTable().data() : nullptr;
829 info.cfi = compiled_method->GetCFIInfo();
830 writer_->method_info_.push_back(info);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100831 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100832
833 if (kIsDebugBuild) {
834 // We expect GC maps except when the class hasn't been verified or the method is native.
835 const CompilerDriver* compiler_driver = writer_->compiler_driver_;
836 ClassReference class_ref(dex_file_, class_def_index_);
837 CompiledClass* compiled_class = compiler_driver->GetCompiledClass(class_ref);
838 mirror::Class::Status status;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700839 if (compiled_class != nullptr) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100840 status = compiled_class->GetStatus();
841 } else if (compiler_driver->GetVerificationResults()->IsClassRejected(class_ref)) {
842 status = mirror::Class::kStatusError;
843 } else {
844 status = mirror::Class::kStatusNotReady;
845 }
Vladimir Marko35831e82015-09-11 11:59:18 +0100846 ArrayRef<const uint8_t> gc_map = compiled_method->GetGcMap();
847 if (!gc_map.empty()) {
848 size_t gc_map_size = gc_map.size() * sizeof(gc_map[0]);
Andreas Gampe51829322014-08-25 15:05:04 -0700849 bool is_native = it.MemberIsNative();
Nicolas Geoffray39468442014-09-02 15:17:15 +0100850 CHECK(gc_map_size != 0 || is_native || status < mirror::Class::kStatusVerified)
Vladimir Marko35831e82015-09-11 11:59:18 +0100851 << gc_map_size << " " << (is_native ? "true" : "false") << " "
Nicolas Geoffray39468442014-09-02 15:17:15 +0100852 << (status < mirror::Class::kStatusVerified) << " " << status << " "
853 << PrettyMethod(it.GetMemberIndex(), *dex_file_);
854 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100855 }
856
857 DCHECK_LT(method_offsets_index_, oat_class->method_offsets_.size());
858 OatMethodOffsets* offsets = &oat_class->method_offsets_[method_offsets_index_];
859 offsets->code_offset_ = quick_code_offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100860 ++method_offsets_index_;
861 }
862
863 return true;
864 }
865
866 private:
Vladimir Marko20f85592015-03-19 10:07:02 +0000867 struct CodeOffsetsKeyComparator {
868 bool operator()(const CompiledMethod* lhs, const CompiledMethod* rhs) const {
Vladimir Marko35831e82015-09-11 11:59:18 +0100869 // Code is deduplicated by CompilerDriver, compare only data pointers.
870 if (lhs->GetQuickCode().data() != rhs->GetQuickCode().data()) {
871 return lhs->GetQuickCode().data() < rhs->GetQuickCode().data();
Vladimir Marko20f85592015-03-19 10:07:02 +0000872 }
873 // If the code is the same, all other fields are likely to be the same as well.
Vladimir Marko35831e82015-09-11 11:59:18 +0100874 if (UNLIKELY(lhs->GetMappingTable().data() != rhs->GetMappingTable().data())) {
875 return lhs->GetMappingTable().data() < rhs->GetMappingTable().data();
Vladimir Marko20f85592015-03-19 10:07:02 +0000876 }
Vladimir Marko35831e82015-09-11 11:59:18 +0100877 if (UNLIKELY(lhs->GetVmapTable().data() != rhs->GetVmapTable().data())) {
878 return lhs->GetVmapTable().data() < rhs->GetVmapTable().data();
Vladimir Marko20f85592015-03-19 10:07:02 +0000879 }
Vladimir Marko35831e82015-09-11 11:59:18 +0100880 if (UNLIKELY(lhs->GetGcMap().data() != rhs->GetGcMap().data())) {
881 return lhs->GetGcMap().data() < rhs->GetGcMap().data();
Vladimir Marko20f85592015-03-19 10:07:02 +0000882 }
Vladimir Marko35831e82015-09-11 11:59:18 +0100883 if (UNLIKELY(lhs->GetPatches().data() != rhs->GetPatches().data())) {
884 return lhs->GetPatches().data() < rhs->GetPatches().data();
Vladimir Marko20f85592015-03-19 10:07:02 +0000885 }
886 return false;
887 }
888 };
889
David Srbecky009e2a62015-04-15 02:46:30 +0100890 uint32_t NewQuickCodeOffset(CompiledMethod* compiled_method,
891 const ClassDataItemIterator& it,
892 uint32_t thumb_offset) {
893 offset_ = writer_->relative_patcher_->ReserveSpace(
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100894 offset_, compiled_method, MethodReference(dex_file_, it.GetMemberIndex()));
David Srbecky009e2a62015-04-15 02:46:30 +0100895 offset_ = compiled_method->AlignCode(offset_);
896 DCHECK_ALIGNED_PARAM(offset_,
897 GetInstructionSetAlignment(compiled_method->GetInstructionSet()));
898 return offset_ + sizeof(OatQuickMethodHeader) + thumb_offset;
899 }
900
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100901 // Deduplication is already done on a pointer basis by the compiler driver,
902 // so we can simply compare the pointers to find out if things are duplicated.
Vladimir Marko8a630572014-04-09 18:45:35 +0100903 SafeMap<const CompiledMethod*, uint32_t, CodeOffsetsKeyComparator> dedupe_map_;
David Srbecky2f6cdb02015-04-11 00:17:53 +0100904
David Srbecky009e2a62015-04-15 02:46:30 +0100905 // Cache of compiler's --debuggable option.
906 const bool debuggable_;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100907};
908
909template <typename DataAccess>
910class OatWriter::InitMapMethodVisitor : public OatDexMethodVisitor {
911 public:
912 InitMapMethodVisitor(OatWriter* writer, size_t offset)
913 : OatDexMethodVisitor(writer, offset) {
914 }
915
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700916 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it ATTRIBUTE_UNUSED)
Mathieu Chartier90443472015-07-16 20:32:27 -0700917 SHARED_REQUIRES(Locks::mutator_lock_) {
Vladimir Marko49b0f452015-12-10 13:49:19 +0000918 OatClass* oat_class = &writer_->oat_classes_[oat_class_index_];
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100919 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index);
920
921 if (compiled_method != nullptr) {
922 DCHECK_LT(method_offsets_index_, oat_class->method_offsets_.size());
923 DCHECK_EQ(DataAccess::GetOffset(oat_class, method_offsets_index_), 0u);
924
Vladimir Marko35831e82015-09-11 11:59:18 +0100925 ArrayRef<const uint8_t> map = DataAccess::GetData(compiled_method);
926 uint32_t map_size = map.size() * sizeof(map[0]);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100927 if (map_size != 0u) {
Vladimir Marko35831e82015-09-11 11:59:18 +0100928 auto lb = dedupe_map_.lower_bound(map.data());
929 if (lb != dedupe_map_.end() && !dedupe_map_.key_comp()(map.data(), lb->first)) {
Vladimir Markobd72fc12014-07-09 16:06:40 +0100930 DataAccess::SetOffset(oat_class, method_offsets_index_, lb->second);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100931 } else {
932 DataAccess::SetOffset(oat_class, method_offsets_index_, offset_);
Vladimir Marko35831e82015-09-11 11:59:18 +0100933 dedupe_map_.PutBefore(lb, map.data(), offset_);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100934 offset_ += map_size;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100935 }
936 }
937 ++method_offsets_index_;
938 }
939
940 return true;
941 }
942
943 private:
944 // Deduplication is already done on a pointer basis by the compiler driver,
945 // so we can simply compare the pointers to find out if things are duplicated.
Vladimir Marko35831e82015-09-11 11:59:18 +0100946 SafeMap<const uint8_t*, uint32_t> dedupe_map_;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100947};
948
949class OatWriter::InitImageMethodVisitor : public OatDexMethodVisitor {
950 public:
951 InitImageMethodVisitor(OatWriter* writer, size_t offset)
Jeff Haoc7d11882015-02-03 15:08:39 -0800952 : OatDexMethodVisitor(writer, offset),
953 pointer_size_(GetInstructionSetPointerSize(writer_->compiler_driver_->GetInstructionSet())) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100954 }
955
956 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it)
Mathieu Chartier90443472015-07-16 20:32:27 -0700957 SHARED_REQUIRES(Locks::mutator_lock_) {
Jeff Haodcdc85b2015-12-04 14:06:18 -0800958 const DexFile::TypeId& type_id =
959 dex_file_->GetTypeId(dex_file_->GetClassDef(class_def_index_).class_idx_);
960 const char* class_descriptor = dex_file_->GetTypeDescriptor(type_id);
961 // Skip methods that are not in the image.
962 if (!writer_->GetCompilerDriver()->IsImageClass(class_descriptor)) {
963 return true;
964 }
965
Vladimir Marko49b0f452015-12-10 13:49:19 +0000966 OatClass* oat_class = &writer_->oat_classes_[oat_class_index_];
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100967 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index);
968
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800969 OatMethodOffsets offsets(0u);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100970 if (compiled_method != nullptr) {
971 DCHECK_LT(method_offsets_index_, oat_class->method_offsets_.size());
972 offsets = oat_class->method_offsets_[method_offsets_index_];
973 ++method_offsets_index_;
974 }
975
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100976 ClassLinker* linker = Runtime::Current()->GetClassLinker();
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100977 // Unchecked as we hold mutator_lock_ on entry.
978 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800979 StackHandleScope<1> hs(soa.Self());
Mathieu Chartier673ed3d2015-08-28 14:56:43 -0700980 Handle<mirror::DexCache> dex_cache(hs.NewHandle(linker->FindDexCache(
981 Thread::Current(), *dex_file_)));
Mathieu Chartierfbc31082016-01-24 11:59:56 -0800982 ArtMethod* method;
983 if (writer_->HasBootImage()) {
984 const InvokeType invoke_type = it.GetMethodInvokeType(
985 dex_file_->GetClassDef(class_def_index_));
986 method = linker->ResolveMethod<ClassLinker::kNoICCECheckForCache>(
987 *dex_file_,
988 it.GetMemberIndex(),
989 dex_cache,
990 ScopedNullHandle<mirror::ClassLoader>(),
991 nullptr,
992 invoke_type);
993 if (method == nullptr) {
994 LOG(INTERNAL_FATAL) << "Unexpected failure to resolve a method: "
995 << PrettyMethod(it.GetMemberIndex(), *dex_file_, true);
996 soa.Self()->AssertPendingException();
997 mirror::Throwable* exc = soa.Self()->GetException();
998 std::string dump = exc->Dump();
999 LOG(FATAL) << dump;
1000 UNREACHABLE();
1001 }
1002 } else {
1003 // Should already have been resolved by the compiler, just peek into the dex cache.
1004 // It may not be resolved if the class failed to verify, in this case, don't set the
1005 // entrypoint. This is not fatal since the dex cache will contain a resolution method.
1006 method = dex_cache->GetResolvedMethod(it.GetMemberIndex(), linker->GetImagePointerSize());
Andreas Gamped9efea62014-07-21 22:56:08 -07001007 }
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001008 if (method != nullptr &&
1009 compiled_method != nullptr &&
1010 compiled_method->GetQuickCode().size() != 0) {
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +01001011 method->SetEntryPointFromQuickCompiledCodePtrSize(
1012 reinterpret_cast<void*>(offsets.code_offset_), pointer_size_);
1013 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001014
1015 return true;
1016 }
Jeff Haoc7d11882015-02-03 15:08:39 -08001017
1018 protected:
1019 const size_t pointer_size_;
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001020};
1021
1022class OatWriter::WriteCodeMethodVisitor : public OatDexMethodVisitor {
1023 public:
1024 WriteCodeMethodVisitor(OatWriter* writer, OutputStream* out, const size_t file_offset,
Vladimir Markof4da6752014-08-01 19:04:18 +01001025 size_t relative_offset) SHARED_LOCK_FUNCTION(Locks::mutator_lock_)
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001026 : OatDexMethodVisitor(writer, relative_offset),
1027 out_(out),
Vladimir Markof4da6752014-08-01 19:04:18 +01001028 file_offset_(file_offset),
Vladimir Marko7c2ad5a2014-09-24 12:42:55 +01001029 soa_(Thread::Current()),
1030 no_thread_suspension_(soa_.Self(), "OatWriter patching"),
Vladimir Markof4da6752014-08-01 19:04:18 +01001031 class_linker_(Runtime::Current()->GetClassLinker()),
1032 dex_cache_(nullptr) {
Vladimir Marko09d09432015-09-08 13:47:48 +01001033 patched_code_.reserve(16 * KB);
Mathieu Chartierda5b28a2015-11-05 08:03:47 -08001034 if (writer_->HasBootImage()) {
Vladimir Markof4da6752014-08-01 19:04:18 +01001035 // If we're creating the image, the address space must be ready so that we can apply patches.
1036 CHECK(writer_->image_writer_->IsImageAddressSpaceReady());
Vladimir Markof4da6752014-08-01 19:04:18 +01001037 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001038 }
1039
Vladimir Markof4da6752014-08-01 19:04:18 +01001040 ~WriteCodeMethodVisitor() UNLOCK_FUNCTION(Locks::mutator_lock_) {
Vladimir Markof4da6752014-08-01 19:04:18 +01001041 }
1042
1043 bool StartClass(const DexFile* dex_file, size_t class_def_index)
Mathieu Chartier90443472015-07-16 20:32:27 -07001044 SHARED_REQUIRES(Locks::mutator_lock_) {
Vladimir Markof4da6752014-08-01 19:04:18 +01001045 OatDexMethodVisitor::StartClass(dex_file, class_def_index);
1046 if (dex_cache_ == nullptr || dex_cache_->GetDexFile() != dex_file) {
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001047 dex_cache_ = class_linker_->FindDexCache(Thread::Current(), *dex_file);
Vladimir Markof4da6752014-08-01 19:04:18 +01001048 }
1049 return true;
1050 }
1051
Mathieu Chartier90443472015-07-16 20:32:27 -07001052 bool EndClass() SHARED_REQUIRES(Locks::mutator_lock_) {
Vladimir Markof4da6752014-08-01 19:04:18 +01001053 bool result = OatDexMethodVisitor::EndClass();
1054 if (oat_class_index_ == writer_->oat_classes_.size()) {
1055 DCHECK(result); // OatDexMethodVisitor::EndClass() never fails.
Vladimir Marko20f85592015-03-19 10:07:02 +00001056 offset_ = writer_->relative_patcher_->WriteThunks(out_, offset_);
Vladimir Markof4da6752014-08-01 19:04:18 +01001057 if (UNLIKELY(offset_ == 0u)) {
1058 PLOG(ERROR) << "Failed to write final relative call thunks";
1059 result = false;
1060 }
1061 }
1062 return result;
1063 }
1064
1065 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it)
Mathieu Chartier90443472015-07-16 20:32:27 -07001066 SHARED_REQUIRES(Locks::mutator_lock_) {
Vladimir Marko49b0f452015-12-10 13:49:19 +00001067 OatClass* oat_class = &writer_->oat_classes_[oat_class_index_];
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001068 const CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index);
1069
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001070 // No thread suspension since dex_cache_ that may get invalidated if that occurs.
1071 ScopedAssertNoThreadSuspension tsc(Thread::Current(), __FUNCTION__);
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001072 if (compiled_method != nullptr) { // ie. not an abstract method
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001073 size_t file_offset = file_offset_;
1074 OutputStream* out = out_;
1075
Vladimir Marko35831e82015-09-11 11:59:18 +01001076 ArrayRef<const uint8_t> quick_code = compiled_method->GetQuickCode();
1077 uint32_t code_size = quick_code.size() * sizeof(uint8_t);
Nicolas Geoffrayf0758792015-07-13 11:56:00 +00001078
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +01001079 // Deduplicate code arrays.
1080 const OatMethodOffsets& method_offsets = oat_class->method_offsets_[method_offsets_index_];
1081 if (method_offsets.code_offset_ > offset_) {
1082 offset_ = writer_->relative_patcher_->WriteThunks(out, offset_);
1083 if (offset_ == 0u) {
1084 ReportWriteFailure("relative call thunk", it);
1085 return false;
Nicolas Geoffrayf0758792015-07-13 11:56:00 +00001086 }
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +01001087 uint32_t aligned_offset = compiled_method->AlignCode(offset_);
1088 uint32_t aligned_code_delta = aligned_offset - offset_;
1089 if (aligned_code_delta != 0) {
1090 if (!writer_->WriteCodeAlignment(out, aligned_code_delta)) {
1091 ReportWriteFailure("code alignment padding", it);
1092 return false;
1093 }
1094 offset_ += aligned_code_delta;
1095 DCHECK_OFFSET_();
1096 }
1097 DCHECK_ALIGNED_PARAM(offset_,
1098 GetInstructionSetAlignment(compiled_method->GetInstructionSet()));
1099 DCHECK_EQ(method_offsets.code_offset_,
1100 offset_ + sizeof(OatQuickMethodHeader) + compiled_method->CodeDelta())
1101 << PrettyMethod(it.GetMemberIndex(), *dex_file_);
1102 const OatQuickMethodHeader& method_header =
1103 oat_class->method_headers_[method_offsets_index_];
Vladimir Marko49b0f452015-12-10 13:49:19 +00001104 if (!writer_->WriteData(out, &method_header, sizeof(method_header))) {
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +01001105 ReportWriteFailure("method header", it);
1106 return false;
1107 }
1108 writer_->size_method_header_ += sizeof(method_header);
1109 offset_ += sizeof(method_header);
Nicolas Geoffrayed6195a2015-07-13 17:02:30 +00001110 DCHECK_OFFSET_();
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +01001111
1112 if (!compiled_method->GetPatches().empty()) {
Vladimir Marko35831e82015-09-11 11:59:18 +01001113 patched_code_.assign(quick_code.begin(), quick_code.end());
1114 quick_code = ArrayRef<const uint8_t>(patched_code_);
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +01001115 for (const LinkerPatch& patch : compiled_method->GetPatches()) {
Vladimir Marko944da602016-02-19 12:27:55 +00001116 uint32_t literal_offset = patch.LiteralOffset();
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +01001117 if (patch.Type() == kLinkerPatchCallRelative) {
1118 // NOTE: Relative calls across oat files are not supported.
1119 uint32_t target_offset = GetTargetOffset(patch);
Vladimir Marko944da602016-02-19 12:27:55 +00001120 writer_->relative_patcher_->PatchCall(&patched_code_,
1121 literal_offset,
1122 offset_ + literal_offset,
1123 target_offset);
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +01001124 } else if (patch.Type() == kLinkerPatchDexCacheArray) {
1125 uint32_t target_offset = GetDexCacheOffset(patch);
Vladimir Marko944da602016-02-19 12:27:55 +00001126 writer_->relative_patcher_->PatchDexCacheReference(&patched_code_,
1127 patch,
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +01001128 offset_ + literal_offset,
1129 target_offset);
1130 } else if (patch.Type() == kLinkerPatchCall) {
1131 uint32_t target_offset = GetTargetOffset(patch);
Vladimir Marko944da602016-02-19 12:27:55 +00001132 PatchCodeAddress(&patched_code_, literal_offset, target_offset);
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +01001133 } else if (patch.Type() == kLinkerPatchMethod) {
1134 ArtMethod* method = GetTargetMethod(patch);
Vladimir Marko944da602016-02-19 12:27:55 +00001135 PatchMethodAddress(&patched_code_, literal_offset, method);
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +01001136 } else if (patch.Type() == kLinkerPatchType) {
1137 mirror::Class* type = GetTargetType(patch);
Vladimir Marko944da602016-02-19 12:27:55 +00001138 PatchObjectAddress(&patched_code_, literal_offset, type);
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +01001139 }
1140 }
1141 }
1142
Vladimir Marko49b0f452015-12-10 13:49:19 +00001143 if (!writer_->WriteData(out, quick_code.data(), code_size)) {
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +01001144 ReportWriteFailure("method code", it);
1145 return false;
1146 }
1147 writer_->size_code_ += code_size;
1148 offset_ += code_size;
Nicolas Geoffrayf0758792015-07-13 11:56:00 +00001149 }
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +01001150 DCHECK_OFFSET_();
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001151 ++method_offsets_index_;
1152 }
1153
1154 return true;
1155 }
1156
1157 private:
1158 OutputStream* const out_;
Vladimir Marko7c2ad5a2014-09-24 12:42:55 +01001159 const size_t file_offset_;
1160 const ScopedObjectAccess soa_;
1161 const ScopedAssertNoThreadSuspension no_thread_suspension_;
Vladimir Markof4da6752014-08-01 19:04:18 +01001162 ClassLinker* const class_linker_;
1163 mirror::DexCache* dex_cache_;
1164 std::vector<uint8_t> patched_code_;
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001165
1166 void ReportWriteFailure(const char* what, const ClassDataItemIterator& it) {
1167 PLOG(ERROR) << "Failed to write " << what << " for "
1168 << PrettyMethod(it.GetMemberIndex(), *dex_file_) << " to " << out_->GetLocation();
1169 }
Vladimir Markof4da6752014-08-01 19:04:18 +01001170
Mathieu Chartiere401d142015-04-22 13:56:20 -07001171 ArtMethod* GetTargetMethod(const LinkerPatch& patch)
Mathieu Chartier90443472015-07-16 20:32:27 -07001172 SHARED_REQUIRES(Locks::mutator_lock_) {
Vladimir Markof4da6752014-08-01 19:04:18 +01001173 MethodReference ref = patch.TargetMethod();
1174 mirror::DexCache* dex_cache =
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001175 (dex_file_ == ref.dex_file) ? dex_cache_ : class_linker_->FindDexCache(
1176 Thread::Current(), *ref.dex_file);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001177 ArtMethod* method = dex_cache->GetResolvedMethod(
1178 ref.dex_method_index, class_linker_->GetImagePointerSize());
Vladimir Markof4da6752014-08-01 19:04:18 +01001179 CHECK(method != nullptr);
1180 return method;
1181 }
1182
Mathieu Chartier90443472015-07-16 20:32:27 -07001183 uint32_t GetTargetOffset(const LinkerPatch& patch) SHARED_REQUIRES(Locks::mutator_lock_) {
Vladimir Marko944da602016-02-19 12:27:55 +00001184 uint32_t target_offset = writer_->relative_patcher_->GetOffset(patch.TargetMethod());
1185 // If there's no new compiled code, either we're compiling an app and the target method
1186 // is in the boot image, or we need to point to the correct trampoline.
Vladimir Markof4da6752014-08-01 19:04:18 +01001187 if (UNLIKELY(target_offset == 0)) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001188 ArtMethod* target = GetTargetMethod(patch);
Vladimir Markof4da6752014-08-01 19:04:18 +01001189 DCHECK(target != nullptr);
Jeff Haoa0acc2d2015-01-27 11:22:04 -08001190 size_t size = GetInstructionSetPointerSize(writer_->compiler_driver_->GetInstructionSet());
1191 const void* oat_code_offset = target->GetEntryPointFromQuickCompiledCodePtrSize(size);
1192 if (oat_code_offset != 0) {
Vladimir Marko944da602016-02-19 12:27:55 +00001193 DCHECK(!writer_->HasBootImage());
Jeff Haoa0acc2d2015-01-27 11:22:04 -08001194 DCHECK(!Runtime::Current()->GetClassLinker()->IsQuickResolutionStub(oat_code_offset));
1195 DCHECK(!Runtime::Current()->GetClassLinker()->IsQuickToInterpreterBridge(oat_code_offset));
1196 DCHECK(!Runtime::Current()->GetClassLinker()->IsQuickGenericJniStub(oat_code_offset));
1197 target_offset = PointerToLowMemUInt32(oat_code_offset);
1198 } else {
1199 target_offset = target->IsNative()
1200 ? writer_->oat_header_->GetQuickGenericJniTrampolineOffset()
1201 : writer_->oat_header_->GetQuickToInterpreterBridgeOffset();
1202 }
Vladimir Markof4da6752014-08-01 19:04:18 +01001203 }
1204 return target_offset;
1205 }
1206
1207 mirror::Class* GetTargetType(const LinkerPatch& patch)
Mathieu Chartier90443472015-07-16 20:32:27 -07001208 SHARED_REQUIRES(Locks::mutator_lock_) {
Vladimir Markof4da6752014-08-01 19:04:18 +01001209 mirror::DexCache* dex_cache = (dex_file_ == patch.TargetTypeDexFile())
Mathieu Chartier673ed3d2015-08-28 14:56:43 -07001210 ? dex_cache_ : class_linker_->FindDexCache(Thread::Current(), *patch.TargetTypeDexFile());
Vladimir Markof4da6752014-08-01 19:04:18 +01001211 mirror::Class* type = dex_cache->GetResolvedType(patch.TargetTypeIndex());
1212 CHECK(type != nullptr);
1213 return type;
1214 }
1215
Mathieu Chartier90443472015-07-16 20:32:27 -07001216 uint32_t GetDexCacheOffset(const LinkerPatch& patch) SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartierda5b28a2015-11-05 08:03:47 -08001217 if (writer_->HasBootImage()) {
Vladimir Marko944da602016-02-19 12:27:55 +00001218 uintptr_t element = writer_->image_writer_->GetDexCacheArrayElementImageAddress<uintptr_t>(
1219 patch.TargetDexCacheDexFile(), patch.TargetDexCacheElementOffset());
1220 size_t oat_index = writer_->image_writer_->GetOatIndexForDexCache(dex_cache_);
1221 uintptr_t oat_data = writer_->image_writer_->GetOatDataBegin(oat_index);
Vladimir Marko05792b92015-08-03 11:56:49 +01001222 return element - oat_data;
Vladimir Marko20f85592015-03-19 10:07:02 +00001223 } else {
Vladimir Marko09d09432015-09-08 13:47:48 +01001224 size_t start = writer_->dex_cache_arrays_offsets_.Get(patch.TargetDexCacheDexFile());
1225 return start + patch.TargetDexCacheElementOffset();
Vladimir Marko20f85592015-03-19 10:07:02 +00001226 }
1227 }
1228
Vladimir Markof4da6752014-08-01 19:04:18 +01001229 void PatchObjectAddress(std::vector<uint8_t>* code, uint32_t offset, mirror::Object* object)
Mathieu Chartier90443472015-07-16 20:32:27 -07001230 SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartierda5b28a2015-11-05 08:03:47 -08001231 if (writer_->HasBootImage()) {
Vladimir Markof4da6752014-08-01 19:04:18 +01001232 object = writer_->image_writer_->GetImageAddress(object);
Vladimir Marko09d09432015-09-08 13:47:48 +01001233 } else {
1234 // NOTE: We're using linker patches for app->boot references when the image can
1235 // be relocated and therefore we need to emit .oat_patches. We're not using this
1236 // for app->app references, so check that the object is in the image space.
1237 DCHECK(Runtime::Current()->GetHeap()->FindSpaceFromObject(object, false)->IsImageSpace());
Vladimir Markof4da6752014-08-01 19:04:18 +01001238 }
Vladimir Marko09d09432015-09-08 13:47:48 +01001239 // Note: We only patch targeting Objects in image which is in the low 4gb.
Vladimir Markof4da6752014-08-01 19:04:18 +01001240 uint32_t address = PointerToLowMemUInt32(object);
1241 DCHECK_LE(offset + 4, code->size());
1242 uint8_t* data = &(*code)[offset];
1243 data[0] = address & 0xffu;
1244 data[1] = (address >> 8) & 0xffu;
1245 data[2] = (address >> 16) & 0xffu;
1246 data[3] = (address >> 24) & 0xffu;
1247 }
1248
Mathieu Chartiere401d142015-04-22 13:56:20 -07001249 void PatchMethodAddress(std::vector<uint8_t>* code, uint32_t offset, ArtMethod* method)
Mathieu Chartier90443472015-07-16 20:32:27 -07001250 SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartierda5b28a2015-11-05 08:03:47 -08001251 if (writer_->HasBootImage()) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07001252 method = writer_->image_writer_->GetImageMethodAddress(method);
Vladimir Marko09d09432015-09-08 13:47:48 +01001253 } else if (kIsDebugBuild) {
1254 // NOTE: We're using linker patches for app->boot references when the image can
1255 // be relocated and therefore we need to emit .oat_patches. We're not using this
1256 // for app->app references, so check that the method is an image method.
Jeff Haodcdc85b2015-12-04 14:06:18 -08001257 std::vector<gc::space::ImageSpace*> image_spaces =
1258 Runtime::Current()->GetHeap()->GetBootImageSpaces();
1259 bool contains_method = false;
1260 for (gc::space::ImageSpace* image_space : image_spaces) {
1261 size_t method_offset = reinterpret_cast<const uint8_t*>(method) - image_space->Begin();
1262 contains_method |=
1263 image_space->GetImageHeader().GetMethodsSection().Contains(method_offset);
1264 }
1265 CHECK(contains_method);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001266 }
Vladimir Marko09d09432015-09-08 13:47:48 +01001267 // Note: We only patch targeting ArtMethods in image which is in the low 4gb.
Mathieu Chartiere401d142015-04-22 13:56:20 -07001268 uint32_t address = PointerToLowMemUInt32(method);
1269 DCHECK_LE(offset + 4, code->size());
1270 uint8_t* data = &(*code)[offset];
1271 data[0] = address & 0xffu;
1272 data[1] = (address >> 8) & 0xffu;
1273 data[2] = (address >> 16) & 0xffu;
1274 data[3] = (address >> 24) & 0xffu;
1275 }
1276
Vladimir Markof4da6752014-08-01 19:04:18 +01001277 void PatchCodeAddress(std::vector<uint8_t>* code, uint32_t offset, uint32_t target_offset)
Mathieu Chartier90443472015-07-16 20:32:27 -07001278 SHARED_REQUIRES(Locks::mutator_lock_) {
Vladimir Marko09d09432015-09-08 13:47:48 +01001279 uint32_t address = target_offset;
Mathieu Chartierda5b28a2015-11-05 08:03:47 -08001280 if (writer_->HasBootImage()) {
Vladimir Marko944da602016-02-19 12:27:55 +00001281 size_t oat_index = writer_->image_writer_->GetOatIndexForDexCache(dex_cache_);
1282 // TODO: Clean up offset types.
1283 // The target_offset must be treated as signed for cross-oat patching.
1284 const void* target = reinterpret_cast<const void*>(
1285 writer_->image_writer_->GetOatDataBegin(oat_index) +
1286 static_cast<int32_t>(target_offset));
1287 address = PointerToLowMemUInt32(target);
Vladimir Marko09d09432015-09-08 13:47:48 +01001288 }
Vladimir Markof4da6752014-08-01 19:04:18 +01001289 DCHECK_LE(offset + 4, code->size());
1290 uint8_t* data = &(*code)[offset];
1291 data[0] = address & 0xffu;
1292 data[1] = (address >> 8) & 0xffu;
1293 data[2] = (address >> 16) & 0xffu;
1294 data[3] = (address >> 24) & 0xffu;
1295 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001296};
1297
1298template <typename DataAccess>
1299class OatWriter::WriteMapMethodVisitor : public OatDexMethodVisitor {
1300 public:
1301 WriteMapMethodVisitor(OatWriter* writer, OutputStream* out, const size_t file_offset,
Mathieu Chartier957ca1c2014-11-21 16:51:29 -08001302 size_t relative_offset)
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001303 : OatDexMethodVisitor(writer, relative_offset),
1304 out_(out),
1305 file_offset_(file_offset) {
1306 }
1307
1308 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it) {
Vladimir Marko49b0f452015-12-10 13:49:19 +00001309 OatClass* oat_class = &writer_->oat_classes_[oat_class_index_];
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001310 const CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index);
1311
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001312 if (compiled_method != nullptr) { // ie. not an abstract method
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001313 size_t file_offset = file_offset_;
1314 OutputStream* out = out_;
1315
1316 uint32_t map_offset = DataAccess::GetOffset(oat_class, method_offsets_index_);
1317 ++method_offsets_index_;
1318
1319 // Write deduplicated map.
Vladimir Marko35831e82015-09-11 11:59:18 +01001320 ArrayRef<const uint8_t> map = DataAccess::GetData(compiled_method);
1321 size_t map_size = map.size() * sizeof(map[0]);
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001322 DCHECK((map_size == 0u && map_offset == 0u) ||
1323 (map_size != 0u && map_offset != 0u && map_offset <= offset_))
Mathieu Chartier957ca1c2014-11-21 16:51:29 -08001324 << map_size << " " << map_offset << " " << offset_ << " "
1325 << PrettyMethod(it.GetMemberIndex(), *dex_file_) << " for " << DataAccess::Name();
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001326 if (map_size != 0u && map_offset == offset_) {
Vladimir Marko49b0f452015-12-10 13:49:19 +00001327 if (UNLIKELY(!writer_->WriteData(out, map.data(), map_size))) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001328 ReportWriteFailure(it);
1329 return false;
1330 }
1331 offset_ += map_size;
1332 }
1333 DCHECK_OFFSET_();
1334 }
1335
1336 return true;
1337 }
1338
1339 private:
1340 OutputStream* const out_;
1341 size_t const file_offset_;
1342
1343 void ReportWriteFailure(const ClassDataItemIterator& it) {
1344 PLOG(ERROR) << "Failed to write " << DataAccess::Name() << " for "
1345 << PrettyMethod(it.GetMemberIndex(), *dex_file_) << " to " << out_->GetLocation();
1346 }
1347};
1348
1349// Visit all methods from all classes in all dex files with the specified visitor.
1350bool OatWriter::VisitDexMethods(DexMethodVisitor* visitor) {
1351 for (const DexFile* dex_file : *dex_files_) {
1352 const size_t class_def_count = dex_file->NumClassDefs();
1353 for (size_t class_def_index = 0; class_def_index != class_def_count; ++class_def_index) {
1354 if (UNLIKELY(!visitor->StartClass(dex_file, class_def_index))) {
1355 return false;
1356 }
1357 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
Ian Rogers13735952014-10-08 12:43:28 -07001358 const uint8_t* class_data = dex_file->GetClassData(class_def);
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001359 if (class_data != nullptr) { // ie not an empty class, such as a marker interface
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001360 ClassDataItemIterator it(*dex_file, class_data);
1361 while (it.HasNextStaticField()) {
1362 it.Next();
1363 }
1364 while (it.HasNextInstanceField()) {
1365 it.Next();
1366 }
1367 size_t class_def_method_index = 0u;
1368 while (it.HasNextDirectMethod()) {
1369 if (!visitor->VisitMethod(class_def_method_index, it)) {
1370 return false;
1371 }
1372 ++class_def_method_index;
1373 it.Next();
1374 }
1375 while (it.HasNextVirtualMethod()) {
1376 if (UNLIKELY(!visitor->VisitMethod(class_def_method_index, it))) {
1377 return false;
1378 }
1379 ++class_def_method_index;
1380 it.Next();
1381 }
1382 }
1383 if (UNLIKELY(!visitor->EndClass())) {
1384 return false;
1385 }
1386 }
1387 }
1388 return true;
1389}
1390
Vladimir Marko9bdf1082016-01-21 12:15:52 +00001391size_t OatWriter::InitOatHeader(InstructionSet instruction_set,
1392 const InstructionSetFeatures* instruction_set_features,
1393 uint32_t num_dex_files,
1394 SafeMap<std::string, std::string>* key_value_store) {
1395 TimingLogger::ScopedTiming split("InitOatHeader", timings_);
1396 oat_header_.reset(OatHeader::Create(instruction_set,
1397 instruction_set_features,
1398 num_dex_files,
1399 key_value_store));
1400 size_oat_header_ += sizeof(OatHeader);
1401 size_oat_header_key_value_store_ += oat_header_->GetHeaderSize() - sizeof(OatHeader);
Andreas Gampe22f8e5c2014-07-09 11:38:21 -07001402 return oat_header_->GetHeaderSize();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001403}
1404
1405size_t OatWriter::InitOatDexFiles(size_t offset) {
Vladimir Marko9bdf1082016-01-21 12:15:52 +00001406 TimingLogger::ScopedTiming split("InitOatDexFiles", timings_);
1407 // Initialize offsets of dex files.
Vladimir Marko49b0f452015-12-10 13:49:19 +00001408 for (OatDexFile& oat_dex_file : oat_dex_files_) {
Vladimir Marko9bdf1082016-01-21 12:15:52 +00001409 oat_dex_file.offset_ = offset;
1410 offset += oat_dex_file.SizeOf();
Artem Udovichenkod9786b02015-10-14 16:36:55 +03001411 }
1412 return offset;
1413}
1414
Brian Carlstrom389efb02012-01-11 12:06:26 -08001415size_t OatWriter::InitOatClasses(size_t offset) {
Brian Carlstrom389efb02012-01-11 12:06:26 -08001416 // calculate the offsets within OatDexFiles to OatClasses
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001417 InitOatClassesMethodVisitor visitor(this, offset);
1418 bool success = VisitDexMethods(&visitor);
1419 CHECK(success);
1420 offset = visitor.GetOffset();
Brian Carlstromba150c32013-08-27 17:31:03 -07001421
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001422 // Update oat_dex_files_.
1423 auto oat_class_it = oat_classes_.begin();
Vladimir Marko49b0f452015-12-10 13:49:19 +00001424 for (OatDexFile& oat_dex_file : oat_dex_files_) {
1425 for (uint32_t& class_offset : oat_dex_file.class_offsets_) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001426 DCHECK(oat_class_it != oat_classes_.end());
Vladimir Marko49b0f452015-12-10 13:49:19 +00001427 class_offset = oat_class_it->offset_;
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001428 ++oat_class_it;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001429 }
Brian Carlstrome24fa612011-09-29 00:53:55 -07001430 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001431 CHECK(oat_class_it == oat_classes_.end());
1432
1433 return offset;
1434}
1435
1436size_t OatWriter::InitOatMaps(size_t offset) {
1437 #define VISIT(VisitorType) \
1438 do { \
1439 VisitorType visitor(this, offset); \
1440 bool success = VisitDexMethods(&visitor); \
1441 DCHECK(success); \
1442 offset = visitor.GetOffset(); \
1443 } while (false)
1444
1445 VISIT(InitMapMethodVisitor<GcMapDataAccess>);
1446 VISIT(InitMapMethodVisitor<MappingTableDataAccess>);
1447 VISIT(InitMapMethodVisitor<VmapTableDataAccess>);
1448
1449 #undef VISIT
1450
Brian Carlstrome24fa612011-09-29 00:53:55 -07001451 return offset;
1452}
1453
1454size_t OatWriter::InitOatCode(size_t offset) {
1455 // calculate the offsets within OatHeader to executable code
1456 size_t old_offset = offset;
Dave Allison50abf0a2014-06-23 13:19:59 -07001457 size_t adjusted_offset = offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001458 // required to be on a new page boundary
1459 offset = RoundUp(offset, kPageSize);
1460 oat_header_->SetExecutableOffset(offset);
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001461 size_executable_offset_alignment_ = offset - old_offset;
Mathieu Chartierda5b28a2015-11-05 08:03:47 -08001462 if (compiler_driver_->IsBootImage()) {
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001463 InstructionSet instruction_set = compiler_driver_->GetInstructionSet();
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001464
Ian Rogers848871b2013-08-05 10:56:33 -07001465 #define DO_TRAMPOLINE(field, fn_name) \
1466 offset = CompiledCode::AlignCode(offset, instruction_set); \
Dave Allison50abf0a2014-06-23 13:19:59 -07001467 adjusted_offset = offset + CompiledCode::CodeDelta(instruction_set); \
1468 oat_header_->Set ## fn_name ## Offset(adjusted_offset); \
Ian Rogers848871b2013-08-05 10:56:33 -07001469 field.reset(compiler_driver_->Create ## fn_name()); \
1470 offset += field->size();
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001471
Ian Rogers848871b2013-08-05 10:56:33 -07001472 DO_TRAMPOLINE(jni_dlsym_lookup_, JniDlsymLookup);
Andreas Gampe2da88232014-02-27 12:26:20 -08001473 DO_TRAMPOLINE(quick_generic_jni_trampoline_, QuickGenericJniTrampoline);
Jeff Hao88474b42013-10-23 16:24:40 -07001474 DO_TRAMPOLINE(quick_imt_conflict_trampoline_, QuickImtConflictTrampoline);
Ian Rogers848871b2013-08-05 10:56:33 -07001475 DO_TRAMPOLINE(quick_resolution_trampoline_, QuickResolutionTrampoline);
1476 DO_TRAMPOLINE(quick_to_interpreter_bridge_, QuickToInterpreterBridge);
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001477
Ian Rogers848871b2013-08-05 10:56:33 -07001478 #undef DO_TRAMPOLINE
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001479 } else {
Ian Rogers848871b2013-08-05 10:56:33 -07001480 oat_header_->SetInterpreterToInterpreterBridgeOffset(0);
1481 oat_header_->SetInterpreterToCompiledCodeBridgeOffset(0);
1482 oat_header_->SetJniDlsymLookupOffset(0);
Andreas Gampe2da88232014-02-27 12:26:20 -08001483 oat_header_->SetQuickGenericJniTrampolineOffset(0);
Jeff Hao88474b42013-10-23 16:24:40 -07001484 oat_header_->SetQuickImtConflictTrampolineOffset(0);
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001485 oat_header_->SetQuickResolutionTrampolineOffset(0);
Ian Rogers848871b2013-08-05 10:56:33 -07001486 oat_header_->SetQuickToInterpreterBridgeOffset(0);
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001487 }
Brian Carlstrome24fa612011-09-29 00:53:55 -07001488 return offset;
1489}
1490
1491size_t OatWriter::InitOatCodeDexFiles(size_t offset) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001492 #define VISIT(VisitorType) \
1493 do { \
1494 VisitorType visitor(this, offset); \
1495 bool success = VisitDexMethods(&visitor); \
1496 DCHECK(success); \
1497 offset = visitor.GetOffset(); \
1498 } while (false)
Brian Carlstrome24fa612011-09-29 00:53:55 -07001499
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001500 VISIT(InitCodeMethodVisitor);
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001501 if (HasImage()) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001502 VISIT(InitImageMethodVisitor);
Ian Rogers0571d352011-11-03 19:51:38 -07001503 }
Logan Chien8b977d32012-02-21 19:14:55 +08001504
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001505 #undef VISIT
1506
Brian Carlstrome24fa612011-09-29 00:53:55 -07001507 return offset;
1508}
1509
David Srbeckybc90fd02015-04-22 19:40:27 +01001510bool OatWriter::WriteRodata(OutputStream* out) {
Vladimir Marko9bdf1082016-01-21 12:15:52 +00001511 CHECK(write_state_ == WriteState::kWriteRoData);
1512
1513 if (!WriteClassOffsets(out)) {
1514 LOG(ERROR) << "Failed to write class offsets to " << out->GetLocation();
Vladimir Markof4da6752014-08-01 19:04:18 +01001515 return false;
1516 }
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001517
Vladimir Marko9bdf1082016-01-21 12:15:52 +00001518 if (!WriteClasses(out)) {
1519 LOG(ERROR) << "Failed to write classes to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001520 return false;
1521 }
1522
Vladimir Markof4da6752014-08-01 19:04:18 +01001523 off_t tables_end_offset = out->Seek(0, kSeekCurrent);
Vladimir Marko49b0f452015-12-10 13:49:19 +00001524 if (tables_end_offset == static_cast<off_t>(-1)) {
Vladimir Markof4da6752014-08-01 19:04:18 +01001525 LOG(ERROR) << "Failed to seek to oat code position in " << out->GetLocation();
1526 return false;
1527 }
Vladimir Marko9bdf1082016-01-21 12:15:52 +00001528 size_t file_offset = oat_data_offset_;
Vladimir Markof4da6752014-08-01 19:04:18 +01001529 size_t relative_offset = static_cast<size_t>(tables_end_offset) - file_offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001530 relative_offset = WriteMaps(out, file_offset, relative_offset);
1531 if (relative_offset == 0) {
1532 LOG(ERROR) << "Failed to write oat code to " << out->GetLocation();
1533 return false;
1534 }
1535
David Srbeckybc90fd02015-04-22 19:40:27 +01001536 // Write padding.
1537 off_t new_offset = out->Seek(size_executable_offset_alignment_, kSeekCurrent);
1538 relative_offset += size_executable_offset_alignment_;
1539 DCHECK_EQ(relative_offset, oat_header_->GetExecutableOffset());
1540 size_t expected_file_offset = file_offset + relative_offset;
1541 if (static_cast<uint32_t>(new_offset) != expected_file_offset) {
1542 PLOG(ERROR) << "Failed to seek to oat code section. Actual: " << new_offset
1543 << " Expected: " << expected_file_offset << " File: " << out->GetLocation();
1544 return 0;
1545 }
1546 DCHECK_OFFSET();
1547
Vladimir Marko9bdf1082016-01-21 12:15:52 +00001548 write_state_ = WriteState::kWriteText;
David Srbeckybc90fd02015-04-22 19:40:27 +01001549 return true;
1550}
1551
1552bool OatWriter::WriteCode(OutputStream* out) {
Vladimir Marko9bdf1082016-01-21 12:15:52 +00001553 CHECK(write_state_ == WriteState::kWriteText);
1554
Vladimir Marko944da602016-02-19 12:27:55 +00001555 SetMultiOatRelativePatcherAdjustment();
1556
David Srbeckybc90fd02015-04-22 19:40:27 +01001557 const size_t file_offset = oat_data_offset_;
1558 size_t relative_offset = oat_header_->GetExecutableOffset();
1559 DCHECK_OFFSET();
1560
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001561 relative_offset = WriteCode(out, file_offset, relative_offset);
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001562 if (relative_offset == 0) {
Ian Rogers3d504072014-03-01 09:16:49 -08001563 LOG(ERROR) << "Failed to write oat code to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001564 return false;
1565 }
1566
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001567 relative_offset = WriteCodeDexFiles(out, file_offset, relative_offset);
1568 if (relative_offset == 0) {
Ian Rogers3d504072014-03-01 09:16:49 -08001569 LOG(ERROR) << "Failed to write oat code for dex files to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001570 return false;
1571 }
1572
Vladimir Markof4da6752014-08-01 19:04:18 +01001573 const off_t oat_end_file_offset = out->Seek(0, kSeekCurrent);
Vladimir Marko49b0f452015-12-10 13:49:19 +00001574 if (oat_end_file_offset == static_cast<off_t>(-1)) {
Vladimir Markof4da6752014-08-01 19:04:18 +01001575 LOG(ERROR) << "Failed to get oat end file offset in " << out->GetLocation();
1576 return false;
1577 }
1578
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001579 if (kIsDebugBuild) {
1580 uint32_t size_total = 0;
1581 #define DO_STAT(x) \
Anwar Ghuloum75a43f12013-08-13 17:22:14 -07001582 VLOG(compiler) << #x "=" << PrettySize(x) << " (" << x << "B)"; \
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001583 size_total += x;
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001584
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001585 DO_STAT(size_dex_file_alignment_);
1586 DO_STAT(size_executable_offset_alignment_);
1587 DO_STAT(size_oat_header_);
Andreas Gampe22f8e5c2014-07-09 11:38:21 -07001588 DO_STAT(size_oat_header_key_value_store_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001589 DO_STAT(size_dex_file_);
Ian Rogers848871b2013-08-05 10:56:33 -07001590 DO_STAT(size_interpreter_to_interpreter_bridge_);
1591 DO_STAT(size_interpreter_to_compiled_code_bridge_);
1592 DO_STAT(size_jni_dlsym_lookup_);
Andreas Gampe2da88232014-02-27 12:26:20 -08001593 DO_STAT(size_quick_generic_jni_trampoline_);
Jeff Hao88474b42013-10-23 16:24:40 -07001594 DO_STAT(size_quick_imt_conflict_trampoline_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001595 DO_STAT(size_quick_resolution_trampoline_);
Ian Rogers848871b2013-08-05 10:56:33 -07001596 DO_STAT(size_quick_to_interpreter_bridge_);
1597 DO_STAT(size_trampoline_alignment_);
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001598 DO_STAT(size_method_header_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001599 DO_STAT(size_code_);
1600 DO_STAT(size_code_alignment_);
Vladimir Markof4da6752014-08-01 19:04:18 +01001601 DO_STAT(size_relative_call_thunks_);
Vladimir Markoc74658b2015-03-31 10:26:41 +01001602 DO_STAT(size_misc_thunks_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001603 DO_STAT(size_mapping_table_);
1604 DO_STAT(size_vmap_table_);
1605 DO_STAT(size_gc_map_);
1606 DO_STAT(size_oat_dex_file_location_size_);
1607 DO_STAT(size_oat_dex_file_location_data_);
1608 DO_STAT(size_oat_dex_file_location_checksum_);
1609 DO_STAT(size_oat_dex_file_offset_);
Vladimir Marko9bdf1082016-01-21 12:15:52 +00001610 DO_STAT(size_oat_dex_file_class_offsets_offset_);
Vladimir Marko49b0f452015-12-10 13:49:19 +00001611 DO_STAT(size_oat_dex_file_lookup_table_offset_);
Vladimir Marko49b0f452015-12-10 13:49:19 +00001612 DO_STAT(size_oat_lookup_table_alignment_);
1613 DO_STAT(size_oat_lookup_table_);
Vladimir Marko9bdf1082016-01-21 12:15:52 +00001614 DO_STAT(size_oat_class_offsets_alignment_);
1615 DO_STAT(size_oat_class_offsets_);
Brian Carlstromba150c32013-08-27 17:31:03 -07001616 DO_STAT(size_oat_class_type_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001617 DO_STAT(size_oat_class_status_);
Brian Carlstromba150c32013-08-27 17:31:03 -07001618 DO_STAT(size_oat_class_method_bitmaps_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001619 DO_STAT(size_oat_class_method_offsets_);
1620 #undef DO_STAT
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001621
Anwar Ghuloum75a43f12013-08-13 17:22:14 -07001622 VLOG(compiler) << "size_total=" << PrettySize(size_total) << " (" << size_total << "B)"; \
Vladimir Markof4da6752014-08-01 19:04:18 +01001623 CHECK_EQ(file_offset + size_total, static_cast<size_t>(oat_end_file_offset));
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001624 CHECK_EQ(size_, size_total);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001625 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001626
Vladimir Markof4da6752014-08-01 19:04:18 +01001627 CHECK_EQ(file_offset + size_, static_cast<size_t>(oat_end_file_offset));
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001628 CHECK_EQ(size_, relative_offset);
1629
Vladimir Marko9bdf1082016-01-21 12:15:52 +00001630 write_state_ = WriteState::kWriteHeader;
1631 return true;
1632}
1633
1634bool OatWriter::WriteHeader(OutputStream* out,
1635 uint32_t image_file_location_oat_checksum,
1636 uintptr_t image_file_location_oat_begin,
1637 int32_t image_patch_delta) {
1638 CHECK(write_state_ == WriteState::kWriteHeader);
1639
1640 oat_header_->SetImageFileLocationOatChecksum(image_file_location_oat_checksum);
1641 oat_header_->SetImageFileLocationOatDataBegin(image_file_location_oat_begin);
1642 if (compiler_driver_->IsBootImage()) {
1643 CHECK_EQ(image_patch_delta, 0);
1644 CHECK_EQ(oat_header_->GetImagePatchDelta(), 0);
1645 } else {
1646 CHECK_ALIGNED(image_patch_delta, kPageSize);
1647 oat_header_->SetImagePatchDelta(image_patch_delta);
1648 }
Vladimir Marko49b0f452015-12-10 13:49:19 +00001649 oat_header_->UpdateChecksumWithHeaderData();
1650
Vladimir Marko9bdf1082016-01-21 12:15:52 +00001651 const size_t file_offset = oat_data_offset_;
1652
1653 off_t current_offset = out->Seek(0, kSeekCurrent);
1654 if (current_offset == static_cast<off_t>(-1)) {
1655 PLOG(ERROR) << "Failed to get current offset from " << out->GetLocation();
1656 return false;
1657 }
Vladimir Marko49b0f452015-12-10 13:49:19 +00001658 if (out->Seek(file_offset, kSeekSet) == static_cast<off_t>(-1)) {
Vladimir Markof4da6752014-08-01 19:04:18 +01001659 PLOG(ERROR) << "Failed to seek to oat header position in " << out->GetLocation();
1660 return false;
1661 }
David Srbeckybc90fd02015-04-22 19:40:27 +01001662 DCHECK_EQ(file_offset, static_cast<size_t>(out->Seek(0, kSeekCurrent)));
Vladimir Marko9bdf1082016-01-21 12:15:52 +00001663
1664 // Flush all other data before writing the header.
1665 if (!out->Flush()) {
1666 PLOG(ERROR) << "Failed to flush before writing oat header to " << out->GetLocation();
1667 return false;
1668 }
1669 // Write the header.
1670 size_t header_size = oat_header_->GetHeaderSize();
Vladimir Marko49b0f452015-12-10 13:49:19 +00001671 if (!out->WriteFully(oat_header_.get(), header_size)) {
Vladimir Markof4da6752014-08-01 19:04:18 +01001672 PLOG(ERROR) << "Failed to write oat header to " << out->GetLocation();
1673 return false;
1674 }
Vladimir Marko9bdf1082016-01-21 12:15:52 +00001675 // Flush the header data.
1676 if (!out->Flush()) {
1677 PLOG(ERROR) << "Failed to flush after writing oat header to " << out->GetLocation();
Vladimir Markof4da6752014-08-01 19:04:18 +01001678 return false;
1679 }
Vladimir Markof4da6752014-08-01 19:04:18 +01001680
Vladimir Marko9bdf1082016-01-21 12:15:52 +00001681 if (out->Seek(current_offset, kSeekSet) == static_cast<off_t>(-1)) {
1682 PLOG(ERROR) << "Failed to seek back after writing oat header to " << out->GetLocation();
1683 return false;
1684 }
1685 DCHECK_EQ(current_offset, out->Seek(0, kSeekCurrent));
1686
1687 write_state_ = WriteState::kDone;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001688 return true;
1689}
1690
Vladimir Marko9bdf1082016-01-21 12:15:52 +00001691bool OatWriter::WriteClassOffsets(OutputStream* out) {
1692 for (OatDexFile& oat_dex_file : oat_dex_files_) {
1693 if (oat_dex_file.class_offsets_offset_ != 0u) {
1694 uint32_t expected_offset = oat_data_offset_ + oat_dex_file.class_offsets_offset_;
1695 off_t actual_offset = out->Seek(expected_offset, kSeekSet);
1696 if (static_cast<uint32_t>(actual_offset) != expected_offset) {
1697 PLOG(ERROR) << "Failed to seek to oat class offsets section. Actual: " << actual_offset
1698 << " Expected: " << expected_offset << " File: " << oat_dex_file.GetLocation();
Vladimir Marko919f5532016-01-20 19:13:01 +00001699 return false;
1700 }
Vladimir Marko9bdf1082016-01-21 12:15:52 +00001701 if (!oat_dex_file.WriteClassOffsets(this, out)) {
1702 return false;
1703 }
1704 }
1705 }
1706 return true;
1707}
1708
1709bool OatWriter::WriteClasses(OutputStream* out) {
1710 for (OatClass& oat_class : oat_classes_) {
1711 if (!oat_class.Write(this, out, oat_data_offset_)) {
1712 PLOG(ERROR) << "Failed to write oat methods information to " << out->GetLocation();
1713 return false;
Vladimir Marko919f5532016-01-20 19:13:01 +00001714 }
Artem Udovichenkod9786b02015-10-14 16:36:55 +03001715 }
1716 return true;
1717}
1718
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001719size_t OatWriter::WriteMaps(OutputStream* out, const size_t file_offset, size_t relative_offset) {
1720 #define VISIT(VisitorType) \
1721 do { \
1722 VisitorType visitor(this, out, file_offset, relative_offset); \
1723 if (UNLIKELY(!VisitDexMethods(&visitor))) { \
1724 return 0; \
1725 } \
1726 relative_offset = visitor.GetOffset(); \
1727 } while (false)
1728
1729 size_t gc_maps_offset = relative_offset;
1730 VISIT(WriteMapMethodVisitor<GcMapDataAccess>);
1731 size_gc_map_ = relative_offset - gc_maps_offset;
1732
1733 size_t mapping_tables_offset = relative_offset;
1734 VISIT(WriteMapMethodVisitor<MappingTableDataAccess>);
1735 size_mapping_table_ = relative_offset - mapping_tables_offset;
1736
1737 size_t vmap_tables_offset = relative_offset;
1738 VISIT(WriteMapMethodVisitor<VmapTableDataAccess>);
1739 size_vmap_table_ = relative_offset - vmap_tables_offset;
1740
1741 #undef VISIT
1742
1743 return relative_offset;
1744}
1745
1746size_t OatWriter::WriteCode(OutputStream* out, const size_t file_offset, size_t relative_offset) {
Mathieu Chartierda5b28a2015-11-05 08:03:47 -08001747 if (compiler_driver_->IsBootImage()) {
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001748 InstructionSet instruction_set = compiler_driver_->GetInstructionSet();
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001749
Ian Rogers848871b2013-08-05 10:56:33 -07001750 #define DO_TRAMPOLINE(field) \
1751 do { \
1752 uint32_t aligned_offset = CompiledCode::AlignCode(relative_offset, instruction_set); \
1753 uint32_t alignment_padding = aligned_offset - relative_offset; \
Ian Rogers3d504072014-03-01 09:16:49 -08001754 out->Seek(alignment_padding, kSeekCurrent); \
Ian Rogers848871b2013-08-05 10:56:33 -07001755 size_trampoline_alignment_ += alignment_padding; \
Vladimir Marko49b0f452015-12-10 13:49:19 +00001756 if (!WriteData(out, field->data(), field->size())) { \
Ian Rogers3d504072014-03-01 09:16:49 -08001757 PLOG(ERROR) << "Failed to write " # field " to " << out->GetLocation(); \
Ian Rogers848871b2013-08-05 10:56:33 -07001758 return false; \
1759 } \
1760 size_ ## field += field->size(); \
1761 relative_offset += alignment_padding + field->size(); \
1762 DCHECK_OFFSET(); \
1763 } while (false)
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001764
Ian Rogers848871b2013-08-05 10:56:33 -07001765 DO_TRAMPOLINE(jni_dlsym_lookup_);
Andreas Gampe2da88232014-02-27 12:26:20 -08001766 DO_TRAMPOLINE(quick_generic_jni_trampoline_);
Jeff Hao88474b42013-10-23 16:24:40 -07001767 DO_TRAMPOLINE(quick_imt_conflict_trampoline_);
Ian Rogers848871b2013-08-05 10:56:33 -07001768 DO_TRAMPOLINE(quick_resolution_trampoline_);
1769 DO_TRAMPOLINE(quick_to_interpreter_bridge_);
1770 #undef DO_TRAMPOLINE
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001771 }
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001772 return relative_offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001773}
1774
Ian Rogers3d504072014-03-01 09:16:49 -08001775size_t OatWriter::WriteCodeDexFiles(OutputStream* out,
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001776 const size_t file_offset,
1777 size_t relative_offset) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001778 #define VISIT(VisitorType) \
1779 do { \
1780 VisitorType visitor(this, out, file_offset, relative_offset); \
1781 if (UNLIKELY(!VisitDexMethods(&visitor))) { \
1782 return 0; \
1783 } \
1784 relative_offset = visitor.GetOffset(); \
1785 } while (false)
Brian Carlstrome24fa612011-09-29 00:53:55 -07001786
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001787 VISIT(WriteCodeMethodVisitor);
Brian Carlstrome24fa612011-09-29 00:53:55 -07001788
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001789 #undef VISIT
Brian Carlstrom265091e2013-01-30 14:08:26 -08001790
Vladimir Markob163bb72015-03-31 21:49:49 +01001791 size_code_alignment_ += relative_patcher_->CodeAlignmentSize();
1792 size_relative_call_thunks_ += relative_patcher_->RelativeCallThunksSize();
1793 size_misc_thunks_ += relative_patcher_->MiscThunksSize();
1794
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001795 return relative_offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001796}
1797
Vladimir Marko944da602016-02-19 12:27:55 +00001798bool OatWriter::RecordOatDataOffset(OutputStream* out) {
Vladimir Marko49b0f452015-12-10 13:49:19 +00001799 // Get the elf file offset of the oat file.
1800 const off_t raw_file_offset = out->Seek(0, kSeekCurrent);
1801 if (raw_file_offset == static_cast<off_t>(-1)) {
1802 LOG(ERROR) << "Failed to get file offset in " << out->GetLocation();
1803 return false;
1804 }
1805 oat_data_offset_ = static_cast<size_t>(raw_file_offset);
1806 return true;
1807}
1808
Vladimir Marko9bdf1082016-01-21 12:15:52 +00001809bool OatWriter::ReadDexFileHeader(File* file, OatDexFile* oat_dex_file) {
1810 // Read the dex file header and perform minimal verification.
1811 uint8_t raw_header[sizeof(DexFile::Header)];
1812 if (!file->ReadFully(&raw_header, sizeof(DexFile::Header))) {
1813 PLOG(ERROR) << "Failed to read dex file header. Actual: "
1814 << " File: " << oat_dex_file->GetLocation() << " Output: " << file->GetPath();
1815 return false;
1816 }
1817 if (!ValidateDexFileHeader(raw_header, oat_dex_file->GetLocation())) {
1818 return false;
1819 }
1820
1821 const UnalignedDexFileHeader* header = AsUnalignedDexFileHeader(raw_header);
1822 oat_dex_file->dex_file_size_ = header->file_size_;
1823 oat_dex_file->dex_file_location_checksum_ = header->checksum_;
1824 oat_dex_file->class_offsets_.resize(header->class_defs_size_);
1825 return true;
1826}
1827
1828bool OatWriter::ValidateDexFileHeader(const uint8_t* raw_header, const char* location) {
1829 if (!DexFile::IsMagicValid(raw_header)) {
1830 LOG(ERROR) << "Invalid magic number in dex file header. " << " File: " << location;
1831 return false;
1832 }
1833 if (!DexFile::IsVersionValid(raw_header)) {
1834 LOG(ERROR) << "Invalid version number in dex file header. " << " File: " << location;
1835 return false;
1836 }
1837 const UnalignedDexFileHeader* header = AsUnalignedDexFileHeader(raw_header);
1838 if (header->file_size_ < sizeof(DexFile::Header)) {
1839 LOG(ERROR) << "Dex file header specifies file size insufficient to contain the header."
1840 << " File: " << location;
1841 return false;
1842 }
1843 return true;
1844}
1845
1846bool OatWriter::WriteDexFiles(OutputStream* rodata, File* file) {
1847 TimingLogger::ScopedTiming split("WriteDexFiles", timings_);
1848
1849 // Get the elf file offset of the oat file.
Vladimir Marko944da602016-02-19 12:27:55 +00001850 if (!RecordOatDataOffset(rodata)) {
Vladimir Marko9bdf1082016-01-21 12:15:52 +00001851 return false;
1852 }
1853
1854 // Write dex files.
1855 for (OatDexFile& oat_dex_file : oat_dex_files_) {
1856 if (!WriteDexFile(rodata, file, &oat_dex_file)) {
1857 return false;
1858 }
1859 }
1860
1861 // Close sources.
1862 for (OatDexFile& oat_dex_file : oat_dex_files_) {
1863 oat_dex_file.source_.Clear(); // Get rid of the reference, it's about to be invalidated.
1864 }
1865 zipped_dex_files_.clear();
1866 zip_archives_.clear();
1867 raw_dex_files_.clear();
1868 return true;
1869}
1870
1871bool OatWriter::WriteDexFile(OutputStream* rodata, File* file, OatDexFile* oat_dex_file) {
1872 if (!SeekToDexFile(rodata, file, oat_dex_file)) {
1873 return false;
1874 }
1875 if (oat_dex_file->source_.IsZipEntry()) {
1876 if (!WriteDexFile(rodata, file, oat_dex_file, oat_dex_file->source_.GetZipEntry())) {
1877 return false;
1878 }
1879 } else if (oat_dex_file->source_.IsRawFile()) {
1880 if (!WriteDexFile(rodata, file, oat_dex_file, oat_dex_file->source_.GetRawFile())) {
1881 return false;
1882 }
1883 } else {
1884 DCHECK(oat_dex_file->source_.IsRawData());
1885 if (!WriteDexFile(rodata, oat_dex_file, oat_dex_file->source_.GetRawData())) {
1886 return false;
1887 }
1888 }
1889
1890 // Update current size and account for the written data.
1891 DCHECK_EQ(size_, oat_dex_file->dex_file_offset_);
1892 size_ += oat_dex_file->dex_file_size_;
1893 size_dex_file_ += oat_dex_file->dex_file_size_;
1894 return true;
1895}
1896
1897bool OatWriter::SeekToDexFile(OutputStream* out, File* file, OatDexFile* oat_dex_file) {
1898 // Dex files are required to be 4 byte aligned.
1899 size_t original_offset = size_;
1900 size_t offset = RoundUp(original_offset, 4);
1901 size_dex_file_alignment_ += offset - original_offset;
1902
1903 // Seek to the start of the dex file and flush any pending operations in the stream.
1904 // Verify that, after flushing the stream, the file is at the same offset as the stream.
1905 uint32_t start_offset = oat_data_offset_ + offset;
1906 off_t actual_offset = out->Seek(start_offset, kSeekSet);
1907 if (actual_offset != static_cast<off_t>(start_offset)) {
1908 PLOG(ERROR) << "Failed to seek to dex file section. Actual: " << actual_offset
1909 << " Expected: " << start_offset
1910 << " File: " << oat_dex_file->GetLocation() << " Output: " << file->GetPath();
1911 return false;
1912 }
1913 if (!out->Flush()) {
1914 PLOG(ERROR) << "Failed to flush before writing dex file."
1915 << " File: " << oat_dex_file->GetLocation() << " Output: " << file->GetPath();
1916 return false;
1917 }
1918 actual_offset = lseek(file->Fd(), 0, SEEK_CUR);
1919 if (actual_offset != static_cast<off_t>(start_offset)) {
1920 PLOG(ERROR) << "Stream/file position mismatch! Actual: " << actual_offset
1921 << " Expected: " << start_offset
1922 << " File: " << oat_dex_file->GetLocation() << " Output: " << file->GetPath();
1923 return false;
1924 }
1925
1926 size_ = offset;
1927 oat_dex_file->dex_file_offset_ = offset;
1928 return true;
1929}
1930
1931bool OatWriter::WriteDexFile(OutputStream* rodata,
1932 File* file,
1933 OatDexFile* oat_dex_file,
1934 ZipEntry* dex_file) {
1935 size_t start_offset = oat_data_offset_ + size_;
1936 DCHECK_EQ(static_cast<off_t>(start_offset), rodata->Seek(0, kSeekCurrent));
1937
1938 // Extract the dex file and get the extracted size.
1939 std::string error_msg;
1940 if (!dex_file->ExtractToFile(*file, &error_msg)) {
1941 LOG(ERROR) << "Failed to extract dex file from ZIP entry: " << error_msg
1942 << " File: " << oat_dex_file->GetLocation() << " Output: " << file->GetPath();
1943 return false;
1944 }
1945 if (file->Flush() != 0) {
1946 PLOG(ERROR) << "Failed to flush dex file from ZIP entry."
1947 << " File: " << oat_dex_file->GetLocation() << " Output: " << file->GetPath();
1948 return false;
1949 }
1950 off_t extracted_end = lseek(file->Fd(), 0, SEEK_CUR);
1951 if (extracted_end == static_cast<off_t>(-1)) {
1952 PLOG(ERROR) << "Failed get end offset after writing dex file from ZIP entry."
1953 << " File: " << oat_dex_file->GetLocation() << " Output: " << file->GetPath();
1954 return false;
1955 }
1956 if (extracted_end < static_cast<off_t>(start_offset)) {
1957 LOG(ERROR) << "Dex file end position is before start position! End: " << extracted_end
1958 << " Start: " << start_offset
1959 << " File: " << oat_dex_file->GetLocation() << " Output: " << file->GetPath();
1960 return false;
1961 }
1962 uint64_t extracted_size = static_cast<uint64_t>(extracted_end - start_offset);
1963 if (extracted_size < sizeof(DexFile::Header)) {
1964 LOG(ERROR) << "Extracted dex file is shorter than dex file header. size: "
1965 << extracted_size << " File: " << oat_dex_file->GetLocation();
1966 return false;
1967 }
1968
1969 // Read the dex file header and extract required data to OatDexFile.
1970 off_t actual_offset = lseek(file->Fd(), start_offset, SEEK_SET);
1971 if (actual_offset != static_cast<off_t>(start_offset)) {
1972 PLOG(ERROR) << "Failed to seek back to dex file header. Actual: " << actual_offset
1973 << " Expected: " << start_offset
1974 << " File: " << oat_dex_file->GetLocation() << " Output: " << file->GetPath();
1975 return false;
1976 }
1977 if (!ReadDexFileHeader(file, oat_dex_file)) {
1978 return false;
1979 }
1980 if (extracted_size < oat_dex_file->dex_file_size_) {
1981 LOG(ERROR) << "Extracted truncated dex file. Extracted size: " << extracted_size
1982 << " file size from header: " << oat_dex_file->dex_file_size_
1983 << " File: " << oat_dex_file->GetLocation();
1984 return false;
1985 }
1986
1987 // Override the checksum from header with the CRC from ZIP entry.
1988 oat_dex_file->dex_file_location_checksum_ = dex_file->GetCrc32();
1989
1990 // Seek both file and stream to the end offset.
1991 size_t end_offset = start_offset + oat_dex_file->dex_file_size_;
1992 actual_offset = lseek(file->Fd(), end_offset, SEEK_SET);
1993 if (actual_offset != static_cast<off_t>(end_offset)) {
1994 PLOG(ERROR) << "Failed to seek to end of dex file. Actual: " << actual_offset
1995 << " Expected: " << end_offset
1996 << " File: " << oat_dex_file->GetLocation() << " Output: " << file->GetPath();
1997 return false;
1998 }
1999 actual_offset = rodata->Seek(end_offset, kSeekSet);
2000 if (actual_offset != static_cast<off_t>(end_offset)) {
2001 PLOG(ERROR) << "Failed to seek stream to end of dex file. Actual: " << actual_offset
2002 << " Expected: " << end_offset << " File: " << oat_dex_file->GetLocation();
2003 return false;
2004 }
2005 if (!rodata->Flush()) {
2006 PLOG(ERROR) << "Failed to flush stream after seeking over dex file."
2007 << " File: " << oat_dex_file->GetLocation() << " Output: " << file->GetPath();
2008 return false;
2009 }
2010
2011 // If we extracted more than the size specified in the header, truncate the file.
2012 if (extracted_size > oat_dex_file->dex_file_size_) {
2013 if (file->SetLength(end_offset) != 0) {
2014 PLOG(ERROR) << "Failed to truncate excessive dex file length."
2015 << " File: " << oat_dex_file->GetLocation() << " Output: " << file->GetPath();
2016 return false;
2017 }
2018 }
2019
2020 return true;
2021}
2022
2023bool OatWriter::WriteDexFile(OutputStream* rodata,
2024 File* file,
2025 OatDexFile* oat_dex_file,
2026 File* dex_file) {
2027 size_t start_offset = oat_data_offset_ + size_;
2028 DCHECK_EQ(static_cast<off_t>(start_offset), rodata->Seek(0, kSeekCurrent));
2029
2030 off_t input_offset = lseek(dex_file->Fd(), 0, SEEK_SET);
2031 if (input_offset != static_cast<off_t>(0)) {
2032 PLOG(ERROR) << "Failed to seek to dex file header. Actual: " << input_offset
2033 << " Expected: 0"
2034 << " File: " << oat_dex_file->GetLocation() << " Output: " << file->GetPath();
2035 return false;
2036 }
2037 if (!ReadDexFileHeader(dex_file, oat_dex_file)) {
2038 return false;
2039 }
2040
2041 // Copy the input dex file using sendfile().
2042 if (!file->Copy(dex_file, 0, oat_dex_file->dex_file_size_)) {
2043 PLOG(ERROR) << "Failed to copy dex file to oat file."
2044 << " File: " << oat_dex_file->GetLocation() << " Output: " << file->GetPath();
2045 return false;
2046 }
2047 if (file->Flush() != 0) {
2048 PLOG(ERROR) << "Failed to flush dex file."
2049 << " File: " << oat_dex_file->GetLocation() << " Output: " << file->GetPath();
2050 return false;
2051 }
2052
2053 // Check file position and seek the stream to the end offset.
2054 size_t end_offset = start_offset + oat_dex_file->dex_file_size_;
2055 off_t actual_offset = lseek(file->Fd(), 0, SEEK_CUR);
2056 if (actual_offset != static_cast<off_t>(end_offset)) {
2057 PLOG(ERROR) << "Unexpected file position after copying dex file. Actual: " << actual_offset
2058 << " Expected: " << end_offset
2059 << " File: " << oat_dex_file->GetLocation() << " Output: " << file->GetPath();
2060 return false;
2061 }
2062 actual_offset = rodata->Seek(end_offset, kSeekSet);
2063 if (actual_offset != static_cast<off_t>(end_offset)) {
2064 PLOG(ERROR) << "Failed to seek stream to end of dex file. Actual: " << actual_offset
2065 << " Expected: " << end_offset << " File: " << oat_dex_file->GetLocation();
2066 return false;
2067 }
2068 if (!rodata->Flush()) {
2069 PLOG(ERROR) << "Failed to flush stream after seeking over dex file."
2070 << " File: " << oat_dex_file->GetLocation() << " Output: " << file->GetPath();
2071 return false;
2072 }
2073
2074 return true;
2075}
2076
2077bool OatWriter::WriteDexFile(OutputStream* rodata,
2078 OatDexFile* oat_dex_file,
2079 const uint8_t* dex_file) {
2080 // Note: The raw data has already been checked to contain the header
2081 // and all the data that the header specifies as the file size.
2082 DCHECK(dex_file != nullptr);
2083 DCHECK(ValidateDexFileHeader(dex_file, oat_dex_file->GetLocation()));
2084 const UnalignedDexFileHeader* header = AsUnalignedDexFileHeader(dex_file);
2085
2086 if (!rodata->WriteFully(dex_file, header->file_size_)) {
2087 PLOG(ERROR) << "Failed to write dex file " << oat_dex_file->GetLocation()
2088 << " to " << rodata->GetLocation();
2089 return false;
2090 }
2091 if (!rodata->Flush()) {
2092 PLOG(ERROR) << "Failed to flush stream after writing dex file."
2093 << " File: " << oat_dex_file->GetLocation();
2094 return false;
2095 }
2096
2097 // Update dex file size and resize class offsets in the OatDexFile.
2098 // Note: For raw data, the checksum is passed directly to AddRawDexFileSource().
2099 oat_dex_file->dex_file_size_ = header->file_size_;
2100 oat_dex_file->class_offsets_.resize(header->class_defs_size_);
2101 return true;
2102}
2103
2104bool OatWriter::WriteOatDexFiles(OutputStream* rodata) {
2105 TimingLogger::ScopedTiming split("WriteOatDexFiles", timings_);
2106
2107 // Seek to the start of OatDexFiles, i.e. to the end of the OatHeader. If there are
2108 // no OatDexFiles, no data is actually written to .rodata before WriteHeader() and
2109 // this Seek() ensures that we reserve the space for OatHeader in .rodata.
2110 DCHECK(oat_dex_files_.empty() || oat_dex_files_[0u].offset_ == oat_header_->GetHeaderSize());
2111 uint32_t expected_offset = oat_data_offset_ + oat_header_->GetHeaderSize();
2112 off_t actual_offset = rodata->Seek(expected_offset, kSeekSet);
2113 if (static_cast<uint32_t>(actual_offset) != expected_offset) {
2114 PLOG(ERROR) << "Failed to seek to OatDexFile table section. Actual: " << actual_offset
2115 << " Expected: " << expected_offset << " File: " << rodata->GetLocation();
2116 return false;
2117 }
2118
2119 for (size_t i = 0, size = oat_dex_files_.size(); i != size; ++i) {
2120 OatDexFile* oat_dex_file = &oat_dex_files_[i];
2121
2122 DCHECK_EQ(oat_data_offset_ + oat_dex_file->offset_,
2123 static_cast<size_t>(rodata->Seek(0, kSeekCurrent)));
2124
2125 // Write OatDexFile.
2126 if (!oat_dex_file->Write(this, rodata)) {
2127 PLOG(ERROR) << "Failed to write oat dex information to " << rodata->GetLocation();
2128 return false;
2129 }
2130 }
2131
2132 return true;
2133}
2134
2135bool OatWriter::ExtendForTypeLookupTables(OutputStream* rodata, File* file, size_t offset) {
2136 TimingLogger::ScopedTiming split("ExtendForTypeLookupTables", timings_);
2137
2138 int64_t new_length = oat_data_offset_ + dchecked_integral_cast<int64_t>(offset);
2139 if (file->SetLength(new_length) != 0) {
2140 PLOG(ERROR) << "Failed to extend file for type lookup tables. new_length: " << new_length
2141 << "File: " << file->GetPath();
2142 return false;
2143 }
2144 off_t actual_offset = rodata->Seek(new_length, kSeekSet);
2145 if (actual_offset != static_cast<off_t>(new_length)) {
2146 PLOG(ERROR) << "Failed to seek stream after extending file for type lookup tables."
2147 << " Actual: " << actual_offset << " Expected: " << new_length
2148 << " File: " << rodata->GetLocation();
2149 return false;
2150 }
2151 if (!rodata->Flush()) {
2152 PLOG(ERROR) << "Failed to flush stream after extending for type lookup tables."
2153 << " File: " << rodata->GetLocation();
2154 return false;
2155 }
2156 return true;
2157}
2158
2159bool OatWriter::OpenDexFiles(
2160 File* file,
Andreas Gampe3a2bd292016-01-26 17:23:47 -08002161 bool verify,
Vladimir Marko9bdf1082016-01-21 12:15:52 +00002162 /*out*/ std::unique_ptr<MemMap>* opened_dex_files_map,
2163 /*out*/ std::vector<std::unique_ptr<const DexFile>>* opened_dex_files) {
2164 TimingLogger::ScopedTiming split("OpenDexFiles", timings_);
2165
2166 if (oat_dex_files_.empty()) {
2167 // Nothing to do.
2168 return true;
2169 }
2170
2171 size_t map_offset = oat_dex_files_[0].dex_file_offset_;
2172 size_t length = size_ - map_offset;
2173 std::string error_msg;
2174 std::unique_ptr<MemMap> dex_files_map(MemMap::MapFile(length,
2175 PROT_READ | PROT_WRITE,
2176 MAP_SHARED,
2177 file->Fd(),
2178 oat_data_offset_ + map_offset,
2179 /* low_4gb */ false,
2180 file->GetPath().c_str(),
2181 &error_msg));
2182 if (dex_files_map == nullptr) {
2183 LOG(ERROR) << "Failed to mmap() dex files from oat file. File: " << file->GetPath()
2184 << " error: " << error_msg;
2185 return false;
2186 }
2187 std::vector<std::unique_ptr<const DexFile>> dex_files;
2188 for (OatDexFile& oat_dex_file : oat_dex_files_) {
2189 // Make sure no one messed with input files while we were copying data.
2190 // At the very least we need consistent file size and number of class definitions.
2191 const uint8_t* raw_dex_file =
2192 dex_files_map->Begin() + oat_dex_file.dex_file_offset_ - map_offset;
2193 if (!ValidateDexFileHeader(raw_dex_file, oat_dex_file.GetLocation())) {
2194 // Note: ValidateDexFileHeader() already logged an error message.
2195 LOG(ERROR) << "Failed to verify written dex file header!"
2196 << " Output: " << file->GetPath() << " ~ " << std::hex << map_offset
2197 << " ~ " << static_cast<const void*>(raw_dex_file);
2198 return false;
2199 }
2200 const UnalignedDexFileHeader* header = AsUnalignedDexFileHeader(raw_dex_file);
2201 if (header->file_size_ != oat_dex_file.dex_file_size_) {
2202 LOG(ERROR) << "File size mismatch in written dex file header! Expected: "
2203 << oat_dex_file.dex_file_size_ << " Actual: " << header->file_size_
2204 << " Output: " << file->GetPath();
2205 return false;
2206 }
2207 if (header->class_defs_size_ != oat_dex_file.class_offsets_.size()) {
2208 LOG(ERROR) << "Class defs size mismatch in written dex file header! Expected: "
2209 << oat_dex_file.class_offsets_.size() << " Actual: " << header->class_defs_size_
2210 << " Output: " << file->GetPath();
2211 return false;
2212 }
2213
2214 // Now, open the dex file.
2215 dex_files.emplace_back(DexFile::Open(raw_dex_file,
2216 oat_dex_file.dex_file_size_,
2217 oat_dex_file.GetLocation(),
2218 oat_dex_file.dex_file_location_checksum_,
2219 /* oat_dex_file */ nullptr,
Andreas Gampe3a2bd292016-01-26 17:23:47 -08002220 verify,
Vladimir Marko9bdf1082016-01-21 12:15:52 +00002221 &error_msg));
2222 if (dex_files.back() == nullptr) {
Andreas Gampe3a2bd292016-01-26 17:23:47 -08002223 LOG(ERROR) << "Failed to open dex file from oat file. File: " << oat_dex_file.GetLocation()
2224 << " Error: " << error_msg;
Vladimir Marko9bdf1082016-01-21 12:15:52 +00002225 return false;
2226 }
2227 }
2228
2229 *opened_dex_files_map = std::move(dex_files_map);
2230 *opened_dex_files = std::move(dex_files);
2231 return true;
2232}
2233
2234bool OatWriter::WriteTypeLookupTables(
2235 MemMap* opened_dex_files_map,
2236 const std::vector<std::unique_ptr<const DexFile>>& opened_dex_files) {
2237 TimingLogger::ScopedTiming split("WriteTypeLookupTables", timings_);
2238
2239 DCHECK_EQ(opened_dex_files.size(), oat_dex_files_.size());
2240 for (size_t i = 0, size = opened_dex_files.size(); i != size; ++i) {
2241 OatDexFile* oat_dex_file = &oat_dex_files_[i];
2242 if (oat_dex_file->lookup_table_offset_ != 0u) {
2243 DCHECK(oat_dex_file->create_type_lookup_table_ == CreateTypeLookupTable::kCreate);
2244 DCHECK_NE(oat_dex_file->class_offsets_.size(), 0u);
2245 size_t map_offset = oat_dex_files_[0].dex_file_offset_;
2246 size_t lookup_table_offset = oat_dex_file->lookup_table_offset_;
2247 uint8_t* lookup_table = opened_dex_files_map->Begin() + (lookup_table_offset - map_offset);
2248 opened_dex_files[i]->CreateTypeLookupTable(lookup_table);
2249 }
2250 }
2251
2252 DCHECK_EQ(opened_dex_files_map == nullptr, opened_dex_files.empty());
2253 if (opened_dex_files_map != nullptr && !opened_dex_files_map->Sync()) {
2254 PLOG(ERROR) << "Failed to Sync() type lookup tables. Map: " << opened_dex_files_map->GetName();
2255 return false;
2256 }
2257
2258 return true;
2259}
2260
Vladimir Markof4da6752014-08-01 19:04:18 +01002261bool OatWriter::WriteCodeAlignment(OutputStream* out, uint32_t aligned_code_delta) {
2262 static const uint8_t kPadding[] = {
2263 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u
2264 };
2265 DCHECK_LE(aligned_code_delta, sizeof(kPadding));
2266 if (UNLIKELY(!out->WriteFully(kPadding, aligned_code_delta))) {
2267 return false;
2268 }
2269 size_code_alignment_ += aligned_code_delta;
2270 return true;
2271}
2272
Vladimir Marko49b0f452015-12-10 13:49:19 +00002273bool OatWriter::WriteData(OutputStream* out, const void* data, size_t size) {
2274 oat_header_->UpdateChecksum(data, size);
2275 return out->WriteFully(data, size);
2276}
2277
Vladimir Marko944da602016-02-19 12:27:55 +00002278void OatWriter::SetMultiOatRelativePatcherAdjustment() {
2279 DCHECK(dex_files_ != nullptr);
2280 DCHECK(relative_patcher_ != nullptr);
2281 DCHECK_NE(oat_data_offset_, 0u);
2282 if (image_writer_ != nullptr && !dex_files_->empty()) {
2283 // The oat data begin may not be initialized yet but the oat file offset is ready.
2284 size_t oat_index = image_writer_->GetOatIndexForDexFile(dex_files_->front());
2285 size_t elf_file_offset = image_writer_->GetOatFileOffset(oat_index);
2286 relative_patcher_->StartOatFile(elf_file_offset + oat_data_offset_);
Vladimir Markob163bb72015-03-31 21:49:49 +01002287 }
2288}
2289
Vladimir Marko9bdf1082016-01-21 12:15:52 +00002290OatWriter::OatDexFile::OatDexFile(const char* dex_file_location,
2291 DexFileSource source,
2292 CreateTypeLookupTable create_type_lookup_table)
2293 : source_(source),
2294 create_type_lookup_table_(create_type_lookup_table),
2295 dex_file_size_(0),
2296 offset_(0),
2297 dex_file_location_size_(strlen(dex_file_location)),
2298 dex_file_location_data_(dex_file_location),
2299 dex_file_location_checksum_(0u),
2300 dex_file_offset_(0u),
2301 class_offsets_offset_(0u),
2302 lookup_table_offset_(0u),
2303 class_offsets_() {
Brian Carlstrome24fa612011-09-29 00:53:55 -07002304}
2305
2306size_t OatWriter::OatDexFile::SizeOf() const {
2307 return sizeof(dex_file_location_size_)
2308 + dex_file_location_size_
Brian Carlstrom5b332c82012-02-01 15:02:31 -08002309 + sizeof(dex_file_location_checksum_)
Brian Carlstrom89521892011-12-07 22:05:07 -08002310 + sizeof(dex_file_offset_)
Vladimir Marko9bdf1082016-01-21 12:15:52 +00002311 + sizeof(class_offsets_offset_)
2312 + sizeof(lookup_table_offset_);
Brian Carlstrome24fa612011-09-29 00:53:55 -07002313}
2314
Vladimir Marko9bdf1082016-01-21 12:15:52 +00002315void OatWriter::OatDexFile::ReserveTypeLookupTable(OatWriter* oat_writer) {
2316 DCHECK_EQ(lookup_table_offset_, 0u);
2317 if (create_type_lookup_table_ == CreateTypeLookupTable::kCreate && !class_offsets_.empty()) {
2318 size_t table_size = TypeLookupTable::RawDataLength(class_offsets_.size());
2319 if (table_size != 0u) {
2320 // Type tables are required to be 4 byte aligned.
2321 size_t original_offset = oat_writer->size_;
2322 size_t offset = RoundUp(original_offset, 4);
2323 oat_writer->size_oat_lookup_table_alignment_ += offset - original_offset;
2324 lookup_table_offset_ = offset;
2325 oat_writer->size_ = offset + table_size;
2326 oat_writer->size_oat_lookup_table_ += table_size;
2327 }
2328 }
2329}
2330
2331void OatWriter::OatDexFile::ReserveClassOffsets(OatWriter* oat_writer) {
2332 DCHECK_EQ(class_offsets_offset_, 0u);
2333 if (!class_offsets_.empty()) {
2334 // Class offsets are required to be 4 byte aligned.
2335 size_t original_offset = oat_writer->size_;
2336 size_t offset = RoundUp(original_offset, 4);
2337 oat_writer->size_oat_class_offsets_alignment_ += offset - original_offset;
2338 class_offsets_offset_ = offset;
2339 oat_writer->size_ = offset + GetClassOffsetsRawSize();
2340 }
2341}
2342
2343bool OatWriter::OatDexFile::Write(OatWriter* oat_writer, OutputStream* out) const {
2344 const size_t file_offset = oat_writer->oat_data_offset_;
Brian Carlstrom265091e2013-01-30 14:08:26 -08002345 DCHECK_OFFSET_();
Vladimir Marko9bdf1082016-01-21 12:15:52 +00002346
Vladimir Marko49b0f452015-12-10 13:49:19 +00002347 if (!oat_writer->WriteData(out, &dex_file_location_size_, sizeof(dex_file_location_size_))) {
Ian Rogers3d504072014-03-01 09:16:49 -08002348 PLOG(ERROR) << "Failed to write dex file location length to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07002349 return false;
2350 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07002351 oat_writer->size_oat_dex_file_location_size_ += sizeof(dex_file_location_size_);
Vladimir Marko9bdf1082016-01-21 12:15:52 +00002352
Vladimir Marko49b0f452015-12-10 13:49:19 +00002353 if (!oat_writer->WriteData(out, dex_file_location_data_, dex_file_location_size_)) {
Ian Rogers3d504072014-03-01 09:16:49 -08002354 PLOG(ERROR) << "Failed to write dex file location data to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07002355 return false;
2356 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07002357 oat_writer->size_oat_dex_file_location_data_ += dex_file_location_size_;
Vladimir Marko9bdf1082016-01-21 12:15:52 +00002358
Vladimir Marko49b0f452015-12-10 13:49:19 +00002359 if (!oat_writer->WriteData(out,
2360 &dex_file_location_checksum_,
2361 sizeof(dex_file_location_checksum_))) {
Ian Rogers3d504072014-03-01 09:16:49 -08002362 PLOG(ERROR) << "Failed to write dex file location checksum to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07002363 return false;
2364 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07002365 oat_writer->size_oat_dex_file_location_checksum_ += sizeof(dex_file_location_checksum_);
Vladimir Marko9bdf1082016-01-21 12:15:52 +00002366
Vladimir Marko49b0f452015-12-10 13:49:19 +00002367 if (!oat_writer->WriteData(out, &dex_file_offset_, sizeof(dex_file_offset_))) {
Ian Rogers3d504072014-03-01 09:16:49 -08002368 PLOG(ERROR) << "Failed to write dex file offset to " << out->GetLocation();
Brian Carlstrom89521892011-12-07 22:05:07 -08002369 return false;
2370 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07002371 oat_writer->size_oat_dex_file_offset_ += sizeof(dex_file_offset_);
Vladimir Marko9bdf1082016-01-21 12:15:52 +00002372
2373 if (!oat_writer->WriteData(out, &class_offsets_offset_, sizeof(class_offsets_offset_))) {
2374 PLOG(ERROR) << "Failed to write class offsets offset to " << out->GetLocation();
2375 return false;
2376 }
2377 oat_writer->size_oat_dex_file_class_offsets_offset_ += sizeof(class_offsets_offset_);
2378
Vladimir Marko49b0f452015-12-10 13:49:19 +00002379 if (!oat_writer->WriteData(out, &lookup_table_offset_, sizeof(lookup_table_offset_))) {
Artem Udovichenkod9786b02015-10-14 16:36:55 +03002380 PLOG(ERROR) << "Failed to write lookup table offset to " << out->GetLocation();
2381 return false;
2382 }
Vladimir Marko49b0f452015-12-10 13:49:19 +00002383 oat_writer->size_oat_dex_file_lookup_table_offset_ += sizeof(lookup_table_offset_);
Vladimir Marko9bdf1082016-01-21 12:15:52 +00002384
2385 return true;
2386}
2387
2388bool OatWriter::OatDexFile::WriteClassOffsets(OatWriter* oat_writer, OutputStream* out) {
Vladimir Marko49b0f452015-12-10 13:49:19 +00002389 if (!oat_writer->WriteData(out, class_offsets_.data(), GetClassOffsetsRawSize())) {
Vladimir Marko9bdf1082016-01-21 12:15:52 +00002390 PLOG(ERROR) << "Failed to write oat class offsets for " << GetLocation()
2391 << " to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07002392 return false;
2393 }
Vladimir Marko9bdf1082016-01-21 12:15:52 +00002394 oat_writer->size_oat_class_offsets_ += GetClassOffsetsRawSize();
Brian Carlstrome24fa612011-09-29 00:53:55 -07002395 return true;
2396}
2397
Brian Carlstromba150c32013-08-27 17:31:03 -07002398OatWriter::OatClass::OatClass(size_t offset,
Vladimir Marko49b0f452015-12-10 13:49:19 +00002399 const dchecked_vector<CompiledMethod*>& compiled_methods,
Brian Carlstromba150c32013-08-27 17:31:03 -07002400 uint32_t num_non_null_compiled_methods,
Vladimir Marko96c6ab92014-04-08 14:00:50 +01002401 mirror::Class::Status status)
2402 : compiled_methods_(compiled_methods) {
2403 uint32_t num_methods = compiled_methods.size();
Brian Carlstromba150c32013-08-27 17:31:03 -07002404 CHECK_LE(num_non_null_compiled_methods, num_methods);
2405
Brian Carlstrom265091e2013-01-30 14:08:26 -08002406 offset_ = offset;
Brian Carlstromba150c32013-08-27 17:31:03 -07002407 oat_method_offsets_offsets_from_oat_class_.resize(num_methods);
2408
2409 // Since both kOatClassNoneCompiled and kOatClassAllCompiled could
2410 // apply when there are 0 methods, we just arbitrarily say that 0
2411 // methods means kOatClassNoneCompiled and that we won't use
2412 // kOatClassAllCompiled unless there is at least one compiled
2413 // method. This means in an interpretter only system, we can assert
2414 // that all classes are kOatClassNoneCompiled.
2415 if (num_non_null_compiled_methods == 0) {
2416 type_ = kOatClassNoneCompiled;
2417 } else if (num_non_null_compiled_methods == num_methods) {
2418 type_ = kOatClassAllCompiled;
2419 } else {
2420 type_ = kOatClassSomeCompiled;
2421 }
2422
Brian Carlstrom0755ec52012-01-11 15:19:46 -08002423 status_ = status;
Brian Carlstromba150c32013-08-27 17:31:03 -07002424 method_offsets_.resize(num_non_null_compiled_methods);
Vladimir Marko8a630572014-04-09 18:45:35 +01002425 method_headers_.resize(num_non_null_compiled_methods);
Brian Carlstromba150c32013-08-27 17:31:03 -07002426
2427 uint32_t oat_method_offsets_offset_from_oat_class = sizeof(type_) + sizeof(status_);
2428 if (type_ == kOatClassSomeCompiled) {
Vladimir Marko49b0f452015-12-10 13:49:19 +00002429 method_bitmap_.reset(new BitVector(num_methods, false, Allocator::GetMallocAllocator()));
Brian Carlstromba150c32013-08-27 17:31:03 -07002430 method_bitmap_size_ = method_bitmap_->GetSizeOf();
2431 oat_method_offsets_offset_from_oat_class += sizeof(method_bitmap_size_);
2432 oat_method_offsets_offset_from_oat_class += method_bitmap_size_;
2433 } else {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07002434 method_bitmap_ = nullptr;
Brian Carlstromba150c32013-08-27 17:31:03 -07002435 method_bitmap_size_ = 0;
2436 }
2437
2438 for (size_t i = 0; i < num_methods; i++) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +01002439 CompiledMethod* compiled_method = compiled_methods_[i];
Mathieu Chartier2cebb242015-04-21 16:50:40 -07002440 if (compiled_method == nullptr) {
Brian Carlstromba150c32013-08-27 17:31:03 -07002441 oat_method_offsets_offsets_from_oat_class_[i] = 0;
2442 } else {
2443 oat_method_offsets_offsets_from_oat_class_[i] = oat_method_offsets_offset_from_oat_class;
2444 oat_method_offsets_offset_from_oat_class += sizeof(OatMethodOffsets);
2445 if (type_ == kOatClassSomeCompiled) {
2446 method_bitmap_->SetBit(i);
2447 }
2448 }
2449 }
Brian Carlstrome24fa612011-09-29 00:53:55 -07002450}
2451
Brian Carlstrom265091e2013-01-30 14:08:26 -08002452size_t OatWriter::OatClass::GetOatMethodOffsetsOffsetFromOatHeader(
2453 size_t class_def_method_index_) const {
Brian Carlstromba150c32013-08-27 17:31:03 -07002454 uint32_t method_offset = GetOatMethodOffsetsOffsetFromOatClass(class_def_method_index_);
2455 if (method_offset == 0) {
2456 return 0;
2457 }
2458 return offset_ + method_offset;
Brian Carlstrom265091e2013-01-30 14:08:26 -08002459}
2460
2461size_t OatWriter::OatClass::GetOatMethodOffsetsOffsetFromOatClass(
2462 size_t class_def_method_index_) const {
Brian Carlstromba150c32013-08-27 17:31:03 -07002463 return oat_method_offsets_offsets_from_oat_class_[class_def_method_index_];
Brian Carlstrom265091e2013-01-30 14:08:26 -08002464}
2465
2466size_t OatWriter::OatClass::SizeOf() const {
Brian Carlstromba150c32013-08-27 17:31:03 -07002467 return sizeof(status_)
2468 + sizeof(type_)
2469 + ((method_bitmap_size_ == 0) ? 0 : sizeof(method_bitmap_size_))
2470 + method_bitmap_size_
2471 + (sizeof(method_offsets_[0]) * method_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -07002472}
2473
Brian Carlstromc50d8e12013-07-23 22:35:16 -07002474bool OatWriter::OatClass::Write(OatWriter* oat_writer,
Ian Rogers3d504072014-03-01 09:16:49 -08002475 OutputStream* out,
Brian Carlstromc50d8e12013-07-23 22:35:16 -07002476 const size_t file_offset) const {
Brian Carlstrom265091e2013-01-30 14:08:26 -08002477 DCHECK_OFFSET_();
Vladimir Marko49b0f452015-12-10 13:49:19 +00002478 if (!oat_writer->WriteData(out, &status_, sizeof(status_))) {
Ian Rogers3d504072014-03-01 09:16:49 -08002479 PLOG(ERROR) << "Failed to write class status to " << out->GetLocation();
Brian Carlstrom0755ec52012-01-11 15:19:46 -08002480 return false;
2481 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07002482 oat_writer->size_oat_class_status_ += sizeof(status_);
Vladimir Marko49b0f452015-12-10 13:49:19 +00002483
2484 if (!oat_writer->WriteData(out, &type_, sizeof(type_))) {
Ian Rogers3d504072014-03-01 09:16:49 -08002485 PLOG(ERROR) << "Failed to write oat class type to " << out->GetLocation();
Brian Carlstromba150c32013-08-27 17:31:03 -07002486 return false;
2487 }
2488 oat_writer->size_oat_class_type_ += sizeof(type_);
Vladimir Marko49b0f452015-12-10 13:49:19 +00002489
Brian Carlstromba150c32013-08-27 17:31:03 -07002490 if (method_bitmap_size_ != 0) {
2491 CHECK_EQ(kOatClassSomeCompiled, type_);
Vladimir Marko49b0f452015-12-10 13:49:19 +00002492 if (!oat_writer->WriteData(out, &method_bitmap_size_, sizeof(method_bitmap_size_))) {
Ian Rogers3d504072014-03-01 09:16:49 -08002493 PLOG(ERROR) << "Failed to write method bitmap size to " << out->GetLocation();
Brian Carlstromba150c32013-08-27 17:31:03 -07002494 return false;
2495 }
2496 oat_writer->size_oat_class_method_bitmaps_ += sizeof(method_bitmap_size_);
Vladimir Marko49b0f452015-12-10 13:49:19 +00002497
2498 if (!oat_writer->WriteData(out, method_bitmap_->GetRawStorage(), method_bitmap_size_)) {
Ian Rogers3d504072014-03-01 09:16:49 -08002499 PLOG(ERROR) << "Failed to write method bitmap to " << out->GetLocation();
Brian Carlstromba150c32013-08-27 17:31:03 -07002500 return false;
2501 }
2502 oat_writer->size_oat_class_method_bitmaps_ += method_bitmap_size_;
2503 }
Vladimir Marko49b0f452015-12-10 13:49:19 +00002504
2505 if (!oat_writer->WriteData(out, method_offsets_.data(), GetMethodOffsetsRawSize())) {
Ian Rogers3d504072014-03-01 09:16:49 -08002506 PLOG(ERROR) << "Failed to write method offsets to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07002507 return false;
2508 }
Vladimir Marko49b0f452015-12-10 13:49:19 +00002509 oat_writer->size_oat_class_method_offsets_ += GetMethodOffsetsRawSize();
Brian Carlstrome24fa612011-09-29 00:53:55 -07002510 return true;
2511}
2512
Brian Carlstrome24fa612011-09-29 00:53:55 -07002513} // namespace art