blob: 745cdcfaab22584bacd62768dff7c47c782b704e [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"
Vladimir Marko3481ba22015-04-13 12:22:36 +010039#include "mirror/dex_cache-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070040#include "mirror/object-inl.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070041#include "os.h"
Brian Carlstromcd60ac72013-01-20 17:09:51 -080042#include "output_stream.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070043#include "safe_map.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070044#include "scoped_thread_state_change.h"
Mathieu Chartiereb8167a2014-05-07 15:43:14 -070045#include "handle_scope-inl.h"
jeffhaoec014232012-09-05 10:42:25 -070046#include "verifier/method_verifier.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070047
48namespace art {
49
Vladimir Marko96c6ab92014-04-08 14:00:50 +010050#define DCHECK_OFFSET() \
51 DCHECK_EQ(static_cast<off_t>(file_offset + relative_offset), out->Seek(0, kSeekCurrent)) \
52 << "file_offset=" << file_offset << " relative_offset=" << relative_offset
53
54#define DCHECK_OFFSET_() \
55 DCHECK_EQ(static_cast<off_t>(file_offset + offset_), out->Seek(0, kSeekCurrent)) \
56 << "file_offset=" << file_offset << " offset_=" << offset_
57
Brian Carlstrom3320cf42011-10-04 14:58:28 -070058OatWriter::OatWriter(const std::vector<const DexFile*>& dex_files,
Brian Carlstrom28db0122012-10-18 16:20:41 -070059 uint32_t image_file_location_oat_checksum,
Ian Rogersef7d42f2014-01-06 12:55:46 -080060 uintptr_t image_file_location_oat_begin,
Alex Lighta59dd802014-07-02 16:28:08 -070061 int32_t image_patch_delta,
Ian Rogersca368cb2013-11-15 15:52:08 -080062 const CompilerDriver* compiler,
Vladimir Markof4da6752014-08-01 19:04:18 +010063 ImageWriter* image_writer,
Andreas Gampe22f8e5c2014-07-09 11:38:21 -070064 TimingLogger* timings,
65 SafeMap<std::string, std::string>* key_value_store)
Jeff Hao0aba0ba2013-06-03 14:49:28 -070066 : compiler_driver_(compiler),
Vladimir Markof4da6752014-08-01 19:04:18 +010067 image_writer_(image_writer),
Jeff Hao0aba0ba2013-06-03 14:49:28 -070068 dex_files_(&dex_files),
Vladimir Markof4da6752014-08-01 19:04:18 +010069 size_(0u),
Vladimir Marko5c42c292015-02-25 12:02:49 +000070 bss_size_(0u),
Vladimir Markof4da6752014-08-01 19:04:18 +010071 oat_data_offset_(0u),
Jeff Hao0aba0ba2013-06-03 14:49:28 -070072 image_file_location_oat_checksum_(image_file_location_oat_checksum),
73 image_file_location_oat_begin_(image_file_location_oat_begin),
Alex Lighta59dd802014-07-02 16:28:08 -070074 image_patch_delta_(image_patch_delta),
Andreas Gampe22f8e5c2014-07-09 11:38:21 -070075 key_value_store_(key_value_store),
Mathieu Chartier2cebb242015-04-21 16:50:40 -070076 oat_header_(nullptr),
Jeff Hao0aba0ba2013-06-03 14:49:28 -070077 size_dex_file_alignment_(0),
78 size_executable_offset_alignment_(0),
79 size_oat_header_(0),
Andreas Gampe22f8e5c2014-07-09 11:38:21 -070080 size_oat_header_key_value_store_(0),
Jeff Hao0aba0ba2013-06-03 14:49:28 -070081 size_dex_file_(0),
Ian Rogers848871b2013-08-05 10:56:33 -070082 size_interpreter_to_interpreter_bridge_(0),
83 size_interpreter_to_compiled_code_bridge_(0),
84 size_jni_dlsym_lookup_(0),
Andreas Gampe2da88232014-02-27 12:26:20 -080085 size_quick_generic_jni_trampoline_(0),
Jeff Hao88474b42013-10-23 16:24:40 -070086 size_quick_imt_conflict_trampoline_(0),
Jeff Hao0aba0ba2013-06-03 14:49:28 -070087 size_quick_resolution_trampoline_(0),
Ian Rogers848871b2013-08-05 10:56:33 -070088 size_quick_to_interpreter_bridge_(0),
89 size_trampoline_alignment_(0),
Vladimir Marko96c6ab92014-04-08 14:00:50 +010090 size_method_header_(0),
Jeff Hao0aba0ba2013-06-03 14:49:28 -070091 size_code_(0),
92 size_code_alignment_(0),
Vladimir Markof4da6752014-08-01 19:04:18 +010093 size_relative_call_thunks_(0),
Vladimir Markoc74658b2015-03-31 10:26:41 +010094 size_misc_thunks_(0),
Jeff Hao0aba0ba2013-06-03 14:49:28 -070095 size_mapping_table_(0),
96 size_vmap_table_(0),
97 size_gc_map_(0),
98 size_oat_dex_file_location_size_(0),
99 size_oat_dex_file_location_data_(0),
100 size_oat_dex_file_location_checksum_(0),
101 size_oat_dex_file_offset_(0),
102 size_oat_dex_file_methods_offsets_(0),
Brian Carlstromba150c32013-08-27 17:31:03 -0700103 size_oat_class_type_(0),
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700104 size_oat_class_status_(0),
Brian Carlstromba150c32013-08-27 17:31:03 -0700105 size_oat_class_method_bitmaps_(0),
Vladimir Markof4da6752014-08-01 19:04:18 +0100106 size_oat_class_method_offsets_(0),
107 method_offset_map_() {
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700108 CHECK(key_value_store != nullptr);
109
Vladimir Markob163bb72015-03-31 21:49:49 +0100110 InstructionSet instruction_set = compiler_driver_->GetInstructionSet();
111 const InstructionSetFeatures* features = compiler_driver_->GetInstructionSetFeatures();
112 relative_patcher_ = linker::RelativePatcher::Create(instruction_set, features,
113 &method_offset_map_);
Vladimir Markof4da6752014-08-01 19:04:18 +0100114
Ian Rogersca368cb2013-11-15 15:52:08 -0800115 size_t offset;
116 {
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700117 TimingLogger::ScopedTiming split("InitOatHeader", timings);
Ian Rogersca368cb2013-11-15 15:52:08 -0800118 offset = InitOatHeader();
119 }
120 {
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700121 TimingLogger::ScopedTiming split("InitOatDexFiles", timings);
Ian Rogersca368cb2013-11-15 15:52:08 -0800122 offset = InitOatDexFiles(offset);
123 }
124 {
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700125 TimingLogger::ScopedTiming split("InitDexFiles", timings);
Ian Rogersca368cb2013-11-15 15:52:08 -0800126 offset = InitDexFiles(offset);
127 }
128 {
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700129 TimingLogger::ScopedTiming split("InitOatClasses", timings);
Ian Rogersca368cb2013-11-15 15:52:08 -0800130 offset = InitOatClasses(offset);
131 }
132 {
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700133 TimingLogger::ScopedTiming split("InitOatMaps", timings);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100134 offset = InitOatMaps(offset);
135 }
136 {
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700137 TimingLogger::ScopedTiming split("InitOatCode", timings);
Ian Rogersca368cb2013-11-15 15:52:08 -0800138 offset = InitOatCode(offset);
139 }
140 {
Mathieu Chartierf5997b42014-06-20 10:37:54 -0700141 TimingLogger::ScopedTiming split("InitOatCodeDexFiles", timings);
Ian Rogersca368cb2013-11-15 15:52:08 -0800142 offset = InitOatCodeDexFiles(offset);
143 }
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700144 size_ = offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700145
146 CHECK_EQ(dex_files_->size(), oat_dex_files_.size());
Vladimir Markof4da6752014-08-01 19:04:18 +0100147 CHECK_EQ(compiler->IsImage(), image_writer_ != nullptr);
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700148 CHECK_EQ(compiler->IsImage(),
149 key_value_store_->find(OatHeader::kImageLocationKey) == key_value_store_->end());
Alex Lighta59dd802014-07-02 16:28:08 -0700150 CHECK_ALIGNED(image_patch_delta_, kPageSize);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700151}
152
Ian Rogers0571d352011-11-03 19:51:38 -0700153OatWriter::~OatWriter() {
154 delete oat_header_;
155 STLDeleteElements(&oat_dex_files_);
Brian Carlstrom389efb02012-01-11 12:06:26 -0800156 STLDeleteElements(&oat_classes_);
Ian Rogers0571d352011-11-03 19:51:38 -0700157}
158
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100159struct OatWriter::GcMapDataAccess {
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800160 static const SwapVector<uint8_t>* GetData(const CompiledMethod* compiled_method) ALWAYS_INLINE {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100161 return compiled_method->GetGcMap();
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100162 }
163
164 static uint32_t GetOffset(OatClass* oat_class, size_t method_offsets_index) ALWAYS_INLINE {
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800165 uint32_t offset = oat_class->method_headers_[method_offsets_index].gc_map_offset_;
166 return offset == 0u ? 0u :
167 (oat_class->method_offsets_[method_offsets_index].code_offset_ & ~1) - offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100168 }
169
170 static void SetOffset(OatClass* oat_class, size_t method_offsets_index, uint32_t offset)
171 ALWAYS_INLINE {
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800172 oat_class->method_headers_[method_offsets_index].gc_map_offset_ =
173 (oat_class->method_offsets_[method_offsets_index].code_offset_ & ~1) - offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100174 }
175
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800176 static const char* Name() {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100177 return "GC map";
178 }
179};
180
181struct OatWriter::MappingTableDataAccess {
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800182 static const SwapVector<uint8_t>* GetData(const CompiledMethod* compiled_method) ALWAYS_INLINE {
Nicolas Geoffray376b2bb2014-12-09 14:26:32 +0000183 return compiled_method->GetMappingTable();
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100184 }
185
186 static uint32_t GetOffset(OatClass* oat_class, size_t method_offsets_index) ALWAYS_INLINE {
Vladimir Marko8a630572014-04-09 18:45:35 +0100187 uint32_t offset = oat_class->method_headers_[method_offsets_index].mapping_table_offset_;
188 return offset == 0u ? 0u :
189 (oat_class->method_offsets_[method_offsets_index].code_offset_ & ~1) - offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100190 }
191
192 static void SetOffset(OatClass* oat_class, size_t method_offsets_index, uint32_t offset)
193 ALWAYS_INLINE {
Vladimir Marko8a630572014-04-09 18:45:35 +0100194 oat_class->method_headers_[method_offsets_index].mapping_table_offset_ =
195 (oat_class->method_offsets_[method_offsets_index].code_offset_ & ~1) - offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100196 }
197
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800198 static const char* Name() {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100199 return "mapping table";
200 }
201};
202
203struct OatWriter::VmapTableDataAccess {
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800204 static const SwapVector<uint8_t>* GetData(const CompiledMethod* compiled_method) ALWAYS_INLINE {
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800205 return compiled_method->GetVmapTable();
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100206 }
207
208 static uint32_t GetOffset(OatClass* oat_class, size_t method_offsets_index) ALWAYS_INLINE {
Vladimir Marko8a630572014-04-09 18:45:35 +0100209 uint32_t offset = oat_class->method_headers_[method_offsets_index].vmap_table_offset_;
210 return offset == 0u ? 0u :
211 (oat_class->method_offsets_[method_offsets_index].code_offset_ & ~1) - offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100212 }
213
214 static void SetOffset(OatClass* oat_class, size_t method_offsets_index, uint32_t offset)
215 ALWAYS_INLINE {
Vladimir Marko8a630572014-04-09 18:45:35 +0100216 oat_class->method_headers_[method_offsets_index].vmap_table_offset_ =
217 (oat_class->method_offsets_[method_offsets_index].code_offset_ & ~1) - offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100218 }
219
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800220 static const char* Name() {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100221 return "vmap table";
222 }
223};
224
225class OatWriter::DexMethodVisitor {
226 public:
227 DexMethodVisitor(OatWriter* writer, size_t offset)
228 : writer_(writer),
229 offset_(offset),
230 dex_file_(nullptr),
231 class_def_index_(DexFile::kDexNoIndex) {
232 }
233
234 virtual bool StartClass(const DexFile* dex_file, size_t class_def_index) {
235 DCHECK(dex_file_ == nullptr);
236 DCHECK_EQ(class_def_index_, DexFile::kDexNoIndex);
237 dex_file_ = dex_file;
238 class_def_index_ = class_def_index;
239 return true;
240 }
241
242 virtual bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it) = 0;
243
244 virtual bool EndClass() {
245 if (kIsDebugBuild) {
246 dex_file_ = nullptr;
247 class_def_index_ = DexFile::kDexNoIndex;
248 }
249 return true;
250 }
251
252 size_t GetOffset() const {
253 return offset_;
254 }
255
256 protected:
257 virtual ~DexMethodVisitor() { }
258
259 OatWriter* const writer_;
260
261 // The offset is usually advanced for each visited method by the derived class.
262 size_t offset_;
263
264 // The dex file and class def index are set in StartClass().
265 const DexFile* dex_file_;
266 size_t class_def_index_;
267};
268
269class OatWriter::OatDexMethodVisitor : public DexMethodVisitor {
270 public:
271 OatDexMethodVisitor(OatWriter* writer, size_t offset)
272 : DexMethodVisitor(writer, offset),
273 oat_class_index_(0u),
274 method_offsets_index_(0u) {
275 }
276
277 bool StartClass(const DexFile* dex_file, size_t class_def_index) {
278 DexMethodVisitor::StartClass(dex_file, class_def_index);
279 DCHECK_LT(oat_class_index_, writer_->oat_classes_.size());
280 method_offsets_index_ = 0u;
281 return true;
282 }
283
284 bool EndClass() {
285 ++oat_class_index_;
286 return DexMethodVisitor::EndClass();
287 }
288
289 protected:
290 size_t oat_class_index_;
291 size_t method_offsets_index_;
292};
293
294class OatWriter::InitOatClassesMethodVisitor : public DexMethodVisitor {
295 public:
296 InitOatClassesMethodVisitor(OatWriter* writer, size_t offset)
297 : DexMethodVisitor(writer, offset),
298 compiled_methods_(),
299 num_non_null_compiled_methods_(0u) {
300 compiled_methods_.reserve(256u);
301 }
302
303 bool StartClass(const DexFile* dex_file, size_t class_def_index) {
304 DexMethodVisitor::StartClass(dex_file, class_def_index);
305 compiled_methods_.clear();
306 num_non_null_compiled_methods_ = 0u;
307 return true;
308 }
309
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700310 bool VisitMethod(size_t class_def_method_index ATTRIBUTE_UNUSED, const ClassDataItemIterator& it) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100311 // Fill in the compiled_methods_ array for methods that have a
312 // CompiledMethod. We track the number of non-null entries in
313 // num_non_null_compiled_methods_ since we only want to allocate
314 // OatMethodOffsets for the compiled methods.
315 uint32_t method_idx = it.GetMemberIndex();
316 CompiledMethod* compiled_method =
317 writer_->compiler_driver_->GetCompiledMethod(MethodReference(dex_file_, method_idx));
318 compiled_methods_.push_back(compiled_method);
319 if (compiled_method != nullptr) {
320 ++num_non_null_compiled_methods_;
321 }
322 return true;
323 }
324
325 bool EndClass() {
326 ClassReference class_ref(dex_file_, class_def_index_);
327 CompiledClass* compiled_class = writer_->compiler_driver_->GetCompiledClass(class_ref);
328 mirror::Class::Status status;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700329 if (compiled_class != nullptr) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100330 status = compiled_class->GetStatus();
331 } else if (writer_->compiler_driver_->GetVerificationResults()->IsClassRejected(class_ref)) {
332 status = mirror::Class::kStatusError;
333 } else {
334 status = mirror::Class::kStatusNotReady;
335 }
336
337 OatClass* oat_class = new OatClass(offset_, compiled_methods_,
338 num_non_null_compiled_methods_, status);
339 writer_->oat_classes_.push_back(oat_class);
Vladimir Markof4da6752014-08-01 19:04:18 +0100340 oat_class->UpdateChecksum(writer_->oat_header_);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100341 offset_ += oat_class->SizeOf();
342 return DexMethodVisitor::EndClass();
343 }
344
345 private:
346 std::vector<CompiledMethod*> compiled_methods_;
347 size_t num_non_null_compiled_methods_;
348};
349
350class OatWriter::InitCodeMethodVisitor : public OatDexMethodVisitor {
351 public:
352 InitCodeMethodVisitor(OatWriter* writer, size_t offset)
David Srbecky009e2a62015-04-15 02:46:30 +0100353 : OatDexMethodVisitor(writer, offset),
David Srbecky009e2a62015-04-15 02:46:30 +0100354 debuggable_(writer->GetCompilerDriver()->GetCompilerOptions().GetDebuggable()) {
David Srbeckyf8980872015-05-22 17:04:47 +0100355 writer_->absolute_patch_locations_.reserve(
Vladimir Markof4da6752014-08-01 19:04:18 +0100356 writer_->compiler_driver_->GetNonRelativeLinkerPatchCount());
357 }
358
359 bool EndClass() {
360 OatDexMethodVisitor::EndClass();
361 if (oat_class_index_ == writer_->oat_classes_.size()) {
Vladimir Marko71b0ddf2015-04-02 19:45:06 +0100362 offset_ = writer_->relative_patcher_->ReserveSpaceEnd(offset_);
Vladimir Markof4da6752014-08-01 19:04:18 +0100363 }
364 return true;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100365 }
366
367 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it)
368 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
369 OatClass* oat_class = writer_->oat_classes_[oat_class_index_];
370 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index);
371
372 if (compiled_method != nullptr) {
373 // Derived from CompiledMethod.
374 uint32_t quick_code_offset = 0;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100375
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800376 const SwapVector<uint8_t>* quick_code = compiled_method->GetQuickCode();
Elliott Hughes956af0f2014-12-11 14:34:28 -0800377 CHECK(quick_code != nullptr);
Elliott Hughes956af0f2014-12-11 14:34:28 -0800378 uint32_t code_size = quick_code->size() * sizeof(uint8_t);
379 CHECK_NE(code_size, 0U);
380 uint32_t thumb_offset = compiled_method->CodeDelta();
Elliott Hughes956af0f2014-12-11 14:34:28 -0800381
David Srbecky009e2a62015-04-15 02:46:30 +0100382 // Deduplicate code arrays if we are not producing debuggable code.
Vladimir Markoc74658b2015-03-31 10:26:41 +0100383 bool deduped = false;
David Srbecky009e2a62015-04-15 02:46:30 +0100384 if (debuggable_) {
385 quick_code_offset = NewQuickCodeOffset(compiled_method, it, thumb_offset);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100386 } else {
David Srbecky009e2a62015-04-15 02:46:30 +0100387 auto lb = dedupe_map_.lower_bound(compiled_method);
388 if (lb != dedupe_map_.end() && !dedupe_map_.key_comp()(compiled_method, lb->first)) {
389 quick_code_offset = lb->second;
390 deduped = true;
391 } else {
392 quick_code_offset = NewQuickCodeOffset(compiled_method, it, thumb_offset);
393 dedupe_map_.PutBefore(lb, compiled_method, quick_code_offset);
394 }
Elliott Hughes956af0f2014-12-11 14:34:28 -0800395 }
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()) {
David Srbeckyf8980872015-05-22 17:04:47 +0100446 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
David Srbecky8dc73242015-04-12 11:40:39 +0100452 if (writer_->compiler_driver_->GetCompilerOptions().GetIncludeDebugSymbols() ||
453 writer_->compiler_driver_->GetCompilerOptions().GetIncludeCFI()) {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800454 // Record debug information for this function if we are doing that.
Elliott Hughes956af0f2014-12-11 14:34:28 -0800455 const uint32_t quick_code_start = quick_code_offset -
David Srbecky6f715892015-03-30 14:21:42 +0100456 writer_->oat_header_->GetExecutableOffset() - thumb_offset;
David Srbecky0df9e1f2015-04-07 19:02:58 +0100457 writer_->method_info_.push_back(DebugInfo {
458 dex_file_,
459 class_def_index_,
460 it.GetMemberIndex(),
461 it.GetMethodAccessFlags(),
462 it.GetMethodCodeItem(),
463 deduped,
464 quick_code_start,
465 quick_code_start + code_size,
466 compiled_method});
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100467 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100468
469 if (kIsDebugBuild) {
470 // We expect GC maps except when the class hasn't been verified or the method is native.
471 const CompilerDriver* compiler_driver = writer_->compiler_driver_;
472 ClassReference class_ref(dex_file_, class_def_index_);
473 CompiledClass* compiled_class = compiler_driver->GetCompiledClass(class_ref);
474 mirror::Class::Status status;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700475 if (compiled_class != nullptr) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100476 status = compiled_class->GetStatus();
477 } else if (compiler_driver->GetVerificationResults()->IsClassRejected(class_ref)) {
478 status = mirror::Class::kStatusError;
479 } else {
480 status = mirror::Class::kStatusNotReady;
481 }
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800482 const SwapVector<uint8_t>* gc_map = compiled_method->GetGcMap();
Nicolas Geoffray39468442014-09-02 15:17:15 +0100483 if (gc_map != nullptr) {
484 size_t gc_map_size = gc_map->size() * sizeof(gc_map[0]);
Andreas Gampe51829322014-08-25 15:05:04 -0700485 bool is_native = it.MemberIsNative();
Nicolas Geoffray39468442014-09-02 15:17:15 +0100486 CHECK(gc_map_size != 0 || is_native || status < mirror::Class::kStatusVerified)
487 << gc_map << " " << gc_map_size << " " << (is_native ? "true" : "false") << " "
488 << (status < mirror::Class::kStatusVerified) << " " << status << " "
489 << PrettyMethod(it.GetMemberIndex(), *dex_file_);
490 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100491 }
492
493 DCHECK_LT(method_offsets_index_, oat_class->method_offsets_.size());
494 OatMethodOffsets* offsets = &oat_class->method_offsets_[method_offsets_index_];
495 offsets->code_offset_ = quick_code_offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100496 ++method_offsets_index_;
497 }
498
499 return true;
500 }
501
502 private:
Vladimir Marko20f85592015-03-19 10:07:02 +0000503 struct CodeOffsetsKeyComparator {
504 bool operator()(const CompiledMethod* lhs, const CompiledMethod* rhs) const {
505 if (lhs->GetQuickCode() != rhs->GetQuickCode()) {
506 return lhs->GetQuickCode() < rhs->GetQuickCode();
507 }
508 // If the code is the same, all other fields are likely to be the same as well.
509 if (UNLIKELY(lhs->GetMappingTable() != rhs->GetMappingTable())) {
510 return lhs->GetMappingTable() < rhs->GetMappingTable();
511 }
512 if (UNLIKELY(lhs->GetVmapTable() != rhs->GetVmapTable())) {
513 return lhs->GetVmapTable() < rhs->GetVmapTable();
514 }
515 if (UNLIKELY(lhs->GetGcMap() != rhs->GetGcMap())) {
516 return lhs->GetGcMap() < rhs->GetGcMap();
517 }
518 const auto& lhs_patches = lhs->GetPatches();
519 const auto& rhs_patches = rhs->GetPatches();
520 if (UNLIKELY(lhs_patches.size() != rhs_patches.size())) {
521 return lhs_patches.size() < rhs_patches.size();
522 }
523 auto rit = rhs_patches.begin();
524 for (const LinkerPatch& lpatch : lhs_patches) {
525 if (UNLIKELY(!(lpatch == *rit))) {
526 return lpatch < *rit;
527 }
528 ++rit;
529 }
530 return false;
531 }
532 };
533
David Srbecky009e2a62015-04-15 02:46:30 +0100534 uint32_t NewQuickCodeOffset(CompiledMethod* compiled_method,
535 const ClassDataItemIterator& it,
536 uint32_t thumb_offset) {
537 offset_ = writer_->relative_patcher_->ReserveSpace(
538 offset_, compiled_method, MethodReference(dex_file_, it.GetMemberIndex()));
539 offset_ = compiled_method->AlignCode(offset_);
540 DCHECK_ALIGNED_PARAM(offset_,
541 GetInstructionSetAlignment(compiled_method->GetInstructionSet()));
542 return offset_ + sizeof(OatQuickMethodHeader) + thumb_offset;
543 }
544
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100545 // Deduplication is already done on a pointer basis by the compiler driver,
546 // so we can simply compare the pointers to find out if things are duplicated.
Vladimir Marko8a630572014-04-09 18:45:35 +0100547 SafeMap<const CompiledMethod*, uint32_t, CodeOffsetsKeyComparator> dedupe_map_;
David Srbecky2f6cdb02015-04-11 00:17:53 +0100548
David Srbecky009e2a62015-04-15 02:46:30 +0100549 // Cache of compiler's --debuggable option.
550 const bool debuggable_;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100551};
552
553template <typename DataAccess>
554class OatWriter::InitMapMethodVisitor : public OatDexMethodVisitor {
555 public:
556 InitMapMethodVisitor(OatWriter* writer, size_t offset)
557 : OatDexMethodVisitor(writer, offset) {
558 }
559
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700560 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it ATTRIBUTE_UNUSED)
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100561 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
562 OatClass* oat_class = writer_->oat_classes_[oat_class_index_];
563 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index);
564
565 if (compiled_method != nullptr) {
566 DCHECK_LT(method_offsets_index_, oat_class->method_offsets_.size());
567 DCHECK_EQ(DataAccess::GetOffset(oat_class, method_offsets_index_), 0u);
568
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800569 const SwapVector<uint8_t>* map = DataAccess::GetData(compiled_method);
Nicolas Geoffray39468442014-09-02 15:17:15 +0100570 uint32_t map_size = map == nullptr ? 0 : map->size() * sizeof((*map)[0]);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100571 if (map_size != 0u) {
Vladimir Markobd72fc12014-07-09 16:06:40 +0100572 auto lb = dedupe_map_.lower_bound(map);
573 if (lb != dedupe_map_.end() && !dedupe_map_.key_comp()(map, lb->first)) {
574 DataAccess::SetOffset(oat_class, method_offsets_index_, lb->second);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100575 } else {
576 DataAccess::SetOffset(oat_class, method_offsets_index_, offset_);
Vladimir Markobd72fc12014-07-09 16:06:40 +0100577 dedupe_map_.PutBefore(lb, map, offset_);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100578 offset_ += map_size;
579 writer_->oat_header_->UpdateChecksum(&(*map)[0], map_size);
580 }
581 }
582 ++method_offsets_index_;
583 }
584
585 return true;
586 }
587
588 private:
589 // Deduplication is already done on a pointer basis by the compiler driver,
590 // so we can simply compare the pointers to find out if things are duplicated.
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800591 SafeMap<const SwapVector<uint8_t>*, uint32_t> dedupe_map_;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100592};
593
594class OatWriter::InitImageMethodVisitor : public OatDexMethodVisitor {
595 public:
596 InitImageMethodVisitor(OatWriter* writer, size_t offset)
Jeff Haoc7d11882015-02-03 15:08:39 -0800597 : OatDexMethodVisitor(writer, offset),
598 pointer_size_(GetInstructionSetPointerSize(writer_->compiler_driver_->GetInstructionSet())) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100599 }
600
601 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it)
602 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
603 OatClass* oat_class = writer_->oat_classes_[oat_class_index_];
604 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index);
605
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800606 OatMethodOffsets offsets(0u);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100607 if (compiled_method != nullptr) {
608 DCHECK_LT(method_offsets_index_, oat_class->method_offsets_.size());
609 offsets = oat_class->method_offsets_[method_offsets_index_];
610 ++method_offsets_index_;
611 }
612
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100613 ClassLinker* linker = Runtime::Current()->GetClassLinker();
614 InvokeType invoke_type = it.GetMethodInvokeType(dex_file_->GetClassDef(class_def_index_));
615 // Unchecked as we hold mutator_lock_ on entry.
616 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800617 StackHandleScope<1> hs(soa.Self());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700618 Handle<mirror::DexCache> dex_cache(hs.NewHandle(linker->FindDexCache(*dex_file_)));
Vladimir Marko7624d252014-05-02 14:40:15 +0100619 mirror::ArtMethod* method = linker->ResolveMethod(*dex_file_, it.GetMemberIndex(), dex_cache,
Mathieu Chartier0cd81352014-05-22 16:48:55 -0700620 NullHandle<mirror::ClassLoader>(),
621 NullHandle<mirror::ArtMethod>(),
622 invoke_type);
Andreas Gamped9efea62014-07-21 22:56:08 -0700623 if (method == nullptr) {
624 LOG(ERROR) << "Unexpected failure to resolve a method: "
625 << PrettyMethod(it.GetMemberIndex(), *dex_file_, true);
626 soa.Self()->AssertPendingException();
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000627 mirror::Throwable* exc = soa.Self()->GetException();
Andreas Gamped9efea62014-07-21 22:56:08 -0700628 std::string dump = exc->Dump();
629 LOG(FATAL) << dump;
630 }
Jeff Haoc7d11882015-02-03 15:08:39 -0800631 method->SetEntryPointFromQuickCompiledCodePtrSize(reinterpret_cast<void*>(offsets.code_offset_),
632 pointer_size_);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100633
634 return true;
635 }
Jeff Haoc7d11882015-02-03 15:08:39 -0800636
637 protected:
638 const size_t pointer_size_;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100639};
640
641class OatWriter::WriteCodeMethodVisitor : public OatDexMethodVisitor {
642 public:
643 WriteCodeMethodVisitor(OatWriter* writer, OutputStream* out, const size_t file_offset,
Vladimir Markof4da6752014-08-01 19:04:18 +0100644 size_t relative_offset) SHARED_LOCK_FUNCTION(Locks::mutator_lock_)
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100645 : OatDexMethodVisitor(writer, relative_offset),
646 out_(out),
Vladimir Markof4da6752014-08-01 19:04:18 +0100647 file_offset_(file_offset),
Vladimir Marko7c2ad5a2014-09-24 12:42:55 +0100648 soa_(Thread::Current()),
649 no_thread_suspension_(soa_.Self(), "OatWriter patching"),
Vladimir Markof4da6752014-08-01 19:04:18 +0100650 class_linker_(Runtime::Current()->GetClassLinker()),
651 dex_cache_(nullptr) {
652 if (writer_->image_writer_ != nullptr) {
653 // If we're creating the image, the address space must be ready so that we can apply patches.
654 CHECK(writer_->image_writer_->IsImageAddressSpaceReady());
655 patched_code_.reserve(16 * KB);
656 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100657 }
658
Vladimir Markof4da6752014-08-01 19:04:18 +0100659 ~WriteCodeMethodVisitor() UNLOCK_FUNCTION(Locks::mutator_lock_) {
Vladimir Markof4da6752014-08-01 19:04:18 +0100660 }
661
662 bool StartClass(const DexFile* dex_file, size_t class_def_index)
663 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
664 OatDexMethodVisitor::StartClass(dex_file, class_def_index);
665 if (dex_cache_ == nullptr || dex_cache_->GetDexFile() != dex_file) {
666 dex_cache_ = class_linker_->FindDexCache(*dex_file);
667 }
668 return true;
669 }
670
671 bool EndClass() SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
672 bool result = OatDexMethodVisitor::EndClass();
673 if (oat_class_index_ == writer_->oat_classes_.size()) {
674 DCHECK(result); // OatDexMethodVisitor::EndClass() never fails.
Vladimir Marko20f85592015-03-19 10:07:02 +0000675 offset_ = writer_->relative_patcher_->WriteThunks(out_, offset_);
Vladimir Markof4da6752014-08-01 19:04:18 +0100676 if (UNLIKELY(offset_ == 0u)) {
677 PLOG(ERROR) << "Failed to write final relative call thunks";
678 result = false;
679 }
680 }
681 return result;
682 }
683
684 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it)
685 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100686 OatClass* oat_class = writer_->oat_classes_[oat_class_index_];
687 const CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index);
688
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700689 if (compiled_method != nullptr) { // ie. not an abstract method
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100690 size_t file_offset = file_offset_;
691 OutputStream* out = out_;
692
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800693 const SwapVector<uint8_t>* quick_code = compiled_method->GetQuickCode();
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100694 if (quick_code != nullptr) {
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800695 // Need a wrapper if we create a copy for patching.
696 ArrayRef<const uint8_t> wrapped(*quick_code);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100697 uint32_t code_size = quick_code->size() * sizeof(uint8_t);
698 CHECK_NE(code_size, 0U);
699
700 // Deduplicate code arrays.
701 const OatMethodOffsets& method_offsets = oat_class->method_offsets_[method_offsets_index_];
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100702 if (method_offsets.code_offset_ >= offset_) {
Vladimir Markoc74658b2015-03-31 10:26:41 +0100703 offset_ = writer_->relative_patcher_->WriteThunks(out, offset_);
704 if (offset_ == 0u) {
705 ReportWriteFailure("relative call thunk", it);
706 return false;
707 }
708 uint32_t aligned_offset = compiled_method->AlignCode(offset_);
709 uint32_t aligned_code_delta = aligned_offset - offset_;
710 if (aligned_code_delta != 0) {
711 if (!writer_->WriteCodeAlignment(out, aligned_code_delta)) {
712 ReportWriteFailure("code alignment padding", it);
713 return false;
714 }
715 offset_ += aligned_code_delta;
716 DCHECK_OFFSET_();
717 }
718 DCHECK_ALIGNED_PARAM(offset_,
719 GetInstructionSetAlignment(compiled_method->GetInstructionSet()));
720 DCHECK_EQ(method_offsets.code_offset_,
721 offset_ + sizeof(OatQuickMethodHeader) + compiled_method->CodeDelta())
722 << PrettyMethod(it.GetMemberIndex(), *dex_file_);
Vladimir Markof4da6752014-08-01 19:04:18 +0100723 const OatQuickMethodHeader& method_header =
724 oat_class->method_headers_[method_offsets_index_];
725 writer_->oat_header_->UpdateChecksum(&method_header, sizeof(method_header));
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100726 if (!out->WriteFully(&method_header, sizeof(method_header))) {
727 ReportWriteFailure("method header", it);
728 return false;
729 }
730 writer_->size_method_header_ += sizeof(method_header);
731 offset_ += sizeof(method_header);
732 DCHECK_OFFSET_();
Vladimir Markof4da6752014-08-01 19:04:18 +0100733
734 if (!compiled_method->GetPatches().empty()) {
Vladimir Marko20f85592015-03-19 10:07:02 +0000735 patched_code_.assign(quick_code->begin(), quick_code->end());
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800736 wrapped = ArrayRef<const uint8_t>(patched_code_);
Vladimir Markof4da6752014-08-01 19:04:18 +0100737 for (const LinkerPatch& patch : compiled_method->GetPatches()) {
738 if (patch.Type() == kLinkerPatchCallRelative) {
739 // NOTE: Relative calls across oat files are not supported.
740 uint32_t target_offset = GetTargetOffset(patch);
741 uint32_t literal_offset = patch.LiteralOffset();
Vladimir Marko20f85592015-03-19 10:07:02 +0000742 writer_->relative_patcher_->PatchCall(&patched_code_, literal_offset,
Vladimir Markof4da6752014-08-01 19:04:18 +0100743 offset_ + literal_offset, target_offset);
Vladimir Marko20f85592015-03-19 10:07:02 +0000744 } else if (patch.Type() == kLinkerPatchDexCacheArray) {
745 uint32_t target_offset = GetDexCacheOffset(patch);
746 uint32_t literal_offset = patch.LiteralOffset();
747 writer_->relative_patcher_->PatchDexCacheReference(&patched_code_, patch,
748 offset_ + literal_offset,
749 target_offset);
Vladimir Markof4da6752014-08-01 19:04:18 +0100750 } else if (patch.Type() == kLinkerPatchCall) {
751 uint32_t target_offset = GetTargetOffset(patch);
752 PatchCodeAddress(&patched_code_, patch.LiteralOffset(), target_offset);
753 } else if (patch.Type() == kLinkerPatchMethod) {
754 mirror::ArtMethod* method = GetTargetMethod(patch);
755 PatchObjectAddress(&patched_code_, patch.LiteralOffset(), method);
756 } else if (patch.Type() == kLinkerPatchType) {
757 mirror::Class* type = GetTargetType(patch);
758 PatchObjectAddress(&patched_code_, patch.LiteralOffset(), type);
759 }
760 }
761 }
762
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800763 writer_->oat_header_->UpdateChecksum(wrapped.data(), code_size);
764 if (!out->WriteFully(wrapped.data(), code_size)) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100765 ReportWriteFailure("method code", it);
766 return false;
767 }
768 writer_->size_code_ += code_size;
769 offset_ += code_size;
770 }
771 DCHECK_OFFSET_();
772 }
773 ++method_offsets_index_;
774 }
775
776 return true;
777 }
778
779 private:
780 OutputStream* const out_;
Vladimir Marko7c2ad5a2014-09-24 12:42:55 +0100781 const size_t file_offset_;
782 const ScopedObjectAccess soa_;
783 const ScopedAssertNoThreadSuspension no_thread_suspension_;
Vladimir Markof4da6752014-08-01 19:04:18 +0100784 ClassLinker* const class_linker_;
785 mirror::DexCache* dex_cache_;
786 std::vector<uint8_t> patched_code_;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100787
788 void ReportWriteFailure(const char* what, const ClassDataItemIterator& it) {
789 PLOG(ERROR) << "Failed to write " << what << " for "
790 << PrettyMethod(it.GetMemberIndex(), *dex_file_) << " to " << out_->GetLocation();
791 }
Vladimir Markof4da6752014-08-01 19:04:18 +0100792
793 mirror::ArtMethod* GetTargetMethod(const LinkerPatch& patch)
794 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
795 MethodReference ref = patch.TargetMethod();
796 mirror::DexCache* dex_cache =
797 (dex_file_ == ref.dex_file) ? dex_cache_ : class_linker_->FindDexCache(*ref.dex_file);
798 mirror::ArtMethod* method = dex_cache->GetResolvedMethod(ref.dex_method_index);
799 CHECK(method != nullptr);
800 return method;
801 }
802
803 uint32_t GetTargetOffset(const LinkerPatch& patch) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Vladimir Markob163bb72015-03-31 21:49:49 +0100804 auto target_it = writer_->method_offset_map_.map.find(patch.TargetMethod());
Vladimir Markof4da6752014-08-01 19:04:18 +0100805 uint32_t target_offset =
Vladimir Markob163bb72015-03-31 21:49:49 +0100806 (target_it != writer_->method_offset_map_.map.end()) ? target_it->second : 0u;
Vladimir Markof4da6752014-08-01 19:04:18 +0100807 // If there's no compiled code, point to the correct trampoline.
808 if (UNLIKELY(target_offset == 0)) {
809 mirror::ArtMethod* target = GetTargetMethod(patch);
810 DCHECK(target != nullptr);
Jeff Haoa0acc2d2015-01-27 11:22:04 -0800811 size_t size = GetInstructionSetPointerSize(writer_->compiler_driver_->GetInstructionSet());
812 const void* oat_code_offset = target->GetEntryPointFromQuickCompiledCodePtrSize(size);
813 if (oat_code_offset != 0) {
814 DCHECK(!Runtime::Current()->GetClassLinker()->IsQuickResolutionStub(oat_code_offset));
815 DCHECK(!Runtime::Current()->GetClassLinker()->IsQuickToInterpreterBridge(oat_code_offset));
816 DCHECK(!Runtime::Current()->GetClassLinker()->IsQuickGenericJniStub(oat_code_offset));
817 target_offset = PointerToLowMemUInt32(oat_code_offset);
818 } else {
819 target_offset = target->IsNative()
820 ? writer_->oat_header_->GetQuickGenericJniTrampolineOffset()
821 : writer_->oat_header_->GetQuickToInterpreterBridgeOffset();
822 }
Vladimir Markof4da6752014-08-01 19:04:18 +0100823 }
824 return target_offset;
825 }
826
827 mirror::Class* GetTargetType(const LinkerPatch& patch)
828 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
829 mirror::DexCache* dex_cache = (dex_file_ == patch.TargetTypeDexFile())
830 ? dex_cache_ : class_linker_->FindDexCache(*patch.TargetTypeDexFile());
831 mirror::Class* type = dex_cache->GetResolvedType(patch.TargetTypeIndex());
832 CHECK(type != nullptr);
833 return type;
834 }
835
Vladimir Marko20f85592015-03-19 10:07:02 +0000836 uint32_t GetDexCacheOffset(const LinkerPatch& patch) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
837 if (writer_->image_writer_ != nullptr) {
838 auto* element = writer_->image_writer_->GetDexCacheArrayElementImageAddress(
839 patch.TargetDexCacheDexFile(), patch.TargetDexCacheElementOffset());
840 const uint8_t* oat_data = writer_->image_writer_->GetOatFileBegin() + file_offset_;
841 return reinterpret_cast<const uint8_t*>(element) - oat_data;
842 } else {
843 LOG(FATAL) << "Unimplemented.";
844 UNREACHABLE();
845 }
846 }
847
Vladimir Markof4da6752014-08-01 19:04:18 +0100848 void PatchObjectAddress(std::vector<uint8_t>* code, uint32_t offset, mirror::Object* object)
849 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
850 // NOTE: Direct method pointers across oat files don't use linker patches. However, direct
851 // type pointers across oat files do. (TODO: Investigate why.)
852 if (writer_->image_writer_ != nullptr) {
853 object = writer_->image_writer_->GetImageAddress(object);
854 }
855 uint32_t address = PointerToLowMemUInt32(object);
856 DCHECK_LE(offset + 4, code->size());
857 uint8_t* data = &(*code)[offset];
858 data[0] = address & 0xffu;
859 data[1] = (address >> 8) & 0xffu;
860 data[2] = (address >> 16) & 0xffu;
861 data[3] = (address >> 24) & 0xffu;
862 }
863
864 void PatchCodeAddress(std::vector<uint8_t>* code, uint32_t offset, uint32_t target_offset)
865 SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
Jeff Haoa0acc2d2015-01-27 11:22:04 -0800866 uint32_t address = writer_->image_writer_ == nullptr ? target_offset :
867 PointerToLowMemUInt32(writer_->image_writer_->GetOatFileBegin() +
868 writer_->oat_data_offset_ + target_offset);
Vladimir Markof4da6752014-08-01 19:04:18 +0100869 DCHECK_LE(offset + 4, code->size());
870 uint8_t* data = &(*code)[offset];
871 data[0] = address & 0xffu;
872 data[1] = (address >> 8) & 0xffu;
873 data[2] = (address >> 16) & 0xffu;
874 data[3] = (address >> 24) & 0xffu;
875 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100876};
877
878template <typename DataAccess>
879class OatWriter::WriteMapMethodVisitor : public OatDexMethodVisitor {
880 public:
881 WriteMapMethodVisitor(OatWriter* writer, OutputStream* out, const size_t file_offset,
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800882 size_t relative_offset)
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100883 : OatDexMethodVisitor(writer, relative_offset),
884 out_(out),
885 file_offset_(file_offset) {
886 }
887
888 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it) {
889 OatClass* oat_class = writer_->oat_classes_[oat_class_index_];
890 const CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index);
891
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700892 if (compiled_method != nullptr) { // ie. not an abstract method
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100893 size_t file_offset = file_offset_;
894 OutputStream* out = out_;
895
896 uint32_t map_offset = DataAccess::GetOffset(oat_class, method_offsets_index_);
897 ++method_offsets_index_;
898
899 // Write deduplicated map.
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800900 const SwapVector<uint8_t>* map = DataAccess::GetData(compiled_method);
Nicolas Geoffray39468442014-09-02 15:17:15 +0100901 size_t map_size = map == nullptr ? 0 : map->size() * sizeof((*map)[0]);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100902 DCHECK((map_size == 0u && map_offset == 0u) ||
903 (map_size != 0u && map_offset != 0u && map_offset <= offset_))
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800904 << map_size << " " << map_offset << " " << offset_ << " "
905 << PrettyMethod(it.GetMemberIndex(), *dex_file_) << " for " << DataAccess::Name();
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100906 if (map_size != 0u && map_offset == offset_) {
907 if (UNLIKELY(!out->WriteFully(&(*map)[0], map_size))) {
908 ReportWriteFailure(it);
909 return false;
910 }
911 offset_ += map_size;
912 }
913 DCHECK_OFFSET_();
914 }
915
916 return true;
917 }
918
919 private:
920 OutputStream* const out_;
921 size_t const file_offset_;
922
923 void ReportWriteFailure(const ClassDataItemIterator& it) {
924 PLOG(ERROR) << "Failed to write " << DataAccess::Name() << " for "
925 << PrettyMethod(it.GetMemberIndex(), *dex_file_) << " to " << out_->GetLocation();
926 }
927};
928
929// Visit all methods from all classes in all dex files with the specified visitor.
930bool OatWriter::VisitDexMethods(DexMethodVisitor* visitor) {
931 for (const DexFile* dex_file : *dex_files_) {
932 const size_t class_def_count = dex_file->NumClassDefs();
933 for (size_t class_def_index = 0; class_def_index != class_def_count; ++class_def_index) {
934 if (UNLIKELY(!visitor->StartClass(dex_file, class_def_index))) {
935 return false;
936 }
937 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
Ian Rogers13735952014-10-08 12:43:28 -0700938 const uint8_t* class_data = dex_file->GetClassData(class_def);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700939 if (class_data != nullptr) { // ie not an empty class, such as a marker interface
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100940 ClassDataItemIterator it(*dex_file, class_data);
941 while (it.HasNextStaticField()) {
942 it.Next();
943 }
944 while (it.HasNextInstanceField()) {
945 it.Next();
946 }
947 size_t class_def_method_index = 0u;
948 while (it.HasNextDirectMethod()) {
949 if (!visitor->VisitMethod(class_def_method_index, it)) {
950 return false;
951 }
952 ++class_def_method_index;
953 it.Next();
954 }
955 while (it.HasNextVirtualMethod()) {
956 if (UNLIKELY(!visitor->VisitMethod(class_def_method_index, it))) {
957 return false;
958 }
959 ++class_def_method_index;
960 it.Next();
961 }
962 }
963 if (UNLIKELY(!visitor->EndClass())) {
964 return false;
965 }
966 }
967 }
968 return true;
969}
970
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700971size_t OatWriter::InitOatHeader() {
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700972 oat_header_ = OatHeader::Create(compiler_driver_->GetInstructionSet(),
973 compiler_driver_->GetInstructionSetFeatures(),
974 dex_files_,
975 image_file_location_oat_checksum_,
976 image_file_location_oat_begin_,
977 key_value_store_);
978
979 return oat_header_->GetHeaderSize();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700980}
981
982size_t OatWriter::InitOatDexFiles(size_t offset) {
983 // create the OatDexFiles
984 for (size_t i = 0; i != dex_files_->size(); ++i) {
985 const DexFile* dex_file = (*dex_files_)[i];
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700986 CHECK(dex_file != nullptr);
Brian Carlstrom265091e2013-01-30 14:08:26 -0800987 OatDexFile* oat_dex_file = new OatDexFile(offset, *dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700988 oat_dex_files_.push_back(oat_dex_file);
989 offset += oat_dex_file->SizeOf();
990 }
991 return offset;
992}
993
Brian Carlstrom89521892011-12-07 22:05:07 -0800994size_t OatWriter::InitDexFiles(size_t offset) {
995 // calculate the offsets within OatDexFiles to the DexFiles
996 for (size_t i = 0; i != dex_files_->size(); ++i) {
997 // dex files are required to be 4 byte aligned
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700998 size_t original_offset = offset;
Brian Carlstrom89521892011-12-07 22:05:07 -0800999 offset = RoundUp(offset, 4);
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001000 size_dex_file_alignment_ += offset - original_offset;
Brian Carlstrom89521892011-12-07 22:05:07 -08001001
1002 // set offset in OatDexFile to DexFile
1003 oat_dex_files_[i]->dex_file_offset_ = offset;
1004
1005 const DexFile* dex_file = (*dex_files_)[i];
1006 offset += dex_file->GetHeader().file_size_;
1007 }
1008 return offset;
1009}
1010
Brian Carlstrom389efb02012-01-11 12:06:26 -08001011size_t OatWriter::InitOatClasses(size_t offset) {
Brian Carlstrom389efb02012-01-11 12:06:26 -08001012 // calculate the offsets within OatDexFiles to OatClasses
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001013 InitOatClassesMethodVisitor visitor(this, offset);
1014 bool success = VisitDexMethods(&visitor);
1015 CHECK(success);
1016 offset = visitor.GetOffset();
Brian Carlstromba150c32013-08-27 17:31:03 -07001017
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001018 // Update oat_dex_files_.
1019 auto oat_class_it = oat_classes_.begin();
1020 for (OatDexFile* oat_dex_file : oat_dex_files_) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001021 for (uint32_t& method_offset : oat_dex_file->methods_offsets_) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001022 DCHECK(oat_class_it != oat_classes_.end());
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001023 method_offset = (*oat_class_it)->offset_;
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001024 ++oat_class_it;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001025 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001026 oat_dex_file->UpdateChecksum(oat_header_);
Brian Carlstrome24fa612011-09-29 00:53:55 -07001027 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001028 CHECK(oat_class_it == oat_classes_.end());
1029
1030 return offset;
1031}
1032
1033size_t OatWriter::InitOatMaps(size_t offset) {
1034 #define VISIT(VisitorType) \
1035 do { \
1036 VisitorType visitor(this, offset); \
1037 bool success = VisitDexMethods(&visitor); \
1038 DCHECK(success); \
1039 offset = visitor.GetOffset(); \
1040 } while (false)
1041
1042 VISIT(InitMapMethodVisitor<GcMapDataAccess>);
1043 VISIT(InitMapMethodVisitor<MappingTableDataAccess>);
1044 VISIT(InitMapMethodVisitor<VmapTableDataAccess>);
1045
1046 #undef VISIT
1047
Brian Carlstrome24fa612011-09-29 00:53:55 -07001048 return offset;
1049}
1050
1051size_t OatWriter::InitOatCode(size_t offset) {
1052 // calculate the offsets within OatHeader to executable code
1053 size_t old_offset = offset;
Dave Allison50abf0a2014-06-23 13:19:59 -07001054 size_t adjusted_offset = offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001055 // required to be on a new page boundary
1056 offset = RoundUp(offset, kPageSize);
1057 oat_header_->SetExecutableOffset(offset);
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001058 size_executable_offset_alignment_ = offset - old_offset;
1059 if (compiler_driver_->IsImage()) {
Alex Lighta59dd802014-07-02 16:28:08 -07001060 CHECK_EQ(image_patch_delta_, 0);
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001061 InstructionSet instruction_set = compiler_driver_->GetInstructionSet();
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001062
Ian Rogers848871b2013-08-05 10:56:33 -07001063 #define DO_TRAMPOLINE(field, fn_name) \
1064 offset = CompiledCode::AlignCode(offset, instruction_set); \
Dave Allison50abf0a2014-06-23 13:19:59 -07001065 adjusted_offset = offset + CompiledCode::CodeDelta(instruction_set); \
1066 oat_header_->Set ## fn_name ## Offset(adjusted_offset); \
Ian Rogers848871b2013-08-05 10:56:33 -07001067 field.reset(compiler_driver_->Create ## fn_name()); \
1068 offset += field->size();
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001069
Ian Rogers848871b2013-08-05 10:56:33 -07001070 DO_TRAMPOLINE(interpreter_to_interpreter_bridge_, InterpreterToInterpreterBridge);
1071 DO_TRAMPOLINE(interpreter_to_compiled_code_bridge_, InterpreterToCompiledCodeBridge);
1072 DO_TRAMPOLINE(jni_dlsym_lookup_, JniDlsymLookup);
Andreas Gampe2da88232014-02-27 12:26:20 -08001073 DO_TRAMPOLINE(quick_generic_jni_trampoline_, QuickGenericJniTrampoline);
Jeff Hao88474b42013-10-23 16:24:40 -07001074 DO_TRAMPOLINE(quick_imt_conflict_trampoline_, QuickImtConflictTrampoline);
Ian Rogers848871b2013-08-05 10:56:33 -07001075 DO_TRAMPOLINE(quick_resolution_trampoline_, QuickResolutionTrampoline);
1076 DO_TRAMPOLINE(quick_to_interpreter_bridge_, QuickToInterpreterBridge);
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001077
Ian Rogers848871b2013-08-05 10:56:33 -07001078 #undef DO_TRAMPOLINE
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001079 } else {
Ian Rogers848871b2013-08-05 10:56:33 -07001080 oat_header_->SetInterpreterToInterpreterBridgeOffset(0);
1081 oat_header_->SetInterpreterToCompiledCodeBridgeOffset(0);
1082 oat_header_->SetJniDlsymLookupOffset(0);
Andreas Gampe2da88232014-02-27 12:26:20 -08001083 oat_header_->SetQuickGenericJniTrampolineOffset(0);
Jeff Hao88474b42013-10-23 16:24:40 -07001084 oat_header_->SetQuickImtConflictTrampolineOffset(0);
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001085 oat_header_->SetQuickResolutionTrampolineOffset(0);
Ian Rogers848871b2013-08-05 10:56:33 -07001086 oat_header_->SetQuickToInterpreterBridgeOffset(0);
Alex Lighta59dd802014-07-02 16:28:08 -07001087 oat_header_->SetImagePatchDelta(image_patch_delta_);
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001088 }
Brian Carlstrome24fa612011-09-29 00:53:55 -07001089 return offset;
1090}
1091
1092size_t OatWriter::InitOatCodeDexFiles(size_t offset) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001093 #define VISIT(VisitorType) \
1094 do { \
1095 VisitorType visitor(this, offset); \
1096 bool success = VisitDexMethods(&visitor); \
1097 DCHECK(success); \
1098 offset = visitor.GetOffset(); \
1099 } while (false)
Brian Carlstrome24fa612011-09-29 00:53:55 -07001100
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001101 VISIT(InitCodeMethodVisitor);
Ian Rogers1212a022013-03-04 10:48:41 -08001102 if (compiler_driver_->IsImage()) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001103 VISIT(InitImageMethodVisitor);
Ian Rogers0571d352011-11-03 19:51:38 -07001104 }
Logan Chien8b977d32012-02-21 19:14:55 +08001105
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001106 #undef VISIT
1107
Brian Carlstrome24fa612011-09-29 00:53:55 -07001108 return offset;
1109}
1110
David Srbeckybc90fd02015-04-22 19:40:27 +01001111bool OatWriter::WriteRodata(OutputStream* out) {
Vladimir Markof4da6752014-08-01 19:04:18 +01001112 const off_t raw_file_offset = out->Seek(0, kSeekCurrent);
1113 if (raw_file_offset == (off_t) -1) {
1114 LOG(ERROR) << "Failed to get file offset in " << out->GetLocation();
1115 return false;
1116 }
1117 const size_t file_offset = static_cast<size_t>(raw_file_offset);
David Srbeckybc90fd02015-04-22 19:40:27 +01001118 oat_data_offset_ = file_offset;
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001119
Vladimir Markof4da6752014-08-01 19:04:18 +01001120 // Reserve space for header. It will be written last - after updating the checksum.
Andreas Gampe22f8e5c2014-07-09 11:38:21 -07001121 size_t header_size = oat_header_->GetHeaderSize();
Vladimir Markof4da6752014-08-01 19:04:18 +01001122 if (out->Seek(header_size, kSeekCurrent) == (off_t) -1) {
1123 PLOG(ERROR) << "Failed to reserve space for oat header in " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001124 return false;
1125 }
Andreas Gampe22f8e5c2014-07-09 11:38:21 -07001126 size_oat_header_ += sizeof(OatHeader);
1127 size_oat_header_key_value_store_ += oat_header_->GetHeaderSize() - sizeof(OatHeader);
Brian Carlstrom81f3ca12012-03-17 00:27:35 -07001128
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001129 if (!WriteTables(out, file_offset)) {
Ian Rogers3d504072014-03-01 09:16:49 -08001130 LOG(ERROR) << "Failed to write oat tables to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001131 return false;
1132 }
1133
Vladimir Markof4da6752014-08-01 19:04:18 +01001134 off_t tables_end_offset = out->Seek(0, kSeekCurrent);
1135 if (tables_end_offset == (off_t) -1) {
1136 LOG(ERROR) << "Failed to seek to oat code position in " << out->GetLocation();
1137 return false;
1138 }
1139 size_t relative_offset = static_cast<size_t>(tables_end_offset) - file_offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001140 relative_offset = WriteMaps(out, file_offset, relative_offset);
1141 if (relative_offset == 0) {
1142 LOG(ERROR) << "Failed to write oat code to " << out->GetLocation();
1143 return false;
1144 }
1145
David Srbeckybc90fd02015-04-22 19:40:27 +01001146 // Write padding.
1147 off_t new_offset = out->Seek(size_executable_offset_alignment_, kSeekCurrent);
1148 relative_offset += size_executable_offset_alignment_;
1149 DCHECK_EQ(relative_offset, oat_header_->GetExecutableOffset());
1150 size_t expected_file_offset = file_offset + relative_offset;
1151 if (static_cast<uint32_t>(new_offset) != expected_file_offset) {
1152 PLOG(ERROR) << "Failed to seek to oat code section. Actual: " << new_offset
1153 << " Expected: " << expected_file_offset << " File: " << out->GetLocation();
1154 return 0;
1155 }
1156 DCHECK_OFFSET();
1157
1158 return true;
1159}
1160
1161bool OatWriter::WriteCode(OutputStream* out) {
1162 size_t header_size = oat_header_->GetHeaderSize();
1163 const size_t file_offset = oat_data_offset_;
1164 size_t relative_offset = oat_header_->GetExecutableOffset();
1165 DCHECK_OFFSET();
1166
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001167 relative_offset = WriteCode(out, file_offset, relative_offset);
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001168 if (relative_offset == 0) {
Ian Rogers3d504072014-03-01 09:16:49 -08001169 LOG(ERROR) << "Failed to write oat code to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001170 return false;
1171 }
1172
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001173 relative_offset = WriteCodeDexFiles(out, file_offset, relative_offset);
1174 if (relative_offset == 0) {
Ian Rogers3d504072014-03-01 09:16:49 -08001175 LOG(ERROR) << "Failed to write oat code for dex files to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001176 return false;
1177 }
1178
Vladimir Markof4da6752014-08-01 19:04:18 +01001179 const off_t oat_end_file_offset = out->Seek(0, kSeekCurrent);
1180 if (oat_end_file_offset == (off_t) -1) {
1181 LOG(ERROR) << "Failed to get oat end file offset in " << out->GetLocation();
1182 return false;
1183 }
1184
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001185 if (kIsDebugBuild) {
1186 uint32_t size_total = 0;
1187 #define DO_STAT(x) \
Anwar Ghuloum75a43f12013-08-13 17:22:14 -07001188 VLOG(compiler) << #x "=" << PrettySize(x) << " (" << x << "B)"; \
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001189 size_total += x;
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001190
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001191 DO_STAT(size_dex_file_alignment_);
1192 DO_STAT(size_executable_offset_alignment_);
1193 DO_STAT(size_oat_header_);
Andreas Gampe22f8e5c2014-07-09 11:38:21 -07001194 DO_STAT(size_oat_header_key_value_store_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001195 DO_STAT(size_dex_file_);
Ian Rogers848871b2013-08-05 10:56:33 -07001196 DO_STAT(size_interpreter_to_interpreter_bridge_);
1197 DO_STAT(size_interpreter_to_compiled_code_bridge_);
1198 DO_STAT(size_jni_dlsym_lookup_);
Andreas Gampe2da88232014-02-27 12:26:20 -08001199 DO_STAT(size_quick_generic_jni_trampoline_);
Jeff Hao88474b42013-10-23 16:24:40 -07001200 DO_STAT(size_quick_imt_conflict_trampoline_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001201 DO_STAT(size_quick_resolution_trampoline_);
Ian Rogers848871b2013-08-05 10:56:33 -07001202 DO_STAT(size_quick_to_interpreter_bridge_);
1203 DO_STAT(size_trampoline_alignment_);
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001204 DO_STAT(size_method_header_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001205 DO_STAT(size_code_);
1206 DO_STAT(size_code_alignment_);
Vladimir Markof4da6752014-08-01 19:04:18 +01001207 DO_STAT(size_relative_call_thunks_);
Vladimir Markoc74658b2015-03-31 10:26:41 +01001208 DO_STAT(size_misc_thunks_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001209 DO_STAT(size_mapping_table_);
1210 DO_STAT(size_vmap_table_);
1211 DO_STAT(size_gc_map_);
1212 DO_STAT(size_oat_dex_file_location_size_);
1213 DO_STAT(size_oat_dex_file_location_data_);
1214 DO_STAT(size_oat_dex_file_location_checksum_);
1215 DO_STAT(size_oat_dex_file_offset_);
1216 DO_STAT(size_oat_dex_file_methods_offsets_);
Brian Carlstromba150c32013-08-27 17:31:03 -07001217 DO_STAT(size_oat_class_type_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001218 DO_STAT(size_oat_class_status_);
Brian Carlstromba150c32013-08-27 17:31:03 -07001219 DO_STAT(size_oat_class_method_bitmaps_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001220 DO_STAT(size_oat_class_method_offsets_);
1221 #undef DO_STAT
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001222
Anwar Ghuloum75a43f12013-08-13 17:22:14 -07001223 VLOG(compiler) << "size_total=" << PrettySize(size_total) << " (" << size_total << "B)"; \
Vladimir Markof4da6752014-08-01 19:04:18 +01001224 CHECK_EQ(file_offset + size_total, static_cast<size_t>(oat_end_file_offset));
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001225 CHECK_EQ(size_, size_total);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001226 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001227
Vladimir Markof4da6752014-08-01 19:04:18 +01001228 CHECK_EQ(file_offset + size_, static_cast<size_t>(oat_end_file_offset));
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001229 CHECK_EQ(size_, relative_offset);
1230
Vladimir Markof4da6752014-08-01 19:04:18 +01001231 // Write the header now that the checksum is final.
1232 if (out->Seek(file_offset, kSeekSet) == (off_t) -1) {
1233 PLOG(ERROR) << "Failed to seek to oat header position in " << out->GetLocation();
1234 return false;
1235 }
David Srbeckybc90fd02015-04-22 19:40:27 +01001236 DCHECK_EQ(file_offset, static_cast<size_t>(out->Seek(0, kSeekCurrent)));
Vladimir Markof4da6752014-08-01 19:04:18 +01001237 if (!out->WriteFully(oat_header_, header_size)) {
1238 PLOG(ERROR) << "Failed to write oat header to " << out->GetLocation();
1239 return false;
1240 }
1241 if (out->Seek(oat_end_file_offset, kSeekSet) == (off_t) -1) {
1242 PLOG(ERROR) << "Failed to seek to end after writing oat header to " << out->GetLocation();
1243 return false;
1244 }
1245 DCHECK_EQ(oat_end_file_offset, out->Seek(0, kSeekCurrent));
1246
Brian Carlstrome24fa612011-09-29 00:53:55 -07001247 return true;
1248}
1249
Ian Rogers3d504072014-03-01 09:16:49 -08001250bool OatWriter::WriteTables(OutputStream* out, const size_t file_offset) {
Brian Carlstrome24fa612011-09-29 00:53:55 -07001251 for (size_t i = 0; i != oat_dex_files_.size(); ++i) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001252 if (!oat_dex_files_[i]->Write(this, out, file_offset)) {
Ian Rogers3d504072014-03-01 09:16:49 -08001253 PLOG(ERROR) << "Failed to write oat dex information to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001254 return false;
1255 }
1256 }
Brian Carlstrom89521892011-12-07 22:05:07 -08001257 for (size_t i = 0; i != oat_dex_files_.size(); ++i) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001258 uint32_t expected_offset = file_offset + oat_dex_files_[i]->dex_file_offset_;
Ian Rogers3d504072014-03-01 09:16:49 -08001259 off_t actual_offset = out->Seek(expected_offset, kSeekSet);
Brian Carlstrom89521892011-12-07 22:05:07 -08001260 if (static_cast<uint32_t>(actual_offset) != expected_offset) {
1261 const DexFile* dex_file = (*dex_files_)[i];
1262 PLOG(ERROR) << "Failed to seek to dex file section. Actual: " << actual_offset
1263 << " Expected: " << expected_offset << " File: " << dex_file->GetLocation();
1264 return false;
1265 }
1266 const DexFile* dex_file = (*dex_files_)[i];
Ian Rogers3d504072014-03-01 09:16:49 -08001267 if (!out->WriteFully(&dex_file->GetHeader(), dex_file->GetHeader().file_size_)) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001268 PLOG(ERROR) << "Failed to write dex file " << dex_file->GetLocation()
Ian Rogers3d504072014-03-01 09:16:49 -08001269 << " to " << out->GetLocation();
Brian Carlstrom89521892011-12-07 22:05:07 -08001270 return false;
1271 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001272 size_dex_file_ += dex_file->GetHeader().file_size_;
Brian Carlstrom89521892011-12-07 22:05:07 -08001273 }
Brian Carlstrom389efb02012-01-11 12:06:26 -08001274 for (size_t i = 0; i != oat_classes_.size(); ++i) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001275 if (!oat_classes_[i]->Write(this, out, file_offset)) {
Ian Rogers3d504072014-03-01 09:16:49 -08001276 PLOG(ERROR) << "Failed to write oat methods information to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001277 return false;
1278 }
1279 }
1280 return true;
1281}
1282
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001283size_t OatWriter::WriteMaps(OutputStream* out, const size_t file_offset, size_t relative_offset) {
1284 #define VISIT(VisitorType) \
1285 do { \
1286 VisitorType visitor(this, out, file_offset, relative_offset); \
1287 if (UNLIKELY(!VisitDexMethods(&visitor))) { \
1288 return 0; \
1289 } \
1290 relative_offset = visitor.GetOffset(); \
1291 } while (false)
1292
1293 size_t gc_maps_offset = relative_offset;
1294 VISIT(WriteMapMethodVisitor<GcMapDataAccess>);
1295 size_gc_map_ = relative_offset - gc_maps_offset;
1296
1297 size_t mapping_tables_offset = relative_offset;
1298 VISIT(WriteMapMethodVisitor<MappingTableDataAccess>);
1299 size_mapping_table_ = relative_offset - mapping_tables_offset;
1300
1301 size_t vmap_tables_offset = relative_offset;
1302 VISIT(WriteMapMethodVisitor<VmapTableDataAccess>);
1303 size_vmap_table_ = relative_offset - vmap_tables_offset;
1304
1305 #undef VISIT
1306
1307 return relative_offset;
1308}
1309
1310size_t OatWriter::WriteCode(OutputStream* out, const size_t file_offset, size_t relative_offset) {
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001311 if (compiler_driver_->IsImage()) {
1312 InstructionSet instruction_set = compiler_driver_->GetInstructionSet();
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001313
Ian Rogers848871b2013-08-05 10:56:33 -07001314 #define DO_TRAMPOLINE(field) \
1315 do { \
1316 uint32_t aligned_offset = CompiledCode::AlignCode(relative_offset, instruction_set); \
1317 uint32_t alignment_padding = aligned_offset - relative_offset; \
Ian Rogers3d504072014-03-01 09:16:49 -08001318 out->Seek(alignment_padding, kSeekCurrent); \
Ian Rogers848871b2013-08-05 10:56:33 -07001319 size_trampoline_alignment_ += alignment_padding; \
Ian Rogers3d504072014-03-01 09:16:49 -08001320 if (!out->WriteFully(&(*field)[0], field->size())) { \
1321 PLOG(ERROR) << "Failed to write " # field " to " << out->GetLocation(); \
Ian Rogers848871b2013-08-05 10:56:33 -07001322 return false; \
1323 } \
1324 size_ ## field += field->size(); \
1325 relative_offset += alignment_padding + field->size(); \
1326 DCHECK_OFFSET(); \
1327 } while (false)
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001328
Ian Rogers848871b2013-08-05 10:56:33 -07001329 DO_TRAMPOLINE(interpreter_to_interpreter_bridge_);
1330 DO_TRAMPOLINE(interpreter_to_compiled_code_bridge_);
1331 DO_TRAMPOLINE(jni_dlsym_lookup_);
Andreas Gampe2da88232014-02-27 12:26:20 -08001332 DO_TRAMPOLINE(quick_generic_jni_trampoline_);
Jeff Hao88474b42013-10-23 16:24:40 -07001333 DO_TRAMPOLINE(quick_imt_conflict_trampoline_);
Ian Rogers848871b2013-08-05 10:56:33 -07001334 DO_TRAMPOLINE(quick_resolution_trampoline_);
1335 DO_TRAMPOLINE(quick_to_interpreter_bridge_);
1336 #undef DO_TRAMPOLINE
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001337 }
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001338 return relative_offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001339}
1340
Ian Rogers3d504072014-03-01 09:16:49 -08001341size_t OatWriter::WriteCodeDexFiles(OutputStream* out,
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001342 const size_t file_offset,
1343 size_t relative_offset) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001344 #define VISIT(VisitorType) \
1345 do { \
1346 VisitorType visitor(this, out, file_offset, relative_offset); \
1347 if (UNLIKELY(!VisitDexMethods(&visitor))) { \
1348 return 0; \
1349 } \
1350 relative_offset = visitor.GetOffset(); \
1351 } while (false)
Brian Carlstrome24fa612011-09-29 00:53:55 -07001352
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001353 VISIT(WriteCodeMethodVisitor);
Brian Carlstrome24fa612011-09-29 00:53:55 -07001354
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001355 #undef VISIT
Brian Carlstrom265091e2013-01-30 14:08:26 -08001356
Vladimir Markob163bb72015-03-31 21:49:49 +01001357 size_code_alignment_ += relative_patcher_->CodeAlignmentSize();
1358 size_relative_call_thunks_ += relative_patcher_->RelativeCallThunksSize();
1359 size_misc_thunks_ += relative_patcher_->MiscThunksSize();
1360
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001361 return relative_offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001362}
1363
Vladimir Markof4da6752014-08-01 19:04:18 +01001364bool OatWriter::WriteCodeAlignment(OutputStream* out, uint32_t aligned_code_delta) {
1365 static const uint8_t kPadding[] = {
1366 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u
1367 };
1368 DCHECK_LE(aligned_code_delta, sizeof(kPadding));
1369 if (UNLIKELY(!out->WriteFully(kPadding, aligned_code_delta))) {
1370 return false;
1371 }
1372 size_code_alignment_ += aligned_code_delta;
1373 return true;
1374}
1375
Vladimir Markob163bb72015-03-31 21:49:49 +01001376std::pair<bool, uint32_t> OatWriter::MethodOffsetMap::FindMethodOffset(MethodReference ref) {
1377 auto it = map.find(ref);
1378 if (it == map.end()) {
1379 return std::pair<bool, uint32_t>(false, 0u);
1380 } else {
1381 return std::pair<bool, uint32_t>(true, it->second);
1382 }
1383}
1384
Brian Carlstrom265091e2013-01-30 14:08:26 -08001385OatWriter::OatDexFile::OatDexFile(size_t offset, const DexFile& dex_file) {
1386 offset_ = offset;
Elliott Hughes95572412011-12-13 18:14:20 -08001387 const std::string& location(dex_file.GetLocation());
Brian Carlstrome24fa612011-09-29 00:53:55 -07001388 dex_file_location_size_ = location.size();
1389 dex_file_location_data_ = reinterpret_cast<const uint8_t*>(location.data());
Brian Carlstrom5b332c82012-02-01 15:02:31 -08001390 dex_file_location_checksum_ = dex_file.GetLocationChecksum();
Brian Carlstrom89521892011-12-07 22:05:07 -08001391 dex_file_offset_ = 0;
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -08001392 methods_offsets_.resize(dex_file.NumClassDefs());
Brian Carlstrome24fa612011-09-29 00:53:55 -07001393}
1394
1395size_t OatWriter::OatDexFile::SizeOf() const {
1396 return sizeof(dex_file_location_size_)
1397 + dex_file_location_size_
Brian Carlstrom5b332c82012-02-01 15:02:31 -08001398 + sizeof(dex_file_location_checksum_)
Brian Carlstrom89521892011-12-07 22:05:07 -08001399 + sizeof(dex_file_offset_)
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -08001400 + (sizeof(methods_offsets_[0]) * methods_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -07001401}
1402
Ian Rogers3d504072014-03-01 09:16:49 -08001403void OatWriter::OatDexFile::UpdateChecksum(OatHeader* oat_header) const {
1404 oat_header->UpdateChecksum(&dex_file_location_size_, sizeof(dex_file_location_size_));
1405 oat_header->UpdateChecksum(dex_file_location_data_, dex_file_location_size_);
1406 oat_header->UpdateChecksum(&dex_file_location_checksum_, sizeof(dex_file_location_checksum_));
1407 oat_header->UpdateChecksum(&dex_file_offset_, sizeof(dex_file_offset_));
1408 oat_header->UpdateChecksum(&methods_offsets_[0],
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -08001409 sizeof(methods_offsets_[0]) * methods_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -07001410}
1411
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001412bool OatWriter::OatDexFile::Write(OatWriter* oat_writer,
Ian Rogers3d504072014-03-01 09:16:49 -08001413 OutputStream* out,
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001414 const size_t file_offset) const {
Brian Carlstrom265091e2013-01-30 14:08:26 -08001415 DCHECK_OFFSET_();
Ian Rogers3d504072014-03-01 09:16:49 -08001416 if (!out->WriteFully(&dex_file_location_size_, sizeof(dex_file_location_size_))) {
1417 PLOG(ERROR) << "Failed to write dex file location length to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001418 return false;
1419 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001420 oat_writer->size_oat_dex_file_location_size_ += sizeof(dex_file_location_size_);
Ian Rogers3d504072014-03-01 09:16:49 -08001421 if (!out->WriteFully(dex_file_location_data_, dex_file_location_size_)) {
1422 PLOG(ERROR) << "Failed to write dex file location data to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001423 return false;
1424 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001425 oat_writer->size_oat_dex_file_location_data_ += dex_file_location_size_;
Ian Rogers3d504072014-03-01 09:16:49 -08001426 if (!out->WriteFully(&dex_file_location_checksum_, sizeof(dex_file_location_checksum_))) {
1427 PLOG(ERROR) << "Failed to write dex file location checksum to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001428 return false;
1429 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001430 oat_writer->size_oat_dex_file_location_checksum_ += sizeof(dex_file_location_checksum_);
Ian Rogers3d504072014-03-01 09:16:49 -08001431 if (!out->WriteFully(&dex_file_offset_, sizeof(dex_file_offset_))) {
1432 PLOG(ERROR) << "Failed to write dex file offset to " << out->GetLocation();
Brian Carlstrom89521892011-12-07 22:05:07 -08001433 return false;
1434 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001435 oat_writer->size_oat_dex_file_offset_ += sizeof(dex_file_offset_);
Ian Rogers3d504072014-03-01 09:16:49 -08001436 if (!out->WriteFully(&methods_offsets_[0],
Brian Carlstromcd60ac72013-01-20 17:09:51 -08001437 sizeof(methods_offsets_[0]) * methods_offsets_.size())) {
Ian Rogers3d504072014-03-01 09:16:49 -08001438 PLOG(ERROR) << "Failed to write methods offsets to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001439 return false;
1440 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001441 oat_writer->size_oat_dex_file_methods_offsets_ +=
1442 sizeof(methods_offsets_[0]) * methods_offsets_.size();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001443 return true;
1444}
1445
Brian Carlstromba150c32013-08-27 17:31:03 -07001446OatWriter::OatClass::OatClass(size_t offset,
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001447 const std::vector<CompiledMethod*>& compiled_methods,
Brian Carlstromba150c32013-08-27 17:31:03 -07001448 uint32_t num_non_null_compiled_methods,
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001449 mirror::Class::Status status)
1450 : compiled_methods_(compiled_methods) {
1451 uint32_t num_methods = compiled_methods.size();
Brian Carlstromba150c32013-08-27 17:31:03 -07001452 CHECK_LE(num_non_null_compiled_methods, num_methods);
1453
Brian Carlstrom265091e2013-01-30 14:08:26 -08001454 offset_ = offset;
Brian Carlstromba150c32013-08-27 17:31:03 -07001455 oat_method_offsets_offsets_from_oat_class_.resize(num_methods);
1456
1457 // Since both kOatClassNoneCompiled and kOatClassAllCompiled could
1458 // apply when there are 0 methods, we just arbitrarily say that 0
1459 // methods means kOatClassNoneCompiled and that we won't use
1460 // kOatClassAllCompiled unless there is at least one compiled
1461 // method. This means in an interpretter only system, we can assert
1462 // that all classes are kOatClassNoneCompiled.
1463 if (num_non_null_compiled_methods == 0) {
1464 type_ = kOatClassNoneCompiled;
1465 } else if (num_non_null_compiled_methods == num_methods) {
1466 type_ = kOatClassAllCompiled;
1467 } else {
1468 type_ = kOatClassSomeCompiled;
1469 }
1470
Brian Carlstrom0755ec52012-01-11 15:19:46 -08001471 status_ = status;
Brian Carlstromba150c32013-08-27 17:31:03 -07001472 method_offsets_.resize(num_non_null_compiled_methods);
Vladimir Marko8a630572014-04-09 18:45:35 +01001473 method_headers_.resize(num_non_null_compiled_methods);
Brian Carlstromba150c32013-08-27 17:31:03 -07001474
1475 uint32_t oat_method_offsets_offset_from_oat_class = sizeof(type_) + sizeof(status_);
1476 if (type_ == kOatClassSomeCompiled) {
1477 method_bitmap_ = new BitVector(num_methods, false, Allocator::GetMallocAllocator());
1478 method_bitmap_size_ = method_bitmap_->GetSizeOf();
1479 oat_method_offsets_offset_from_oat_class += sizeof(method_bitmap_size_);
1480 oat_method_offsets_offset_from_oat_class += method_bitmap_size_;
1481 } else {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001482 method_bitmap_ = nullptr;
Brian Carlstromba150c32013-08-27 17:31:03 -07001483 method_bitmap_size_ = 0;
1484 }
1485
1486 for (size_t i = 0; i < num_methods; i++) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001487 CompiledMethod* compiled_method = compiled_methods_[i];
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001488 if (compiled_method == nullptr) {
Brian Carlstromba150c32013-08-27 17:31:03 -07001489 oat_method_offsets_offsets_from_oat_class_[i] = 0;
1490 } else {
1491 oat_method_offsets_offsets_from_oat_class_[i] = oat_method_offsets_offset_from_oat_class;
1492 oat_method_offsets_offset_from_oat_class += sizeof(OatMethodOffsets);
1493 if (type_ == kOatClassSomeCompiled) {
1494 method_bitmap_->SetBit(i);
1495 }
1496 }
1497 }
Brian Carlstrome24fa612011-09-29 00:53:55 -07001498}
1499
Brian Carlstromba150c32013-08-27 17:31:03 -07001500OatWriter::OatClass::~OatClass() {
Mathieu Chartier661974a2014-01-09 11:23:53 -08001501 delete method_bitmap_;
Brian Carlstromba150c32013-08-27 17:31:03 -07001502}
1503
Brian Carlstrom265091e2013-01-30 14:08:26 -08001504size_t OatWriter::OatClass::GetOatMethodOffsetsOffsetFromOatHeader(
1505 size_t class_def_method_index_) const {
Brian Carlstromba150c32013-08-27 17:31:03 -07001506 uint32_t method_offset = GetOatMethodOffsetsOffsetFromOatClass(class_def_method_index_);
1507 if (method_offset == 0) {
1508 return 0;
1509 }
1510 return offset_ + method_offset;
Brian Carlstrom265091e2013-01-30 14:08:26 -08001511}
1512
1513size_t OatWriter::OatClass::GetOatMethodOffsetsOffsetFromOatClass(
1514 size_t class_def_method_index_) const {
Brian Carlstromba150c32013-08-27 17:31:03 -07001515 return oat_method_offsets_offsets_from_oat_class_[class_def_method_index_];
Brian Carlstrom265091e2013-01-30 14:08:26 -08001516}
1517
1518size_t OatWriter::OatClass::SizeOf() const {
Brian Carlstromba150c32013-08-27 17:31:03 -07001519 return sizeof(status_)
1520 + sizeof(type_)
1521 + ((method_bitmap_size_ == 0) ? 0 : sizeof(method_bitmap_size_))
1522 + method_bitmap_size_
1523 + (sizeof(method_offsets_[0]) * method_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -07001524}
1525
Ian Rogers3d504072014-03-01 09:16:49 -08001526void OatWriter::OatClass::UpdateChecksum(OatHeader* oat_header) const {
1527 oat_header->UpdateChecksum(&status_, sizeof(status_));
1528 oat_header->UpdateChecksum(&type_, sizeof(type_));
Brian Carlstromba150c32013-08-27 17:31:03 -07001529 if (method_bitmap_size_ != 0) {
1530 CHECK_EQ(kOatClassSomeCompiled, type_);
Ian Rogers3d504072014-03-01 09:16:49 -08001531 oat_header->UpdateChecksum(&method_bitmap_size_, sizeof(method_bitmap_size_));
1532 oat_header->UpdateChecksum(method_bitmap_->GetRawStorage(), method_bitmap_size_);
Brian Carlstromba150c32013-08-27 17:31:03 -07001533 }
Ian Rogers3d504072014-03-01 09:16:49 -08001534 oat_header->UpdateChecksum(&method_offsets_[0],
1535 sizeof(method_offsets_[0]) * method_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -07001536}
1537
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001538bool OatWriter::OatClass::Write(OatWriter* oat_writer,
Ian Rogers3d504072014-03-01 09:16:49 -08001539 OutputStream* out,
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001540 const size_t file_offset) const {
Brian Carlstrom265091e2013-01-30 14:08:26 -08001541 DCHECK_OFFSET_();
Ian Rogers3d504072014-03-01 09:16:49 -08001542 if (!out->WriteFully(&status_, sizeof(status_))) {
1543 PLOG(ERROR) << "Failed to write class status to " << out->GetLocation();
Brian Carlstrom0755ec52012-01-11 15:19:46 -08001544 return false;
1545 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001546 oat_writer->size_oat_class_status_ += sizeof(status_);
Ian Rogers3d504072014-03-01 09:16:49 -08001547 if (!out->WriteFully(&type_, sizeof(type_))) {
1548 PLOG(ERROR) << "Failed to write oat class type to " << out->GetLocation();
Brian Carlstromba150c32013-08-27 17:31:03 -07001549 return false;
1550 }
1551 oat_writer->size_oat_class_type_ += sizeof(type_);
1552 if (method_bitmap_size_ != 0) {
1553 CHECK_EQ(kOatClassSomeCompiled, type_);
Ian Rogers3d504072014-03-01 09:16:49 -08001554 if (!out->WriteFully(&method_bitmap_size_, sizeof(method_bitmap_size_))) {
1555 PLOG(ERROR) << "Failed to write method bitmap size to " << out->GetLocation();
Brian Carlstromba150c32013-08-27 17:31:03 -07001556 return false;
1557 }
1558 oat_writer->size_oat_class_method_bitmaps_ += sizeof(method_bitmap_size_);
Ian Rogers3d504072014-03-01 09:16:49 -08001559 if (!out->WriteFully(method_bitmap_->GetRawStorage(), method_bitmap_size_)) {
1560 PLOG(ERROR) << "Failed to write method bitmap to " << out->GetLocation();
Brian Carlstromba150c32013-08-27 17:31:03 -07001561 return false;
1562 }
1563 oat_writer->size_oat_class_method_bitmaps_ += method_bitmap_size_;
1564 }
Ian Rogers3d504072014-03-01 09:16:49 -08001565 if (!out->WriteFully(&method_offsets_[0],
Brian Carlstromcd60ac72013-01-20 17:09:51 -08001566 sizeof(method_offsets_[0]) * method_offsets_.size())) {
Ian Rogers3d504072014-03-01 09:16:49 -08001567 PLOG(ERROR) << "Failed to write method offsets to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001568 return false;
1569 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001570 oat_writer->size_oat_class_method_offsets_ += sizeof(method_offsets_[0]) * method_offsets_.size();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001571 return true;
1572}
1573
Brian Carlstrome24fa612011-09-29 00:53:55 -07001574} // namespace art