blob: c7b8884214ab2d3f1e28f1712a8607d90ec0f4d3 [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
Elliott Hughesa0e18062012-04-13 15:59:59 -070019#include <zlib.h>
20
Vladimir Markoc74658b2015-03-31 10:26:41 +010021#include "arch/arm64/instruction_set_features_arm64.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070022#include "art_method-inl.h"
Ian Rogerse77493c2014-08-20 15:08:45 -070023#include "base/allocator.h"
Brian Carlstromba150c32013-08-27 17:31:03 -070024#include "base/bit_vector.h"
Elliott Hughes1aa246d2012-12-13 09:29:36 -080025#include "base/stl_util.h"
Elliott Hughes76160052012-12-12 16:31:20 -080026#include "base/unix_file/fd_file.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070027#include "class_linker.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070028#include "compiled_class.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000029#include "compiled_method.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070030#include "dex_file-inl.h"
Vladimir Markoc7f83202014-01-24 17:55:18 +000031#include "dex/verification_results.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000032#include "driver/compiler_driver.h"
33#include "driver/compiler_options.h"
Vladimir Marko09d09432015-09-08 13:47:48 +010034#include "gc/space/image_space.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070035#include "gc/space/space.h"
Artem Udovichenkod9786b02015-10-14 16:36:55 +030036#include "handle_scope-inl.h"
Vladimir Markof4da6752014-08-01 19:04:18 +010037#include "image_writer.h"
Vladimir Markob163bb72015-03-31 21:49:49 +010038#include "linker/relative_patcher.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080039#include "mirror/array.h"
40#include "mirror/class_loader.h"
Vladimir Marko3481ba22015-04-13 12:22:36 +010041#include "mirror/dex_cache-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070042#include "mirror/object-inl.h"
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010043#include "oat_quick_method_header.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070044#include "os.h"
Brian Carlstromcd60ac72013-01-20 17:09:51 -080045#include "output_stream.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070046#include "safe_map.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070047#include "scoped_thread_state_change.h"
Artem Udovichenkod9786b02015-10-14 16:36:55 +030048#include "type_lookup_table.h"
Vladimir Marko09d09432015-09-08 13:47:48 +010049#include "utils/dex_cache_arrays_layout-inl.h"
jeffhaoec014232012-09-05 10:42:25 -070050#include "verifier/method_verifier.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070051
52namespace art {
53
Vladimir Marko96c6ab92014-04-08 14:00:50 +010054#define DCHECK_OFFSET() \
55 DCHECK_EQ(static_cast<off_t>(file_offset + relative_offset), out->Seek(0, kSeekCurrent)) \
56 << "file_offset=" << file_offset << " relative_offset=" << relative_offset
57
58#define DCHECK_OFFSET_() \
59 DCHECK_EQ(static_cast<off_t>(file_offset + offset_), out->Seek(0, kSeekCurrent)) \
60 << "file_offset=" << file_offset << " offset_=" << offset_
61
Brian Carlstrom3320cf42011-10-04 14:58:28 -070062OatWriter::OatWriter(const std::vector<const DexFile*>& dex_files,
Brian Carlstrom28db0122012-10-18 16:20:41 -070063 uint32_t image_file_location_oat_checksum,
Ian Rogersef7d42f2014-01-06 12:55:46 -080064 uintptr_t image_file_location_oat_begin,
Alex Lighta59dd802014-07-02 16:28:08 -070065 int32_t image_patch_delta,
Ian Rogersca368cb2013-11-15 15:52:08 -080066 const CompilerDriver* compiler,
Vladimir Markof4da6752014-08-01 19:04:18 +010067 ImageWriter* image_writer,
Andreas Gampe22f8e5c2014-07-09 11:38:21 -070068 TimingLogger* timings,
69 SafeMap<std::string, std::string>* key_value_store)
Jeff Hao0aba0ba2013-06-03 14:49:28 -070070 : compiler_driver_(compiler),
Vladimir Markof4da6752014-08-01 19:04:18 +010071 image_writer_(image_writer),
Jeff Hao0aba0ba2013-06-03 14:49:28 -070072 dex_files_(&dex_files),
Vladimir Markof4da6752014-08-01 19:04:18 +010073 size_(0u),
Vladimir Marko5c42c292015-02-25 12:02:49 +000074 bss_size_(0u),
Vladimir Markof4da6752014-08-01 19:04:18 +010075 oat_data_offset_(0u),
Jeff Hao0aba0ba2013-06-03 14:49:28 -070076 image_file_location_oat_checksum_(image_file_location_oat_checksum),
77 image_file_location_oat_begin_(image_file_location_oat_begin),
Alex Lighta59dd802014-07-02 16:28:08 -070078 image_patch_delta_(image_patch_delta),
Andreas Gampe22f8e5c2014-07-09 11:38:21 -070079 key_value_store_(key_value_store),
Mathieu Chartier2cebb242015-04-21 16:50:40 -070080 oat_header_(nullptr),
Jeff Hao0aba0ba2013-06-03 14:49:28 -070081 size_dex_file_alignment_(0),
82 size_executable_offset_alignment_(0),
83 size_oat_header_(0),
Andreas Gampe22f8e5c2014-07-09 11:38:21 -070084 size_oat_header_key_value_store_(0),
Jeff Hao0aba0ba2013-06-03 14:49:28 -070085 size_dex_file_(0),
Ian Rogers848871b2013-08-05 10:56:33 -070086 size_interpreter_to_interpreter_bridge_(0),
87 size_interpreter_to_compiled_code_bridge_(0),
88 size_jni_dlsym_lookup_(0),
Andreas Gampe2da88232014-02-27 12:26:20 -080089 size_quick_generic_jni_trampoline_(0),
Jeff Hao88474b42013-10-23 16:24:40 -070090 size_quick_imt_conflict_trampoline_(0),
Jeff Hao0aba0ba2013-06-03 14:49:28 -070091 size_quick_resolution_trampoline_(0),
Ian Rogers848871b2013-08-05 10:56:33 -070092 size_quick_to_interpreter_bridge_(0),
93 size_trampoline_alignment_(0),
Vladimir Marko96c6ab92014-04-08 14:00:50 +010094 size_method_header_(0),
Jeff Hao0aba0ba2013-06-03 14:49:28 -070095 size_code_(0),
96 size_code_alignment_(0),
Vladimir Markof4da6752014-08-01 19:04:18 +010097 size_relative_call_thunks_(0),
Vladimir Markoc74658b2015-03-31 10:26:41 +010098 size_misc_thunks_(0),
Jeff Hao0aba0ba2013-06-03 14:49:28 -070099 size_mapping_table_(0),
100 size_vmap_table_(0),
101 size_gc_map_(0),
102 size_oat_dex_file_location_size_(0),
103 size_oat_dex_file_location_data_(0),
104 size_oat_dex_file_location_checksum_(0),
105 size_oat_dex_file_offset_(0),
106 size_oat_dex_file_methods_offsets_(0),
Brian Carlstromba150c32013-08-27 17:31:03 -0700107 size_oat_class_type_(0),
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700108 size_oat_class_status_(0),
Brian Carlstromba150c32013-08-27 17:31:03 -0700109 size_oat_class_method_bitmaps_(0),
Vladimir Markof4da6752014-08-01 19:04:18 +0100110 size_oat_class_method_offsets_(0),
Artem Udovichenkod9786b02015-10-14 16:36:55 +0300111 size_oat_lookup_table_alignment_(0),
112 size_oat_lookup_table_offset_(0),
113 size_oat_lookup_table_(0),
Vladimir Markof4da6752014-08-01 19:04:18 +0100114 method_offset_map_() {
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700115 CHECK(key_value_store != nullptr);
116
Vladimir Markob163bb72015-03-31 21:49:49 +0100117 InstructionSet instruction_set = compiler_driver_->GetInstructionSet();
118 const InstructionSetFeatures* features = compiler_driver_->GetInstructionSetFeatures();
119 relative_patcher_ = linker::RelativePatcher::Create(instruction_set, features,
120 &method_offset_map_);
Vladimir Markof4da6752014-08-01 19:04:18 +0100121
Ian Rogersca368cb2013-11-15 15:52:08 -0800122 size_t offset;
123 {
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700124 TimingLogger::ScopedTiming split("InitOatHeader", timings);
Ian Rogersca368cb2013-11-15 15:52:08 -0800125 offset = InitOatHeader();
126 }
127 {
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700128 TimingLogger::ScopedTiming split("InitOatDexFiles", timings);
Ian Rogersca368cb2013-11-15 15:52:08 -0800129 offset = InitOatDexFiles(offset);
130 }
131 {
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700132 TimingLogger::ScopedTiming split("InitDexFiles", timings);
Ian Rogersca368cb2013-11-15 15:52:08 -0800133 offset = InitDexFiles(offset);
134 }
135 {
Artem Udovichenkod9786b02015-10-14 16:36:55 +0300136 TimingLogger::ScopedTiming split("InitLookupTables", timings);
137 offset = InitLookupTables(offset);
138 }
139 {
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700140 TimingLogger::ScopedTiming split("InitOatClasses", timings);
Ian Rogersca368cb2013-11-15 15:52:08 -0800141 offset = InitOatClasses(offset);
142 }
143 {
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700144 TimingLogger::ScopedTiming split("InitOatMaps", timings);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100145 offset = InitOatMaps(offset);
146 }
147 {
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700148 TimingLogger::ScopedTiming split("InitOatCode", timings);
Ian Rogersca368cb2013-11-15 15:52:08 -0800149 offset = InitOatCode(offset);
150 }
151 {
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700152 TimingLogger::ScopedTiming split("InitOatCodeDexFiles", timings);
Ian Rogersca368cb2013-11-15 15:52:08 -0800153 offset = InitOatCodeDexFiles(offset);
154 }
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700155 size_ = offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700156
Vladimir Marko09d09432015-09-08 13:47:48 +0100157 if (!HasImage()) {
158 // Allocate space for app dex cache arrays in the .bss section.
159 size_t bss_start = RoundUp(size_, kPageSize);
160 size_t pointer_size = GetInstructionSetPointerSize(instruction_set);
161 bss_size_ = 0u;
162 for (const DexFile* dex_file : dex_files) {
163 dex_cache_arrays_offsets_.Put(dex_file, bss_start + bss_size_);
164 DexCacheArraysLayout layout(pointer_size, dex_file);
165 bss_size_ += layout.Size();
166 }
167 }
168
Brian Carlstrome24fa612011-09-29 00:53:55 -0700169 CHECK_EQ(dex_files_->size(), oat_dex_files_.size());
Vladimir Markof4da6752014-08-01 19:04:18 +0100170 CHECK_EQ(compiler->IsImage(), image_writer_ != nullptr);
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700171 CHECK_EQ(compiler->IsImage(),
172 key_value_store_->find(OatHeader::kImageLocationKey) == key_value_store_->end());
Alex Lighta59dd802014-07-02 16:28:08 -0700173 CHECK_ALIGNED(image_patch_delta_, kPageSize);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700174}
175
Ian Rogers0571d352011-11-03 19:51:38 -0700176OatWriter::~OatWriter() {
177 delete oat_header_;
178 STLDeleteElements(&oat_dex_files_);
Brian Carlstrom389efb02012-01-11 12:06:26 -0800179 STLDeleteElements(&oat_classes_);
Ian Rogers0571d352011-11-03 19:51:38 -0700180}
181
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100182struct OatWriter::GcMapDataAccess {
Vladimir Marko35831e82015-09-11 11:59:18 +0100183 static ArrayRef<const uint8_t> GetData(const CompiledMethod* compiled_method) ALWAYS_INLINE {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100184 return compiled_method->GetGcMap();
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100185 }
186
187 static uint32_t GetOffset(OatClass* oat_class, size_t method_offsets_index) ALWAYS_INLINE {
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800188 uint32_t offset = oat_class->method_headers_[method_offsets_index].gc_map_offset_;
189 return offset == 0u ? 0u :
190 (oat_class->method_offsets_[method_offsets_index].code_offset_ & ~1) - offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100191 }
192
193 static void SetOffset(OatClass* oat_class, size_t method_offsets_index, uint32_t offset)
194 ALWAYS_INLINE {
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800195 oat_class->method_headers_[method_offsets_index].gc_map_offset_ =
196 (oat_class->method_offsets_[method_offsets_index].code_offset_ & ~1) - offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100197 }
198
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800199 static const char* Name() {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100200 return "GC map";
201 }
202};
203
204struct OatWriter::MappingTableDataAccess {
Vladimir Marko35831e82015-09-11 11:59:18 +0100205 static ArrayRef<const uint8_t> GetData(const CompiledMethod* compiled_method) ALWAYS_INLINE {
Nicolas Geoffray376b2bb2014-12-09 14:26:32 +0000206 return compiled_method->GetMappingTable();
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100207 }
208
209 static uint32_t GetOffset(OatClass* oat_class, size_t method_offsets_index) ALWAYS_INLINE {
Vladimir Marko8a630572014-04-09 18:45:35 +0100210 uint32_t offset = oat_class->method_headers_[method_offsets_index].mapping_table_offset_;
211 return offset == 0u ? 0u :
212 (oat_class->method_offsets_[method_offsets_index].code_offset_ & ~1) - offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100213 }
214
215 static void SetOffset(OatClass* oat_class, size_t method_offsets_index, uint32_t offset)
216 ALWAYS_INLINE {
Vladimir Marko8a630572014-04-09 18:45:35 +0100217 oat_class->method_headers_[method_offsets_index].mapping_table_offset_ =
218 (oat_class->method_offsets_[method_offsets_index].code_offset_ & ~1) - offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100219 }
220
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800221 static const char* Name() {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100222 return "mapping table";
223 }
224};
225
226struct OatWriter::VmapTableDataAccess {
Vladimir Marko35831e82015-09-11 11:59:18 +0100227 static ArrayRef<const uint8_t> GetData(const CompiledMethod* compiled_method) ALWAYS_INLINE {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800228 return compiled_method->GetVmapTable();
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100229 }
230
231 static uint32_t GetOffset(OatClass* oat_class, size_t method_offsets_index) ALWAYS_INLINE {
Vladimir Marko8a630572014-04-09 18:45:35 +0100232 uint32_t offset = oat_class->method_headers_[method_offsets_index].vmap_table_offset_;
233 return offset == 0u ? 0u :
234 (oat_class->method_offsets_[method_offsets_index].code_offset_ & ~1) - offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100235 }
236
237 static void SetOffset(OatClass* oat_class, size_t method_offsets_index, uint32_t offset)
238 ALWAYS_INLINE {
Vladimir Marko8a630572014-04-09 18:45:35 +0100239 oat_class->method_headers_[method_offsets_index].vmap_table_offset_ =
240 (oat_class->method_offsets_[method_offsets_index].code_offset_ & ~1) - offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100241 }
242
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800243 static const char* Name() {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100244 return "vmap table";
245 }
246};
247
248class OatWriter::DexMethodVisitor {
249 public:
250 DexMethodVisitor(OatWriter* writer, size_t offset)
251 : writer_(writer),
252 offset_(offset),
253 dex_file_(nullptr),
254 class_def_index_(DexFile::kDexNoIndex) {
255 }
256
257 virtual bool StartClass(const DexFile* dex_file, size_t class_def_index) {
258 DCHECK(dex_file_ == nullptr);
259 DCHECK_EQ(class_def_index_, DexFile::kDexNoIndex);
260 dex_file_ = dex_file;
261 class_def_index_ = class_def_index;
262 return true;
263 }
264
265 virtual bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it) = 0;
266
267 virtual bool EndClass() {
268 if (kIsDebugBuild) {
269 dex_file_ = nullptr;
270 class_def_index_ = DexFile::kDexNoIndex;
271 }
272 return true;
273 }
274
275 size_t GetOffset() const {
276 return offset_;
277 }
278
279 protected:
280 virtual ~DexMethodVisitor() { }
281
282 OatWriter* const writer_;
283
284 // The offset is usually advanced for each visited method by the derived class.
285 size_t offset_;
286
287 // The dex file and class def index are set in StartClass().
288 const DexFile* dex_file_;
289 size_t class_def_index_;
290};
291
292class OatWriter::OatDexMethodVisitor : public DexMethodVisitor {
293 public:
294 OatDexMethodVisitor(OatWriter* writer, size_t offset)
295 : DexMethodVisitor(writer, offset),
296 oat_class_index_(0u),
297 method_offsets_index_(0u) {
298 }
299
300 bool StartClass(const DexFile* dex_file, size_t class_def_index) {
301 DexMethodVisitor::StartClass(dex_file, class_def_index);
302 DCHECK_LT(oat_class_index_, writer_->oat_classes_.size());
303 method_offsets_index_ = 0u;
304 return true;
305 }
306
307 bool EndClass() {
308 ++oat_class_index_;
309 return DexMethodVisitor::EndClass();
310 }
311
312 protected:
313 size_t oat_class_index_;
314 size_t method_offsets_index_;
315};
316
317class OatWriter::InitOatClassesMethodVisitor : public DexMethodVisitor {
318 public:
319 InitOatClassesMethodVisitor(OatWriter* writer, size_t offset)
320 : DexMethodVisitor(writer, offset),
321 compiled_methods_(),
322 num_non_null_compiled_methods_(0u) {
323 compiled_methods_.reserve(256u);
324 }
325
326 bool StartClass(const DexFile* dex_file, size_t class_def_index) {
327 DexMethodVisitor::StartClass(dex_file, class_def_index);
328 compiled_methods_.clear();
329 num_non_null_compiled_methods_ = 0u;
330 return true;
331 }
332
Artem Udovichenkod9786b02015-10-14 16:36:55 +0300333 bool VisitMethod(size_t class_def_method_index ATTRIBUTE_UNUSED,
334 const ClassDataItemIterator& it) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100335 // Fill in the compiled_methods_ array for methods that have a
336 // CompiledMethod. We track the number of non-null entries in
337 // num_non_null_compiled_methods_ since we only want to allocate
338 // OatMethodOffsets for the compiled methods.
339 uint32_t method_idx = it.GetMemberIndex();
340 CompiledMethod* compiled_method =
341 writer_->compiler_driver_->GetCompiledMethod(MethodReference(dex_file_, method_idx));
342 compiled_methods_.push_back(compiled_method);
343 if (compiled_method != nullptr) {
344 ++num_non_null_compiled_methods_;
345 }
346 return true;
347 }
348
349 bool EndClass() {
350 ClassReference class_ref(dex_file_, class_def_index_);
351 CompiledClass* compiled_class = writer_->compiler_driver_->GetCompiledClass(class_ref);
352 mirror::Class::Status status;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700353 if (compiled_class != nullptr) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100354 status = compiled_class->GetStatus();
355 } else if (writer_->compiler_driver_->GetVerificationResults()->IsClassRejected(class_ref)) {
356 status = mirror::Class::kStatusError;
357 } else {
358 status = mirror::Class::kStatusNotReady;
359 }
360
361 OatClass* oat_class = new OatClass(offset_, compiled_methods_,
362 num_non_null_compiled_methods_, status);
363 writer_->oat_classes_.push_back(oat_class);
Vladimir Markof4da6752014-08-01 19:04:18 +0100364 oat_class->UpdateChecksum(writer_->oat_header_);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100365 offset_ += oat_class->SizeOf();
366 return DexMethodVisitor::EndClass();
367 }
368
369 private:
370 std::vector<CompiledMethod*> compiled_methods_;
371 size_t num_non_null_compiled_methods_;
372};
373
374class OatWriter::InitCodeMethodVisitor : public OatDexMethodVisitor {
375 public:
376 InitCodeMethodVisitor(OatWriter* writer, size_t offset)
David Srbecky009e2a62015-04-15 02:46:30 +0100377 : OatDexMethodVisitor(writer, offset),
David Srbecky009e2a62015-04-15 02:46:30 +0100378 debuggable_(writer->GetCompilerDriver()->GetCompilerOptions().GetDebuggable()) {
David Srbeckyf8980872015-05-22 17:04:47 +0100379 writer_->absolute_patch_locations_.reserve(
Vladimir Markof4da6752014-08-01 19:04:18 +0100380 writer_->compiler_driver_->GetNonRelativeLinkerPatchCount());
381 }
382
383 bool EndClass() {
384 OatDexMethodVisitor::EndClass();
385 if (oat_class_index_ == writer_->oat_classes_.size()) {
Vladimir Marko71b0ddf2015-04-02 19:45:06 +0100386 offset_ = writer_->relative_patcher_->ReserveSpaceEnd(offset_);
Vladimir Markof4da6752014-08-01 19:04:18 +0100387 }
388 return true;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100389 }
390
391 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it)
Mathieu Chartier90443472015-07-16 20:32:27 -0700392 SHARED_REQUIRES(Locks::mutator_lock_) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100393 OatClass* oat_class = writer_->oat_classes_[oat_class_index_];
394 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index);
395
396 if (compiled_method != nullptr) {
397 // Derived from CompiledMethod.
398 uint32_t quick_code_offset = 0;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100399
Vladimir Marko35831e82015-09-11 11:59:18 +0100400 ArrayRef<const uint8_t> quick_code = compiled_method->GetQuickCode();
401 uint32_t code_size = quick_code.size() * sizeof(uint8_t);
Elliott Hughes956af0f2014-12-11 14:34:28 -0800402 uint32_t thumb_offset = compiled_method->CodeDelta();
Elliott Hughes956af0f2014-12-11 14:34:28 -0800403
David Srbecky009e2a62015-04-15 02:46:30 +0100404 // Deduplicate code arrays if we are not producing debuggable code.
Vladimir Markoc74658b2015-03-31 10:26:41 +0100405 bool deduped = false;
Nicolas Geoffrayed6195a2015-07-13 17:02:30 +0000406 if (debuggable_) {
407 quick_code_offset = NewQuickCodeOffset(compiled_method, it, thumb_offset);
408 } else {
409 auto lb = dedupe_map_.lower_bound(compiled_method);
410 if (lb != dedupe_map_.end() && !dedupe_map_.key_comp()(compiled_method, lb->first)) {
411 quick_code_offset = lb->second;
412 deduped = true;
Nicolas Geoffrayf0758792015-07-13 11:56:00 +0000413 } else {
Nicolas Geoffrayed6195a2015-07-13 17:02:30 +0000414 quick_code_offset = NewQuickCodeOffset(compiled_method, it, thumb_offset);
415 dedupe_map_.PutBefore(lb, compiled_method, quick_code_offset);
David Srbecky009e2a62015-04-15 02:46:30 +0100416 }
Elliott Hughes956af0f2014-12-11 14:34:28 -0800417 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100418
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100419 if (code_size != 0) {
420 MethodReference method_ref(dex_file_, it.GetMemberIndex());
421 auto method_lb = writer_->method_offset_map_.map.lower_bound(method_ref);
422 if (method_lb != writer_->method_offset_map_.map.end() &&
423 !writer_->method_offset_map_.map.key_comp()(method_ref, method_lb->first)) {
424 // TODO: Should this be a hard failure?
425 LOG(WARNING) << "Multiple definitions of "
426 << PrettyMethod(method_ref.dex_method_index, *method_ref.dex_file)
427 << ((method_lb->second != quick_code_offset) ? "; OFFSET MISMATCH" : "");
428 } else {
429 writer_->method_offset_map_.map.PutBefore(method_lb, method_ref, quick_code_offset);
430 }
Elliott Hughes956af0f2014-12-11 14:34:28 -0800431 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100432
Elliott Hughes956af0f2014-12-11 14:34:28 -0800433 // Update quick method header.
434 DCHECK_LT(method_offsets_index_, oat_class->method_headers_.size());
435 OatQuickMethodHeader* method_header = &oat_class->method_headers_[method_offsets_index_];
436 uint32_t mapping_table_offset = method_header->mapping_table_offset_;
437 uint32_t vmap_table_offset = method_header->vmap_table_offset_;
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100438 // If we don't have quick code, then we must have a vmap, as that is how the dex2dex
439 // compiler records its transformations.
Vladimir Marko35831e82015-09-11 11:59:18 +0100440 DCHECK(!quick_code.empty() || vmap_table_offset != 0);
Elliott Hughes956af0f2014-12-11 14:34:28 -0800441 uint32_t gc_map_offset = method_header->gc_map_offset_;
442 // The code offset was 0 when the mapping/vmap table offset was set, so it's set
443 // to 0-offset and we need to adjust it by code_offset.
444 uint32_t code_offset = quick_code_offset - thumb_offset;
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100445 if (mapping_table_offset != 0u && code_offset != 0u) {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800446 mapping_table_offset += code_offset;
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100447 DCHECK_LT(mapping_table_offset, code_offset) << "Overflow in oat offsets";
Elliott Hughes956af0f2014-12-11 14:34:28 -0800448 }
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100449 if (vmap_table_offset != 0u && code_offset != 0u) {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800450 vmap_table_offset += code_offset;
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100451 DCHECK_LT(vmap_table_offset, code_offset) << "Overflow in oat offsets";
Elliott Hughes956af0f2014-12-11 14:34:28 -0800452 }
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100453 if (gc_map_offset != 0u && code_offset != 0u) {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800454 gc_map_offset += code_offset;
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100455 DCHECK_LT(gc_map_offset, code_offset) << "Overflow in oat offsets";
Elliott Hughes956af0f2014-12-11 14:34:28 -0800456 }
457 uint32_t frame_size_in_bytes = compiled_method->GetFrameSizeInBytes();
458 uint32_t core_spill_mask = compiled_method->GetCoreSpillMask();
459 uint32_t fp_spill_mask = compiled_method->GetFpSpillMask();
460 *method_header = OatQuickMethodHeader(mapping_table_offset, vmap_table_offset,
461 gc_map_offset, frame_size_in_bytes, core_spill_mask,
462 fp_spill_mask, code_size);
Vladimir Marko7624d252014-05-02 14:40:15 +0100463
Nicolas Geoffrayed6195a2015-07-13 17:02:30 +0000464 if (!deduped) {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800465 // Update offsets. (Checksum is updated when writing.)
466 offset_ += sizeof(*method_header); // Method header is prepended before code.
467 offset_ += code_size;
468 // Record absolute patch locations.
469 if (!compiled_method->GetPatches().empty()) {
470 uintptr_t base_loc = offset_ - code_size - writer_->oat_header_->GetExecutableOffset();
471 for (const LinkerPatch& patch : compiled_method->GetPatches()) {
Vladimir Marko20f85592015-03-19 10:07:02 +0000472 if (!patch.IsPcRelative()) {
David Srbeckyf8980872015-05-22 17:04:47 +0100473 writer_->absolute_patch_locations_.push_back(base_loc + patch.LiteralOffset());
Vladimir Markof4da6752014-08-01 19:04:18 +0100474 }
475 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100476 }
Elliott Hughes956af0f2014-12-11 14:34:28 -0800477 }
Alex Light78382fa2014-06-06 15:45:32 -0700478
David Srbecky8363c772015-05-28 16:12:43 +0100479 if (writer_->compiler_driver_->GetCompilerOptions().GetGenerateDebugInfo()) {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800480 // Record debug information for this function if we are doing that.
Elliott Hughes956af0f2014-12-11 14:34:28 -0800481 const uint32_t quick_code_start = quick_code_offset -
David Srbecky6f715892015-03-30 14:21:42 +0100482 writer_->oat_header_->GetExecutableOffset() - thumb_offset;
David Srbecky0df9e1f2015-04-07 19:02:58 +0100483 writer_->method_info_.push_back(DebugInfo {
484 dex_file_,
485 class_def_index_,
486 it.GetMemberIndex(),
487 it.GetMethodAccessFlags(),
488 it.GetMethodCodeItem(),
489 deduped,
490 quick_code_start,
491 quick_code_start + code_size,
492 compiled_method});
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100493 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100494
495 if (kIsDebugBuild) {
496 // We expect GC maps except when the class hasn't been verified or the method is native.
497 const CompilerDriver* compiler_driver = writer_->compiler_driver_;
498 ClassReference class_ref(dex_file_, class_def_index_);
499 CompiledClass* compiled_class = compiler_driver->GetCompiledClass(class_ref);
500 mirror::Class::Status status;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700501 if (compiled_class != nullptr) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100502 status = compiled_class->GetStatus();
503 } else if (compiler_driver->GetVerificationResults()->IsClassRejected(class_ref)) {
504 status = mirror::Class::kStatusError;
505 } else {
506 status = mirror::Class::kStatusNotReady;
507 }
Vladimir Marko35831e82015-09-11 11:59:18 +0100508 ArrayRef<const uint8_t> gc_map = compiled_method->GetGcMap();
509 if (!gc_map.empty()) {
510 size_t gc_map_size = gc_map.size() * sizeof(gc_map[0]);
Andreas Gampe51829322014-08-25 15:05:04 -0700511 bool is_native = it.MemberIsNative();
Nicolas Geoffray39468442014-09-02 15:17:15 +0100512 CHECK(gc_map_size != 0 || is_native || status < mirror::Class::kStatusVerified)
Vladimir Marko35831e82015-09-11 11:59:18 +0100513 << gc_map_size << " " << (is_native ? "true" : "false") << " "
Nicolas Geoffray39468442014-09-02 15:17:15 +0100514 << (status < mirror::Class::kStatusVerified) << " " << status << " "
515 << PrettyMethod(it.GetMemberIndex(), *dex_file_);
516 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100517 }
518
519 DCHECK_LT(method_offsets_index_, oat_class->method_offsets_.size());
520 OatMethodOffsets* offsets = &oat_class->method_offsets_[method_offsets_index_];
521 offsets->code_offset_ = quick_code_offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100522 ++method_offsets_index_;
523 }
524
525 return true;
526 }
527
528 private:
Vladimir Marko20f85592015-03-19 10:07:02 +0000529 struct CodeOffsetsKeyComparator {
530 bool operator()(const CompiledMethod* lhs, const CompiledMethod* rhs) const {
Vladimir Marko35831e82015-09-11 11:59:18 +0100531 // Code is deduplicated by CompilerDriver, compare only data pointers.
532 if (lhs->GetQuickCode().data() != rhs->GetQuickCode().data()) {
533 return lhs->GetQuickCode().data() < rhs->GetQuickCode().data();
Vladimir Marko20f85592015-03-19 10:07:02 +0000534 }
535 // If the code is the same, all other fields are likely to be the same as well.
Vladimir Marko35831e82015-09-11 11:59:18 +0100536 if (UNLIKELY(lhs->GetMappingTable().data() != rhs->GetMappingTable().data())) {
537 return lhs->GetMappingTable().data() < rhs->GetMappingTable().data();
Vladimir Marko20f85592015-03-19 10:07:02 +0000538 }
Vladimir Marko35831e82015-09-11 11:59:18 +0100539 if (UNLIKELY(lhs->GetVmapTable().data() != rhs->GetVmapTable().data())) {
540 return lhs->GetVmapTable().data() < rhs->GetVmapTable().data();
Vladimir Marko20f85592015-03-19 10:07:02 +0000541 }
Vladimir Marko35831e82015-09-11 11:59:18 +0100542 if (UNLIKELY(lhs->GetGcMap().data() != rhs->GetGcMap().data())) {
543 return lhs->GetGcMap().data() < rhs->GetGcMap().data();
Vladimir Marko20f85592015-03-19 10:07:02 +0000544 }
Vladimir Marko35831e82015-09-11 11:59:18 +0100545 if (UNLIKELY(lhs->GetPatches().data() != rhs->GetPatches().data())) {
546 return lhs->GetPatches().data() < rhs->GetPatches().data();
Vladimir Marko20f85592015-03-19 10:07:02 +0000547 }
548 return false;
549 }
550 };
551
David Srbecky009e2a62015-04-15 02:46:30 +0100552 uint32_t NewQuickCodeOffset(CompiledMethod* compiled_method,
553 const ClassDataItemIterator& it,
554 uint32_t thumb_offset) {
555 offset_ = writer_->relative_patcher_->ReserveSpace(
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100556 offset_, compiled_method, MethodReference(dex_file_, it.GetMemberIndex()));
David Srbecky009e2a62015-04-15 02:46:30 +0100557 offset_ = compiled_method->AlignCode(offset_);
558 DCHECK_ALIGNED_PARAM(offset_,
559 GetInstructionSetAlignment(compiled_method->GetInstructionSet()));
560 return offset_ + sizeof(OatQuickMethodHeader) + thumb_offset;
561 }
562
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100563 // Deduplication is already done on a pointer basis by the compiler driver,
564 // so we can simply compare the pointers to find out if things are duplicated.
Vladimir Marko8a630572014-04-09 18:45:35 +0100565 SafeMap<const CompiledMethod*, uint32_t, CodeOffsetsKeyComparator> dedupe_map_;
David Srbecky2f6cdb02015-04-11 00:17:53 +0100566
David Srbecky009e2a62015-04-15 02:46:30 +0100567 // Cache of compiler's --debuggable option.
568 const bool debuggable_;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100569};
570
571template <typename DataAccess>
572class OatWriter::InitMapMethodVisitor : public OatDexMethodVisitor {
573 public:
574 InitMapMethodVisitor(OatWriter* writer, size_t offset)
575 : OatDexMethodVisitor(writer, offset) {
576 }
577
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700578 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it ATTRIBUTE_UNUSED)
Mathieu Chartier90443472015-07-16 20:32:27 -0700579 SHARED_REQUIRES(Locks::mutator_lock_) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100580 OatClass* oat_class = writer_->oat_classes_[oat_class_index_];
581 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index);
582
583 if (compiled_method != nullptr) {
584 DCHECK_LT(method_offsets_index_, oat_class->method_offsets_.size());
585 DCHECK_EQ(DataAccess::GetOffset(oat_class, method_offsets_index_), 0u);
586
Vladimir Marko35831e82015-09-11 11:59:18 +0100587 ArrayRef<const uint8_t> map = DataAccess::GetData(compiled_method);
588 uint32_t map_size = map.size() * sizeof(map[0]);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100589 if (map_size != 0u) {
Vladimir Marko35831e82015-09-11 11:59:18 +0100590 auto lb = dedupe_map_.lower_bound(map.data());
591 if (lb != dedupe_map_.end() && !dedupe_map_.key_comp()(map.data(), lb->first)) {
Vladimir Markobd72fc12014-07-09 16:06:40 +0100592 DataAccess::SetOffset(oat_class, method_offsets_index_, lb->second);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100593 } else {
594 DataAccess::SetOffset(oat_class, method_offsets_index_, offset_);
Vladimir Marko35831e82015-09-11 11:59:18 +0100595 dedupe_map_.PutBefore(lb, map.data(), offset_);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100596 offset_ += map_size;
Vladimir Marko35831e82015-09-11 11:59:18 +0100597 writer_->oat_header_->UpdateChecksum(&map[0], map_size);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100598 }
599 }
600 ++method_offsets_index_;
601 }
602
603 return true;
604 }
605
606 private:
607 // Deduplication is already done on a pointer basis by the compiler driver,
608 // so we can simply compare the pointers to find out if things are duplicated.
Vladimir Marko35831e82015-09-11 11:59:18 +0100609 SafeMap<const uint8_t*, uint32_t> dedupe_map_;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100610};
611
612class OatWriter::InitImageMethodVisitor : public OatDexMethodVisitor {
613 public:
614 InitImageMethodVisitor(OatWriter* writer, size_t offset)
Jeff Haoc7d11882015-02-03 15:08:39 -0800615 : OatDexMethodVisitor(writer, offset),
616 pointer_size_(GetInstructionSetPointerSize(writer_->compiler_driver_->GetInstructionSet())) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100617 }
618
619 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it)
Mathieu Chartier90443472015-07-16 20:32:27 -0700620 SHARED_REQUIRES(Locks::mutator_lock_) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100621 OatClass* oat_class = writer_->oat_classes_[oat_class_index_];
622 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index);
623
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800624 OatMethodOffsets offsets(0u);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100625 if (compiled_method != nullptr) {
626 DCHECK_LT(method_offsets_index_, oat_class->method_offsets_.size());
627 offsets = oat_class->method_offsets_[method_offsets_index_];
628 ++method_offsets_index_;
629 }
630
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100631 ClassLinker* linker = Runtime::Current()->GetClassLinker();
632 InvokeType invoke_type = it.GetMethodInvokeType(dex_file_->GetClassDef(class_def_index_));
633 // Unchecked as we hold mutator_lock_ on entry.
634 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800635 StackHandleScope<1> hs(soa.Self());
Mathieu Chartier673ed3d2015-08-28 14:56:43 -0700636 Handle<mirror::DexCache> dex_cache(hs.NewHandle(linker->FindDexCache(
637 Thread::Current(), *dex_file_)));
Mathieu Chartiere401d142015-04-22 13:56:20 -0700638 ArtMethod* method = linker->ResolveMethod(
639 *dex_file_, it.GetMemberIndex(), dex_cache, NullHandle<mirror::ClassLoader>(), nullptr,
640 invoke_type);
Andreas Gamped9efea62014-07-21 22:56:08 -0700641 if (method == nullptr) {
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100642 LOG(INTERNAL_FATAL) << "Unexpected failure to resolve a method: "
643 << PrettyMethod(it.GetMemberIndex(), *dex_file_, true);
Andreas Gamped9efea62014-07-21 22:56:08 -0700644 soa.Self()->AssertPendingException();
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000645 mirror::Throwable* exc = soa.Self()->GetException();
Andreas Gamped9efea62014-07-21 22:56:08 -0700646 std::string dump = exc->Dump();
647 LOG(FATAL) << dump;
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100648 UNREACHABLE();
Andreas Gamped9efea62014-07-21 22:56:08 -0700649 }
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100650
Vladimir Marko35831e82015-09-11 11:59:18 +0100651 if (compiled_method != nullptr && compiled_method->GetQuickCode().size() != 0) {
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100652 method->SetEntryPointFromQuickCompiledCodePtrSize(
653 reinterpret_cast<void*>(offsets.code_offset_), pointer_size_);
654 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100655
656 return true;
657 }
Jeff Haoc7d11882015-02-03 15:08:39 -0800658
659 protected:
660 const size_t pointer_size_;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100661};
662
663class OatWriter::WriteCodeMethodVisitor : public OatDexMethodVisitor {
664 public:
665 WriteCodeMethodVisitor(OatWriter* writer, OutputStream* out, const size_t file_offset,
Vladimir Markof4da6752014-08-01 19:04:18 +0100666 size_t relative_offset) SHARED_LOCK_FUNCTION(Locks::mutator_lock_)
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100667 : OatDexMethodVisitor(writer, relative_offset),
668 out_(out),
Vladimir Markof4da6752014-08-01 19:04:18 +0100669 file_offset_(file_offset),
Vladimir Marko7c2ad5a2014-09-24 12:42:55 +0100670 soa_(Thread::Current()),
671 no_thread_suspension_(soa_.Self(), "OatWriter patching"),
Vladimir Markof4da6752014-08-01 19:04:18 +0100672 class_linker_(Runtime::Current()->GetClassLinker()),
673 dex_cache_(nullptr) {
Vladimir Marko09d09432015-09-08 13:47:48 +0100674 patched_code_.reserve(16 * KB);
675 if (writer_->HasImage()) {
Vladimir Markof4da6752014-08-01 19:04:18 +0100676 // If we're creating the image, the address space must be ready so that we can apply patches.
677 CHECK(writer_->image_writer_->IsImageAddressSpaceReady());
Vladimir Markof4da6752014-08-01 19:04:18 +0100678 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100679 }
680
Vladimir Markof4da6752014-08-01 19:04:18 +0100681 ~WriteCodeMethodVisitor() UNLOCK_FUNCTION(Locks::mutator_lock_) {
Vladimir Markof4da6752014-08-01 19:04:18 +0100682 }
683
684 bool StartClass(const DexFile* dex_file, size_t class_def_index)
Mathieu Chartier90443472015-07-16 20:32:27 -0700685 SHARED_REQUIRES(Locks::mutator_lock_) {
Vladimir Markof4da6752014-08-01 19:04:18 +0100686 OatDexMethodVisitor::StartClass(dex_file, class_def_index);
687 if (dex_cache_ == nullptr || dex_cache_->GetDexFile() != dex_file) {
Mathieu Chartier673ed3d2015-08-28 14:56:43 -0700688 dex_cache_ = class_linker_->FindDexCache(Thread::Current(), *dex_file);
Vladimir Markof4da6752014-08-01 19:04:18 +0100689 }
690 return true;
691 }
692
Mathieu Chartier90443472015-07-16 20:32:27 -0700693 bool EndClass() SHARED_REQUIRES(Locks::mutator_lock_) {
Vladimir Markof4da6752014-08-01 19:04:18 +0100694 bool result = OatDexMethodVisitor::EndClass();
695 if (oat_class_index_ == writer_->oat_classes_.size()) {
696 DCHECK(result); // OatDexMethodVisitor::EndClass() never fails.
Vladimir Marko20f85592015-03-19 10:07:02 +0000697 offset_ = writer_->relative_patcher_->WriteThunks(out_, offset_);
Vladimir Markof4da6752014-08-01 19:04:18 +0100698 if (UNLIKELY(offset_ == 0u)) {
699 PLOG(ERROR) << "Failed to write final relative call thunks";
700 result = false;
701 }
702 }
703 return result;
704 }
705
706 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it)
Mathieu Chartier90443472015-07-16 20:32:27 -0700707 SHARED_REQUIRES(Locks::mutator_lock_) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100708 OatClass* oat_class = writer_->oat_classes_[oat_class_index_];
709 const CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index);
710
Mathieu Chartier673ed3d2015-08-28 14:56:43 -0700711 // No thread suspension since dex_cache_ that may get invalidated if that occurs.
712 ScopedAssertNoThreadSuspension tsc(Thread::Current(), __FUNCTION__);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700713 if (compiled_method != nullptr) { // ie. not an abstract method
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100714 size_t file_offset = file_offset_;
715 OutputStream* out = out_;
716
Vladimir Marko35831e82015-09-11 11:59:18 +0100717 ArrayRef<const uint8_t> quick_code = compiled_method->GetQuickCode();
718 uint32_t code_size = quick_code.size() * sizeof(uint8_t);
Nicolas Geoffrayf0758792015-07-13 11:56:00 +0000719
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100720 // Deduplicate code arrays.
721 const OatMethodOffsets& method_offsets = oat_class->method_offsets_[method_offsets_index_];
722 if (method_offsets.code_offset_ > offset_) {
723 offset_ = writer_->relative_patcher_->WriteThunks(out, offset_);
724 if (offset_ == 0u) {
725 ReportWriteFailure("relative call thunk", it);
726 return false;
Nicolas Geoffrayf0758792015-07-13 11:56:00 +0000727 }
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100728 uint32_t aligned_offset = compiled_method->AlignCode(offset_);
729 uint32_t aligned_code_delta = aligned_offset - offset_;
730 if (aligned_code_delta != 0) {
731 if (!writer_->WriteCodeAlignment(out, aligned_code_delta)) {
732 ReportWriteFailure("code alignment padding", it);
733 return false;
734 }
735 offset_ += aligned_code_delta;
736 DCHECK_OFFSET_();
737 }
738 DCHECK_ALIGNED_PARAM(offset_,
739 GetInstructionSetAlignment(compiled_method->GetInstructionSet()));
740 DCHECK_EQ(method_offsets.code_offset_,
741 offset_ + sizeof(OatQuickMethodHeader) + compiled_method->CodeDelta())
742 << PrettyMethod(it.GetMemberIndex(), *dex_file_);
743 const OatQuickMethodHeader& method_header =
744 oat_class->method_headers_[method_offsets_index_];
745 writer_->oat_header_->UpdateChecksum(&method_header, sizeof(method_header));
746 if (!out->WriteFully(&method_header, sizeof(method_header))) {
747 ReportWriteFailure("method header", it);
748 return false;
749 }
750 writer_->size_method_header_ += sizeof(method_header);
751 offset_ += sizeof(method_header);
Nicolas Geoffrayed6195a2015-07-13 17:02:30 +0000752 DCHECK_OFFSET_();
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100753
754 if (!compiled_method->GetPatches().empty()) {
Vladimir Marko35831e82015-09-11 11:59:18 +0100755 patched_code_.assign(quick_code.begin(), quick_code.end());
756 quick_code = ArrayRef<const uint8_t>(patched_code_);
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100757 for (const LinkerPatch& patch : compiled_method->GetPatches()) {
758 if (patch.Type() == kLinkerPatchCallRelative) {
759 // NOTE: Relative calls across oat files are not supported.
760 uint32_t target_offset = GetTargetOffset(patch);
761 uint32_t literal_offset = patch.LiteralOffset();
762 writer_->relative_patcher_->PatchCall(&patched_code_, literal_offset,
763 offset_ + literal_offset, target_offset);
764 } else if (patch.Type() == kLinkerPatchDexCacheArray) {
765 uint32_t target_offset = GetDexCacheOffset(patch);
766 uint32_t literal_offset = patch.LiteralOffset();
767 writer_->relative_patcher_->PatchDexCacheReference(&patched_code_, patch,
768 offset_ + literal_offset,
769 target_offset);
770 } else if (patch.Type() == kLinkerPatchCall) {
771 uint32_t target_offset = GetTargetOffset(patch);
772 PatchCodeAddress(&patched_code_, patch.LiteralOffset(), target_offset);
773 } else if (patch.Type() == kLinkerPatchMethod) {
774 ArtMethod* method = GetTargetMethod(patch);
775 PatchMethodAddress(&patched_code_, patch.LiteralOffset(), method);
776 } else if (patch.Type() == kLinkerPatchType) {
777 mirror::Class* type = GetTargetType(patch);
778 PatchObjectAddress(&patched_code_, patch.LiteralOffset(), type);
779 }
780 }
781 }
782
Vladimir Marko35831e82015-09-11 11:59:18 +0100783 writer_->oat_header_->UpdateChecksum(quick_code.data(), code_size);
784 if (!out->WriteFully(quick_code.data(), code_size)) {
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100785 ReportWriteFailure("method code", it);
786 return false;
787 }
788 writer_->size_code_ += code_size;
789 offset_ += code_size;
Nicolas Geoffrayf0758792015-07-13 11:56:00 +0000790 }
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100791 DCHECK_OFFSET_();
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100792 ++method_offsets_index_;
793 }
794
795 return true;
796 }
797
798 private:
799 OutputStream* const out_;
Vladimir Marko7c2ad5a2014-09-24 12:42:55 +0100800 const size_t file_offset_;
801 const ScopedObjectAccess soa_;
802 const ScopedAssertNoThreadSuspension no_thread_suspension_;
Vladimir Markof4da6752014-08-01 19:04:18 +0100803 ClassLinker* const class_linker_;
804 mirror::DexCache* dex_cache_;
805 std::vector<uint8_t> patched_code_;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100806
807 void ReportWriteFailure(const char* what, const ClassDataItemIterator& it) {
808 PLOG(ERROR) << "Failed to write " << what << " for "
809 << PrettyMethod(it.GetMemberIndex(), *dex_file_) << " to " << out_->GetLocation();
810 }
Vladimir Markof4da6752014-08-01 19:04:18 +0100811
Mathieu Chartiere401d142015-04-22 13:56:20 -0700812 ArtMethod* GetTargetMethod(const LinkerPatch& patch)
Mathieu Chartier90443472015-07-16 20:32:27 -0700813 SHARED_REQUIRES(Locks::mutator_lock_) {
Vladimir Markof4da6752014-08-01 19:04:18 +0100814 MethodReference ref = patch.TargetMethod();
815 mirror::DexCache* dex_cache =
Mathieu Chartier673ed3d2015-08-28 14:56:43 -0700816 (dex_file_ == ref.dex_file) ? dex_cache_ : class_linker_->FindDexCache(
817 Thread::Current(), *ref.dex_file);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700818 ArtMethod* method = dex_cache->GetResolvedMethod(
819 ref.dex_method_index, class_linker_->GetImagePointerSize());
Vladimir Markof4da6752014-08-01 19:04:18 +0100820 CHECK(method != nullptr);
821 return method;
822 }
823
Mathieu Chartier90443472015-07-16 20:32:27 -0700824 uint32_t GetTargetOffset(const LinkerPatch& patch) SHARED_REQUIRES(Locks::mutator_lock_) {
Vladimir Markob163bb72015-03-31 21:49:49 +0100825 auto target_it = writer_->method_offset_map_.map.find(patch.TargetMethod());
Vladimir Markof4da6752014-08-01 19:04:18 +0100826 uint32_t target_offset =
Vladimir Markob163bb72015-03-31 21:49:49 +0100827 (target_it != writer_->method_offset_map_.map.end()) ? target_it->second : 0u;
Vladimir Markof4da6752014-08-01 19:04:18 +0100828 // If there's no compiled code, point to the correct trampoline.
829 if (UNLIKELY(target_offset == 0)) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700830 ArtMethod* target = GetTargetMethod(patch);
Vladimir Markof4da6752014-08-01 19:04:18 +0100831 DCHECK(target != nullptr);
Jeff Haoa0acc2d2015-01-27 11:22:04 -0800832 size_t size = GetInstructionSetPointerSize(writer_->compiler_driver_->GetInstructionSet());
833 const void* oat_code_offset = target->GetEntryPointFromQuickCompiledCodePtrSize(size);
834 if (oat_code_offset != 0) {
835 DCHECK(!Runtime::Current()->GetClassLinker()->IsQuickResolutionStub(oat_code_offset));
836 DCHECK(!Runtime::Current()->GetClassLinker()->IsQuickToInterpreterBridge(oat_code_offset));
837 DCHECK(!Runtime::Current()->GetClassLinker()->IsQuickGenericJniStub(oat_code_offset));
838 target_offset = PointerToLowMemUInt32(oat_code_offset);
839 } else {
840 target_offset = target->IsNative()
841 ? writer_->oat_header_->GetQuickGenericJniTrampolineOffset()
842 : writer_->oat_header_->GetQuickToInterpreterBridgeOffset();
843 }
Vladimir Markof4da6752014-08-01 19:04:18 +0100844 }
845 return target_offset;
846 }
847
848 mirror::Class* GetTargetType(const LinkerPatch& patch)
Mathieu Chartier90443472015-07-16 20:32:27 -0700849 SHARED_REQUIRES(Locks::mutator_lock_) {
Vladimir Markof4da6752014-08-01 19:04:18 +0100850 mirror::DexCache* dex_cache = (dex_file_ == patch.TargetTypeDexFile())
Mathieu Chartier673ed3d2015-08-28 14:56:43 -0700851 ? dex_cache_ : class_linker_->FindDexCache(Thread::Current(), *patch.TargetTypeDexFile());
Vladimir Markof4da6752014-08-01 19:04:18 +0100852 mirror::Class* type = dex_cache->GetResolvedType(patch.TargetTypeIndex());
853 CHECK(type != nullptr);
854 return type;
855 }
856
Mathieu Chartier90443472015-07-16 20:32:27 -0700857 uint32_t GetDexCacheOffset(const LinkerPatch& patch) SHARED_REQUIRES(Locks::mutator_lock_) {
Vladimir Marko09d09432015-09-08 13:47:48 +0100858 if (writer_->HasImage()) {
Vladimir Marko05792b92015-08-03 11:56:49 +0100859 auto* element = writer_->image_writer_->GetDexCacheArrayElementImageAddress<const uint8_t*>(
Vladimir Marko20f85592015-03-19 10:07:02 +0000860 patch.TargetDexCacheDexFile(), patch.TargetDexCacheElementOffset());
861 const uint8_t* oat_data = writer_->image_writer_->GetOatFileBegin() + file_offset_;
Vladimir Marko05792b92015-08-03 11:56:49 +0100862 return element - oat_data;
Vladimir Marko20f85592015-03-19 10:07:02 +0000863 } else {
Vladimir Marko09d09432015-09-08 13:47:48 +0100864 size_t start = writer_->dex_cache_arrays_offsets_.Get(patch.TargetDexCacheDexFile());
865 return start + patch.TargetDexCacheElementOffset();
Vladimir Marko20f85592015-03-19 10:07:02 +0000866 }
867 }
868
Vladimir Markof4da6752014-08-01 19:04:18 +0100869 void PatchObjectAddress(std::vector<uint8_t>* code, uint32_t offset, mirror::Object* object)
Mathieu Chartier90443472015-07-16 20:32:27 -0700870 SHARED_REQUIRES(Locks::mutator_lock_) {
Vladimir Marko09d09432015-09-08 13:47:48 +0100871 if (writer_->HasImage()) {
Vladimir Markof4da6752014-08-01 19:04:18 +0100872 object = writer_->image_writer_->GetImageAddress(object);
Vladimir Marko09d09432015-09-08 13:47:48 +0100873 } else {
874 // NOTE: We're using linker patches for app->boot references when the image can
875 // be relocated and therefore we need to emit .oat_patches. We're not using this
876 // for app->app references, so check that the object is in the image space.
877 DCHECK(Runtime::Current()->GetHeap()->FindSpaceFromObject(object, false)->IsImageSpace());
Vladimir Markof4da6752014-08-01 19:04:18 +0100878 }
Vladimir Marko09d09432015-09-08 13:47:48 +0100879 // Note: We only patch targeting Objects in image which is in the low 4gb.
Vladimir Markof4da6752014-08-01 19:04:18 +0100880 uint32_t address = PointerToLowMemUInt32(object);
881 DCHECK_LE(offset + 4, code->size());
882 uint8_t* data = &(*code)[offset];
883 data[0] = address & 0xffu;
884 data[1] = (address >> 8) & 0xffu;
885 data[2] = (address >> 16) & 0xffu;
886 data[3] = (address >> 24) & 0xffu;
887 }
888
Mathieu Chartiere401d142015-04-22 13:56:20 -0700889 void PatchMethodAddress(std::vector<uint8_t>* code, uint32_t offset, ArtMethod* method)
Mathieu Chartier90443472015-07-16 20:32:27 -0700890 SHARED_REQUIRES(Locks::mutator_lock_) {
Vladimir Marko09d09432015-09-08 13:47:48 +0100891 if (writer_->HasImage()) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700892 method = writer_->image_writer_->GetImageMethodAddress(method);
Vladimir Marko09d09432015-09-08 13:47:48 +0100893 } else if (kIsDebugBuild) {
894 // NOTE: We're using linker patches for app->boot references when the image can
895 // be relocated and therefore we need to emit .oat_patches. We're not using this
896 // for app->app references, so check that the method is an image method.
897 gc::space::ImageSpace* image_space = Runtime::Current()->GetHeap()->GetImageSpace();
898 size_t method_offset = reinterpret_cast<const uint8_t*>(method) - image_space->Begin();
899 CHECK(image_space->GetImageHeader().GetMethodsSection().Contains(method_offset));
Mathieu Chartiere401d142015-04-22 13:56:20 -0700900 }
Vladimir Marko09d09432015-09-08 13:47:48 +0100901 // Note: We only patch targeting ArtMethods in image which is in the low 4gb.
Mathieu Chartiere401d142015-04-22 13:56:20 -0700902 uint32_t address = PointerToLowMemUInt32(method);
903 DCHECK_LE(offset + 4, code->size());
904 uint8_t* data = &(*code)[offset];
905 data[0] = address & 0xffu;
906 data[1] = (address >> 8) & 0xffu;
907 data[2] = (address >> 16) & 0xffu;
908 data[3] = (address >> 24) & 0xffu;
909 }
910
Vladimir Markof4da6752014-08-01 19:04:18 +0100911 void PatchCodeAddress(std::vector<uint8_t>* code, uint32_t offset, uint32_t target_offset)
Mathieu Chartier90443472015-07-16 20:32:27 -0700912 SHARED_REQUIRES(Locks::mutator_lock_) {
Vladimir Marko09d09432015-09-08 13:47:48 +0100913 uint32_t address = target_offset;
914 if (writer_->HasImage()) {
915 address = PointerToLowMemUInt32(writer_->image_writer_->GetOatFileBegin() +
916 writer_->oat_data_offset_ + target_offset);
917 }
Vladimir Markof4da6752014-08-01 19:04:18 +0100918 DCHECK_LE(offset + 4, code->size());
919 uint8_t* data = &(*code)[offset];
920 data[0] = address & 0xffu;
921 data[1] = (address >> 8) & 0xffu;
922 data[2] = (address >> 16) & 0xffu;
923 data[3] = (address >> 24) & 0xffu;
924 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100925};
926
927template <typename DataAccess>
928class OatWriter::WriteMapMethodVisitor : public OatDexMethodVisitor {
929 public:
930 WriteMapMethodVisitor(OatWriter* writer, OutputStream* out, const size_t file_offset,
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800931 size_t relative_offset)
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100932 : OatDexMethodVisitor(writer, relative_offset),
933 out_(out),
934 file_offset_(file_offset) {
935 }
936
937 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it) {
938 OatClass* oat_class = writer_->oat_classes_[oat_class_index_];
939 const CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index);
940
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700941 if (compiled_method != nullptr) { // ie. not an abstract method
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100942 size_t file_offset = file_offset_;
943 OutputStream* out = out_;
944
945 uint32_t map_offset = DataAccess::GetOffset(oat_class, method_offsets_index_);
946 ++method_offsets_index_;
947
948 // Write deduplicated map.
Vladimir Marko35831e82015-09-11 11:59:18 +0100949 ArrayRef<const uint8_t> map = DataAccess::GetData(compiled_method);
950 size_t map_size = map.size() * sizeof(map[0]);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100951 DCHECK((map_size == 0u && map_offset == 0u) ||
952 (map_size != 0u && map_offset != 0u && map_offset <= offset_))
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800953 << map_size << " " << map_offset << " " << offset_ << " "
954 << PrettyMethod(it.GetMemberIndex(), *dex_file_) << " for " << DataAccess::Name();
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100955 if (map_size != 0u && map_offset == offset_) {
Vladimir Marko35831e82015-09-11 11:59:18 +0100956 if (UNLIKELY(!out->WriteFully(&map[0], map_size))) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100957 ReportWriteFailure(it);
958 return false;
959 }
960 offset_ += map_size;
961 }
962 DCHECK_OFFSET_();
963 }
964
965 return true;
966 }
967
968 private:
969 OutputStream* const out_;
970 size_t const file_offset_;
971
972 void ReportWriteFailure(const ClassDataItemIterator& it) {
973 PLOG(ERROR) << "Failed to write " << DataAccess::Name() << " for "
974 << PrettyMethod(it.GetMemberIndex(), *dex_file_) << " to " << out_->GetLocation();
975 }
976};
977
978// Visit all methods from all classes in all dex files with the specified visitor.
979bool OatWriter::VisitDexMethods(DexMethodVisitor* visitor) {
980 for (const DexFile* dex_file : *dex_files_) {
981 const size_t class_def_count = dex_file->NumClassDefs();
982 for (size_t class_def_index = 0; class_def_index != class_def_count; ++class_def_index) {
983 if (UNLIKELY(!visitor->StartClass(dex_file, class_def_index))) {
984 return false;
985 }
986 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
Ian Rogers13735952014-10-08 12:43:28 -0700987 const uint8_t* class_data = dex_file->GetClassData(class_def);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700988 if (class_data != nullptr) { // ie not an empty class, such as a marker interface
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100989 ClassDataItemIterator it(*dex_file, class_data);
990 while (it.HasNextStaticField()) {
991 it.Next();
992 }
993 while (it.HasNextInstanceField()) {
994 it.Next();
995 }
996 size_t class_def_method_index = 0u;
997 while (it.HasNextDirectMethod()) {
998 if (!visitor->VisitMethod(class_def_method_index, it)) {
999 return false;
1000 }
1001 ++class_def_method_index;
1002 it.Next();
1003 }
1004 while (it.HasNextVirtualMethod()) {
1005 if (UNLIKELY(!visitor->VisitMethod(class_def_method_index, it))) {
1006 return false;
1007 }
1008 ++class_def_method_index;
1009 it.Next();
1010 }
1011 }
1012 if (UNLIKELY(!visitor->EndClass())) {
1013 return false;
1014 }
1015 }
1016 }
1017 return true;
1018}
1019
Brian Carlstrom81f3ca12012-03-17 00:27:35 -07001020size_t OatWriter::InitOatHeader() {
Andreas Gampe22f8e5c2014-07-09 11:38:21 -07001021 oat_header_ = OatHeader::Create(compiler_driver_->GetInstructionSet(),
1022 compiler_driver_->GetInstructionSetFeatures(),
1023 dex_files_,
1024 image_file_location_oat_checksum_,
1025 image_file_location_oat_begin_,
1026 key_value_store_);
1027
1028 return oat_header_->GetHeaderSize();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001029}
1030
1031size_t OatWriter::InitOatDexFiles(size_t offset) {
1032 // create the OatDexFiles
1033 for (size_t i = 0; i != dex_files_->size(); ++i) {
1034 const DexFile* dex_file = (*dex_files_)[i];
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001035 CHECK(dex_file != nullptr);
Brian Carlstrom265091e2013-01-30 14:08:26 -08001036 OatDexFile* oat_dex_file = new OatDexFile(offset, *dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -07001037 oat_dex_files_.push_back(oat_dex_file);
1038 offset += oat_dex_file->SizeOf();
1039 }
1040 return offset;
1041}
1042
Brian Carlstrom89521892011-12-07 22:05:07 -08001043size_t OatWriter::InitDexFiles(size_t offset) {
1044 // calculate the offsets within OatDexFiles to the DexFiles
1045 for (size_t i = 0; i != dex_files_->size(); ++i) {
1046 // dex files are required to be 4 byte aligned
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001047 size_t original_offset = offset;
Brian Carlstrom89521892011-12-07 22:05:07 -08001048 offset = RoundUp(offset, 4);
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001049 size_dex_file_alignment_ += offset - original_offset;
Brian Carlstrom89521892011-12-07 22:05:07 -08001050
1051 // set offset in OatDexFile to DexFile
1052 oat_dex_files_[i]->dex_file_offset_ = offset;
1053
1054 const DexFile* dex_file = (*dex_files_)[i];
Artem Udovichenkod9786b02015-10-14 16:36:55 +03001055
1056 // Initialize type lookup table
1057 oat_dex_files_[i]->lookup_table_ = dex_file->GetTypeLookupTable();
1058
Brian Carlstrom89521892011-12-07 22:05:07 -08001059 offset += dex_file->GetHeader().file_size_;
1060 }
1061 return offset;
1062}
1063
Artem Udovichenkod9786b02015-10-14 16:36:55 +03001064size_t OatWriter::InitLookupTables(size_t offset) {
1065 for (OatDexFile* oat_dex_file : oat_dex_files_) {
1066 if (oat_dex_file->lookup_table_ != nullptr) {
1067 uint32_t aligned_offset = RoundUp(offset, 4);
1068 oat_dex_file->lookup_table_offset_ = aligned_offset;
1069 size_oat_lookup_table_alignment_ += aligned_offset - offset;
1070 offset = aligned_offset + oat_dex_file->lookup_table_->RawDataLength();
1071 } else {
1072 oat_dex_file->lookup_table_offset_ = 0;
1073 }
1074 }
1075 return offset;
1076}
1077
Brian Carlstrom389efb02012-01-11 12:06:26 -08001078size_t OatWriter::InitOatClasses(size_t offset) {
Brian Carlstrom389efb02012-01-11 12:06:26 -08001079 // calculate the offsets within OatDexFiles to OatClasses
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001080 InitOatClassesMethodVisitor visitor(this, offset);
1081 bool success = VisitDexMethods(&visitor);
1082 CHECK(success);
1083 offset = visitor.GetOffset();
Brian Carlstromba150c32013-08-27 17:31:03 -07001084
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001085 // Update oat_dex_files_.
1086 auto oat_class_it = oat_classes_.begin();
1087 for (OatDexFile* oat_dex_file : oat_dex_files_) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001088 for (uint32_t& method_offset : oat_dex_file->methods_offsets_) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001089 DCHECK(oat_class_it != oat_classes_.end());
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001090 method_offset = (*oat_class_it)->offset_;
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001091 ++oat_class_it;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001092 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001093 oat_dex_file->UpdateChecksum(oat_header_);
Brian Carlstrome24fa612011-09-29 00:53:55 -07001094 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001095 CHECK(oat_class_it == oat_classes_.end());
1096
1097 return offset;
1098}
1099
1100size_t OatWriter::InitOatMaps(size_t offset) {
1101 #define VISIT(VisitorType) \
1102 do { \
1103 VisitorType visitor(this, offset); \
1104 bool success = VisitDexMethods(&visitor); \
1105 DCHECK(success); \
1106 offset = visitor.GetOffset(); \
1107 } while (false)
1108
1109 VISIT(InitMapMethodVisitor<GcMapDataAccess>);
1110 VISIT(InitMapMethodVisitor<MappingTableDataAccess>);
1111 VISIT(InitMapMethodVisitor<VmapTableDataAccess>);
1112
1113 #undef VISIT
1114
Brian Carlstrome24fa612011-09-29 00:53:55 -07001115 return offset;
1116}
1117
1118size_t OatWriter::InitOatCode(size_t offset) {
1119 // calculate the offsets within OatHeader to executable code
1120 size_t old_offset = offset;
Dave Allison50abf0a2014-06-23 13:19:59 -07001121 size_t adjusted_offset = offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001122 // required to be on a new page boundary
1123 offset = RoundUp(offset, kPageSize);
1124 oat_header_->SetExecutableOffset(offset);
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001125 size_executable_offset_alignment_ = offset - old_offset;
1126 if (compiler_driver_->IsImage()) {
Alex Lighta59dd802014-07-02 16:28:08 -07001127 CHECK_EQ(image_patch_delta_, 0);
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001128 InstructionSet instruction_set = compiler_driver_->GetInstructionSet();
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001129
Ian Rogers848871b2013-08-05 10:56:33 -07001130 #define DO_TRAMPOLINE(field, fn_name) \
1131 offset = CompiledCode::AlignCode(offset, instruction_set); \
Dave Allison50abf0a2014-06-23 13:19:59 -07001132 adjusted_offset = offset + CompiledCode::CodeDelta(instruction_set); \
1133 oat_header_->Set ## fn_name ## Offset(adjusted_offset); \
Ian Rogers848871b2013-08-05 10:56:33 -07001134 field.reset(compiler_driver_->Create ## fn_name()); \
1135 offset += field->size();
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001136
Ian Rogers848871b2013-08-05 10:56:33 -07001137 DO_TRAMPOLINE(jni_dlsym_lookup_, JniDlsymLookup);
Andreas Gampe2da88232014-02-27 12:26:20 -08001138 DO_TRAMPOLINE(quick_generic_jni_trampoline_, QuickGenericJniTrampoline);
Jeff Hao88474b42013-10-23 16:24:40 -07001139 DO_TRAMPOLINE(quick_imt_conflict_trampoline_, QuickImtConflictTrampoline);
Ian Rogers848871b2013-08-05 10:56:33 -07001140 DO_TRAMPOLINE(quick_resolution_trampoline_, QuickResolutionTrampoline);
1141 DO_TRAMPOLINE(quick_to_interpreter_bridge_, QuickToInterpreterBridge);
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001142
Ian Rogers848871b2013-08-05 10:56:33 -07001143 #undef DO_TRAMPOLINE
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001144 } else {
Ian Rogers848871b2013-08-05 10:56:33 -07001145 oat_header_->SetInterpreterToInterpreterBridgeOffset(0);
1146 oat_header_->SetInterpreterToCompiledCodeBridgeOffset(0);
1147 oat_header_->SetJniDlsymLookupOffset(0);
Andreas Gampe2da88232014-02-27 12:26:20 -08001148 oat_header_->SetQuickGenericJniTrampolineOffset(0);
Jeff Hao88474b42013-10-23 16:24:40 -07001149 oat_header_->SetQuickImtConflictTrampolineOffset(0);
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001150 oat_header_->SetQuickResolutionTrampolineOffset(0);
Ian Rogers848871b2013-08-05 10:56:33 -07001151 oat_header_->SetQuickToInterpreterBridgeOffset(0);
Alex Lighta59dd802014-07-02 16:28:08 -07001152 oat_header_->SetImagePatchDelta(image_patch_delta_);
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001153 }
Brian Carlstrome24fa612011-09-29 00:53:55 -07001154 return offset;
1155}
1156
1157size_t OatWriter::InitOatCodeDexFiles(size_t offset) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001158 #define VISIT(VisitorType) \
1159 do { \
1160 VisitorType visitor(this, offset); \
1161 bool success = VisitDexMethods(&visitor); \
1162 DCHECK(success); \
1163 offset = visitor.GetOffset(); \
1164 } while (false)
Brian Carlstrome24fa612011-09-29 00:53:55 -07001165
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001166 VISIT(InitCodeMethodVisitor);
Andreas Gampe9edb5b12015-09-21 11:46:52 -07001167 if (compiler_driver_->IsImage()) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001168 VISIT(InitImageMethodVisitor);
Ian Rogers0571d352011-11-03 19:51:38 -07001169 }
Logan Chien8b977d32012-02-21 19:14:55 +08001170
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001171 #undef VISIT
1172
Brian Carlstrome24fa612011-09-29 00:53:55 -07001173 return offset;
1174}
1175
David Srbeckybc90fd02015-04-22 19:40:27 +01001176bool OatWriter::WriteRodata(OutputStream* out) {
Vladimir Markof4da6752014-08-01 19:04:18 +01001177 const off_t raw_file_offset = out->Seek(0, kSeekCurrent);
1178 if (raw_file_offset == (off_t) -1) {
1179 LOG(ERROR) << "Failed to get file offset in " << out->GetLocation();
1180 return false;
1181 }
1182 const size_t file_offset = static_cast<size_t>(raw_file_offset);
David Srbeckybc90fd02015-04-22 19:40:27 +01001183 oat_data_offset_ = file_offset;
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001184
Vladimir Markof4da6752014-08-01 19:04:18 +01001185 // Reserve space for header. It will be written last - after updating the checksum.
Andreas Gampe22f8e5c2014-07-09 11:38:21 -07001186 size_t header_size = oat_header_->GetHeaderSize();
Vladimir Markof4da6752014-08-01 19:04:18 +01001187 if (out->Seek(header_size, kSeekCurrent) == (off_t) -1) {
1188 PLOG(ERROR) << "Failed to reserve space for oat header in " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001189 return false;
1190 }
Andreas Gampe22f8e5c2014-07-09 11:38:21 -07001191 size_oat_header_ += sizeof(OatHeader);
1192 size_oat_header_key_value_store_ += oat_header_->GetHeaderSize() - sizeof(OatHeader);
Brian Carlstrom81f3ca12012-03-17 00:27:35 -07001193
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001194 if (!WriteTables(out, file_offset)) {
Ian Rogers3d504072014-03-01 09:16:49 -08001195 LOG(ERROR) << "Failed to write oat tables to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001196 return false;
1197 }
1198
Vladimir Markof4da6752014-08-01 19:04:18 +01001199 off_t tables_end_offset = out->Seek(0, kSeekCurrent);
1200 if (tables_end_offset == (off_t) -1) {
1201 LOG(ERROR) << "Failed to seek to oat code position in " << out->GetLocation();
1202 return false;
1203 }
1204 size_t relative_offset = static_cast<size_t>(tables_end_offset) - file_offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001205 relative_offset = WriteMaps(out, file_offset, relative_offset);
1206 if (relative_offset == 0) {
1207 LOG(ERROR) << "Failed to write oat code to " << out->GetLocation();
1208 return false;
1209 }
1210
David Srbeckybc90fd02015-04-22 19:40:27 +01001211 // Write padding.
1212 off_t new_offset = out->Seek(size_executable_offset_alignment_, kSeekCurrent);
1213 relative_offset += size_executable_offset_alignment_;
1214 DCHECK_EQ(relative_offset, oat_header_->GetExecutableOffset());
1215 size_t expected_file_offset = file_offset + relative_offset;
1216 if (static_cast<uint32_t>(new_offset) != expected_file_offset) {
1217 PLOG(ERROR) << "Failed to seek to oat code section. Actual: " << new_offset
1218 << " Expected: " << expected_file_offset << " File: " << out->GetLocation();
1219 return 0;
1220 }
1221 DCHECK_OFFSET();
1222
1223 return true;
1224}
1225
1226bool OatWriter::WriteCode(OutputStream* out) {
1227 size_t header_size = oat_header_->GetHeaderSize();
1228 const size_t file_offset = oat_data_offset_;
1229 size_t relative_offset = oat_header_->GetExecutableOffset();
1230 DCHECK_OFFSET();
1231
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001232 relative_offset = WriteCode(out, file_offset, relative_offset);
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001233 if (relative_offset == 0) {
Ian Rogers3d504072014-03-01 09:16:49 -08001234 LOG(ERROR) << "Failed to write oat code to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001235 return false;
1236 }
1237
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001238 relative_offset = WriteCodeDexFiles(out, file_offset, relative_offset);
1239 if (relative_offset == 0) {
Ian Rogers3d504072014-03-01 09:16:49 -08001240 LOG(ERROR) << "Failed to write oat code for dex files to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001241 return false;
1242 }
1243
Vladimir Markof4da6752014-08-01 19:04:18 +01001244 const off_t oat_end_file_offset = out->Seek(0, kSeekCurrent);
1245 if (oat_end_file_offset == (off_t) -1) {
1246 LOG(ERROR) << "Failed to get oat end file offset in " << out->GetLocation();
1247 return false;
1248 }
1249
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001250 if (kIsDebugBuild) {
1251 uint32_t size_total = 0;
1252 #define DO_STAT(x) \
Anwar Ghuloum75a43f12013-08-13 17:22:14 -07001253 VLOG(compiler) << #x "=" << PrettySize(x) << " (" << x << "B)"; \
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001254 size_total += x;
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001255
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001256 DO_STAT(size_dex_file_alignment_);
1257 DO_STAT(size_executable_offset_alignment_);
1258 DO_STAT(size_oat_header_);
Andreas Gampe22f8e5c2014-07-09 11:38:21 -07001259 DO_STAT(size_oat_header_key_value_store_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001260 DO_STAT(size_dex_file_);
Ian Rogers848871b2013-08-05 10:56:33 -07001261 DO_STAT(size_interpreter_to_interpreter_bridge_);
1262 DO_STAT(size_interpreter_to_compiled_code_bridge_);
1263 DO_STAT(size_jni_dlsym_lookup_);
Andreas Gampe2da88232014-02-27 12:26:20 -08001264 DO_STAT(size_quick_generic_jni_trampoline_);
Jeff Hao88474b42013-10-23 16:24:40 -07001265 DO_STAT(size_quick_imt_conflict_trampoline_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001266 DO_STAT(size_quick_resolution_trampoline_);
Ian Rogers848871b2013-08-05 10:56:33 -07001267 DO_STAT(size_quick_to_interpreter_bridge_);
1268 DO_STAT(size_trampoline_alignment_);
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001269 DO_STAT(size_method_header_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001270 DO_STAT(size_code_);
1271 DO_STAT(size_code_alignment_);
Vladimir Markof4da6752014-08-01 19:04:18 +01001272 DO_STAT(size_relative_call_thunks_);
Vladimir Markoc74658b2015-03-31 10:26:41 +01001273 DO_STAT(size_misc_thunks_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001274 DO_STAT(size_mapping_table_);
1275 DO_STAT(size_vmap_table_);
1276 DO_STAT(size_gc_map_);
1277 DO_STAT(size_oat_dex_file_location_size_);
1278 DO_STAT(size_oat_dex_file_location_data_);
1279 DO_STAT(size_oat_dex_file_location_checksum_);
1280 DO_STAT(size_oat_dex_file_offset_);
1281 DO_STAT(size_oat_dex_file_methods_offsets_);
Brian Carlstromba150c32013-08-27 17:31:03 -07001282 DO_STAT(size_oat_class_type_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001283 DO_STAT(size_oat_class_status_);
Brian Carlstromba150c32013-08-27 17:31:03 -07001284 DO_STAT(size_oat_class_method_bitmaps_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001285 DO_STAT(size_oat_class_method_offsets_);
Artem Udovichenkod9786b02015-10-14 16:36:55 +03001286 DO_STAT(size_oat_lookup_table_alignment_);
1287 DO_STAT(size_oat_lookup_table_offset_);
1288 DO_STAT(size_oat_lookup_table_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001289 #undef DO_STAT
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001290
Anwar Ghuloum75a43f12013-08-13 17:22:14 -07001291 VLOG(compiler) << "size_total=" << PrettySize(size_total) << " (" << size_total << "B)"; \
Vladimir Markof4da6752014-08-01 19:04:18 +01001292 CHECK_EQ(file_offset + size_total, static_cast<size_t>(oat_end_file_offset));
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001293 CHECK_EQ(size_, size_total);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001294 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001295
Vladimir Markof4da6752014-08-01 19:04:18 +01001296 CHECK_EQ(file_offset + size_, static_cast<size_t>(oat_end_file_offset));
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001297 CHECK_EQ(size_, relative_offset);
1298
Vladimir Markof4da6752014-08-01 19:04:18 +01001299 // Write the header now that the checksum is final.
1300 if (out->Seek(file_offset, kSeekSet) == (off_t) -1) {
1301 PLOG(ERROR) << "Failed to seek to oat header position in " << out->GetLocation();
1302 return false;
1303 }
David Srbeckybc90fd02015-04-22 19:40:27 +01001304 DCHECK_EQ(file_offset, static_cast<size_t>(out->Seek(0, kSeekCurrent)));
Vladimir Markof4da6752014-08-01 19:04:18 +01001305 if (!out->WriteFully(oat_header_, header_size)) {
1306 PLOG(ERROR) << "Failed to write oat header to " << out->GetLocation();
1307 return false;
1308 }
1309 if (out->Seek(oat_end_file_offset, kSeekSet) == (off_t) -1) {
1310 PLOG(ERROR) << "Failed to seek to end after writing oat header to " << out->GetLocation();
1311 return false;
1312 }
1313 DCHECK_EQ(oat_end_file_offset, out->Seek(0, kSeekCurrent));
1314
Brian Carlstrome24fa612011-09-29 00:53:55 -07001315 return true;
1316}
1317
Ian Rogers3d504072014-03-01 09:16:49 -08001318bool OatWriter::WriteTables(OutputStream* out, const size_t file_offset) {
Brian Carlstrome24fa612011-09-29 00:53:55 -07001319 for (size_t i = 0; i != oat_dex_files_.size(); ++i) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001320 if (!oat_dex_files_[i]->Write(this, out, file_offset)) {
Ian Rogers3d504072014-03-01 09:16:49 -08001321 PLOG(ERROR) << "Failed to write oat dex information to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001322 return false;
1323 }
1324 }
Brian Carlstrom89521892011-12-07 22:05:07 -08001325 for (size_t i = 0; i != oat_dex_files_.size(); ++i) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001326 uint32_t expected_offset = file_offset + oat_dex_files_[i]->dex_file_offset_;
Ian Rogers3d504072014-03-01 09:16:49 -08001327 off_t actual_offset = out->Seek(expected_offset, kSeekSet);
Brian Carlstrom89521892011-12-07 22:05:07 -08001328 if (static_cast<uint32_t>(actual_offset) != expected_offset) {
1329 const DexFile* dex_file = (*dex_files_)[i];
1330 PLOG(ERROR) << "Failed to seek to dex file section. Actual: " << actual_offset
1331 << " Expected: " << expected_offset << " File: " << dex_file->GetLocation();
1332 return false;
1333 }
1334 const DexFile* dex_file = (*dex_files_)[i];
Ian Rogers3d504072014-03-01 09:16:49 -08001335 if (!out->WriteFully(&dex_file->GetHeader(), dex_file->GetHeader().file_size_)) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001336 PLOG(ERROR) << "Failed to write dex file " << dex_file->GetLocation()
Ian Rogers3d504072014-03-01 09:16:49 -08001337 << " to " << out->GetLocation();
Brian Carlstrom89521892011-12-07 22:05:07 -08001338 return false;
1339 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001340 size_dex_file_ += dex_file->GetHeader().file_size_;
Brian Carlstrom89521892011-12-07 22:05:07 -08001341 }
Artem Udovichenkod9786b02015-10-14 16:36:55 +03001342 if (!WriteLookupTables(out, file_offset)) {
1343 return false;
1344 }
Brian Carlstrom389efb02012-01-11 12:06:26 -08001345 for (size_t i = 0; i != oat_classes_.size(); ++i) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001346 if (!oat_classes_[i]->Write(this, out, file_offset)) {
Ian Rogers3d504072014-03-01 09:16:49 -08001347 PLOG(ERROR) << "Failed to write oat methods information to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001348 return false;
1349 }
1350 }
1351 return true;
1352}
1353
Artem Udovichenkod9786b02015-10-14 16:36:55 +03001354bool OatWriter::WriteLookupTables(OutputStream* out, const size_t file_offset) {
1355 for (size_t i = 0; i < oat_dex_files_.size(); ++i) {
1356 const uint32_t lookup_table_offset = oat_dex_files_[i]->lookup_table_offset_;
1357 const TypeLookupTable* table = oat_dex_files_[i]->lookup_table_;
1358 DCHECK_EQ(lookup_table_offset == 0, table == nullptr);
1359 if (lookup_table_offset == 0) {
1360 continue;
1361 }
1362 const uint32_t expected_offset = file_offset + lookup_table_offset;
1363 off_t actual_offset = out->Seek(expected_offset, kSeekSet);
1364 if (static_cast<uint32_t>(actual_offset) != expected_offset) {
1365 const DexFile* dex_file = (*dex_files_)[i];
1366 PLOG(ERROR) << "Failed to seek to lookup table section. Actual: " << actual_offset
1367 << " Expected: " << expected_offset << " File: " << dex_file->GetLocation();
1368 return false;
1369 }
1370 if (table != nullptr) {
1371 if (!out->WriteFully(table->RawData(), table->RawDataLength())) {
1372 const DexFile* dex_file = (*dex_files_)[i];
1373 PLOG(ERROR) << "Failed to write lookup table for " << dex_file->GetLocation()
1374 << " to " << out->GetLocation();
1375 return false;
1376 }
1377 size_oat_lookup_table_ += table->RawDataLength();
1378 }
1379 }
1380 return true;
1381}
1382
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001383size_t OatWriter::WriteMaps(OutputStream* out, const size_t file_offset, size_t relative_offset) {
1384 #define VISIT(VisitorType) \
1385 do { \
1386 VisitorType visitor(this, out, file_offset, relative_offset); \
1387 if (UNLIKELY(!VisitDexMethods(&visitor))) { \
1388 return 0; \
1389 } \
1390 relative_offset = visitor.GetOffset(); \
1391 } while (false)
1392
1393 size_t gc_maps_offset = relative_offset;
1394 VISIT(WriteMapMethodVisitor<GcMapDataAccess>);
1395 size_gc_map_ = relative_offset - gc_maps_offset;
1396
1397 size_t mapping_tables_offset = relative_offset;
1398 VISIT(WriteMapMethodVisitor<MappingTableDataAccess>);
1399 size_mapping_table_ = relative_offset - mapping_tables_offset;
1400
1401 size_t vmap_tables_offset = relative_offset;
1402 VISIT(WriteMapMethodVisitor<VmapTableDataAccess>);
1403 size_vmap_table_ = relative_offset - vmap_tables_offset;
1404
1405 #undef VISIT
1406
1407 return relative_offset;
1408}
1409
1410size_t OatWriter::WriteCode(OutputStream* out, const size_t file_offset, size_t relative_offset) {
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001411 if (compiler_driver_->IsImage()) {
1412 InstructionSet instruction_set = compiler_driver_->GetInstructionSet();
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001413
Ian Rogers848871b2013-08-05 10:56:33 -07001414 #define DO_TRAMPOLINE(field) \
1415 do { \
1416 uint32_t aligned_offset = CompiledCode::AlignCode(relative_offset, instruction_set); \
1417 uint32_t alignment_padding = aligned_offset - relative_offset; \
Ian Rogers3d504072014-03-01 09:16:49 -08001418 out->Seek(alignment_padding, kSeekCurrent); \
Ian Rogers848871b2013-08-05 10:56:33 -07001419 size_trampoline_alignment_ += alignment_padding; \
Ian Rogers3d504072014-03-01 09:16:49 -08001420 if (!out->WriteFully(&(*field)[0], field->size())) { \
1421 PLOG(ERROR) << "Failed to write " # field " to " << out->GetLocation(); \
Ian Rogers848871b2013-08-05 10:56:33 -07001422 return false; \
1423 } \
1424 size_ ## field += field->size(); \
1425 relative_offset += alignment_padding + field->size(); \
1426 DCHECK_OFFSET(); \
1427 } while (false)
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001428
Ian Rogers848871b2013-08-05 10:56:33 -07001429 DO_TRAMPOLINE(jni_dlsym_lookup_);
Andreas Gampe2da88232014-02-27 12:26:20 -08001430 DO_TRAMPOLINE(quick_generic_jni_trampoline_);
Jeff Hao88474b42013-10-23 16:24:40 -07001431 DO_TRAMPOLINE(quick_imt_conflict_trampoline_);
Ian Rogers848871b2013-08-05 10:56:33 -07001432 DO_TRAMPOLINE(quick_resolution_trampoline_);
1433 DO_TRAMPOLINE(quick_to_interpreter_bridge_);
1434 #undef DO_TRAMPOLINE
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001435 }
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001436 return relative_offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001437}
1438
Ian Rogers3d504072014-03-01 09:16:49 -08001439size_t OatWriter::WriteCodeDexFiles(OutputStream* out,
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001440 const size_t file_offset,
1441 size_t relative_offset) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001442 #define VISIT(VisitorType) \
1443 do { \
1444 VisitorType visitor(this, out, file_offset, relative_offset); \
1445 if (UNLIKELY(!VisitDexMethods(&visitor))) { \
1446 return 0; \
1447 } \
1448 relative_offset = visitor.GetOffset(); \
1449 } while (false)
Brian Carlstrome24fa612011-09-29 00:53:55 -07001450
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001451 VISIT(WriteCodeMethodVisitor);
Brian Carlstrome24fa612011-09-29 00:53:55 -07001452
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001453 #undef VISIT
Brian Carlstrom265091e2013-01-30 14:08:26 -08001454
Vladimir Markob163bb72015-03-31 21:49:49 +01001455 size_code_alignment_ += relative_patcher_->CodeAlignmentSize();
1456 size_relative_call_thunks_ += relative_patcher_->RelativeCallThunksSize();
1457 size_misc_thunks_ += relative_patcher_->MiscThunksSize();
1458
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001459 return relative_offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001460}
1461
Vladimir Markof4da6752014-08-01 19:04:18 +01001462bool OatWriter::WriteCodeAlignment(OutputStream* out, uint32_t aligned_code_delta) {
1463 static const uint8_t kPadding[] = {
1464 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u
1465 };
1466 DCHECK_LE(aligned_code_delta, sizeof(kPadding));
1467 if (UNLIKELY(!out->WriteFully(kPadding, aligned_code_delta))) {
1468 return false;
1469 }
1470 size_code_alignment_ += aligned_code_delta;
1471 return true;
1472}
1473
Vladimir Markob163bb72015-03-31 21:49:49 +01001474std::pair<bool, uint32_t> OatWriter::MethodOffsetMap::FindMethodOffset(MethodReference ref) {
1475 auto it = map.find(ref);
1476 if (it == map.end()) {
1477 return std::pair<bool, uint32_t>(false, 0u);
1478 } else {
1479 return std::pair<bool, uint32_t>(true, it->second);
1480 }
1481}
1482
Brian Carlstrom265091e2013-01-30 14:08:26 -08001483OatWriter::OatDexFile::OatDexFile(size_t offset, const DexFile& dex_file) {
1484 offset_ = offset;
Elliott Hughes95572412011-12-13 18:14:20 -08001485 const std::string& location(dex_file.GetLocation());
Brian Carlstrome24fa612011-09-29 00:53:55 -07001486 dex_file_location_size_ = location.size();
1487 dex_file_location_data_ = reinterpret_cast<const uint8_t*>(location.data());
Brian Carlstrom5b332c82012-02-01 15:02:31 -08001488 dex_file_location_checksum_ = dex_file.GetLocationChecksum();
Brian Carlstrom89521892011-12-07 22:05:07 -08001489 dex_file_offset_ = 0;
Artem Udovichenkod9786b02015-10-14 16:36:55 +03001490 lookup_table_offset_ = 0;
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -08001491 methods_offsets_.resize(dex_file.NumClassDefs());
Brian Carlstrome24fa612011-09-29 00:53:55 -07001492}
1493
1494size_t OatWriter::OatDexFile::SizeOf() const {
1495 return sizeof(dex_file_location_size_)
1496 + dex_file_location_size_
Brian Carlstrom5b332c82012-02-01 15:02:31 -08001497 + sizeof(dex_file_location_checksum_)
Brian Carlstrom89521892011-12-07 22:05:07 -08001498 + sizeof(dex_file_offset_)
Artem Udovichenkod9786b02015-10-14 16:36:55 +03001499 + sizeof(lookup_table_offset_)
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -08001500 + (sizeof(methods_offsets_[0]) * methods_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -07001501}
1502
Ian Rogers3d504072014-03-01 09:16:49 -08001503void OatWriter::OatDexFile::UpdateChecksum(OatHeader* oat_header) const {
1504 oat_header->UpdateChecksum(&dex_file_location_size_, sizeof(dex_file_location_size_));
1505 oat_header->UpdateChecksum(dex_file_location_data_, dex_file_location_size_);
1506 oat_header->UpdateChecksum(&dex_file_location_checksum_, sizeof(dex_file_location_checksum_));
1507 oat_header->UpdateChecksum(&dex_file_offset_, sizeof(dex_file_offset_));
Artem Udovichenkod9786b02015-10-14 16:36:55 +03001508 oat_header->UpdateChecksum(&lookup_table_offset_, sizeof(lookup_table_offset_));
1509 if (lookup_table_ != nullptr) {
1510 oat_header->UpdateChecksum(lookup_table_->RawData(), lookup_table_->RawDataLength());
1511 }
Ian Rogers3d504072014-03-01 09:16:49 -08001512 oat_header->UpdateChecksum(&methods_offsets_[0],
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -08001513 sizeof(methods_offsets_[0]) * methods_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -07001514}
1515
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001516bool OatWriter::OatDexFile::Write(OatWriter* oat_writer,
Ian Rogers3d504072014-03-01 09:16:49 -08001517 OutputStream* out,
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001518 const size_t file_offset) const {
Brian Carlstrom265091e2013-01-30 14:08:26 -08001519 DCHECK_OFFSET_();
Ian Rogers3d504072014-03-01 09:16:49 -08001520 if (!out->WriteFully(&dex_file_location_size_, sizeof(dex_file_location_size_))) {
1521 PLOG(ERROR) << "Failed to write dex file location length to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001522 return false;
1523 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001524 oat_writer->size_oat_dex_file_location_size_ += sizeof(dex_file_location_size_);
Ian Rogers3d504072014-03-01 09:16:49 -08001525 if (!out->WriteFully(dex_file_location_data_, dex_file_location_size_)) {
1526 PLOG(ERROR) << "Failed to write dex file location data to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001527 return false;
1528 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001529 oat_writer->size_oat_dex_file_location_data_ += dex_file_location_size_;
Ian Rogers3d504072014-03-01 09:16:49 -08001530 if (!out->WriteFully(&dex_file_location_checksum_, sizeof(dex_file_location_checksum_))) {
1531 PLOG(ERROR) << "Failed to write dex file location checksum to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001532 return false;
1533 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001534 oat_writer->size_oat_dex_file_location_checksum_ += sizeof(dex_file_location_checksum_);
Ian Rogers3d504072014-03-01 09:16:49 -08001535 if (!out->WriteFully(&dex_file_offset_, sizeof(dex_file_offset_))) {
1536 PLOG(ERROR) << "Failed to write dex file offset to " << out->GetLocation();
Brian Carlstrom89521892011-12-07 22:05:07 -08001537 return false;
1538 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001539 oat_writer->size_oat_dex_file_offset_ += sizeof(dex_file_offset_);
Artem Udovichenkod9786b02015-10-14 16:36:55 +03001540 if (!out->WriteFully(&lookup_table_offset_, sizeof(lookup_table_offset_))) {
1541 PLOG(ERROR) << "Failed to write lookup table offset to " << out->GetLocation();
1542 return false;
1543 }
1544 oat_writer->size_oat_lookup_table_offset_ += sizeof(lookup_table_offset_);
Ian Rogers3d504072014-03-01 09:16:49 -08001545 if (!out->WriteFully(&methods_offsets_[0],
Brian Carlstromcd60ac72013-01-20 17:09:51 -08001546 sizeof(methods_offsets_[0]) * methods_offsets_.size())) {
Ian Rogers3d504072014-03-01 09:16:49 -08001547 PLOG(ERROR) << "Failed to write methods offsets to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001548 return false;
1549 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001550 oat_writer->size_oat_dex_file_methods_offsets_ +=
1551 sizeof(methods_offsets_[0]) * methods_offsets_.size();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001552 return true;
1553}
1554
Brian Carlstromba150c32013-08-27 17:31:03 -07001555OatWriter::OatClass::OatClass(size_t offset,
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001556 const std::vector<CompiledMethod*>& compiled_methods,
Brian Carlstromba150c32013-08-27 17:31:03 -07001557 uint32_t num_non_null_compiled_methods,
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001558 mirror::Class::Status status)
1559 : compiled_methods_(compiled_methods) {
1560 uint32_t num_methods = compiled_methods.size();
Brian Carlstromba150c32013-08-27 17:31:03 -07001561 CHECK_LE(num_non_null_compiled_methods, num_methods);
1562
Brian Carlstrom265091e2013-01-30 14:08:26 -08001563 offset_ = offset;
Brian Carlstromba150c32013-08-27 17:31:03 -07001564 oat_method_offsets_offsets_from_oat_class_.resize(num_methods);
1565
1566 // Since both kOatClassNoneCompiled and kOatClassAllCompiled could
1567 // apply when there are 0 methods, we just arbitrarily say that 0
1568 // methods means kOatClassNoneCompiled and that we won't use
1569 // kOatClassAllCompiled unless there is at least one compiled
1570 // method. This means in an interpretter only system, we can assert
1571 // that all classes are kOatClassNoneCompiled.
1572 if (num_non_null_compiled_methods == 0) {
1573 type_ = kOatClassNoneCompiled;
1574 } else if (num_non_null_compiled_methods == num_methods) {
1575 type_ = kOatClassAllCompiled;
1576 } else {
1577 type_ = kOatClassSomeCompiled;
1578 }
1579
Brian Carlstrom0755ec52012-01-11 15:19:46 -08001580 status_ = status;
Brian Carlstromba150c32013-08-27 17:31:03 -07001581 method_offsets_.resize(num_non_null_compiled_methods);
Vladimir Marko8a630572014-04-09 18:45:35 +01001582 method_headers_.resize(num_non_null_compiled_methods);
Brian Carlstromba150c32013-08-27 17:31:03 -07001583
1584 uint32_t oat_method_offsets_offset_from_oat_class = sizeof(type_) + sizeof(status_);
1585 if (type_ == kOatClassSomeCompiled) {
1586 method_bitmap_ = new BitVector(num_methods, false, Allocator::GetMallocAllocator());
1587 method_bitmap_size_ = method_bitmap_->GetSizeOf();
1588 oat_method_offsets_offset_from_oat_class += sizeof(method_bitmap_size_);
1589 oat_method_offsets_offset_from_oat_class += method_bitmap_size_;
1590 } else {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001591 method_bitmap_ = nullptr;
Brian Carlstromba150c32013-08-27 17:31:03 -07001592 method_bitmap_size_ = 0;
1593 }
1594
1595 for (size_t i = 0; i < num_methods; i++) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001596 CompiledMethod* compiled_method = compiled_methods_[i];
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001597 if (compiled_method == nullptr) {
Brian Carlstromba150c32013-08-27 17:31:03 -07001598 oat_method_offsets_offsets_from_oat_class_[i] = 0;
1599 } else {
1600 oat_method_offsets_offsets_from_oat_class_[i] = oat_method_offsets_offset_from_oat_class;
1601 oat_method_offsets_offset_from_oat_class += sizeof(OatMethodOffsets);
1602 if (type_ == kOatClassSomeCompiled) {
1603 method_bitmap_->SetBit(i);
1604 }
1605 }
1606 }
Brian Carlstrome24fa612011-09-29 00:53:55 -07001607}
1608
Brian Carlstromba150c32013-08-27 17:31:03 -07001609OatWriter::OatClass::~OatClass() {
Mathieu Chartier661974a2014-01-09 11:23:53 -08001610 delete method_bitmap_;
Brian Carlstromba150c32013-08-27 17:31:03 -07001611}
1612
Brian Carlstrom265091e2013-01-30 14:08:26 -08001613size_t OatWriter::OatClass::GetOatMethodOffsetsOffsetFromOatHeader(
1614 size_t class_def_method_index_) const {
Brian Carlstromba150c32013-08-27 17:31:03 -07001615 uint32_t method_offset = GetOatMethodOffsetsOffsetFromOatClass(class_def_method_index_);
1616 if (method_offset == 0) {
1617 return 0;
1618 }
1619 return offset_ + method_offset;
Brian Carlstrom265091e2013-01-30 14:08:26 -08001620}
1621
1622size_t OatWriter::OatClass::GetOatMethodOffsetsOffsetFromOatClass(
1623 size_t class_def_method_index_) const {
Brian Carlstromba150c32013-08-27 17:31:03 -07001624 return oat_method_offsets_offsets_from_oat_class_[class_def_method_index_];
Brian Carlstrom265091e2013-01-30 14:08:26 -08001625}
1626
1627size_t OatWriter::OatClass::SizeOf() const {
Brian Carlstromba150c32013-08-27 17:31:03 -07001628 return sizeof(status_)
1629 + sizeof(type_)
1630 + ((method_bitmap_size_ == 0) ? 0 : sizeof(method_bitmap_size_))
1631 + method_bitmap_size_
1632 + (sizeof(method_offsets_[0]) * method_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -07001633}
1634
Ian Rogers3d504072014-03-01 09:16:49 -08001635void OatWriter::OatClass::UpdateChecksum(OatHeader* oat_header) const {
1636 oat_header->UpdateChecksum(&status_, sizeof(status_));
1637 oat_header->UpdateChecksum(&type_, sizeof(type_));
Brian Carlstromba150c32013-08-27 17:31:03 -07001638 if (method_bitmap_size_ != 0) {
1639 CHECK_EQ(kOatClassSomeCompiled, type_);
Ian Rogers3d504072014-03-01 09:16:49 -08001640 oat_header->UpdateChecksum(&method_bitmap_size_, sizeof(method_bitmap_size_));
1641 oat_header->UpdateChecksum(method_bitmap_->GetRawStorage(), method_bitmap_size_);
Brian Carlstromba150c32013-08-27 17:31:03 -07001642 }
Ian Rogers3d504072014-03-01 09:16:49 -08001643 oat_header->UpdateChecksum(&method_offsets_[0],
1644 sizeof(method_offsets_[0]) * method_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -07001645}
1646
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001647bool OatWriter::OatClass::Write(OatWriter* oat_writer,
Ian Rogers3d504072014-03-01 09:16:49 -08001648 OutputStream* out,
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001649 const size_t file_offset) const {
Brian Carlstrom265091e2013-01-30 14:08:26 -08001650 DCHECK_OFFSET_();
Ian Rogers3d504072014-03-01 09:16:49 -08001651 if (!out->WriteFully(&status_, sizeof(status_))) {
1652 PLOG(ERROR) << "Failed to write class status to " << out->GetLocation();
Brian Carlstrom0755ec52012-01-11 15:19:46 -08001653 return false;
1654 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001655 oat_writer->size_oat_class_status_ += sizeof(status_);
Ian Rogers3d504072014-03-01 09:16:49 -08001656 if (!out->WriteFully(&type_, sizeof(type_))) {
1657 PLOG(ERROR) << "Failed to write oat class type to " << out->GetLocation();
Brian Carlstromba150c32013-08-27 17:31:03 -07001658 return false;
1659 }
1660 oat_writer->size_oat_class_type_ += sizeof(type_);
1661 if (method_bitmap_size_ != 0) {
1662 CHECK_EQ(kOatClassSomeCompiled, type_);
Ian Rogers3d504072014-03-01 09:16:49 -08001663 if (!out->WriteFully(&method_bitmap_size_, sizeof(method_bitmap_size_))) {
1664 PLOG(ERROR) << "Failed to write method bitmap size to " << out->GetLocation();
Brian Carlstromba150c32013-08-27 17:31:03 -07001665 return false;
1666 }
1667 oat_writer->size_oat_class_method_bitmaps_ += sizeof(method_bitmap_size_);
Ian Rogers3d504072014-03-01 09:16:49 -08001668 if (!out->WriteFully(method_bitmap_->GetRawStorage(), method_bitmap_size_)) {
1669 PLOG(ERROR) << "Failed to write method bitmap to " << out->GetLocation();
Brian Carlstromba150c32013-08-27 17:31:03 -07001670 return false;
1671 }
1672 oat_writer->size_oat_class_method_bitmaps_ += method_bitmap_size_;
1673 }
Ian Rogers3d504072014-03-01 09:16:49 -08001674 if (!out->WriteFully(&method_offsets_[0],
Brian Carlstromcd60ac72013-01-20 17:09:51 -08001675 sizeof(method_offsets_[0]) * method_offsets_.size())) {
Ian Rogers3d504072014-03-01 09:16:49 -08001676 PLOG(ERROR) << "Failed to write method offsets to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001677 return false;
1678 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001679 oat_writer->size_oat_class_method_offsets_ += sizeof(method_offsets_[0]) * method_offsets_.size();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001680 return true;
1681}
1682
Brian Carlstrome24fa612011-09-29 00:53:55 -07001683} // namespace art