blob: 7c5669a3ab3260ace94374f7914e23d9632999a8 [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
Brian Carlstromba150c32013-08-27 17:31:03 -070021#include "base/bit_vector.h"
Elliott Hughes1aa246d2012-12-13 09:29:36 -080022#include "base/stl_util.h"
Elliott Hughes76160052012-12-12 16:31:20 -080023#include "base/unix_file/fd_file.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070024#include "class_linker.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070025#include "dex_file-inl.h"
Vladimir Markoc7f83202014-01-24 17:55:18 +000026#include "dex/verification_results.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070027#include "gc/space/space.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070028#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080029#include "mirror/array.h"
30#include "mirror/class_loader.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070031#include "mirror/object-inl.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070032#include "os.h"
Brian Carlstromcd60ac72013-01-20 17:09:51 -080033#include "output_stream.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070034#include "safe_map.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070035#include "scoped_thread_state_change.h"
jeffhaoec014232012-09-05 10:42:25 -070036#include "verifier/method_verifier.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070037
38namespace art {
39
Brian Carlstrom3320cf42011-10-04 14:58:28 -070040OatWriter::OatWriter(const std::vector<const DexFile*>& dex_files,
Brian Carlstrom28db0122012-10-18 16:20:41 -070041 uint32_t image_file_location_oat_checksum,
Ian Rogersef7d42f2014-01-06 12:55:46 -080042 uintptr_t image_file_location_oat_begin,
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070043 const std::string& image_file_location,
Ian Rogersca368cb2013-11-15 15:52:08 -080044 const CompilerDriver* compiler,
45 TimingLogger* timings)
Jeff Hao0aba0ba2013-06-03 14:49:28 -070046 : compiler_driver_(compiler),
47 dex_files_(&dex_files),
48 image_file_location_oat_checksum_(image_file_location_oat_checksum),
49 image_file_location_oat_begin_(image_file_location_oat_begin),
50 image_file_location_(image_file_location),
51 oat_header_(NULL),
52 size_dex_file_alignment_(0),
53 size_executable_offset_alignment_(0),
54 size_oat_header_(0),
55 size_oat_header_image_file_location_(0),
56 size_dex_file_(0),
Ian Rogers848871b2013-08-05 10:56:33 -070057 size_interpreter_to_interpreter_bridge_(0),
58 size_interpreter_to_compiled_code_bridge_(0),
59 size_jni_dlsym_lookup_(0),
Jeff Hao88474b42013-10-23 16:24:40 -070060 size_portable_imt_conflict_trampoline_(0),
Jeff Hao0aba0ba2013-06-03 14:49:28 -070061 size_portable_resolution_trampoline_(0),
Ian Rogers848871b2013-08-05 10:56:33 -070062 size_portable_to_interpreter_bridge_(0),
Jeff Hao88474b42013-10-23 16:24:40 -070063 size_quick_imt_conflict_trampoline_(0),
Jeff Hao0aba0ba2013-06-03 14:49:28 -070064 size_quick_resolution_trampoline_(0),
Ian Rogers848871b2013-08-05 10:56:33 -070065 size_quick_to_interpreter_bridge_(0),
66 size_trampoline_alignment_(0),
Jeff Hao0aba0ba2013-06-03 14:49:28 -070067 size_code_size_(0),
68 size_code_(0),
69 size_code_alignment_(0),
70 size_mapping_table_(0),
71 size_vmap_table_(0),
72 size_gc_map_(0),
73 size_oat_dex_file_location_size_(0),
74 size_oat_dex_file_location_data_(0),
75 size_oat_dex_file_location_checksum_(0),
76 size_oat_dex_file_offset_(0),
77 size_oat_dex_file_methods_offsets_(0),
Brian Carlstromba150c32013-08-27 17:31:03 -070078 size_oat_class_type_(0),
Jeff Hao0aba0ba2013-06-03 14:49:28 -070079 size_oat_class_status_(0),
Brian Carlstromba150c32013-08-27 17:31:03 -070080 size_oat_class_method_bitmaps_(0),
Jeff Hao0aba0ba2013-06-03 14:49:28 -070081 size_oat_class_method_offsets_(0) {
Ian Rogersca368cb2013-11-15 15:52:08 -080082 size_t offset;
83 {
84 TimingLogger::ScopedSplit split("InitOatHeader", timings);
85 offset = InitOatHeader();
86 }
87 {
88 TimingLogger::ScopedSplit split("InitOatDexFiles", timings);
89 offset = InitOatDexFiles(offset);
90 }
91 {
92 TimingLogger::ScopedSplit split("InitDexFiles", timings);
93 offset = InitDexFiles(offset);
94 }
95 {
96 TimingLogger::ScopedSplit split("InitOatClasses", timings);
97 offset = InitOatClasses(offset);
98 }
99 {
100 TimingLogger::ScopedSplit split("InitOatCode", timings);
101 offset = InitOatCode(offset);
102 }
103 {
104 TimingLogger::ScopedSplit split("InitOatCodeDexFiles", timings);
105 offset = InitOatCodeDexFiles(offset);
106 }
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700107 size_ = offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700108
109 CHECK_EQ(dex_files_->size(), oat_dex_files_.size());
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700110 CHECK(image_file_location.empty() == compiler->IsImage());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700111}
112
Ian Rogers0571d352011-11-03 19:51:38 -0700113OatWriter::~OatWriter() {
114 delete oat_header_;
115 STLDeleteElements(&oat_dex_files_);
Brian Carlstrom389efb02012-01-11 12:06:26 -0800116 STLDeleteElements(&oat_classes_);
Ian Rogers0571d352011-11-03 19:51:38 -0700117}
118
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700119size_t OatWriter::InitOatHeader() {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700120 // create the OatHeader
Ian Rogers1212a022013-03-04 10:48:41 -0800121 oat_header_ = new OatHeader(compiler_driver_->GetInstructionSet(),
Dave Allison70202782013-10-22 17:52:19 -0700122 compiler_driver_->GetInstructionSetFeatures(),
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700123 dex_files_,
Brian Carlstrom28db0122012-10-18 16:20:41 -0700124 image_file_location_oat_checksum_,
125 image_file_location_oat_begin_,
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700126 image_file_location_);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700127 size_t offset = sizeof(*oat_header_);
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700128 offset += image_file_location_.size();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700129 return offset;
130}
131
132size_t OatWriter::InitOatDexFiles(size_t offset) {
133 // create the OatDexFiles
134 for (size_t i = 0; i != dex_files_->size(); ++i) {
135 const DexFile* dex_file = (*dex_files_)[i];
136 CHECK(dex_file != NULL);
Brian Carlstrom265091e2013-01-30 14:08:26 -0800137 OatDexFile* oat_dex_file = new OatDexFile(offset, *dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700138 oat_dex_files_.push_back(oat_dex_file);
139 offset += oat_dex_file->SizeOf();
140 }
141 return offset;
142}
143
Brian Carlstrom89521892011-12-07 22:05:07 -0800144size_t OatWriter::InitDexFiles(size_t offset) {
145 // calculate the offsets within OatDexFiles to the DexFiles
146 for (size_t i = 0; i != dex_files_->size(); ++i) {
147 // dex files are required to be 4 byte aligned
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700148 size_t original_offset = offset;
Brian Carlstrom89521892011-12-07 22:05:07 -0800149 offset = RoundUp(offset, 4);
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700150 size_dex_file_alignment_ += offset - original_offset;
Brian Carlstrom89521892011-12-07 22:05:07 -0800151
152 // set offset in OatDexFile to DexFile
153 oat_dex_files_[i]->dex_file_offset_ = offset;
154
155 const DexFile* dex_file = (*dex_files_)[i];
156 offset += dex_file->GetHeader().file_size_;
157 }
158 return offset;
159}
160
Brian Carlstrom389efb02012-01-11 12:06:26 -0800161size_t OatWriter::InitOatClasses(size_t offset) {
162 // create the OatClasses
163 // calculate the offsets within OatDexFiles to OatClasses
Brian Carlstrome24fa612011-09-29 00:53:55 -0700164 for (size_t i = 0; i != dex_files_->size(); ++i) {
165 const DexFile* dex_file = (*dex_files_)[i];
166 for (size_t class_def_index = 0;
167 class_def_index < dex_file->NumClassDefs();
Ian Rogersc20a83e2012-01-18 18:15:32 -0800168 class_def_index++) {
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800169 oat_dex_files_[i]->methods_offsets_[class_def_index] = offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700170 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
171 const byte* class_data = dex_file->GetClassData(class_def);
Brian Carlstromba150c32013-08-27 17:31:03 -0700172 uint32_t num_non_null_compiled_methods = 0;
173 UniquePtr<std::vector<CompiledMethod*> > compiled_methods(new std::vector<CompiledMethod*>());
Ian Rogers0571d352011-11-03 19:51:38 -0700174 if (class_data != NULL) { // ie not an empty class, such as a marker interface
175 ClassDataItemIterator it(*dex_file, class_data);
176 size_t num_direct_methods = it.NumDirectMethods();
177 size_t num_virtual_methods = it.NumVirtualMethods();
Brian Carlstromba150c32013-08-27 17:31:03 -0700178 size_t num_methods = num_direct_methods + num_virtual_methods;
179
180 // Fill in the compiled_methods_ array for methods that have a
181 // CompiledMethod. We track the number of non-null entries in
182 // num_non_null_compiled_methods since we only want to allocate
183 // OatMethodOffsets for the compiled methods.
184 compiled_methods->reserve(num_methods);
185 while (it.HasNextStaticField()) {
186 it.Next();
187 }
188 while (it.HasNextInstanceField()) {
189 it.Next();
190 }
191 size_t class_def_method_index = 0;
192 while (it.HasNextDirectMethod()) {
193 uint32_t method_idx = it.GetMemberIndex();
194 CompiledMethod* compiled_method =
195 compiler_driver_->GetCompiledMethod(MethodReference(dex_file, method_idx));
196 compiled_methods->push_back(compiled_method);
197 if (compiled_method != NULL) {
198 num_non_null_compiled_methods++;
199 }
200 class_def_method_index++;
201 it.Next();
202 }
203 while (it.HasNextVirtualMethod()) {
204 uint32_t method_idx = it.GetMemberIndex();
205 CompiledMethod* compiled_method =
206 compiler_driver_->GetCompiledMethod(MethodReference(dex_file, method_idx));
207 compiled_methods->push_back(compiled_method);
208 if (compiled_method != NULL) {
209 num_non_null_compiled_methods++;
210 }
211 class_def_method_index++;
212 it.Next();
213 }
Ian Rogers0571d352011-11-03 19:51:38 -0700214 }
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800215
Brian Carlstrom51c24672013-07-11 16:00:56 -0700216 ClassReference class_ref(dex_file, class_def_index);
Ian Rogers1212a022013-03-04 10:48:41 -0800217 CompiledClass* compiled_class = compiler_driver_->GetCompiledClass(class_ref);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800218 mirror::Class::Status status;
jeffhaoec014232012-09-05 10:42:25 -0700219 if (compiled_class != NULL) {
220 status = compiled_class->GetStatus();
Vladimir Markoc7f83202014-01-24 17:55:18 +0000221 } else if (compiler_driver_->GetVerificationResults()->IsClassRejected(class_ref)) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800222 status = mirror::Class::kStatusError;
jeffhaoec014232012-09-05 10:42:25 -0700223 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800224 status = mirror::Class::kStatusNotReady;
jeffhaoec014232012-09-05 10:42:25 -0700225 }
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800226
Brian Carlstromba150c32013-08-27 17:31:03 -0700227 OatClass* oat_class = new OatClass(offset, compiled_methods.release(),
228 num_non_null_compiled_methods, status);
Brian Carlstrom389efb02012-01-11 12:06:26 -0800229 oat_classes_.push_back(oat_class);
230 offset += oat_class->SizeOf();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700231 }
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800232 oat_dex_files_[i]->UpdateChecksum(*oat_header_);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700233 }
234 return offset;
235}
236
237size_t OatWriter::InitOatCode(size_t offset) {
238 // calculate the offsets within OatHeader to executable code
239 size_t old_offset = offset;
240 // required to be on a new page boundary
241 offset = RoundUp(offset, kPageSize);
242 oat_header_->SetExecutableOffset(offset);
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700243 size_executable_offset_alignment_ = offset - old_offset;
244 if (compiler_driver_->IsImage()) {
245 InstructionSet instruction_set = compiler_driver_->GetInstructionSet();
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700246
Ian Rogers848871b2013-08-05 10:56:33 -0700247 #define DO_TRAMPOLINE(field, fn_name) \
248 offset = CompiledCode::AlignCode(offset, instruction_set); \
249 oat_header_->Set ## fn_name ## Offset(offset); \
250 field.reset(compiler_driver_->Create ## fn_name()); \
251 offset += field->size();
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700252
Ian Rogers848871b2013-08-05 10:56:33 -0700253 DO_TRAMPOLINE(interpreter_to_interpreter_bridge_, InterpreterToInterpreterBridge);
254 DO_TRAMPOLINE(interpreter_to_compiled_code_bridge_, InterpreterToCompiledCodeBridge);
255 DO_TRAMPOLINE(jni_dlsym_lookup_, JniDlsymLookup);
Jeff Hao88474b42013-10-23 16:24:40 -0700256 DO_TRAMPOLINE(portable_imt_conflict_trampoline_, PortableImtConflictTrampoline);
Ian Rogers848871b2013-08-05 10:56:33 -0700257 DO_TRAMPOLINE(portable_resolution_trampoline_, PortableResolutionTrampoline);
258 DO_TRAMPOLINE(portable_to_interpreter_bridge_, PortableToInterpreterBridge);
Jeff Hao88474b42013-10-23 16:24:40 -0700259 DO_TRAMPOLINE(quick_imt_conflict_trampoline_, QuickImtConflictTrampoline);
Ian Rogers848871b2013-08-05 10:56:33 -0700260 DO_TRAMPOLINE(quick_resolution_trampoline_, QuickResolutionTrampoline);
261 DO_TRAMPOLINE(quick_to_interpreter_bridge_, QuickToInterpreterBridge);
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700262
Ian Rogers848871b2013-08-05 10:56:33 -0700263 #undef DO_TRAMPOLINE
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700264 } else {
Ian Rogers848871b2013-08-05 10:56:33 -0700265 oat_header_->SetInterpreterToInterpreterBridgeOffset(0);
266 oat_header_->SetInterpreterToCompiledCodeBridgeOffset(0);
267 oat_header_->SetJniDlsymLookupOffset(0);
Jeff Hao88474b42013-10-23 16:24:40 -0700268 oat_header_->SetPortableImtConflictTrampolineOffset(0);
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700269 oat_header_->SetPortableResolutionTrampolineOffset(0);
Ian Rogers848871b2013-08-05 10:56:33 -0700270 oat_header_->SetPortableToInterpreterBridgeOffset(0);
Jeff Hao88474b42013-10-23 16:24:40 -0700271 oat_header_->SetQuickImtConflictTrampolineOffset(0);
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700272 oat_header_->SetQuickResolutionTrampolineOffset(0);
Ian Rogers848871b2013-08-05 10:56:33 -0700273 oat_header_->SetQuickToInterpreterBridgeOffset(0);
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700274 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700275 return offset;
276}
277
278size_t OatWriter::InitOatCodeDexFiles(size_t offset) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700279 size_t oat_class_index = 0;
280 for (size_t i = 0; i != dex_files_->size(); ++i) {
281 const DexFile* dex_file = (*dex_files_)[i];
282 CHECK(dex_file != NULL);
Brian Carlstromba150c32013-08-27 17:31:03 -0700283 offset = InitOatCodeDexFile(offset, &oat_class_index, *dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700284 }
285 return offset;
286}
287
288size_t OatWriter::InitOatCodeDexFile(size_t offset,
Brian Carlstromba150c32013-08-27 17:31:03 -0700289 size_t* oat_class_index,
Brian Carlstrome24fa612011-09-29 00:53:55 -0700290 const DexFile& dex_file) {
Elliott Hughesba8eee12012-01-24 20:25:24 -0800291 for (size_t class_def_index = 0;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700292 class_def_index < dex_file.NumClassDefs();
Brian Carlstromba150c32013-08-27 17:31:03 -0700293 class_def_index++, (*oat_class_index)++) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700294 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Brian Carlstromba150c32013-08-27 17:31:03 -0700295 offset = InitOatCodeClassDef(offset, *oat_class_index, class_def_index, dex_file, class_def);
296 oat_classes_[*oat_class_index]->UpdateChecksum(*oat_header_);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700297 }
298 return offset;
299}
300
301size_t OatWriter::InitOatCodeClassDef(size_t offset,
Ian Rogersc20a83e2012-01-18 18:15:32 -0800302 size_t oat_class_index, size_t class_def_index,
Brian Carlstrome24fa612011-09-29 00:53:55 -0700303 const DexFile& dex_file,
304 const DexFile::ClassDef& class_def) {
305 const byte* class_data = dex_file.GetClassData(class_def);
Ian Rogers0571d352011-11-03 19:51:38 -0700306 if (class_data == NULL) {
307 // empty class, such as a marker interface
Ian Rogers387b6992011-10-31 17:52:37 -0700308 return offset;
309 }
Ian Rogers0571d352011-11-03 19:51:38 -0700310 ClassDataItemIterator it(dex_file, class_data);
Brian Carlstromba150c32013-08-27 17:31:03 -0700311 CHECK_LE(oat_classes_[oat_class_index]->method_offsets_.size(),
Ian Rogers0571d352011-11-03 19:51:38 -0700312 it.NumDirectMethods() + it.NumVirtualMethods());
313 // Skip fields
314 while (it.HasNextStaticField()) {
315 it.Next();
316 }
317 while (it.HasNextInstanceField()) {
318 it.Next();
319 }
320 // Process methods
Brian Carlstrome24fa612011-09-29 00:53:55 -0700321 size_t class_def_method_index = 0;
Brian Carlstromba150c32013-08-27 17:31:03 -0700322 size_t method_offsets_index = 0;
Ian Rogers0571d352011-11-03 19:51:38 -0700323 while (it.HasNextDirectMethod()) {
Ian Rogersc20a83e2012-01-18 18:15:32 -0800324 bool is_native = (it.GetMemberAccessFlags() & kAccNative) != 0;
Ian Rogers08f753d2012-08-24 14:35:25 -0700325 offset = InitOatCodeMethod(offset, oat_class_index, class_def_index, class_def_method_index,
Brian Carlstromba150c32013-08-27 17:31:03 -0700326 &method_offsets_index, is_native,
327 it.GetMethodInvokeType(class_def), it.GetMemberIndex(), dex_file);
Ian Rogers0571d352011-11-03 19:51:38 -0700328 class_def_method_index++;
329 it.Next();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700330 }
Ian Rogers0571d352011-11-03 19:51:38 -0700331 while (it.HasNextVirtualMethod()) {
Ian Rogersc20a83e2012-01-18 18:15:32 -0800332 bool is_native = (it.GetMemberAccessFlags() & kAccNative) != 0;
Ian Rogers08f753d2012-08-24 14:35:25 -0700333 offset = InitOatCodeMethod(offset, oat_class_index, class_def_index, class_def_method_index,
Brian Carlstromba150c32013-08-27 17:31:03 -0700334 &method_offsets_index, is_native,
335 it.GetMethodInvokeType(class_def), it.GetMemberIndex(), dex_file);
Ian Rogers0571d352011-11-03 19:51:38 -0700336 class_def_method_index++;
337 it.Next();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700338 }
Ian Rogers0571d352011-11-03 19:51:38 -0700339 DCHECK(!it.HasNext());
Brian Carlstromba150c32013-08-27 17:31:03 -0700340 CHECK_LE(method_offsets_index, class_def_method_index);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700341 return offset;
342}
343
Elliott Hughes1bac54f2012-03-16 12:48:31 -0700344size_t OatWriter::InitOatCodeMethod(size_t offset, size_t oat_class_index,
345 size_t __attribute__((unused)) class_def_index,
346 size_t class_def_method_index,
Brian Carlstromba150c32013-08-27 17:31:03 -0700347 size_t* method_offsets_index,
Elliott Hughes1bac54f2012-03-16 12:48:31 -0700348 bool __attribute__((unused)) is_native,
Brian Carlstrom265091e2013-01-30 14:08:26 -0800349 InvokeType invoke_type,
Brian Carlstromba150c32013-08-27 17:31:03 -0700350 uint32_t method_idx, const DexFile& dex_file) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800351 // Derived from CompiledMethod if available.
352 uint32_t quick_code_offset = 0;
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700353 uint32_t frame_size_in_bytes = kStackAlignment;
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700354 uint32_t core_spill_mask = 0;
355 uint32_t fp_spill_mask = 0;
356 uint32_t mapping_table_offset = 0;
357 uint32_t vmap_table_offset = 0;
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800358 uint32_t gc_map_offset = 0;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700359
Brian Carlstrom265091e2013-01-30 14:08:26 -0800360 OatClass* oat_class = oat_classes_[oat_class_index];
Brian Carlstromba150c32013-08-27 17:31:03 -0700361 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index);
Logan Chien971bf3f2012-05-01 15:47:55 +0800362
Ian Rogersef7d42f2014-01-06 12:55:46 -0800363 if (compiled_method != NULL) {
364 const std::vector<uint8_t>* portable_code = compiled_method->GetPortableCode();
365 const std::vector<uint8_t>* quick_code = compiled_method->GetQuickCode();
366 if (portable_code != nullptr) {
367 CHECK(quick_code == nullptr);
368 size_t oat_method_offsets_offset =
369 oat_class->GetOatMethodOffsetsOffsetFromOatHeader(class_def_method_index);
370 compiled_method->AddOatdataOffsetToCompliledCodeOffset(
371 oat_method_offsets_offset + OFFSETOF_MEMBER(OatMethodOffsets, code_offset_));
jeffhao55d78212011-11-02 11:41:50 -0700372 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800373 CHECK(quick_code != nullptr);
374 offset = compiled_method->AlignCode(offset);
375 DCHECK_ALIGNED(offset, kArmAlignment);
376 uint32_t code_size = quick_code->size() * sizeof(uint8_t);
377 CHECK_NE(code_size, 0U);
378 uint32_t thumb_offset = compiled_method->CodeDelta();
379 quick_code_offset = offset + sizeof(code_size) + thumb_offset;
380
381 // Deduplicate code arrays
382 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator code_iter =
383 code_offsets_.find(quick_code);
384 if (code_iter != code_offsets_.end()) {
385 quick_code_offset = code_iter->second;
386 } else {
387 code_offsets_.Put(quick_code, quick_code_offset);
388 offset += sizeof(code_size); // code size is prepended before code
389 offset += code_size;
390 oat_header_->UpdateChecksum(&(*quick_code)[0], code_size);
391 }
Logan Chien971bf3f2012-05-01 15:47:55 +0800392 }
393 frame_size_in_bytes = compiled_method->GetFrameSizeInBytes();
394 core_spill_mask = compiled_method->GetCoreSpillMask();
395 fp_spill_mask = compiled_method->GetFpSpillMask();
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700396
Ian Rogers1809a722013-08-09 22:05:32 -0700397 const std::vector<uint8_t>& mapping_table = compiled_method->GetMappingTable();
Logan Chien971bf3f2012-05-01 15:47:55 +0800398 size_t mapping_table_size = mapping_table.size() * sizeof(mapping_table[0]);
399 mapping_table_offset = (mapping_table_size == 0) ? 0 : offset;
jeffhao55d78212011-11-02 11:41:50 -0700400
Logan Chien971bf3f2012-05-01 15:47:55 +0800401 // Deduplicate mapping tables
Ian Rogers1809a722013-08-09 22:05:32 -0700402 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator mapping_iter =
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700403 mapping_table_offsets_.find(&mapping_table);
Logan Chien971bf3f2012-05-01 15:47:55 +0800404 if (mapping_iter != mapping_table_offsets_.end()) {
405 mapping_table_offset = mapping_iter->second;
406 } else {
407 mapping_table_offsets_.Put(&mapping_table, mapping_table_offset);
408 offset += mapping_table_size;
409 oat_header_->UpdateChecksum(&mapping_table[0], mapping_table_size);
410 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700411
Ian Rogers1809a722013-08-09 22:05:32 -0700412 const std::vector<uint8_t>& vmap_table = compiled_method->GetVmapTable();
Logan Chien971bf3f2012-05-01 15:47:55 +0800413 size_t vmap_table_size = vmap_table.size() * sizeof(vmap_table[0]);
414 vmap_table_offset = (vmap_table_size == 0) ? 0 : offset;
jeffhao55d78212011-11-02 11:41:50 -0700415
Logan Chien971bf3f2012-05-01 15:47:55 +0800416 // Deduplicate vmap tables
Ian Rogers1809a722013-08-09 22:05:32 -0700417 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator vmap_iter =
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700418 vmap_table_offsets_.find(&vmap_table);
Logan Chien971bf3f2012-05-01 15:47:55 +0800419 if (vmap_iter != vmap_table_offsets_.end()) {
420 vmap_table_offset = vmap_iter->second;
421 } else {
422 vmap_table_offsets_.Put(&vmap_table, vmap_table_offset);
423 offset += vmap_table_size;
424 oat_header_->UpdateChecksum(&vmap_table[0], vmap_table_size);
425 }
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800426
Ian Rogersfbdc0fa2013-04-18 16:48:17 -0700427 const std::vector<uint8_t>& gc_map = compiled_method->GetGcMap();
Logan Chien971bf3f2012-05-01 15:47:55 +0800428 size_t gc_map_size = gc_map.size() * sizeof(gc_map[0]);
429 gc_map_offset = (gc_map_size == 0) ? 0 : offset;
Logan Chienccb7bf12012-03-28 12:52:32 +0800430
Mathieu Chartier590fee92013-09-13 13:46:47 -0700431 if (kIsDebugBuild) {
432 // We expect GC maps except when the class hasn't been verified or the method is native
433 ClassReference class_ref(&dex_file, class_def_index);
434 CompiledClass* compiled_class = compiler_driver_->GetCompiledClass(class_ref);
435 mirror::Class::Status status;
436 if (compiled_class != NULL) {
437 status = compiled_class->GetStatus();
Vladimir Markoc7f83202014-01-24 17:55:18 +0000438 } else if (compiler_driver_->GetVerificationResults()->IsClassRejected(class_ref)) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700439 status = mirror::Class::kStatusError;
440 } else {
441 status = mirror::Class::kStatusNotReady;
442 }
443 CHECK(gc_map_size != 0 || is_native || status < mirror::Class::kStatusVerified)
444 << &gc_map << " " << gc_map_size << " " << (is_native ? "true" : "false") << " "
445 << (status < mirror::Class::kStatusVerified) << " " << status << " "
446 << PrettyMethod(method_idx, dex_file);
jeffhaoec014232012-09-05 10:42:25 -0700447 }
Ian Rogersc20a83e2012-01-18 18:15:32 -0800448
Logan Chien971bf3f2012-05-01 15:47:55 +0800449 // Deduplicate GC maps
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700450 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator gc_map_iter =
451 gc_map_offsets_.find(&gc_map);
Logan Chien971bf3f2012-05-01 15:47:55 +0800452 if (gc_map_iter != gc_map_offsets_.end()) {
453 gc_map_offset = gc_map_iter->second;
454 } else {
455 gc_map_offsets_.Put(&gc_map, gc_map_offset);
456 offset += gc_map_size;
457 oat_header_->UpdateChecksum(&gc_map[0], gc_map_size);
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800458 }
Brian Carlstromba150c32013-08-27 17:31:03 -0700459
460 oat_class->method_offsets_[*method_offsets_index] =
Ian Rogersef7d42f2014-01-06 12:55:46 -0800461 OatMethodOffsets(quick_code_offset,
Brian Carlstromba150c32013-08-27 17:31:03 -0700462 frame_size_in_bytes,
463 core_spill_mask,
464 fp_spill_mask,
465 mapping_table_offset,
466 vmap_table_offset,
467 gc_map_offset);
468 (*method_offsets_index)++;
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700469 }
470
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700471
Ian Rogers1212a022013-03-04 10:48:41 -0800472 if (compiler_driver_->IsImage()) {
Ian Rogers0571d352011-11-03 19:51:38 -0700473 ClassLinker* linker = Runtime::Current()->GetClassLinker();
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700474 // Unchecked as we hold mutator_lock_ on entry.
475 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700476 SirtRef<mirror::DexCache> dex_cache(soa.Self(), linker->FindDexCache(dex_file));
477 SirtRef<mirror::ClassLoader> class_loader(soa.Self(), nullptr);
Brian Carlstromba150c32013-08-27 17:31:03 -0700478 mirror::ArtMethod* method = linker->ResolveMethod(dex_file, method_idx, dex_cache,
Mathieu Chartier590fee92013-09-13 13:46:47 -0700479 class_loader, nullptr, invoke_type);
Ian Rogers0571d352011-11-03 19:51:38 -0700480 CHECK(method != NULL);
481 method->SetFrameSizeInBytes(frame_size_in_bytes);
482 method->SetCoreSpillMask(core_spill_mask);
483 method->SetFpSpillMask(fp_spill_mask);
484 method->SetOatMappingTableOffset(mapping_table_offset);
Ian Rogers19846512012-02-24 11:42:47 -0800485 // Don't overwrite static method trampoline
486 if (!method->IsStatic() || method->IsConstructor() ||
487 method->GetDeclaringClass()->IsInitialized()) {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800488 // TODO: record portable code offsets: method->SetPortableOatCodeOffset(portable_code_offset);
489 method->SetQuickOatCodeOffset(quick_code_offset);
Ian Rogers19846512012-02-24 11:42:47 -0800490 } else {
Ian Rogersef7d42f2014-01-06 12:55:46 -0800491 method->SetEntryPointFromPortableCompiledCode(nullptr);
492 method->SetEntryPointFromQuickCompiledCode(nullptr);
Ian Rogers19846512012-02-24 11:42:47 -0800493 }
Ian Rogers0571d352011-11-03 19:51:38 -0700494 method->SetOatVmapTableOffset(vmap_table_offset);
Ian Rogers0c7abda2012-09-19 13:33:42 -0700495 method->SetOatNativeGcMapOffset(gc_map_offset);
Ian Rogers0571d352011-11-03 19:51:38 -0700496 }
Logan Chien8b977d32012-02-21 19:14:55 +0800497
Brian Carlstrome24fa612011-09-29 00:53:55 -0700498 return offset;
499}
500
Brian Carlstrom265091e2013-01-30 14:08:26 -0800501#define DCHECK_OFFSET() \
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700502 DCHECK_EQ(static_cast<off_t>(file_offset + relative_offset), out.Seek(0, kSeekCurrent)) \
503 << "file_offset=" << file_offset << " relative_offset=" << relative_offset
Brian Carlstrom265091e2013-01-30 14:08:26 -0800504
505#define DCHECK_OFFSET_() \
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700506 DCHECK_EQ(static_cast<off_t>(file_offset + offset_), out.Seek(0, kSeekCurrent)) \
507 << "file_offset=" << file_offset << " offset_=" << offset_
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700508
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800509bool OatWriter::Write(OutputStream& out) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700510 const size_t file_offset = out.Seek(0, kSeekCurrent);
511
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800512 if (!out.WriteFully(oat_header_, sizeof(*oat_header_))) {
513 PLOG(ERROR) << "Failed to write oat header to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700514 return false;
515 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700516 size_oat_header_ += sizeof(*oat_header_);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700517
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800518 if (!out.WriteFully(image_file_location_.data(), image_file_location_.size())) {
519 PLOG(ERROR) << "Failed to write oat header image file location to " << out.GetLocation();
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700520 return false;
521 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700522 size_oat_header_image_file_location_ += image_file_location_.size();
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700523
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700524 if (!WriteTables(out, file_offset)) {
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800525 LOG(ERROR) << "Failed to write oat tables to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700526 return false;
527 }
528
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700529 size_t relative_offset = WriteCode(out, file_offset);
530 if (relative_offset == 0) {
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800531 LOG(ERROR) << "Failed to write oat code to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700532 return false;
533 }
534
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700535 relative_offset = WriteCodeDexFiles(out, file_offset, relative_offset);
536 if (relative_offset == 0) {
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800537 LOG(ERROR) << "Failed to write oat code for dex files to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700538 return false;
539 }
540
Ian Rogers4bdbbc82013-06-10 16:02:31 -0700541 if (kIsDebugBuild) {
542 uint32_t size_total = 0;
543 #define DO_STAT(x) \
Anwar Ghuloum75a43f12013-08-13 17:22:14 -0700544 VLOG(compiler) << #x "=" << PrettySize(x) << " (" << x << "B)"; \
Ian Rogers4bdbbc82013-06-10 16:02:31 -0700545 size_total += x;
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700546
Ian Rogers4bdbbc82013-06-10 16:02:31 -0700547 DO_STAT(size_dex_file_alignment_);
548 DO_STAT(size_executable_offset_alignment_);
549 DO_STAT(size_oat_header_);
550 DO_STAT(size_oat_header_image_file_location_);
551 DO_STAT(size_dex_file_);
Ian Rogers848871b2013-08-05 10:56:33 -0700552 DO_STAT(size_interpreter_to_interpreter_bridge_);
553 DO_STAT(size_interpreter_to_compiled_code_bridge_);
554 DO_STAT(size_jni_dlsym_lookup_);
Jeff Hao88474b42013-10-23 16:24:40 -0700555 DO_STAT(size_portable_imt_conflict_trampoline_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -0700556 DO_STAT(size_portable_resolution_trampoline_);
Ian Rogers848871b2013-08-05 10:56:33 -0700557 DO_STAT(size_portable_to_interpreter_bridge_);
Jeff Hao88474b42013-10-23 16:24:40 -0700558 DO_STAT(size_quick_imt_conflict_trampoline_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -0700559 DO_STAT(size_quick_resolution_trampoline_);
Ian Rogers848871b2013-08-05 10:56:33 -0700560 DO_STAT(size_quick_to_interpreter_bridge_);
561 DO_STAT(size_trampoline_alignment_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -0700562 DO_STAT(size_code_size_);
563 DO_STAT(size_code_);
564 DO_STAT(size_code_alignment_);
565 DO_STAT(size_mapping_table_);
566 DO_STAT(size_vmap_table_);
567 DO_STAT(size_gc_map_);
568 DO_STAT(size_oat_dex_file_location_size_);
569 DO_STAT(size_oat_dex_file_location_data_);
570 DO_STAT(size_oat_dex_file_location_checksum_);
571 DO_STAT(size_oat_dex_file_offset_);
572 DO_STAT(size_oat_dex_file_methods_offsets_);
Brian Carlstromba150c32013-08-27 17:31:03 -0700573 DO_STAT(size_oat_class_type_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -0700574 DO_STAT(size_oat_class_status_);
Brian Carlstromba150c32013-08-27 17:31:03 -0700575 DO_STAT(size_oat_class_method_bitmaps_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -0700576 DO_STAT(size_oat_class_method_offsets_);
577 #undef DO_STAT
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700578
Anwar Ghuloum75a43f12013-08-13 17:22:14 -0700579 VLOG(compiler) << "size_total=" << PrettySize(size_total) << " (" << size_total << "B)"; \
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700580 CHECK_EQ(file_offset + size_total, static_cast<uint32_t>(out.Seek(0, kSeekCurrent)));
581 CHECK_EQ(size_, size_total);
Ian Rogers4bdbbc82013-06-10 16:02:31 -0700582 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700583
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700584 CHECK_EQ(file_offset + size_, static_cast<uint32_t>(out.Seek(0, kSeekCurrent)));
585 CHECK_EQ(size_, relative_offset);
586
Brian Carlstrome24fa612011-09-29 00:53:55 -0700587 return true;
588}
589
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700590bool OatWriter::WriteTables(OutputStream& out, const size_t file_offset) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700591 for (size_t i = 0; i != oat_dex_files_.size(); ++i) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700592 if (!oat_dex_files_[i]->Write(this, out, file_offset)) {
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800593 PLOG(ERROR) << "Failed to write oat dex information to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700594 return false;
595 }
596 }
Brian Carlstrom89521892011-12-07 22:05:07 -0800597 for (size_t i = 0; i != oat_dex_files_.size(); ++i) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700598 uint32_t expected_offset = file_offset + oat_dex_files_[i]->dex_file_offset_;
Brian Carlstrom49a0f152013-01-22 17:17:36 -0800599 off_t actual_offset = out.Seek(expected_offset, kSeekSet);
Brian Carlstrom89521892011-12-07 22:05:07 -0800600 if (static_cast<uint32_t>(actual_offset) != expected_offset) {
601 const DexFile* dex_file = (*dex_files_)[i];
602 PLOG(ERROR) << "Failed to seek to dex file section. Actual: " << actual_offset
603 << " Expected: " << expected_offset << " File: " << dex_file->GetLocation();
604 return false;
605 }
606 const DexFile* dex_file = (*dex_files_)[i];
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800607 if (!out.WriteFully(&dex_file->GetHeader(), dex_file->GetHeader().file_size_)) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700608 PLOG(ERROR) << "Failed to write dex file " << dex_file->GetLocation()
609 << " to " << out.GetLocation();
Brian Carlstrom89521892011-12-07 22:05:07 -0800610 return false;
611 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700612 size_dex_file_ += dex_file->GetHeader().file_size_;
Brian Carlstrom89521892011-12-07 22:05:07 -0800613 }
Brian Carlstrom389efb02012-01-11 12:06:26 -0800614 for (size_t i = 0; i != oat_classes_.size(); ++i) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700615 if (!oat_classes_[i]->Write(this, out, file_offset)) {
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800616 PLOG(ERROR) << "Failed to write oat methods information to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700617 return false;
618 }
619 }
620 return true;
621}
622
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700623size_t OatWriter::WriteCode(OutputStream& out, const size_t file_offset) {
624 size_t relative_offset = oat_header_->GetExecutableOffset();
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700625 off_t new_offset = out.Seek(size_executable_offset_alignment_, kSeekCurrent);
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700626 size_t expected_file_offset = file_offset + relative_offset;
627 if (static_cast<uint32_t>(new_offset) != expected_file_offset) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700628 PLOG(ERROR) << "Failed to seek to oat code section. Actual: " << new_offset
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700629 << " Expected: " << expected_file_offset << " File: " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700630 return 0;
631 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800632 DCHECK_OFFSET();
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700633 if (compiler_driver_->IsImage()) {
634 InstructionSet instruction_set = compiler_driver_->GetInstructionSet();
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700635
Ian Rogers848871b2013-08-05 10:56:33 -0700636 #define DO_TRAMPOLINE(field) \
637 do { \
638 uint32_t aligned_offset = CompiledCode::AlignCode(relative_offset, instruction_set); \
639 uint32_t alignment_padding = aligned_offset - relative_offset; \
640 out.Seek(alignment_padding, kSeekCurrent); \
641 size_trampoline_alignment_ += alignment_padding; \
642 if (!out.WriteFully(&(*field)[0], field->size())) { \
643 PLOG(ERROR) << "Failed to write " # field " to " << out.GetLocation(); \
644 return false; \
645 } \
646 size_ ## field += field->size(); \
647 relative_offset += alignment_padding + field->size(); \
648 DCHECK_OFFSET(); \
649 } while (false)
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700650
Ian Rogers848871b2013-08-05 10:56:33 -0700651 DO_TRAMPOLINE(interpreter_to_interpreter_bridge_);
652 DO_TRAMPOLINE(interpreter_to_compiled_code_bridge_);
653 DO_TRAMPOLINE(jni_dlsym_lookup_);
Jeff Hao88474b42013-10-23 16:24:40 -0700654 DO_TRAMPOLINE(portable_imt_conflict_trampoline_);
Ian Rogers848871b2013-08-05 10:56:33 -0700655 DO_TRAMPOLINE(portable_resolution_trampoline_);
656 DO_TRAMPOLINE(portable_to_interpreter_bridge_);
Jeff Hao88474b42013-10-23 16:24:40 -0700657 DO_TRAMPOLINE(quick_imt_conflict_trampoline_);
Ian Rogers848871b2013-08-05 10:56:33 -0700658 DO_TRAMPOLINE(quick_resolution_trampoline_);
659 DO_TRAMPOLINE(quick_to_interpreter_bridge_);
660 #undef DO_TRAMPOLINE
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700661 }
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700662 return relative_offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700663}
664
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700665size_t OatWriter::WriteCodeDexFiles(OutputStream& out,
666 const size_t file_offset,
667 size_t relative_offset) {
Ian Rogers0571d352011-11-03 19:51:38 -0700668 size_t oat_class_index = 0;
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800669 for (size_t i = 0; i != oat_dex_files_.size(); ++i) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700670 const DexFile* dex_file = (*dex_files_)[i];
671 CHECK(dex_file != NULL);
Brian Carlstromba150c32013-08-27 17:31:03 -0700672 relative_offset = WriteCodeDexFile(out, file_offset, relative_offset, &oat_class_index,
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700673 *dex_file);
674 if (relative_offset == 0) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700675 return 0;
676 }
677 }
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700678 return relative_offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700679}
680
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700681size_t OatWriter::WriteCodeDexFile(OutputStream& out, const size_t file_offset,
Brian Carlstromba150c32013-08-27 17:31:03 -0700682 size_t relative_offset, size_t* oat_class_index,
Ian Rogers0571d352011-11-03 19:51:38 -0700683 const DexFile& dex_file) {
684 for (size_t class_def_index = 0; class_def_index < dex_file.NumClassDefs();
Brian Carlstromba150c32013-08-27 17:31:03 -0700685 class_def_index++, (*oat_class_index)++) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700686 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Brian Carlstromba150c32013-08-27 17:31:03 -0700687 relative_offset = WriteCodeClassDef(out, file_offset, relative_offset, *oat_class_index,
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700688 dex_file, class_def);
689 if (relative_offset == 0) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700690 return 0;
691 }
692 }
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700693 return relative_offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700694}
695
Ian Rogers0571d352011-11-03 19:51:38 -0700696void OatWriter::ReportWriteFailure(const char* what, uint32_t method_idx,
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800697 const DexFile& dex_file, OutputStream& out) const {
Ian Rogers0571d352011-11-03 19:51:38 -0700698 PLOG(ERROR) << "Failed to write " << what << " for " << PrettyMethod(method_idx, dex_file)
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800699 << " to " << out.GetLocation();
Elliott Hughes234da572011-11-03 22:13:06 -0700700}
701
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800702size_t OatWriter::WriteCodeClassDef(OutputStream& out,
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700703 const size_t file_offset,
704 size_t relative_offset,
705 size_t oat_class_index,
Brian Carlstrome24fa612011-09-29 00:53:55 -0700706 const DexFile& dex_file,
707 const DexFile::ClassDef& class_def) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700708 const byte* class_data = dex_file.GetClassData(class_def);
Ian Rogers0571d352011-11-03 19:51:38 -0700709 if (class_data == NULL) {
710 // ie. an empty class such as a marker interface
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700711 return relative_offset;
Ian Rogers387b6992011-10-31 17:52:37 -0700712 }
Ian Rogers0571d352011-11-03 19:51:38 -0700713 ClassDataItemIterator it(dex_file, class_data);
714 // Skip fields
715 while (it.HasNextStaticField()) {
716 it.Next();
717 }
718 while (it.HasNextInstanceField()) {
719 it.Next();
720 }
721 // Process methods
722 size_t class_def_method_index = 0;
Brian Carlstromba150c32013-08-27 17:31:03 -0700723 size_t method_offsets_index = 0;
Ian Rogers0571d352011-11-03 19:51:38 -0700724 while (it.HasNextDirectMethod()) {
725 bool is_static = (it.GetMemberAccessFlags() & kAccStatic) != 0;
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700726 relative_offset = WriteCodeMethod(out, file_offset, relative_offset, oat_class_index,
Brian Carlstromba150c32013-08-27 17:31:03 -0700727 class_def_method_index, &method_offsets_index, is_static,
728 it.GetMemberIndex(), dex_file);
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700729 if (relative_offset == 0) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700730 return 0;
731 }
Ian Rogers0571d352011-11-03 19:51:38 -0700732 class_def_method_index++;
733 it.Next();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700734 }
Ian Rogers0571d352011-11-03 19:51:38 -0700735 while (it.HasNextVirtualMethod()) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700736 relative_offset = WriteCodeMethod(out, file_offset, relative_offset, oat_class_index,
Brian Carlstromba150c32013-08-27 17:31:03 -0700737 class_def_method_index, &method_offsets_index, false,
738 it.GetMemberIndex(), dex_file);
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700739 if (relative_offset == 0) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700740 return 0;
741 }
Ian Rogers0571d352011-11-03 19:51:38 -0700742 class_def_method_index++;
743 it.Next();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700744 }
Brian Carlstromba150c32013-08-27 17:31:03 -0700745 DCHECK(!it.HasNext());
746 CHECK_LE(method_offsets_index, class_def_method_index);
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700747 return relative_offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700748}
749
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700750size_t OatWriter::WriteCodeMethod(OutputStream& out, const size_t file_offset,
751 size_t relative_offset, size_t oat_class_index,
Brian Carlstromba150c32013-08-27 17:31:03 -0700752 size_t class_def_method_index, size_t* method_offsets_index,
753 bool is_static, uint32_t method_idx, const DexFile& dex_file) {
754 OatClass* oat_class = oat_classes_[oat_class_index];
755 const CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index);
Ian Rogers0571d352011-11-03 19:51:38 -0700756
757 if (compiled_method != NULL) { // ie. not an abstract method
Brian Carlstromba150c32013-08-27 17:31:03 -0700758 const OatMethodOffsets method_offsets = oat_class->method_offsets_[*method_offsets_index];
759 (*method_offsets_index)++;
Ian Rogersef7d42f2014-01-06 12:55:46 -0800760 const std::vector<uint8_t>* quick_code = compiled_method->GetQuickCode();
761 if (quick_code != nullptr) {
762 CHECK(compiled_method->GetPortableCode() == nullptr);
763 uint32_t aligned_offset = compiled_method->AlignCode(relative_offset);
764 uint32_t aligned_code_delta = aligned_offset - relative_offset;
765 if (aligned_code_delta != 0) {
766 off_t new_offset = out.Seek(aligned_code_delta, kSeekCurrent);
767 size_code_alignment_ += aligned_code_delta;
768 uint32_t expected_offset = file_offset + aligned_offset;
769 if (static_cast<uint32_t>(new_offset) != expected_offset) {
770 PLOG(ERROR) << "Failed to seek to align oat code. Actual: " << new_offset
771 << " Expected: " << expected_offset << " File: " << out.GetLocation();
772 return 0;
773 }
774 relative_offset += aligned_code_delta;
775 DCHECK_OFFSET();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700776 }
Ian Rogersef7d42f2014-01-06 12:55:46 -0800777 DCHECK_ALIGNED(relative_offset, kArmAlignment);
778 uint32_t code_size = quick_code->size() * sizeof(uint8_t);
779 CHECK_NE(code_size, 0U);
780
781 // Deduplicate code arrays
782 size_t code_offset = relative_offset + sizeof(code_size) + compiled_method->CodeDelta();
783 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator code_iter =
784 code_offsets_.find(quick_code);
785 if (code_iter != code_offsets_.end() && code_offset != method_offsets.code_offset_) {
786 DCHECK(code_iter->second == method_offsets.code_offset_)
787 << PrettyMethod(method_idx, dex_file);
788 } else {
789 DCHECK(code_offset == method_offsets.code_offset_) << PrettyMethod(method_idx, dex_file);
790 if (!out.WriteFully(&code_size, sizeof(code_size))) {
791 ReportWriteFailure("method code size", method_idx, dex_file, out);
792 return 0;
793 }
794 size_code_size_ += sizeof(code_size);
795 relative_offset += sizeof(code_size);
796 DCHECK_OFFSET();
797 if (!out.WriteFully(&(*quick_code)[0], code_size)) {
798 ReportWriteFailure("method code", method_idx, dex_file, out);
799 return 0;
800 }
801 size_code_ += code_size;
802 relative_offset += code_size;
803 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800804 DCHECK_OFFSET();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700805 }
Ian Rogers1809a722013-08-09 22:05:32 -0700806 const std::vector<uint8_t>& mapping_table = compiled_method->GetMappingTable();
Logan Chien971bf3f2012-05-01 15:47:55 +0800807 size_t mapping_table_size = mapping_table.size() * sizeof(mapping_table[0]);
808
809 // Deduplicate mapping tables
Ian Rogers1809a722013-08-09 22:05:32 -0700810 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator mapping_iter =
Logan Chien971bf3f2012-05-01 15:47:55 +0800811 mapping_table_offsets_.find(&mapping_table);
812 if (mapping_iter != mapping_table_offsets_.end() &&
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700813 relative_offset != method_offsets.mapping_table_offset_) {
Logan Chien971bf3f2012-05-01 15:47:55 +0800814 DCHECK((mapping_table_size == 0 && method_offsets.mapping_table_offset_ == 0)
815 || mapping_iter->second == method_offsets.mapping_table_offset_)
816 << PrettyMethod(method_idx, dex_file);
817 } else {
818 DCHECK((mapping_table_size == 0 && method_offsets.mapping_table_offset_ == 0)
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700819 || relative_offset == method_offsets.mapping_table_offset_)
Logan Chien971bf3f2012-05-01 15:47:55 +0800820 << PrettyMethod(method_idx, dex_file);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800821 if (!out.WriteFully(&mapping_table[0], mapping_table_size)) {
822 ReportWriteFailure("mapping table", method_idx, dex_file, out);
Logan Chien971bf3f2012-05-01 15:47:55 +0800823 return 0;
824 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700825 size_mapping_table_ += mapping_table_size;
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700826 relative_offset += mapping_table_size;
Logan Chien971bf3f2012-05-01 15:47:55 +0800827 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800828 DCHECK_OFFSET();
Logan Chien971bf3f2012-05-01 15:47:55 +0800829
Ian Rogers1809a722013-08-09 22:05:32 -0700830 const std::vector<uint8_t>& vmap_table = compiled_method->GetVmapTable();
Logan Chien971bf3f2012-05-01 15:47:55 +0800831 size_t vmap_table_size = vmap_table.size() * sizeof(vmap_table[0]);
832
833 // Deduplicate vmap tables
Ian Rogers1809a722013-08-09 22:05:32 -0700834 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator vmap_iter =
Logan Chien971bf3f2012-05-01 15:47:55 +0800835 vmap_table_offsets_.find(&vmap_table);
836 if (vmap_iter != vmap_table_offsets_.end() &&
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700837 relative_offset != method_offsets.vmap_table_offset_) {
Logan Chien971bf3f2012-05-01 15:47:55 +0800838 DCHECK((vmap_table_size == 0 && method_offsets.vmap_table_offset_ == 0)
839 || vmap_iter->second == method_offsets.vmap_table_offset_)
840 << PrettyMethod(method_idx, dex_file);
841 } else {
842 DCHECK((vmap_table_size == 0 && method_offsets.vmap_table_offset_ == 0)
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700843 || relative_offset == method_offsets.vmap_table_offset_)
Logan Chien971bf3f2012-05-01 15:47:55 +0800844 << PrettyMethod(method_idx, dex_file);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800845 if (!out.WriteFully(&vmap_table[0], vmap_table_size)) {
846 ReportWriteFailure("vmap table", method_idx, dex_file, out);
Logan Chien971bf3f2012-05-01 15:47:55 +0800847 return 0;
848 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700849 size_vmap_table_ += vmap_table_size;
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700850 relative_offset += vmap_table_size;
Logan Chien971bf3f2012-05-01 15:47:55 +0800851 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800852 DCHECK_OFFSET();
Logan Chien971bf3f2012-05-01 15:47:55 +0800853
Ian Rogersfbdc0fa2013-04-18 16:48:17 -0700854 const std::vector<uint8_t>& gc_map = compiled_method->GetGcMap();
Logan Chien971bf3f2012-05-01 15:47:55 +0800855 size_t gc_map_size = gc_map.size() * sizeof(gc_map[0]);
856
857 // Deduplicate GC maps
858 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator gc_map_iter =
859 gc_map_offsets_.find(&gc_map);
860 if (gc_map_iter != gc_map_offsets_.end() &&
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700861 relative_offset != method_offsets.gc_map_offset_) {
Logan Chien971bf3f2012-05-01 15:47:55 +0800862 DCHECK((gc_map_size == 0 && method_offsets.gc_map_offset_ == 0)
863 || gc_map_iter->second == method_offsets.gc_map_offset_)
864 << PrettyMethod(method_idx, dex_file);
865 } else {
866 DCHECK((gc_map_size == 0 && method_offsets.gc_map_offset_ == 0)
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700867 || relative_offset == method_offsets.gc_map_offset_)
Logan Chien971bf3f2012-05-01 15:47:55 +0800868 << PrettyMethod(method_idx, dex_file);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800869 if (!out.WriteFully(&gc_map[0], gc_map_size)) {
870 ReportWriteFailure("GC map", method_idx, dex_file, out);
Logan Chien971bf3f2012-05-01 15:47:55 +0800871 return 0;
872 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700873 size_gc_map_ += gc_map_size;
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700874 relative_offset += gc_map_size;
Logan Chien971bf3f2012-05-01 15:47:55 +0800875 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800876 DCHECK_OFFSET();
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700877 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800878
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700879 return relative_offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700880}
881
Brian Carlstrom265091e2013-01-30 14:08:26 -0800882OatWriter::OatDexFile::OatDexFile(size_t offset, const DexFile& dex_file) {
883 offset_ = offset;
Elliott Hughes95572412011-12-13 18:14:20 -0800884 const std::string& location(dex_file.GetLocation());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700885 dex_file_location_size_ = location.size();
886 dex_file_location_data_ = reinterpret_cast<const uint8_t*>(location.data());
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800887 dex_file_location_checksum_ = dex_file.GetLocationChecksum();
Brian Carlstrom89521892011-12-07 22:05:07 -0800888 dex_file_offset_ = 0;
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800889 methods_offsets_.resize(dex_file.NumClassDefs());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700890}
891
892size_t OatWriter::OatDexFile::SizeOf() const {
893 return sizeof(dex_file_location_size_)
894 + dex_file_location_size_
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800895 + sizeof(dex_file_location_checksum_)
Brian Carlstrom89521892011-12-07 22:05:07 -0800896 + sizeof(dex_file_offset_)
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800897 + (sizeof(methods_offsets_[0]) * methods_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700898}
899
900void OatWriter::OatDexFile::UpdateChecksum(OatHeader& oat_header) const {
901 oat_header.UpdateChecksum(&dex_file_location_size_, sizeof(dex_file_location_size_));
902 oat_header.UpdateChecksum(dex_file_location_data_, dex_file_location_size_);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800903 oat_header.UpdateChecksum(&dex_file_location_checksum_, sizeof(dex_file_location_checksum_));
Brian Carlstrom89521892011-12-07 22:05:07 -0800904 oat_header.UpdateChecksum(&dex_file_offset_, sizeof(dex_file_offset_));
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800905 oat_header.UpdateChecksum(&methods_offsets_[0],
906 sizeof(methods_offsets_[0]) * methods_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700907}
908
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700909bool OatWriter::OatDexFile::Write(OatWriter* oat_writer,
910 OutputStream& out,
911 const size_t file_offset) const {
Brian Carlstrom265091e2013-01-30 14:08:26 -0800912 DCHECK_OFFSET_();
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800913 if (!out.WriteFully(&dex_file_location_size_, sizeof(dex_file_location_size_))) {
914 PLOG(ERROR) << "Failed to write dex file location length to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700915 return false;
916 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700917 oat_writer->size_oat_dex_file_location_size_ += sizeof(dex_file_location_size_);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800918 if (!out.WriteFully(dex_file_location_data_, dex_file_location_size_)) {
919 PLOG(ERROR) << "Failed to write dex file location data to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700920 return false;
921 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700922 oat_writer->size_oat_dex_file_location_data_ += dex_file_location_size_;
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800923 if (!out.WriteFully(&dex_file_location_checksum_, sizeof(dex_file_location_checksum_))) {
924 PLOG(ERROR) << "Failed to write dex file location checksum to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700925 return false;
926 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700927 oat_writer->size_oat_dex_file_location_checksum_ += sizeof(dex_file_location_checksum_);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800928 if (!out.WriteFully(&dex_file_offset_, sizeof(dex_file_offset_))) {
929 PLOG(ERROR) << "Failed to write dex file offset to " << out.GetLocation();
Brian Carlstrom89521892011-12-07 22:05:07 -0800930 return false;
931 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700932 oat_writer->size_oat_dex_file_offset_ += sizeof(dex_file_offset_);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800933 if (!out.WriteFully(&methods_offsets_[0],
934 sizeof(methods_offsets_[0]) * methods_offsets_.size())) {
935 PLOG(ERROR) << "Failed to write methods offsets to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700936 return false;
937 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700938 oat_writer->size_oat_dex_file_methods_offsets_ +=
939 sizeof(methods_offsets_[0]) * methods_offsets_.size();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700940 return true;
941}
942
Brian Carlstromba150c32013-08-27 17:31:03 -0700943OatWriter::OatClass::OatClass(size_t offset,
944 std::vector<CompiledMethod*>* compiled_methods,
945 uint32_t num_non_null_compiled_methods,
946 mirror::Class::Status status) {
947 CHECK(compiled_methods != NULL);
948 uint32_t num_methods = compiled_methods->size();
949 CHECK_LE(num_non_null_compiled_methods, num_methods);
950
Brian Carlstrom265091e2013-01-30 14:08:26 -0800951 offset_ = offset;
Brian Carlstromba150c32013-08-27 17:31:03 -0700952 compiled_methods_ = compiled_methods;
953 oat_method_offsets_offsets_from_oat_class_.resize(num_methods);
954
955 // Since both kOatClassNoneCompiled and kOatClassAllCompiled could
956 // apply when there are 0 methods, we just arbitrarily say that 0
957 // methods means kOatClassNoneCompiled and that we won't use
958 // kOatClassAllCompiled unless there is at least one compiled
959 // method. This means in an interpretter only system, we can assert
960 // that all classes are kOatClassNoneCompiled.
961 if (num_non_null_compiled_methods == 0) {
962 type_ = kOatClassNoneCompiled;
963 } else if (num_non_null_compiled_methods == num_methods) {
964 type_ = kOatClassAllCompiled;
965 } else {
966 type_ = kOatClassSomeCompiled;
967 }
968
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800969 status_ = status;
Brian Carlstromba150c32013-08-27 17:31:03 -0700970 method_offsets_.resize(num_non_null_compiled_methods);
971
972 uint32_t oat_method_offsets_offset_from_oat_class = sizeof(type_) + sizeof(status_);
973 if (type_ == kOatClassSomeCompiled) {
974 method_bitmap_ = new BitVector(num_methods, false, Allocator::GetMallocAllocator());
975 method_bitmap_size_ = method_bitmap_->GetSizeOf();
976 oat_method_offsets_offset_from_oat_class += sizeof(method_bitmap_size_);
977 oat_method_offsets_offset_from_oat_class += method_bitmap_size_;
978 } else {
979 method_bitmap_ = NULL;
980 method_bitmap_size_ = 0;
981 }
982
983 for (size_t i = 0; i < num_methods; i++) {
984 CompiledMethod* compiled_method = (*compiled_methods_)[i];
985 if (compiled_method == NULL) {
986 oat_method_offsets_offsets_from_oat_class_[i] = 0;
987 } else {
988 oat_method_offsets_offsets_from_oat_class_[i] = oat_method_offsets_offset_from_oat_class;
989 oat_method_offsets_offset_from_oat_class += sizeof(OatMethodOffsets);
990 if (type_ == kOatClassSomeCompiled) {
991 method_bitmap_->SetBit(i);
992 }
993 }
994 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700995}
996
Brian Carlstromba150c32013-08-27 17:31:03 -0700997OatWriter::OatClass::~OatClass() {
998 delete compiled_methods_;
999}
1000
Brian Carlstrom265091e2013-01-30 14:08:26 -08001001size_t OatWriter::OatClass::GetOatMethodOffsetsOffsetFromOatHeader(
1002 size_t class_def_method_index_) const {
Brian Carlstromba150c32013-08-27 17:31:03 -07001003 uint32_t method_offset = GetOatMethodOffsetsOffsetFromOatClass(class_def_method_index_);
1004 if (method_offset == 0) {
1005 return 0;
1006 }
1007 return offset_ + method_offset;
Brian Carlstrom265091e2013-01-30 14:08:26 -08001008}
1009
1010size_t OatWriter::OatClass::GetOatMethodOffsetsOffsetFromOatClass(
1011 size_t class_def_method_index_) const {
Brian Carlstromba150c32013-08-27 17:31:03 -07001012 return oat_method_offsets_offsets_from_oat_class_[class_def_method_index_];
Brian Carlstrom265091e2013-01-30 14:08:26 -08001013}
1014
1015size_t OatWriter::OatClass::SizeOf() const {
Brian Carlstromba150c32013-08-27 17:31:03 -07001016 return sizeof(status_)
1017 + sizeof(type_)
1018 + ((method_bitmap_size_ == 0) ? 0 : sizeof(method_bitmap_size_))
1019 + method_bitmap_size_
1020 + (sizeof(method_offsets_[0]) * method_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -07001021}
1022
Brian Carlstrom389efb02012-01-11 12:06:26 -08001023void OatWriter::OatClass::UpdateChecksum(OatHeader& oat_header) const {
Brian Carlstrom0755ec52012-01-11 15:19:46 -08001024 oat_header.UpdateChecksum(&status_, sizeof(status_));
Brian Carlstromba150c32013-08-27 17:31:03 -07001025 oat_header.UpdateChecksum(&type_, sizeof(type_));
1026 if (method_bitmap_size_ != 0) {
1027 CHECK_EQ(kOatClassSomeCompiled, type_);
1028 oat_header.UpdateChecksum(&method_bitmap_size_, sizeof(method_bitmap_size_));
1029 oat_header.UpdateChecksum(method_bitmap_->GetRawStorage(), method_bitmap_size_);
1030 }
Brian Carlstrom0755ec52012-01-11 15:19:46 -08001031 oat_header.UpdateChecksum(&method_offsets_[0],
1032 sizeof(method_offsets_[0]) * method_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -07001033}
1034
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001035bool OatWriter::OatClass::Write(OatWriter* oat_writer,
1036 OutputStream& out,
1037 const size_t file_offset) const {
Brian Carlstrom265091e2013-01-30 14:08:26 -08001038 DCHECK_OFFSET_();
Brian Carlstromcd60ac72013-01-20 17:09:51 -08001039 if (!out.WriteFully(&status_, sizeof(status_))) {
1040 PLOG(ERROR) << "Failed to write class status to " << out.GetLocation();
Brian Carlstrom0755ec52012-01-11 15:19:46 -08001041 return false;
1042 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001043 oat_writer->size_oat_class_status_ += sizeof(status_);
Brian Carlstromba150c32013-08-27 17:31:03 -07001044 if (!out.WriteFully(&type_, sizeof(type_))) {
1045 PLOG(ERROR) << "Failed to write oat class type to " << out.GetLocation();
1046 return false;
1047 }
1048 oat_writer->size_oat_class_type_ += sizeof(type_);
1049 if (method_bitmap_size_ != 0) {
1050 CHECK_EQ(kOatClassSomeCompiled, type_);
1051 if (!out.WriteFully(&method_bitmap_size_, sizeof(method_bitmap_size_))) {
1052 PLOG(ERROR) << "Failed to write method bitmap size to " << out.GetLocation();
1053 return false;
1054 }
1055 oat_writer->size_oat_class_method_bitmaps_ += sizeof(method_bitmap_size_);
1056 if (!out.WriteFully(method_bitmap_->GetRawStorage(), method_bitmap_size_)) {
1057 PLOG(ERROR) << "Failed to write method bitmap to " << out.GetLocation();
1058 return false;
1059 }
1060 oat_writer->size_oat_class_method_bitmaps_ += method_bitmap_size_;
1061 }
Brian Carlstromcd60ac72013-01-20 17:09:51 -08001062 if (!out.WriteFully(&method_offsets_[0],
1063 sizeof(method_offsets_[0]) * method_offsets_.size())) {
1064 PLOG(ERROR) << "Failed to write method offsets to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001065 return false;
1066 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001067 oat_writer->size_oat_class_method_offsets_ += sizeof(method_offsets_[0]) * method_offsets_.size();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001068 return true;
1069}
1070
Brian Carlstrome24fa612011-09-29 00:53:55 -07001071} // namespace art