blob: e299a2757b024d6d73781a0292d834f57b797474 [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 Rogers2dd0e2c2013-01-24 12:42:14 -080024#include "mirror/abstract_method-inl.h"
25#include "mirror/array.h"
26#include "mirror/class_loader.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070027#include "os.h"
Brian Carlstromcd60ac72013-01-20 17:09:51 -080028#include "output_stream.h"
Elliott Hughesa0e18062012-04-13 15:59:59 -070029#include "safe_map.h"
Ian Rogers00f7d0e2012-07-19 15:28:27 -070030#include "scoped_thread_state_change.h"
Mathieu Chartier7469ebf2012-09-24 16:28:36 -070031#include "gc/space.h"
jeffhaoec014232012-09-05 10:42:25 -070032#include "verifier/method_verifier.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070033
34namespace art {
35
Brian Carlstromcd60ac72013-01-20 17:09:51 -080036bool OatWriter::Create(OutputStream& output_stream,
jeffhao10037c82012-01-23 15:06:23 -080037 const std::vector<const DexFile*>& dex_files,
Brian Carlstrom28db0122012-10-18 16:20:41 -070038 uint32_t image_file_location_oat_checksum,
39 uint32_t image_file_location_oat_begin,
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070040 const std::string& image_file_location,
Ian Rogers1212a022013-03-04 10:48:41 -080041 const CompilerDriver& driver) {
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070042 OatWriter oat_writer(dex_files,
Brian Carlstrom28db0122012-10-18 16:20:41 -070043 image_file_location_oat_checksum,
44 image_file_location_oat_begin,
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070045 image_file_location,
Ian Rogers1212a022013-03-04 10:48:41 -080046 &driver);
Brian Carlstromcd60ac72013-01-20 17:09:51 -080047 return oat_writer.Write(output_stream);
Brian Carlstrome24fa612011-09-29 00:53:55 -070048}
49
Brian Carlstrom3320cf42011-10-04 14:58:28 -070050OatWriter::OatWriter(const std::vector<const DexFile*>& dex_files,
Brian Carlstrom28db0122012-10-18 16:20:41 -070051 uint32_t image_file_location_oat_checksum,
52 uint32_t image_file_location_oat_begin,
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070053 const std::string& image_file_location,
Ian Rogers1212a022013-03-04 10:48:41 -080054 const CompilerDriver* compiler)
55 : compiler_driver_(compiler) {
Brian Carlstrom28db0122012-10-18 16:20:41 -070056 image_file_location_oat_checksum_ = image_file_location_oat_checksum;
57 image_file_location_oat_begin_ = image_file_location_oat_begin;
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070058 image_file_location_ = image_file_location;
Brian Carlstrome24fa612011-09-29 00:53:55 -070059 dex_files_ = &dex_files;
Ian Rogers0571d352011-11-03 19:51:38 -070060 oat_header_ = NULL;
61 executable_offset_padding_length_ = 0;
Brian Carlstrome24fa612011-09-29 00:53:55 -070062
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070063 size_t offset = InitOatHeader();
Brian Carlstrome24fa612011-09-29 00:53:55 -070064 offset = InitOatDexFiles(offset);
Brian Carlstrom89521892011-12-07 22:05:07 -080065 offset = InitDexFiles(offset);
Brian Carlstrom389efb02012-01-11 12:06:26 -080066 offset = InitOatClasses(offset);
Brian Carlstrome24fa612011-09-29 00:53:55 -070067 offset = InitOatCode(offset);
68 offset = InitOatCodeDexFiles(offset);
69
70 CHECK_EQ(dex_files_->size(), oat_dex_files_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -070071}
72
Ian Rogers0571d352011-11-03 19:51:38 -070073OatWriter::~OatWriter() {
74 delete oat_header_;
75 STLDeleteElements(&oat_dex_files_);
Brian Carlstrom389efb02012-01-11 12:06:26 -080076 STLDeleteElements(&oat_classes_);
Ian Rogers0571d352011-11-03 19:51:38 -070077}
78
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070079size_t OatWriter::InitOatHeader() {
Brian Carlstrome24fa612011-09-29 00:53:55 -070080 // create the OatHeader
Ian Rogers1212a022013-03-04 10:48:41 -080081 oat_header_ = new OatHeader(compiler_driver_->GetInstructionSet(),
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070082 dex_files_,
Brian Carlstrom28db0122012-10-18 16:20:41 -070083 image_file_location_oat_checksum_,
84 image_file_location_oat_begin_,
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070085 image_file_location_);
Brian Carlstrome24fa612011-09-29 00:53:55 -070086 size_t offset = sizeof(*oat_header_);
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070087 offset += image_file_location_.size();
Brian Carlstrome24fa612011-09-29 00:53:55 -070088 return offset;
89}
90
91size_t OatWriter::InitOatDexFiles(size_t offset) {
92 // create the OatDexFiles
93 for (size_t i = 0; i != dex_files_->size(); ++i) {
94 const DexFile* dex_file = (*dex_files_)[i];
95 CHECK(dex_file != NULL);
Brian Carlstrom265091e2013-01-30 14:08:26 -080096 OatDexFile* oat_dex_file = new OatDexFile(offset, *dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -070097 oat_dex_files_.push_back(oat_dex_file);
98 offset += oat_dex_file->SizeOf();
99 }
100 return offset;
101}
102
Brian Carlstrom89521892011-12-07 22:05:07 -0800103size_t OatWriter::InitDexFiles(size_t offset) {
104 // calculate the offsets within OatDexFiles to the DexFiles
105 for (size_t i = 0; i != dex_files_->size(); ++i) {
106 // dex files are required to be 4 byte aligned
107 offset = RoundUp(offset, 4);
108
109 // set offset in OatDexFile to DexFile
110 oat_dex_files_[i]->dex_file_offset_ = offset;
111
112 const DexFile* dex_file = (*dex_files_)[i];
113 offset += dex_file->GetHeader().file_size_;
114 }
115 return offset;
116}
117
Brian Carlstrom389efb02012-01-11 12:06:26 -0800118size_t OatWriter::InitOatClasses(size_t offset) {
119 // create the OatClasses
120 // calculate the offsets within OatDexFiles to OatClasses
Brian Carlstrome24fa612011-09-29 00:53:55 -0700121 for (size_t i = 0; i != dex_files_->size(); ++i) {
122 const DexFile* dex_file = (*dex_files_)[i];
123 for (size_t class_def_index = 0;
124 class_def_index < dex_file->NumClassDefs();
Ian Rogersc20a83e2012-01-18 18:15:32 -0800125 class_def_index++) {
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800126 oat_dex_files_[i]->methods_offsets_[class_def_index] = offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700127 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
128 const byte* class_data = dex_file->GetClassData(class_def);
Ian Rogers0571d352011-11-03 19:51:38 -0700129 uint32_t num_methods = 0;
130 if (class_data != NULL) { // ie not an empty class, such as a marker interface
131 ClassDataItemIterator it(*dex_file, class_data);
132 size_t num_direct_methods = it.NumDirectMethods();
133 size_t num_virtual_methods = it.NumVirtualMethods();
134 num_methods = num_direct_methods + num_virtual_methods;
135 }
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800136
Ian Rogers1212a022013-03-04 10:48:41 -0800137 CompilerDriver::ClassReference class_ref = CompilerDriver::ClassReference(dex_file, class_def_index);
138 CompiledClass* compiled_class = compiler_driver_->GetCompiledClass(class_ref);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800139 mirror::Class::Status status;
jeffhaoec014232012-09-05 10:42:25 -0700140 if (compiled_class != NULL) {
141 status = compiled_class->GetStatus();
142 } else if (verifier::MethodVerifier::IsClassRejected(class_ref)) {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800143 status = mirror::Class::kStatusError;
jeffhaoec014232012-09-05 10:42:25 -0700144 } else {
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800145 status = mirror::Class::kStatusNotReady;
jeffhaoec014232012-09-05 10:42:25 -0700146 }
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800147
Brian Carlstrom265091e2013-01-30 14:08:26 -0800148 OatClass* oat_class = new OatClass(offset, status, num_methods);
Brian Carlstrom389efb02012-01-11 12:06:26 -0800149 oat_classes_.push_back(oat_class);
150 offset += oat_class->SizeOf();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700151 }
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800152 oat_dex_files_[i]->UpdateChecksum(*oat_header_);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700153 }
154 return offset;
155}
156
157size_t OatWriter::InitOatCode(size_t offset) {
158 // calculate the offsets within OatHeader to executable code
159 size_t old_offset = offset;
160 // required to be on a new page boundary
161 offset = RoundUp(offset, kPageSize);
162 oat_header_->SetExecutableOffset(offset);
163 executable_offset_padding_length_ = offset - old_offset;
164 return offset;
165}
166
167size_t OatWriter::InitOatCodeDexFiles(size_t offset) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700168 size_t oat_class_index = 0;
169 for (size_t i = 0; i != dex_files_->size(); ++i) {
170 const DexFile* dex_file = (*dex_files_)[i];
171 CHECK(dex_file != NULL);
172 offset = InitOatCodeDexFile(offset, oat_class_index, *dex_file);
173 }
174 return offset;
175}
176
177size_t OatWriter::InitOatCodeDexFile(size_t offset,
178 size_t& oat_class_index,
179 const DexFile& dex_file) {
Elliott Hughesba8eee12012-01-24 20:25:24 -0800180 for (size_t class_def_index = 0;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700181 class_def_index < dex_file.NumClassDefs();
182 class_def_index++, oat_class_index++) {
183 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Ian Rogersc20a83e2012-01-18 18:15:32 -0800184 offset = InitOatCodeClassDef(offset, oat_class_index, class_def_index, dex_file, class_def);
Brian Carlstrom389efb02012-01-11 12:06:26 -0800185 oat_classes_[oat_class_index]->UpdateChecksum(*oat_header_);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700186 }
187 return offset;
188}
189
190size_t OatWriter::InitOatCodeClassDef(size_t offset,
Ian Rogersc20a83e2012-01-18 18:15:32 -0800191 size_t oat_class_index, size_t class_def_index,
Brian Carlstrome24fa612011-09-29 00:53:55 -0700192 const DexFile& dex_file,
193 const DexFile::ClassDef& class_def) {
194 const byte* class_data = dex_file.GetClassData(class_def);
Ian Rogers0571d352011-11-03 19:51:38 -0700195 if (class_data == NULL) {
196 // empty class, such as a marker interface
Ian Rogers387b6992011-10-31 17:52:37 -0700197 return offset;
198 }
Ian Rogers0571d352011-11-03 19:51:38 -0700199 ClassDataItemIterator it(dex_file, class_data);
Brian Carlstrom389efb02012-01-11 12:06:26 -0800200 CHECK_EQ(oat_classes_[oat_class_index]->method_offsets_.size(),
Ian Rogers0571d352011-11-03 19:51:38 -0700201 it.NumDirectMethods() + it.NumVirtualMethods());
202 // Skip fields
203 while (it.HasNextStaticField()) {
204 it.Next();
205 }
206 while (it.HasNextInstanceField()) {
207 it.Next();
208 }
209 // Process methods
Brian Carlstrome24fa612011-09-29 00:53:55 -0700210 size_t class_def_method_index = 0;
Ian Rogers0571d352011-11-03 19:51:38 -0700211 while (it.HasNextDirectMethod()) {
Ian Rogersc20a83e2012-01-18 18:15:32 -0800212 bool is_native = (it.GetMemberAccessFlags() & kAccNative) != 0;
Ian Rogers08f753d2012-08-24 14:35:25 -0700213 offset = InitOatCodeMethod(offset, oat_class_index, class_def_index, class_def_method_index,
214 is_native, it.GetMethodInvokeType(class_def), it.GetMemberIndex(),
215 &dex_file);
Ian Rogers0571d352011-11-03 19:51:38 -0700216 class_def_method_index++;
217 it.Next();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700218 }
Ian Rogers0571d352011-11-03 19:51:38 -0700219 while (it.HasNextVirtualMethod()) {
Ian Rogersc20a83e2012-01-18 18:15:32 -0800220 bool is_native = (it.GetMemberAccessFlags() & kAccNative) != 0;
Ian Rogers08f753d2012-08-24 14:35:25 -0700221 offset = InitOatCodeMethod(offset, oat_class_index, class_def_index, class_def_method_index,
222 is_native, it.GetMethodInvokeType(class_def), it.GetMemberIndex(),
223 &dex_file);
Ian Rogers0571d352011-11-03 19:51:38 -0700224 class_def_method_index++;
225 it.Next();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700226 }
Ian Rogers0571d352011-11-03 19:51:38 -0700227 DCHECK(!it.HasNext());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700228 return offset;
229}
230
Elliott Hughes1bac54f2012-03-16 12:48:31 -0700231size_t OatWriter::InitOatCodeMethod(size_t offset, size_t oat_class_index,
232 size_t __attribute__((unused)) class_def_index,
233 size_t class_def_method_index,
234 bool __attribute__((unused)) is_native,
Brian Carlstrom265091e2013-01-30 14:08:26 -0800235 InvokeType invoke_type,
Elliott Hughes1bac54f2012-03-16 12:48:31 -0700236 uint32_t method_idx, const DexFile* dex_file) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700237 // derived from CompiledMethod if available
238 uint32_t code_offset = 0;
239 uint32_t frame_size_in_bytes = kStackAlignment;
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700240 uint32_t core_spill_mask = 0;
241 uint32_t fp_spill_mask = 0;
242 uint32_t mapping_table_offset = 0;
243 uint32_t vmap_table_offset = 0;
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800244 uint32_t gc_map_offset = 0;
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700245 // derived from CompiledInvokeStub if available
246 uint32_t invoke_stub_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 Rogers0571d352011-11-03 19:51:38 -0700348 const char* shorty = dex_file->GetMethodShorty(dex_file->GetMethodId(method_idx));
Brian Carlstrom265091e2013-01-30 14:08:26 -0800349 CompiledInvokeStub* compiled_invoke_stub = compiler_driver_->FindInvokeStub(invoke_type == kStatic,
350 shorty);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700351 if (compiled_invoke_stub != NULL) {
Brian Carlstrom265091e2013-01-30 14:08:26 -0800352#if defined(ART_USE_PORTABLE_COMPILER)
353 compiled_invoke_stub->AddOatdataOffsetToCompliledCodeOffset(
354 oat_method_offsets_offset + OFFSETOF_MEMBER(OatMethodOffsets, invoke_stub_offset_));
355#else
356 const std::vector<uint8_t>& invoke_stub = compiled_invoke_stub->GetCode();
Ian Rogers1212a022013-03-04 10:48:41 -0800357 offset = CompiledMethod::AlignCode(offset, compiler_driver_->GetInstructionSet());
Logan Chien971bf3f2012-05-01 15:47:55 +0800358 DCHECK_ALIGNED(offset, kArmAlignment);
Logan Chien971bf3f2012-05-01 15:47:55 +0800359 uint32_t invoke_stub_size = invoke_stub.size() * sizeof(invoke_stub[0]);
360 CHECK_NE(invoke_stub_size, 0U);
361 uint32_t thumb_offset = compiled_invoke_stub->CodeDelta();
362 invoke_stub_offset = offset + sizeof(invoke_stub_size) + thumb_offset;
Logan Chienccb7bf12012-03-28 12:52:32 +0800363
Logan Chien971bf3f2012-05-01 15:47:55 +0800364 // Deduplicate invoke stubs
365 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator stub_iter = code_offsets_.find(&invoke_stub);
366 if (stub_iter != code_offsets_.end()) {
367 invoke_stub_offset = stub_iter->second;
368 } else {
369 code_offsets_.Put(&invoke_stub, invoke_stub_offset);
370 offset += sizeof(invoke_stub_size); // invoke stub size is prepended before code
371 offset += invoke_stub_size;
372 oat_header_->UpdateChecksum(&invoke_stub[0], invoke_stub_size);
jeffhao55d78212011-11-02 11:41:50 -0700373 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800374#endif
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700375 }
376
Ian Rogersc928de92013-02-27 14:30:44 -0800377#if defined(ART_USE_PORTABLE_COMPILER)
Brian Carlstrom265091e2013-01-30 14:08:26 -0800378 if (invoke_type != kStatic) {
379 CompiledInvokeStub* compiled_proxy_stub = compiler_driver_->FindProxyStub(shorty);
Logan Chien7a2a23a2012-06-06 11:01:00 +0800380 if (compiled_proxy_stub != NULL) {
Brian Carlstrom265091e2013-01-30 14:08:26 -0800381 compiled_proxy_stub->AddOatdataOffsetToCompliledCodeOffset(
382 oat_method_offsets_offset + OFFSETOF_MEMBER(OatMethodOffsets, proxy_stub_offset_));
Logan Chien7a2a23a2012-06-06 11:01:00 +0800383 }
384 }
385#endif
386
Brian Carlstrom265091e2013-01-30 14:08:26 -0800387 oat_class->method_offsets_[class_def_method_index]
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700388 = OatMethodOffsets(code_offset,
389 frame_size_in_bytes,
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700390 core_spill_mask,
391 fp_spill_mask,
392 mapping_table_offset,
393 vmap_table_offset,
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800394 gc_map_offset,
Logan Chienccb7bf12012-03-28 12:52:32 +0800395 invoke_stub_offset
Ian Rogersc928de92013-02-27 14:30:44 -0800396#if defined(ART_USE_PORTABLE_COMPILER)
Logan Chien971bf3f2012-05-01 15:47:55 +0800397 , proxy_stub_offset
Logan Chienccb7bf12012-03-28 12:52:32 +0800398#endif
399 );
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700400
Ian Rogers1212a022013-03-04 10:48:41 -0800401 if (compiler_driver_->IsImage()) {
Ian Rogers0571d352011-11-03 19:51:38 -0700402 ClassLinker* linker = Runtime::Current()->GetClassLinker();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800403 mirror::DexCache* dex_cache = linker->FindDexCache(*dex_file);
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700404 // Unchecked as we hold mutator_lock_ on entry.
405 ScopedObjectAccessUnchecked soa(Thread::Current());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800406 mirror::AbstractMethod* method = linker->ResolveMethod(*dex_file, method_idx, dex_cache,
Brian Carlstrom265091e2013-01-30 14:08:26 -0800407 NULL, NULL, invoke_type);
Ian Rogers0571d352011-11-03 19:51:38 -0700408 CHECK(method != NULL);
409 method->SetFrameSizeInBytes(frame_size_in_bytes);
410 method->SetCoreSpillMask(core_spill_mask);
411 method->SetFpSpillMask(fp_spill_mask);
412 method->SetOatMappingTableOffset(mapping_table_offset);
Ian Rogers19846512012-02-24 11:42:47 -0800413 // Don't overwrite static method trampoline
414 if (!method->IsStatic() || method->IsConstructor() ||
415 method->GetDeclaringClass()->IsInitialized()) {
416 method->SetOatCodeOffset(code_offset);
417 } else {
418 method->SetCode(Runtime::Current()->GetResolutionStubArray(Runtime::kStaticMethod)->GetData());
419 }
Ian Rogers0571d352011-11-03 19:51:38 -0700420 method->SetOatVmapTableOffset(vmap_table_offset);
Ian Rogers0c7abda2012-09-19 13:33:42 -0700421 method->SetOatNativeGcMapOffset(gc_map_offset);
Ian Rogers0571d352011-11-03 19:51:38 -0700422 method->SetOatInvokeStubOffset(invoke_stub_offset);
423 }
Logan Chien8b977d32012-02-21 19:14:55 +0800424
Brian Carlstrome24fa612011-09-29 00:53:55 -0700425 return offset;
426}
427
Brian Carlstrom265091e2013-01-30 14:08:26 -0800428#define DCHECK_OFFSET() \
429 DCHECK_EQ(static_cast<off_t>(offset), out.Seek(0, kSeekCurrent))
430
431#define DCHECK_OFFSET_() \
432 DCHECK_EQ(static_cast<off_t>(offset_), out.Seek(0, kSeekCurrent))
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700433
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800434bool OatWriter::Write(OutputStream& out) {
435 if (!out.WriteFully(oat_header_, sizeof(*oat_header_))) {
436 PLOG(ERROR) << "Failed to write oat header to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700437 return false;
438 }
439
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800440 if (!out.WriteFully(image_file_location_.data(), image_file_location_.size())) {
441 PLOG(ERROR) << "Failed to write oat header image file location to " << out.GetLocation();
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700442 return false;
443 }
444
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800445 if (!WriteTables(out)) {
446 LOG(ERROR) << "Failed to write oat tables to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700447 return false;
448 }
449
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800450 size_t code_offset = WriteCode(out);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700451 if (code_offset == 0) {
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800452 LOG(ERROR) << "Failed to write oat code to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700453 return false;
454 }
455
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800456 code_offset = WriteCodeDexFiles(out, code_offset);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700457 if (code_offset == 0) {
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800458 LOG(ERROR) << "Failed to write oat code for dex files 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 -0800465bool OatWriter::WriteTables(OutputStream& out) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700466 for (size_t i = 0; i != oat_dex_files_.size(); ++i) {
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800467 if (!oat_dex_files_[i]->Write(out)) {
468 PLOG(ERROR) << "Failed to write oat dex information to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700469 return false;
470 }
471 }
Brian Carlstrom89521892011-12-07 22:05:07 -0800472 for (size_t i = 0; i != oat_dex_files_.size(); ++i) {
473 uint32_t expected_offset = oat_dex_files_[i]->dex_file_offset_;
Brian Carlstrom49a0f152013-01-22 17:17:36 -0800474 off_t actual_offset = out.Seek(expected_offset, kSeekSet);
Brian Carlstrom89521892011-12-07 22:05:07 -0800475 if (static_cast<uint32_t>(actual_offset) != expected_offset) {
476 const DexFile* dex_file = (*dex_files_)[i];
477 PLOG(ERROR) << "Failed to seek to dex file section. Actual: " << actual_offset
478 << " Expected: " << expected_offset << " File: " << dex_file->GetLocation();
479 return false;
480 }
481 const DexFile* dex_file = (*dex_files_)[i];
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800482 if (!out.WriteFully(&dex_file->GetHeader(), dex_file->GetHeader().file_size_)) {
483 PLOG(ERROR) << "Failed to write dex file " << dex_file->GetLocation() << " to " << out.GetLocation();
Brian Carlstrom89521892011-12-07 22:05:07 -0800484 return false;
485 }
486 }
Brian Carlstrom389efb02012-01-11 12:06:26 -0800487 for (size_t i = 0; i != oat_classes_.size(); ++i) {
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800488 if (!oat_classes_[i]->Write(out)) {
489 PLOG(ERROR) << "Failed to write oat methods information to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700490 return false;
491 }
492 }
493 return true;
494}
495
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800496size_t OatWriter::WriteCode(OutputStream& out) {
Brian Carlstrom265091e2013-01-30 14:08:26 -0800497 uint32_t offset = oat_header_->GetExecutableOffset();
Brian Carlstrom49a0f152013-01-22 17:17:36 -0800498 off_t new_offset = out.Seek(executable_offset_padding_length_, kSeekCurrent);
Brian Carlstrom265091e2013-01-30 14:08:26 -0800499 if (static_cast<uint32_t>(new_offset) != offset) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700500 PLOG(ERROR) << "Failed to seek to oat code section. Actual: " << new_offset
Brian Carlstrom265091e2013-01-30 14:08:26 -0800501 << " Expected: " << offset << " File: " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700502 return 0;
503 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800504 DCHECK_OFFSET();
505 return offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700506}
507
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800508size_t OatWriter::WriteCodeDexFiles(OutputStream& out, size_t code_offset) {
Ian Rogers0571d352011-11-03 19:51:38 -0700509 size_t oat_class_index = 0;
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800510 for (size_t i = 0; i != oat_dex_files_.size(); ++i) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700511 const DexFile* dex_file = (*dex_files_)[i];
512 CHECK(dex_file != NULL);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800513 code_offset = WriteCodeDexFile(out, code_offset, oat_class_index, *dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700514 if (code_offset == 0) {
515 return 0;
516 }
517 }
518 return code_offset;
519}
520
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800521size_t OatWriter::WriteCodeDexFile(OutputStream& out, size_t code_offset, size_t& oat_class_index,
Ian Rogers0571d352011-11-03 19:51:38 -0700522 const DexFile& dex_file) {
523 for (size_t class_def_index = 0; class_def_index < dex_file.NumClassDefs();
524 class_def_index++, oat_class_index++) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700525 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800526 code_offset = WriteCodeClassDef(out, code_offset, oat_class_index, dex_file, class_def);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700527 if (code_offset == 0) {
528 return 0;
529 }
530 }
531 return code_offset;
532}
533
Ian Rogers0571d352011-11-03 19:51:38 -0700534void OatWriter::ReportWriteFailure(const char* what, uint32_t method_idx,
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800535 const DexFile& dex_file, OutputStream& out) const {
Ian Rogers0571d352011-11-03 19:51:38 -0700536 PLOG(ERROR) << "Failed to write " << what << " for " << PrettyMethod(method_idx, dex_file)
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800537 << " to " << out.GetLocation();
Elliott Hughes234da572011-11-03 22:13:06 -0700538}
539
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800540size_t OatWriter::WriteCodeClassDef(OutputStream& out,
Ian Rogers0571d352011-11-03 19:51:38 -0700541 size_t code_offset, size_t oat_class_index,
Brian Carlstrome24fa612011-09-29 00:53:55 -0700542 const DexFile& dex_file,
543 const DexFile::ClassDef& class_def) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700544 const byte* class_data = dex_file.GetClassData(class_def);
Ian Rogers0571d352011-11-03 19:51:38 -0700545 if (class_data == NULL) {
546 // ie. an empty class such as a marker interface
Ian Rogers387b6992011-10-31 17:52:37 -0700547 return code_offset;
548 }
Ian Rogers0571d352011-11-03 19:51:38 -0700549 ClassDataItemIterator it(dex_file, class_data);
550 // Skip fields
551 while (it.HasNextStaticField()) {
552 it.Next();
553 }
554 while (it.HasNextInstanceField()) {
555 it.Next();
556 }
557 // Process methods
558 size_t class_def_method_index = 0;
559 while (it.HasNextDirectMethod()) {
560 bool is_static = (it.GetMemberAccessFlags() & kAccStatic) != 0;
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800561 code_offset = WriteCodeMethod(out, code_offset, oat_class_index, class_def_method_index,
Ian Rogers0571d352011-11-03 19:51:38 -0700562 is_static, it.GetMemberIndex(), dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700563 if (code_offset == 0) {
564 return 0;
565 }
Ian Rogers0571d352011-11-03 19:51:38 -0700566 class_def_method_index++;
567 it.Next();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700568 }
Ian Rogers0571d352011-11-03 19:51:38 -0700569 while (it.HasNextVirtualMethod()) {
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800570 code_offset = WriteCodeMethod(out, code_offset, oat_class_index, class_def_method_index,
Ian Rogers0571d352011-11-03 19:51:38 -0700571 false, it.GetMemberIndex(), dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700572 if (code_offset == 0) {
573 return 0;
574 }
Ian Rogers0571d352011-11-03 19:51:38 -0700575 class_def_method_index++;
576 it.Next();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700577 }
578 return code_offset;
579}
580
Brian Carlstrom265091e2013-01-30 14:08:26 -0800581size_t OatWriter::WriteCodeMethod(OutputStream& out, size_t offset, size_t oat_class_index,
Ian Rogers0571d352011-11-03 19:51:38 -0700582 size_t class_def_method_index, bool is_static,
583 uint32_t method_idx, const DexFile& dex_file) {
584 const CompiledMethod* compiled_method =
Ian Rogers1212a022013-03-04 10:48:41 -0800585 compiler_driver_->GetCompiledMethod(CompilerDriver::MethodReference(&dex_file, method_idx));
Ian Rogers0571d352011-11-03 19:51:38 -0700586
Ian Rogers0571d352011-11-03 19:51:38 -0700587 OatMethodOffsets method_offsets =
Brian Carlstrom389efb02012-01-11 12:06:26 -0800588 oat_classes_[oat_class_index]->method_offsets_[class_def_method_index];
Ian Rogers0571d352011-11-03 19:51:38 -0700589
590
591 if (compiled_method != NULL) { // ie. not an abstract method
Brian Carlstrom265091e2013-01-30 14:08:26 -0800592#if !defined(ART_USE_PORTABLE_COMPILER)
593 uint32_t aligned_offset = compiled_method->AlignCode(offset);
594 uint32_t aligned_code_delta = aligned_offset - offset;
Logan Chien971bf3f2012-05-01 15:47:55 +0800595 if (aligned_code_delta != 0) {
Brian Carlstrom49a0f152013-01-22 17:17:36 -0800596 off_t new_offset = out.Seek(aligned_code_delta, kSeekCurrent);
Brian Carlstrom265091e2013-01-30 14:08:26 -0800597 if (static_cast<uint32_t>(new_offset) != aligned_offset) {
Logan Chien971bf3f2012-05-01 15:47:55 +0800598 PLOG(ERROR) << "Failed to seek to align oat code. Actual: " << new_offset
Brian Carlstrom265091e2013-01-30 14:08:26 -0800599 << " Expected: " << aligned_offset << " File: " << out.GetLocation();
Logan Chien971bf3f2012-05-01 15:47:55 +0800600 return 0;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700601 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800602 offset += aligned_code_delta;
603 DCHECK_OFFSET();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700604 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800605 DCHECK_ALIGNED(offset, kArmAlignment);
Logan Chien971bf3f2012-05-01 15:47:55 +0800606 const std::vector<uint8_t>& code = compiled_method->GetCode();
607 uint32_t code_size = code.size() * sizeof(code[0]);
608 CHECK_NE(code_size, 0U);
609
610 // Deduplicate code arrays
Brian Carlstrom265091e2013-01-30 14:08:26 -0800611 size_t code_offset = offset + sizeof(code_size) + compiled_method->CodeDelta();
Logan Chien971bf3f2012-05-01 15:47:55 +0800612 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator code_iter = code_offsets_.find(&code);
Brian Carlstrom265091e2013-01-30 14:08:26 -0800613 if (code_iter != code_offsets_.end() && code_offset != method_offsets.code_offset_) {
614 DCHECK(code_iter->second == method_offsets.code_offset_)
615 << PrettyMethod(method_idx, dex_file);
Logan Chien971bf3f2012-05-01 15:47:55 +0800616 } else {
Brian Carlstrom265091e2013-01-30 14:08:26 -0800617 DCHECK(code_offset == method_offsets.code_offset_) << PrettyMethod(method_idx, dex_file);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800618 if (!out.WriteFully(&code_size, sizeof(code_size))) {
619 ReportWriteFailure("method code size", method_idx, dex_file, out);
Logan Chien971bf3f2012-05-01 15:47:55 +0800620 return 0;
621 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800622 offset += sizeof(code_size);
623 DCHECK_OFFSET();
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800624 if (!out.WriteFully(&code[0], code_size)) {
625 ReportWriteFailure("method code", 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 += code_size;
Logan Chien971bf3f2012-05-01 15:47:55 +0800629 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800630 DCHECK_OFFSET();
631#endif
Logan Chien971bf3f2012-05-01 15:47:55 +0800632
633 const std::vector<uint32_t>& mapping_table = compiled_method->GetMappingTable();
634 size_t mapping_table_size = mapping_table.size() * sizeof(mapping_table[0]);
635
636 // Deduplicate mapping tables
637 SafeMap<const std::vector<uint32_t>*, uint32_t>::iterator mapping_iter =
638 mapping_table_offsets_.find(&mapping_table);
639 if (mapping_iter != mapping_table_offsets_.end() &&
Brian Carlstrom265091e2013-01-30 14:08:26 -0800640 offset != method_offsets.mapping_table_offset_) {
Logan Chien971bf3f2012-05-01 15:47:55 +0800641 DCHECK((mapping_table_size == 0 && method_offsets.mapping_table_offset_ == 0)
642 || mapping_iter->second == method_offsets.mapping_table_offset_)
643 << PrettyMethod(method_idx, dex_file);
644 } else {
645 DCHECK((mapping_table_size == 0 && method_offsets.mapping_table_offset_ == 0)
Brian Carlstrom265091e2013-01-30 14:08:26 -0800646 || offset == method_offsets.mapping_table_offset_)
Logan Chien971bf3f2012-05-01 15:47:55 +0800647 << PrettyMethod(method_idx, dex_file);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800648 if (!out.WriteFully(&mapping_table[0], mapping_table_size)) {
649 ReportWriteFailure("mapping table", method_idx, dex_file, out);
Logan Chien971bf3f2012-05-01 15:47:55 +0800650 return 0;
651 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800652 offset += mapping_table_size;
Logan Chien971bf3f2012-05-01 15:47:55 +0800653 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800654 DCHECK_OFFSET();
Logan Chien971bf3f2012-05-01 15:47:55 +0800655
656 const std::vector<uint16_t>& vmap_table = compiled_method->GetVmapTable();
657 size_t vmap_table_size = vmap_table.size() * sizeof(vmap_table[0]);
658
659 // Deduplicate vmap tables
660 SafeMap<const std::vector<uint16_t>*, uint32_t>::iterator vmap_iter =
661 vmap_table_offsets_.find(&vmap_table);
662 if (vmap_iter != vmap_table_offsets_.end() &&
Brian Carlstrom265091e2013-01-30 14:08:26 -0800663 offset != method_offsets.vmap_table_offset_) {
Logan Chien971bf3f2012-05-01 15:47:55 +0800664 DCHECK((vmap_table_size == 0 && method_offsets.vmap_table_offset_ == 0)
665 || vmap_iter->second == method_offsets.vmap_table_offset_)
666 << PrettyMethod(method_idx, dex_file);
667 } else {
668 DCHECK((vmap_table_size == 0 && method_offsets.vmap_table_offset_ == 0)
Brian Carlstrom265091e2013-01-30 14:08:26 -0800669 || offset == method_offsets.vmap_table_offset_)
Logan Chien971bf3f2012-05-01 15:47:55 +0800670 << PrettyMethod(method_idx, dex_file);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800671 if (!out.WriteFully(&vmap_table[0], vmap_table_size)) {
672 ReportWriteFailure("vmap table", method_idx, dex_file, out);
Logan Chien971bf3f2012-05-01 15:47:55 +0800673 return 0;
674 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800675 offset += vmap_table_size;
Logan Chien971bf3f2012-05-01 15:47:55 +0800676 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800677 DCHECK_OFFSET();
Logan Chien971bf3f2012-05-01 15:47:55 +0800678
Ian Rogers0c7abda2012-09-19 13:33:42 -0700679 const std::vector<uint8_t>& gc_map = compiled_method->GetNativeGcMap();
Logan Chien971bf3f2012-05-01 15:47:55 +0800680 size_t gc_map_size = gc_map.size() * sizeof(gc_map[0]);
681
682 // Deduplicate GC maps
683 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator gc_map_iter =
684 gc_map_offsets_.find(&gc_map);
685 if (gc_map_iter != gc_map_offsets_.end() &&
Brian Carlstrom265091e2013-01-30 14:08:26 -0800686 offset != method_offsets.gc_map_offset_) {
Logan Chien971bf3f2012-05-01 15:47:55 +0800687 DCHECK((gc_map_size == 0 && method_offsets.gc_map_offset_ == 0)
688 || gc_map_iter->second == method_offsets.gc_map_offset_)
689 << PrettyMethod(method_idx, dex_file);
690 } else {
691 DCHECK((gc_map_size == 0 && method_offsets.gc_map_offset_ == 0)
Brian Carlstrom265091e2013-01-30 14:08:26 -0800692 || offset == method_offsets.gc_map_offset_)
Logan Chien971bf3f2012-05-01 15:47:55 +0800693 << PrettyMethod(method_idx, dex_file);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800694 if (!out.WriteFully(&gc_map[0], gc_map_size)) {
695 ReportWriteFailure("GC map", method_idx, dex_file, out);
Logan Chien971bf3f2012-05-01 15:47:55 +0800696 return 0;
697 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800698 offset += gc_map_size;
Logan Chien971bf3f2012-05-01 15:47:55 +0800699 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800700 DCHECK_OFFSET();
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700701 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800702
703#if !defined(ART_USE_PORTABLE_COMPILER)
Ian Rogers0571d352011-11-03 19:51:38 -0700704 const char* shorty = dex_file.GetMethodShorty(dex_file.GetMethodId(method_idx));
Ian Rogers1212a022013-03-04 10:48:41 -0800705 const CompiledInvokeStub* compiled_invoke_stub = compiler_driver_->FindInvokeStub(is_static, shorty);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700706 if (compiled_invoke_stub != NULL) {
Brian Carlstrom265091e2013-01-30 14:08:26 -0800707 uint32_t aligned_offset = CompiledMethod::AlignCode(offset,
708 compiler_driver_->GetInstructionSet());
709 uint32_t aligned_code_delta = aligned_offset - offset;
Logan Chien971bf3f2012-05-01 15:47:55 +0800710 if (aligned_code_delta != 0) {
Brian Carlstrom49a0f152013-01-22 17:17:36 -0800711 off_t new_offset = out.Seek(aligned_code_delta, kSeekCurrent);
Brian Carlstrom265091e2013-01-30 14:08:26 -0800712 if (static_cast<uint32_t>(new_offset) != aligned_offset) {
Logan Chien971bf3f2012-05-01 15:47:55 +0800713 PLOG(ERROR) << "Failed to seek to align invoke stub code. Actual: " << new_offset
Brian Carlstrom265091e2013-01-30 14:08:26 -0800714 << " Expected: " << aligned_offset;
Logan Chien971bf3f2012-05-01 15:47:55 +0800715 return 0;
716 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800717 offset += aligned_code_delta;
718 DCHECK_OFFSET();
Logan Chien971bf3f2012-05-01 15:47:55 +0800719 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800720 DCHECK_ALIGNED(offset, kArmAlignment);
Logan Chien971bf3f2012-05-01 15:47:55 +0800721 const std::vector<uint8_t>& invoke_stub = compiled_invoke_stub->GetCode();
722 uint32_t invoke_stub_size = invoke_stub.size() * sizeof(invoke_stub[0]);
723 CHECK_NE(invoke_stub_size, 0U);
724
725 // Deduplicate invoke stubs
Brian Carlstrom265091e2013-01-30 14:08:26 -0800726 size_t invoke_stub_offset = offset + sizeof(invoke_stub_size) + compiled_invoke_stub->CodeDelta();
Logan Chien971bf3f2012-05-01 15:47:55 +0800727 SafeMap<const std::vector<uint8_t>*, uint32_t>::iterator stub_iter =
728 code_offsets_.find(&invoke_stub);
Brian Carlstrom265091e2013-01-30 14:08:26 -0800729 if (stub_iter != code_offsets_.end()
730 && invoke_stub_offset != method_offsets.invoke_stub_offset_) {
731 DCHECK(stub_iter->second == method_offsets.invoke_stub_offset_)
732 << PrettyMethod(method_idx, dex_file);
Logan Chien971bf3f2012-05-01 15:47:55 +0800733 } else {
Brian Carlstrom265091e2013-01-30 14:08:26 -0800734 DCHECK(invoke_stub_offset == method_offsets.invoke_stub_offset_) << PrettyMethod(method_idx, dex_file);
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800735 if (!out.WriteFully(&invoke_stub_size, sizeof(invoke_stub_size))) {
736 ReportWriteFailure("invoke stub code size", method_idx, dex_file, out);
Logan Chien971bf3f2012-05-01 15:47:55 +0800737 return 0;
738 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800739 offset += sizeof(invoke_stub_size);
740 DCHECK_OFFSET();
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800741 if (!out.WriteFully(&invoke_stub[0], invoke_stub_size)) {
742 ReportWriteFailure("invoke stub code", method_idx, dex_file, out);
Logan Chien971bf3f2012-05-01 15:47:55 +0800743 return 0;
744 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800745 offset += invoke_stub_size;
746 DCHECK_OFFSET();
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700747 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700748 }
Logan Chien971bf3f2012-05-01 15:47:55 +0800749#endif
Logan Chien8b977d32012-02-21 19:14:55 +0800750
Brian Carlstrom265091e2013-01-30 14:08:26 -0800751 return offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700752}
753
Brian Carlstrom265091e2013-01-30 14:08:26 -0800754OatWriter::OatDexFile::OatDexFile(size_t offset, const DexFile& dex_file) {
755 offset_ = offset;
Elliott Hughes95572412011-12-13 18:14:20 -0800756 const std::string& location(dex_file.GetLocation());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700757 dex_file_location_size_ = location.size();
758 dex_file_location_data_ = reinterpret_cast<const uint8_t*>(location.data());
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800759 dex_file_location_checksum_ = dex_file.GetLocationChecksum();
Brian Carlstrom89521892011-12-07 22:05:07 -0800760 dex_file_offset_ = 0;
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800761 methods_offsets_.resize(dex_file.NumClassDefs());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700762}
763
764size_t OatWriter::OatDexFile::SizeOf() const {
765 return sizeof(dex_file_location_size_)
766 + dex_file_location_size_
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800767 + sizeof(dex_file_location_checksum_)
Brian Carlstrom89521892011-12-07 22:05:07 -0800768 + sizeof(dex_file_offset_)
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800769 + (sizeof(methods_offsets_[0]) * methods_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700770}
771
772void OatWriter::OatDexFile::UpdateChecksum(OatHeader& oat_header) const {
773 oat_header.UpdateChecksum(&dex_file_location_size_, sizeof(dex_file_location_size_));
774 oat_header.UpdateChecksum(dex_file_location_data_, dex_file_location_size_);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800775 oat_header.UpdateChecksum(&dex_file_location_checksum_, sizeof(dex_file_location_checksum_));
Brian Carlstrom89521892011-12-07 22:05:07 -0800776 oat_header.UpdateChecksum(&dex_file_offset_, sizeof(dex_file_offset_));
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800777 oat_header.UpdateChecksum(&methods_offsets_[0],
778 sizeof(methods_offsets_[0]) * methods_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700779}
780
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800781bool OatWriter::OatDexFile::Write(OutputStream& out) const {
Brian Carlstrom265091e2013-01-30 14:08:26 -0800782 DCHECK_OFFSET_();
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800783 if (!out.WriteFully(&dex_file_location_size_, sizeof(dex_file_location_size_))) {
784 PLOG(ERROR) << "Failed to write dex file location length to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700785 return false;
786 }
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800787 if (!out.WriteFully(dex_file_location_data_, dex_file_location_size_)) {
788 PLOG(ERROR) << "Failed to write dex file location data to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700789 return false;
790 }
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800791 if (!out.WriteFully(&dex_file_location_checksum_, sizeof(dex_file_location_checksum_))) {
792 PLOG(ERROR) << "Failed to write dex file location checksum to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700793 return false;
794 }
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800795 if (!out.WriteFully(&dex_file_offset_, sizeof(dex_file_offset_))) {
796 PLOG(ERROR) << "Failed to write dex file offset to " << out.GetLocation();
Brian Carlstrom89521892011-12-07 22:05:07 -0800797 return false;
798 }
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800799 if (!out.WriteFully(&methods_offsets_[0],
800 sizeof(methods_offsets_[0]) * methods_offsets_.size())) {
801 PLOG(ERROR) << "Failed to write methods offsets to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700802 return false;
803 }
804 return true;
805}
806
Brian Carlstrom265091e2013-01-30 14:08:26 -0800807OatWriter::OatClass::OatClass(size_t offset, mirror::Class::Status status, uint32_t methods_count) {
808 offset_ = offset;
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800809 status_ = status;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700810 method_offsets_.resize(methods_count);
811}
812
Brian Carlstrom265091e2013-01-30 14:08:26 -0800813size_t OatWriter::OatClass::GetOatMethodOffsetsOffsetFromOatHeader(
814 size_t class_def_method_index_) const {
815 return offset_ + GetOatMethodOffsetsOffsetFromOatClass(class_def_method_index_);
816}
817
818size_t OatWriter::OatClass::GetOatMethodOffsetsOffsetFromOatClass(
819 size_t class_def_method_index_) const {
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800820 return sizeof(status_)
Brian Carlstrom265091e2013-01-30 14:08:26 -0800821 + (sizeof(method_offsets_[0]) * class_def_method_index_);
822}
823
824size_t OatWriter::OatClass::SizeOf() const {
825 return GetOatMethodOffsetsOffsetFromOatClass(method_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700826}
827
Brian Carlstrom389efb02012-01-11 12:06:26 -0800828void OatWriter::OatClass::UpdateChecksum(OatHeader& oat_header) const {
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800829 oat_header.UpdateChecksum(&status_, sizeof(status_));
830 oat_header.UpdateChecksum(&method_offsets_[0],
831 sizeof(method_offsets_[0]) * method_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700832}
833
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800834bool OatWriter::OatClass::Write(OutputStream& out) const {
Brian Carlstrom265091e2013-01-30 14:08:26 -0800835 DCHECK_OFFSET_();
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800836 if (!out.WriteFully(&status_, sizeof(status_))) {
837 PLOG(ERROR) << "Failed to write class status to " << out.GetLocation();
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800838 return false;
839 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800840 DCHECK_EQ(static_cast<off_t>(GetOatMethodOffsetsOffsetFromOatHeader(0)),
841 out.Seek(0, kSeekCurrent));
Brian Carlstromcd60ac72013-01-20 17:09:51 -0800842 if (!out.WriteFully(&method_offsets_[0],
843 sizeof(method_offsets_[0]) * method_offsets_.size())) {
844 PLOG(ERROR) << "Failed to write method offsets to " << out.GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700845 return false;
846 }
Brian Carlstrom265091e2013-01-30 14:08:26 -0800847 DCHECK_EQ(static_cast<off_t>(GetOatMethodOffsetsOffsetFromOatHeader(method_offsets_.size())),
848 out.Seek(0, kSeekCurrent));
Brian Carlstrome24fa612011-09-29 00:53:55 -0700849 return true;
850}
851
Brian Carlstrome24fa612011-09-29 00:53:55 -0700852} // namespace art