blob: 64e748776d93a64edd93e66b60232030c779f23a [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Brian Carlstrome24fa612011-09-29 00:53:55 -070016
17#include "oat_writer.h"
18
Elliott Hughesa0e18062012-04-13 15:59:59 -070019#include <zlib.h>
20
Vladimir Markoc74658b2015-03-31 10:26:41 +010021#include "arch/arm64/instruction_set_features_arm64.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070022#include "art_method-inl.h"
Ian Rogerse77493c2014-08-20 15:08:45 -070023#include "base/allocator.h"
Brian Carlstromba150c32013-08-27 17:31:03 -070024#include "base/bit_vector.h"
Elliott Hughes1aa246d2012-12-13 09:29:36 -080025#include "base/stl_util.h"
Elliott Hughes76160052012-12-12 16:31:20 -080026#include "base/unix_file/fd_file.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070027#include "class_linker.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070028#include "compiled_class.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000029#include "compiled_method.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070030#include "dex_file-inl.h"
Vladimir Markoc7f83202014-01-24 17:55:18 +000031#include "dex/verification_results.h"
Vladimir Marko20f85592015-03-19 10:07:02 +000032#include "driver/compiler_driver.h"
33#include "driver/compiler_options.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070034#include "gc/space/space.h"
Vladimir Markof4da6752014-08-01 19:04:18 +010035#include "image_writer.h"
Vladimir Markob163bb72015-03-31 21:49:49 +010036#include "linker/relative_patcher.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)
Mathieu Chartier90443472015-07-16 20:32:27 -0700368 SHARED_REQUIRES(Locks::mutator_lock_) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100369 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();
Nicolas Geoffrayed6195a2015-07-13 17:02:30 +0000377 uint32_t code_size = quick_code->size() * sizeof(uint8_t);
Elliott Hughes956af0f2014-12-11 14:34:28 -0800378 uint32_t thumb_offset = compiled_method->CodeDelta();
Elliott Hughes956af0f2014-12-11 14:34:28 -0800379
David Srbecky009e2a62015-04-15 02:46:30 +0100380 // Deduplicate code arrays if we are not producing debuggable code.
Vladimir Markoc74658b2015-03-31 10:26:41 +0100381 bool deduped = false;
Nicolas Geoffrayed6195a2015-07-13 17:02:30 +0000382 if (debuggable_) {
383 quick_code_offset = NewQuickCodeOffset(compiled_method, it, thumb_offset);
384 } else {
385 auto lb = dedupe_map_.lower_bound(compiled_method);
386 if (lb != dedupe_map_.end() && !dedupe_map_.key_comp()(compiled_method, lb->first)) {
387 quick_code_offset = lb->second;
388 deduped = true;
Nicolas Geoffrayf0758792015-07-13 11:56:00 +0000389 } else {
Nicolas Geoffrayed6195a2015-07-13 17:02:30 +0000390 quick_code_offset = NewQuickCodeOffset(compiled_method, it, thumb_offset);
391 dedupe_map_.PutBefore(lb, compiled_method, quick_code_offset);
David Srbecky009e2a62015-04-15 02:46:30 +0100392 }
Elliott Hughes956af0f2014-12-11 14:34:28 -0800393 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100394
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100395 if (code_size != 0) {
396 MethodReference method_ref(dex_file_, it.GetMemberIndex());
397 auto method_lb = writer_->method_offset_map_.map.lower_bound(method_ref);
398 if (method_lb != writer_->method_offset_map_.map.end() &&
399 !writer_->method_offset_map_.map.key_comp()(method_ref, method_lb->first)) {
400 // TODO: Should this be a hard failure?
401 LOG(WARNING) << "Multiple definitions of "
402 << PrettyMethod(method_ref.dex_method_index, *method_ref.dex_file)
403 << ((method_lb->second != quick_code_offset) ? "; OFFSET MISMATCH" : "");
404 } else {
405 writer_->method_offset_map_.map.PutBefore(method_lb, method_ref, quick_code_offset);
406 }
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_;
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100414 // If we don't have quick code, then we must have a vmap, as that is how the dex2dex
415 // compiler records its transformations.
416 DCHECK(quick_code != nullptr || vmap_table_offset != 0);
Elliott Hughes956af0f2014-12-11 14:34:28 -0800417 uint32_t gc_map_offset = method_header->gc_map_offset_;
418 // The code offset was 0 when the mapping/vmap table offset was set, so it's set
419 // to 0-offset and we need to adjust it by code_offset.
420 uint32_t code_offset = quick_code_offset - thumb_offset;
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100421 if (mapping_table_offset != 0u && code_offset != 0u) {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800422 mapping_table_offset += code_offset;
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100423 DCHECK_LT(mapping_table_offset, code_offset) << "Overflow in oat offsets";
Elliott Hughes956af0f2014-12-11 14:34:28 -0800424 }
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100425 if (vmap_table_offset != 0u && code_offset != 0u) {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800426 vmap_table_offset += code_offset;
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100427 DCHECK_LT(vmap_table_offset, code_offset) << "Overflow in oat offsets";
Elliott Hughes956af0f2014-12-11 14:34:28 -0800428 }
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100429 if (gc_map_offset != 0u && code_offset != 0u) {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800430 gc_map_offset += code_offset;
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100431 DCHECK_LT(gc_map_offset, code_offset) << "Overflow in oat offsets";
Elliott Hughes956af0f2014-12-11 14:34:28 -0800432 }
433 uint32_t frame_size_in_bytes = compiled_method->GetFrameSizeInBytes();
434 uint32_t core_spill_mask = compiled_method->GetCoreSpillMask();
435 uint32_t fp_spill_mask = compiled_method->GetFpSpillMask();
436 *method_header = OatQuickMethodHeader(mapping_table_offset, vmap_table_offset,
437 gc_map_offset, frame_size_in_bytes, core_spill_mask,
438 fp_spill_mask, code_size);
Vladimir Marko7624d252014-05-02 14:40:15 +0100439
Nicolas Geoffrayed6195a2015-07-13 17:02:30 +0000440 if (!deduped) {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800441 // Update offsets. (Checksum is updated when writing.)
442 offset_ += sizeof(*method_header); // Method header is prepended before code.
443 offset_ += code_size;
444 // Record absolute patch locations.
445 if (!compiled_method->GetPatches().empty()) {
446 uintptr_t base_loc = offset_ - code_size - writer_->oat_header_->GetExecutableOffset();
447 for (const LinkerPatch& patch : compiled_method->GetPatches()) {
Vladimir Marko20f85592015-03-19 10:07:02 +0000448 if (!patch.IsPcRelative()) {
David Srbeckyf8980872015-05-22 17:04:47 +0100449 writer_->absolute_patch_locations_.push_back(base_loc + patch.LiteralOffset());
Vladimir Markof4da6752014-08-01 19:04:18 +0100450 }
451 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100452 }
Elliott Hughes956af0f2014-12-11 14:34:28 -0800453 }
Alex Light78382fa2014-06-06 15:45:32 -0700454
David Srbecky8363c772015-05-28 16:12:43 +0100455 if (writer_->compiler_driver_->GetCompilerOptions().GetGenerateDebugInfo()) {
Elliott Hughes956af0f2014-12-11 14:34:28 -0800456 // Record debug information for this function if we are doing that.
Elliott Hughes956af0f2014-12-11 14:34:28 -0800457 const uint32_t quick_code_start = quick_code_offset -
David Srbecky6f715892015-03-30 14:21:42 +0100458 writer_->oat_header_->GetExecutableOffset() - thumb_offset;
David Srbecky0df9e1f2015-04-07 19:02:58 +0100459 writer_->method_info_.push_back(DebugInfo {
460 dex_file_,
461 class_def_index_,
462 it.GetMemberIndex(),
463 it.GetMethodAccessFlags(),
464 it.GetMethodCodeItem(),
465 deduped,
466 quick_code_start,
467 quick_code_start + code_size,
468 compiled_method});
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100469 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100470
471 if (kIsDebugBuild) {
472 // We expect GC maps except when the class hasn't been verified or the method is native.
473 const CompilerDriver* compiler_driver = writer_->compiler_driver_;
474 ClassReference class_ref(dex_file_, class_def_index_);
475 CompiledClass* compiled_class = compiler_driver->GetCompiledClass(class_ref);
476 mirror::Class::Status status;
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700477 if (compiled_class != nullptr) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100478 status = compiled_class->GetStatus();
479 } else if (compiler_driver->GetVerificationResults()->IsClassRejected(class_ref)) {
480 status = mirror::Class::kStatusError;
481 } else {
482 status = mirror::Class::kStatusNotReady;
483 }
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800484 const SwapVector<uint8_t>* gc_map = compiled_method->GetGcMap();
Nicolas Geoffray39468442014-09-02 15:17:15 +0100485 if (gc_map != nullptr) {
486 size_t gc_map_size = gc_map->size() * sizeof(gc_map[0]);
Andreas Gampe51829322014-08-25 15:05:04 -0700487 bool is_native = it.MemberIsNative();
Nicolas Geoffray39468442014-09-02 15:17:15 +0100488 CHECK(gc_map_size != 0 || is_native || status < mirror::Class::kStatusVerified)
489 << gc_map << " " << gc_map_size << " " << (is_native ? "true" : "false") << " "
490 << (status < mirror::Class::kStatusVerified) << " " << status << " "
491 << PrettyMethod(it.GetMemberIndex(), *dex_file_);
492 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100493 }
494
495 DCHECK_LT(method_offsets_index_, oat_class->method_offsets_.size());
496 OatMethodOffsets* offsets = &oat_class->method_offsets_[method_offsets_index_];
497 offsets->code_offset_ = quick_code_offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100498 ++method_offsets_index_;
499 }
500
501 return true;
502 }
503
504 private:
Vladimir Marko20f85592015-03-19 10:07:02 +0000505 struct CodeOffsetsKeyComparator {
506 bool operator()(const CompiledMethod* lhs, const CompiledMethod* rhs) const {
507 if (lhs->GetQuickCode() != rhs->GetQuickCode()) {
508 return lhs->GetQuickCode() < rhs->GetQuickCode();
509 }
510 // If the code is the same, all other fields are likely to be the same as well.
511 if (UNLIKELY(lhs->GetMappingTable() != rhs->GetMappingTable())) {
512 return lhs->GetMappingTable() < rhs->GetMappingTable();
513 }
514 if (UNLIKELY(lhs->GetVmapTable() != rhs->GetVmapTable())) {
515 return lhs->GetVmapTable() < rhs->GetVmapTable();
516 }
517 if (UNLIKELY(lhs->GetGcMap() != rhs->GetGcMap())) {
518 return lhs->GetGcMap() < rhs->GetGcMap();
519 }
520 const auto& lhs_patches = lhs->GetPatches();
521 const auto& rhs_patches = rhs->GetPatches();
522 if (UNLIKELY(lhs_patches.size() != rhs_patches.size())) {
523 return lhs_patches.size() < rhs_patches.size();
524 }
525 auto rit = rhs_patches.begin();
526 for (const LinkerPatch& lpatch : lhs_patches) {
527 if (UNLIKELY(!(lpatch == *rit))) {
528 return lpatch < *rit;
529 }
530 ++rit;
531 }
532 return false;
533 }
534 };
535
David Srbecky009e2a62015-04-15 02:46:30 +0100536 uint32_t NewQuickCodeOffset(CompiledMethod* compiled_method,
537 const ClassDataItemIterator& it,
538 uint32_t thumb_offset) {
539 offset_ = writer_->relative_patcher_->ReserveSpace(
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100540 offset_, compiled_method, MethodReference(dex_file_, it.GetMemberIndex()));
David Srbecky009e2a62015-04-15 02:46:30 +0100541 offset_ = compiled_method->AlignCode(offset_);
542 DCHECK_ALIGNED_PARAM(offset_,
543 GetInstructionSetAlignment(compiled_method->GetInstructionSet()));
544 return offset_ + sizeof(OatQuickMethodHeader) + thumb_offset;
545 }
546
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100547 // Deduplication is already done on a pointer basis by the compiler driver,
548 // so we can simply compare the pointers to find out if things are duplicated.
Vladimir Marko8a630572014-04-09 18:45:35 +0100549 SafeMap<const CompiledMethod*, uint32_t, CodeOffsetsKeyComparator> dedupe_map_;
David Srbecky2f6cdb02015-04-11 00:17:53 +0100550
David Srbecky009e2a62015-04-15 02:46:30 +0100551 // Cache of compiler's --debuggable option.
552 const bool debuggable_;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100553};
554
555template <typename DataAccess>
556class OatWriter::InitMapMethodVisitor : public OatDexMethodVisitor {
557 public:
558 InitMapMethodVisitor(OatWriter* writer, size_t offset)
559 : OatDexMethodVisitor(writer, offset) {
560 }
561
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700562 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it ATTRIBUTE_UNUSED)
Mathieu Chartier90443472015-07-16 20:32:27 -0700563 SHARED_REQUIRES(Locks::mutator_lock_) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100564 OatClass* oat_class = writer_->oat_classes_[oat_class_index_];
565 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index);
566
567 if (compiled_method != nullptr) {
568 DCHECK_LT(method_offsets_index_, oat_class->method_offsets_.size());
569 DCHECK_EQ(DataAccess::GetOffset(oat_class, method_offsets_index_), 0u);
570
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800571 const SwapVector<uint8_t>* map = DataAccess::GetData(compiled_method);
Nicolas Geoffray39468442014-09-02 15:17:15 +0100572 uint32_t map_size = map == nullptr ? 0 : map->size() * sizeof((*map)[0]);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100573 if (map_size != 0u) {
Vladimir Markobd72fc12014-07-09 16:06:40 +0100574 auto lb = dedupe_map_.lower_bound(map);
575 if (lb != dedupe_map_.end() && !dedupe_map_.key_comp()(map, lb->first)) {
576 DataAccess::SetOffset(oat_class, method_offsets_index_, lb->second);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100577 } else {
578 DataAccess::SetOffset(oat_class, method_offsets_index_, offset_);
Vladimir Markobd72fc12014-07-09 16:06:40 +0100579 dedupe_map_.PutBefore(lb, map, offset_);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100580 offset_ += map_size;
581 writer_->oat_header_->UpdateChecksum(&(*map)[0], map_size);
582 }
583 }
584 ++method_offsets_index_;
585 }
586
587 return true;
588 }
589
590 private:
591 // Deduplication is already done on a pointer basis by the compiler driver,
592 // so we can simply compare the pointers to find out if things are duplicated.
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800593 SafeMap<const SwapVector<uint8_t>*, uint32_t> dedupe_map_;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100594};
595
596class OatWriter::InitImageMethodVisitor : public OatDexMethodVisitor {
597 public:
598 InitImageMethodVisitor(OatWriter* writer, size_t offset)
Jeff Haoc7d11882015-02-03 15:08:39 -0800599 : OatDexMethodVisitor(writer, offset),
600 pointer_size_(GetInstructionSetPointerSize(writer_->compiler_driver_->GetInstructionSet())) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100601 }
602
603 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it)
Mathieu Chartier90443472015-07-16 20:32:27 -0700604 SHARED_REQUIRES(Locks::mutator_lock_) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100605 OatClass* oat_class = writer_->oat_classes_[oat_class_index_];
606 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index);
607
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800608 OatMethodOffsets offsets(0u);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100609 if (compiled_method != nullptr) {
610 DCHECK_LT(method_offsets_index_, oat_class->method_offsets_.size());
611 offsets = oat_class->method_offsets_[method_offsets_index_];
612 ++method_offsets_index_;
613 }
614
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100615 ClassLinker* linker = Runtime::Current()->GetClassLinker();
616 InvokeType invoke_type = it.GetMethodInvokeType(dex_file_->GetClassDef(class_def_index_));
617 // Unchecked as we hold mutator_lock_ on entry.
618 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800619 StackHandleScope<1> hs(soa.Self());
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700620 Handle<mirror::DexCache> dex_cache(hs.NewHandle(linker->FindDexCache(*dex_file_)));
Mathieu Chartiere401d142015-04-22 13:56:20 -0700621 ArtMethod* method = linker->ResolveMethod(
622 *dex_file_, it.GetMemberIndex(), dex_cache, NullHandle<mirror::ClassLoader>(), nullptr,
623 invoke_type);
Andreas Gamped9efea62014-07-21 22:56:08 -0700624 if (method == nullptr) {
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100625 LOG(INTERNAL_FATAL) << "Unexpected failure to resolve a method: "
626 << PrettyMethod(it.GetMemberIndex(), *dex_file_, true);
Andreas Gamped9efea62014-07-21 22:56:08 -0700627 soa.Self()->AssertPendingException();
Nicolas Geoffray14691c52015-03-05 10:40:17 +0000628 mirror::Throwable* exc = soa.Self()->GetException();
Andreas Gamped9efea62014-07-21 22:56:08 -0700629 std::string dump = exc->Dump();
630 LOG(FATAL) << dump;
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100631 UNREACHABLE();
Andreas Gamped9efea62014-07-21 22:56:08 -0700632 }
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100633
634 if (compiled_method != nullptr && compiled_method->GetQuickCode()->size() != 0) {
635 method->SetEntryPointFromQuickCompiledCodePtrSize(
636 reinterpret_cast<void*>(offsets.code_offset_), pointer_size_);
637 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100638
639 return true;
640 }
Jeff Haoc7d11882015-02-03 15:08:39 -0800641
642 protected:
643 const size_t pointer_size_;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100644};
645
646class OatWriter::WriteCodeMethodVisitor : public OatDexMethodVisitor {
647 public:
648 WriteCodeMethodVisitor(OatWriter* writer, OutputStream* out, const size_t file_offset,
Vladimir Markof4da6752014-08-01 19:04:18 +0100649 size_t relative_offset) SHARED_LOCK_FUNCTION(Locks::mutator_lock_)
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100650 : OatDexMethodVisitor(writer, relative_offset),
651 out_(out),
Vladimir Markof4da6752014-08-01 19:04:18 +0100652 file_offset_(file_offset),
Vladimir Marko7c2ad5a2014-09-24 12:42:55 +0100653 soa_(Thread::Current()),
654 no_thread_suspension_(soa_.Self(), "OatWriter patching"),
Vladimir Markof4da6752014-08-01 19:04:18 +0100655 class_linker_(Runtime::Current()->GetClassLinker()),
656 dex_cache_(nullptr) {
657 if (writer_->image_writer_ != nullptr) {
658 // If we're creating the image, the address space must be ready so that we can apply patches.
659 CHECK(writer_->image_writer_->IsImageAddressSpaceReady());
660 patched_code_.reserve(16 * KB);
661 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100662 }
663
Vladimir Markof4da6752014-08-01 19:04:18 +0100664 ~WriteCodeMethodVisitor() UNLOCK_FUNCTION(Locks::mutator_lock_) {
Vladimir Markof4da6752014-08-01 19:04:18 +0100665 }
666
667 bool StartClass(const DexFile* dex_file, size_t class_def_index)
Mathieu Chartier90443472015-07-16 20:32:27 -0700668 SHARED_REQUIRES(Locks::mutator_lock_) {
Vladimir Markof4da6752014-08-01 19:04:18 +0100669 OatDexMethodVisitor::StartClass(dex_file, class_def_index);
670 if (dex_cache_ == nullptr || dex_cache_->GetDexFile() != dex_file) {
671 dex_cache_ = class_linker_->FindDexCache(*dex_file);
672 }
673 return true;
674 }
675
Mathieu Chartier90443472015-07-16 20:32:27 -0700676 bool EndClass() SHARED_REQUIRES(Locks::mutator_lock_) {
Vladimir Markof4da6752014-08-01 19:04:18 +0100677 bool result = OatDexMethodVisitor::EndClass();
678 if (oat_class_index_ == writer_->oat_classes_.size()) {
679 DCHECK(result); // OatDexMethodVisitor::EndClass() never fails.
Vladimir Marko20f85592015-03-19 10:07:02 +0000680 offset_ = writer_->relative_patcher_->WriteThunks(out_, offset_);
Vladimir Markof4da6752014-08-01 19:04:18 +0100681 if (UNLIKELY(offset_ == 0u)) {
682 PLOG(ERROR) << "Failed to write final relative call thunks";
683 result = false;
684 }
685 }
686 return result;
687 }
688
689 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it)
Mathieu Chartier90443472015-07-16 20:32:27 -0700690 SHARED_REQUIRES(Locks::mutator_lock_) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100691 OatClass* oat_class = writer_->oat_classes_[oat_class_index_];
692 const CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index);
693
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700694 if (compiled_method != nullptr) { // ie. not an abstract method
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100695 size_t file_offset = file_offset_;
696 OutputStream* out = out_;
697
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800698 const SwapVector<uint8_t>* quick_code = compiled_method->GetQuickCode();
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100699 // Need a wrapper if we create a copy for patching.
700 ArrayRef<const uint8_t> wrapped(*quick_code);
701 uint32_t code_size = quick_code->size() * sizeof(uint8_t);
Nicolas Geoffrayf0758792015-07-13 11:56:00 +0000702
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100703 // Deduplicate code arrays.
704 const OatMethodOffsets& method_offsets = oat_class->method_offsets_[method_offsets_index_];
705 if (method_offsets.code_offset_ > offset_) {
706 offset_ = writer_->relative_patcher_->WriteThunks(out, offset_);
707 if (offset_ == 0u) {
708 ReportWriteFailure("relative call thunk", it);
709 return false;
Nicolas Geoffrayf0758792015-07-13 11:56:00 +0000710 }
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100711 uint32_t aligned_offset = compiled_method->AlignCode(offset_);
712 uint32_t aligned_code_delta = aligned_offset - offset_;
713 if (aligned_code_delta != 0) {
714 if (!writer_->WriteCodeAlignment(out, aligned_code_delta)) {
715 ReportWriteFailure("code alignment padding", it);
716 return false;
717 }
718 offset_ += aligned_code_delta;
719 DCHECK_OFFSET_();
720 }
721 DCHECK_ALIGNED_PARAM(offset_,
722 GetInstructionSetAlignment(compiled_method->GetInstructionSet()));
723 DCHECK_EQ(method_offsets.code_offset_,
724 offset_ + sizeof(OatQuickMethodHeader) + compiled_method->CodeDelta())
725 << PrettyMethod(it.GetMemberIndex(), *dex_file_);
726 const OatQuickMethodHeader& method_header =
727 oat_class->method_headers_[method_offsets_index_];
728 writer_->oat_header_->UpdateChecksum(&method_header, sizeof(method_header));
729 if (!out->WriteFully(&method_header, sizeof(method_header))) {
730 ReportWriteFailure("method header", it);
731 return false;
732 }
733 writer_->size_method_header_ += sizeof(method_header);
734 offset_ += sizeof(method_header);
Nicolas Geoffrayed6195a2015-07-13 17:02:30 +0000735 DCHECK_OFFSET_();
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100736
737 if (!compiled_method->GetPatches().empty()) {
738 patched_code_.assign(quick_code->begin(), quick_code->end());
739 wrapped = ArrayRef<const uint8_t>(patched_code_);
740 for (const LinkerPatch& patch : compiled_method->GetPatches()) {
741 if (patch.Type() == kLinkerPatchCallRelative) {
742 // NOTE: Relative calls across oat files are not supported.
743 uint32_t target_offset = GetTargetOffset(patch);
744 uint32_t literal_offset = patch.LiteralOffset();
745 writer_->relative_patcher_->PatchCall(&patched_code_, literal_offset,
746 offset_ + literal_offset, target_offset);
747 } else if (patch.Type() == kLinkerPatchDexCacheArray) {
748 uint32_t target_offset = GetDexCacheOffset(patch);
749 uint32_t literal_offset = patch.LiteralOffset();
750 writer_->relative_patcher_->PatchDexCacheReference(&patched_code_, patch,
751 offset_ + literal_offset,
752 target_offset);
753 } else if (patch.Type() == kLinkerPatchCall) {
754 uint32_t target_offset = GetTargetOffset(patch);
755 PatchCodeAddress(&patched_code_, patch.LiteralOffset(), target_offset);
756 } else if (patch.Type() == kLinkerPatchMethod) {
757 ArtMethod* method = GetTargetMethod(patch);
758 PatchMethodAddress(&patched_code_, patch.LiteralOffset(), method);
759 } else if (patch.Type() == kLinkerPatchType) {
760 mirror::Class* type = GetTargetType(patch);
761 PatchObjectAddress(&patched_code_, patch.LiteralOffset(), type);
762 }
763 }
764 }
765
766 writer_->oat_header_->UpdateChecksum(wrapped.data(), code_size);
767 if (!out->WriteFully(wrapped.data(), code_size)) {
768 ReportWriteFailure("method code", it);
769 return false;
770 }
771 writer_->size_code_ += code_size;
772 offset_ += code_size;
Nicolas Geoffrayf0758792015-07-13 11:56:00 +0000773 }
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100774 DCHECK_OFFSET_();
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100775 ++method_offsets_index_;
776 }
777
778 return true;
779 }
780
781 private:
782 OutputStream* const out_;
Vladimir Marko7c2ad5a2014-09-24 12:42:55 +0100783 const size_t file_offset_;
784 const ScopedObjectAccess soa_;
785 const ScopedAssertNoThreadSuspension no_thread_suspension_;
Vladimir Markof4da6752014-08-01 19:04:18 +0100786 ClassLinker* const class_linker_;
787 mirror::DexCache* dex_cache_;
788 std::vector<uint8_t> patched_code_;
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100789
790 void ReportWriteFailure(const char* what, const ClassDataItemIterator& it) {
791 PLOG(ERROR) << "Failed to write " << what << " for "
792 << PrettyMethod(it.GetMemberIndex(), *dex_file_) << " to " << out_->GetLocation();
793 }
Vladimir Markof4da6752014-08-01 19:04:18 +0100794
Mathieu Chartiere401d142015-04-22 13:56:20 -0700795 ArtMethod* GetTargetMethod(const LinkerPatch& patch)
Mathieu Chartier90443472015-07-16 20:32:27 -0700796 SHARED_REQUIRES(Locks::mutator_lock_) {
Vladimir Markof4da6752014-08-01 19:04:18 +0100797 MethodReference ref = patch.TargetMethod();
798 mirror::DexCache* dex_cache =
799 (dex_file_ == ref.dex_file) ? dex_cache_ : class_linker_->FindDexCache(*ref.dex_file);
Mathieu Chartiere401d142015-04-22 13:56:20 -0700800 ArtMethod* method = dex_cache->GetResolvedMethod(
801 ref.dex_method_index, class_linker_->GetImagePointerSize());
Vladimir Markof4da6752014-08-01 19:04:18 +0100802 CHECK(method != nullptr);
803 return method;
804 }
805
Mathieu Chartier90443472015-07-16 20:32:27 -0700806 uint32_t GetTargetOffset(const LinkerPatch& patch) SHARED_REQUIRES(Locks::mutator_lock_) {
Vladimir Markob163bb72015-03-31 21:49:49 +0100807 auto target_it = writer_->method_offset_map_.map.find(patch.TargetMethod());
Vladimir Markof4da6752014-08-01 19:04:18 +0100808 uint32_t target_offset =
Vladimir Markob163bb72015-03-31 21:49:49 +0100809 (target_it != writer_->method_offset_map_.map.end()) ? target_it->second : 0u;
Vladimir Markof4da6752014-08-01 19:04:18 +0100810 // If there's no compiled code, point to the correct trampoline.
811 if (UNLIKELY(target_offset == 0)) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700812 ArtMethod* target = GetTargetMethod(patch);
Vladimir Markof4da6752014-08-01 19:04:18 +0100813 DCHECK(target != nullptr);
Jeff Haoa0acc2d2015-01-27 11:22:04 -0800814 size_t size = GetInstructionSetPointerSize(writer_->compiler_driver_->GetInstructionSet());
815 const void* oat_code_offset = target->GetEntryPointFromQuickCompiledCodePtrSize(size);
816 if (oat_code_offset != 0) {
817 DCHECK(!Runtime::Current()->GetClassLinker()->IsQuickResolutionStub(oat_code_offset));
818 DCHECK(!Runtime::Current()->GetClassLinker()->IsQuickToInterpreterBridge(oat_code_offset));
819 DCHECK(!Runtime::Current()->GetClassLinker()->IsQuickGenericJniStub(oat_code_offset));
820 target_offset = PointerToLowMemUInt32(oat_code_offset);
821 } else {
822 target_offset = target->IsNative()
823 ? writer_->oat_header_->GetQuickGenericJniTrampolineOffset()
824 : writer_->oat_header_->GetQuickToInterpreterBridgeOffset();
825 }
Vladimir Markof4da6752014-08-01 19:04:18 +0100826 }
827 return target_offset;
828 }
829
830 mirror::Class* GetTargetType(const LinkerPatch& patch)
Mathieu Chartier90443472015-07-16 20:32:27 -0700831 SHARED_REQUIRES(Locks::mutator_lock_) {
Vladimir Markof4da6752014-08-01 19:04:18 +0100832 mirror::DexCache* dex_cache = (dex_file_ == patch.TargetTypeDexFile())
833 ? dex_cache_ : class_linker_->FindDexCache(*patch.TargetTypeDexFile());
834 mirror::Class* type = dex_cache->GetResolvedType(patch.TargetTypeIndex());
835 CHECK(type != nullptr);
836 return type;
837 }
838
Mathieu Chartier90443472015-07-16 20:32:27 -0700839 uint32_t GetDexCacheOffset(const LinkerPatch& patch) SHARED_REQUIRES(Locks::mutator_lock_) {
Vladimir Marko20f85592015-03-19 10:07:02 +0000840 if (writer_->image_writer_ != nullptr) {
841 auto* element = writer_->image_writer_->GetDexCacheArrayElementImageAddress(
842 patch.TargetDexCacheDexFile(), patch.TargetDexCacheElementOffset());
843 const uint8_t* oat_data = writer_->image_writer_->GetOatFileBegin() + file_offset_;
844 return reinterpret_cast<const uint8_t*>(element) - oat_data;
845 } else {
846 LOG(FATAL) << "Unimplemented.";
847 UNREACHABLE();
848 }
849 }
850
Vladimir Markof4da6752014-08-01 19:04:18 +0100851 void PatchObjectAddress(std::vector<uint8_t>* code, uint32_t offset, mirror::Object* object)
Mathieu Chartier90443472015-07-16 20:32:27 -0700852 SHARED_REQUIRES(Locks::mutator_lock_) {
Vladimir Markof4da6752014-08-01 19:04:18 +0100853 // NOTE: Direct method pointers across oat files don't use linker patches. However, direct
854 // type pointers across oat files do. (TODO: Investigate why.)
855 if (writer_->image_writer_ != nullptr) {
856 object = writer_->image_writer_->GetImageAddress(object);
857 }
858 uint32_t address = PointerToLowMemUInt32(object);
859 DCHECK_LE(offset + 4, code->size());
860 uint8_t* data = &(*code)[offset];
861 data[0] = address & 0xffu;
862 data[1] = (address >> 8) & 0xffu;
863 data[2] = (address >> 16) & 0xffu;
864 data[3] = (address >> 24) & 0xffu;
865 }
866
Mathieu Chartiere401d142015-04-22 13:56:20 -0700867 void PatchMethodAddress(std::vector<uint8_t>* code, uint32_t offset, ArtMethod* method)
Mathieu Chartier90443472015-07-16 20:32:27 -0700868 SHARED_REQUIRES(Locks::mutator_lock_) {
Mathieu Chartiere401d142015-04-22 13:56:20 -0700869 // NOTE: Direct method pointers across oat files don't use linker patches. However, direct
870 // type pointers across oat files do. (TODO: Investigate why.)
871 if (writer_->image_writer_ != nullptr) {
872 method = writer_->image_writer_->GetImageMethodAddress(method);
873 }
874 // Note: We only patch ArtMethods to low 4gb since thats where the image is.
875 uint32_t address = PointerToLowMemUInt32(method);
876 DCHECK_LE(offset + 4, code->size());
877 uint8_t* data = &(*code)[offset];
878 data[0] = address & 0xffu;
879 data[1] = (address >> 8) & 0xffu;
880 data[2] = (address >> 16) & 0xffu;
881 data[3] = (address >> 24) & 0xffu;
882 }
883
Vladimir Markof4da6752014-08-01 19:04:18 +0100884 void PatchCodeAddress(std::vector<uint8_t>* code, uint32_t offset, uint32_t target_offset)
Mathieu Chartier90443472015-07-16 20:32:27 -0700885 SHARED_REQUIRES(Locks::mutator_lock_) {
Jeff Haoa0acc2d2015-01-27 11:22:04 -0800886 uint32_t address = writer_->image_writer_ == nullptr ? target_offset :
887 PointerToLowMemUInt32(writer_->image_writer_->GetOatFileBegin() +
888 writer_->oat_data_offset_ + target_offset);
Vladimir Markof4da6752014-08-01 19:04:18 +0100889 DCHECK_LE(offset + 4, code->size());
890 uint8_t* data = &(*code)[offset];
891 data[0] = address & 0xffu;
892 data[1] = (address >> 8) & 0xffu;
893 data[2] = (address >> 16) & 0xffu;
894 data[3] = (address >> 24) & 0xffu;
895 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100896};
897
898template <typename DataAccess>
899class OatWriter::WriteMapMethodVisitor : public OatDexMethodVisitor {
900 public:
901 WriteMapMethodVisitor(OatWriter* writer, OutputStream* out, const size_t file_offset,
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800902 size_t relative_offset)
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100903 : OatDexMethodVisitor(writer, relative_offset),
904 out_(out),
905 file_offset_(file_offset) {
906 }
907
908 bool VisitMethod(size_t class_def_method_index, const ClassDataItemIterator& it) {
909 OatClass* oat_class = writer_->oat_classes_[oat_class_index_];
910 const CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index);
911
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700912 if (compiled_method != nullptr) { // ie. not an abstract method
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100913 size_t file_offset = file_offset_;
914 OutputStream* out = out_;
915
916 uint32_t map_offset = DataAccess::GetOffset(oat_class, method_offsets_index_);
917 ++method_offsets_index_;
918
919 // Write deduplicated map.
Andreas Gampee21dc3d2014-12-08 16:59:43 -0800920 const SwapVector<uint8_t>* map = DataAccess::GetData(compiled_method);
Nicolas Geoffray39468442014-09-02 15:17:15 +0100921 size_t map_size = map == nullptr ? 0 : map->size() * sizeof((*map)[0]);
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100922 DCHECK((map_size == 0u && map_offset == 0u) ||
923 (map_size != 0u && map_offset != 0u && map_offset <= offset_))
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800924 << map_size << " " << map_offset << " " << offset_ << " "
925 << PrettyMethod(it.GetMemberIndex(), *dex_file_) << " for " << DataAccess::Name();
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100926 if (map_size != 0u && map_offset == offset_) {
927 if (UNLIKELY(!out->WriteFully(&(*map)[0], map_size))) {
928 ReportWriteFailure(it);
929 return false;
930 }
931 offset_ += map_size;
932 }
933 DCHECK_OFFSET_();
934 }
935
936 return true;
937 }
938
939 private:
940 OutputStream* const out_;
941 size_t const file_offset_;
942
943 void ReportWriteFailure(const ClassDataItemIterator& it) {
944 PLOG(ERROR) << "Failed to write " << DataAccess::Name() << " for "
945 << PrettyMethod(it.GetMemberIndex(), *dex_file_) << " to " << out_->GetLocation();
946 }
947};
948
949// Visit all methods from all classes in all dex files with the specified visitor.
950bool OatWriter::VisitDexMethods(DexMethodVisitor* visitor) {
951 for (const DexFile* dex_file : *dex_files_) {
952 const size_t class_def_count = dex_file->NumClassDefs();
953 for (size_t class_def_index = 0; class_def_index != class_def_count; ++class_def_index) {
954 if (UNLIKELY(!visitor->StartClass(dex_file, class_def_index))) {
955 return false;
956 }
957 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
Ian Rogers13735952014-10-08 12:43:28 -0700958 const uint8_t* class_data = dex_file->GetClassData(class_def);
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700959 if (class_data != nullptr) { // ie not an empty class, such as a marker interface
Vladimir Marko96c6ab92014-04-08 14:00:50 +0100960 ClassDataItemIterator it(*dex_file, class_data);
961 while (it.HasNextStaticField()) {
962 it.Next();
963 }
964 while (it.HasNextInstanceField()) {
965 it.Next();
966 }
967 size_t class_def_method_index = 0u;
968 while (it.HasNextDirectMethod()) {
969 if (!visitor->VisitMethod(class_def_method_index, it)) {
970 return false;
971 }
972 ++class_def_method_index;
973 it.Next();
974 }
975 while (it.HasNextVirtualMethod()) {
976 if (UNLIKELY(!visitor->VisitMethod(class_def_method_index, it))) {
977 return false;
978 }
979 ++class_def_method_index;
980 it.Next();
981 }
982 }
983 if (UNLIKELY(!visitor->EndClass())) {
984 return false;
985 }
986 }
987 }
988 return true;
989}
990
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700991size_t OatWriter::InitOatHeader() {
Andreas Gampe22f8e5c2014-07-09 11:38:21 -0700992 oat_header_ = OatHeader::Create(compiler_driver_->GetInstructionSet(),
993 compiler_driver_->GetInstructionSetFeatures(),
994 dex_files_,
995 image_file_location_oat_checksum_,
996 image_file_location_oat_begin_,
997 key_value_store_);
998
999 return oat_header_->GetHeaderSize();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001000}
1001
1002size_t OatWriter::InitOatDexFiles(size_t offset) {
1003 // create the OatDexFiles
1004 for (size_t i = 0; i != dex_files_->size(); ++i) {
1005 const DexFile* dex_file = (*dex_files_)[i];
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001006 CHECK(dex_file != nullptr);
Brian Carlstrom265091e2013-01-30 14:08:26 -08001007 OatDexFile* oat_dex_file = new OatDexFile(offset, *dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -07001008 oat_dex_files_.push_back(oat_dex_file);
1009 offset += oat_dex_file->SizeOf();
1010 }
1011 return offset;
1012}
1013
Brian Carlstrom89521892011-12-07 22:05:07 -08001014size_t OatWriter::InitDexFiles(size_t offset) {
1015 // calculate the offsets within OatDexFiles to the DexFiles
1016 for (size_t i = 0; i != dex_files_->size(); ++i) {
1017 // dex files are required to be 4 byte aligned
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001018 size_t original_offset = offset;
Brian Carlstrom89521892011-12-07 22:05:07 -08001019 offset = RoundUp(offset, 4);
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001020 size_dex_file_alignment_ += offset - original_offset;
Brian Carlstrom89521892011-12-07 22:05:07 -08001021
1022 // set offset in OatDexFile to DexFile
1023 oat_dex_files_[i]->dex_file_offset_ = offset;
1024
1025 const DexFile* dex_file = (*dex_files_)[i];
1026 offset += dex_file->GetHeader().file_size_;
1027 }
1028 return offset;
1029}
1030
Brian Carlstrom389efb02012-01-11 12:06:26 -08001031size_t OatWriter::InitOatClasses(size_t offset) {
Brian Carlstrom389efb02012-01-11 12:06:26 -08001032 // calculate the offsets within OatDexFiles to OatClasses
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001033 InitOatClassesMethodVisitor visitor(this, offset);
1034 bool success = VisitDexMethods(&visitor);
1035 CHECK(success);
1036 offset = visitor.GetOffset();
Brian Carlstromba150c32013-08-27 17:31:03 -07001037
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001038 // Update oat_dex_files_.
1039 auto oat_class_it = oat_classes_.begin();
1040 for (OatDexFile* oat_dex_file : oat_dex_files_) {
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001041 for (uint32_t& method_offset : oat_dex_file->methods_offsets_) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001042 DCHECK(oat_class_it != oat_classes_.end());
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001043 method_offset = (*oat_class_it)->offset_;
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001044 ++oat_class_it;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001045 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001046 oat_dex_file->UpdateChecksum(oat_header_);
Brian Carlstrome24fa612011-09-29 00:53:55 -07001047 }
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001048 CHECK(oat_class_it == oat_classes_.end());
1049
1050 return offset;
1051}
1052
1053size_t OatWriter::InitOatMaps(size_t offset) {
1054 #define VISIT(VisitorType) \
1055 do { \
1056 VisitorType visitor(this, offset); \
1057 bool success = VisitDexMethods(&visitor); \
1058 DCHECK(success); \
1059 offset = visitor.GetOffset(); \
1060 } while (false)
1061
1062 VISIT(InitMapMethodVisitor<GcMapDataAccess>);
1063 VISIT(InitMapMethodVisitor<MappingTableDataAccess>);
1064 VISIT(InitMapMethodVisitor<VmapTableDataAccess>);
1065
1066 #undef VISIT
1067
Brian Carlstrome24fa612011-09-29 00:53:55 -07001068 return offset;
1069}
1070
1071size_t OatWriter::InitOatCode(size_t offset) {
1072 // calculate the offsets within OatHeader to executable code
1073 size_t old_offset = offset;
Dave Allison50abf0a2014-06-23 13:19:59 -07001074 size_t adjusted_offset = offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001075 // required to be on a new page boundary
1076 offset = RoundUp(offset, kPageSize);
1077 oat_header_->SetExecutableOffset(offset);
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001078 size_executable_offset_alignment_ = offset - old_offset;
1079 if (compiler_driver_->IsImage()) {
Alex Lighta59dd802014-07-02 16:28:08 -07001080 CHECK_EQ(image_patch_delta_, 0);
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001081 InstructionSet instruction_set = compiler_driver_->GetInstructionSet();
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001082
Ian Rogers848871b2013-08-05 10:56:33 -07001083 #define DO_TRAMPOLINE(field, fn_name) \
1084 offset = CompiledCode::AlignCode(offset, instruction_set); \
Dave Allison50abf0a2014-06-23 13:19:59 -07001085 adjusted_offset = offset + CompiledCode::CodeDelta(instruction_set); \
1086 oat_header_->Set ## fn_name ## Offset(adjusted_offset); \
Ian Rogers848871b2013-08-05 10:56:33 -07001087 field.reset(compiler_driver_->Create ## fn_name()); \
1088 offset += field->size();
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001089
Ian Rogers848871b2013-08-05 10:56:33 -07001090 DO_TRAMPOLINE(interpreter_to_interpreter_bridge_, InterpreterToInterpreterBridge);
1091 DO_TRAMPOLINE(interpreter_to_compiled_code_bridge_, InterpreterToCompiledCodeBridge);
1092 DO_TRAMPOLINE(jni_dlsym_lookup_, JniDlsymLookup);
Andreas Gampe2da88232014-02-27 12:26:20 -08001093 DO_TRAMPOLINE(quick_generic_jni_trampoline_, QuickGenericJniTrampoline);
Jeff Hao88474b42013-10-23 16:24:40 -07001094 DO_TRAMPOLINE(quick_imt_conflict_trampoline_, QuickImtConflictTrampoline);
Ian Rogers848871b2013-08-05 10:56:33 -07001095 DO_TRAMPOLINE(quick_resolution_trampoline_, QuickResolutionTrampoline);
1096 DO_TRAMPOLINE(quick_to_interpreter_bridge_, QuickToInterpreterBridge);
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001097
Ian Rogers848871b2013-08-05 10:56:33 -07001098 #undef DO_TRAMPOLINE
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001099 } else {
Ian Rogers848871b2013-08-05 10:56:33 -07001100 oat_header_->SetInterpreterToInterpreterBridgeOffset(0);
1101 oat_header_->SetInterpreterToCompiledCodeBridgeOffset(0);
1102 oat_header_->SetJniDlsymLookupOffset(0);
Andreas Gampe2da88232014-02-27 12:26:20 -08001103 oat_header_->SetQuickGenericJniTrampolineOffset(0);
Jeff Hao88474b42013-10-23 16:24:40 -07001104 oat_header_->SetQuickImtConflictTrampolineOffset(0);
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001105 oat_header_->SetQuickResolutionTrampolineOffset(0);
Ian Rogers848871b2013-08-05 10:56:33 -07001106 oat_header_->SetQuickToInterpreterBridgeOffset(0);
Alex Lighta59dd802014-07-02 16:28:08 -07001107 oat_header_->SetImagePatchDelta(image_patch_delta_);
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001108 }
Brian Carlstrome24fa612011-09-29 00:53:55 -07001109 return offset;
1110}
1111
1112size_t OatWriter::InitOatCodeDexFiles(size_t offset) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001113 #define VISIT(VisitorType) \
1114 do { \
1115 VisitorType visitor(this, offset); \
1116 bool success = VisitDexMethods(&visitor); \
1117 DCHECK(success); \
1118 offset = visitor.GetOffset(); \
1119 } while (false)
Brian Carlstrome24fa612011-09-29 00:53:55 -07001120
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001121 VISIT(InitCodeMethodVisitor);
Ian Rogers1212a022013-03-04 10:48:41 -08001122 if (compiler_driver_->IsImage()) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001123 VISIT(InitImageMethodVisitor);
Ian Rogers0571d352011-11-03 19:51:38 -07001124 }
Logan Chien8b977d32012-02-21 19:14:55 +08001125
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001126 #undef VISIT
1127
Brian Carlstrome24fa612011-09-29 00:53:55 -07001128 return offset;
1129}
1130
David Srbeckybc90fd02015-04-22 19:40:27 +01001131bool OatWriter::WriteRodata(OutputStream* out) {
Vladimir Markof4da6752014-08-01 19:04:18 +01001132 const off_t raw_file_offset = out->Seek(0, kSeekCurrent);
1133 if (raw_file_offset == (off_t) -1) {
1134 LOG(ERROR) << "Failed to get file offset in " << out->GetLocation();
1135 return false;
1136 }
1137 const size_t file_offset = static_cast<size_t>(raw_file_offset);
David Srbeckybc90fd02015-04-22 19:40:27 +01001138 oat_data_offset_ = file_offset;
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001139
Vladimir Markof4da6752014-08-01 19:04:18 +01001140 // Reserve space for header. It will be written last - after updating the checksum.
Andreas Gampe22f8e5c2014-07-09 11:38:21 -07001141 size_t header_size = oat_header_->GetHeaderSize();
Vladimir Markof4da6752014-08-01 19:04:18 +01001142 if (out->Seek(header_size, kSeekCurrent) == (off_t) -1) {
1143 PLOG(ERROR) << "Failed to reserve space for oat header in " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001144 return false;
1145 }
Andreas Gampe22f8e5c2014-07-09 11:38:21 -07001146 size_oat_header_ += sizeof(OatHeader);
1147 size_oat_header_key_value_store_ += oat_header_->GetHeaderSize() - sizeof(OatHeader);
Brian Carlstrom81f3ca12012-03-17 00:27:35 -07001148
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001149 if (!WriteTables(out, file_offset)) {
Ian Rogers3d504072014-03-01 09:16:49 -08001150 LOG(ERROR) << "Failed to write oat tables to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001151 return false;
1152 }
1153
Vladimir Markof4da6752014-08-01 19:04:18 +01001154 off_t tables_end_offset = out->Seek(0, kSeekCurrent);
1155 if (tables_end_offset == (off_t) -1) {
1156 LOG(ERROR) << "Failed to seek to oat code position in " << out->GetLocation();
1157 return false;
1158 }
1159 size_t relative_offset = static_cast<size_t>(tables_end_offset) - file_offset;
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001160 relative_offset = WriteMaps(out, file_offset, relative_offset);
1161 if (relative_offset == 0) {
1162 LOG(ERROR) << "Failed to write oat code to " << out->GetLocation();
1163 return false;
1164 }
1165
David Srbeckybc90fd02015-04-22 19:40:27 +01001166 // Write padding.
1167 off_t new_offset = out->Seek(size_executable_offset_alignment_, kSeekCurrent);
1168 relative_offset += size_executable_offset_alignment_;
1169 DCHECK_EQ(relative_offset, oat_header_->GetExecutableOffset());
1170 size_t expected_file_offset = file_offset + relative_offset;
1171 if (static_cast<uint32_t>(new_offset) != expected_file_offset) {
1172 PLOG(ERROR) << "Failed to seek to oat code section. Actual: " << new_offset
1173 << " Expected: " << expected_file_offset << " File: " << out->GetLocation();
1174 return 0;
1175 }
1176 DCHECK_OFFSET();
1177
1178 return true;
1179}
1180
1181bool OatWriter::WriteCode(OutputStream* out) {
1182 size_t header_size = oat_header_->GetHeaderSize();
1183 const size_t file_offset = oat_data_offset_;
1184 size_t relative_offset = oat_header_->GetExecutableOffset();
1185 DCHECK_OFFSET();
1186
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001187 relative_offset = WriteCode(out, file_offset, relative_offset);
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001188 if (relative_offset == 0) {
Ian Rogers3d504072014-03-01 09:16:49 -08001189 LOG(ERROR) << "Failed to write oat code to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001190 return false;
1191 }
1192
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001193 relative_offset = WriteCodeDexFiles(out, file_offset, relative_offset);
1194 if (relative_offset == 0) {
Ian Rogers3d504072014-03-01 09:16:49 -08001195 LOG(ERROR) << "Failed to write oat code for dex files to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001196 return false;
1197 }
1198
Vladimir Markof4da6752014-08-01 19:04:18 +01001199 const off_t oat_end_file_offset = out->Seek(0, kSeekCurrent);
1200 if (oat_end_file_offset == (off_t) -1) {
1201 LOG(ERROR) << "Failed to get oat end file offset in " << out->GetLocation();
1202 return false;
1203 }
1204
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001205 if (kIsDebugBuild) {
1206 uint32_t size_total = 0;
1207 #define DO_STAT(x) \
Anwar Ghuloum75a43f12013-08-13 17:22:14 -07001208 VLOG(compiler) << #x "=" << PrettySize(x) << " (" << x << "B)"; \
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001209 size_total += x;
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001210
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001211 DO_STAT(size_dex_file_alignment_);
1212 DO_STAT(size_executable_offset_alignment_);
1213 DO_STAT(size_oat_header_);
Andreas Gampe22f8e5c2014-07-09 11:38:21 -07001214 DO_STAT(size_oat_header_key_value_store_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001215 DO_STAT(size_dex_file_);
Ian Rogers848871b2013-08-05 10:56:33 -07001216 DO_STAT(size_interpreter_to_interpreter_bridge_);
1217 DO_STAT(size_interpreter_to_compiled_code_bridge_);
1218 DO_STAT(size_jni_dlsym_lookup_);
Andreas Gampe2da88232014-02-27 12:26:20 -08001219 DO_STAT(size_quick_generic_jni_trampoline_);
Jeff Hao88474b42013-10-23 16:24:40 -07001220 DO_STAT(size_quick_imt_conflict_trampoline_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001221 DO_STAT(size_quick_resolution_trampoline_);
Ian Rogers848871b2013-08-05 10:56:33 -07001222 DO_STAT(size_quick_to_interpreter_bridge_);
1223 DO_STAT(size_trampoline_alignment_);
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001224 DO_STAT(size_method_header_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001225 DO_STAT(size_code_);
1226 DO_STAT(size_code_alignment_);
Vladimir Markof4da6752014-08-01 19:04:18 +01001227 DO_STAT(size_relative_call_thunks_);
Vladimir Markoc74658b2015-03-31 10:26:41 +01001228 DO_STAT(size_misc_thunks_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001229 DO_STAT(size_mapping_table_);
1230 DO_STAT(size_vmap_table_);
1231 DO_STAT(size_gc_map_);
1232 DO_STAT(size_oat_dex_file_location_size_);
1233 DO_STAT(size_oat_dex_file_location_data_);
1234 DO_STAT(size_oat_dex_file_location_checksum_);
1235 DO_STAT(size_oat_dex_file_offset_);
1236 DO_STAT(size_oat_dex_file_methods_offsets_);
Brian Carlstromba150c32013-08-27 17:31:03 -07001237 DO_STAT(size_oat_class_type_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001238 DO_STAT(size_oat_class_status_);
Brian Carlstromba150c32013-08-27 17:31:03 -07001239 DO_STAT(size_oat_class_method_bitmaps_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001240 DO_STAT(size_oat_class_method_offsets_);
1241 #undef DO_STAT
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001242
Anwar Ghuloum75a43f12013-08-13 17:22:14 -07001243 VLOG(compiler) << "size_total=" << PrettySize(size_total) << " (" << size_total << "B)"; \
Vladimir Markof4da6752014-08-01 19:04:18 +01001244 CHECK_EQ(file_offset + size_total, static_cast<size_t>(oat_end_file_offset));
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001245 CHECK_EQ(size_, size_total);
Ian Rogers4bdbbc82013-06-10 16:02:31 -07001246 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001247
Vladimir Markof4da6752014-08-01 19:04:18 +01001248 CHECK_EQ(file_offset + size_, static_cast<size_t>(oat_end_file_offset));
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001249 CHECK_EQ(size_, relative_offset);
1250
Vladimir Markof4da6752014-08-01 19:04:18 +01001251 // Write the header now that the checksum is final.
1252 if (out->Seek(file_offset, kSeekSet) == (off_t) -1) {
1253 PLOG(ERROR) << "Failed to seek to oat header position in " << out->GetLocation();
1254 return false;
1255 }
David Srbeckybc90fd02015-04-22 19:40:27 +01001256 DCHECK_EQ(file_offset, static_cast<size_t>(out->Seek(0, kSeekCurrent)));
Vladimir Markof4da6752014-08-01 19:04:18 +01001257 if (!out->WriteFully(oat_header_, header_size)) {
1258 PLOG(ERROR) << "Failed to write oat header to " << out->GetLocation();
1259 return false;
1260 }
1261 if (out->Seek(oat_end_file_offset, kSeekSet) == (off_t) -1) {
1262 PLOG(ERROR) << "Failed to seek to end after writing oat header to " << out->GetLocation();
1263 return false;
1264 }
1265 DCHECK_EQ(oat_end_file_offset, out->Seek(0, kSeekCurrent));
1266
Brian Carlstrome24fa612011-09-29 00:53:55 -07001267 return true;
1268}
1269
Ian Rogers3d504072014-03-01 09:16:49 -08001270bool OatWriter::WriteTables(OutputStream* out, const size_t file_offset) {
Brian Carlstrome24fa612011-09-29 00:53:55 -07001271 for (size_t i = 0; i != oat_dex_files_.size(); ++i) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001272 if (!oat_dex_files_[i]->Write(this, out, file_offset)) {
Ian Rogers3d504072014-03-01 09:16:49 -08001273 PLOG(ERROR) << "Failed to write oat dex information to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001274 return false;
1275 }
1276 }
Brian Carlstrom89521892011-12-07 22:05:07 -08001277 for (size_t i = 0; i != oat_dex_files_.size(); ++i) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001278 uint32_t expected_offset = file_offset + oat_dex_files_[i]->dex_file_offset_;
Ian Rogers3d504072014-03-01 09:16:49 -08001279 off_t actual_offset = out->Seek(expected_offset, kSeekSet);
Brian Carlstrom89521892011-12-07 22:05:07 -08001280 if (static_cast<uint32_t>(actual_offset) != expected_offset) {
1281 const DexFile* dex_file = (*dex_files_)[i];
1282 PLOG(ERROR) << "Failed to seek to dex file section. Actual: " << actual_offset
1283 << " Expected: " << expected_offset << " File: " << dex_file->GetLocation();
1284 return false;
1285 }
1286 const DexFile* dex_file = (*dex_files_)[i];
Ian Rogers3d504072014-03-01 09:16:49 -08001287 if (!out->WriteFully(&dex_file->GetHeader(), dex_file->GetHeader().file_size_)) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001288 PLOG(ERROR) << "Failed to write dex file " << dex_file->GetLocation()
Ian Rogers3d504072014-03-01 09:16:49 -08001289 << " to " << out->GetLocation();
Brian Carlstrom89521892011-12-07 22:05:07 -08001290 return false;
1291 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001292 size_dex_file_ += dex_file->GetHeader().file_size_;
Brian Carlstrom89521892011-12-07 22:05:07 -08001293 }
Brian Carlstrom389efb02012-01-11 12:06:26 -08001294 for (size_t i = 0; i != oat_classes_.size(); ++i) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001295 if (!oat_classes_[i]->Write(this, out, file_offset)) {
Ian Rogers3d504072014-03-01 09:16:49 -08001296 PLOG(ERROR) << "Failed to write oat methods information to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001297 return false;
1298 }
1299 }
1300 return true;
1301}
1302
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001303size_t OatWriter::WriteMaps(OutputStream* out, const size_t file_offset, size_t relative_offset) {
1304 #define VISIT(VisitorType) \
1305 do { \
1306 VisitorType visitor(this, out, file_offset, relative_offset); \
1307 if (UNLIKELY(!VisitDexMethods(&visitor))) { \
1308 return 0; \
1309 } \
1310 relative_offset = visitor.GetOffset(); \
1311 } while (false)
1312
1313 size_t gc_maps_offset = relative_offset;
1314 VISIT(WriteMapMethodVisitor<GcMapDataAccess>);
1315 size_gc_map_ = relative_offset - gc_maps_offset;
1316
1317 size_t mapping_tables_offset = relative_offset;
1318 VISIT(WriteMapMethodVisitor<MappingTableDataAccess>);
1319 size_mapping_table_ = relative_offset - mapping_tables_offset;
1320
1321 size_t vmap_tables_offset = relative_offset;
1322 VISIT(WriteMapMethodVisitor<VmapTableDataAccess>);
1323 size_vmap_table_ = relative_offset - vmap_tables_offset;
1324
1325 #undef VISIT
1326
1327 return relative_offset;
1328}
1329
1330size_t OatWriter::WriteCode(OutputStream* out, const size_t file_offset, size_t relative_offset) {
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001331 if (compiler_driver_->IsImage()) {
1332 InstructionSet instruction_set = compiler_driver_->GetInstructionSet();
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001333
Ian Rogers848871b2013-08-05 10:56:33 -07001334 #define DO_TRAMPOLINE(field) \
1335 do { \
1336 uint32_t aligned_offset = CompiledCode::AlignCode(relative_offset, instruction_set); \
1337 uint32_t alignment_padding = aligned_offset - relative_offset; \
Ian Rogers3d504072014-03-01 09:16:49 -08001338 out->Seek(alignment_padding, kSeekCurrent); \
Ian Rogers848871b2013-08-05 10:56:33 -07001339 size_trampoline_alignment_ += alignment_padding; \
Ian Rogers3d504072014-03-01 09:16:49 -08001340 if (!out->WriteFully(&(*field)[0], field->size())) { \
1341 PLOG(ERROR) << "Failed to write " # field " to " << out->GetLocation(); \
Ian Rogers848871b2013-08-05 10:56:33 -07001342 return false; \
1343 } \
1344 size_ ## field += field->size(); \
1345 relative_offset += alignment_padding + field->size(); \
1346 DCHECK_OFFSET(); \
1347 } while (false)
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001348
Ian Rogers848871b2013-08-05 10:56:33 -07001349 DO_TRAMPOLINE(interpreter_to_interpreter_bridge_);
1350 DO_TRAMPOLINE(interpreter_to_compiled_code_bridge_);
1351 DO_TRAMPOLINE(jni_dlsym_lookup_);
Andreas Gampe2da88232014-02-27 12:26:20 -08001352 DO_TRAMPOLINE(quick_generic_jni_trampoline_);
Jeff Hao88474b42013-10-23 16:24:40 -07001353 DO_TRAMPOLINE(quick_imt_conflict_trampoline_);
Ian Rogers848871b2013-08-05 10:56:33 -07001354 DO_TRAMPOLINE(quick_resolution_trampoline_);
1355 DO_TRAMPOLINE(quick_to_interpreter_bridge_);
1356 #undef DO_TRAMPOLINE
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001357 }
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001358 return relative_offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001359}
1360
Ian Rogers3d504072014-03-01 09:16:49 -08001361size_t OatWriter::WriteCodeDexFiles(OutputStream* out,
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001362 const size_t file_offset,
1363 size_t relative_offset) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001364 #define VISIT(VisitorType) \
1365 do { \
1366 VisitorType visitor(this, out, file_offset, relative_offset); \
1367 if (UNLIKELY(!VisitDexMethods(&visitor))) { \
1368 return 0; \
1369 } \
1370 relative_offset = visitor.GetOffset(); \
1371 } while (false)
Brian Carlstrome24fa612011-09-29 00:53:55 -07001372
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001373 VISIT(WriteCodeMethodVisitor);
Brian Carlstrome24fa612011-09-29 00:53:55 -07001374
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001375 #undef VISIT
Brian Carlstrom265091e2013-01-30 14:08:26 -08001376
Vladimir Markob163bb72015-03-31 21:49:49 +01001377 size_code_alignment_ += relative_patcher_->CodeAlignmentSize();
1378 size_relative_call_thunks_ += relative_patcher_->RelativeCallThunksSize();
1379 size_misc_thunks_ += relative_patcher_->MiscThunksSize();
1380
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001381 return relative_offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -07001382}
1383
Vladimir Markof4da6752014-08-01 19:04:18 +01001384bool OatWriter::WriteCodeAlignment(OutputStream* out, uint32_t aligned_code_delta) {
1385 static const uint8_t kPadding[] = {
1386 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u
1387 };
1388 DCHECK_LE(aligned_code_delta, sizeof(kPadding));
1389 if (UNLIKELY(!out->WriteFully(kPadding, aligned_code_delta))) {
1390 return false;
1391 }
1392 size_code_alignment_ += aligned_code_delta;
1393 return true;
1394}
1395
Vladimir Markob163bb72015-03-31 21:49:49 +01001396std::pair<bool, uint32_t> OatWriter::MethodOffsetMap::FindMethodOffset(MethodReference ref) {
1397 auto it = map.find(ref);
1398 if (it == map.end()) {
1399 return std::pair<bool, uint32_t>(false, 0u);
1400 } else {
1401 return std::pair<bool, uint32_t>(true, it->second);
1402 }
1403}
1404
Brian Carlstrom265091e2013-01-30 14:08:26 -08001405OatWriter::OatDexFile::OatDexFile(size_t offset, const DexFile& dex_file) {
1406 offset_ = offset;
Elliott Hughes95572412011-12-13 18:14:20 -08001407 const std::string& location(dex_file.GetLocation());
Brian Carlstrome24fa612011-09-29 00:53:55 -07001408 dex_file_location_size_ = location.size();
1409 dex_file_location_data_ = reinterpret_cast<const uint8_t*>(location.data());
Brian Carlstrom5b332c82012-02-01 15:02:31 -08001410 dex_file_location_checksum_ = dex_file.GetLocationChecksum();
Brian Carlstrom89521892011-12-07 22:05:07 -08001411 dex_file_offset_ = 0;
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -08001412 methods_offsets_.resize(dex_file.NumClassDefs());
Brian Carlstrome24fa612011-09-29 00:53:55 -07001413}
1414
1415size_t OatWriter::OatDexFile::SizeOf() const {
1416 return sizeof(dex_file_location_size_)
1417 + dex_file_location_size_
Brian Carlstrom5b332c82012-02-01 15:02:31 -08001418 + sizeof(dex_file_location_checksum_)
Brian Carlstrom89521892011-12-07 22:05:07 -08001419 + sizeof(dex_file_offset_)
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -08001420 + (sizeof(methods_offsets_[0]) * methods_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -07001421}
1422
Ian Rogers3d504072014-03-01 09:16:49 -08001423void OatWriter::OatDexFile::UpdateChecksum(OatHeader* oat_header) const {
1424 oat_header->UpdateChecksum(&dex_file_location_size_, sizeof(dex_file_location_size_));
1425 oat_header->UpdateChecksum(dex_file_location_data_, dex_file_location_size_);
1426 oat_header->UpdateChecksum(&dex_file_location_checksum_, sizeof(dex_file_location_checksum_));
1427 oat_header->UpdateChecksum(&dex_file_offset_, sizeof(dex_file_offset_));
1428 oat_header->UpdateChecksum(&methods_offsets_[0],
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -08001429 sizeof(methods_offsets_[0]) * methods_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -07001430}
1431
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001432bool OatWriter::OatDexFile::Write(OatWriter* oat_writer,
Ian Rogers3d504072014-03-01 09:16:49 -08001433 OutputStream* out,
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001434 const size_t file_offset) const {
Brian Carlstrom265091e2013-01-30 14:08:26 -08001435 DCHECK_OFFSET_();
Ian Rogers3d504072014-03-01 09:16:49 -08001436 if (!out->WriteFully(&dex_file_location_size_, sizeof(dex_file_location_size_))) {
1437 PLOG(ERROR) << "Failed to write dex file location length to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001438 return false;
1439 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001440 oat_writer->size_oat_dex_file_location_size_ += sizeof(dex_file_location_size_);
Ian Rogers3d504072014-03-01 09:16:49 -08001441 if (!out->WriteFully(dex_file_location_data_, dex_file_location_size_)) {
1442 PLOG(ERROR) << "Failed to write dex file location data to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001443 return false;
1444 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001445 oat_writer->size_oat_dex_file_location_data_ += dex_file_location_size_;
Ian Rogers3d504072014-03-01 09:16:49 -08001446 if (!out->WriteFully(&dex_file_location_checksum_, sizeof(dex_file_location_checksum_))) {
1447 PLOG(ERROR) << "Failed to write dex file location checksum to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001448 return false;
1449 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001450 oat_writer->size_oat_dex_file_location_checksum_ += sizeof(dex_file_location_checksum_);
Ian Rogers3d504072014-03-01 09:16:49 -08001451 if (!out->WriteFully(&dex_file_offset_, sizeof(dex_file_offset_))) {
1452 PLOG(ERROR) << "Failed to write dex file offset to " << out->GetLocation();
Brian Carlstrom89521892011-12-07 22:05:07 -08001453 return false;
1454 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001455 oat_writer->size_oat_dex_file_offset_ += sizeof(dex_file_offset_);
Ian Rogers3d504072014-03-01 09:16:49 -08001456 if (!out->WriteFully(&methods_offsets_[0],
Brian Carlstromcd60ac72013-01-20 17:09:51 -08001457 sizeof(methods_offsets_[0]) * methods_offsets_.size())) {
Ian Rogers3d504072014-03-01 09:16:49 -08001458 PLOG(ERROR) << "Failed to write methods offsets to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001459 return false;
1460 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001461 oat_writer->size_oat_dex_file_methods_offsets_ +=
1462 sizeof(methods_offsets_[0]) * methods_offsets_.size();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001463 return true;
1464}
1465
Brian Carlstromba150c32013-08-27 17:31:03 -07001466OatWriter::OatClass::OatClass(size_t offset,
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001467 const std::vector<CompiledMethod*>& compiled_methods,
Brian Carlstromba150c32013-08-27 17:31:03 -07001468 uint32_t num_non_null_compiled_methods,
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001469 mirror::Class::Status status)
1470 : compiled_methods_(compiled_methods) {
1471 uint32_t num_methods = compiled_methods.size();
Brian Carlstromba150c32013-08-27 17:31:03 -07001472 CHECK_LE(num_non_null_compiled_methods, num_methods);
1473
Brian Carlstrom265091e2013-01-30 14:08:26 -08001474 offset_ = offset;
Brian Carlstromba150c32013-08-27 17:31:03 -07001475 oat_method_offsets_offsets_from_oat_class_.resize(num_methods);
1476
1477 // Since both kOatClassNoneCompiled and kOatClassAllCompiled could
1478 // apply when there are 0 methods, we just arbitrarily say that 0
1479 // methods means kOatClassNoneCompiled and that we won't use
1480 // kOatClassAllCompiled unless there is at least one compiled
1481 // method. This means in an interpretter only system, we can assert
1482 // that all classes are kOatClassNoneCompiled.
1483 if (num_non_null_compiled_methods == 0) {
1484 type_ = kOatClassNoneCompiled;
1485 } else if (num_non_null_compiled_methods == num_methods) {
1486 type_ = kOatClassAllCompiled;
1487 } else {
1488 type_ = kOatClassSomeCompiled;
1489 }
1490
Brian Carlstrom0755ec52012-01-11 15:19:46 -08001491 status_ = status;
Brian Carlstromba150c32013-08-27 17:31:03 -07001492 method_offsets_.resize(num_non_null_compiled_methods);
Vladimir Marko8a630572014-04-09 18:45:35 +01001493 method_headers_.resize(num_non_null_compiled_methods);
Brian Carlstromba150c32013-08-27 17:31:03 -07001494
1495 uint32_t oat_method_offsets_offset_from_oat_class = sizeof(type_) + sizeof(status_);
1496 if (type_ == kOatClassSomeCompiled) {
1497 method_bitmap_ = new BitVector(num_methods, false, Allocator::GetMallocAllocator());
1498 method_bitmap_size_ = method_bitmap_->GetSizeOf();
1499 oat_method_offsets_offset_from_oat_class += sizeof(method_bitmap_size_);
1500 oat_method_offsets_offset_from_oat_class += method_bitmap_size_;
1501 } else {
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001502 method_bitmap_ = nullptr;
Brian Carlstromba150c32013-08-27 17:31:03 -07001503 method_bitmap_size_ = 0;
1504 }
1505
1506 for (size_t i = 0; i < num_methods; i++) {
Vladimir Marko96c6ab92014-04-08 14:00:50 +01001507 CompiledMethod* compiled_method = compiled_methods_[i];
Mathieu Chartier2cebb242015-04-21 16:50:40 -07001508 if (compiled_method == nullptr) {
Brian Carlstromba150c32013-08-27 17:31:03 -07001509 oat_method_offsets_offsets_from_oat_class_[i] = 0;
1510 } else {
1511 oat_method_offsets_offsets_from_oat_class_[i] = oat_method_offsets_offset_from_oat_class;
1512 oat_method_offsets_offset_from_oat_class += sizeof(OatMethodOffsets);
1513 if (type_ == kOatClassSomeCompiled) {
1514 method_bitmap_->SetBit(i);
1515 }
1516 }
1517 }
Brian Carlstrome24fa612011-09-29 00:53:55 -07001518}
1519
Brian Carlstromba150c32013-08-27 17:31:03 -07001520OatWriter::OatClass::~OatClass() {
Mathieu Chartier661974a2014-01-09 11:23:53 -08001521 delete method_bitmap_;
Brian Carlstromba150c32013-08-27 17:31:03 -07001522}
1523
Brian Carlstrom265091e2013-01-30 14:08:26 -08001524size_t OatWriter::OatClass::GetOatMethodOffsetsOffsetFromOatHeader(
1525 size_t class_def_method_index_) const {
Brian Carlstromba150c32013-08-27 17:31:03 -07001526 uint32_t method_offset = GetOatMethodOffsetsOffsetFromOatClass(class_def_method_index_);
1527 if (method_offset == 0) {
1528 return 0;
1529 }
1530 return offset_ + method_offset;
Brian Carlstrom265091e2013-01-30 14:08:26 -08001531}
1532
1533size_t OatWriter::OatClass::GetOatMethodOffsetsOffsetFromOatClass(
1534 size_t class_def_method_index_) const {
Brian Carlstromba150c32013-08-27 17:31:03 -07001535 return oat_method_offsets_offsets_from_oat_class_[class_def_method_index_];
Brian Carlstrom265091e2013-01-30 14:08:26 -08001536}
1537
1538size_t OatWriter::OatClass::SizeOf() const {
Brian Carlstromba150c32013-08-27 17:31:03 -07001539 return sizeof(status_)
1540 + sizeof(type_)
1541 + ((method_bitmap_size_ == 0) ? 0 : sizeof(method_bitmap_size_))
1542 + method_bitmap_size_
1543 + (sizeof(method_offsets_[0]) * method_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -07001544}
1545
Ian Rogers3d504072014-03-01 09:16:49 -08001546void OatWriter::OatClass::UpdateChecksum(OatHeader* oat_header) const {
1547 oat_header->UpdateChecksum(&status_, sizeof(status_));
1548 oat_header->UpdateChecksum(&type_, sizeof(type_));
Brian Carlstromba150c32013-08-27 17:31:03 -07001549 if (method_bitmap_size_ != 0) {
1550 CHECK_EQ(kOatClassSomeCompiled, type_);
Ian Rogers3d504072014-03-01 09:16:49 -08001551 oat_header->UpdateChecksum(&method_bitmap_size_, sizeof(method_bitmap_size_));
1552 oat_header->UpdateChecksum(method_bitmap_->GetRawStorage(), method_bitmap_size_);
Brian Carlstromba150c32013-08-27 17:31:03 -07001553 }
Ian Rogers3d504072014-03-01 09:16:49 -08001554 oat_header->UpdateChecksum(&method_offsets_[0],
1555 sizeof(method_offsets_[0]) * method_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -07001556}
1557
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001558bool OatWriter::OatClass::Write(OatWriter* oat_writer,
Ian Rogers3d504072014-03-01 09:16:49 -08001559 OutputStream* out,
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001560 const size_t file_offset) const {
Brian Carlstrom265091e2013-01-30 14:08:26 -08001561 DCHECK_OFFSET_();
Ian Rogers3d504072014-03-01 09:16:49 -08001562 if (!out->WriteFully(&status_, sizeof(status_))) {
1563 PLOG(ERROR) << "Failed to write class status to " << out->GetLocation();
Brian Carlstrom0755ec52012-01-11 15:19:46 -08001564 return false;
1565 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001566 oat_writer->size_oat_class_status_ += sizeof(status_);
Ian Rogers3d504072014-03-01 09:16:49 -08001567 if (!out->WriteFully(&type_, sizeof(type_))) {
1568 PLOG(ERROR) << "Failed to write oat class type to " << out->GetLocation();
Brian Carlstromba150c32013-08-27 17:31:03 -07001569 return false;
1570 }
1571 oat_writer->size_oat_class_type_ += sizeof(type_);
1572 if (method_bitmap_size_ != 0) {
1573 CHECK_EQ(kOatClassSomeCompiled, type_);
Ian Rogers3d504072014-03-01 09:16:49 -08001574 if (!out->WriteFully(&method_bitmap_size_, sizeof(method_bitmap_size_))) {
1575 PLOG(ERROR) << "Failed to write method bitmap size to " << out->GetLocation();
Brian Carlstromba150c32013-08-27 17:31:03 -07001576 return false;
1577 }
1578 oat_writer->size_oat_class_method_bitmaps_ += sizeof(method_bitmap_size_);
Ian Rogers3d504072014-03-01 09:16:49 -08001579 if (!out->WriteFully(method_bitmap_->GetRawStorage(), method_bitmap_size_)) {
1580 PLOG(ERROR) << "Failed to write method bitmap to " << out->GetLocation();
Brian Carlstromba150c32013-08-27 17:31:03 -07001581 return false;
1582 }
1583 oat_writer->size_oat_class_method_bitmaps_ += method_bitmap_size_;
1584 }
Ian Rogers3d504072014-03-01 09:16:49 -08001585 if (!out->WriteFully(&method_offsets_[0],
Brian Carlstromcd60ac72013-01-20 17:09:51 -08001586 sizeof(method_offsets_[0]) * method_offsets_.size())) {
Ian Rogers3d504072014-03-01 09:16:49 -08001587 PLOG(ERROR) << "Failed to write method offsets to " << out->GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001588 return false;
1589 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001590 oat_writer->size_oat_class_method_offsets_ += sizeof(method_offsets_[0]) * method_offsets_.size();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001591 return true;
1592}
1593
Brian Carlstrome24fa612011-09-29 00:53:55 -07001594} // namespace art