blob: e15890f8a66f0af981ddb61a09581c68892471bc [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"
Ian Rogerse77493c2014-08-20 15:08:45 -070022#include "base/allocator.h"
Brian Carlstromba150c32013-08-27 17:31:03 -070023#include "base/bit_vector.h"
Elliott Hughes1aa246d2012-12-13 09:29:36 -080024#include "base/stl_util.h"
Elliott Hughes76160052012-12-12 16:31:20 -080025#include "base/unix_file/fd_file.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070026#include "class_linker.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070027#include "compiled_class.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000028#include "compiled_method.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070029#include "dex_file-inl.h"
Vladimir Markoc7f83202014-01-24 17:55:18 +000030#include "dex/verification_results.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000031#include "driver/compiler_driver.h"
32#include "driver/compiler_options.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070033#include "gc/space/space.h"
Vladimir Markof4da6752014-08-01 19:04:18 +010034#include "image_writer.h"
Vladimir Markob163bb72015-03-31 21:49:49 +010035#include "linker/relative_patcher.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070036#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080037#include "mirror/array.h"
38#include "mirror/class_loader.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070039#include "mirror/object-inl.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070040#include "os.h"
Brian Carlstromcd60ac72013-01-20 17:09:51 -080041#include "output_stream.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070042#include "safe_map.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070043#include "scoped_thread_state_change.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070044#include "handle_scope-inl.h"
jeffhaoec014232012-09-05 10:42:25 -070045#include "verifier/method_verifier.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070046
47namespace art {
48
Vladimir Marko96c6ab92014-04-08 14:00:50 +010049#define DCHECK_OFFSET() \
50 DCHECK_EQ(static_cast<off_t>(file_offset + relative_offset), out->Seek(0, kSeekCurrent)) \
51 << "file_offset=" << file_offset << " relative_offset=" << relative_offset
52
53#define DCHECK_OFFSET_() \
54 DCHECK_EQ(static_cast<off_t>(file_offset + offset_), out->Seek(0, kSeekCurrent)) \
55 << "file_offset=" << file_offset << " offset_=" << offset_
56
Brian Carlstrom3320cf42011-10-04 14:58:28 -070057OatWriter::OatWriter(const std::vector<const DexFile*>& dex_files,
Brian Carlstrom28db0122012-10-18 16:20:41 -070058 uint32_t image_file_location_oat_checksum,
Ian Rogersef7d42f2014-01-06 12:55:46 -080059 uintptr_t image_file_location_oat_begin,
Alex Lighta59dd802014-07-02 16:28:08 -070060 int32_t image_patch_delta,
Ian Rogersca368cb2013-11-15 15:52:08 -080061 const CompilerDriver* compiler,
Vladimir Markof4da6752014-08-01 19:04:18 +010062 ImageWriter* image_writer,
Andreas Gampe22f8e5c2014-07-09 11:38:21 -070063 TimingLogger* timings,
64 SafeMap<std::string, std::string>* key_value_store)
Jeff Hao0aba0ba2013-06-03 14:49:28 -070065 : compiler_driver_(compiler),
Vladimir Markof4da6752014-08-01 19:04:18 +010066 image_writer_(image_writer),
Jeff Hao0aba0ba2013-06-03 14:49:28 -070067 dex_files_(&dex_files),
Vladimir Markof4da6752014-08-01 19:04:18 +010068 size_(0u),
Vladimir Marko5c42c292015-02-25 12:02:49 +000069 bss_size_(0u),
Vladimir Markof4da6752014-08-01 19:04:18 +010070 oat_data_offset_(0u),
Jeff Hao0aba0ba2013-06-03 14:49:28 -070071 image_file_location_oat_checksum_(image_file_location_oat_checksum),
72 image_file_location_oat_begin_(image_file_location_oat_begin),
Alex Lighta59dd802014-07-02 16:28:08 -070073 image_patch_delta_(image_patch_delta),
Andreas Gampe22f8e5c2014-07-09 11:38:21 -070074 key_value_store_(key_value_store),
Jeff Hao0aba0ba2013-06-03 14:49:28 -070075 oat_header_(NULL),
76 size_dex_file_alignment_(0),
77 size_executable_offset_alignment_(0),
78 size_oat_header_(0),
Andreas Gampe22f8e5c2014-07-09 11:38:21 -070079 size_oat_header_key_value_store_(0),
Jeff Hao0aba0ba2013-06-03 14:49:28 -070080 size_dex_file_(0),
Ian Rogers848871b2013-08-05 10:56:33 -070081 size_interpreter_to_interpreter_bridge_(0),
82 size_interpreter_to_compiled_code_bridge_(0),
83 size_jni_dlsym_lookup_(0),
Andreas Gampe2da88232014-02-27 12:26:20 -080084 size_quick_generic_jni_trampoline_(0),
Jeff Hao88474b42013-10-23 16:24:40 -070085 size_quick_imt_conflict_trampoline_(0),
Jeff Hao0aba0ba2013-06-03 14:49:28 -070086 size_quick_resolution_trampoline_(0),
Ian Rogers848871b2013-08-05 10:56:33 -070087 size_quick_to_interpreter_bridge_(0),
88 size_trampoline_alignment_(0),
Vladimir Marko96c6ab92014-04-08 14:00:50 +010089 size_method_header_(0),
Jeff Hao0aba0ba2013-06-03 14:49:28 -070090 size_code_(0),
91 size_code_alignment_(0),
Vladimir Markof4da6752014-08-01 19:04:18 +010092 size_relative_call_thunks_(0),
Vladimir Markoc74658b2015-03-31 10:26:41 +010093 size_misc_thunks_(0),
Jeff Hao0aba0ba2013-06-03 14:49:28 -070094 size_mapping_table_(0),
95 size_vmap_table_(0),
96 size_gc_map_(0),
97 size_oat_dex_file_location_size_(0),
98 size_oat_dex_file_location_data_(0),
99 size_oat_dex_file_location_checksum_(0),
100 size_oat_dex_file_offset_(0),
101 size_oat_dex_file_methods_offsets_(0),
Brian Carlstromba150c32013-08-27 17:31:03 -0700102 size_oat_class_type_(0),
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700103 size_oat_class_status_(0),
Brian Carlstromba150c32013-08-27 17:31:03 -0700104 size_oat_class_method_bitmaps_(0),
Vladimir Markof4da6752014-08-01 19:04:18 +0100105 size_oat_class_method_offsets_(0),
106 method_offset_map_() {
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700107 CHECK(key_value_store != nullptr);
108
Vladimir Markob163bb72015-03-31 21:49:49 +0100109 InstructionSet instruction_set = compiler_driver_->GetInstructionSet();
110 const InstructionSetFeatures* features = compiler_driver_->GetInstructionSetFeatures();
111 relative_patcher_ = linker::RelativePatcher::Create(instruction_set, features,
112 &method_offset_map_);
Vladimir Markof4da6752014-08-01 19:04:18 +0100113
Ian Rogersca368cb2013-11-15 15:52:08 -0800114 size_t offset;
115 {
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700116 TimingLogger::ScopedTiming split("InitOatHeader", timings);
Ian Rogersca368cb2013-11-15 15:52:08 -0800117 offset = InitOatHeader();
118 }
119 {
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700120 TimingLogger::ScopedTiming split("InitOatDexFiles", timings);
Ian Rogersca368cb2013-11-15 15:52:08 -0800121 offset = InitOatDexFiles(offset);
122 }
123 {
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700124 TimingLogger::ScopedTiming split("InitDexFiles", timings);
Ian Rogersca368cb2013-11-15 15:52:08 -0800125 offset = InitDexFiles(offset);
126 }
127 {
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700128 TimingLogger::ScopedTiming split("InitOatClasses", timings);
Ian Rogersca368cb2013-11-15 15:52:08 -0800129 offset = InitOatClasses(offset);
130 }
131 {
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700132 TimingLogger::ScopedTiming split("InitOatMaps", timings);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100133 offset = InitOatMaps(offset);
134 }
135 {
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700136 TimingLogger::ScopedTiming split("InitOatCode", timings);
Ian Rogersca368cb2013-11-15 15:52:08 -0800137 offset = InitOatCode(offset);
138 }
139 {
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700140 TimingLogger::ScopedTiming split("InitOatCodeDexFiles", timings);
Ian Rogersca368cb2013-11-15 15:52:08 -0800141 offset = InitOatCodeDexFiles(offset);
142 }
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700143 size_ = offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700144
145 CHECK_EQ(dex_files_->size(), oat_dex_files_.size());
Vladimir Markof4da6752014-08-01 19:04:18 +0100146 CHECK_EQ(compiler->IsImage(), image_writer_ != nullptr);
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700147 CHECK_EQ(compiler->IsImage(),
148 key_value_store_->find(OatHeader::kImageLocationKey) == key_value_store_->end());
Alex Lighta59dd802014-07-02 16:28:08 -0700149 CHECK_ALIGNED(image_patch_delta_, kPageSize);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700150}
151
Ian Rogers0571d352011-11-03 19:51:38 -0700152OatWriter::~OatWriter() {
153 delete oat_header_;
154 STLDeleteElements(&oat_dex_files_);
Brian Carlstrom389efb02012-01-11 12:06:26 -0800155 STLDeleteElements(&oat_classes_);
Ian Rogers0571d352011-11-03 19:51:38 -0700156}
157
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100158struct OatWriter::GcMapDataAccess {
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800159 static const SwapVector<uint8_t>* GetData(const CompiledMethod* compiled_method) ALWAYS_INLINE {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100160 return compiled_method->GetGcMap();
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100161 }
162
163 static uint32_t GetOffset(OatClass* oat_class, size_t method_offsets_index) ALWAYS_INLINE {
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800164 uint32_t offset = oat_class->method_headers_[method_offsets_index].gc_map_offset_;
165 return offset == 0u ? 0u :
166 (oat_class->method_offsets_[method_offsets_index].code_offset_ & ~1) - offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100167 }
168
169 static void SetOffset(OatClass* oat_class, size_t method_offsets_index, uint32_t offset)
170 ALWAYS_INLINE {
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800171 oat_class->method_headers_[method_offsets_index].gc_map_offset_ =
172 (oat_class->method_offsets_[method_offsets_index].code_offset_ & ~1) - offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100173 }
174
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800175 static const char* Name() {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100176 return "GC map";
177 }
178};
179
180struct OatWriter::MappingTableDataAccess {
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800181 static const SwapVector<uint8_t>* GetData(const CompiledMethod* compiled_method) ALWAYS_INLINE {
Nicolas Geoffray376b2bb2014-12-09 14:26:32 +0000182 return compiled_method->GetMappingTable();
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100183 }
184
185 static uint32_t GetOffset(OatClass* oat_class, size_t method_offsets_index) ALWAYS_INLINE {
Vladimir Marko8a630572014-04-09 18:45:35 +0100186 uint32_t offset = oat_class->method_headers_[method_offsets_index].mapping_table_offset_;
187 return offset == 0u ? 0u :
188 (oat_class->method_offsets_[method_offsets_index].code_offset_ & ~1) - offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100189 }
190
191 static void SetOffset(OatClass* oat_class, size_t method_offsets_index, uint32_t offset)
192 ALWAYS_INLINE {
Vladimir Marko8a630572014-04-09 18:45:35 +0100193 oat_class->method_headers_[method_offsets_index].mapping_table_offset_ =
194 (oat_class->method_offsets_[method_offsets_index].code_offset_ & ~1) - offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100195 }
196
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800197 static const char* Name() {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100198 return "mapping table";
199 }
200};
201
202struct OatWriter::VmapTableDataAccess {
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800203 static const SwapVector<uint8_t>* GetData(const CompiledMethod* compiled_method) ALWAYS_INLINE {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800204 return compiled_method->GetVmapTable();
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100205 }
206
207 static uint32_t GetOffset(OatClass* oat_class, size_t method_offsets_index) ALWAYS_INLINE {
Vladimir Marko8a630572014-04-09 18:45:35 +0100208 uint32_t offset = oat_class->method_headers_[method_offsets_index].vmap_table_offset_;
209 return offset == 0u ? 0u :
210 (oat_class->method_offsets_[method_offsets_index].code_offset_ & ~1) - offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100211 }
212
213 static void SetOffset(OatClass* oat_class, size_t method_offsets_index, uint32_t offset)
214 ALWAYS_INLINE {
Vladimir Marko8a630572014-04-09 18:45:35 +0100215 oat_class->method_headers_[method_offsets_index].vmap_table_offset_ =
216 (oat_class->method_offsets_[method_offsets_index].code_offset_ & ~1) - offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100217 }
218
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800219 static const char* Name() {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100220 return "vmap table";
221 }
222};
223
224class OatWriter::DexMethodVisitor {
225 public:
226 DexMethodVisitor(OatWriter* writer, size_t offset)
227 : writer_(writer),
228 offset_(offset),
229 dex_file_(nullptr),
230 class_def_index_(DexFile::kDexNoIndex) {
231 }
232
233 virtual bool StartClass(const DexFile* dex_file, size_t class_def_index) {
234 DCHECK(dex_file_ == nullptr);
235 DCHECK_EQ(class_def_index_, DexFile::kDexNoIndex);
236 dex_file_ = dex_file;
237 class_def_index_ = class_def_index;
238 return true;
239 }
240
241 virtual bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it) = 0;
242
243 virtual bool EndClass() {
244 if (kIsDebugBuild) {
245 dex_file_ = nullptr;
246 class_def_index_ = DexFile::kDexNoIndex;
247 }
248 return true;
249 }
250
251 size_t GetOffset() const {
252 return offset_;
253 }
254
255 protected:
256 virtual ~DexMethodVisitor() { }
257
258 OatWriter* const writer_;
259
260 // The offset is usually advanced for each visited method by the derived class.
261 size_t offset_;
262
263 // The dex file and class def index are set in StartClass().
264 const DexFile* dex_file_;
265 size_t class_def_index_;
266};
267
268class OatWriter::OatDexMethodVisitor : public DexMethodVisitor {
269 public:
270 OatDexMethodVisitor(OatWriter* writer, size_t offset)
271 : DexMethodVisitor(writer, offset),
272 oat_class_index_(0u),
273 method_offsets_index_(0u) {
274 }
275
276 bool StartClass(const DexFile* dex_file, size_t class_def_index) {
277 DexMethodVisitor::StartClass(dex_file, class_def_index);
278 DCHECK_LT(oat_class_index_, writer_->oat_classes_.size());
279 method_offsets_index_ = 0u;
280 return true;
281 }
282
283 bool EndClass() {
284 ++oat_class_index_;
285 return DexMethodVisitor::EndClass();
286 }
287
288 protected:
289 size_t oat_class_index_;
290 size_t method_offsets_index_;
291};
292
293class OatWriter::InitOatClassesMethodVisitor : public DexMethodVisitor {
294 public:
295 InitOatClassesMethodVisitor(OatWriter* writer, size_t offset)
296 : DexMethodVisitor(writer, offset),
297 compiled_methods_(),
298 num_non_null_compiled_methods_(0u) {
299 compiled_methods_.reserve(256u);
300 }
301
302 bool StartClass(const DexFile* dex_file, size_t class_def_index) {
303 DexMethodVisitor::StartClass(dex_file, class_def_index);
304 compiled_methods_.clear();
305 num_non_null_compiled_methods_ = 0u;
306 return true;
307 }
308
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700309 bool VisitMethod(size_t class_def_method_index ATTRIBUTE_UNUSED, const ClassDataItemIterator& it) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100310 // Fill in the compiled_methods_ array for methods that have a
311 // CompiledMethod. We track the number of non-null entries in
312 // num_non_null_compiled_methods_ since we only want to allocate
313 // OatMethodOffsets for the compiled methods.
314 uint32_t method_idx = it.GetMemberIndex();
315 CompiledMethod* compiled_method =
316 writer_->compiler_driver_->GetCompiledMethod(MethodReference(dex_file_, method_idx));
317 compiled_methods_.push_back(compiled_method);
318 if (compiled_method != nullptr) {
319 ++num_non_null_compiled_methods_;
320 }
321 return true;
322 }
323
324 bool EndClass() {
325 ClassReference class_ref(dex_file_, class_def_index_);
326 CompiledClass* compiled_class = writer_->compiler_driver_->GetCompiledClass(class_ref);
327 mirror::Class::Status status;
328 if (compiled_class != NULL) {
329 status = compiled_class->GetStatus();
330 } else if (writer_->compiler_driver_->GetVerificationResults()->IsClassRejected(class_ref)) {
331 status = mirror::Class::kStatusError;
332 } else {
333 status = mirror::Class::kStatusNotReady;
334 }
335
336 OatClass* oat_class = new OatClass(offset_, compiled_methods_,
337 num_non_null_compiled_methods_, status);
338 writer_->oat_classes_.push_back(oat_class);
Vladimir Markof4da6752014-08-01 19:04:18 +0100339 oat_class->UpdateChecksum(writer_->oat_header_);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100340 offset_ += oat_class->SizeOf();
341 return DexMethodVisitor::EndClass();
342 }
343
344 private:
345 std::vector<CompiledMethod*> compiled_methods_;
346 size_t num_non_null_compiled_methods_;
347};
348
349class OatWriter::InitCodeMethodVisitor : public OatDexMethodVisitor {
350 public:
351 InitCodeMethodVisitor(OatWriter* writer, size_t offset)
352 : OatDexMethodVisitor(writer, offset) {
Vladimir Markof4da6752014-08-01 19:04:18 +0100353 writer_->absolute_patch_locations_.reserve(
354 writer_->compiler_driver_->GetNonRelativeLinkerPatchCount());
355 }
356
357 bool EndClass() {
358 OatDexMethodVisitor::EndClass();
359 if (oat_class_index_ == writer_->oat_classes_.size()) {
Vladimir Marko4d23c9d2015-04-01 23:03:09 +0100360 offset_ = writer_->relative_patcher_->ReserveSpace(offset_, nullptr,
361 MethodReference(nullptr, 0u));
Vladimir Markof4da6752014-08-01 19:04:18 +0100362 }
363 return true;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100364 }
365
366 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it)
367 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
368 OatClass* oat_class = writer_->oat_classes_[oat_class_index_];
369 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index);
370
371 if (compiled_method != nullptr) {
372 // Derived from CompiledMethod.
373 uint32_t quick_code_offset = 0;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100374
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800375 const SwapVector<uint8_t>* quick_code = compiled_method->GetQuickCode();
Elliott Hughes956af0f2014-12-11 14:34:28 -0800376 CHECK(quick_code != nullptr);
Elliott Hughes956af0f2014-12-11 14:34:28 -0800377 uint32_t code_size = quick_code->size() * sizeof(uint8_t);
378 CHECK_NE(code_size, 0U);
379 uint32_t thumb_offset = compiled_method->CodeDelta();
Elliott Hughes956af0f2014-12-11 14:34:28 -0800380
381 // Deduplicate code arrays.
Vladimir Markoc74658b2015-03-31 10:26:41 +0100382 bool deduped = false;
Elliott Hughes956af0f2014-12-11 14:34:28 -0800383 auto lb = dedupe_map_.lower_bound(compiled_method);
384 if (lb != dedupe_map_.end() && !dedupe_map_.key_comp()(compiled_method, lb->first)) {
385 quick_code_offset = lb->second;
386 deduped = true;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100387 } else {
Vladimir Marko4d23c9d2015-04-01 23:03:09 +0100388 offset_ = writer_->relative_patcher_->ReserveSpace(
389 offset_, compiled_method, MethodReference(dex_file_, it.GetMemberIndex()));
Vladimir Markoc74658b2015-03-31 10:26:41 +0100390 offset_ = compiled_method->AlignCode(offset_);
391 DCHECK_ALIGNED_PARAM(offset_,
392 GetInstructionSetAlignment(compiled_method->GetInstructionSet()));
393 quick_code_offset = offset_ + sizeof(OatQuickMethodHeader) + thumb_offset;
Elliott Hughes956af0f2014-12-11 14:34:28 -0800394 dedupe_map_.PutBefore(lb, compiled_method, quick_code_offset);
395 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100396
Elliott Hughes956af0f2014-12-11 14:34:28 -0800397 MethodReference method_ref(dex_file_, it.GetMemberIndex());
Vladimir Markob163bb72015-03-31 21:49:49 +0100398 auto method_lb = writer_->method_offset_map_.map.lower_bound(method_ref);
399 if (method_lb != writer_->method_offset_map_.map.end() &&
400 !writer_->method_offset_map_.map.key_comp()(method_ref, method_lb->first)) {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800401 // TODO: Should this be a hard failure?
402 LOG(WARNING) << "Multiple definitions of "
403 << PrettyMethod(method_ref.dex_method_index, *method_ref.dex_file)
404 << ((method_lb->second != quick_code_offset) ? "; OFFSET MISMATCH" : "");
405 } else {
Vladimir Markob163bb72015-03-31 21:49:49 +0100406 writer_->method_offset_map_.map.PutBefore(method_lb, method_ref, quick_code_offset);
Elliott Hughes956af0f2014-12-11 14:34:28 -0800407 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100408
Elliott Hughes956af0f2014-12-11 14:34:28 -0800409 // Update quick method header.
410 DCHECK_LT(method_offsets_index_, oat_class->method_headers_.size());
411 OatQuickMethodHeader* method_header = &oat_class->method_headers_[method_offsets_index_];
412 uint32_t mapping_table_offset = method_header->mapping_table_offset_;
413 uint32_t vmap_table_offset = method_header->vmap_table_offset_;
414 uint32_t gc_map_offset = method_header->gc_map_offset_;
415 // The code offset was 0 when the mapping/vmap table offset was set, so it's set
416 // to 0-offset and we need to adjust it by code_offset.
417 uint32_t code_offset = quick_code_offset - thumb_offset;
418 if (mapping_table_offset != 0u) {
419 mapping_table_offset += code_offset;
420 DCHECK_LT(mapping_table_offset, code_offset);
421 }
422 if (vmap_table_offset != 0u) {
423 vmap_table_offset += code_offset;
424 DCHECK_LT(vmap_table_offset, code_offset);
425 }
426 if (gc_map_offset != 0u) {
427 gc_map_offset += code_offset;
428 DCHECK_LT(gc_map_offset, code_offset);
429 }
430 uint32_t frame_size_in_bytes = compiled_method->GetFrameSizeInBytes();
431 uint32_t core_spill_mask = compiled_method->GetCoreSpillMask();
432 uint32_t fp_spill_mask = compiled_method->GetFpSpillMask();
433 *method_header = OatQuickMethodHeader(mapping_table_offset, vmap_table_offset,
434 gc_map_offset, frame_size_in_bytes, core_spill_mask,
435 fp_spill_mask, code_size);
Vladimir Marko7624d252014-05-02 14:40:15 +0100436
Elliott Hughes956af0f2014-12-11 14:34:28 -0800437 if (!deduped) {
438 // Update offsets. (Checksum is updated when writing.)
439 offset_ += sizeof(*method_header); // Method header is prepended before code.
440 offset_ += code_size;
441 // Record absolute patch locations.
442 if (!compiled_method->GetPatches().empty()) {
443 uintptr_t base_loc = offset_ - code_size - writer_->oat_header_->GetExecutableOffset();
444 for (const LinkerPatch& patch : compiled_method->GetPatches()) {
Vladimir Marko20f85592015-03-19 10:07:02 +0000445 if (!patch.IsPcRelative()) {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800446 writer_->absolute_patch_locations_.push_back(base_loc + patch.LiteralOffset());
Vladimir Markof4da6752014-08-01 19:04:18 +0100447 }
448 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100449 }
Elliott Hughes956af0f2014-12-11 14:34:28 -0800450 }
Alex Light78382fa2014-06-06 15:45:32 -0700451
Elliott Hughes956af0f2014-12-11 14:34:28 -0800452 if (writer_->compiler_driver_->GetCompilerOptions().GetIncludeDebugSymbols()) {
453 // Record debug information for this function if we are doing that.
Alex Light78382fa2014-06-06 15:45:32 -0700454
Elliott Hughes956af0f2014-12-11 14:34:28 -0800455 std::string name = PrettyMethod(it.GetMemberIndex(), *dex_file_, true);
456 if (deduped) {
457 // TODO We should place the DEDUPED tag on the first instance of a deduplicated symbol
458 // so that it will show up in a debuggerd crash report.
459 name += " [ DEDUPED ]";
Alex Light78382fa2014-06-06 15:45:32 -0700460 }
Elliott Hughes956af0f2014-12-11 14:34:28 -0800461
462 const uint32_t quick_code_start = quick_code_offset -
463 writer_->oat_header_->GetExecutableOffset();
464 const DexFile::CodeItem *code_item = it.GetMethodCodeItem();
465 writer_->method_info_.push_back(DebugInfo(name,
466 dex_file_->GetSourceFile(dex_file_->GetClassDef(class_def_index_)),
467 quick_code_start, quick_code_start + code_size,
468 code_item == nullptr ? nullptr : dex_file_->GetDebugInfoStream(code_item),
469 compiled_method));
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100470 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100471
472 if (kIsDebugBuild) {
473 // We expect GC maps except when the class hasn't been verified or the method is native.
474 const CompilerDriver* compiler_driver = writer_->compiler_driver_;
475 ClassReference class_ref(dex_file_, class_def_index_);
476 CompiledClass* compiled_class = compiler_driver->GetCompiledClass(class_ref);
477 mirror::Class::Status status;
478 if (compiled_class != NULL) {
479 status = compiled_class->GetStatus();
480 } else if (compiler_driver->GetVerificationResults()->IsClassRejected(class_ref)) {
481 status = mirror::Class::kStatusError;
482 } else {
483 status = mirror::Class::kStatusNotReady;
484 }
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800485 const SwapVector<uint8_t>* gc_map = compiled_method->GetGcMap();
Nicolas Geoffray39468442014-09-02 15:17:15 +0100486 if (gc_map != nullptr) {
487 size_t gc_map_size = gc_map->size() * sizeof(gc_map[0]);
Andreas Gampe51829322014-08-25 15:05:04 -0700488 bool is_native = it.MemberIsNative();
Nicolas Geoffray39468442014-09-02 15:17:15 +0100489 CHECK(gc_map_size != 0 || is_native || status < mirror::Class::kStatusVerified)
490 << gc_map << " " << gc_map_size << " " << (is_native ? "true" : "false") << " "
491 << (status < mirror::Class::kStatusVerified) << " " << status << " "
492 << PrettyMethod(it.GetMemberIndex(), *dex_file_);
493 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100494 }
495
496 DCHECK_LT(method_offsets_index_, oat_class->method_offsets_.size());
497 OatMethodOffsets* offsets = &oat_class->method_offsets_[method_offsets_index_];
498 offsets->code_offset_ = quick_code_offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100499 ++method_offsets_index_;
500 }
501
502 return true;
503 }
504
505 private:
Vladimir Marko20f85592015-03-19 10:07:02 +0000506 struct CodeOffsetsKeyComparator {
507 bool operator()(const CompiledMethod* lhs, const CompiledMethod* rhs) const {
508 if (lhs->GetQuickCode() != rhs->GetQuickCode()) {
509 return lhs->GetQuickCode() < rhs->GetQuickCode();
510 }
511 // If the code is the same, all other fields are likely to be the same as well.
512 if (UNLIKELY(lhs->GetMappingTable() != rhs->GetMappingTable())) {
513 return lhs->GetMappingTable() < rhs->GetMappingTable();
514 }
515 if (UNLIKELY(lhs->GetVmapTable() != rhs->GetVmapTable())) {
516 return lhs->GetVmapTable() < rhs->GetVmapTable();
517 }
518 if (UNLIKELY(lhs->GetGcMap() != rhs->GetGcMap())) {
519 return lhs->GetGcMap() < rhs->GetGcMap();
520 }
521 const auto& lhs_patches = lhs->GetPatches();
522 const auto& rhs_patches = rhs->GetPatches();
523 if (UNLIKELY(lhs_patches.size() != rhs_patches.size())) {
524 return lhs_patches.size() < rhs_patches.size();
525 }
526 auto rit = rhs_patches.begin();
527 for (const LinkerPatch& lpatch : lhs_patches) {
528 if (UNLIKELY(!(lpatch == *rit))) {
529 return lpatch < *rit;
530 }
531 ++rit;
532 }
533 return false;
534 }
535 };
536
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100537 // Deduplication is already done on a pointer basis by the compiler driver,
538 // so we can simply compare the pointers to find out if things are duplicated.
Vladimir Marko8a630572014-04-09 18:45:35 +0100539 SafeMap<const CompiledMethod*, uint32_t, CodeOffsetsKeyComparator> dedupe_map_;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100540};
541
542template <typename DataAccess>
543class OatWriter::InitMapMethodVisitor : public OatDexMethodVisitor {
544 public:
545 InitMapMethodVisitor(OatWriter* writer, size_t offset)
546 : OatDexMethodVisitor(writer, offset) {
547 }
548
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700549 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it ATTRIBUTE_UNUSED)
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100550 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
551 OatClass* oat_class = writer_->oat_classes_[oat_class_index_];
552 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index);
553
554 if (compiled_method != nullptr) {
555 DCHECK_LT(method_offsets_index_, oat_class->method_offsets_.size());
556 DCHECK_EQ(DataAccess::GetOffset(oat_class, method_offsets_index_), 0u);
557
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800558 const SwapVector<uint8_t>* map = DataAccess::GetData(compiled_method);
Nicolas Geoffray39468442014-09-02 15:17:15 +0100559 uint32_t map_size = map == nullptr ? 0 : map->size() * sizeof((*map)[0]);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100560 if (map_size != 0u) {
Vladimir Markobd72fc12014-07-09 16:06:40 +0100561 auto lb = dedupe_map_.lower_bound(map);
562 if (lb != dedupe_map_.end() && !dedupe_map_.key_comp()(map, lb->first)) {
563 DataAccess::SetOffset(oat_class, method_offsets_index_, lb->second);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100564 } else {
565 DataAccess::SetOffset(oat_class, method_offsets_index_, offset_);
Vladimir Markobd72fc12014-07-09 16:06:40 +0100566 dedupe_map_.PutBefore(lb, map, offset_);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100567 offset_ += map_size;
568 writer_->oat_header_->UpdateChecksum(&(*map)[0], map_size);
569 }
570 }
571 ++method_offsets_index_;
572 }
573
574 return true;
575 }
576
577 private:
578 // Deduplication is already done on a pointer basis by the compiler driver,
579 // so we can simply compare the pointers to find out if things are duplicated.
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800580 SafeMap<const SwapVector<uint8_t>*, uint32_t> dedupe_map_;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100581};
582
583class OatWriter::InitImageMethodVisitor : public OatDexMethodVisitor {
584 public:
585 InitImageMethodVisitor(OatWriter* writer, size_t offset)
Jeff Haoc7d11882015-02-03 15:08:39 -0800586 : OatDexMethodVisitor(writer, offset),
587 pointer_size_(GetInstructionSetPointerSize(writer_->compiler_driver_->GetInstructionSet())) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100588 }
589
590 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it)
591 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
592 OatClass* oat_class = writer_->oat_classes_[oat_class_index_];
593 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index);
594
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800595 OatMethodOffsets offsets(0u);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100596 if (compiled_method != nullptr) {
597 DCHECK_LT(method_offsets_index_, oat_class->method_offsets_.size());
598 offsets = oat_class->method_offsets_[method_offsets_index_];
599 ++method_offsets_index_;
600 }
601
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100602 ClassLinker* linker = Runtime::Current()->GetClassLinker();
603 InvokeType invoke_type = it.GetMethodInvokeType(dex_file_->GetClassDef(class_def_index_));
604 // Unchecked as we hold mutator_lock_ on entry.
605 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800606 StackHandleScope<1> hs(soa.Self());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700607 Handle<mirror::DexCache> dex_cache(hs.NewHandle(linker->FindDexCache(*dex_file_)));
Vladimir Marko7624d252014-05-02 14:40:15 +0100608 mirror::ArtMethod* method = linker->ResolveMethod(*dex_file_, it.GetMemberIndex(), dex_cache,
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700609 NullHandle<mirror::ClassLoader>(),
610 NullHandle<mirror::ArtMethod>(),
611 invoke_type);
Andreas Gamped9efea62014-07-21 22:56:08 -0700612 if (method == nullptr) {
613 LOG(ERROR) << "Unexpected failure to resolve a method: "
614 << PrettyMethod(it.GetMemberIndex(), *dex_file_, true);
615 soa.Self()->AssertPendingException();
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000616 mirror::Throwable* exc = soa.Self()->GetException();
Andreas Gamped9efea62014-07-21 22:56:08 -0700617 std::string dump = exc->Dump();
618 LOG(FATAL) << dump;
619 }
Jeff Haoc7d11882015-02-03 15:08:39 -0800620 method->SetEntryPointFromQuickCompiledCodePtrSize(reinterpret_cast<void*>(offsets.code_offset_),
621 pointer_size_);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100622
623 return true;
624 }
Jeff Haoc7d11882015-02-03 15:08:39 -0800625
626 protected:
627 const size_t pointer_size_;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100628};
629
630class OatWriter::WriteCodeMethodVisitor : public OatDexMethodVisitor {
631 public:
632 WriteCodeMethodVisitor(OatWriter* writer, OutputStream* out, const size_t file_offset,
Vladimir Markof4da6752014-08-01 19:04:18 +0100633 size_t relative_offset) SHARED_LOCK_FUNCTION(Locks::mutator_lock_)
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100634 : OatDexMethodVisitor(writer, relative_offset),
635 out_(out),
Vladimir Markof4da6752014-08-01 19:04:18 +0100636 file_offset_(file_offset),
Vladimir Marko7c2ad5a2014-09-24 12:42:55 +0100637 soa_(Thread::Current()),
638 no_thread_suspension_(soa_.Self(), "OatWriter patching"),
Vladimir Markof4da6752014-08-01 19:04:18 +0100639 class_linker_(Runtime::Current()->GetClassLinker()),
640 dex_cache_(nullptr) {
641 if (writer_->image_writer_ != nullptr) {
642 // If we're creating the image, the address space must be ready so that we can apply patches.
643 CHECK(writer_->image_writer_->IsImageAddressSpaceReady());
644 patched_code_.reserve(16 * KB);
645 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100646 }
647
Vladimir Markof4da6752014-08-01 19:04:18 +0100648 ~WriteCodeMethodVisitor() UNLOCK_FUNCTION(Locks::mutator_lock_) {
Vladimir Markof4da6752014-08-01 19:04:18 +0100649 }
650
651 bool StartClass(const DexFile* dex_file, size_t class_def_index)
652 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
653 OatDexMethodVisitor::StartClass(dex_file, class_def_index);
654 if (dex_cache_ == nullptr || dex_cache_->GetDexFile() != dex_file) {
655 dex_cache_ = class_linker_->FindDexCache(*dex_file);
656 }
657 return true;
658 }
659
660 bool EndClass() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
661 bool result = OatDexMethodVisitor::EndClass();
662 if (oat_class_index_ == writer_->oat_classes_.size()) {
663 DCHECK(result); // OatDexMethodVisitor::EndClass() never fails.
Vladimir Marko20f85592015-03-19 10:07:02 +0000664 offset_ = writer_->relative_patcher_->WriteThunks(out_, offset_);
Vladimir Markof4da6752014-08-01 19:04:18 +0100665 if (UNLIKELY(offset_ == 0u)) {
666 PLOG(ERROR) << "Failed to write final relative call thunks";
667 result = false;
668 }
669 }
670 return result;
671 }
672
673 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it)
674 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100675 OatClass* oat_class = writer_->oat_classes_[oat_class_index_];
676 const CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index);
677
678 if (compiled_method != NULL) { // ie. not an abstract method
679 size_t file_offset = file_offset_;
680 OutputStream* out = out_;
681
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800682 const SwapVector<uint8_t>* quick_code = compiled_method->GetQuickCode();
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100683 if (quick_code != nullptr) {
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800684 // Need a wrapper if we create a copy for patching.
685 ArrayRef<const uint8_t> wrapped(*quick_code);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100686 uint32_t code_size = quick_code->size() * sizeof(uint8_t);
687 CHECK_NE(code_size, 0U);
688
689 // Deduplicate code arrays.
690 const OatMethodOffsets& method_offsets = oat_class->method_offsets_[method_offsets_index_];
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100691 if (method_offsets.code_offset_ >= offset_) {
Vladimir Markoc74658b2015-03-31 10:26:41 +0100692 offset_ = writer_->relative_patcher_->WriteThunks(out, offset_);
693 if (offset_ == 0u) {
694 ReportWriteFailure("relative call thunk", it);
695 return false;
696 }
697 uint32_t aligned_offset = compiled_method->AlignCode(offset_);
698 uint32_t aligned_code_delta = aligned_offset - offset_;
699 if (aligned_code_delta != 0) {
700 if (!writer_->WriteCodeAlignment(out, aligned_code_delta)) {
701 ReportWriteFailure("code alignment padding", it);
702 return false;
703 }
704 offset_ += aligned_code_delta;
705 DCHECK_OFFSET_();
706 }
707 DCHECK_ALIGNED_PARAM(offset_,
708 GetInstructionSetAlignment(compiled_method->GetInstructionSet()));
709 DCHECK_EQ(method_offsets.code_offset_,
710 offset_ + sizeof(OatQuickMethodHeader) + compiled_method->CodeDelta())
711 << PrettyMethod(it.GetMemberIndex(), *dex_file_);
Vladimir Markof4da6752014-08-01 19:04:18 +0100712 const OatQuickMethodHeader& method_header =
713 oat_class->method_headers_[method_offsets_index_];
714 writer_->oat_header_->UpdateChecksum(&method_header, sizeof(method_header));
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100715 if (!out->WriteFully(&method_header, sizeof(method_header))) {
716 ReportWriteFailure("method header", it);
717 return false;
718 }
719 writer_->size_method_header_ += sizeof(method_header);
720 offset_ += sizeof(method_header);
721 DCHECK_OFFSET_();
Vladimir Markof4da6752014-08-01 19:04:18 +0100722
723 if (!compiled_method->GetPatches().empty()) {
Vladimir Marko20f85592015-03-19 10:07:02 +0000724 patched_code_.assign(quick_code->begin(), quick_code->end());
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800725 wrapped = ArrayRef<const uint8_t>(patched_code_);
Vladimir Markof4da6752014-08-01 19:04:18 +0100726 for (const LinkerPatch& patch : compiled_method->GetPatches()) {
727 if (patch.Type() == kLinkerPatchCallRelative) {
728 // NOTE: Relative calls across oat files are not supported.
729 uint32_t target_offset = GetTargetOffset(patch);
730 uint32_t literal_offset = patch.LiteralOffset();
Vladimir Marko20f85592015-03-19 10:07:02 +0000731 writer_->relative_patcher_->PatchCall(&patched_code_, literal_offset,
Vladimir Markof4da6752014-08-01 19:04:18 +0100732 offset_ + literal_offset, target_offset);
Vladimir Marko20f85592015-03-19 10:07:02 +0000733 } else if (patch.Type() == kLinkerPatchDexCacheArray) {
734 uint32_t target_offset = GetDexCacheOffset(patch);
735 uint32_t literal_offset = patch.LiteralOffset();
736 writer_->relative_patcher_->PatchDexCacheReference(&patched_code_, patch,
737 offset_ + literal_offset,
738 target_offset);
Vladimir Markof4da6752014-08-01 19:04:18 +0100739 } else if (patch.Type() == kLinkerPatchCall) {
740 uint32_t target_offset = GetTargetOffset(patch);
741 PatchCodeAddress(&patched_code_, patch.LiteralOffset(), target_offset);
742 } else if (patch.Type() == kLinkerPatchMethod) {
743 mirror::ArtMethod* method = GetTargetMethod(patch);
744 PatchObjectAddress(&patched_code_, patch.LiteralOffset(), method);
745 } else if (patch.Type() == kLinkerPatchType) {
746 mirror::Class* type = GetTargetType(patch);
747 PatchObjectAddress(&patched_code_, patch.LiteralOffset(), type);
748 }
749 }
750 }
751
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800752 writer_->oat_header_->UpdateChecksum(wrapped.data(), code_size);
753 if (!out->WriteFully(wrapped.data(), code_size)) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100754 ReportWriteFailure("method code", it);
755 return false;
756 }
757 writer_->size_code_ += code_size;
758 offset_ += code_size;
759 }
760 DCHECK_OFFSET_();
761 }
762 ++method_offsets_index_;
763 }
764
765 return true;
766 }
767
768 private:
769 OutputStream* const out_;
Vladimir Marko7c2ad5a2014-09-24 12:42:55 +0100770 const size_t file_offset_;
771 const ScopedObjectAccess soa_;
772 const ScopedAssertNoThreadSuspension no_thread_suspension_;
Vladimir Markof4da6752014-08-01 19:04:18 +0100773 ClassLinker* const class_linker_;
774 mirror::DexCache* dex_cache_;
775 std::vector<uint8_t> patched_code_;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100776
777 void ReportWriteFailure(const char* what, const ClassDataItemIterator& it) {
778 PLOG(ERROR) << "Failed to write " << what << " for "
779 << PrettyMethod(it.GetMemberIndex(), *dex_file_) << " to " << out_->GetLocation();
780 }
Vladimir Markof4da6752014-08-01 19:04:18 +0100781
782 mirror::ArtMethod* GetTargetMethod(const LinkerPatch& patch)
783 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
784 MethodReference ref = patch.TargetMethod();
785 mirror::DexCache* dex_cache =
786 (dex_file_ == ref.dex_file) ? dex_cache_ : class_linker_->FindDexCache(*ref.dex_file);
787 mirror::ArtMethod* method = dex_cache->GetResolvedMethod(ref.dex_method_index);
788 CHECK(method != nullptr);
789 return method;
790 }
791
792 uint32_t GetTargetOffset(const LinkerPatch& patch) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Vladimir Markob163bb72015-03-31 21:49:49 +0100793 auto target_it = writer_->method_offset_map_.map.find(patch.TargetMethod());
Vladimir Markof4da6752014-08-01 19:04:18 +0100794 uint32_t target_offset =
Vladimir Markob163bb72015-03-31 21:49:49 +0100795 (target_it != writer_->method_offset_map_.map.end()) ? target_it->second : 0u;
Vladimir Markof4da6752014-08-01 19:04:18 +0100796 // If there's no compiled code, point to the correct trampoline.
797 if (UNLIKELY(target_offset == 0)) {
798 mirror::ArtMethod* target = GetTargetMethod(patch);
799 DCHECK(target != nullptr);
Jeff Haoa0acc2d2015-01-27 11:22:04 -0800800 size_t size = GetInstructionSetPointerSize(writer_->compiler_driver_->GetInstructionSet());
801 const void* oat_code_offset = target->GetEntryPointFromQuickCompiledCodePtrSize(size);
802 if (oat_code_offset != 0) {
803 DCHECK(!Runtime::Current()->GetClassLinker()->IsQuickResolutionStub(oat_code_offset));
804 DCHECK(!Runtime::Current()->GetClassLinker()->IsQuickToInterpreterBridge(oat_code_offset));
805 DCHECK(!Runtime::Current()->GetClassLinker()->IsQuickGenericJniStub(oat_code_offset));
806 target_offset = PointerToLowMemUInt32(oat_code_offset);
807 } else {
808 target_offset = target->IsNative()
809 ? writer_->oat_header_->GetQuickGenericJniTrampolineOffset()
810 : writer_->oat_header_->GetQuickToInterpreterBridgeOffset();
811 }
Vladimir Markof4da6752014-08-01 19:04:18 +0100812 }
813 return target_offset;
814 }
815
816 mirror::Class* GetTargetType(const LinkerPatch& patch)
817 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
818 mirror::DexCache* dex_cache = (dex_file_ == patch.TargetTypeDexFile())
819 ? dex_cache_ : class_linker_->FindDexCache(*patch.TargetTypeDexFile());
820 mirror::Class* type = dex_cache->GetResolvedType(patch.TargetTypeIndex());
821 CHECK(type != nullptr);
822 return type;
823 }
824
Vladimir Marko20f85592015-03-19 10:07:02 +0000825 uint32_t GetDexCacheOffset(const LinkerPatch& patch) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
826 if (writer_->image_writer_ != nullptr) {
827 auto* element = writer_->image_writer_->GetDexCacheArrayElementImageAddress(
828 patch.TargetDexCacheDexFile(), patch.TargetDexCacheElementOffset());
829 const uint8_t* oat_data = writer_->image_writer_->GetOatFileBegin() + file_offset_;
830 return reinterpret_cast<const uint8_t*>(element) - oat_data;
831 } else {
832 LOG(FATAL) << "Unimplemented.";
833 UNREACHABLE();
834 }
835 }
836
Vladimir Markof4da6752014-08-01 19:04:18 +0100837 void PatchObjectAddress(std::vector<uint8_t>* code, uint32_t offset, mirror::Object* object)
838 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
839 // NOTE: Direct method pointers across oat files don't use linker patches. However, direct
840 // type pointers across oat files do. (TODO: Investigate why.)
841 if (writer_->image_writer_ != nullptr) {
842 object = writer_->image_writer_->GetImageAddress(object);
843 }
844 uint32_t address = PointerToLowMemUInt32(object);
845 DCHECK_LE(offset + 4, code->size());
846 uint8_t* data = &(*code)[offset];
847 data[0] = address & 0xffu;
848 data[1] = (address >> 8) & 0xffu;
849 data[2] = (address >> 16) & 0xffu;
850 data[3] = (address >> 24) & 0xffu;
851 }
852
853 void PatchCodeAddress(std::vector<uint8_t>* code, uint32_t offset, uint32_t target_offset)
854 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Jeff Haoa0acc2d2015-01-27 11:22:04 -0800855 uint32_t address = writer_->image_writer_ == nullptr ? target_offset :
856 PointerToLowMemUInt32(writer_->image_writer_->GetOatFileBegin() +
857 writer_->oat_data_offset_ + target_offset);
Vladimir Markof4da6752014-08-01 19:04:18 +0100858 DCHECK_LE(offset + 4, code->size());
859 uint8_t* data = &(*code)[offset];
860 data[0] = address & 0xffu;
861 data[1] = (address >> 8) & 0xffu;
862 data[2] = (address >> 16) & 0xffu;
863 data[3] = (address >> 24) & 0xffu;
864 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100865};
866
867template <typename DataAccess>
868class OatWriter::WriteMapMethodVisitor : public OatDexMethodVisitor {
869 public:
870 WriteMapMethodVisitor(OatWriter* writer, OutputStream* out, const size_t file_offset,
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800871 size_t relative_offset)
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100872 : OatDexMethodVisitor(writer, relative_offset),
873 out_(out),
874 file_offset_(file_offset) {
875 }
876
877 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it) {
878 OatClass* oat_class = writer_->oat_classes_[oat_class_index_];
879 const CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index);
880
881 if (compiled_method != NULL) { // ie. not an abstract method
882 size_t file_offset = file_offset_;
883 OutputStream* out = out_;
884
885 uint32_t map_offset = DataAccess::GetOffset(oat_class, method_offsets_index_);
886 ++method_offsets_index_;
887
888 // Write deduplicated map.
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800889 const SwapVector<uint8_t>* map = DataAccess::GetData(compiled_method);
Nicolas Geoffray39468442014-09-02 15:17:15 +0100890 size_t map_size = map == nullptr ? 0 : map->size() * sizeof((*map)[0]);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100891 DCHECK((map_size == 0u && map_offset == 0u) ||
892 (map_size != 0u && map_offset != 0u && map_offset <= offset_))
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800893 << map_size << " " << map_offset << " " << offset_ << " "
894 << PrettyMethod(it.GetMemberIndex(), *dex_file_) << " for " << DataAccess::Name();
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100895 if (map_size != 0u && map_offset == offset_) {
896 if (UNLIKELY(!out->WriteFully(&(*map)[0], map_size))) {
897 ReportWriteFailure(it);
898 return false;
899 }
900 offset_ += map_size;
901 }
902 DCHECK_OFFSET_();
903 }
904
905 return true;
906 }
907
908 private:
909 OutputStream* const out_;
910 size_t const file_offset_;
911
912 void ReportWriteFailure(const ClassDataItemIterator& it) {
913 PLOG(ERROR) << "Failed to write " << DataAccess::Name() << " for "
914 << PrettyMethod(it.GetMemberIndex(), *dex_file_) << " to " << out_->GetLocation();
915 }
916};
917
918// Visit all methods from all classes in all dex files with the specified visitor.
919bool OatWriter::VisitDexMethods(DexMethodVisitor* visitor) {
920 for (const DexFile* dex_file : *dex_files_) {
921 const size_t class_def_count = dex_file->NumClassDefs();
922 for (size_t class_def_index = 0; class_def_index != class_def_count; ++class_def_index) {
923 if (UNLIKELY(!visitor->StartClass(dex_file, class_def_index))) {
924 return false;
925 }
926 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
Ian Rogers13735952014-10-08 12:43:28 -0700927 const uint8_t* class_data = dex_file->GetClassData(class_def);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100928 if (class_data != NULL) { // ie not an empty class, such as a marker interface
929 ClassDataItemIterator it(*dex_file, class_data);
930 while (it.HasNextStaticField()) {
931 it.Next();
932 }
933 while (it.HasNextInstanceField()) {
934 it.Next();
935 }
936 size_t class_def_method_index = 0u;
937 while (it.HasNextDirectMethod()) {
938 if (!visitor->VisitMethod(class_def_method_index, it)) {
939 return false;
940 }
941 ++class_def_method_index;
942 it.Next();
943 }
944 while (it.HasNextVirtualMethod()) {
945 if (UNLIKELY(!visitor->VisitMethod(class_def_method_index, it))) {
946 return false;
947 }
948 ++class_def_method_index;
949 it.Next();
950 }
951 }
952 if (UNLIKELY(!visitor->EndClass())) {
953 return false;
954 }
955 }
956 }
957 return true;
958}
959
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700960size_t OatWriter::InitOatHeader() {
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700961 oat_header_ = OatHeader::Create(compiler_driver_->GetInstructionSet(),
962 compiler_driver_->GetInstructionSetFeatures(),
963 dex_files_,
964 image_file_location_oat_checksum_,
965 image_file_location_oat_begin_,
966 key_value_store_);
967
968 return oat_header_->GetHeaderSize();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700969}
970
971size_t OatWriter::InitOatDexFiles(size_t offset) {
972 // create the OatDexFiles
973 for (size_t i = 0; i != dex_files_->size(); ++i) {
974 const DexFile* dex_file = (*dex_files_)[i];
975 CHECK(dex_file != NULL);
Brian Carlstrom265091e2013-01-30 14:08:26 -0800976 OatDexFile* oat_dex_file = new OatDexFile(offset, *dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700977 oat_dex_files_.push_back(oat_dex_file);
978 offset += oat_dex_file->SizeOf();
979 }
980 return offset;
981}
982
Brian Carlstrom89521892011-12-07 22:05:07 -0800983size_t OatWriter::InitDexFiles(size_t offset) {
984 // calculate the offsets within OatDexFiles to the DexFiles
985 for (size_t i = 0; i != dex_files_->size(); ++i) {
986 // dex files are required to be 4 byte aligned
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700987 size_t original_offset = offset;
Brian Carlstrom89521892011-12-07 22:05:07 -0800988 offset = RoundUp(offset, 4);
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700989 size_dex_file_alignment_ += offset - original_offset;
Brian Carlstrom89521892011-12-07 22:05:07 -0800990
991 // set offset in OatDexFile to DexFile
992 oat_dex_files_[i]->dex_file_offset_ = offset;
993
994 const DexFile* dex_file = (*dex_files_)[i];
995 offset += dex_file->GetHeader().file_size_;
996 }
997 return offset;
998}
999
Brian Carlstrom389efb02012-01-11 12:06:26 -08001000size_t OatWriter::InitOatClasses(size_t offset) {
Brian Carlstrom389efb02012-01-11 12:06:26 -08001001 // calculate the offsets within OatDexFiles to OatClasses
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001002 InitOatClassesMethodVisitor visitor(this, offset);
1003 bool success = VisitDexMethods(&visitor);
1004 CHECK(success);
1005 offset = visitor.GetOffset();
Brian Carlstromba150c32013-08-27 17:31:03 -07001006
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001007 // Update oat_dex_files_.
1008 auto oat_class_it = oat_classes_.begin();
1009 for (OatDexFile* oat_dex_file : oat_dex_files_) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001010 for (uint32_t& method_offset : oat_dex_file->methods_offsets_) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001011 DCHECK(oat_class_it != oat_classes_.end());
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001012 method_offset = (*oat_class_it)->offset_;
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001013 ++oat_class_it;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001014 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001015 oat_dex_file->UpdateChecksum(oat_header_);
Brian Carlstrome24fa612011-09-29 00:53:55 -07001016 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001017 CHECK(oat_class_it == oat_classes_.end());
1018
1019 return offset;
1020}
1021
1022size_t OatWriter::InitOatMaps(size_t offset) {
1023 #define VISIT(VisitorType) \
1024 do { \
1025 VisitorType visitor(this, offset); \
1026 bool success = VisitDexMethods(&visitor); \
1027 DCHECK(success); \
1028 offset = visitor.GetOffset(); \
1029 } while (false)
1030
1031 VISIT(InitMapMethodVisitor<GcMapDataAccess>);
1032 VISIT(InitMapMethodVisitor<MappingTableDataAccess>);
1033 VISIT(InitMapMethodVisitor<VmapTableDataAccess>);
1034
1035 #undef VISIT
1036
Brian Carlstrome24fa612011-09-29 00:53:55 -07001037 return offset;
1038}
1039
1040size_t OatWriter::InitOatCode(size_t offset) {
1041 // calculate the offsets within OatHeader to executable code
1042 size_t old_offset = offset;
Dave Allison50abf0a2014-06-23 13:19:59 -07001043 size_t adjusted_offset = offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001044 // required to be on a new page boundary
1045 offset = RoundUp(offset, kPageSize);
1046 oat_header_->SetExecutableOffset(offset);
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001047 size_executable_offset_alignment_ = offset - old_offset;
1048 if (compiler_driver_->IsImage()) {
Alex Lighta59dd802014-07-02 16:28:08 -07001049 CHECK_EQ(image_patch_delta_, 0);
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001050 InstructionSet instruction_set = compiler_driver_->GetInstructionSet();
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001051
Ian Rogers848871b2013-08-05 10:56:33 -07001052 #define DO_TRAMPOLINE(field, fn_name) \
1053 offset = CompiledCode::AlignCode(offset, instruction_set); \
Dave Allison50abf0a2014-06-23 13:19:59 -07001054 adjusted_offset = offset + CompiledCode::CodeDelta(instruction_set); \
1055 oat_header_->Set ## fn_name ## Offset(adjusted_offset); \
Ian Rogers848871b2013-08-05 10:56:33 -07001056 field.reset(compiler_driver_->Create ## fn_name()); \
1057 offset += field->size();
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001058
Ian Rogers848871b2013-08-05 10:56:33 -07001059 DO_TRAMPOLINE(interpreter_to_interpreter_bridge_, InterpreterToInterpreterBridge);
1060 DO_TRAMPOLINE(interpreter_to_compiled_code_bridge_, InterpreterToCompiledCodeBridge);
1061 DO_TRAMPOLINE(jni_dlsym_lookup_, JniDlsymLookup);
Andreas Gampe2da88232014-02-27 12:26:20 -08001062 DO_TRAMPOLINE(quick_generic_jni_trampoline_, QuickGenericJniTrampoline);
Jeff Hao88474b42013-10-23 16:24:40 -07001063 DO_TRAMPOLINE(quick_imt_conflict_trampoline_, QuickImtConflictTrampoline);
Ian Rogers848871b2013-08-05 10:56:33 -07001064 DO_TRAMPOLINE(quick_resolution_trampoline_, QuickResolutionTrampoline);
1065 DO_TRAMPOLINE(quick_to_interpreter_bridge_, QuickToInterpreterBridge);
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001066
Ian Rogers848871b2013-08-05 10:56:33 -07001067 #undef DO_TRAMPOLINE
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001068 } else {
Ian Rogers848871b2013-08-05 10:56:33 -07001069 oat_header_->SetInterpreterToInterpreterBridgeOffset(0);
1070 oat_header_->SetInterpreterToCompiledCodeBridgeOffset(0);
1071 oat_header_->SetJniDlsymLookupOffset(0);
Andreas Gampe2da88232014-02-27 12:26:20 -08001072 oat_header_->SetQuickGenericJniTrampolineOffset(0);
Jeff Hao88474b42013-10-23 16:24:40 -07001073 oat_header_->SetQuickImtConflictTrampolineOffset(0);
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001074 oat_header_->SetQuickResolutionTrampolineOffset(0);
Ian Rogers848871b2013-08-05 10:56:33 -07001075 oat_header_->SetQuickToInterpreterBridgeOffset(0);
Alex Lighta59dd802014-07-02 16:28:08 -07001076 oat_header_->SetImagePatchDelta(image_patch_delta_);
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001077 }
Brian Carlstrome24fa612011-09-29 00:53:55 -07001078 return offset;
1079}
1080
1081size_t OatWriter::InitOatCodeDexFiles(size_t offset) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001082 #define VISIT(VisitorType) \
1083 do { \
1084 VisitorType visitor(this, offset); \
1085 bool success = VisitDexMethods(&visitor); \
1086 DCHECK(success); \
1087 offset = visitor.GetOffset(); \
1088 } while (false)
Brian Carlstrome24fa612011-09-29 00:53:55 -07001089
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001090 VISIT(InitCodeMethodVisitor);
Ian Rogers1212a022013-03-04 10:48:41 -08001091 if (compiler_driver_->IsImage()) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001092 VISIT(InitImageMethodVisitor);
Ian Rogers0571d352011-11-03 19:51:38 -07001093 }
Logan Chien8b977d32012-02-21 19:14:55 +08001094
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001095 #undef VISIT
1096
Brian Carlstrome24fa612011-09-29 00:53:55 -07001097 return offset;
1098}
1099
Ian Rogers3d504072014-03-01 09:16:49 -08001100bool OatWriter::Write(OutputStream* out) {
Vladimir Markof4da6752014-08-01 19:04:18 +01001101 const off_t raw_file_offset = out->Seek(0, kSeekCurrent);
1102 if (raw_file_offset == (off_t) -1) {
1103 LOG(ERROR) << "Failed to get file offset in " << out->GetLocation();
1104 return false;
1105 }
1106 const size_t file_offset = static_cast<size_t>(raw_file_offset);
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001107
Vladimir Markof4da6752014-08-01 19:04:18 +01001108 // Reserve space for header. It will be written last - after updating the checksum.
Andreas Gampe22f8e5c2014-07-09 11:38:21 -07001109 size_t header_size = oat_header_->GetHeaderSize();
Vladimir Markof4da6752014-08-01 19:04:18 +01001110 if (out->Seek(header_size, kSeekCurrent) == (off_t) -1) {
1111 PLOG(ERROR) << "Failed to reserve space for oat header in " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001112 return false;
1113 }
Andreas Gampe22f8e5c2014-07-09 11:38:21 -07001114 size_oat_header_ += sizeof(OatHeader);
1115 size_oat_header_key_value_store_ += oat_header_->GetHeaderSize() - sizeof(OatHeader);
Brian Carlstrom81f3ca12012-03-17 00:27:35 -07001116
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001117 if (!WriteTables(out, file_offset)) {
Ian Rogers3d504072014-03-01 09:16:49 -08001118 LOG(ERROR) << "Failed to write oat tables to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001119 return false;
1120 }
1121
Vladimir Markof4da6752014-08-01 19:04:18 +01001122 off_t tables_end_offset = out->Seek(0, kSeekCurrent);
1123 if (tables_end_offset == (off_t) -1) {
1124 LOG(ERROR) << "Failed to seek to oat code position in " << out->GetLocation();
1125 return false;
1126 }
1127 size_t relative_offset = static_cast<size_t>(tables_end_offset) - file_offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001128 relative_offset = WriteMaps(out, file_offset, relative_offset);
1129 if (relative_offset == 0) {
1130 LOG(ERROR) << "Failed to write oat code to " << out->GetLocation();
1131 return false;
1132 }
1133
1134 relative_offset = WriteCode(out, file_offset, relative_offset);
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001135 if (relative_offset == 0) {
Ian Rogers3d504072014-03-01 09:16:49 -08001136 LOG(ERROR) << "Failed to write oat code to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001137 return false;
1138 }
1139
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001140 relative_offset = WriteCodeDexFiles(out, file_offset, relative_offset);
1141 if (relative_offset == 0) {
Ian Rogers3d504072014-03-01 09:16:49 -08001142 LOG(ERROR) << "Failed to write oat code for dex files to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001143 return false;
1144 }
1145
Vladimir Markof4da6752014-08-01 19:04:18 +01001146 const off_t oat_end_file_offset = out->Seek(0, kSeekCurrent);
1147 if (oat_end_file_offset == (off_t) -1) {
1148 LOG(ERROR) << "Failed to get oat end file offset in " << out->GetLocation();
1149 return false;
1150 }
1151
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001152 if (kIsDebugBuild) {
1153 uint32_t size_total = 0;
1154 #define DO_STAT(x) \
Anwar Ghuloum75a43f12013-08-13 17:22:14 -07001155 VLOG(compiler) << #x "=" << PrettySize(x) << " (" << x << "B)"; \
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001156 size_total += x;
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001157
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001158 DO_STAT(size_dex_file_alignment_);
1159 DO_STAT(size_executable_offset_alignment_);
1160 DO_STAT(size_oat_header_);
Andreas Gampe22f8e5c2014-07-09 11:38:21 -07001161 DO_STAT(size_oat_header_key_value_store_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001162 DO_STAT(size_dex_file_);
Ian Rogers848871b2013-08-05 10:56:33 -07001163 DO_STAT(size_interpreter_to_interpreter_bridge_);
1164 DO_STAT(size_interpreter_to_compiled_code_bridge_);
1165 DO_STAT(size_jni_dlsym_lookup_);
Andreas Gampe2da88232014-02-27 12:26:20 -08001166 DO_STAT(size_quick_generic_jni_trampoline_);
Jeff Hao88474b42013-10-23 16:24:40 -07001167 DO_STAT(size_quick_imt_conflict_trampoline_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001168 DO_STAT(size_quick_resolution_trampoline_);
Ian Rogers848871b2013-08-05 10:56:33 -07001169 DO_STAT(size_quick_to_interpreter_bridge_);
1170 DO_STAT(size_trampoline_alignment_);
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001171 DO_STAT(size_method_header_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001172 DO_STAT(size_code_);
1173 DO_STAT(size_code_alignment_);
Vladimir Markof4da6752014-08-01 19:04:18 +01001174 DO_STAT(size_relative_call_thunks_);
Vladimir Markoc74658b2015-03-31 10:26:41 +01001175 DO_STAT(size_misc_thunks_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001176 DO_STAT(size_mapping_table_);
1177 DO_STAT(size_vmap_table_);
1178 DO_STAT(size_gc_map_);
1179 DO_STAT(size_oat_dex_file_location_size_);
1180 DO_STAT(size_oat_dex_file_location_data_);
1181 DO_STAT(size_oat_dex_file_location_checksum_);
1182 DO_STAT(size_oat_dex_file_offset_);
1183 DO_STAT(size_oat_dex_file_methods_offsets_);
Brian Carlstromba150c32013-08-27 17:31:03 -07001184 DO_STAT(size_oat_class_type_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001185 DO_STAT(size_oat_class_status_);
Brian Carlstromba150c32013-08-27 17:31:03 -07001186 DO_STAT(size_oat_class_method_bitmaps_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001187 DO_STAT(size_oat_class_method_offsets_);
1188 #undef DO_STAT
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001189
Anwar Ghuloum75a43f12013-08-13 17:22:14 -07001190 VLOG(compiler) << "size_total=" << PrettySize(size_total) << " (" << size_total << "B)"; \
Vladimir Markof4da6752014-08-01 19:04:18 +01001191 CHECK_EQ(file_offset + size_total, static_cast<size_t>(oat_end_file_offset));
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001192 CHECK_EQ(size_, size_total);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001193 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001194
Vladimir Markof4da6752014-08-01 19:04:18 +01001195 CHECK_EQ(file_offset + size_, static_cast<size_t>(oat_end_file_offset));
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001196 CHECK_EQ(size_, relative_offset);
1197
Vladimir Markof4da6752014-08-01 19:04:18 +01001198 // Write the header now that the checksum is final.
1199 if (out->Seek(file_offset, kSeekSet) == (off_t) -1) {
1200 PLOG(ERROR) << "Failed to seek to oat header position in " << out->GetLocation();
1201 return false;
1202 }
1203 DCHECK_EQ(raw_file_offset, out->Seek(0, kSeekCurrent));
1204 if (!out->WriteFully(oat_header_, header_size)) {
1205 PLOG(ERROR) << "Failed to write oat header to " << out->GetLocation();
1206 return false;
1207 }
1208 if (out->Seek(oat_end_file_offset, kSeekSet) == (off_t) -1) {
1209 PLOG(ERROR) << "Failed to seek to end after writing oat header to " << out->GetLocation();
1210 return false;
1211 }
1212 DCHECK_EQ(oat_end_file_offset, out->Seek(0, kSeekCurrent));
1213
Brian Carlstrome24fa612011-09-29 00:53:55 -07001214 return true;
1215}
1216
Ian Rogers3d504072014-03-01 09:16:49 -08001217bool OatWriter::WriteTables(OutputStream* out, const size_t file_offset) {
Brian Carlstrome24fa612011-09-29 00:53:55 -07001218 for (size_t i = 0; i != oat_dex_files_.size(); ++i) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001219 if (!oat_dex_files_[i]->Write(this, out, file_offset)) {
Ian Rogers3d504072014-03-01 09:16:49 -08001220 PLOG(ERROR) << "Failed to write oat dex information to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001221 return false;
1222 }
1223 }
Brian Carlstrom89521892011-12-07 22:05:07 -08001224 for (size_t i = 0; i != oat_dex_files_.size(); ++i) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001225 uint32_t expected_offset = file_offset + oat_dex_files_[i]->dex_file_offset_;
Ian Rogers3d504072014-03-01 09:16:49 -08001226 off_t actual_offset = out->Seek(expected_offset, kSeekSet);
Brian Carlstrom89521892011-12-07 22:05:07 -08001227 if (static_cast<uint32_t>(actual_offset) != expected_offset) {
1228 const DexFile* dex_file = (*dex_files_)[i];
1229 PLOG(ERROR) << "Failed to seek to dex file section. Actual: " << actual_offset
1230 << " Expected: " << expected_offset << " File: " << dex_file->GetLocation();
1231 return false;
1232 }
1233 const DexFile* dex_file = (*dex_files_)[i];
Ian Rogers3d504072014-03-01 09:16:49 -08001234 if (!out->WriteFully(&dex_file->GetHeader(), dex_file->GetHeader().file_size_)) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001235 PLOG(ERROR) << "Failed to write dex file " << dex_file->GetLocation()
Ian Rogers3d504072014-03-01 09:16:49 -08001236 << " to " << out->GetLocation();
Brian Carlstrom89521892011-12-07 22:05:07 -08001237 return false;
1238 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001239 size_dex_file_ += dex_file->GetHeader().file_size_;
Brian Carlstrom89521892011-12-07 22:05:07 -08001240 }
Brian Carlstrom389efb02012-01-11 12:06:26 -08001241 for (size_t i = 0; i != oat_classes_.size(); ++i) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001242 if (!oat_classes_[i]->Write(this, out, file_offset)) {
Ian Rogers3d504072014-03-01 09:16:49 -08001243 PLOG(ERROR) << "Failed to write oat methods information to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001244 return false;
1245 }
1246 }
1247 return true;
1248}
1249
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001250size_t OatWriter::WriteMaps(OutputStream* out, const size_t file_offset, size_t relative_offset) {
1251 #define VISIT(VisitorType) \
1252 do { \
1253 VisitorType visitor(this, out, file_offset, relative_offset); \
1254 if (UNLIKELY(!VisitDexMethods(&visitor))) { \
1255 return 0; \
1256 } \
1257 relative_offset = visitor.GetOffset(); \
1258 } while (false)
1259
1260 size_t gc_maps_offset = relative_offset;
1261 VISIT(WriteMapMethodVisitor<GcMapDataAccess>);
1262 size_gc_map_ = relative_offset - gc_maps_offset;
1263
1264 size_t mapping_tables_offset = relative_offset;
1265 VISIT(WriteMapMethodVisitor<MappingTableDataAccess>);
1266 size_mapping_table_ = relative_offset - mapping_tables_offset;
1267
1268 size_t vmap_tables_offset = relative_offset;
1269 VISIT(WriteMapMethodVisitor<VmapTableDataAccess>);
1270 size_vmap_table_ = relative_offset - vmap_tables_offset;
1271
1272 #undef VISIT
1273
1274 return relative_offset;
1275}
1276
1277size_t OatWriter::WriteCode(OutputStream* out, const size_t file_offset, size_t relative_offset) {
Ian Rogers3d504072014-03-01 09:16:49 -08001278 off_t new_offset = out->Seek(size_executable_offset_alignment_, kSeekCurrent);
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001279 relative_offset += size_executable_offset_alignment_;
1280 DCHECK_EQ(relative_offset, oat_header_->GetExecutableOffset());
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001281 size_t expected_file_offset = file_offset + relative_offset;
1282 if (static_cast<uint32_t>(new_offset) != expected_file_offset) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -07001283 PLOG(ERROR) << "Failed to seek to oat code section. Actual: " << new_offset
Ian Rogers3d504072014-03-01 09:16:49 -08001284 << " Expected: " << expected_file_offset << " File: " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001285 return 0;
1286 }
Brian Carlstrom265091e2013-01-30 14:08:26 -08001287 DCHECK_OFFSET();
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001288 if (compiler_driver_->IsImage()) {
1289 InstructionSet instruction_set = compiler_driver_->GetInstructionSet();
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001290
Ian Rogers848871b2013-08-05 10:56:33 -07001291 #define DO_TRAMPOLINE(field) \
1292 do { \
1293 uint32_t aligned_offset = CompiledCode::AlignCode(relative_offset, instruction_set); \
1294 uint32_t alignment_padding = aligned_offset - relative_offset; \
Ian Rogers3d504072014-03-01 09:16:49 -08001295 out->Seek(alignment_padding, kSeekCurrent); \
Ian Rogers848871b2013-08-05 10:56:33 -07001296 size_trampoline_alignment_ += alignment_padding; \
Ian Rogers3d504072014-03-01 09:16:49 -08001297 if (!out->WriteFully(&(*field)[0], field->size())) { \
1298 PLOG(ERROR) << "Failed to write " # field " to " << out->GetLocation(); \
Ian Rogers848871b2013-08-05 10:56:33 -07001299 return false; \
1300 } \
1301 size_ ## field += field->size(); \
1302 relative_offset += alignment_padding + field->size(); \
1303 DCHECK_OFFSET(); \
1304 } while (false)
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001305
Ian Rogers848871b2013-08-05 10:56:33 -07001306 DO_TRAMPOLINE(interpreter_to_interpreter_bridge_);
1307 DO_TRAMPOLINE(interpreter_to_compiled_code_bridge_);
1308 DO_TRAMPOLINE(jni_dlsym_lookup_);
Andreas Gampe2da88232014-02-27 12:26:20 -08001309 DO_TRAMPOLINE(quick_generic_jni_trampoline_);
Jeff Hao88474b42013-10-23 16:24:40 -07001310 DO_TRAMPOLINE(quick_imt_conflict_trampoline_);
Ian Rogers848871b2013-08-05 10:56:33 -07001311 DO_TRAMPOLINE(quick_resolution_trampoline_);
1312 DO_TRAMPOLINE(quick_to_interpreter_bridge_);
1313 #undef DO_TRAMPOLINE
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001314 }
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001315 return relative_offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001316}
1317
Ian Rogers3d504072014-03-01 09:16:49 -08001318size_t OatWriter::WriteCodeDexFiles(OutputStream* out,
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001319 const size_t file_offset,
1320 size_t relative_offset) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001321 #define VISIT(VisitorType) \
1322 do { \
1323 VisitorType visitor(this, out, file_offset, relative_offset); \
1324 if (UNLIKELY(!VisitDexMethods(&visitor))) { \
1325 return 0; \
1326 } \
1327 relative_offset = visitor.GetOffset(); \
1328 } while (false)
Brian Carlstrome24fa612011-09-29 00:53:55 -07001329
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001330 VISIT(WriteCodeMethodVisitor);
Brian Carlstrome24fa612011-09-29 00:53:55 -07001331
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001332 #undef VISIT
Brian Carlstrom265091e2013-01-30 14:08:26 -08001333
Vladimir Markob163bb72015-03-31 21:49:49 +01001334 size_code_alignment_ += relative_patcher_->CodeAlignmentSize();
1335 size_relative_call_thunks_ += relative_patcher_->RelativeCallThunksSize();
1336 size_misc_thunks_ += relative_patcher_->MiscThunksSize();
1337
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001338 return relative_offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001339}
1340
Vladimir Markof4da6752014-08-01 19:04:18 +01001341bool OatWriter::WriteCodeAlignment(OutputStream* out, uint32_t aligned_code_delta) {
1342 static const uint8_t kPadding[] = {
1343 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u
1344 };
1345 DCHECK_LE(aligned_code_delta, sizeof(kPadding));
1346 if (UNLIKELY(!out->WriteFully(kPadding, aligned_code_delta))) {
1347 return false;
1348 }
1349 size_code_alignment_ += aligned_code_delta;
1350 return true;
1351}
1352
Vladimir Markob163bb72015-03-31 21:49:49 +01001353std::pair<bool, uint32_t> OatWriter::MethodOffsetMap::FindMethodOffset(MethodReference ref) {
1354 auto it = map.find(ref);
1355 if (it == map.end()) {
1356 return std::pair<bool, uint32_t>(false, 0u);
1357 } else {
1358 return std::pair<bool, uint32_t>(true, it->second);
1359 }
1360}
1361
Brian Carlstrom265091e2013-01-30 14:08:26 -08001362OatWriter::OatDexFile::OatDexFile(size_t offset, const DexFile& dex_file) {
1363 offset_ = offset;
Elliott Hughes95572412011-12-13 18:14:20 -08001364 const std::string& location(dex_file.GetLocation());
Brian Carlstrome24fa612011-09-29 00:53:55 -07001365 dex_file_location_size_ = location.size();
1366 dex_file_location_data_ = reinterpret_cast<const uint8_t*>(location.data());
Brian Carlstrom5b332c82012-02-01 15:02:31 -08001367 dex_file_location_checksum_ = dex_file.GetLocationChecksum();
Brian Carlstrom89521892011-12-07 22:05:07 -08001368 dex_file_offset_ = 0;
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -08001369 methods_offsets_.resize(dex_file.NumClassDefs());
Brian Carlstrome24fa612011-09-29 00:53:55 -07001370}
1371
1372size_t OatWriter::OatDexFile::SizeOf() const {
1373 return sizeof(dex_file_location_size_)
1374 + dex_file_location_size_
Brian Carlstrom5b332c82012-02-01 15:02:31 -08001375 + sizeof(dex_file_location_checksum_)
Brian Carlstrom89521892011-12-07 22:05:07 -08001376 + sizeof(dex_file_offset_)
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -08001377 + (sizeof(methods_offsets_[0]) * methods_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -07001378}
1379
Ian Rogers3d504072014-03-01 09:16:49 -08001380void OatWriter::OatDexFile::UpdateChecksum(OatHeader* oat_header) const {
1381 oat_header->UpdateChecksum(&dex_file_location_size_, sizeof(dex_file_location_size_));
1382 oat_header->UpdateChecksum(dex_file_location_data_, dex_file_location_size_);
1383 oat_header->UpdateChecksum(&dex_file_location_checksum_, sizeof(dex_file_location_checksum_));
1384 oat_header->UpdateChecksum(&dex_file_offset_, sizeof(dex_file_offset_));
1385 oat_header->UpdateChecksum(&methods_offsets_[0],
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -08001386 sizeof(methods_offsets_[0]) * methods_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -07001387}
1388
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001389bool OatWriter::OatDexFile::Write(OatWriter* oat_writer,
Ian Rogers3d504072014-03-01 09:16:49 -08001390 OutputStream* out,
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001391 const size_t file_offset) const {
Brian Carlstrom265091e2013-01-30 14:08:26 -08001392 DCHECK_OFFSET_();
Ian Rogers3d504072014-03-01 09:16:49 -08001393 if (!out->WriteFully(&dex_file_location_size_, sizeof(dex_file_location_size_))) {
1394 PLOG(ERROR) << "Failed to write dex file location length to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001395 return false;
1396 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001397 oat_writer->size_oat_dex_file_location_size_ += sizeof(dex_file_location_size_);
Ian Rogers3d504072014-03-01 09:16:49 -08001398 if (!out->WriteFully(dex_file_location_data_, dex_file_location_size_)) {
1399 PLOG(ERROR) << "Failed to write dex file location data to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001400 return false;
1401 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001402 oat_writer->size_oat_dex_file_location_data_ += dex_file_location_size_;
Ian Rogers3d504072014-03-01 09:16:49 -08001403 if (!out->WriteFully(&dex_file_location_checksum_, sizeof(dex_file_location_checksum_))) {
1404 PLOG(ERROR) << "Failed to write dex file location checksum to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001405 return false;
1406 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001407 oat_writer->size_oat_dex_file_location_checksum_ += sizeof(dex_file_location_checksum_);
Ian Rogers3d504072014-03-01 09:16:49 -08001408 if (!out->WriteFully(&dex_file_offset_, sizeof(dex_file_offset_))) {
1409 PLOG(ERROR) << "Failed to write dex file offset to " << out->GetLocation();
Brian Carlstrom89521892011-12-07 22:05:07 -08001410 return false;
1411 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001412 oat_writer->size_oat_dex_file_offset_ += sizeof(dex_file_offset_);
Ian Rogers3d504072014-03-01 09:16:49 -08001413 if (!out->WriteFully(&methods_offsets_[0],
Brian Carlstromcd60ac72013-01-20 17:09:51 -08001414 sizeof(methods_offsets_[0]) * methods_offsets_.size())) {
Ian Rogers3d504072014-03-01 09:16:49 -08001415 PLOG(ERROR) << "Failed to write methods offsets to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001416 return false;
1417 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001418 oat_writer->size_oat_dex_file_methods_offsets_ +=
1419 sizeof(methods_offsets_[0]) * methods_offsets_.size();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001420 return true;
1421}
1422
Brian Carlstromba150c32013-08-27 17:31:03 -07001423OatWriter::OatClass::OatClass(size_t offset,
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001424 const std::vector<CompiledMethod*>& compiled_methods,
Brian Carlstromba150c32013-08-27 17:31:03 -07001425 uint32_t num_non_null_compiled_methods,
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001426 mirror::Class::Status status)
1427 : compiled_methods_(compiled_methods) {
1428 uint32_t num_methods = compiled_methods.size();
Brian Carlstromba150c32013-08-27 17:31:03 -07001429 CHECK_LE(num_non_null_compiled_methods, num_methods);
1430
Brian Carlstrom265091e2013-01-30 14:08:26 -08001431 offset_ = offset;
Brian Carlstromba150c32013-08-27 17:31:03 -07001432 oat_method_offsets_offsets_from_oat_class_.resize(num_methods);
1433
1434 // Since both kOatClassNoneCompiled and kOatClassAllCompiled could
1435 // apply when there are 0 methods, we just arbitrarily say that 0
1436 // methods means kOatClassNoneCompiled and that we won't use
1437 // kOatClassAllCompiled unless there is at least one compiled
1438 // method. This means in an interpretter only system, we can assert
1439 // that all classes are kOatClassNoneCompiled.
1440 if (num_non_null_compiled_methods == 0) {
1441 type_ = kOatClassNoneCompiled;
1442 } else if (num_non_null_compiled_methods == num_methods) {
1443 type_ = kOatClassAllCompiled;
1444 } else {
1445 type_ = kOatClassSomeCompiled;
1446 }
1447
Brian Carlstrom0755ec52012-01-11 15:19:46 -08001448 status_ = status;
Brian Carlstromba150c32013-08-27 17:31:03 -07001449 method_offsets_.resize(num_non_null_compiled_methods);
Vladimir Marko8a630572014-04-09 18:45:35 +01001450 method_headers_.resize(num_non_null_compiled_methods);
Brian Carlstromba150c32013-08-27 17:31:03 -07001451
1452 uint32_t oat_method_offsets_offset_from_oat_class = sizeof(type_) + sizeof(status_);
1453 if (type_ == kOatClassSomeCompiled) {
1454 method_bitmap_ = new BitVector(num_methods, false, Allocator::GetMallocAllocator());
1455 method_bitmap_size_ = method_bitmap_->GetSizeOf();
1456 oat_method_offsets_offset_from_oat_class += sizeof(method_bitmap_size_);
1457 oat_method_offsets_offset_from_oat_class += method_bitmap_size_;
1458 } else {
1459 method_bitmap_ = NULL;
1460 method_bitmap_size_ = 0;
1461 }
1462
1463 for (size_t i = 0; i < num_methods; i++) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001464 CompiledMethod* compiled_method = compiled_methods_[i];
Brian Carlstromba150c32013-08-27 17:31:03 -07001465 if (compiled_method == NULL) {
1466 oat_method_offsets_offsets_from_oat_class_[i] = 0;
1467 } else {
1468 oat_method_offsets_offsets_from_oat_class_[i] = oat_method_offsets_offset_from_oat_class;
1469 oat_method_offsets_offset_from_oat_class += sizeof(OatMethodOffsets);
1470 if (type_ == kOatClassSomeCompiled) {
1471 method_bitmap_->SetBit(i);
1472 }
1473 }
1474 }
Brian Carlstrome24fa612011-09-29 00:53:55 -07001475}
1476
Brian Carlstromba150c32013-08-27 17:31:03 -07001477OatWriter::OatClass::~OatClass() {
Mathieu Chartier661974a2014-01-09 11:23:53 -08001478 delete method_bitmap_;
Brian Carlstromba150c32013-08-27 17:31:03 -07001479}
1480
Brian Carlstrom265091e2013-01-30 14:08:26 -08001481size_t OatWriter::OatClass::GetOatMethodOffsetsOffsetFromOatHeader(
1482 size_t class_def_method_index_) const {
Brian Carlstromba150c32013-08-27 17:31:03 -07001483 uint32_t method_offset = GetOatMethodOffsetsOffsetFromOatClass(class_def_method_index_);
1484 if (method_offset == 0) {
1485 return 0;
1486 }
1487 return offset_ + method_offset;
Brian Carlstrom265091e2013-01-30 14:08:26 -08001488}
1489
1490size_t OatWriter::OatClass::GetOatMethodOffsetsOffsetFromOatClass(
1491 size_t class_def_method_index_) const {
Brian Carlstromba150c32013-08-27 17:31:03 -07001492 return oat_method_offsets_offsets_from_oat_class_[class_def_method_index_];
Brian Carlstrom265091e2013-01-30 14:08:26 -08001493}
1494
1495size_t OatWriter::OatClass::SizeOf() const {
Brian Carlstromba150c32013-08-27 17:31:03 -07001496 return sizeof(status_)
1497 + sizeof(type_)
1498 + ((method_bitmap_size_ == 0) ? 0 : sizeof(method_bitmap_size_))
1499 + method_bitmap_size_
1500 + (sizeof(method_offsets_[0]) * method_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -07001501}
1502
Ian Rogers3d504072014-03-01 09:16:49 -08001503void OatWriter::OatClass::UpdateChecksum(OatHeader* oat_header) const {
1504 oat_header->UpdateChecksum(&status_, sizeof(status_));
1505 oat_header->UpdateChecksum(&type_, sizeof(type_));
Brian Carlstromba150c32013-08-27 17:31:03 -07001506 if (method_bitmap_size_ != 0) {
1507 CHECK_EQ(kOatClassSomeCompiled, type_);
Ian Rogers3d504072014-03-01 09:16:49 -08001508 oat_header->UpdateChecksum(&method_bitmap_size_, sizeof(method_bitmap_size_));
1509 oat_header->UpdateChecksum(method_bitmap_->GetRawStorage(), method_bitmap_size_);
Brian Carlstromba150c32013-08-27 17:31:03 -07001510 }
Ian Rogers3d504072014-03-01 09:16:49 -08001511 oat_header->UpdateChecksum(&method_offsets_[0],
1512 sizeof(method_offsets_[0]) * method_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -07001513}
1514
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001515bool OatWriter::OatClass::Write(OatWriter* oat_writer,
Ian Rogers3d504072014-03-01 09:16:49 -08001516 OutputStream* out,
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001517 const size_t file_offset) const {
Brian Carlstrom265091e2013-01-30 14:08:26 -08001518 DCHECK_OFFSET_();
Ian Rogers3d504072014-03-01 09:16:49 -08001519 if (!out->WriteFully(&status_, sizeof(status_))) {
1520 PLOG(ERROR) << "Failed to write class status to " << out->GetLocation();
Brian Carlstrom0755ec52012-01-11 15:19:46 -08001521 return false;
1522 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001523 oat_writer->size_oat_class_status_ += sizeof(status_);
Ian Rogers3d504072014-03-01 09:16:49 -08001524 if (!out->WriteFully(&type_, sizeof(type_))) {
1525 PLOG(ERROR) << "Failed to write oat class type to " << out->GetLocation();
Brian Carlstromba150c32013-08-27 17:31:03 -07001526 return false;
1527 }
1528 oat_writer->size_oat_class_type_ += sizeof(type_);
1529 if (method_bitmap_size_ != 0) {
1530 CHECK_EQ(kOatClassSomeCompiled, type_);
Ian Rogers3d504072014-03-01 09:16:49 -08001531 if (!out->WriteFully(&method_bitmap_size_, sizeof(method_bitmap_size_))) {
1532 PLOG(ERROR) << "Failed to write method bitmap size to " << out->GetLocation();
Brian Carlstromba150c32013-08-27 17:31:03 -07001533 return false;
1534 }
1535 oat_writer->size_oat_class_method_bitmaps_ += sizeof(method_bitmap_size_);
Ian Rogers3d504072014-03-01 09:16:49 -08001536 if (!out->WriteFully(method_bitmap_->GetRawStorage(), method_bitmap_size_)) {
1537 PLOG(ERROR) << "Failed to write method bitmap to " << out->GetLocation();
Brian Carlstromba150c32013-08-27 17:31:03 -07001538 return false;
1539 }
1540 oat_writer->size_oat_class_method_bitmaps_ += method_bitmap_size_;
1541 }
Ian Rogers3d504072014-03-01 09:16:49 -08001542 if (!out->WriteFully(&method_offsets_[0],
Brian Carlstromcd60ac72013-01-20 17:09:51 -08001543 sizeof(method_offsets_[0]) * method_offsets_.size())) {
Ian Rogers3d504072014-03-01 09:16:49 -08001544 PLOG(ERROR) << "Failed to write method offsets to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001545 return false;
1546 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001547 oat_writer->size_oat_class_method_offsets_ += sizeof(method_offsets_[0]) * method_offsets_.size();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001548 return true;
1549}
1550
Brian Carlstrome24fa612011-09-29 00:53:55 -07001551} // namespace art