blob: 86f1b1186fe90a6ad5d00ec0b5be8778e0d73ee4 [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
Elliott Hughes1aa246d2012-12-13 09:29:36 -080021#include "base/stl_util.h"
Elliott Hughes76160052012-12-12 16:31:20 -080022#include "base/unix_file/fd_file.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070023#include "class_linker.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070024#include "dex_file-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080025#include "mirror/abstract_method-inl.h"
26#include "mirror/array.h"
27#include "mirror/class_loader.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070028#include "mirror/object-inl.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070029#include "os.h"
Brian Carlstromcd60ac72013-01-20 17:09:51 -080030#include "output_stream.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070031#include "safe_map.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070032#include "scoped_thread_state_change.h"
Mathieu Chartier7469ebf2012-09-24 16:28:36 -070033#include "gc/space.h"
jeffhaoec014232012-09-05 10:42:25 -070034#include "verifier/method_verifier.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070035
36namespace art {
37
Brian Carlstromcd60ac72013-01-20 17:09:51 -080038bool OatWriter::Create(OutputStream& output_stream,
jeffhao10037c82012-01-23 15:06:23 -080039 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& driver) {
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070044 OatWriter oat_writer(dex_files,
Brian Carlstrom28db0122012-10-18 16:20:41 -070045 image_file_location_oat_checksum,
46 image_file_location_oat_begin,
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070047 image_file_location,
Ian Rogers1212a022013-03-04 10:48:41 -080048 &driver);
Brian Carlstromcd60ac72013-01-20 17:09:51 -080049 return oat_writer.Write(output_stream);
Brian Carlstrome24fa612011-09-29 00:53:55 -070050}
51
Brian Carlstrom3320cf42011-10-04 14:58:28 -070052OatWriter::OatWriter(const std::vector<const DexFile*>& dex_files,
Brian Carlstrom28db0122012-10-18 16:20:41 -070053 uint32_t image_file_location_oat_checksum,
54 uint32_t image_file_location_oat_begin,
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070055 const std::string& image_file_location,
Ian Rogers1212a022013-03-04 10:48:41 -080056 const CompilerDriver* compiler)
57 : compiler_driver_(compiler) {
Brian Carlstrom28db0122012-10-18 16:20:41 -070058 image_file_location_oat_checksum_ = image_file_location_oat_checksum;
59 image_file_location_oat_begin_ = image_file_location_oat_begin;
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070060 image_file_location_ = image_file_location;
Brian Carlstrome24fa612011-09-29 00:53:55 -070061 dex_files_ = &dex_files;
Ian Rogers0571d352011-11-03 19:51:38 -070062 oat_header_ = NULL;
63 executable_offset_padding_length_ = 0;
Brian Carlstrome24fa612011-09-29 00:53:55 -070064
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070065 size_t offset = InitOatHeader();
Brian Carlstrome24fa612011-09-29 00:53:55 -070066 offset = InitOatDexFiles(offset);
Brian Carlstrom89521892011-12-07 22:05:07 -080067 offset = InitDexFiles(offset);
Brian Carlstrom389efb02012-01-11 12:06:26 -080068 offset = InitOatClasses(offset);
Brian Carlstrome24fa612011-09-29 00:53:55 -070069 offset = InitOatCode(offset);
70 offset = InitOatCodeDexFiles(offset);
71
72 CHECK_EQ(dex_files_->size(), oat_dex_files_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -070073}
74
Ian Rogers0571d352011-11-03 19:51:38 -070075OatWriter::~OatWriter() {
76 delete oat_header_;
77 STLDeleteElements(&oat_dex_files_);
Brian Carlstrom389efb02012-01-11 12:06:26 -080078 STLDeleteElements(&oat_classes_);
Ian Rogers0571d352011-11-03 19:51:38 -070079}
80
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070081size_t OatWriter::InitOatHeader() {
Brian Carlstrome24fa612011-09-29 00:53:55 -070082 // create the OatHeader
Ian Rogers1212a022013-03-04 10:48:41 -080083 oat_header_ = new OatHeader(compiler_driver_->GetInstructionSet(),
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070084 dex_files_,
Brian Carlstrom28db0122012-10-18 16:20:41 -070085 image_file_location_oat_checksum_,
86 image_file_location_oat_begin_,
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070087 image_file_location_);
Brian Carlstrome24fa612011-09-29 00:53:55 -070088 size_t offset = sizeof(*oat_header_);
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070089 offset += image_file_location_.size();
Brian Carlstrome24fa612011-09-29 00:53:55 -070090 return offset;
91}
92
93size_t OatWriter::InitOatDexFiles(size_t offset) {
94 // create the OatDexFiles
95 for (size_t i = 0; i != dex_files_->size(); ++i) {
96 const DexFile* dex_file = (*dex_files_)[i];
97 CHECK(dex_file != NULL);
Brian Carlstrom265091e2013-01-30 14:08:26 -080098 OatDexFile* oat_dex_file = new OatDexFile(offset, *dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -070099 oat_dex_files_.push_back(oat_dex_file);
100 offset += oat_dex_file->SizeOf();
101 }
102 return offset;
103}
104
Brian Carlstrom89521892011-12-07 22:05:07 -0800105size_t OatWriter::InitDexFiles(size_t offset) {
106 // calculate the offsets within OatDexFiles to the DexFiles
107 for (size_t i = 0; i != dex_files_->size(); ++i) {
108 // dex files are required to be 4 byte aligned
109 offset = RoundUp(offset, 4);
110
111 // set offset in OatDexFile to DexFile
112 oat_dex_files_[i]->dex_file_offset_ = offset;
113
114 const DexFile* dex_file = (*dex_files_)[i];
115 offset += dex_file->GetHeader().file_size_;
116 }
117 return offset;
118}
119
Brian Carlstrom389efb02012-01-11 12:06:26 -0800120size_t OatWriter::InitOatClasses(size_t offset) {
121 // create the OatClasses
122 // calculate the offsets within OatDexFiles to OatClasses
Brian Carlstrome24fa612011-09-29 00:53:55 -0700123 for (size_t i = 0; i != dex_files_->size(); ++i) {
124 const DexFile* dex_file = (*dex_files_)[i];
125 for (size_t class_def_index = 0;
126 class_def_index < dex_file->NumClassDefs();
Ian Rogersc20a83e2012-01-18 18:15:32 -0800127 class_def_index++) {
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800128 oat_dex_files_[i]->methods_offsets_[class_def_index] = offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700129 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
130 const byte* class_data = dex_file->GetClassData(class_def);
Ian Rogers0571d352011-11-03 19:51:38 -0700131 uint32_t num_methods = 0;
132 if (class_data != NULL) { // ie not an empty class, such as a marker interface
133 ClassDataItemIterator it(*dex_file, class_data);
134 size_t num_direct_methods = it.NumDirectMethods();
135 size_t num_virtual_methods = it.NumVirtualMethods();
136 num_methods = num_direct_methods + num_virtual_methods;
137 }
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800138
Ian Rogers1212a022013-03-04 10:48:41 -0800139 CompilerDriver::ClassReference class_ref = CompilerDriver::ClassReference(dex_file, class_def_index);
140 CompiledClass* compiled_class = compiler_driver_->GetCompiledClass(class_ref);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800141 mirror::Class::Status status;
jeffhaoec014232012-09-05 10:42:25 -0700142 if (compiled_class != NULL) {
143 status = compiled_class->GetStatus();
144 } else if (verifier::MethodVerifier::IsClassRejected(class_ref)) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800145 status = mirror::Class::kStatusError;
jeffhaoec014232012-09-05 10:42:25 -0700146 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800147 status = mirror::Class::kStatusNotReady;
jeffhaoec014232012-09-05 10:42:25 -0700148 }
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800149
Brian Carlstrom265091e2013-01-30 14:08:26 -0800150 OatClass* oat_class = new OatClass(offset, status, num_methods);
Brian Carlstrom389efb02012-01-11 12:06:26 -0800151 oat_classes_.push_back(oat_class);
152 offset += oat_class->SizeOf();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700153 }
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800154 oat_dex_files_[i]->UpdateChecksum(*oat_header_);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700155 }
156 return offset;
157}
158
159size_t OatWriter::InitOatCode(size_t offset) {
160 // calculate the offsets within OatHeader to executable code
161 size_t old_offset = offset;
162 // required to be on a new page boundary
163 offset = RoundUp(offset, kPageSize);
164 oat_header_->SetExecutableOffset(offset);
165 executable_offset_padding_length_ = offset - old_offset;
166 return offset;
167}
168
169size_t OatWriter::InitOatCodeDexFiles(size_t offset) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700170 size_t oat_class_index = 0;
171 for (size_t i = 0; i != dex_files_->size(); ++i) {
172 const DexFile* dex_file = (*dex_files_)[i];
173 CHECK(dex_file != NULL);
174 offset = InitOatCodeDexFile(offset, oat_class_index, *dex_file);
175 }
176 return offset;
177}
178
179size_t OatWriter::InitOatCodeDexFile(size_t offset,
180 size_t& oat_class_index,
181 const DexFile& dex_file) {
Elliott Hughesba8eee12012-01-24 20:25:24 -0800182 for (size_t class_def_index = 0;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700183 class_def_index < dex_file.NumClassDefs();
184 class_def_index++, oat_class_index++) {
185 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Ian Rogersc20a83e2012-01-18 18:15:32 -0800186 offset = InitOatCodeClassDef(offset, oat_class_index, class_def_index, dex_file, class_def);
Brian Carlstrom389efb02012-01-11 12:06:26 -0800187 oat_classes_[oat_class_index]->UpdateChecksum(*oat_header_);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700188 }
189 return offset;
190}
191
192size_t OatWriter::InitOatCodeClassDef(size_t offset,
Ian Rogersc20a83e2012-01-18 18:15:32 -0800193 size_t oat_class_index, size_t class_def_index,
Brian Carlstrome24fa612011-09-29 00:53:55 -0700194 const DexFile& dex_file,
195 const DexFile::ClassDef& class_def) {
196 const byte* class_data = dex_file.GetClassData(class_def);
Ian Rogers0571d352011-11-03 19:51:38 -0700197 if (class_data == NULL) {
198 // empty class, such as a marker interface
Ian Rogers387b6992011-10-31 17:52:37 -0700199 return offset;
200 }
Ian Rogers0571d352011-11-03 19:51:38 -0700201 ClassDataItemIterator it(dex_file, class_data);
Brian Carlstrom389efb02012-01-11 12:06:26 -0800202 CHECK_EQ(oat_classes_[oat_class_index]->method_offsets_.size(),
Ian Rogers0571d352011-11-03 19:51:38 -0700203 it.NumDirectMethods() + it.NumVirtualMethods());
204 // Skip fields
205 while (it.HasNextStaticField()) {
206 it.Next();
207 }
208 while (it.HasNextInstanceField()) {
209 it.Next();
210 }
211 // Process methods
Brian Carlstrome24fa612011-09-29 00:53:55 -0700212 size_t class_def_method_index = 0;
Ian Rogers0571d352011-11-03 19:51:38 -0700213 while (it.HasNextDirectMethod()) {
Ian Rogersc20a83e2012-01-18 18:15:32 -0800214 bool is_native = (it.GetMemberAccessFlags() & kAccNative) != 0;
Ian Rogers08f753d2012-08-24 14:35:25 -0700215 offset = InitOatCodeMethod(offset, oat_class_index, class_def_index, class_def_method_index,
216 is_native, it.GetMethodInvokeType(class_def), it.GetMemberIndex(),
217 &dex_file);
Ian Rogers0571d352011-11-03 19:51:38 -0700218 class_def_method_index++;
219 it.Next();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700220 }
Ian Rogers0571d352011-11-03 19:51:38 -0700221 while (it.HasNextVirtualMethod()) {
Ian Rogersc20a83e2012-01-18 18:15:32 -0800222 bool is_native = (it.GetMemberAccessFlags() & kAccNative) != 0;
Ian Rogers08f753d2012-08-24 14:35:25 -0700223 offset = InitOatCodeMethod(offset, oat_class_index, class_def_index, class_def_method_index,
224 is_native, it.GetMethodInvokeType(class_def), it.GetMemberIndex(),
225 &dex_file);
Ian Rogers0571d352011-11-03 19:51:38 -0700226 class_def_method_index++;
227 it.Next();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700228 }
Ian Rogers0571d352011-11-03 19:51:38 -0700229 DCHECK(!it.HasNext());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700230 return offset;
231}
232
Elliott Hughes1bac54f2012-03-16 12:48:31 -0700233size_t OatWriter::InitOatCodeMethod(size_t offset, size_t oat_class_index,
234 size_t __attribute__((unused)) class_def_index,
235 size_t class_def_method_index,
236 bool __attribute__((unused)) is_native,
Brian Carlstrom265091e2013-01-30 14:08:26 -0800237 InvokeType invoke_type,
Elliott Hughes1bac54f2012-03-16 12:48:31 -0700238 uint32_t method_idx, const DexFile* dex_file) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700239 // derived from CompiledMethod if available
240 uint32_t code_offset = 0;
241 uint32_t frame_size_in_bytes = kStackAlignment;
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700242 uint32_t core_spill_mask = 0;
243 uint32_t fp_spill_mask = 0;
244 uint32_t mapping_table_offset = 0;
245 uint32_t vmap_table_offset = 0;
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800246 uint32_t gc_map_offset = 0;
Ian Rogersc928de92013-02-27 14:30:44 -0800247#if defined(ART_USE_PORTABLE_COMPILER)
Logan Chien971bf3f2012-05-01 15:47:55 +0800248 uint32_t proxy_stub_offset = 0;
Brian Carlstromfd2ec542012-05-02 15:08:57 -0700249#endif
Brian Carlstrome24fa612011-09-29 00:53:55 -0700250
Brian Carlstrom265091e2013-01-30 14:08:26 -0800251 OatClass* oat_class = oat_classes_[oat_class_index];
252#if defined(ART_USE_PORTABLE_COMPILER)
253 size_t oat_method_offsets_offset =
254 oat_class->GetOatMethodOffsetsOffsetFromOatHeader(class_def_method_index);
255#endif
256
Ian Rogers0571d352011-11-03 19:51:38 -0700257 CompiledMethod* compiled_method =
Ian Rogers1212a022013-03-04 10:48:41 -0800258 compiler_driver_->GetCompiledMethod(CompilerDriver::MethodReference(dex_file, method_idx));
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700259 if (compiled_method != NULL) {
Brian Carlstrom265091e2013-01-30 14:08:26 -0800260#if defined(ART_USE_PORTABLE_COMPILER)
261 compiled_method->AddOatdataOffsetToCompliledCodeOffset(
262 oat_method_offsets_offset + OFFSETOF_MEMBER(OatMethodOffsets, code_offset_));
263#else
264 const std::vector<uint8_t>& code = compiled_method->GetCode();
Logan Chien971bf3f2012-05-01 15:47:55 +0800265 offset = compiled_method->AlignCode(offset);
266 DCHECK_ALIGNED(offset, kArmAlignment);
Logan Chien971bf3f2012-05-01 15:47:55 +0800267 uint32_t code_size = code.size() * sizeof(code[0]);
268 CHECK_NE(code_size, 0U);
269 uint32_t thumb_offset = compiled_method->CodeDelta();
270 code_offset = offset + sizeof(code_size) + thumb_offset;
271
272 // Deduplicate code arrays
273 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator code_iter = code_offsets_.find(&code);
274 if (code_iter != code_offsets_.end()) {
275 code_offset = code_iter->second;
jeffhao55d78212011-11-02 11:41:50 -0700276 } else {
Logan Chien971bf3f2012-05-01 15:47:55 +0800277 code_offsets_.Put(&code, code_offset);
278 offset += sizeof(code_size); // code size is prepended before code
279 offset += code_size;
280 oat_header_->UpdateChecksum(&code[0], code_size);
281 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800282#endif
Logan Chien971bf3f2012-05-01 15:47:55 +0800283 frame_size_in_bytes = compiled_method->GetFrameSizeInBytes();
284 core_spill_mask = compiled_method->GetCoreSpillMask();
285 fp_spill_mask = compiled_method->GetFpSpillMask();
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700286
Logan Chien971bf3f2012-05-01 15:47:55 +0800287 const std::vector<uint32_t>& mapping_table = compiled_method->GetMappingTable();
288 size_t mapping_table_size = mapping_table.size() * sizeof(mapping_table[0]);
289 mapping_table_offset = (mapping_table_size == 0) ? 0 : offset;
jeffhao55d78212011-11-02 11:41:50 -0700290
Logan Chien971bf3f2012-05-01 15:47:55 +0800291 // Deduplicate mapping tables
292 SafeMap<const std::vector<uint32_t>*, uint32_t>::iterator mapping_iter = mapping_table_offsets_.find(&mapping_table);
293 if (mapping_iter != mapping_table_offsets_.end()) {
294 mapping_table_offset = mapping_iter->second;
295 } else {
296 mapping_table_offsets_.Put(&mapping_table, mapping_table_offset);
297 offset += mapping_table_size;
298 oat_header_->UpdateChecksum(&mapping_table[0], mapping_table_size);
299 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700300
Logan Chien971bf3f2012-05-01 15:47:55 +0800301 const std::vector<uint16_t>& vmap_table = compiled_method->GetVmapTable();
302 size_t vmap_table_size = vmap_table.size() * sizeof(vmap_table[0]);
303 vmap_table_offset = (vmap_table_size == 0) ? 0 : offset;
jeffhao55d78212011-11-02 11:41:50 -0700304
Logan Chien971bf3f2012-05-01 15:47:55 +0800305 // Deduplicate vmap tables
306 SafeMap<const std::vector<uint16_t>*, uint32_t>::iterator vmap_iter = vmap_table_offsets_.find(&vmap_table);
307 if (vmap_iter != vmap_table_offsets_.end()) {
308 vmap_table_offset = vmap_iter->second;
309 } else {
310 vmap_table_offsets_.Put(&vmap_table, vmap_table_offset);
311 offset += vmap_table_size;
312 oat_header_->UpdateChecksum(&vmap_table[0], vmap_table_size);
313 }
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800314
Ian Rogers0c7abda2012-09-19 13:33:42 -0700315 const std::vector<uint8_t>& gc_map = compiled_method->GetNativeGcMap();
Logan Chien971bf3f2012-05-01 15:47:55 +0800316 size_t gc_map_size = gc_map.size() * sizeof(gc_map[0]);
317 gc_map_offset = (gc_map_size == 0) ? 0 : offset;
Logan Chienccb7bf12012-03-28 12:52:32 +0800318
TDYa127ce4cc0d2012-11-18 16:59:53 -0800319#if !defined(NDEBUG)
Logan Chien971bf3f2012-05-01 15:47:55 +0800320 // We expect GC maps except when the class hasn't been verified or the method is native
Ian Rogers1212a022013-03-04 10:48:41 -0800321 CompilerDriver::ClassReference class_ref = CompilerDriver::ClassReference(dex_file, class_def_index);
322 CompiledClass* compiled_class = compiler_driver_->GetCompiledClass(class_ref);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800323 mirror::Class::Status status;
jeffhaoec014232012-09-05 10:42:25 -0700324 if (compiled_class != NULL) {
325 status = compiled_class->GetStatus();
326 } else if (verifier::MethodVerifier::IsClassRejected(class_ref)) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800327 status = mirror::Class::kStatusError;
jeffhaoec014232012-09-05 10:42:25 -0700328 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800329 status = mirror::Class::kStatusNotReady;
jeffhaoec014232012-09-05 10:42:25 -0700330 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800331 CHECK(gc_map_size != 0 || is_native || status < mirror::Class::kStatusVerified)
332 << &gc_map << " " << gc_map_size << " " << (is_native ? "true" : "false") << " "
333 << (status < mirror::Class::kStatusVerified) << " " << status << " "
334 << PrettyMethod(method_idx, *dex_file);
Ian Rogersc20a83e2012-01-18 18:15:32 -0800335#endif
336
Logan Chien971bf3f2012-05-01 15:47:55 +0800337 // Deduplicate GC maps
338 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator gc_map_iter = gc_map_offsets_.find(&gc_map);
339 if (gc_map_iter != gc_map_offsets_.end()) {
340 gc_map_offset = gc_map_iter->second;
341 } else {
342 gc_map_offsets_.Put(&gc_map, gc_map_offset);
343 offset += gc_map_size;
344 oat_header_->UpdateChecksum(&gc_map[0], gc_map_size);
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800345 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700346 }
347
Ian Rogersc928de92013-02-27 14:30:44 -0800348#if defined(ART_USE_PORTABLE_COMPILER)
Brian Carlstrom265091e2013-01-30 14:08:26 -0800349 if (invoke_type != kStatic) {
350 CompiledInvokeStub* compiled_proxy_stub = compiler_driver_->FindProxyStub(shorty);
Logan Chien7a2a23a2012-06-06 11:01:00 +0800351 if (compiled_proxy_stub != NULL) {
Brian Carlstrom265091e2013-01-30 14:08:26 -0800352 compiled_proxy_stub->AddOatdataOffsetToCompliledCodeOffset(
353 oat_method_offsets_offset + OFFSETOF_MEMBER(OatMethodOffsets, proxy_stub_offset_));
Logan Chien7a2a23a2012-06-06 11:01:00 +0800354 }
355 }
356#endif
357
Brian Carlstrom265091e2013-01-30 14:08:26 -0800358 oat_class->method_offsets_[class_def_method_index]
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700359 = OatMethodOffsets(code_offset,
360 frame_size_in_bytes,
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700361 core_spill_mask,
362 fp_spill_mask,
363 mapping_table_offset,
364 vmap_table_offset,
Jeff Hao74180ca2013-03-27 15:29:11 -0700365 gc_map_offset
Ian Rogersc928de92013-02-27 14:30:44 -0800366#if defined(ART_USE_PORTABLE_COMPILER)
Logan Chien971bf3f2012-05-01 15:47:55 +0800367 , proxy_stub_offset
Logan Chienccb7bf12012-03-28 12:52:32 +0800368#endif
369 );
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700370
Ian Rogers1212a022013-03-04 10:48:41 -0800371 if (compiler_driver_->IsImage()) {
Ian Rogers0571d352011-11-03 19:51:38 -0700372 ClassLinker* linker = Runtime::Current()->GetClassLinker();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800373 mirror::DexCache* dex_cache = linker->FindDexCache(*dex_file);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700374 // Unchecked as we hold mutator_lock_ on entry.
375 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800376 mirror::AbstractMethod* method = linker->ResolveMethod(*dex_file, method_idx, dex_cache,
Brian Carlstrom265091e2013-01-30 14:08:26 -0800377 NULL, NULL, invoke_type);
Ian Rogers0571d352011-11-03 19:51:38 -0700378 CHECK(method != NULL);
379 method->SetFrameSizeInBytes(frame_size_in_bytes);
380 method->SetCoreSpillMask(core_spill_mask);
381 method->SetFpSpillMask(fp_spill_mask);
382 method->SetOatMappingTableOffset(mapping_table_offset);
Ian Rogers19846512012-02-24 11:42:47 -0800383 // Don't overwrite static method trampoline
384 if (!method->IsStatic() || method->IsConstructor() ||
385 method->GetDeclaringClass()->IsInitialized()) {
386 method->SetOatCodeOffset(code_offset);
387 } else {
388 method->SetCode(Runtime::Current()->GetResolutionStubArray(Runtime::kStaticMethod)->GetData());
389 }
Ian Rogers0571d352011-11-03 19:51:38 -0700390 method->SetOatVmapTableOffset(vmap_table_offset);
Ian Rogers0c7abda2012-09-19 13:33:42 -0700391 method->SetOatNativeGcMapOffset(gc_map_offset);
Ian Rogers0571d352011-11-03 19:51:38 -0700392 }
Logan Chien8b977d32012-02-21 19:14:55 +0800393
Brian Carlstrome24fa612011-09-29 00:53:55 -0700394 return offset;
395}
396
Brian Carlstrom265091e2013-01-30 14:08:26 -0800397#define DCHECK_OFFSET() \
398 DCHECK_EQ(static_cast<off_t>(offset), out.Seek(0, kSeekCurrent))
399
400#define DCHECK_OFFSET_() \
401 DCHECK_EQ(static_cast<off_t>(offset_), out.Seek(0, kSeekCurrent))
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700402
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800403bool OatWriter::Write(OutputStream& out) {
404 if (!out.WriteFully(oat_header_, sizeof(*oat_header_))) {
405 PLOG(ERROR) << "Failed to write oat header to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700406 return false;
407 }
408
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800409 if (!out.WriteFully(image_file_location_.data(), image_file_location_.size())) {
410 PLOG(ERROR) << "Failed to write oat header image file location to " << out.GetLocation();
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700411 return false;
412 }
413
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800414 if (!WriteTables(out)) {
415 LOG(ERROR) << "Failed to write oat tables to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700416 return false;
417 }
418
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800419 size_t code_offset = WriteCode(out);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700420 if (code_offset == 0) {
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800421 LOG(ERROR) << "Failed to write oat code to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700422 return false;
423 }
424
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800425 code_offset = WriteCodeDexFiles(out, code_offset);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700426 if (code_offset == 0) {
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800427 LOG(ERROR) << "Failed to write oat code for dex files to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700428 return false;
429 }
430
431 return true;
432}
433
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800434bool OatWriter::WriteTables(OutputStream& out) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700435 for (size_t i = 0; i != oat_dex_files_.size(); ++i) {
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800436 if (!oat_dex_files_[i]->Write(out)) {
437 PLOG(ERROR) << "Failed to write oat dex information to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700438 return false;
439 }
440 }
Brian Carlstrom89521892011-12-07 22:05:07 -0800441 for (size_t i = 0; i != oat_dex_files_.size(); ++i) {
442 uint32_t expected_offset = oat_dex_files_[i]->dex_file_offset_;
Brian Carlstrom49a0f152013-01-22 17:17:36 -0800443 off_t actual_offset = out.Seek(expected_offset, kSeekSet);
Brian Carlstrom89521892011-12-07 22:05:07 -0800444 if (static_cast<uint32_t>(actual_offset) != expected_offset) {
445 const DexFile* dex_file = (*dex_files_)[i];
446 PLOG(ERROR) << "Failed to seek to dex file section. Actual: " << actual_offset
447 << " Expected: " << expected_offset << " File: " << dex_file->GetLocation();
448 return false;
449 }
450 const DexFile* dex_file = (*dex_files_)[i];
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800451 if (!out.WriteFully(&dex_file->GetHeader(), dex_file->GetHeader().file_size_)) {
452 PLOG(ERROR) << "Failed to write dex file " << dex_file->GetLocation() << " to " << out.GetLocation();
Brian Carlstrom89521892011-12-07 22:05:07 -0800453 return false;
454 }
455 }
Brian Carlstrom389efb02012-01-11 12:06:26 -0800456 for (size_t i = 0; i != oat_classes_.size(); ++i) {
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800457 if (!oat_classes_[i]->Write(out)) {
458 PLOG(ERROR) << "Failed to write oat methods information to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700459 return false;
460 }
461 }
462 return true;
463}
464
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800465size_t OatWriter::WriteCode(OutputStream& out) {
Brian Carlstrom265091e2013-01-30 14:08:26 -0800466 uint32_t offset = oat_header_->GetExecutableOffset();
Brian Carlstrom49a0f152013-01-22 17:17:36 -0800467 off_t new_offset = out.Seek(executable_offset_padding_length_, kSeekCurrent);
Brian Carlstrom265091e2013-01-30 14:08:26 -0800468 if (static_cast<uint32_t>(new_offset) != offset) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700469 PLOG(ERROR) << "Failed to seek to oat code section. Actual: " << new_offset
Brian Carlstrom265091e2013-01-30 14:08:26 -0800470 << " Expected: " << offset << " File: " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700471 return 0;
472 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800473 DCHECK_OFFSET();
474 return offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700475}
476
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800477size_t OatWriter::WriteCodeDexFiles(OutputStream& out, size_t code_offset) {
Ian Rogers0571d352011-11-03 19:51:38 -0700478 size_t oat_class_index = 0;
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800479 for (size_t i = 0; i != oat_dex_files_.size(); ++i) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700480 const DexFile* dex_file = (*dex_files_)[i];
481 CHECK(dex_file != NULL);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800482 code_offset = WriteCodeDexFile(out, code_offset, oat_class_index, *dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700483 if (code_offset == 0) {
484 return 0;
485 }
486 }
487 return code_offset;
488}
489
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800490size_t OatWriter::WriteCodeDexFile(OutputStream& out, size_t code_offset, size_t& oat_class_index,
Ian Rogers0571d352011-11-03 19:51:38 -0700491 const DexFile& dex_file) {
492 for (size_t class_def_index = 0; class_def_index < dex_file.NumClassDefs();
493 class_def_index++, oat_class_index++) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700494 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800495 code_offset = WriteCodeClassDef(out, code_offset, oat_class_index, dex_file, class_def);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700496 if (code_offset == 0) {
497 return 0;
498 }
499 }
500 return code_offset;
501}
502
Ian Rogers0571d352011-11-03 19:51:38 -0700503void OatWriter::ReportWriteFailure(const char* what, uint32_t method_idx,
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800504 const DexFile& dex_file, OutputStream& out) const {
Ian Rogers0571d352011-11-03 19:51:38 -0700505 PLOG(ERROR) << "Failed to write " << what << " for " << PrettyMethod(method_idx, dex_file)
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800506 << " to " << out.GetLocation();
Elliott Hughes234da572011-11-03 22:13:06 -0700507}
508
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800509size_t OatWriter::WriteCodeClassDef(OutputStream& out,
Ian Rogers0571d352011-11-03 19:51:38 -0700510 size_t code_offset, size_t oat_class_index,
Brian Carlstrome24fa612011-09-29 00:53:55 -0700511 const DexFile& dex_file,
512 const DexFile::ClassDef& class_def) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700513 const byte* class_data = dex_file.GetClassData(class_def);
Ian Rogers0571d352011-11-03 19:51:38 -0700514 if (class_data == NULL) {
515 // ie. an empty class such as a marker interface
Ian Rogers387b6992011-10-31 17:52:37 -0700516 return code_offset;
517 }
Ian Rogers0571d352011-11-03 19:51:38 -0700518 ClassDataItemIterator it(dex_file, class_data);
519 // Skip fields
520 while (it.HasNextStaticField()) {
521 it.Next();
522 }
523 while (it.HasNextInstanceField()) {
524 it.Next();
525 }
526 // Process methods
527 size_t class_def_method_index = 0;
528 while (it.HasNextDirectMethod()) {
529 bool is_static = (it.GetMemberAccessFlags() & kAccStatic) != 0;
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800530 code_offset = WriteCodeMethod(out, code_offset, oat_class_index, class_def_method_index,
Ian Rogers0571d352011-11-03 19:51:38 -0700531 is_static, it.GetMemberIndex(), dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700532 if (code_offset == 0) {
533 return 0;
534 }
Ian Rogers0571d352011-11-03 19:51:38 -0700535 class_def_method_index++;
536 it.Next();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700537 }
Ian Rogers0571d352011-11-03 19:51:38 -0700538 while (it.HasNextVirtualMethod()) {
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800539 code_offset = WriteCodeMethod(out, code_offset, oat_class_index, class_def_method_index,
Ian Rogers0571d352011-11-03 19:51:38 -0700540 false, it.GetMemberIndex(), dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700541 if (code_offset == 0) {
542 return 0;
543 }
Ian Rogers0571d352011-11-03 19:51:38 -0700544 class_def_method_index++;
545 it.Next();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700546 }
547 return code_offset;
548}
549
Brian Carlstrom265091e2013-01-30 14:08:26 -0800550size_t OatWriter::WriteCodeMethod(OutputStream& out, size_t offset, size_t oat_class_index,
Ian Rogers0571d352011-11-03 19:51:38 -0700551 size_t class_def_method_index, bool is_static,
552 uint32_t method_idx, const DexFile& dex_file) {
553 const CompiledMethod* compiled_method =
Ian Rogers1212a022013-03-04 10:48:41 -0800554 compiler_driver_->GetCompiledMethod(CompilerDriver::MethodReference(&dex_file, method_idx));
Ian Rogers0571d352011-11-03 19:51:38 -0700555
Ian Rogers0571d352011-11-03 19:51:38 -0700556 OatMethodOffsets method_offsets =
Brian Carlstrom389efb02012-01-11 12:06:26 -0800557 oat_classes_[oat_class_index]->method_offsets_[class_def_method_index];
Ian Rogers0571d352011-11-03 19:51:38 -0700558
559
560 if (compiled_method != NULL) { // ie. not an abstract method
Brian Carlstrom265091e2013-01-30 14:08:26 -0800561#if !defined(ART_USE_PORTABLE_COMPILER)
562 uint32_t aligned_offset = compiled_method->AlignCode(offset);
563 uint32_t aligned_code_delta = aligned_offset - offset;
Logan Chien971bf3f2012-05-01 15:47:55 +0800564 if (aligned_code_delta != 0) {
Brian Carlstrom49a0f152013-01-22 17:17:36 -0800565 off_t new_offset = out.Seek(aligned_code_delta, kSeekCurrent);
Brian Carlstrom265091e2013-01-30 14:08:26 -0800566 if (static_cast<uint32_t>(new_offset) != aligned_offset) {
Logan Chien971bf3f2012-05-01 15:47:55 +0800567 PLOG(ERROR) << "Failed to seek to align oat code. Actual: " << new_offset
Brian Carlstrom265091e2013-01-30 14:08:26 -0800568 << " Expected: " << aligned_offset << " File: " << out.GetLocation();
Logan Chien971bf3f2012-05-01 15:47:55 +0800569 return 0;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700570 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800571 offset += aligned_code_delta;
572 DCHECK_OFFSET();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700573 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800574 DCHECK_ALIGNED(offset, kArmAlignment);
Logan Chien971bf3f2012-05-01 15:47:55 +0800575 const std::vector<uint8_t>& code = compiled_method->GetCode();
576 uint32_t code_size = code.size() * sizeof(code[0]);
577 CHECK_NE(code_size, 0U);
578
579 // Deduplicate code arrays
Brian Carlstrom265091e2013-01-30 14:08:26 -0800580 size_t code_offset = offset + sizeof(code_size) + compiled_method->CodeDelta();
Logan Chien971bf3f2012-05-01 15:47:55 +0800581 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator code_iter = code_offsets_.find(&code);
Brian Carlstrom265091e2013-01-30 14:08:26 -0800582 if (code_iter != code_offsets_.end() && code_offset != method_offsets.code_offset_) {
583 DCHECK(code_iter->second == method_offsets.code_offset_)
584 << PrettyMethod(method_idx, dex_file);
Logan Chien971bf3f2012-05-01 15:47:55 +0800585 } else {
Brian Carlstrom265091e2013-01-30 14:08:26 -0800586 DCHECK(code_offset == method_offsets.code_offset_) << PrettyMethod(method_idx, dex_file);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800587 if (!out.WriteFully(&code_size, sizeof(code_size))) {
588 ReportWriteFailure("method code size", method_idx, dex_file, out);
Logan Chien971bf3f2012-05-01 15:47:55 +0800589 return 0;
590 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800591 offset += sizeof(code_size);
592 DCHECK_OFFSET();
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800593 if (!out.WriteFully(&code[0], code_size)) {
594 ReportWriteFailure("method code", method_idx, dex_file, out);
Logan Chien971bf3f2012-05-01 15:47:55 +0800595 return 0;
596 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800597 offset += code_size;
Logan Chien971bf3f2012-05-01 15:47:55 +0800598 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800599 DCHECK_OFFSET();
600#endif
Logan Chien971bf3f2012-05-01 15:47:55 +0800601
602 const std::vector<uint32_t>& mapping_table = compiled_method->GetMappingTable();
603 size_t mapping_table_size = mapping_table.size() * sizeof(mapping_table[0]);
604
605 // Deduplicate mapping tables
606 SafeMap<const std::vector<uint32_t>*, uint32_t>::iterator mapping_iter =
607 mapping_table_offsets_.find(&mapping_table);
608 if (mapping_iter != mapping_table_offsets_.end() &&
Brian Carlstrom265091e2013-01-30 14:08:26 -0800609 offset != method_offsets.mapping_table_offset_) {
Logan Chien971bf3f2012-05-01 15:47:55 +0800610 DCHECK((mapping_table_size == 0 && method_offsets.mapping_table_offset_ == 0)
611 || mapping_iter->second == method_offsets.mapping_table_offset_)
612 << PrettyMethod(method_idx, dex_file);
613 } else {
614 DCHECK((mapping_table_size == 0 && method_offsets.mapping_table_offset_ == 0)
Brian Carlstrom265091e2013-01-30 14:08:26 -0800615 || offset == method_offsets.mapping_table_offset_)
Logan Chien971bf3f2012-05-01 15:47:55 +0800616 << PrettyMethod(method_idx, dex_file);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800617 if (!out.WriteFully(&mapping_table[0], mapping_table_size)) {
618 ReportWriteFailure("mapping table", method_idx, dex_file, out);
Logan Chien971bf3f2012-05-01 15:47:55 +0800619 return 0;
620 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800621 offset += mapping_table_size;
Logan Chien971bf3f2012-05-01 15:47:55 +0800622 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800623 DCHECK_OFFSET();
Logan Chien971bf3f2012-05-01 15:47:55 +0800624
625 const std::vector<uint16_t>& vmap_table = compiled_method->GetVmapTable();
626 size_t vmap_table_size = vmap_table.size() * sizeof(vmap_table[0]);
627
628 // Deduplicate vmap tables
629 SafeMap<const std::vector<uint16_t>*, uint32_t>::iterator vmap_iter =
630 vmap_table_offsets_.find(&vmap_table);
631 if (vmap_iter != vmap_table_offsets_.end() &&
Brian Carlstrom265091e2013-01-30 14:08:26 -0800632 offset != method_offsets.vmap_table_offset_) {
Logan Chien971bf3f2012-05-01 15:47:55 +0800633 DCHECK((vmap_table_size == 0 && method_offsets.vmap_table_offset_ == 0)
634 || vmap_iter->second == method_offsets.vmap_table_offset_)
635 << PrettyMethod(method_idx, dex_file);
636 } else {
637 DCHECK((vmap_table_size == 0 && method_offsets.vmap_table_offset_ == 0)
Brian Carlstrom265091e2013-01-30 14:08:26 -0800638 || offset == method_offsets.vmap_table_offset_)
Logan Chien971bf3f2012-05-01 15:47:55 +0800639 << PrettyMethod(method_idx, dex_file);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800640 if (!out.WriteFully(&vmap_table[0], vmap_table_size)) {
641 ReportWriteFailure("vmap table", method_idx, dex_file, out);
Logan Chien971bf3f2012-05-01 15:47:55 +0800642 return 0;
643 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800644 offset += vmap_table_size;
Logan Chien971bf3f2012-05-01 15:47:55 +0800645 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800646 DCHECK_OFFSET();
Logan Chien971bf3f2012-05-01 15:47:55 +0800647
Ian Rogers0c7abda2012-09-19 13:33:42 -0700648 const std::vector<uint8_t>& gc_map = compiled_method->GetNativeGcMap();
Logan Chien971bf3f2012-05-01 15:47:55 +0800649 size_t gc_map_size = gc_map.size() * sizeof(gc_map[0]);
650
651 // Deduplicate GC maps
652 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator gc_map_iter =
653 gc_map_offsets_.find(&gc_map);
654 if (gc_map_iter != gc_map_offsets_.end() &&
Brian Carlstrom265091e2013-01-30 14:08:26 -0800655 offset != method_offsets.gc_map_offset_) {
Logan Chien971bf3f2012-05-01 15:47:55 +0800656 DCHECK((gc_map_size == 0 && method_offsets.gc_map_offset_ == 0)
657 || gc_map_iter->second == method_offsets.gc_map_offset_)
658 << PrettyMethod(method_idx, dex_file);
659 } else {
660 DCHECK((gc_map_size == 0 && method_offsets.gc_map_offset_ == 0)
Brian Carlstrom265091e2013-01-30 14:08:26 -0800661 || offset == method_offsets.gc_map_offset_)
Logan Chien971bf3f2012-05-01 15:47:55 +0800662 << PrettyMethod(method_idx, dex_file);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800663 if (!out.WriteFully(&gc_map[0], gc_map_size)) {
664 ReportWriteFailure("GC map", method_idx, dex_file, out);
Logan Chien971bf3f2012-05-01 15:47:55 +0800665 return 0;
666 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800667 offset += gc_map_size;
Logan Chien971bf3f2012-05-01 15:47:55 +0800668 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800669 DCHECK_OFFSET();
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700670 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800671
Brian Carlstrom265091e2013-01-30 14:08:26 -0800672 return offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700673}
674
Brian Carlstrom265091e2013-01-30 14:08:26 -0800675OatWriter::OatDexFile::OatDexFile(size_t offset, const DexFile& dex_file) {
676 offset_ = offset;
Elliott Hughes95572412011-12-13 18:14:20 -0800677 const std::string& location(dex_file.GetLocation());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700678 dex_file_location_size_ = location.size();
679 dex_file_location_data_ = reinterpret_cast<const uint8_t*>(location.data());
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800680 dex_file_location_checksum_ = dex_file.GetLocationChecksum();
Brian Carlstrom89521892011-12-07 22:05:07 -0800681 dex_file_offset_ = 0;
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800682 methods_offsets_.resize(dex_file.NumClassDefs());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700683}
684
685size_t OatWriter::OatDexFile::SizeOf() const {
686 return sizeof(dex_file_location_size_)
687 + dex_file_location_size_
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800688 + sizeof(dex_file_location_checksum_)
Brian Carlstrom89521892011-12-07 22:05:07 -0800689 + sizeof(dex_file_offset_)
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800690 + (sizeof(methods_offsets_[0]) * methods_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700691}
692
693void OatWriter::OatDexFile::UpdateChecksum(OatHeader& oat_header) const {
694 oat_header.UpdateChecksum(&dex_file_location_size_, sizeof(dex_file_location_size_));
695 oat_header.UpdateChecksum(dex_file_location_data_, dex_file_location_size_);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800696 oat_header.UpdateChecksum(&dex_file_location_checksum_, sizeof(dex_file_location_checksum_));
Brian Carlstrom89521892011-12-07 22:05:07 -0800697 oat_header.UpdateChecksum(&dex_file_offset_, sizeof(dex_file_offset_));
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800698 oat_header.UpdateChecksum(&methods_offsets_[0],
699 sizeof(methods_offsets_[0]) * methods_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700700}
701
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800702bool OatWriter::OatDexFile::Write(OutputStream& out) const {
Brian Carlstrom265091e2013-01-30 14:08:26 -0800703 DCHECK_OFFSET_();
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800704 if (!out.WriteFully(&dex_file_location_size_, sizeof(dex_file_location_size_))) {
705 PLOG(ERROR) << "Failed to write dex file location length to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700706 return false;
707 }
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800708 if (!out.WriteFully(dex_file_location_data_, dex_file_location_size_)) {
709 PLOG(ERROR) << "Failed to write dex file location data to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700710 return false;
711 }
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800712 if (!out.WriteFully(&dex_file_location_checksum_, sizeof(dex_file_location_checksum_))) {
713 PLOG(ERROR) << "Failed to write dex file location checksum to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700714 return false;
715 }
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800716 if (!out.WriteFully(&dex_file_offset_, sizeof(dex_file_offset_))) {
717 PLOG(ERROR) << "Failed to write dex file offset to " << out.GetLocation();
Brian Carlstrom89521892011-12-07 22:05:07 -0800718 return false;
719 }
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800720 if (!out.WriteFully(&methods_offsets_[0],
721 sizeof(methods_offsets_[0]) * methods_offsets_.size())) {
722 PLOG(ERROR) << "Failed to write methods offsets to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700723 return false;
724 }
725 return true;
726}
727
Brian Carlstrom265091e2013-01-30 14:08:26 -0800728OatWriter::OatClass::OatClass(size_t offset, mirror::Class::Status status, uint32_t methods_count) {
729 offset_ = offset;
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800730 status_ = status;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700731 method_offsets_.resize(methods_count);
732}
733
Brian Carlstrom265091e2013-01-30 14:08:26 -0800734size_t OatWriter::OatClass::GetOatMethodOffsetsOffsetFromOatHeader(
735 size_t class_def_method_index_) const {
736 return offset_ + GetOatMethodOffsetsOffsetFromOatClass(class_def_method_index_);
737}
738
739size_t OatWriter::OatClass::GetOatMethodOffsetsOffsetFromOatClass(
740 size_t class_def_method_index_) const {
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800741 return sizeof(status_)
Brian Carlstrom265091e2013-01-30 14:08:26 -0800742 + (sizeof(method_offsets_[0]) * class_def_method_index_);
743}
744
745size_t OatWriter::OatClass::SizeOf() const {
746 return GetOatMethodOffsetsOffsetFromOatClass(method_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700747}
748
Brian Carlstrom389efb02012-01-11 12:06:26 -0800749void OatWriter::OatClass::UpdateChecksum(OatHeader& oat_header) const {
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800750 oat_header.UpdateChecksum(&status_, sizeof(status_));
751 oat_header.UpdateChecksum(&method_offsets_[0],
752 sizeof(method_offsets_[0]) * method_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700753}
754
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800755bool OatWriter::OatClass::Write(OutputStream& out) const {
Brian Carlstrom265091e2013-01-30 14:08:26 -0800756 DCHECK_OFFSET_();
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800757 if (!out.WriteFully(&status_, sizeof(status_))) {
758 PLOG(ERROR) << "Failed to write class status to " << out.GetLocation();
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800759 return false;
760 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800761 DCHECK_EQ(static_cast<off_t>(GetOatMethodOffsetsOffsetFromOatHeader(0)),
762 out.Seek(0, kSeekCurrent));
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800763 if (!out.WriteFully(&method_offsets_[0],
764 sizeof(method_offsets_[0]) * method_offsets_.size())) {
765 PLOG(ERROR) << "Failed to write method offsets to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700766 return false;
767 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800768 DCHECK_EQ(static_cast<off_t>(GetOatMethodOffsetsOffsetFromOatHeader(method_offsets_.size())),
769 out.Seek(0, kSeekCurrent));
Brian Carlstrome24fa612011-09-29 00:53:55 -0700770 return true;
771}
772
Brian Carlstrome24fa612011-09-29 00:53:55 -0700773} // namespace art