blob: 7a902d86d6859a88342b47a26266be83a4788783 [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,
42 uint32_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) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700351 // derived from CompiledMethod if available
352 uint32_t code_offset = 0;
353 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];
361#if defined(ART_USE_PORTABLE_COMPILER)
362 size_t oat_method_offsets_offset =
363 oat_class->GetOatMethodOffsetsOffsetFromOatHeader(class_def_method_index);
364#endif
365
Brian Carlstromba150c32013-08-27 17:31:03 -0700366 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700367 if (compiled_method != NULL) {
Brian Carlstrom265091e2013-01-30 14:08:26 -0800368#if defined(ART_USE_PORTABLE_COMPILER)
369 compiled_method->AddOatdataOffsetToCompliledCodeOffset(
370 oat_method_offsets_offset + OFFSETOF_MEMBER(OatMethodOffsets, code_offset_));
371#else
372 const std::vector<uint8_t>& code = compiled_method->GetCode();
Logan Chien971bf3f2012-05-01 15:47:55 +0800373 offset = compiled_method->AlignCode(offset);
374 DCHECK_ALIGNED(offset, kArmAlignment);
Logan Chien971bf3f2012-05-01 15:47:55 +0800375 uint32_t code_size = code.size() * sizeof(code[0]);
376 CHECK_NE(code_size, 0U);
377 uint32_t thumb_offset = compiled_method->CodeDelta();
378 code_offset = offset + sizeof(code_size) + thumb_offset;
379
380 // Deduplicate code arrays
381 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator code_iter = code_offsets_.find(&code);
382 if (code_iter != code_offsets_.end()) {
383 code_offset = code_iter->second;
jeffhao55d78212011-11-02 11:41:50 -0700384 } else {
Logan Chien971bf3f2012-05-01 15:47:55 +0800385 code_offsets_.Put(&code, code_offset);
386 offset += sizeof(code_size); // code size is prepended before code
387 offset += code_size;
388 oat_header_->UpdateChecksum(&code[0], code_size);
389 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800390#endif
Logan Chien971bf3f2012-05-01 15:47:55 +0800391 frame_size_in_bytes = compiled_method->GetFrameSizeInBytes();
392 core_spill_mask = compiled_method->GetCoreSpillMask();
393 fp_spill_mask = compiled_method->GetFpSpillMask();
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700394
Ian Rogers1809a722013-08-09 22:05:32 -0700395 const std::vector<uint8_t>& mapping_table = compiled_method->GetMappingTable();
Logan Chien971bf3f2012-05-01 15:47:55 +0800396 size_t mapping_table_size = mapping_table.size() * sizeof(mapping_table[0]);
397 mapping_table_offset = (mapping_table_size == 0) ? 0 : offset;
jeffhao55d78212011-11-02 11:41:50 -0700398
Logan Chien971bf3f2012-05-01 15:47:55 +0800399 // Deduplicate mapping tables
Ian Rogers1809a722013-08-09 22:05:32 -0700400 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator mapping_iter =
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700401 mapping_table_offsets_.find(&mapping_table);
Logan Chien971bf3f2012-05-01 15:47:55 +0800402 if (mapping_iter != mapping_table_offsets_.end()) {
403 mapping_table_offset = mapping_iter->second;
404 } else {
405 mapping_table_offsets_.Put(&mapping_table, mapping_table_offset);
406 offset += mapping_table_size;
407 oat_header_->UpdateChecksum(&mapping_table[0], mapping_table_size);
408 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700409
Ian Rogers1809a722013-08-09 22:05:32 -0700410 const std::vector<uint8_t>& vmap_table = compiled_method->GetVmapTable();
Logan Chien971bf3f2012-05-01 15:47:55 +0800411 size_t vmap_table_size = vmap_table.size() * sizeof(vmap_table[0]);
412 vmap_table_offset = (vmap_table_size == 0) ? 0 : offset;
jeffhao55d78212011-11-02 11:41:50 -0700413
Logan Chien971bf3f2012-05-01 15:47:55 +0800414 // Deduplicate vmap tables
Ian Rogers1809a722013-08-09 22:05:32 -0700415 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator vmap_iter =
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700416 vmap_table_offsets_.find(&vmap_table);
Logan Chien971bf3f2012-05-01 15:47:55 +0800417 if (vmap_iter != vmap_table_offsets_.end()) {
418 vmap_table_offset = vmap_iter->second;
419 } else {
420 vmap_table_offsets_.Put(&vmap_table, vmap_table_offset);
421 offset += vmap_table_size;
422 oat_header_->UpdateChecksum(&vmap_table[0], vmap_table_size);
423 }
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800424
Ian Rogersfbdc0fa2013-04-18 16:48:17 -0700425 const std::vector<uint8_t>& gc_map = compiled_method->GetGcMap();
Logan Chien971bf3f2012-05-01 15:47:55 +0800426 size_t gc_map_size = gc_map.size() * sizeof(gc_map[0]);
427 gc_map_offset = (gc_map_size == 0) ? 0 : offset;
Logan Chienccb7bf12012-03-28 12:52:32 +0800428
Mathieu Chartier590fee92013-09-13 13:46:47 -0700429 if (kIsDebugBuild) {
430 // We expect GC maps except when the class hasn't been verified or the method is native
431 ClassReference class_ref(&dex_file, class_def_index);
432 CompiledClass* compiled_class = compiler_driver_->GetCompiledClass(class_ref);
433 mirror::Class::Status status;
434 if (compiled_class != NULL) {
435 status = compiled_class->GetStatus();
Vladimir Markoc7f83202014-01-24 17:55:18 +0000436 } else if (compiler_driver_->GetVerificationResults()->IsClassRejected(class_ref)) {
Mathieu Chartier590fee92013-09-13 13:46:47 -0700437 status = mirror::Class::kStatusError;
438 } else {
439 status = mirror::Class::kStatusNotReady;
440 }
441 CHECK(gc_map_size != 0 || is_native || status < mirror::Class::kStatusVerified)
442 << &gc_map << " " << gc_map_size << " " << (is_native ? "true" : "false") << " "
443 << (status < mirror::Class::kStatusVerified) << " " << status << " "
444 << PrettyMethod(method_idx, dex_file);
jeffhaoec014232012-09-05 10:42:25 -0700445 }
Ian Rogersc20a83e2012-01-18 18:15:32 -0800446
Logan Chien971bf3f2012-05-01 15:47:55 +0800447 // Deduplicate GC maps
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700448 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator gc_map_iter =
449 gc_map_offsets_.find(&gc_map);
Logan Chien971bf3f2012-05-01 15:47:55 +0800450 if (gc_map_iter != gc_map_offsets_.end()) {
451 gc_map_offset = gc_map_iter->second;
452 } else {
453 gc_map_offsets_.Put(&gc_map, gc_map_offset);
454 offset += gc_map_size;
455 oat_header_->UpdateChecksum(&gc_map[0], gc_map_size);
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800456 }
Brian Carlstromba150c32013-08-27 17:31:03 -0700457
458 oat_class->method_offsets_[*method_offsets_index] =
459 OatMethodOffsets(code_offset,
460 frame_size_in_bytes,
461 core_spill_mask,
462 fp_spill_mask,
463 mapping_table_offset,
464 vmap_table_offset,
465 gc_map_offset);
466 (*method_offsets_index)++;
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700467 }
468
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700469
Ian Rogers1212a022013-03-04 10:48:41 -0800470 if (compiler_driver_->IsImage()) {
Ian Rogers0571d352011-11-03 19:51:38 -0700471 ClassLinker* linker = Runtime::Current()->GetClassLinker();
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700472 // Unchecked as we hold mutator_lock_ on entry.
473 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700474 SirtRef<mirror::DexCache> dex_cache(soa.Self(), linker->FindDexCache(dex_file));
475 SirtRef<mirror::ClassLoader> class_loader(soa.Self(), nullptr);
Brian Carlstromba150c32013-08-27 17:31:03 -0700476 mirror::ArtMethod* method = linker->ResolveMethod(dex_file, method_idx, dex_cache,
Mathieu Chartier590fee92013-09-13 13:46:47 -0700477 class_loader, nullptr, invoke_type);
Ian Rogers0571d352011-11-03 19:51:38 -0700478 CHECK(method != NULL);
479 method->SetFrameSizeInBytes(frame_size_in_bytes);
480 method->SetCoreSpillMask(core_spill_mask);
481 method->SetFpSpillMask(fp_spill_mask);
482 method->SetOatMappingTableOffset(mapping_table_offset);
Ian Rogers19846512012-02-24 11:42:47 -0800483 // Don't overwrite static method trampoline
484 if (!method->IsStatic() || method->IsConstructor() ||
485 method->GetDeclaringClass()->IsInitialized()) {
486 method->SetOatCodeOffset(code_offset);
487 } else {
Jeff Haoaa4a7932013-05-13 11:28:27 -0700488 method->SetEntryPointFromCompiledCode(NULL);
Ian Rogers19846512012-02-24 11:42:47 -0800489 }
Ian Rogers0571d352011-11-03 19:51:38 -0700490 method->SetOatVmapTableOffset(vmap_table_offset);
Ian Rogers0c7abda2012-09-19 13:33:42 -0700491 method->SetOatNativeGcMapOffset(gc_map_offset);
Ian Rogers0571d352011-11-03 19:51:38 -0700492 }
Logan Chien8b977d32012-02-21 19:14:55 +0800493
Brian Carlstrome24fa612011-09-29 00:53:55 -0700494 return offset;
495}
496
Brian Carlstrom265091e2013-01-30 14:08:26 -0800497#define DCHECK_OFFSET() \
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700498 DCHECK_EQ(static_cast<off_t>(file_offset + relative_offset), out.Seek(0, kSeekCurrent)) \
499 << "file_offset=" << file_offset << " relative_offset=" << relative_offset
Brian Carlstrom265091e2013-01-30 14:08:26 -0800500
501#define DCHECK_OFFSET_() \
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700502 DCHECK_EQ(static_cast<off_t>(file_offset + offset_), out.Seek(0, kSeekCurrent)) \
503 << "file_offset=" << file_offset << " offset_=" << offset_
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700504
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800505bool OatWriter::Write(OutputStream& out) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700506 const size_t file_offset = out.Seek(0, kSeekCurrent);
507
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800508 if (!out.WriteFully(oat_header_, sizeof(*oat_header_))) {
509 PLOG(ERROR) << "Failed to write oat header to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700510 return false;
511 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700512 size_oat_header_ += sizeof(*oat_header_);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700513
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800514 if (!out.WriteFully(image_file_location_.data(), image_file_location_.size())) {
515 PLOG(ERROR) << "Failed to write oat header image file location to " << out.GetLocation();
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700516 return false;
517 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700518 size_oat_header_image_file_location_ += image_file_location_.size();
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700519
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700520 if (!WriteTables(out, file_offset)) {
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800521 LOG(ERROR) << "Failed to write oat tables to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700522 return false;
523 }
524
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700525 size_t relative_offset = WriteCode(out, file_offset);
526 if (relative_offset == 0) {
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800527 LOG(ERROR) << "Failed to write oat code to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700528 return false;
529 }
530
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700531 relative_offset = WriteCodeDexFiles(out, file_offset, relative_offset);
532 if (relative_offset == 0) {
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800533 LOG(ERROR) << "Failed to write oat code for dex files to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700534 return false;
535 }
536
Ian Rogers4bdbbc82013-06-10 16:02:31 -0700537 if (kIsDebugBuild) {
538 uint32_t size_total = 0;
539 #define DO_STAT(x) \
Anwar Ghuloum75a43f12013-08-13 17:22:14 -0700540 VLOG(compiler) << #x "=" << PrettySize(x) << " (" << x << "B)"; \
Ian Rogers4bdbbc82013-06-10 16:02:31 -0700541 size_total += x;
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700542
Ian Rogers4bdbbc82013-06-10 16:02:31 -0700543 DO_STAT(size_dex_file_alignment_);
544 DO_STAT(size_executable_offset_alignment_);
545 DO_STAT(size_oat_header_);
546 DO_STAT(size_oat_header_image_file_location_);
547 DO_STAT(size_dex_file_);
Ian Rogers848871b2013-08-05 10:56:33 -0700548 DO_STAT(size_interpreter_to_interpreter_bridge_);
549 DO_STAT(size_interpreter_to_compiled_code_bridge_);
550 DO_STAT(size_jni_dlsym_lookup_);
Jeff Hao88474b42013-10-23 16:24:40 -0700551 DO_STAT(size_portable_imt_conflict_trampoline_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -0700552 DO_STAT(size_portable_resolution_trampoline_);
Ian Rogers848871b2013-08-05 10:56:33 -0700553 DO_STAT(size_portable_to_interpreter_bridge_);
Jeff Hao88474b42013-10-23 16:24:40 -0700554 DO_STAT(size_quick_imt_conflict_trampoline_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -0700555 DO_STAT(size_quick_resolution_trampoline_);
Ian Rogers848871b2013-08-05 10:56:33 -0700556 DO_STAT(size_quick_to_interpreter_bridge_);
557 DO_STAT(size_trampoline_alignment_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -0700558 DO_STAT(size_code_size_);
559 DO_STAT(size_code_);
560 DO_STAT(size_code_alignment_);
561 DO_STAT(size_mapping_table_);
562 DO_STAT(size_vmap_table_);
563 DO_STAT(size_gc_map_);
564 DO_STAT(size_oat_dex_file_location_size_);
565 DO_STAT(size_oat_dex_file_location_data_);
566 DO_STAT(size_oat_dex_file_location_checksum_);
567 DO_STAT(size_oat_dex_file_offset_);
568 DO_STAT(size_oat_dex_file_methods_offsets_);
Brian Carlstromba150c32013-08-27 17:31:03 -0700569 DO_STAT(size_oat_class_type_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -0700570 DO_STAT(size_oat_class_status_);
Brian Carlstromba150c32013-08-27 17:31:03 -0700571 DO_STAT(size_oat_class_method_bitmaps_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -0700572 DO_STAT(size_oat_class_method_offsets_);
573 #undef DO_STAT
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700574
Anwar Ghuloum75a43f12013-08-13 17:22:14 -0700575 VLOG(compiler) << "size_total=" << PrettySize(size_total) << " (" << size_total << "B)"; \
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700576 CHECK_EQ(file_offset + size_total, static_cast<uint32_t>(out.Seek(0, kSeekCurrent)));
577 CHECK_EQ(size_, size_total);
Ian Rogers4bdbbc82013-06-10 16:02:31 -0700578 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700579
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700580 CHECK_EQ(file_offset + size_, static_cast<uint32_t>(out.Seek(0, kSeekCurrent)));
581 CHECK_EQ(size_, relative_offset);
582
Brian Carlstrome24fa612011-09-29 00:53:55 -0700583 return true;
584}
585
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700586bool OatWriter::WriteTables(OutputStream& out, const size_t file_offset) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700587 for (size_t i = 0; i != oat_dex_files_.size(); ++i) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700588 if (!oat_dex_files_[i]->Write(this, out, file_offset)) {
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800589 PLOG(ERROR) << "Failed to write oat dex information to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700590 return false;
591 }
592 }
Brian Carlstrom89521892011-12-07 22:05:07 -0800593 for (size_t i = 0; i != oat_dex_files_.size(); ++i) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700594 uint32_t expected_offset = file_offset + oat_dex_files_[i]->dex_file_offset_;
Brian Carlstrom49a0f152013-01-22 17:17:36 -0800595 off_t actual_offset = out.Seek(expected_offset, kSeekSet);
Brian Carlstrom89521892011-12-07 22:05:07 -0800596 if (static_cast<uint32_t>(actual_offset) != expected_offset) {
597 const DexFile* dex_file = (*dex_files_)[i];
598 PLOG(ERROR) << "Failed to seek to dex file section. Actual: " << actual_offset
599 << " Expected: " << expected_offset << " File: " << dex_file->GetLocation();
600 return false;
601 }
602 const DexFile* dex_file = (*dex_files_)[i];
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800603 if (!out.WriteFully(&dex_file->GetHeader(), dex_file->GetHeader().file_size_)) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700604 PLOG(ERROR) << "Failed to write dex file " << dex_file->GetLocation()
605 << " to " << out.GetLocation();
Brian Carlstrom89521892011-12-07 22:05:07 -0800606 return false;
607 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700608 size_dex_file_ += dex_file->GetHeader().file_size_;
Brian Carlstrom89521892011-12-07 22:05:07 -0800609 }
Brian Carlstrom389efb02012-01-11 12:06:26 -0800610 for (size_t i = 0; i != oat_classes_.size(); ++i) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700611 if (!oat_classes_[i]->Write(this, out, file_offset)) {
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800612 PLOG(ERROR) << "Failed to write oat methods information to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700613 return false;
614 }
615 }
616 return true;
617}
618
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700619size_t OatWriter::WriteCode(OutputStream& out, const size_t file_offset) {
620 size_t relative_offset = oat_header_->GetExecutableOffset();
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700621 off_t new_offset = out.Seek(size_executable_offset_alignment_, kSeekCurrent);
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700622 size_t expected_file_offset = file_offset + relative_offset;
623 if (static_cast<uint32_t>(new_offset) != expected_file_offset) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700624 PLOG(ERROR) << "Failed to seek to oat code section. Actual: " << new_offset
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700625 << " Expected: " << expected_file_offset << " File: " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700626 return 0;
627 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800628 DCHECK_OFFSET();
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700629 if (compiler_driver_->IsImage()) {
630 InstructionSet instruction_set = compiler_driver_->GetInstructionSet();
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700631
Ian Rogers848871b2013-08-05 10:56:33 -0700632 #define DO_TRAMPOLINE(field) \
633 do { \
634 uint32_t aligned_offset = CompiledCode::AlignCode(relative_offset, instruction_set); \
635 uint32_t alignment_padding = aligned_offset - relative_offset; \
636 out.Seek(alignment_padding, kSeekCurrent); \
637 size_trampoline_alignment_ += alignment_padding; \
638 if (!out.WriteFully(&(*field)[0], field->size())) { \
639 PLOG(ERROR) << "Failed to write " # field " to " << out.GetLocation(); \
640 return false; \
641 } \
642 size_ ## field += field->size(); \
643 relative_offset += alignment_padding + field->size(); \
644 DCHECK_OFFSET(); \
645 } while (false)
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700646
Ian Rogers848871b2013-08-05 10:56:33 -0700647 DO_TRAMPOLINE(interpreter_to_interpreter_bridge_);
648 DO_TRAMPOLINE(interpreter_to_compiled_code_bridge_);
649 DO_TRAMPOLINE(jni_dlsym_lookup_);
Jeff Hao88474b42013-10-23 16:24:40 -0700650 DO_TRAMPOLINE(portable_imt_conflict_trampoline_);
Ian Rogers848871b2013-08-05 10:56:33 -0700651 DO_TRAMPOLINE(portable_resolution_trampoline_);
652 DO_TRAMPOLINE(portable_to_interpreter_bridge_);
Jeff Hao88474b42013-10-23 16:24:40 -0700653 DO_TRAMPOLINE(quick_imt_conflict_trampoline_);
Ian Rogers848871b2013-08-05 10:56:33 -0700654 DO_TRAMPOLINE(quick_resolution_trampoline_);
655 DO_TRAMPOLINE(quick_to_interpreter_bridge_);
656 #undef DO_TRAMPOLINE
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700657 }
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700658 return relative_offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700659}
660
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700661size_t OatWriter::WriteCodeDexFiles(OutputStream& out,
662 const size_t file_offset,
663 size_t relative_offset) {
Ian Rogers0571d352011-11-03 19:51:38 -0700664 size_t oat_class_index = 0;
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800665 for (size_t i = 0; i != oat_dex_files_.size(); ++i) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700666 const DexFile* dex_file = (*dex_files_)[i];
667 CHECK(dex_file != NULL);
Brian Carlstromba150c32013-08-27 17:31:03 -0700668 relative_offset = WriteCodeDexFile(out, file_offset, relative_offset, &oat_class_index,
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700669 *dex_file);
670 if (relative_offset == 0) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700671 return 0;
672 }
673 }
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700674 return relative_offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700675}
676
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700677size_t OatWriter::WriteCodeDexFile(OutputStream& out, const size_t file_offset,
Brian Carlstromba150c32013-08-27 17:31:03 -0700678 size_t relative_offset, size_t* oat_class_index,
Ian Rogers0571d352011-11-03 19:51:38 -0700679 const DexFile& dex_file) {
680 for (size_t class_def_index = 0; class_def_index < dex_file.NumClassDefs();
Brian Carlstromba150c32013-08-27 17:31:03 -0700681 class_def_index++, (*oat_class_index)++) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700682 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Brian Carlstromba150c32013-08-27 17:31:03 -0700683 relative_offset = WriteCodeClassDef(out, file_offset, relative_offset, *oat_class_index,
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700684 dex_file, class_def);
685 if (relative_offset == 0) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700686 return 0;
687 }
688 }
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700689 return relative_offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700690}
691
Ian Rogers0571d352011-11-03 19:51:38 -0700692void OatWriter::ReportWriteFailure(const char* what, uint32_t method_idx,
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800693 const DexFile& dex_file, OutputStream& out) const {
Ian Rogers0571d352011-11-03 19:51:38 -0700694 PLOG(ERROR) << "Failed to write " << what << " for " << PrettyMethod(method_idx, dex_file)
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800695 << " to " << out.GetLocation();
Elliott Hughes234da572011-11-03 22:13:06 -0700696}
697
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800698size_t OatWriter::WriteCodeClassDef(OutputStream& out,
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700699 const size_t file_offset,
700 size_t relative_offset,
701 size_t oat_class_index,
Brian Carlstrome24fa612011-09-29 00:53:55 -0700702 const DexFile& dex_file,
703 const DexFile::ClassDef& class_def) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700704 const byte* class_data = dex_file.GetClassData(class_def);
Ian Rogers0571d352011-11-03 19:51:38 -0700705 if (class_data == NULL) {
706 // ie. an empty class such as a marker interface
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700707 return relative_offset;
Ian Rogers387b6992011-10-31 17:52:37 -0700708 }
Ian Rogers0571d352011-11-03 19:51:38 -0700709 ClassDataItemIterator it(dex_file, class_data);
710 // Skip fields
711 while (it.HasNextStaticField()) {
712 it.Next();
713 }
714 while (it.HasNextInstanceField()) {
715 it.Next();
716 }
717 // Process methods
718 size_t class_def_method_index = 0;
Brian Carlstromba150c32013-08-27 17:31:03 -0700719 size_t method_offsets_index = 0;
Ian Rogers0571d352011-11-03 19:51:38 -0700720 while (it.HasNextDirectMethod()) {
721 bool is_static = (it.GetMemberAccessFlags() & kAccStatic) != 0;
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700722 relative_offset = WriteCodeMethod(out, file_offset, relative_offset, oat_class_index,
Brian Carlstromba150c32013-08-27 17:31:03 -0700723 class_def_method_index, &method_offsets_index, is_static,
724 it.GetMemberIndex(), dex_file);
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700725 if (relative_offset == 0) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700726 return 0;
727 }
Ian Rogers0571d352011-11-03 19:51:38 -0700728 class_def_method_index++;
729 it.Next();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700730 }
Ian Rogers0571d352011-11-03 19:51:38 -0700731 while (it.HasNextVirtualMethod()) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700732 relative_offset = WriteCodeMethod(out, file_offset, relative_offset, oat_class_index,
Brian Carlstromba150c32013-08-27 17:31:03 -0700733 class_def_method_index, &method_offsets_index, false,
734 it.GetMemberIndex(), dex_file);
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700735 if (relative_offset == 0) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700736 return 0;
737 }
Ian Rogers0571d352011-11-03 19:51:38 -0700738 class_def_method_index++;
739 it.Next();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700740 }
Brian Carlstromba150c32013-08-27 17:31:03 -0700741 DCHECK(!it.HasNext());
742 CHECK_LE(method_offsets_index, class_def_method_index);
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700743 return relative_offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700744}
745
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700746size_t OatWriter::WriteCodeMethod(OutputStream& out, const size_t file_offset,
747 size_t relative_offset, size_t oat_class_index,
Brian Carlstromba150c32013-08-27 17:31:03 -0700748 size_t class_def_method_index, size_t* method_offsets_index,
749 bool is_static, uint32_t method_idx, const DexFile& dex_file) {
750 OatClass* oat_class = oat_classes_[oat_class_index];
751 const CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index);
Ian Rogers0571d352011-11-03 19:51:38 -0700752
753 if (compiled_method != NULL) { // ie. not an abstract method
Brian Carlstromba150c32013-08-27 17:31:03 -0700754 const OatMethodOffsets method_offsets = oat_class->method_offsets_[*method_offsets_index];
755 (*method_offsets_index)++;
756
Brian Carlstrom265091e2013-01-30 14:08:26 -0800757#if !defined(ART_USE_PORTABLE_COMPILER)
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700758 uint32_t aligned_offset = compiled_method->AlignCode(relative_offset);
759 uint32_t aligned_code_delta = aligned_offset - relative_offset;
Logan Chien971bf3f2012-05-01 15:47:55 +0800760 if (aligned_code_delta != 0) {
Brian Carlstrom49a0f152013-01-22 17:17:36 -0800761 off_t new_offset = out.Seek(aligned_code_delta, kSeekCurrent);
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700762 size_code_alignment_ += aligned_code_delta;
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700763 uint32_t expected_offset = file_offset + aligned_offset;
764 if (static_cast<uint32_t>(new_offset) != expected_offset) {
Logan Chien971bf3f2012-05-01 15:47:55 +0800765 PLOG(ERROR) << "Failed to seek to align oat code. Actual: " << new_offset
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700766 << " Expected: " << expected_offset << " File: " << out.GetLocation();
Logan Chien971bf3f2012-05-01 15:47:55 +0800767 return 0;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700768 }
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700769 relative_offset += aligned_code_delta;
Brian Carlstrom265091e2013-01-30 14:08:26 -0800770 DCHECK_OFFSET();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700771 }
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700772 DCHECK_ALIGNED(relative_offset, kArmAlignment);
Logan Chien971bf3f2012-05-01 15:47:55 +0800773 const std::vector<uint8_t>& code = compiled_method->GetCode();
774 uint32_t code_size = code.size() * sizeof(code[0]);
775 CHECK_NE(code_size, 0U);
776
777 // Deduplicate code arrays
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700778 size_t code_offset = relative_offset + sizeof(code_size) + compiled_method->CodeDelta();
Logan Chien971bf3f2012-05-01 15:47:55 +0800779 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator code_iter = code_offsets_.find(&code);
Brian Carlstrom265091e2013-01-30 14:08:26 -0800780 if (code_iter != code_offsets_.end() && code_offset != method_offsets.code_offset_) {
781 DCHECK(code_iter->second == method_offsets.code_offset_)
782 << PrettyMethod(method_idx, dex_file);
Logan Chien971bf3f2012-05-01 15:47:55 +0800783 } else {
Brian Carlstrom265091e2013-01-30 14:08:26 -0800784 DCHECK(code_offset == method_offsets.code_offset_) << PrettyMethod(method_idx, dex_file);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800785 if (!out.WriteFully(&code_size, sizeof(code_size))) {
786 ReportWriteFailure("method code size", method_idx, dex_file, out);
Logan Chien971bf3f2012-05-01 15:47:55 +0800787 return 0;
788 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700789 size_code_size_ += sizeof(code_size);
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700790 relative_offset += sizeof(code_size);
Brian Carlstrom265091e2013-01-30 14:08:26 -0800791 DCHECK_OFFSET();
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800792 if (!out.WriteFully(&code[0], code_size)) {
793 ReportWriteFailure("method code", method_idx, dex_file, out);
Logan Chien971bf3f2012-05-01 15:47:55 +0800794 return 0;
795 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700796 size_code_ += code_size;
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700797 relative_offset += code_size;
Logan Chien971bf3f2012-05-01 15:47:55 +0800798 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800799 DCHECK_OFFSET();
800#endif
Logan Chien971bf3f2012-05-01 15:47:55 +0800801
Ian Rogers1809a722013-08-09 22:05:32 -0700802 const std::vector<uint8_t>& mapping_table = compiled_method->GetMappingTable();
Logan Chien971bf3f2012-05-01 15:47:55 +0800803 size_t mapping_table_size = mapping_table.size() * sizeof(mapping_table[0]);
804
805 // Deduplicate mapping tables
Ian Rogers1809a722013-08-09 22:05:32 -0700806 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator mapping_iter =
Logan Chien971bf3f2012-05-01 15:47:55 +0800807 mapping_table_offsets_.find(&mapping_table);
808 if (mapping_iter != mapping_table_offsets_.end() &&
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700809 relative_offset != method_offsets.mapping_table_offset_) {
Logan Chien971bf3f2012-05-01 15:47:55 +0800810 DCHECK((mapping_table_size == 0 && method_offsets.mapping_table_offset_ == 0)
811 || mapping_iter->second == method_offsets.mapping_table_offset_)
812 << PrettyMethod(method_idx, dex_file);
813 } else {
814 DCHECK((mapping_table_size == 0 && method_offsets.mapping_table_offset_ == 0)
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700815 || relative_offset == method_offsets.mapping_table_offset_)
Logan Chien971bf3f2012-05-01 15:47:55 +0800816 << PrettyMethod(method_idx, dex_file);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800817 if (!out.WriteFully(&mapping_table[0], mapping_table_size)) {
818 ReportWriteFailure("mapping table", method_idx, dex_file, out);
Logan Chien971bf3f2012-05-01 15:47:55 +0800819 return 0;
820 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700821 size_mapping_table_ += mapping_table_size;
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700822 relative_offset += mapping_table_size;
Logan Chien971bf3f2012-05-01 15:47:55 +0800823 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800824 DCHECK_OFFSET();
Logan Chien971bf3f2012-05-01 15:47:55 +0800825
Ian Rogers1809a722013-08-09 22:05:32 -0700826 const std::vector<uint8_t>& vmap_table = compiled_method->GetVmapTable();
Logan Chien971bf3f2012-05-01 15:47:55 +0800827 size_t vmap_table_size = vmap_table.size() * sizeof(vmap_table[0]);
828
829 // Deduplicate vmap tables
Ian Rogers1809a722013-08-09 22:05:32 -0700830 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator vmap_iter =
Logan Chien971bf3f2012-05-01 15:47:55 +0800831 vmap_table_offsets_.find(&vmap_table);
832 if (vmap_iter != vmap_table_offsets_.end() &&
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700833 relative_offset != method_offsets.vmap_table_offset_) {
Logan Chien971bf3f2012-05-01 15:47:55 +0800834 DCHECK((vmap_table_size == 0 && method_offsets.vmap_table_offset_ == 0)
835 || vmap_iter->second == method_offsets.vmap_table_offset_)
836 << PrettyMethod(method_idx, dex_file);
837 } else {
838 DCHECK((vmap_table_size == 0 && method_offsets.vmap_table_offset_ == 0)
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700839 || relative_offset == method_offsets.vmap_table_offset_)
Logan Chien971bf3f2012-05-01 15:47:55 +0800840 << PrettyMethod(method_idx, dex_file);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800841 if (!out.WriteFully(&vmap_table[0], vmap_table_size)) {
842 ReportWriteFailure("vmap table", method_idx, dex_file, out);
Logan Chien971bf3f2012-05-01 15:47:55 +0800843 return 0;
844 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700845 size_vmap_table_ += vmap_table_size;
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700846 relative_offset += vmap_table_size;
Logan Chien971bf3f2012-05-01 15:47:55 +0800847 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800848 DCHECK_OFFSET();
Logan Chien971bf3f2012-05-01 15:47:55 +0800849
Ian Rogersfbdc0fa2013-04-18 16:48:17 -0700850 const std::vector<uint8_t>& gc_map = compiled_method->GetGcMap();
Logan Chien971bf3f2012-05-01 15:47:55 +0800851 size_t gc_map_size = gc_map.size() * sizeof(gc_map[0]);
852
853 // Deduplicate GC maps
854 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator gc_map_iter =
855 gc_map_offsets_.find(&gc_map);
856 if (gc_map_iter != gc_map_offsets_.end() &&
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700857 relative_offset != method_offsets.gc_map_offset_) {
Logan Chien971bf3f2012-05-01 15:47:55 +0800858 DCHECK((gc_map_size == 0 && method_offsets.gc_map_offset_ == 0)
859 || gc_map_iter->second == method_offsets.gc_map_offset_)
860 << PrettyMethod(method_idx, dex_file);
861 } else {
862 DCHECK((gc_map_size == 0 && method_offsets.gc_map_offset_ == 0)
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700863 || relative_offset == method_offsets.gc_map_offset_)
Logan Chien971bf3f2012-05-01 15:47:55 +0800864 << PrettyMethod(method_idx, dex_file);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800865 if (!out.WriteFully(&gc_map[0], gc_map_size)) {
866 ReportWriteFailure("GC map", method_idx, dex_file, out);
Logan Chien971bf3f2012-05-01 15:47:55 +0800867 return 0;
868 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700869 size_gc_map_ += gc_map_size;
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700870 relative_offset += gc_map_size;
Logan Chien971bf3f2012-05-01 15:47:55 +0800871 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800872 DCHECK_OFFSET();
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700873 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800874
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700875 return relative_offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700876}
877
Brian Carlstrom265091e2013-01-30 14:08:26 -0800878OatWriter::OatDexFile::OatDexFile(size_t offset, const DexFile& dex_file) {
879 offset_ = offset;
Elliott Hughes95572412011-12-13 18:14:20 -0800880 const std::string& location(dex_file.GetLocation());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700881 dex_file_location_size_ = location.size();
882 dex_file_location_data_ = reinterpret_cast<const uint8_t*>(location.data());
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800883 dex_file_location_checksum_ = dex_file.GetLocationChecksum();
Brian Carlstrom89521892011-12-07 22:05:07 -0800884 dex_file_offset_ = 0;
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800885 methods_offsets_.resize(dex_file.NumClassDefs());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700886}
887
888size_t OatWriter::OatDexFile::SizeOf() const {
889 return sizeof(dex_file_location_size_)
890 + dex_file_location_size_
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800891 + sizeof(dex_file_location_checksum_)
Brian Carlstrom89521892011-12-07 22:05:07 -0800892 + sizeof(dex_file_offset_)
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800893 + (sizeof(methods_offsets_[0]) * methods_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700894}
895
896void OatWriter::OatDexFile::UpdateChecksum(OatHeader& oat_header) const {
897 oat_header.UpdateChecksum(&dex_file_location_size_, sizeof(dex_file_location_size_));
898 oat_header.UpdateChecksum(dex_file_location_data_, dex_file_location_size_);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800899 oat_header.UpdateChecksum(&dex_file_location_checksum_, sizeof(dex_file_location_checksum_));
Brian Carlstrom89521892011-12-07 22:05:07 -0800900 oat_header.UpdateChecksum(&dex_file_offset_, sizeof(dex_file_offset_));
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800901 oat_header.UpdateChecksum(&methods_offsets_[0],
902 sizeof(methods_offsets_[0]) * methods_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700903}
904
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700905bool OatWriter::OatDexFile::Write(OatWriter* oat_writer,
906 OutputStream& out,
907 const size_t file_offset) const {
Brian Carlstrom265091e2013-01-30 14:08:26 -0800908 DCHECK_OFFSET_();
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800909 if (!out.WriteFully(&dex_file_location_size_, sizeof(dex_file_location_size_))) {
910 PLOG(ERROR) << "Failed to write dex file location length to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700911 return false;
912 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700913 oat_writer->size_oat_dex_file_location_size_ += sizeof(dex_file_location_size_);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800914 if (!out.WriteFully(dex_file_location_data_, dex_file_location_size_)) {
915 PLOG(ERROR) << "Failed to write dex file location data to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700916 return false;
917 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700918 oat_writer->size_oat_dex_file_location_data_ += dex_file_location_size_;
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800919 if (!out.WriteFully(&dex_file_location_checksum_, sizeof(dex_file_location_checksum_))) {
920 PLOG(ERROR) << "Failed to write dex file location checksum to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700921 return false;
922 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700923 oat_writer->size_oat_dex_file_location_checksum_ += sizeof(dex_file_location_checksum_);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800924 if (!out.WriteFully(&dex_file_offset_, sizeof(dex_file_offset_))) {
925 PLOG(ERROR) << "Failed to write dex file offset to " << out.GetLocation();
Brian Carlstrom89521892011-12-07 22:05:07 -0800926 return false;
927 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700928 oat_writer->size_oat_dex_file_offset_ += sizeof(dex_file_offset_);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800929 if (!out.WriteFully(&methods_offsets_[0],
930 sizeof(methods_offsets_[0]) * methods_offsets_.size())) {
931 PLOG(ERROR) << "Failed to write methods offsets to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700932 return false;
933 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700934 oat_writer->size_oat_dex_file_methods_offsets_ +=
935 sizeof(methods_offsets_[0]) * methods_offsets_.size();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700936 return true;
937}
938
Brian Carlstromba150c32013-08-27 17:31:03 -0700939OatWriter::OatClass::OatClass(size_t offset,
940 std::vector<CompiledMethod*>* compiled_methods,
941 uint32_t num_non_null_compiled_methods,
942 mirror::Class::Status status) {
943 CHECK(compiled_methods != NULL);
944 uint32_t num_methods = compiled_methods->size();
945 CHECK_LE(num_non_null_compiled_methods, num_methods);
946
Brian Carlstrom265091e2013-01-30 14:08:26 -0800947 offset_ = offset;
Brian Carlstromba150c32013-08-27 17:31:03 -0700948 compiled_methods_ = compiled_methods;
949 oat_method_offsets_offsets_from_oat_class_.resize(num_methods);
950
951 // Since both kOatClassNoneCompiled and kOatClassAllCompiled could
952 // apply when there are 0 methods, we just arbitrarily say that 0
953 // methods means kOatClassNoneCompiled and that we won't use
954 // kOatClassAllCompiled unless there is at least one compiled
955 // method. This means in an interpretter only system, we can assert
956 // that all classes are kOatClassNoneCompiled.
957 if (num_non_null_compiled_methods == 0) {
958 type_ = kOatClassNoneCompiled;
959 } else if (num_non_null_compiled_methods == num_methods) {
960 type_ = kOatClassAllCompiled;
961 } else {
962 type_ = kOatClassSomeCompiled;
963 }
964
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800965 status_ = status;
Brian Carlstromba150c32013-08-27 17:31:03 -0700966 method_offsets_.resize(num_non_null_compiled_methods);
967
968 uint32_t oat_method_offsets_offset_from_oat_class = sizeof(type_) + sizeof(status_);
969 if (type_ == kOatClassSomeCompiled) {
970 method_bitmap_ = new BitVector(num_methods, false, Allocator::GetMallocAllocator());
971 method_bitmap_size_ = method_bitmap_->GetSizeOf();
972 oat_method_offsets_offset_from_oat_class += sizeof(method_bitmap_size_);
973 oat_method_offsets_offset_from_oat_class += method_bitmap_size_;
974 } else {
975 method_bitmap_ = NULL;
976 method_bitmap_size_ = 0;
977 }
978
979 for (size_t i = 0; i < num_methods; i++) {
980 CompiledMethod* compiled_method = (*compiled_methods_)[i];
981 if (compiled_method == NULL) {
982 oat_method_offsets_offsets_from_oat_class_[i] = 0;
983 } else {
984 oat_method_offsets_offsets_from_oat_class_[i] = oat_method_offsets_offset_from_oat_class;
985 oat_method_offsets_offset_from_oat_class += sizeof(OatMethodOffsets);
986 if (type_ == kOatClassSomeCompiled) {
987 method_bitmap_->SetBit(i);
988 }
989 }
990 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700991}
992
Brian Carlstromba150c32013-08-27 17:31:03 -0700993OatWriter::OatClass::~OatClass() {
994 delete compiled_methods_;
995}
996
997#if defined(ART_USE_PORTABLE_COMPILER)
Brian Carlstrom265091e2013-01-30 14:08:26 -0800998size_t OatWriter::OatClass::GetOatMethodOffsetsOffsetFromOatHeader(
999 size_t class_def_method_index_) const {
Brian Carlstromba150c32013-08-27 17:31:03 -07001000 uint32_t method_offset = GetOatMethodOffsetsOffsetFromOatClass(class_def_method_index_);
1001 if (method_offset == 0) {
1002 return 0;
1003 }
1004 return offset_ + method_offset;
Brian Carlstrom265091e2013-01-30 14:08:26 -08001005}
1006
1007size_t OatWriter::OatClass::GetOatMethodOffsetsOffsetFromOatClass(
1008 size_t class_def_method_index_) const {
Brian Carlstromba150c32013-08-27 17:31:03 -07001009 return oat_method_offsets_offsets_from_oat_class_[class_def_method_index_];
Brian Carlstrom265091e2013-01-30 14:08:26 -08001010}
Brian Carlstromba150c32013-08-27 17:31:03 -07001011#endif
Brian Carlstrom265091e2013-01-30 14:08:26 -08001012
1013size_t OatWriter::OatClass::SizeOf() const {
Brian Carlstromba150c32013-08-27 17:31:03 -07001014 return sizeof(status_)
1015 + sizeof(type_)
1016 + ((method_bitmap_size_ == 0) ? 0 : sizeof(method_bitmap_size_))
1017 + method_bitmap_size_
1018 + (sizeof(method_offsets_[0]) * method_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -07001019}
1020
Brian Carlstrom389efb02012-01-11 12:06:26 -08001021void OatWriter::OatClass::UpdateChecksum(OatHeader& oat_header) const {
Brian Carlstrom0755ec52012-01-11 15:19:46 -08001022 oat_header.UpdateChecksum(&status_, sizeof(status_));
Brian Carlstromba150c32013-08-27 17:31:03 -07001023 oat_header.UpdateChecksum(&type_, sizeof(type_));
1024 if (method_bitmap_size_ != 0) {
1025 CHECK_EQ(kOatClassSomeCompiled, type_);
1026 oat_header.UpdateChecksum(&method_bitmap_size_, sizeof(method_bitmap_size_));
1027 oat_header.UpdateChecksum(method_bitmap_->GetRawStorage(), method_bitmap_size_);
1028 }
Brian Carlstrom0755ec52012-01-11 15:19:46 -08001029 oat_header.UpdateChecksum(&method_offsets_[0],
1030 sizeof(method_offsets_[0]) * method_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -07001031}
1032
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001033bool OatWriter::OatClass::Write(OatWriter* oat_writer,
1034 OutputStream& out,
1035 const size_t file_offset) const {
Brian Carlstrom265091e2013-01-30 14:08:26 -08001036 DCHECK_OFFSET_();
Brian Carlstromcd60ac72013-01-20 17:09:51 -08001037 if (!out.WriteFully(&status_, sizeof(status_))) {
1038 PLOG(ERROR) << "Failed to write class status to " << out.GetLocation();
Brian Carlstrom0755ec52012-01-11 15:19:46 -08001039 return false;
1040 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001041 oat_writer->size_oat_class_status_ += sizeof(status_);
Brian Carlstromba150c32013-08-27 17:31:03 -07001042 if (!out.WriteFully(&type_, sizeof(type_))) {
1043 PLOG(ERROR) << "Failed to write oat class type to " << out.GetLocation();
1044 return false;
1045 }
1046 oat_writer->size_oat_class_type_ += sizeof(type_);
1047 if (method_bitmap_size_ != 0) {
1048 CHECK_EQ(kOatClassSomeCompiled, type_);
1049 if (!out.WriteFully(&method_bitmap_size_, sizeof(method_bitmap_size_))) {
1050 PLOG(ERROR) << "Failed to write method bitmap size to " << out.GetLocation();
1051 return false;
1052 }
1053 oat_writer->size_oat_class_method_bitmaps_ += sizeof(method_bitmap_size_);
1054 if (!out.WriteFully(method_bitmap_->GetRawStorage(), method_bitmap_size_)) {
1055 PLOG(ERROR) << "Failed to write method bitmap to " << out.GetLocation();
1056 return false;
1057 }
1058 oat_writer->size_oat_class_method_bitmaps_ += method_bitmap_size_;
1059 }
Brian Carlstromcd60ac72013-01-20 17:09:51 -08001060 if (!out.WriteFully(&method_offsets_[0],
1061 sizeof(method_offsets_[0]) * method_offsets_.size())) {
1062 PLOG(ERROR) << "Failed to write method offsets to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001063 return false;
1064 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001065 oat_writer->size_oat_class_method_offsets_ += sizeof(method_offsets_[0]) * method_offsets_.size();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001066 return true;
1067}
1068
Brian Carlstrome24fa612011-09-29 00:53:55 -07001069} // namespace art