blob: 8acbfe9ca522f3de983d6371b74c9cb0b4f2b0be [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;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700247
Brian Carlstrom265091e2013-01-30 14:08:26 -0800248 OatClass* oat_class = oat_classes_[oat_class_index];
249#if defined(ART_USE_PORTABLE_COMPILER)
250 size_t oat_method_offsets_offset =
251 oat_class->GetOatMethodOffsetsOffsetFromOatHeader(class_def_method_index);
252#endif
253
Ian Rogers0571d352011-11-03 19:51:38 -0700254 CompiledMethod* compiled_method =
Ian Rogers1212a022013-03-04 10:48:41 -0800255 compiler_driver_->GetCompiledMethod(CompilerDriver::MethodReference(dex_file, method_idx));
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700256 if (compiled_method != NULL) {
Brian Carlstrom265091e2013-01-30 14:08:26 -0800257#if defined(ART_USE_PORTABLE_COMPILER)
258 compiled_method->AddOatdataOffsetToCompliledCodeOffset(
259 oat_method_offsets_offset + OFFSETOF_MEMBER(OatMethodOffsets, code_offset_));
260#else
261 const std::vector<uint8_t>& code = compiled_method->GetCode();
Logan Chien971bf3f2012-05-01 15:47:55 +0800262 offset = compiled_method->AlignCode(offset);
263 DCHECK_ALIGNED(offset, kArmAlignment);
Logan Chien971bf3f2012-05-01 15:47:55 +0800264 uint32_t code_size = code.size() * sizeof(code[0]);
265 CHECK_NE(code_size, 0U);
266 uint32_t thumb_offset = compiled_method->CodeDelta();
267 code_offset = offset + sizeof(code_size) + thumb_offset;
268
269 // Deduplicate code arrays
270 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator code_iter = code_offsets_.find(&code);
271 if (code_iter != code_offsets_.end()) {
272 code_offset = code_iter->second;
jeffhao55d78212011-11-02 11:41:50 -0700273 } else {
Logan Chien971bf3f2012-05-01 15:47:55 +0800274 code_offsets_.Put(&code, code_offset);
275 offset += sizeof(code_size); // code size is prepended before code
276 offset += code_size;
277 oat_header_->UpdateChecksum(&code[0], code_size);
278 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800279#endif
Logan Chien971bf3f2012-05-01 15:47:55 +0800280 frame_size_in_bytes = compiled_method->GetFrameSizeInBytes();
281 core_spill_mask = compiled_method->GetCoreSpillMask();
282 fp_spill_mask = compiled_method->GetFpSpillMask();
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700283
Logan Chien971bf3f2012-05-01 15:47:55 +0800284 const std::vector<uint32_t>& mapping_table = compiled_method->GetMappingTable();
285 size_t mapping_table_size = mapping_table.size() * sizeof(mapping_table[0]);
286 mapping_table_offset = (mapping_table_size == 0) ? 0 : offset;
jeffhao55d78212011-11-02 11:41:50 -0700287
Logan Chien971bf3f2012-05-01 15:47:55 +0800288 // Deduplicate mapping tables
289 SafeMap<const std::vector<uint32_t>*, uint32_t>::iterator mapping_iter = mapping_table_offsets_.find(&mapping_table);
290 if (mapping_iter != mapping_table_offsets_.end()) {
291 mapping_table_offset = mapping_iter->second;
292 } else {
293 mapping_table_offsets_.Put(&mapping_table, mapping_table_offset);
294 offset += mapping_table_size;
295 oat_header_->UpdateChecksum(&mapping_table[0], mapping_table_size);
296 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700297
Logan Chien971bf3f2012-05-01 15:47:55 +0800298 const std::vector<uint16_t>& vmap_table = compiled_method->GetVmapTable();
299 size_t vmap_table_size = vmap_table.size() * sizeof(vmap_table[0]);
300 vmap_table_offset = (vmap_table_size == 0) ? 0 : offset;
jeffhao55d78212011-11-02 11:41:50 -0700301
Logan Chien971bf3f2012-05-01 15:47:55 +0800302 // Deduplicate vmap tables
303 SafeMap<const std::vector<uint16_t>*, uint32_t>::iterator vmap_iter = vmap_table_offsets_.find(&vmap_table);
304 if (vmap_iter != vmap_table_offsets_.end()) {
305 vmap_table_offset = vmap_iter->second;
306 } else {
307 vmap_table_offsets_.Put(&vmap_table, vmap_table_offset);
308 offset += vmap_table_size;
309 oat_header_->UpdateChecksum(&vmap_table[0], vmap_table_size);
310 }
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800311
Ian Rogersfbdc0fa2013-04-18 16:48:17 -0700312 const std::vector<uint8_t>& gc_map = compiled_method->GetGcMap();
Logan Chien971bf3f2012-05-01 15:47:55 +0800313 size_t gc_map_size = gc_map.size() * sizeof(gc_map[0]);
314 gc_map_offset = (gc_map_size == 0) ? 0 : offset;
Logan Chienccb7bf12012-03-28 12:52:32 +0800315
TDYa127ce4cc0d2012-11-18 16:59:53 -0800316#if !defined(NDEBUG)
Logan Chien971bf3f2012-05-01 15:47:55 +0800317 // We expect GC maps except when the class hasn't been verified or the method is native
Ian Rogers1212a022013-03-04 10:48:41 -0800318 CompilerDriver::ClassReference class_ref = CompilerDriver::ClassReference(dex_file, class_def_index);
319 CompiledClass* compiled_class = compiler_driver_->GetCompiledClass(class_ref);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800320 mirror::Class::Status status;
jeffhaoec014232012-09-05 10:42:25 -0700321 if (compiled_class != NULL) {
322 status = compiled_class->GetStatus();
323 } else if (verifier::MethodVerifier::IsClassRejected(class_ref)) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800324 status = mirror::Class::kStatusError;
jeffhaoec014232012-09-05 10:42:25 -0700325 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800326 status = mirror::Class::kStatusNotReady;
jeffhaoec014232012-09-05 10:42:25 -0700327 }
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800328 CHECK(gc_map_size != 0 || is_native || status < mirror::Class::kStatusVerified)
329 << &gc_map << " " << gc_map_size << " " << (is_native ? "true" : "false") << " "
330 << (status < mirror::Class::kStatusVerified) << " " << status << " "
331 << PrettyMethod(method_idx, *dex_file);
Ian Rogersc20a83e2012-01-18 18:15:32 -0800332#endif
333
Logan Chien971bf3f2012-05-01 15:47:55 +0800334 // Deduplicate GC maps
335 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator gc_map_iter = gc_map_offsets_.find(&gc_map);
336 if (gc_map_iter != gc_map_offsets_.end()) {
337 gc_map_offset = gc_map_iter->second;
338 } else {
339 gc_map_offsets_.Put(&gc_map, gc_map_offset);
340 offset += gc_map_size;
341 oat_header_->UpdateChecksum(&gc_map[0], gc_map_size);
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800342 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700343 }
344
Brian Carlstrom265091e2013-01-30 14:08:26 -0800345 oat_class->method_offsets_[class_def_method_index]
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700346 = OatMethodOffsets(code_offset,
347 frame_size_in_bytes,
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700348 core_spill_mask,
349 fp_spill_mask,
350 mapping_table_offset,
351 vmap_table_offset,
Jeff Hao74180ca2013-03-27 15:29:11 -0700352 gc_map_offset
Logan Chienccb7bf12012-03-28 12:52:32 +0800353 );
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700354
Ian Rogers1212a022013-03-04 10:48:41 -0800355 if (compiler_driver_->IsImage()) {
Ian Rogers0571d352011-11-03 19:51:38 -0700356 ClassLinker* linker = Runtime::Current()->GetClassLinker();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800357 mirror::DexCache* dex_cache = linker->FindDexCache(*dex_file);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700358 // Unchecked as we hold mutator_lock_ on entry.
359 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800360 mirror::AbstractMethod* method = linker->ResolveMethod(*dex_file, method_idx, dex_cache,
Brian Carlstrom265091e2013-01-30 14:08:26 -0800361 NULL, NULL, invoke_type);
Ian Rogers0571d352011-11-03 19:51:38 -0700362 CHECK(method != NULL);
363 method->SetFrameSizeInBytes(frame_size_in_bytes);
364 method->SetCoreSpillMask(core_spill_mask);
365 method->SetFpSpillMask(fp_spill_mask);
366 method->SetOatMappingTableOffset(mapping_table_offset);
Ian Rogers19846512012-02-24 11:42:47 -0800367 // Don't overwrite static method trampoline
368 if (!method->IsStatic() || method->IsConstructor() ||
369 method->GetDeclaringClass()->IsInitialized()) {
370 method->SetOatCodeOffset(code_offset);
371 } else {
Jeff Haoaa4a7932013-05-13 11:28:27 -0700372 method->SetEntryPointFromCompiledCode(NULL);
Ian Rogers19846512012-02-24 11:42:47 -0800373 }
Ian Rogers0571d352011-11-03 19:51:38 -0700374 method->SetOatVmapTableOffset(vmap_table_offset);
Ian Rogers0c7abda2012-09-19 13:33:42 -0700375 method->SetOatNativeGcMapOffset(gc_map_offset);
Ian Rogers0571d352011-11-03 19:51:38 -0700376 }
Logan Chien8b977d32012-02-21 19:14:55 +0800377
Brian Carlstrome24fa612011-09-29 00:53:55 -0700378 return offset;
379}
380
Brian Carlstrom265091e2013-01-30 14:08:26 -0800381#define DCHECK_OFFSET() \
382 DCHECK_EQ(static_cast<off_t>(offset), out.Seek(0, kSeekCurrent))
383
384#define DCHECK_OFFSET_() \
385 DCHECK_EQ(static_cast<off_t>(offset_), out.Seek(0, kSeekCurrent))
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700386
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800387bool OatWriter::Write(OutputStream& out) {
388 if (!out.WriteFully(oat_header_, sizeof(*oat_header_))) {
389 PLOG(ERROR) << "Failed to write oat header to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700390 return false;
391 }
392
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800393 if (!out.WriteFully(image_file_location_.data(), image_file_location_.size())) {
394 PLOG(ERROR) << "Failed to write oat header image file location to " << out.GetLocation();
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700395 return false;
396 }
397
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800398 if (!WriteTables(out)) {
399 LOG(ERROR) << "Failed to write oat tables to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700400 return false;
401 }
402
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800403 size_t code_offset = WriteCode(out);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700404 if (code_offset == 0) {
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800405 LOG(ERROR) << "Failed to write oat code to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700406 return false;
407 }
408
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800409 code_offset = WriteCodeDexFiles(out, code_offset);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700410 if (code_offset == 0) {
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800411 LOG(ERROR) << "Failed to write oat code for dex files to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700412 return false;
413 }
414
415 return true;
416}
417
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800418bool OatWriter::WriteTables(OutputStream& out) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700419 for (size_t i = 0; i != oat_dex_files_.size(); ++i) {
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800420 if (!oat_dex_files_[i]->Write(out)) {
421 PLOG(ERROR) << "Failed to write oat dex information to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700422 return false;
423 }
424 }
Brian Carlstrom89521892011-12-07 22:05:07 -0800425 for (size_t i = 0; i != oat_dex_files_.size(); ++i) {
426 uint32_t expected_offset = oat_dex_files_[i]->dex_file_offset_;
Brian Carlstrom49a0f152013-01-22 17:17:36 -0800427 off_t actual_offset = out.Seek(expected_offset, kSeekSet);
Brian Carlstrom89521892011-12-07 22:05:07 -0800428 if (static_cast<uint32_t>(actual_offset) != expected_offset) {
429 const DexFile* dex_file = (*dex_files_)[i];
430 PLOG(ERROR) << "Failed to seek to dex file section. Actual: " << actual_offset
431 << " Expected: " << expected_offset << " File: " << dex_file->GetLocation();
432 return false;
433 }
434 const DexFile* dex_file = (*dex_files_)[i];
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800435 if (!out.WriteFully(&dex_file->GetHeader(), dex_file->GetHeader().file_size_)) {
436 PLOG(ERROR) << "Failed to write dex file " << dex_file->GetLocation() << " to " << out.GetLocation();
Brian Carlstrom89521892011-12-07 22:05:07 -0800437 return false;
438 }
439 }
Brian Carlstrom389efb02012-01-11 12:06:26 -0800440 for (size_t i = 0; i != oat_classes_.size(); ++i) {
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800441 if (!oat_classes_[i]->Write(out)) {
442 PLOG(ERROR) << "Failed to write oat methods information to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700443 return false;
444 }
445 }
446 return true;
447}
448
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800449size_t OatWriter::WriteCode(OutputStream& out) {
Brian Carlstrom265091e2013-01-30 14:08:26 -0800450 uint32_t offset = oat_header_->GetExecutableOffset();
Brian Carlstrom49a0f152013-01-22 17:17:36 -0800451 off_t new_offset = out.Seek(executable_offset_padding_length_, kSeekCurrent);
Brian Carlstrom265091e2013-01-30 14:08:26 -0800452 if (static_cast<uint32_t>(new_offset) != offset) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700453 PLOG(ERROR) << "Failed to seek to oat code section. Actual: " << new_offset
Brian Carlstrom265091e2013-01-30 14:08:26 -0800454 << " Expected: " << offset << " File: " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700455 return 0;
456 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800457 DCHECK_OFFSET();
458 return offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700459}
460
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800461size_t OatWriter::WriteCodeDexFiles(OutputStream& out, size_t code_offset) {
Ian Rogers0571d352011-11-03 19:51:38 -0700462 size_t oat_class_index = 0;
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800463 for (size_t i = 0; i != oat_dex_files_.size(); ++i) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700464 const DexFile* dex_file = (*dex_files_)[i];
465 CHECK(dex_file != NULL);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800466 code_offset = WriteCodeDexFile(out, code_offset, oat_class_index, *dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700467 if (code_offset == 0) {
468 return 0;
469 }
470 }
471 return code_offset;
472}
473
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800474size_t OatWriter::WriteCodeDexFile(OutputStream& out, size_t code_offset, size_t& oat_class_index,
Ian Rogers0571d352011-11-03 19:51:38 -0700475 const DexFile& dex_file) {
476 for (size_t class_def_index = 0; class_def_index < dex_file.NumClassDefs();
477 class_def_index++, oat_class_index++) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700478 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800479 code_offset = WriteCodeClassDef(out, code_offset, oat_class_index, dex_file, class_def);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700480 if (code_offset == 0) {
481 return 0;
482 }
483 }
484 return code_offset;
485}
486
Ian Rogers0571d352011-11-03 19:51:38 -0700487void OatWriter::ReportWriteFailure(const char* what, uint32_t method_idx,
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800488 const DexFile& dex_file, OutputStream& out) const {
Ian Rogers0571d352011-11-03 19:51:38 -0700489 PLOG(ERROR) << "Failed to write " << what << " for " << PrettyMethod(method_idx, dex_file)
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800490 << " to " << out.GetLocation();
Elliott Hughes234da572011-11-03 22:13:06 -0700491}
492
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800493size_t OatWriter::WriteCodeClassDef(OutputStream& out,
Ian Rogers0571d352011-11-03 19:51:38 -0700494 size_t code_offset, size_t oat_class_index,
Brian Carlstrome24fa612011-09-29 00:53:55 -0700495 const DexFile& dex_file,
496 const DexFile::ClassDef& class_def) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700497 const byte* class_data = dex_file.GetClassData(class_def);
Ian Rogers0571d352011-11-03 19:51:38 -0700498 if (class_data == NULL) {
499 // ie. an empty class such as a marker interface
Ian Rogers387b6992011-10-31 17:52:37 -0700500 return code_offset;
501 }
Ian Rogers0571d352011-11-03 19:51:38 -0700502 ClassDataItemIterator it(dex_file, class_data);
503 // Skip fields
504 while (it.HasNextStaticField()) {
505 it.Next();
506 }
507 while (it.HasNextInstanceField()) {
508 it.Next();
509 }
510 // Process methods
511 size_t class_def_method_index = 0;
512 while (it.HasNextDirectMethod()) {
513 bool is_static = (it.GetMemberAccessFlags() & kAccStatic) != 0;
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800514 code_offset = WriteCodeMethod(out, code_offset, oat_class_index, class_def_method_index,
Ian Rogers0571d352011-11-03 19:51:38 -0700515 is_static, it.GetMemberIndex(), dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700516 if (code_offset == 0) {
517 return 0;
518 }
Ian Rogers0571d352011-11-03 19:51:38 -0700519 class_def_method_index++;
520 it.Next();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700521 }
Ian Rogers0571d352011-11-03 19:51:38 -0700522 while (it.HasNextVirtualMethod()) {
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800523 code_offset = WriteCodeMethod(out, code_offset, oat_class_index, class_def_method_index,
Ian Rogers0571d352011-11-03 19:51:38 -0700524 false, it.GetMemberIndex(), dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700525 if (code_offset == 0) {
526 return 0;
527 }
Ian Rogers0571d352011-11-03 19:51:38 -0700528 class_def_method_index++;
529 it.Next();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700530 }
531 return code_offset;
532}
533
Brian Carlstrom265091e2013-01-30 14:08:26 -0800534size_t OatWriter::WriteCodeMethod(OutputStream& out, size_t offset, size_t oat_class_index,
Ian Rogers0571d352011-11-03 19:51:38 -0700535 size_t class_def_method_index, bool is_static,
536 uint32_t method_idx, const DexFile& dex_file) {
537 const CompiledMethod* compiled_method =
Ian Rogers1212a022013-03-04 10:48:41 -0800538 compiler_driver_->GetCompiledMethod(CompilerDriver::MethodReference(&dex_file, method_idx));
Ian Rogers0571d352011-11-03 19:51:38 -0700539
Ian Rogers0571d352011-11-03 19:51:38 -0700540 OatMethodOffsets method_offsets =
Brian Carlstrom389efb02012-01-11 12:06:26 -0800541 oat_classes_[oat_class_index]->method_offsets_[class_def_method_index];
Ian Rogers0571d352011-11-03 19:51:38 -0700542
543
544 if (compiled_method != NULL) { // ie. not an abstract method
Brian Carlstrom265091e2013-01-30 14:08:26 -0800545#if !defined(ART_USE_PORTABLE_COMPILER)
546 uint32_t aligned_offset = compiled_method->AlignCode(offset);
547 uint32_t aligned_code_delta = aligned_offset - offset;
Logan Chien971bf3f2012-05-01 15:47:55 +0800548 if (aligned_code_delta != 0) {
Brian Carlstrom49a0f152013-01-22 17:17:36 -0800549 off_t new_offset = out.Seek(aligned_code_delta, kSeekCurrent);
Brian Carlstrom265091e2013-01-30 14:08:26 -0800550 if (static_cast<uint32_t>(new_offset) != aligned_offset) {
Logan Chien971bf3f2012-05-01 15:47:55 +0800551 PLOG(ERROR) << "Failed to seek to align oat code. Actual: " << new_offset
Brian Carlstrom265091e2013-01-30 14:08:26 -0800552 << " Expected: " << aligned_offset << " File: " << out.GetLocation();
Logan Chien971bf3f2012-05-01 15:47:55 +0800553 return 0;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700554 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800555 offset += aligned_code_delta;
556 DCHECK_OFFSET();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700557 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800558 DCHECK_ALIGNED(offset, kArmAlignment);
Logan Chien971bf3f2012-05-01 15:47:55 +0800559 const std::vector<uint8_t>& code = compiled_method->GetCode();
560 uint32_t code_size = code.size() * sizeof(code[0]);
561 CHECK_NE(code_size, 0U);
562
563 // Deduplicate code arrays
Brian Carlstrom265091e2013-01-30 14:08:26 -0800564 size_t code_offset = offset + sizeof(code_size) + compiled_method->CodeDelta();
Logan Chien971bf3f2012-05-01 15:47:55 +0800565 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator code_iter = code_offsets_.find(&code);
Brian Carlstrom265091e2013-01-30 14:08:26 -0800566 if (code_iter != code_offsets_.end() && code_offset != method_offsets.code_offset_) {
567 DCHECK(code_iter->second == method_offsets.code_offset_)
568 << PrettyMethod(method_idx, dex_file);
Logan Chien971bf3f2012-05-01 15:47:55 +0800569 } else {
Brian Carlstrom265091e2013-01-30 14:08:26 -0800570 DCHECK(code_offset == method_offsets.code_offset_) << PrettyMethod(method_idx, dex_file);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800571 if (!out.WriteFully(&code_size, sizeof(code_size))) {
572 ReportWriteFailure("method code size", method_idx, dex_file, out);
Logan Chien971bf3f2012-05-01 15:47:55 +0800573 return 0;
574 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800575 offset += sizeof(code_size);
576 DCHECK_OFFSET();
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800577 if (!out.WriteFully(&code[0], code_size)) {
578 ReportWriteFailure("method code", method_idx, dex_file, out);
Logan Chien971bf3f2012-05-01 15:47:55 +0800579 return 0;
580 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800581 offset += code_size;
Logan Chien971bf3f2012-05-01 15:47:55 +0800582 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800583 DCHECK_OFFSET();
584#endif
Logan Chien971bf3f2012-05-01 15:47:55 +0800585
586 const std::vector<uint32_t>& mapping_table = compiled_method->GetMappingTable();
587 size_t mapping_table_size = mapping_table.size() * sizeof(mapping_table[0]);
588
589 // Deduplicate mapping tables
590 SafeMap<const std::vector<uint32_t>*, uint32_t>::iterator mapping_iter =
591 mapping_table_offsets_.find(&mapping_table);
592 if (mapping_iter != mapping_table_offsets_.end() &&
Brian Carlstrom265091e2013-01-30 14:08:26 -0800593 offset != method_offsets.mapping_table_offset_) {
Logan Chien971bf3f2012-05-01 15:47:55 +0800594 DCHECK((mapping_table_size == 0 && method_offsets.mapping_table_offset_ == 0)
595 || mapping_iter->second == method_offsets.mapping_table_offset_)
596 << PrettyMethod(method_idx, dex_file);
597 } else {
598 DCHECK((mapping_table_size == 0 && method_offsets.mapping_table_offset_ == 0)
Brian Carlstrom265091e2013-01-30 14:08:26 -0800599 || offset == method_offsets.mapping_table_offset_)
Logan Chien971bf3f2012-05-01 15:47:55 +0800600 << PrettyMethod(method_idx, dex_file);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800601 if (!out.WriteFully(&mapping_table[0], mapping_table_size)) {
602 ReportWriteFailure("mapping table", method_idx, dex_file, out);
Logan Chien971bf3f2012-05-01 15:47:55 +0800603 return 0;
604 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800605 offset += mapping_table_size;
Logan Chien971bf3f2012-05-01 15:47:55 +0800606 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800607 DCHECK_OFFSET();
Logan Chien971bf3f2012-05-01 15:47:55 +0800608
609 const std::vector<uint16_t>& vmap_table = compiled_method->GetVmapTable();
610 size_t vmap_table_size = vmap_table.size() * sizeof(vmap_table[0]);
611
612 // Deduplicate vmap tables
613 SafeMap<const std::vector<uint16_t>*, uint32_t>::iterator vmap_iter =
614 vmap_table_offsets_.find(&vmap_table);
615 if (vmap_iter != vmap_table_offsets_.end() &&
Brian Carlstrom265091e2013-01-30 14:08:26 -0800616 offset != method_offsets.vmap_table_offset_) {
Logan Chien971bf3f2012-05-01 15:47:55 +0800617 DCHECK((vmap_table_size == 0 && method_offsets.vmap_table_offset_ == 0)
618 || vmap_iter->second == method_offsets.vmap_table_offset_)
619 << PrettyMethod(method_idx, dex_file);
620 } else {
621 DCHECK((vmap_table_size == 0 && method_offsets.vmap_table_offset_ == 0)
Brian Carlstrom265091e2013-01-30 14:08:26 -0800622 || offset == method_offsets.vmap_table_offset_)
Logan Chien971bf3f2012-05-01 15:47:55 +0800623 << PrettyMethod(method_idx, dex_file);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800624 if (!out.WriteFully(&vmap_table[0], vmap_table_size)) {
625 ReportWriteFailure("vmap table", method_idx, dex_file, out);
Logan Chien971bf3f2012-05-01 15:47:55 +0800626 return 0;
627 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800628 offset += vmap_table_size;
Logan Chien971bf3f2012-05-01 15:47:55 +0800629 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800630 DCHECK_OFFSET();
Logan Chien971bf3f2012-05-01 15:47:55 +0800631
Ian Rogersfbdc0fa2013-04-18 16:48:17 -0700632 const std::vector<uint8_t>& gc_map = compiled_method->GetGcMap();
Logan Chien971bf3f2012-05-01 15:47:55 +0800633 size_t gc_map_size = gc_map.size() * sizeof(gc_map[0]);
634
635 // Deduplicate GC maps
636 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator gc_map_iter =
637 gc_map_offsets_.find(&gc_map);
638 if (gc_map_iter != gc_map_offsets_.end() &&
Brian Carlstrom265091e2013-01-30 14:08:26 -0800639 offset != method_offsets.gc_map_offset_) {
Logan Chien971bf3f2012-05-01 15:47:55 +0800640 DCHECK((gc_map_size == 0 && method_offsets.gc_map_offset_ == 0)
641 || gc_map_iter->second == method_offsets.gc_map_offset_)
642 << PrettyMethod(method_idx, dex_file);
643 } else {
644 DCHECK((gc_map_size == 0 && method_offsets.gc_map_offset_ == 0)
Brian Carlstrom265091e2013-01-30 14:08:26 -0800645 || offset == method_offsets.gc_map_offset_)
Logan Chien971bf3f2012-05-01 15:47:55 +0800646 << PrettyMethod(method_idx, dex_file);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800647 if (!out.WriteFully(&gc_map[0], gc_map_size)) {
648 ReportWriteFailure("GC map", method_idx, dex_file, out);
Logan Chien971bf3f2012-05-01 15:47:55 +0800649 return 0;
650 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800651 offset += gc_map_size;
Logan Chien971bf3f2012-05-01 15:47:55 +0800652 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800653 DCHECK_OFFSET();
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700654 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800655
Brian Carlstrom265091e2013-01-30 14:08:26 -0800656 return offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700657}
658
Brian Carlstrom265091e2013-01-30 14:08:26 -0800659OatWriter::OatDexFile::OatDexFile(size_t offset, const DexFile& dex_file) {
660 offset_ = offset;
Elliott Hughes95572412011-12-13 18:14:20 -0800661 const std::string& location(dex_file.GetLocation());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700662 dex_file_location_size_ = location.size();
663 dex_file_location_data_ = reinterpret_cast<const uint8_t*>(location.data());
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800664 dex_file_location_checksum_ = dex_file.GetLocationChecksum();
Brian Carlstrom89521892011-12-07 22:05:07 -0800665 dex_file_offset_ = 0;
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800666 methods_offsets_.resize(dex_file.NumClassDefs());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700667}
668
669size_t OatWriter::OatDexFile::SizeOf() const {
670 return sizeof(dex_file_location_size_)
671 + dex_file_location_size_
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800672 + sizeof(dex_file_location_checksum_)
Brian Carlstrom89521892011-12-07 22:05:07 -0800673 + sizeof(dex_file_offset_)
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800674 + (sizeof(methods_offsets_[0]) * methods_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700675}
676
677void OatWriter::OatDexFile::UpdateChecksum(OatHeader& oat_header) const {
678 oat_header.UpdateChecksum(&dex_file_location_size_, sizeof(dex_file_location_size_));
679 oat_header.UpdateChecksum(dex_file_location_data_, dex_file_location_size_);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800680 oat_header.UpdateChecksum(&dex_file_location_checksum_, sizeof(dex_file_location_checksum_));
Brian Carlstrom89521892011-12-07 22:05:07 -0800681 oat_header.UpdateChecksum(&dex_file_offset_, sizeof(dex_file_offset_));
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800682 oat_header.UpdateChecksum(&methods_offsets_[0],
683 sizeof(methods_offsets_[0]) * methods_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700684}
685
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800686bool OatWriter::OatDexFile::Write(OutputStream& out) const {
Brian Carlstrom265091e2013-01-30 14:08:26 -0800687 DCHECK_OFFSET_();
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800688 if (!out.WriteFully(&dex_file_location_size_, sizeof(dex_file_location_size_))) {
689 PLOG(ERROR) << "Failed to write dex file location length to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700690 return false;
691 }
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800692 if (!out.WriteFully(dex_file_location_data_, dex_file_location_size_)) {
693 PLOG(ERROR) << "Failed to write dex file location data to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700694 return false;
695 }
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800696 if (!out.WriteFully(&dex_file_location_checksum_, sizeof(dex_file_location_checksum_))) {
697 PLOG(ERROR) << "Failed to write dex file location checksum to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700698 return false;
699 }
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800700 if (!out.WriteFully(&dex_file_offset_, sizeof(dex_file_offset_))) {
701 PLOG(ERROR) << "Failed to write dex file offset to " << out.GetLocation();
Brian Carlstrom89521892011-12-07 22:05:07 -0800702 return false;
703 }
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800704 if (!out.WriteFully(&methods_offsets_[0],
705 sizeof(methods_offsets_[0]) * methods_offsets_.size())) {
706 PLOG(ERROR) << "Failed to write methods offsets to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700707 return false;
708 }
709 return true;
710}
711
Brian Carlstrom265091e2013-01-30 14:08:26 -0800712OatWriter::OatClass::OatClass(size_t offset, mirror::Class::Status status, uint32_t methods_count) {
713 offset_ = offset;
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800714 status_ = status;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700715 method_offsets_.resize(methods_count);
716}
717
Brian Carlstrom265091e2013-01-30 14:08:26 -0800718size_t OatWriter::OatClass::GetOatMethodOffsetsOffsetFromOatHeader(
719 size_t class_def_method_index_) const {
720 return offset_ + GetOatMethodOffsetsOffsetFromOatClass(class_def_method_index_);
721}
722
723size_t OatWriter::OatClass::GetOatMethodOffsetsOffsetFromOatClass(
724 size_t class_def_method_index_) const {
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800725 return sizeof(status_)
Brian Carlstrom265091e2013-01-30 14:08:26 -0800726 + (sizeof(method_offsets_[0]) * class_def_method_index_);
727}
728
729size_t OatWriter::OatClass::SizeOf() const {
730 return GetOatMethodOffsetsOffsetFromOatClass(method_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700731}
732
Brian Carlstrom389efb02012-01-11 12:06:26 -0800733void OatWriter::OatClass::UpdateChecksum(OatHeader& oat_header) const {
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800734 oat_header.UpdateChecksum(&status_, sizeof(status_));
735 oat_header.UpdateChecksum(&method_offsets_[0],
736 sizeof(method_offsets_[0]) * method_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700737}
738
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800739bool OatWriter::OatClass::Write(OutputStream& out) const {
Brian Carlstrom265091e2013-01-30 14:08:26 -0800740 DCHECK_OFFSET_();
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800741 if (!out.WriteFully(&status_, sizeof(status_))) {
742 PLOG(ERROR) << "Failed to write class status to " << out.GetLocation();
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800743 return false;
744 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800745 DCHECK_EQ(static_cast<off_t>(GetOatMethodOffsetsOffsetFromOatHeader(0)),
746 out.Seek(0, kSeekCurrent));
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800747 if (!out.WriteFully(&method_offsets_[0],
748 sizeof(method_offsets_[0]) * method_offsets_.size())) {
749 PLOG(ERROR) << "Failed to write method offsets to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700750 return false;
751 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800752 DCHECK_EQ(static_cast<off_t>(GetOatMethodOffsetsOffsetFromOatHeader(method_offsets_.size())),
753 out.Seek(0, kSeekCurrent));
Brian Carlstrome24fa612011-09-29 00:53:55 -0700754 return true;
755}
756
Brian Carlstrome24fa612011-09-29 00:53:55 -0700757} // namespace art