blob: 28fb1479d7100571dd837d94ca28d4428d90fb83 [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"
Ian Rogers1d54e732013-05-02 21:10:01 -070026#include "gc/space/space.h"
Brian Carlstromea46f952013-07-30 01:26:50 -070027#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080028#include "mirror/array.h"
29#include "mirror/class_loader.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070030#include "mirror/object-inl.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070031#include "os.h"
Brian Carlstromcd60ac72013-01-20 17:09:51 -080032#include "output_stream.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070033#include "safe_map.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070034#include "scoped_thread_state_change.h"
jeffhaoec014232012-09-05 10:42:25 -070035#include "verifier/method_verifier.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070036
37namespace art {
38
Brian Carlstrom3320cf42011-10-04 14:58:28 -070039OatWriter::OatWriter(const std::vector<const DexFile*>& dex_files,
Brian Carlstrom28db0122012-10-18 16:20:41 -070040 uint32_t image_file_location_oat_checksum,
41 uint32_t image_file_location_oat_begin,
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070042 const std::string& image_file_location,
Ian Rogers1212a022013-03-04 10:48:41 -080043 const CompilerDriver* compiler)
Jeff Hao0aba0ba2013-06-03 14:49:28 -070044 : compiler_driver_(compiler),
45 dex_files_(&dex_files),
46 image_file_location_oat_checksum_(image_file_location_oat_checksum),
47 image_file_location_oat_begin_(image_file_location_oat_begin),
48 image_file_location_(image_file_location),
49 oat_header_(NULL),
50 size_dex_file_alignment_(0),
51 size_executable_offset_alignment_(0),
52 size_oat_header_(0),
53 size_oat_header_image_file_location_(0),
54 size_dex_file_(0),
Ian Rogers848871b2013-08-05 10:56:33 -070055 size_interpreter_to_interpreter_bridge_(0),
56 size_interpreter_to_compiled_code_bridge_(0),
57 size_jni_dlsym_lookup_(0),
Jeff Hao88474b42013-10-23 16:24:40 -070058 size_portable_imt_conflict_trampoline_(0),
Jeff Hao0aba0ba2013-06-03 14:49:28 -070059 size_portable_resolution_trampoline_(0),
Ian Rogers848871b2013-08-05 10:56:33 -070060 size_portable_to_interpreter_bridge_(0),
Jeff Hao88474b42013-10-23 16:24:40 -070061 size_quick_imt_conflict_trampoline_(0),
Jeff Hao0aba0ba2013-06-03 14:49:28 -070062 size_quick_resolution_trampoline_(0),
Ian Rogers848871b2013-08-05 10:56:33 -070063 size_quick_to_interpreter_bridge_(0),
64 size_trampoline_alignment_(0),
Jeff Hao0aba0ba2013-06-03 14:49:28 -070065 size_code_size_(0),
66 size_code_(0),
67 size_code_alignment_(0),
68 size_mapping_table_(0),
69 size_vmap_table_(0),
70 size_gc_map_(0),
71 size_oat_dex_file_location_size_(0),
72 size_oat_dex_file_location_data_(0),
73 size_oat_dex_file_location_checksum_(0),
74 size_oat_dex_file_offset_(0),
75 size_oat_dex_file_methods_offsets_(0),
Brian Carlstromba150c32013-08-27 17:31:03 -070076 size_oat_class_type_(0),
Jeff Hao0aba0ba2013-06-03 14:49:28 -070077 size_oat_class_status_(0),
Brian Carlstromba150c32013-08-27 17:31:03 -070078 size_oat_class_method_bitmaps_(0),
Jeff Hao0aba0ba2013-06-03 14:49:28 -070079 size_oat_class_method_offsets_(0) {
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070080 size_t offset = InitOatHeader();
Brian Carlstrome24fa612011-09-29 00:53:55 -070081 offset = InitOatDexFiles(offset);
Brian Carlstrom89521892011-12-07 22:05:07 -080082 offset = InitDexFiles(offset);
Brian Carlstrom389efb02012-01-11 12:06:26 -080083 offset = InitOatClasses(offset);
Brian Carlstrome24fa612011-09-29 00:53:55 -070084 offset = InitOatCode(offset);
85 offset = InitOatCodeDexFiles(offset);
Brian Carlstromc50d8e12013-07-23 22:35:16 -070086 size_ = offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -070087
88 CHECK_EQ(dex_files_->size(), oat_dex_files_.size());
Jeff Hao0aba0ba2013-06-03 14:49:28 -070089 CHECK(image_file_location.empty() == compiler->IsImage());
Brian Carlstrome24fa612011-09-29 00:53:55 -070090}
91
Ian Rogers0571d352011-11-03 19:51:38 -070092OatWriter::~OatWriter() {
93 delete oat_header_;
94 STLDeleteElements(&oat_dex_files_);
Brian Carlstrom389efb02012-01-11 12:06:26 -080095 STLDeleteElements(&oat_classes_);
Ian Rogers0571d352011-11-03 19:51:38 -070096}
97
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070098size_t OatWriter::InitOatHeader() {
Brian Carlstrome24fa612011-09-29 00:53:55 -070099 // create the OatHeader
Ian Rogers1212a022013-03-04 10:48:41 -0800100 oat_header_ = new OatHeader(compiler_driver_->GetInstructionSet(),
Dave Allison70202782013-10-22 17:52:19 -0700101 compiler_driver_->GetInstructionSetFeatures(),
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700102 dex_files_,
Brian Carlstrom28db0122012-10-18 16:20:41 -0700103 image_file_location_oat_checksum_,
104 image_file_location_oat_begin_,
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700105 image_file_location_);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700106 size_t offset = sizeof(*oat_header_);
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700107 offset += image_file_location_.size();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700108 return offset;
109}
110
111size_t OatWriter::InitOatDexFiles(size_t offset) {
112 // create the OatDexFiles
113 for (size_t i = 0; i != dex_files_->size(); ++i) {
114 const DexFile* dex_file = (*dex_files_)[i];
115 CHECK(dex_file != NULL);
Brian Carlstrom265091e2013-01-30 14:08:26 -0800116 OatDexFile* oat_dex_file = new OatDexFile(offset, *dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700117 oat_dex_files_.push_back(oat_dex_file);
118 offset += oat_dex_file->SizeOf();
119 }
120 return offset;
121}
122
Brian Carlstrom89521892011-12-07 22:05:07 -0800123size_t OatWriter::InitDexFiles(size_t offset) {
124 // calculate the offsets within OatDexFiles to the DexFiles
125 for (size_t i = 0; i != dex_files_->size(); ++i) {
126 // dex files are required to be 4 byte aligned
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700127 size_t original_offset = offset;
Brian Carlstrom89521892011-12-07 22:05:07 -0800128 offset = RoundUp(offset, 4);
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700129 size_dex_file_alignment_ += offset - original_offset;
Brian Carlstrom89521892011-12-07 22:05:07 -0800130
131 // set offset in OatDexFile to DexFile
132 oat_dex_files_[i]->dex_file_offset_ = offset;
133
134 const DexFile* dex_file = (*dex_files_)[i];
135 offset += dex_file->GetHeader().file_size_;
136 }
137 return offset;
138}
139
Brian Carlstrom389efb02012-01-11 12:06:26 -0800140size_t OatWriter::InitOatClasses(size_t offset) {
141 // create the OatClasses
142 // calculate the offsets within OatDexFiles to OatClasses
Brian Carlstrome24fa612011-09-29 00:53:55 -0700143 for (size_t i = 0; i != dex_files_->size(); ++i) {
144 const DexFile* dex_file = (*dex_files_)[i];
145 for (size_t class_def_index = 0;
146 class_def_index < dex_file->NumClassDefs();
Ian Rogersc20a83e2012-01-18 18:15:32 -0800147 class_def_index++) {
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800148 oat_dex_files_[i]->methods_offsets_[class_def_index] = offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700149 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
150 const byte* class_data = dex_file->GetClassData(class_def);
Brian Carlstromba150c32013-08-27 17:31:03 -0700151 uint32_t num_non_null_compiled_methods = 0;
152 UniquePtr<std::vector<CompiledMethod*> > compiled_methods(new std::vector<CompiledMethod*>());
Ian Rogers0571d352011-11-03 19:51:38 -0700153 if (class_data != NULL) { // ie not an empty class, such as a marker interface
154 ClassDataItemIterator it(*dex_file, class_data);
155 size_t num_direct_methods = it.NumDirectMethods();
156 size_t num_virtual_methods = it.NumVirtualMethods();
Brian Carlstromba150c32013-08-27 17:31:03 -0700157 size_t num_methods = num_direct_methods + num_virtual_methods;
158
159 // Fill in the compiled_methods_ array for methods that have a
160 // CompiledMethod. We track the number of non-null entries in
161 // num_non_null_compiled_methods since we only want to allocate
162 // OatMethodOffsets for the compiled methods.
163 compiled_methods->reserve(num_methods);
164 while (it.HasNextStaticField()) {
165 it.Next();
166 }
167 while (it.HasNextInstanceField()) {
168 it.Next();
169 }
170 size_t class_def_method_index = 0;
171 while (it.HasNextDirectMethod()) {
172 uint32_t method_idx = it.GetMemberIndex();
173 CompiledMethod* compiled_method =
174 compiler_driver_->GetCompiledMethod(MethodReference(dex_file, method_idx));
175 compiled_methods->push_back(compiled_method);
176 if (compiled_method != NULL) {
177 num_non_null_compiled_methods++;
178 }
179 class_def_method_index++;
180 it.Next();
181 }
182 while (it.HasNextVirtualMethod()) {
183 uint32_t method_idx = it.GetMemberIndex();
184 CompiledMethod* compiled_method =
185 compiler_driver_->GetCompiledMethod(MethodReference(dex_file, method_idx));
186 compiled_methods->push_back(compiled_method);
187 if (compiled_method != NULL) {
188 num_non_null_compiled_methods++;
189 }
190 class_def_method_index++;
191 it.Next();
192 }
Ian Rogers0571d352011-11-03 19:51:38 -0700193 }
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800194
Brian Carlstrom51c24672013-07-11 16:00:56 -0700195 ClassReference class_ref(dex_file, class_def_index);
Ian Rogers1212a022013-03-04 10:48:41 -0800196 CompiledClass* compiled_class = compiler_driver_->GetCompiledClass(class_ref);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800197 mirror::Class::Status status;
jeffhaoec014232012-09-05 10:42:25 -0700198 if (compiled_class != NULL) {
199 status = compiled_class->GetStatus();
200 } else if (verifier::MethodVerifier::IsClassRejected(class_ref)) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800201 status = mirror::Class::kStatusError;
jeffhaoec014232012-09-05 10:42:25 -0700202 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800203 status = mirror::Class::kStatusNotReady;
jeffhaoec014232012-09-05 10:42:25 -0700204 }
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800205
Brian Carlstromba150c32013-08-27 17:31:03 -0700206 OatClass* oat_class = new OatClass(offset, compiled_methods.release(),
207 num_non_null_compiled_methods, status);
Brian Carlstrom389efb02012-01-11 12:06:26 -0800208 oat_classes_.push_back(oat_class);
209 offset += oat_class->SizeOf();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700210 }
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800211 oat_dex_files_[i]->UpdateChecksum(*oat_header_);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700212 }
213 return offset;
214}
215
216size_t OatWriter::InitOatCode(size_t offset) {
217 // calculate the offsets within OatHeader to executable code
218 size_t old_offset = offset;
219 // required to be on a new page boundary
220 offset = RoundUp(offset, kPageSize);
221 oat_header_->SetExecutableOffset(offset);
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700222 size_executable_offset_alignment_ = offset - old_offset;
223 if (compiler_driver_->IsImage()) {
224 InstructionSet instruction_set = compiler_driver_->GetInstructionSet();
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700225
Ian Rogers848871b2013-08-05 10:56:33 -0700226 #define DO_TRAMPOLINE(field, fn_name) \
227 offset = CompiledCode::AlignCode(offset, instruction_set); \
228 oat_header_->Set ## fn_name ## Offset(offset); \
229 field.reset(compiler_driver_->Create ## fn_name()); \
230 offset += field->size();
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700231
Ian Rogers848871b2013-08-05 10:56:33 -0700232 DO_TRAMPOLINE(interpreter_to_interpreter_bridge_, InterpreterToInterpreterBridge);
233 DO_TRAMPOLINE(interpreter_to_compiled_code_bridge_, InterpreterToCompiledCodeBridge);
234 DO_TRAMPOLINE(jni_dlsym_lookup_, JniDlsymLookup);
Jeff Hao88474b42013-10-23 16:24:40 -0700235 DO_TRAMPOLINE(portable_imt_conflict_trampoline_, PortableImtConflictTrampoline);
Ian Rogers848871b2013-08-05 10:56:33 -0700236 DO_TRAMPOLINE(portable_resolution_trampoline_, PortableResolutionTrampoline);
237 DO_TRAMPOLINE(portable_to_interpreter_bridge_, PortableToInterpreterBridge);
Jeff Hao88474b42013-10-23 16:24:40 -0700238 DO_TRAMPOLINE(quick_imt_conflict_trampoline_, QuickImtConflictTrampoline);
Ian Rogers848871b2013-08-05 10:56:33 -0700239 DO_TRAMPOLINE(quick_resolution_trampoline_, QuickResolutionTrampoline);
240 DO_TRAMPOLINE(quick_to_interpreter_bridge_, QuickToInterpreterBridge);
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700241
Ian Rogers848871b2013-08-05 10:56:33 -0700242 #undef DO_TRAMPOLINE
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700243 } else {
Ian Rogers848871b2013-08-05 10:56:33 -0700244 oat_header_->SetInterpreterToInterpreterBridgeOffset(0);
245 oat_header_->SetInterpreterToCompiledCodeBridgeOffset(0);
246 oat_header_->SetJniDlsymLookupOffset(0);
Jeff Hao88474b42013-10-23 16:24:40 -0700247 oat_header_->SetPortableImtConflictTrampolineOffset(0);
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700248 oat_header_->SetPortableResolutionTrampolineOffset(0);
Ian Rogers848871b2013-08-05 10:56:33 -0700249 oat_header_->SetPortableToInterpreterBridgeOffset(0);
Jeff Hao88474b42013-10-23 16:24:40 -0700250 oat_header_->SetQuickImtConflictTrampolineOffset(0);
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700251 oat_header_->SetQuickResolutionTrampolineOffset(0);
Ian Rogers848871b2013-08-05 10:56:33 -0700252 oat_header_->SetQuickToInterpreterBridgeOffset(0);
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700253 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700254 return offset;
255}
256
257size_t OatWriter::InitOatCodeDexFiles(size_t offset) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700258 size_t oat_class_index = 0;
259 for (size_t i = 0; i != dex_files_->size(); ++i) {
260 const DexFile* dex_file = (*dex_files_)[i];
261 CHECK(dex_file != NULL);
Brian Carlstromba150c32013-08-27 17:31:03 -0700262 offset = InitOatCodeDexFile(offset, &oat_class_index, *dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700263 }
264 return offset;
265}
266
267size_t OatWriter::InitOatCodeDexFile(size_t offset,
Brian Carlstromba150c32013-08-27 17:31:03 -0700268 size_t* oat_class_index,
Brian Carlstrome24fa612011-09-29 00:53:55 -0700269 const DexFile& dex_file) {
Elliott Hughesba8eee12012-01-24 20:25:24 -0800270 for (size_t class_def_index = 0;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700271 class_def_index < dex_file.NumClassDefs();
Brian Carlstromba150c32013-08-27 17:31:03 -0700272 class_def_index++, (*oat_class_index)++) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700273 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Brian Carlstromba150c32013-08-27 17:31:03 -0700274 offset = InitOatCodeClassDef(offset, *oat_class_index, class_def_index, dex_file, class_def);
275 oat_classes_[*oat_class_index]->UpdateChecksum(*oat_header_);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700276 }
277 return offset;
278}
279
280size_t OatWriter::InitOatCodeClassDef(size_t offset,
Ian Rogersc20a83e2012-01-18 18:15:32 -0800281 size_t oat_class_index, size_t class_def_index,
Brian Carlstrome24fa612011-09-29 00:53:55 -0700282 const DexFile& dex_file,
283 const DexFile::ClassDef& class_def) {
284 const byte* class_data = dex_file.GetClassData(class_def);
Ian Rogers0571d352011-11-03 19:51:38 -0700285 if (class_data == NULL) {
286 // empty class, such as a marker interface
Ian Rogers387b6992011-10-31 17:52:37 -0700287 return offset;
288 }
Ian Rogers0571d352011-11-03 19:51:38 -0700289 ClassDataItemIterator it(dex_file, class_data);
Brian Carlstromba150c32013-08-27 17:31:03 -0700290 CHECK_LE(oat_classes_[oat_class_index]->method_offsets_.size(),
Ian Rogers0571d352011-11-03 19:51:38 -0700291 it.NumDirectMethods() + it.NumVirtualMethods());
292 // Skip fields
293 while (it.HasNextStaticField()) {
294 it.Next();
295 }
296 while (it.HasNextInstanceField()) {
297 it.Next();
298 }
299 // Process methods
Brian Carlstrome24fa612011-09-29 00:53:55 -0700300 size_t class_def_method_index = 0;
Brian Carlstromba150c32013-08-27 17:31:03 -0700301 size_t method_offsets_index = 0;
Ian Rogers0571d352011-11-03 19:51:38 -0700302 while (it.HasNextDirectMethod()) {
Ian Rogersc20a83e2012-01-18 18:15:32 -0800303 bool is_native = (it.GetMemberAccessFlags() & kAccNative) != 0;
Ian Rogers08f753d2012-08-24 14:35:25 -0700304 offset = InitOatCodeMethod(offset, oat_class_index, class_def_index, class_def_method_index,
Brian Carlstromba150c32013-08-27 17:31:03 -0700305 &method_offsets_index, is_native,
306 it.GetMethodInvokeType(class_def), it.GetMemberIndex(), dex_file);
Ian Rogers0571d352011-11-03 19:51:38 -0700307 class_def_method_index++;
308 it.Next();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700309 }
Ian Rogers0571d352011-11-03 19:51:38 -0700310 while (it.HasNextVirtualMethod()) {
Ian Rogersc20a83e2012-01-18 18:15:32 -0800311 bool is_native = (it.GetMemberAccessFlags() & kAccNative) != 0;
Ian Rogers08f753d2012-08-24 14:35:25 -0700312 offset = InitOatCodeMethod(offset, oat_class_index, class_def_index, class_def_method_index,
Brian Carlstromba150c32013-08-27 17:31:03 -0700313 &method_offsets_index, is_native,
314 it.GetMethodInvokeType(class_def), it.GetMemberIndex(), dex_file);
Ian Rogers0571d352011-11-03 19:51:38 -0700315 class_def_method_index++;
316 it.Next();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700317 }
Ian Rogers0571d352011-11-03 19:51:38 -0700318 DCHECK(!it.HasNext());
Brian Carlstromba150c32013-08-27 17:31:03 -0700319 CHECK_LE(method_offsets_index, class_def_method_index);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700320 return offset;
321}
322
Elliott Hughes1bac54f2012-03-16 12:48:31 -0700323size_t OatWriter::InitOatCodeMethod(size_t offset, size_t oat_class_index,
324 size_t __attribute__((unused)) class_def_index,
325 size_t class_def_method_index,
Brian Carlstromba150c32013-08-27 17:31:03 -0700326 size_t* method_offsets_index,
Elliott Hughes1bac54f2012-03-16 12:48:31 -0700327 bool __attribute__((unused)) is_native,
Brian Carlstrom265091e2013-01-30 14:08:26 -0800328 InvokeType invoke_type,
Brian Carlstromba150c32013-08-27 17:31:03 -0700329 uint32_t method_idx, const DexFile& dex_file) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700330 // derived from CompiledMethod if available
331 uint32_t code_offset = 0;
332 uint32_t frame_size_in_bytes = kStackAlignment;
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700333 uint32_t core_spill_mask = 0;
334 uint32_t fp_spill_mask = 0;
335 uint32_t mapping_table_offset = 0;
336 uint32_t vmap_table_offset = 0;
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800337 uint32_t gc_map_offset = 0;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700338
Brian Carlstrom265091e2013-01-30 14:08:26 -0800339 OatClass* oat_class = oat_classes_[oat_class_index];
340#if defined(ART_USE_PORTABLE_COMPILER)
341 size_t oat_method_offsets_offset =
342 oat_class->GetOatMethodOffsetsOffsetFromOatHeader(class_def_method_index);
343#endif
344
Brian Carlstromba150c32013-08-27 17:31:03 -0700345 CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700346 if (compiled_method != NULL) {
Brian Carlstrom265091e2013-01-30 14:08:26 -0800347#if defined(ART_USE_PORTABLE_COMPILER)
348 compiled_method->AddOatdataOffsetToCompliledCodeOffset(
349 oat_method_offsets_offset + OFFSETOF_MEMBER(OatMethodOffsets, code_offset_));
350#else
351 const std::vector<uint8_t>& code = compiled_method->GetCode();
Logan Chien971bf3f2012-05-01 15:47:55 +0800352 offset = compiled_method->AlignCode(offset);
353 DCHECK_ALIGNED(offset, kArmAlignment);
Logan Chien971bf3f2012-05-01 15:47:55 +0800354 uint32_t code_size = code.size() * sizeof(code[0]);
355 CHECK_NE(code_size, 0U);
356 uint32_t thumb_offset = compiled_method->CodeDelta();
357 code_offset = offset + sizeof(code_size) + thumb_offset;
358
359 // Deduplicate code arrays
360 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator code_iter = code_offsets_.find(&code);
361 if (code_iter != code_offsets_.end()) {
362 code_offset = code_iter->second;
jeffhao55d78212011-11-02 11:41:50 -0700363 } else {
Logan Chien971bf3f2012-05-01 15:47:55 +0800364 code_offsets_.Put(&code, code_offset);
365 offset += sizeof(code_size); // code size is prepended before code
366 offset += code_size;
367 oat_header_->UpdateChecksum(&code[0], code_size);
368 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800369#endif
Logan Chien971bf3f2012-05-01 15:47:55 +0800370 frame_size_in_bytes = compiled_method->GetFrameSizeInBytes();
371 core_spill_mask = compiled_method->GetCoreSpillMask();
372 fp_spill_mask = compiled_method->GetFpSpillMask();
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700373
Ian Rogers1809a722013-08-09 22:05:32 -0700374 const std::vector<uint8_t>& mapping_table = compiled_method->GetMappingTable();
Logan Chien971bf3f2012-05-01 15:47:55 +0800375 size_t mapping_table_size = mapping_table.size() * sizeof(mapping_table[0]);
376 mapping_table_offset = (mapping_table_size == 0) ? 0 : offset;
jeffhao55d78212011-11-02 11:41:50 -0700377
Logan Chien971bf3f2012-05-01 15:47:55 +0800378 // Deduplicate mapping tables
Ian Rogers1809a722013-08-09 22:05:32 -0700379 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator mapping_iter =
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700380 mapping_table_offsets_.find(&mapping_table);
Logan Chien971bf3f2012-05-01 15:47:55 +0800381 if (mapping_iter != mapping_table_offsets_.end()) {
382 mapping_table_offset = mapping_iter->second;
383 } else {
384 mapping_table_offsets_.Put(&mapping_table, mapping_table_offset);
385 offset += mapping_table_size;
386 oat_header_->UpdateChecksum(&mapping_table[0], mapping_table_size);
387 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700388
Ian Rogers1809a722013-08-09 22:05:32 -0700389 const std::vector<uint8_t>& vmap_table = compiled_method->GetVmapTable();
Logan Chien971bf3f2012-05-01 15:47:55 +0800390 size_t vmap_table_size = vmap_table.size() * sizeof(vmap_table[0]);
391 vmap_table_offset = (vmap_table_size == 0) ? 0 : offset;
jeffhao55d78212011-11-02 11:41:50 -0700392
Logan Chien971bf3f2012-05-01 15:47:55 +0800393 // Deduplicate vmap tables
Ian Rogers1809a722013-08-09 22:05:32 -0700394 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator vmap_iter =
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700395 vmap_table_offsets_.find(&vmap_table);
Logan Chien971bf3f2012-05-01 15:47:55 +0800396 if (vmap_iter != vmap_table_offsets_.end()) {
397 vmap_table_offset = vmap_iter->second;
398 } else {
399 vmap_table_offsets_.Put(&vmap_table, vmap_table_offset);
400 offset += vmap_table_size;
401 oat_header_->UpdateChecksum(&vmap_table[0], vmap_table_size);
402 }
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800403
Ian Rogersfbdc0fa2013-04-18 16:48:17 -0700404 const std::vector<uint8_t>& gc_map = compiled_method->GetGcMap();
Logan Chien971bf3f2012-05-01 15:47:55 +0800405 size_t gc_map_size = gc_map.size() * sizeof(gc_map[0]);
406 gc_map_offset = (gc_map_size == 0) ? 0 : offset;
Logan Chienccb7bf12012-03-28 12:52:32 +0800407
Mathieu Chartier590fee92013-09-13 13:46:47 -0700408 if (kIsDebugBuild) {
409 // We expect GC maps except when the class hasn't been verified or the method is native
410 ClassReference class_ref(&dex_file, class_def_index);
411 CompiledClass* compiled_class = compiler_driver_->GetCompiledClass(class_ref);
412 mirror::Class::Status status;
413 if (compiled_class != NULL) {
414 status = compiled_class->GetStatus();
415 } else if (verifier::MethodVerifier::IsClassRejected(class_ref)) {
416 status = mirror::Class::kStatusError;
417 } else {
418 status = mirror::Class::kStatusNotReady;
419 }
420 CHECK(gc_map_size != 0 || is_native || status < mirror::Class::kStatusVerified)
421 << &gc_map << " " << gc_map_size << " " << (is_native ? "true" : "false") << " "
422 << (status < mirror::Class::kStatusVerified) << " " << status << " "
423 << PrettyMethod(method_idx, dex_file);
jeffhaoec014232012-09-05 10:42:25 -0700424 }
Ian Rogersc20a83e2012-01-18 18:15:32 -0800425
Logan Chien971bf3f2012-05-01 15:47:55 +0800426 // Deduplicate GC maps
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700427 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator gc_map_iter =
428 gc_map_offsets_.find(&gc_map);
Logan Chien971bf3f2012-05-01 15:47:55 +0800429 if (gc_map_iter != gc_map_offsets_.end()) {
430 gc_map_offset = gc_map_iter->second;
431 } else {
432 gc_map_offsets_.Put(&gc_map, gc_map_offset);
433 offset += gc_map_size;
434 oat_header_->UpdateChecksum(&gc_map[0], gc_map_size);
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800435 }
Brian Carlstromba150c32013-08-27 17:31:03 -0700436
437 oat_class->method_offsets_[*method_offsets_index] =
438 OatMethodOffsets(code_offset,
439 frame_size_in_bytes,
440 core_spill_mask,
441 fp_spill_mask,
442 mapping_table_offset,
443 vmap_table_offset,
444 gc_map_offset);
445 (*method_offsets_index)++;
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700446 }
447
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700448
Ian Rogers1212a022013-03-04 10:48:41 -0800449 if (compiler_driver_->IsImage()) {
Ian Rogers0571d352011-11-03 19:51:38 -0700450 ClassLinker* linker = Runtime::Current()->GetClassLinker();
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700451 // Unchecked as we hold mutator_lock_ on entry.
452 ScopedObjectAccessUnchecked soa(Thread::Current());
Mathieu Chartier590fee92013-09-13 13:46:47 -0700453 SirtRef<mirror::DexCache> dex_cache(soa.Self(), linker->FindDexCache(dex_file));
454 SirtRef<mirror::ClassLoader> class_loader(soa.Self(), nullptr);
Brian Carlstromba150c32013-08-27 17:31:03 -0700455 mirror::ArtMethod* method = linker->ResolveMethod(dex_file, method_idx, dex_cache,
Mathieu Chartier590fee92013-09-13 13:46:47 -0700456 class_loader, nullptr, invoke_type);
Ian Rogers0571d352011-11-03 19:51:38 -0700457 CHECK(method != NULL);
458 method->SetFrameSizeInBytes(frame_size_in_bytes);
459 method->SetCoreSpillMask(core_spill_mask);
460 method->SetFpSpillMask(fp_spill_mask);
461 method->SetOatMappingTableOffset(mapping_table_offset);
Ian Rogers19846512012-02-24 11:42:47 -0800462 // Don't overwrite static method trampoline
463 if (!method->IsStatic() || method->IsConstructor() ||
464 method->GetDeclaringClass()->IsInitialized()) {
465 method->SetOatCodeOffset(code_offset);
466 } else {
Jeff Haoaa4a7932013-05-13 11:28:27 -0700467 method->SetEntryPointFromCompiledCode(NULL);
Ian Rogers19846512012-02-24 11:42:47 -0800468 }
Ian Rogers0571d352011-11-03 19:51:38 -0700469 method->SetOatVmapTableOffset(vmap_table_offset);
Ian Rogers0c7abda2012-09-19 13:33:42 -0700470 method->SetOatNativeGcMapOffset(gc_map_offset);
Ian Rogers0571d352011-11-03 19:51:38 -0700471 }
Logan Chien8b977d32012-02-21 19:14:55 +0800472
Brian Carlstrome24fa612011-09-29 00:53:55 -0700473 return offset;
474}
475
Brian Carlstrom265091e2013-01-30 14:08:26 -0800476#define DCHECK_OFFSET() \
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700477 DCHECK_EQ(static_cast<off_t>(file_offset + relative_offset), out.Seek(0, kSeekCurrent)) \
478 << "file_offset=" << file_offset << " relative_offset=" << relative_offset
Brian Carlstrom265091e2013-01-30 14:08:26 -0800479
480#define DCHECK_OFFSET_() \
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700481 DCHECK_EQ(static_cast<off_t>(file_offset + offset_), out.Seek(0, kSeekCurrent)) \
482 << "file_offset=" << file_offset << " offset_=" << offset_
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700483
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800484bool OatWriter::Write(OutputStream& out) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700485 const size_t file_offset = out.Seek(0, kSeekCurrent);
486
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800487 if (!out.WriteFully(oat_header_, sizeof(*oat_header_))) {
488 PLOG(ERROR) << "Failed to write oat header to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700489 return false;
490 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700491 size_oat_header_ += sizeof(*oat_header_);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700492
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800493 if (!out.WriteFully(image_file_location_.data(), image_file_location_.size())) {
494 PLOG(ERROR) << "Failed to write oat header image file location to " << out.GetLocation();
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700495 return false;
496 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700497 size_oat_header_image_file_location_ += image_file_location_.size();
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700498
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700499 if (!WriteTables(out, file_offset)) {
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800500 LOG(ERROR) << "Failed to write oat tables to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700501 return false;
502 }
503
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700504 size_t relative_offset = WriteCode(out, file_offset);
505 if (relative_offset == 0) {
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800506 LOG(ERROR) << "Failed to write oat code to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700507 return false;
508 }
509
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700510 relative_offset = WriteCodeDexFiles(out, file_offset, relative_offset);
511 if (relative_offset == 0) {
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800512 LOG(ERROR) << "Failed to write oat code for dex files to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700513 return false;
514 }
515
Ian Rogers4bdbbc82013-06-10 16:02:31 -0700516 if (kIsDebugBuild) {
517 uint32_t size_total = 0;
518 #define DO_STAT(x) \
Anwar Ghuloum75a43f12013-08-13 17:22:14 -0700519 VLOG(compiler) << #x "=" << PrettySize(x) << " (" << x << "B)"; \
Ian Rogers4bdbbc82013-06-10 16:02:31 -0700520 size_total += x;
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700521
Ian Rogers4bdbbc82013-06-10 16:02:31 -0700522 DO_STAT(size_dex_file_alignment_);
523 DO_STAT(size_executable_offset_alignment_);
524 DO_STAT(size_oat_header_);
525 DO_STAT(size_oat_header_image_file_location_);
526 DO_STAT(size_dex_file_);
Ian Rogers848871b2013-08-05 10:56:33 -0700527 DO_STAT(size_interpreter_to_interpreter_bridge_);
528 DO_STAT(size_interpreter_to_compiled_code_bridge_);
529 DO_STAT(size_jni_dlsym_lookup_);
Jeff Hao88474b42013-10-23 16:24:40 -0700530 DO_STAT(size_portable_imt_conflict_trampoline_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -0700531 DO_STAT(size_portable_resolution_trampoline_);
Ian Rogers848871b2013-08-05 10:56:33 -0700532 DO_STAT(size_portable_to_interpreter_bridge_);
Jeff Hao88474b42013-10-23 16:24:40 -0700533 DO_STAT(size_quick_imt_conflict_trampoline_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -0700534 DO_STAT(size_quick_resolution_trampoline_);
Ian Rogers848871b2013-08-05 10:56:33 -0700535 DO_STAT(size_quick_to_interpreter_bridge_);
536 DO_STAT(size_trampoline_alignment_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -0700537 DO_STAT(size_code_size_);
538 DO_STAT(size_code_);
539 DO_STAT(size_code_alignment_);
540 DO_STAT(size_mapping_table_);
541 DO_STAT(size_vmap_table_);
542 DO_STAT(size_gc_map_);
543 DO_STAT(size_oat_dex_file_location_size_);
544 DO_STAT(size_oat_dex_file_location_data_);
545 DO_STAT(size_oat_dex_file_location_checksum_);
546 DO_STAT(size_oat_dex_file_offset_);
547 DO_STAT(size_oat_dex_file_methods_offsets_);
Brian Carlstromba150c32013-08-27 17:31:03 -0700548 DO_STAT(size_oat_class_type_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -0700549 DO_STAT(size_oat_class_status_);
Brian Carlstromba150c32013-08-27 17:31:03 -0700550 DO_STAT(size_oat_class_method_bitmaps_);
Ian Rogers4bdbbc82013-06-10 16:02:31 -0700551 DO_STAT(size_oat_class_method_offsets_);
552 #undef DO_STAT
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700553
Anwar Ghuloum75a43f12013-08-13 17:22:14 -0700554 VLOG(compiler) << "size_total=" << PrettySize(size_total) << " (" << size_total << "B)"; \
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700555 CHECK_EQ(file_offset + size_total, static_cast<uint32_t>(out.Seek(0, kSeekCurrent)));
556 CHECK_EQ(size_, size_total);
Ian Rogers4bdbbc82013-06-10 16:02:31 -0700557 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700558
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700559 CHECK_EQ(file_offset + size_, static_cast<uint32_t>(out.Seek(0, kSeekCurrent)));
560 CHECK_EQ(size_, relative_offset);
561
Brian Carlstrome24fa612011-09-29 00:53:55 -0700562 return true;
563}
564
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700565bool OatWriter::WriteTables(OutputStream& out, const size_t file_offset) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700566 for (size_t i = 0; i != oat_dex_files_.size(); ++i) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700567 if (!oat_dex_files_[i]->Write(this, out, file_offset)) {
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800568 PLOG(ERROR) << "Failed to write oat dex information to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700569 return false;
570 }
571 }
Brian Carlstrom89521892011-12-07 22:05:07 -0800572 for (size_t i = 0; i != oat_dex_files_.size(); ++i) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700573 uint32_t expected_offset = file_offset + oat_dex_files_[i]->dex_file_offset_;
Brian Carlstrom49a0f152013-01-22 17:17:36 -0800574 off_t actual_offset = out.Seek(expected_offset, kSeekSet);
Brian Carlstrom89521892011-12-07 22:05:07 -0800575 if (static_cast<uint32_t>(actual_offset) != expected_offset) {
576 const DexFile* dex_file = (*dex_files_)[i];
577 PLOG(ERROR) << "Failed to seek to dex file section. Actual: " << actual_offset
578 << " Expected: " << expected_offset << " File: " << dex_file->GetLocation();
579 return false;
580 }
581 const DexFile* dex_file = (*dex_files_)[i];
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800582 if (!out.WriteFully(&dex_file->GetHeader(), dex_file->GetHeader().file_size_)) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700583 PLOG(ERROR) << "Failed to write dex file " << dex_file->GetLocation()
584 << " to " << out.GetLocation();
Brian Carlstrom89521892011-12-07 22:05:07 -0800585 return false;
586 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700587 size_dex_file_ += dex_file->GetHeader().file_size_;
Brian Carlstrom89521892011-12-07 22:05:07 -0800588 }
Brian Carlstrom389efb02012-01-11 12:06:26 -0800589 for (size_t i = 0; i != oat_classes_.size(); ++i) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700590 if (!oat_classes_[i]->Write(this, out, file_offset)) {
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800591 PLOG(ERROR) << "Failed to write oat methods information to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700592 return false;
593 }
594 }
595 return true;
596}
597
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700598size_t OatWriter::WriteCode(OutputStream& out, const size_t file_offset) {
599 size_t relative_offset = oat_header_->GetExecutableOffset();
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700600 off_t new_offset = out.Seek(size_executable_offset_alignment_, kSeekCurrent);
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700601 size_t expected_file_offset = file_offset + relative_offset;
602 if (static_cast<uint32_t>(new_offset) != expected_file_offset) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700603 PLOG(ERROR) << "Failed to seek to oat code section. Actual: " << new_offset
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700604 << " Expected: " << expected_file_offset << " File: " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700605 return 0;
606 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800607 DCHECK_OFFSET();
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700608 if (compiler_driver_->IsImage()) {
609 InstructionSet instruction_set = compiler_driver_->GetInstructionSet();
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700610
Ian Rogers848871b2013-08-05 10:56:33 -0700611 #define DO_TRAMPOLINE(field) \
612 do { \
613 uint32_t aligned_offset = CompiledCode::AlignCode(relative_offset, instruction_set); \
614 uint32_t alignment_padding = aligned_offset - relative_offset; \
615 out.Seek(alignment_padding, kSeekCurrent); \
616 size_trampoline_alignment_ += alignment_padding; \
617 if (!out.WriteFully(&(*field)[0], field->size())) { \
618 PLOG(ERROR) << "Failed to write " # field " to " << out.GetLocation(); \
619 return false; \
620 } \
621 size_ ## field += field->size(); \
622 relative_offset += alignment_padding + field->size(); \
623 DCHECK_OFFSET(); \
624 } while (false)
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700625
Ian Rogers848871b2013-08-05 10:56:33 -0700626 DO_TRAMPOLINE(interpreter_to_interpreter_bridge_);
627 DO_TRAMPOLINE(interpreter_to_compiled_code_bridge_);
628 DO_TRAMPOLINE(jni_dlsym_lookup_);
Jeff Hao88474b42013-10-23 16:24:40 -0700629 DO_TRAMPOLINE(portable_imt_conflict_trampoline_);
Ian Rogers848871b2013-08-05 10:56:33 -0700630 DO_TRAMPOLINE(portable_resolution_trampoline_);
631 DO_TRAMPOLINE(portable_to_interpreter_bridge_);
Jeff Hao88474b42013-10-23 16:24:40 -0700632 DO_TRAMPOLINE(quick_imt_conflict_trampoline_);
Ian Rogers848871b2013-08-05 10:56:33 -0700633 DO_TRAMPOLINE(quick_resolution_trampoline_);
634 DO_TRAMPOLINE(quick_to_interpreter_bridge_);
635 #undef DO_TRAMPOLINE
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700636 }
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700637 return relative_offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700638}
639
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700640size_t OatWriter::WriteCodeDexFiles(OutputStream& out,
641 const size_t file_offset,
642 size_t relative_offset) {
Ian Rogers0571d352011-11-03 19:51:38 -0700643 size_t oat_class_index = 0;
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800644 for (size_t i = 0; i != oat_dex_files_.size(); ++i) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700645 const DexFile* dex_file = (*dex_files_)[i];
646 CHECK(dex_file != NULL);
Brian Carlstromba150c32013-08-27 17:31:03 -0700647 relative_offset = WriteCodeDexFile(out, file_offset, relative_offset, &oat_class_index,
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700648 *dex_file);
649 if (relative_offset == 0) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700650 return 0;
651 }
652 }
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700653 return relative_offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700654}
655
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700656size_t OatWriter::WriteCodeDexFile(OutputStream& out, const size_t file_offset,
Brian Carlstromba150c32013-08-27 17:31:03 -0700657 size_t relative_offset, size_t* oat_class_index,
Ian Rogers0571d352011-11-03 19:51:38 -0700658 const DexFile& dex_file) {
659 for (size_t class_def_index = 0; class_def_index < dex_file.NumClassDefs();
Brian Carlstromba150c32013-08-27 17:31:03 -0700660 class_def_index++, (*oat_class_index)++) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700661 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Brian Carlstromba150c32013-08-27 17:31:03 -0700662 relative_offset = WriteCodeClassDef(out, file_offset, relative_offset, *oat_class_index,
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700663 dex_file, class_def);
664 if (relative_offset == 0) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700665 return 0;
666 }
667 }
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700668 return relative_offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700669}
670
Ian Rogers0571d352011-11-03 19:51:38 -0700671void OatWriter::ReportWriteFailure(const char* what, uint32_t method_idx,
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800672 const DexFile& dex_file, OutputStream& out) const {
Ian Rogers0571d352011-11-03 19:51:38 -0700673 PLOG(ERROR) << "Failed to write " << what << " for " << PrettyMethod(method_idx, dex_file)
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800674 << " to " << out.GetLocation();
Elliott Hughes234da572011-11-03 22:13:06 -0700675}
676
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800677size_t OatWriter::WriteCodeClassDef(OutputStream& out,
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700678 const size_t file_offset,
679 size_t relative_offset,
680 size_t oat_class_index,
Brian Carlstrome24fa612011-09-29 00:53:55 -0700681 const DexFile& dex_file,
682 const DexFile::ClassDef& class_def) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700683 const byte* class_data = dex_file.GetClassData(class_def);
Ian Rogers0571d352011-11-03 19:51:38 -0700684 if (class_data == NULL) {
685 // ie. an empty class such as a marker interface
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700686 return relative_offset;
Ian Rogers387b6992011-10-31 17:52:37 -0700687 }
Ian Rogers0571d352011-11-03 19:51:38 -0700688 ClassDataItemIterator it(dex_file, class_data);
689 // Skip fields
690 while (it.HasNextStaticField()) {
691 it.Next();
692 }
693 while (it.HasNextInstanceField()) {
694 it.Next();
695 }
696 // Process methods
697 size_t class_def_method_index = 0;
Brian Carlstromba150c32013-08-27 17:31:03 -0700698 size_t method_offsets_index = 0;
Ian Rogers0571d352011-11-03 19:51:38 -0700699 while (it.HasNextDirectMethod()) {
700 bool is_static = (it.GetMemberAccessFlags() & kAccStatic) != 0;
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700701 relative_offset = WriteCodeMethod(out, file_offset, relative_offset, oat_class_index,
Brian Carlstromba150c32013-08-27 17:31:03 -0700702 class_def_method_index, &method_offsets_index, is_static,
703 it.GetMemberIndex(), dex_file);
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700704 if (relative_offset == 0) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700705 return 0;
706 }
Ian Rogers0571d352011-11-03 19:51:38 -0700707 class_def_method_index++;
708 it.Next();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700709 }
Ian Rogers0571d352011-11-03 19:51:38 -0700710 while (it.HasNextVirtualMethod()) {
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700711 relative_offset = WriteCodeMethod(out, file_offset, relative_offset, oat_class_index,
Brian Carlstromba150c32013-08-27 17:31:03 -0700712 class_def_method_index, &method_offsets_index, false,
713 it.GetMemberIndex(), dex_file);
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700714 if (relative_offset == 0) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700715 return 0;
716 }
Ian Rogers0571d352011-11-03 19:51:38 -0700717 class_def_method_index++;
718 it.Next();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700719 }
Brian Carlstromba150c32013-08-27 17:31:03 -0700720 DCHECK(!it.HasNext());
721 CHECK_LE(method_offsets_index, class_def_method_index);
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700722 return relative_offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700723}
724
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700725size_t OatWriter::WriteCodeMethod(OutputStream& out, const size_t file_offset,
726 size_t relative_offset, size_t oat_class_index,
Brian Carlstromba150c32013-08-27 17:31:03 -0700727 size_t class_def_method_index, size_t* method_offsets_index,
728 bool is_static, uint32_t method_idx, const DexFile& dex_file) {
729 OatClass* oat_class = oat_classes_[oat_class_index];
730 const CompiledMethod* compiled_method = oat_class->GetCompiledMethod(class_def_method_index);
Ian Rogers0571d352011-11-03 19:51:38 -0700731
732 if (compiled_method != NULL) { // ie. not an abstract method
Brian Carlstromba150c32013-08-27 17:31:03 -0700733 const OatMethodOffsets method_offsets = oat_class->method_offsets_[*method_offsets_index];
734 (*method_offsets_index)++;
735
Brian Carlstrom265091e2013-01-30 14:08:26 -0800736#if !defined(ART_USE_PORTABLE_COMPILER)
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700737 uint32_t aligned_offset = compiled_method->AlignCode(relative_offset);
738 uint32_t aligned_code_delta = aligned_offset - relative_offset;
Logan Chien971bf3f2012-05-01 15:47:55 +0800739 if (aligned_code_delta != 0) {
Brian Carlstrom49a0f152013-01-22 17:17:36 -0800740 off_t new_offset = out.Seek(aligned_code_delta, kSeekCurrent);
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700741 size_code_alignment_ += aligned_code_delta;
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700742 uint32_t expected_offset = file_offset + aligned_offset;
743 if (static_cast<uint32_t>(new_offset) != expected_offset) {
Logan Chien971bf3f2012-05-01 15:47:55 +0800744 PLOG(ERROR) << "Failed to seek to align oat code. Actual: " << new_offset
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700745 << " Expected: " << expected_offset << " File: " << out.GetLocation();
Logan Chien971bf3f2012-05-01 15:47:55 +0800746 return 0;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700747 }
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700748 relative_offset += aligned_code_delta;
Brian Carlstrom265091e2013-01-30 14:08:26 -0800749 DCHECK_OFFSET();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700750 }
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700751 DCHECK_ALIGNED(relative_offset, kArmAlignment);
Logan Chien971bf3f2012-05-01 15:47:55 +0800752 const std::vector<uint8_t>& code = compiled_method->GetCode();
753 uint32_t code_size = code.size() * sizeof(code[0]);
754 CHECK_NE(code_size, 0U);
755
756 // Deduplicate code arrays
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700757 size_t code_offset = relative_offset + sizeof(code_size) + compiled_method->CodeDelta();
Logan Chien971bf3f2012-05-01 15:47:55 +0800758 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator code_iter = code_offsets_.find(&code);
Brian Carlstrom265091e2013-01-30 14:08:26 -0800759 if (code_iter != code_offsets_.end() && code_offset != method_offsets.code_offset_) {
760 DCHECK(code_iter->second == method_offsets.code_offset_)
761 << PrettyMethod(method_idx, dex_file);
Logan Chien971bf3f2012-05-01 15:47:55 +0800762 } else {
Brian Carlstrom265091e2013-01-30 14:08:26 -0800763 DCHECK(code_offset == method_offsets.code_offset_) << PrettyMethod(method_idx, dex_file);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800764 if (!out.WriteFully(&code_size, sizeof(code_size))) {
765 ReportWriteFailure("method code size", method_idx, dex_file, out);
Logan Chien971bf3f2012-05-01 15:47:55 +0800766 return 0;
767 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700768 size_code_size_ += sizeof(code_size);
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700769 relative_offset += sizeof(code_size);
Brian Carlstrom265091e2013-01-30 14:08:26 -0800770 DCHECK_OFFSET();
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800771 if (!out.WriteFully(&code[0], code_size)) {
772 ReportWriteFailure("method code", method_idx, dex_file, out);
Logan Chien971bf3f2012-05-01 15:47:55 +0800773 return 0;
774 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700775 size_code_ += code_size;
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700776 relative_offset += code_size;
Logan Chien971bf3f2012-05-01 15:47:55 +0800777 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800778 DCHECK_OFFSET();
779#endif
Logan Chien971bf3f2012-05-01 15:47:55 +0800780
Ian Rogers1809a722013-08-09 22:05:32 -0700781 const std::vector<uint8_t>& mapping_table = compiled_method->GetMappingTable();
Logan Chien971bf3f2012-05-01 15:47:55 +0800782 size_t mapping_table_size = mapping_table.size() * sizeof(mapping_table[0]);
783
784 // Deduplicate mapping tables
Ian Rogers1809a722013-08-09 22:05:32 -0700785 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator mapping_iter =
Logan Chien971bf3f2012-05-01 15:47:55 +0800786 mapping_table_offsets_.find(&mapping_table);
787 if (mapping_iter != mapping_table_offsets_.end() &&
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700788 relative_offset != method_offsets.mapping_table_offset_) {
Logan Chien971bf3f2012-05-01 15:47:55 +0800789 DCHECK((mapping_table_size == 0 && method_offsets.mapping_table_offset_ == 0)
790 || mapping_iter->second == method_offsets.mapping_table_offset_)
791 << PrettyMethod(method_idx, dex_file);
792 } else {
793 DCHECK((mapping_table_size == 0 && method_offsets.mapping_table_offset_ == 0)
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700794 || relative_offset == method_offsets.mapping_table_offset_)
Logan Chien971bf3f2012-05-01 15:47:55 +0800795 << PrettyMethod(method_idx, dex_file);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800796 if (!out.WriteFully(&mapping_table[0], mapping_table_size)) {
797 ReportWriteFailure("mapping table", method_idx, dex_file, out);
Logan Chien971bf3f2012-05-01 15:47:55 +0800798 return 0;
799 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700800 size_mapping_table_ += mapping_table_size;
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700801 relative_offset += mapping_table_size;
Logan Chien971bf3f2012-05-01 15:47:55 +0800802 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800803 DCHECK_OFFSET();
Logan Chien971bf3f2012-05-01 15:47:55 +0800804
Ian Rogers1809a722013-08-09 22:05:32 -0700805 const std::vector<uint8_t>& vmap_table = compiled_method->GetVmapTable();
Logan Chien971bf3f2012-05-01 15:47:55 +0800806 size_t vmap_table_size = vmap_table.size() * sizeof(vmap_table[0]);
807
808 // Deduplicate vmap tables
Ian Rogers1809a722013-08-09 22:05:32 -0700809 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator vmap_iter =
Logan Chien971bf3f2012-05-01 15:47:55 +0800810 vmap_table_offsets_.find(&vmap_table);
811 if (vmap_iter != vmap_table_offsets_.end() &&
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700812 relative_offset != method_offsets.vmap_table_offset_) {
Logan Chien971bf3f2012-05-01 15:47:55 +0800813 DCHECK((vmap_table_size == 0 && method_offsets.vmap_table_offset_ == 0)
814 || vmap_iter->second == method_offsets.vmap_table_offset_)
815 << PrettyMethod(method_idx, dex_file);
816 } else {
817 DCHECK((vmap_table_size == 0 && method_offsets.vmap_table_offset_ == 0)
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700818 || relative_offset == method_offsets.vmap_table_offset_)
Logan Chien971bf3f2012-05-01 15:47:55 +0800819 << PrettyMethod(method_idx, dex_file);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800820 if (!out.WriteFully(&vmap_table[0], vmap_table_size)) {
821 ReportWriteFailure("vmap table", method_idx, dex_file, out);
Logan Chien971bf3f2012-05-01 15:47:55 +0800822 return 0;
823 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700824 size_vmap_table_ += vmap_table_size;
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700825 relative_offset += vmap_table_size;
Logan Chien971bf3f2012-05-01 15:47:55 +0800826 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800827 DCHECK_OFFSET();
Logan Chien971bf3f2012-05-01 15:47:55 +0800828
Ian Rogersfbdc0fa2013-04-18 16:48:17 -0700829 const std::vector<uint8_t>& gc_map = compiled_method->GetGcMap();
Logan Chien971bf3f2012-05-01 15:47:55 +0800830 size_t gc_map_size = gc_map.size() * sizeof(gc_map[0]);
831
832 // Deduplicate GC maps
833 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator gc_map_iter =
834 gc_map_offsets_.find(&gc_map);
835 if (gc_map_iter != gc_map_offsets_.end() &&
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700836 relative_offset != method_offsets.gc_map_offset_) {
Logan Chien971bf3f2012-05-01 15:47:55 +0800837 DCHECK((gc_map_size == 0 && method_offsets.gc_map_offset_ == 0)
838 || gc_map_iter->second == method_offsets.gc_map_offset_)
839 << PrettyMethod(method_idx, dex_file);
840 } else {
841 DCHECK((gc_map_size == 0 && method_offsets.gc_map_offset_ == 0)
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700842 || relative_offset == method_offsets.gc_map_offset_)
Logan Chien971bf3f2012-05-01 15:47:55 +0800843 << PrettyMethod(method_idx, dex_file);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800844 if (!out.WriteFully(&gc_map[0], gc_map_size)) {
845 ReportWriteFailure("GC map", method_idx, dex_file, out);
Logan Chien971bf3f2012-05-01 15:47:55 +0800846 return 0;
847 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700848 size_gc_map_ += gc_map_size;
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700849 relative_offset += gc_map_size;
Logan Chien971bf3f2012-05-01 15:47:55 +0800850 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800851 DCHECK_OFFSET();
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700852 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800853
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700854 return relative_offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700855}
856
Brian Carlstrom265091e2013-01-30 14:08:26 -0800857OatWriter::OatDexFile::OatDexFile(size_t offset, const DexFile& dex_file) {
858 offset_ = offset;
Elliott Hughes95572412011-12-13 18:14:20 -0800859 const std::string& location(dex_file.GetLocation());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700860 dex_file_location_size_ = location.size();
861 dex_file_location_data_ = reinterpret_cast<const uint8_t*>(location.data());
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800862 dex_file_location_checksum_ = dex_file.GetLocationChecksum();
Brian Carlstrom89521892011-12-07 22:05:07 -0800863 dex_file_offset_ = 0;
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800864 methods_offsets_.resize(dex_file.NumClassDefs());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700865}
866
867size_t OatWriter::OatDexFile::SizeOf() const {
868 return sizeof(dex_file_location_size_)
869 + dex_file_location_size_
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800870 + sizeof(dex_file_location_checksum_)
Brian Carlstrom89521892011-12-07 22:05:07 -0800871 + sizeof(dex_file_offset_)
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800872 + (sizeof(methods_offsets_[0]) * methods_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700873}
874
875void OatWriter::OatDexFile::UpdateChecksum(OatHeader& oat_header) const {
876 oat_header.UpdateChecksum(&dex_file_location_size_, sizeof(dex_file_location_size_));
877 oat_header.UpdateChecksum(dex_file_location_data_, dex_file_location_size_);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800878 oat_header.UpdateChecksum(&dex_file_location_checksum_, sizeof(dex_file_location_checksum_));
Brian Carlstrom89521892011-12-07 22:05:07 -0800879 oat_header.UpdateChecksum(&dex_file_offset_, sizeof(dex_file_offset_));
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800880 oat_header.UpdateChecksum(&methods_offsets_[0],
881 sizeof(methods_offsets_[0]) * methods_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700882}
883
Brian Carlstromc50d8e12013-07-23 22:35:16 -0700884bool OatWriter::OatDexFile::Write(OatWriter* oat_writer,
885 OutputStream& out,
886 const size_t file_offset) const {
Brian Carlstrom265091e2013-01-30 14:08:26 -0800887 DCHECK_OFFSET_();
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800888 if (!out.WriteFully(&dex_file_location_size_, sizeof(dex_file_location_size_))) {
889 PLOG(ERROR) << "Failed to write dex file location length to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700890 return false;
891 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700892 oat_writer->size_oat_dex_file_location_size_ += sizeof(dex_file_location_size_);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800893 if (!out.WriteFully(dex_file_location_data_, dex_file_location_size_)) {
894 PLOG(ERROR) << "Failed to write dex file location data to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700895 return false;
896 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700897 oat_writer->size_oat_dex_file_location_data_ += dex_file_location_size_;
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800898 if (!out.WriteFully(&dex_file_location_checksum_, sizeof(dex_file_location_checksum_))) {
899 PLOG(ERROR) << "Failed to write dex file location checksum to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700900 return false;
901 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700902 oat_writer->size_oat_dex_file_location_checksum_ += sizeof(dex_file_location_checksum_);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800903 if (!out.WriteFully(&dex_file_offset_, sizeof(dex_file_offset_))) {
904 PLOG(ERROR) << "Failed to write dex file offset to " << out.GetLocation();
Brian Carlstrom89521892011-12-07 22:05:07 -0800905 return false;
906 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -0700907 oat_writer->size_oat_dex_file_offset_ += sizeof(dex_file_offset_);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800908 if (!out.WriteFully(&methods_offsets_[0],
909 sizeof(methods_offsets_[0]) * methods_offsets_.size())) {
910 PLOG(ERROR) << "Failed to write methods offsets 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_methods_offsets_ +=
914 sizeof(methods_offsets_[0]) * methods_offsets_.size();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700915 return true;
916}
917
Brian Carlstromba150c32013-08-27 17:31:03 -0700918OatWriter::OatClass::OatClass(size_t offset,
919 std::vector<CompiledMethod*>* compiled_methods,
920 uint32_t num_non_null_compiled_methods,
921 mirror::Class::Status status) {
922 CHECK(compiled_methods != NULL);
923 uint32_t num_methods = compiled_methods->size();
924 CHECK_LE(num_non_null_compiled_methods, num_methods);
925
Brian Carlstrom265091e2013-01-30 14:08:26 -0800926 offset_ = offset;
Brian Carlstromba150c32013-08-27 17:31:03 -0700927 compiled_methods_ = compiled_methods;
928 oat_method_offsets_offsets_from_oat_class_.resize(num_methods);
929
930 // Since both kOatClassNoneCompiled and kOatClassAllCompiled could
931 // apply when there are 0 methods, we just arbitrarily say that 0
932 // methods means kOatClassNoneCompiled and that we won't use
933 // kOatClassAllCompiled unless there is at least one compiled
934 // method. This means in an interpretter only system, we can assert
935 // that all classes are kOatClassNoneCompiled.
936 if (num_non_null_compiled_methods == 0) {
937 type_ = kOatClassNoneCompiled;
938 } else if (num_non_null_compiled_methods == num_methods) {
939 type_ = kOatClassAllCompiled;
940 } else {
941 type_ = kOatClassSomeCompiled;
942 }
943
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800944 status_ = status;
Brian Carlstromba150c32013-08-27 17:31:03 -0700945 method_offsets_.resize(num_non_null_compiled_methods);
946
947 uint32_t oat_method_offsets_offset_from_oat_class = sizeof(type_) + sizeof(status_);
948 if (type_ == kOatClassSomeCompiled) {
949 method_bitmap_ = new BitVector(num_methods, false, Allocator::GetMallocAllocator());
950 method_bitmap_size_ = method_bitmap_->GetSizeOf();
951 oat_method_offsets_offset_from_oat_class += sizeof(method_bitmap_size_);
952 oat_method_offsets_offset_from_oat_class += method_bitmap_size_;
953 } else {
954 method_bitmap_ = NULL;
955 method_bitmap_size_ = 0;
956 }
957
958 for (size_t i = 0; i < num_methods; i++) {
959 CompiledMethod* compiled_method = (*compiled_methods_)[i];
960 if (compiled_method == NULL) {
961 oat_method_offsets_offsets_from_oat_class_[i] = 0;
962 } else {
963 oat_method_offsets_offsets_from_oat_class_[i] = oat_method_offsets_offset_from_oat_class;
964 oat_method_offsets_offset_from_oat_class += sizeof(OatMethodOffsets);
965 if (type_ == kOatClassSomeCompiled) {
966 method_bitmap_->SetBit(i);
967 }
968 }
969 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700970}
971
Brian Carlstromba150c32013-08-27 17:31:03 -0700972OatWriter::OatClass::~OatClass() {
973 delete compiled_methods_;
974}
975
976#if defined(ART_USE_PORTABLE_COMPILER)
Brian Carlstrom265091e2013-01-30 14:08:26 -0800977size_t OatWriter::OatClass::GetOatMethodOffsetsOffsetFromOatHeader(
978 size_t class_def_method_index_) const {
Brian Carlstromba150c32013-08-27 17:31:03 -0700979 uint32_t method_offset = GetOatMethodOffsetsOffsetFromOatClass(class_def_method_index_);
980 if (method_offset == 0) {
981 return 0;
982 }
983 return offset_ + method_offset;
Brian Carlstrom265091e2013-01-30 14:08:26 -0800984}
985
986size_t OatWriter::OatClass::GetOatMethodOffsetsOffsetFromOatClass(
987 size_t class_def_method_index_) const {
Brian Carlstromba150c32013-08-27 17:31:03 -0700988 return oat_method_offsets_offsets_from_oat_class_[class_def_method_index_];
Brian Carlstrom265091e2013-01-30 14:08:26 -0800989}
Brian Carlstromba150c32013-08-27 17:31:03 -0700990#endif
Brian Carlstrom265091e2013-01-30 14:08:26 -0800991
992size_t OatWriter::OatClass::SizeOf() const {
Brian Carlstromba150c32013-08-27 17:31:03 -0700993 return sizeof(status_)
994 + sizeof(type_)
995 + ((method_bitmap_size_ == 0) ? 0 : sizeof(method_bitmap_size_))
996 + method_bitmap_size_
997 + (sizeof(method_offsets_[0]) * method_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700998}
999
Brian Carlstrom389efb02012-01-11 12:06:26 -08001000void OatWriter::OatClass::UpdateChecksum(OatHeader& oat_header) const {
Brian Carlstrom0755ec52012-01-11 15:19:46 -08001001 oat_header.UpdateChecksum(&status_, sizeof(status_));
Brian Carlstromba150c32013-08-27 17:31:03 -07001002 oat_header.UpdateChecksum(&type_, sizeof(type_));
1003 if (method_bitmap_size_ != 0) {
1004 CHECK_EQ(kOatClassSomeCompiled, type_);
1005 oat_header.UpdateChecksum(&method_bitmap_size_, sizeof(method_bitmap_size_));
1006 oat_header.UpdateChecksum(method_bitmap_->GetRawStorage(), method_bitmap_size_);
1007 }
Brian Carlstrom0755ec52012-01-11 15:19:46 -08001008 oat_header.UpdateChecksum(&method_offsets_[0],
1009 sizeof(method_offsets_[0]) * method_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -07001010}
1011
Brian Carlstromc50d8e12013-07-23 22:35:16 -07001012bool OatWriter::OatClass::Write(OatWriter* oat_writer,
1013 OutputStream& out,
1014 const size_t file_offset) const {
Brian Carlstrom265091e2013-01-30 14:08:26 -08001015 DCHECK_OFFSET_();
Brian Carlstromcd60ac72013-01-20 17:09:51 -08001016 if (!out.WriteFully(&status_, sizeof(status_))) {
1017 PLOG(ERROR) << "Failed to write class status to " << out.GetLocation();
Brian Carlstrom0755ec52012-01-11 15:19:46 -08001018 return false;
1019 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001020 oat_writer->size_oat_class_status_ += sizeof(status_);
Brian Carlstromba150c32013-08-27 17:31:03 -07001021 if (!out.WriteFully(&type_, sizeof(type_))) {
1022 PLOG(ERROR) << "Failed to write oat class type to " << out.GetLocation();
1023 return false;
1024 }
1025 oat_writer->size_oat_class_type_ += sizeof(type_);
1026 if (method_bitmap_size_ != 0) {
1027 CHECK_EQ(kOatClassSomeCompiled, type_);
1028 if (!out.WriteFully(&method_bitmap_size_, sizeof(method_bitmap_size_))) {
1029 PLOG(ERROR) << "Failed to write method bitmap size to " << out.GetLocation();
1030 return false;
1031 }
1032 oat_writer->size_oat_class_method_bitmaps_ += sizeof(method_bitmap_size_);
1033 if (!out.WriteFully(method_bitmap_->GetRawStorage(), method_bitmap_size_)) {
1034 PLOG(ERROR) << "Failed to write method bitmap to " << out.GetLocation();
1035 return false;
1036 }
1037 oat_writer->size_oat_class_method_bitmaps_ += method_bitmap_size_;
1038 }
Brian Carlstromcd60ac72013-01-20 17:09:51 -08001039 if (!out.WriteFully(&method_offsets_[0],
1040 sizeof(method_offsets_[0]) * method_offsets_.size())) {
1041 PLOG(ERROR) << "Failed to write method offsets to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001042 return false;
1043 }
Jeff Hao0aba0ba2013-06-03 14:49:28 -07001044 oat_writer->size_oat_class_method_offsets_ += sizeof(method_offsets_[0]) * method_offsets_.size();
Brian Carlstrome24fa612011-09-29 00:53:55 -07001045 return true;
1046}
1047
Brian Carlstrome24fa612011-09-29 00:53:55 -07001048} // namespace art