blob: c69f61965b7bcd9340f08a7651a931768a1a71d6 [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
19#include "class_linker.h"
20#include "class_loader.h"
Logan Chien25ae6402012-03-20 20:19:26 +080021#include "elf_image.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070022#include "file.h"
23#include "os.h"
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070024#include "space.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070025#include "stl_util.h"
26
Logan Chien25ae6402012-03-20 20:19:26 +080027#include <zlib.h>
28
Brian Carlstrome24fa612011-09-29 00:53:55 -070029namespace art {
30
Elliott Hughes234da572011-11-03 22:13:06 -070031bool OatWriter::Create(File* file,
Brian Carlstrom3320cf42011-10-04 14:58:28 -070032 const ClassLoader* class_loader,
jeffhao10037c82012-01-23 15:06:23 -080033 const std::vector<const DexFile*>& dex_files,
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070034 uint32_t image_file_location_checksum,
35 const std::string& image_file_location,
Brian Carlstrom3320cf42011-10-04 14:58:28 -070036 const Compiler& compiler) {
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070037 OatWriter oat_writer(dex_files,
38 image_file_location_checksum,
39 image_file_location,
40 class_loader,
41 compiler);
Elliott Hughes234da572011-11-03 22:13:06 -070042 return oat_writer.Write(file);
Brian Carlstrome24fa612011-09-29 00:53:55 -070043}
44
Brian Carlstrom3320cf42011-10-04 14:58:28 -070045OatWriter::OatWriter(const std::vector<const DexFile*>& dex_files,
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070046 uint32_t image_file_location_checksum,
47 const std::string& image_file_location,
Brian Carlstrom3320cf42011-10-04 14:58:28 -070048 const ClassLoader* class_loader,
49 const Compiler& compiler) {
50 compiler_ = &compiler;
Brian Carlstrome24fa612011-09-29 00:53:55 -070051 class_loader_ = class_loader;
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070052 image_file_location_checksum_ = image_file_location_checksum;
53 image_file_location_ = image_file_location;
Brian Carlstrome24fa612011-09-29 00:53:55 -070054 dex_files_ = &dex_files;
Logan Chien25ae6402012-03-20 20:19:26 +080055 elf_images_ = compiler_->GetElfImages();
Ian Rogers0571d352011-11-03 19:51:38 -070056 oat_header_ = NULL;
57 executable_offset_padding_length_ = 0;
Brian Carlstrome24fa612011-09-29 00:53:55 -070058
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070059 size_t offset = InitOatHeader();
Brian Carlstrome24fa612011-09-29 00:53:55 -070060 offset = InitOatDexFiles(offset);
Brian Carlstrom89521892011-12-07 22:05:07 -080061 offset = InitDexFiles(offset);
Logan Chien25ae6402012-03-20 20:19:26 +080062 offset = InitOatElfImages(offset);
63 offset = InitElfImages(offset);
Brian Carlstrom389efb02012-01-11 12:06:26 -080064 offset = InitOatClasses(offset);
Brian Carlstrome24fa612011-09-29 00:53:55 -070065 offset = InitOatCode(offset);
66 offset = InitOatCodeDexFiles(offset);
67
68 CHECK_EQ(dex_files_->size(), oat_dex_files_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -070069}
70
Ian Rogers0571d352011-11-03 19:51:38 -070071OatWriter::~OatWriter() {
72 delete oat_header_;
73 STLDeleteElements(&oat_dex_files_);
Logan Chien25ae6402012-03-20 20:19:26 +080074 STLDeleteElements(&oat_elf_images_);
Brian Carlstrom389efb02012-01-11 12:06:26 -080075 STLDeleteElements(&oat_classes_);
Ian Rogers0571d352011-11-03 19:51:38 -070076}
77
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070078size_t OatWriter::InitOatHeader() {
Brian Carlstrome24fa612011-09-29 00:53:55 -070079 // create the OatHeader
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070080 oat_header_ = new OatHeader(compiler_->GetInstructionSet(),
81 dex_files_,
Logan Chien25ae6402012-03-20 20:19:26 +080082 elf_images_.size(),
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070083 image_file_location_checksum_,
84 image_file_location_);
Brian Carlstrome24fa612011-09-29 00:53:55 -070085 size_t offset = sizeof(*oat_header_);
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070086 offset += image_file_location_.size();
Brian Carlstrome24fa612011-09-29 00:53:55 -070087 return offset;
88}
89
90size_t OatWriter::InitOatDexFiles(size_t offset) {
91 // create the OatDexFiles
92 for (size_t i = 0; i != dex_files_->size(); ++i) {
93 const DexFile* dex_file = (*dex_files_)[i];
94 CHECK(dex_file != NULL);
95 OatDexFile* oat_dex_file = new OatDexFile(*dex_file);
96 oat_dex_files_.push_back(oat_dex_file);
97 offset += oat_dex_file->SizeOf();
98 }
99 return offset;
100}
101
Brian Carlstrom89521892011-12-07 22:05:07 -0800102size_t OatWriter::InitDexFiles(size_t offset) {
103 // calculate the offsets within OatDexFiles to the DexFiles
104 for (size_t i = 0; i != dex_files_->size(); ++i) {
105 // dex files are required to be 4 byte aligned
106 offset = RoundUp(offset, 4);
107
108 // set offset in OatDexFile to DexFile
109 oat_dex_files_[i]->dex_file_offset_ = offset;
110
111 const DexFile* dex_file = (*dex_files_)[i];
112 offset += dex_file->GetHeader().file_size_;
113 }
114 return offset;
115}
116
Logan Chien25ae6402012-03-20 20:19:26 +0800117size_t OatWriter::InitOatElfImages(size_t offset) {
Shih-wei Liao8e5e9782012-03-24 13:18:46 -0700118 size_t n = elf_images_.size();
119 if (n != 0) {
120 // Offset to ELF image table should be rounded up to 4-byte aligned, so that
121 // we can read the uint32_t directly.
122 offset = RoundUp(offset, 4);
123 oat_header_->SetElfImageTableOffset(offset);
124 } else {
125 oat_header_->SetElfImageTableOffset(0);
126 }
Logan Chien25ae6402012-03-20 20:19:26 +0800127
Shih-wei Liao8e5e9782012-03-24 13:18:46 -0700128 for (size_t i = 0; i < n; ++i) {
Logan Chien25ae6402012-03-20 20:19:26 +0800129 OatElfImage* oat_elf_image = new OatElfImage(elf_images_[i]);
130 oat_elf_images_.push_back(oat_elf_image);
131 offset += oat_elf_image->SizeOf();
132 }
133 return offset;
134}
135
136size_t OatWriter::InitElfImages(size_t offset) {
137 for (size_t i = 0; i < oat_elf_images_.size(); ++i) {
138 offset = RoundUp(offset, 4);
139 oat_elf_images_[i]->SetElfOffset(offset);
140 offset += oat_elf_images_[i]->GetElfSize();
141 }
142 return offset;
143}
144
Brian Carlstrom389efb02012-01-11 12:06:26 -0800145size_t OatWriter::InitOatClasses(size_t offset) {
146 // create the OatClasses
147 // calculate the offsets within OatDexFiles to OatClasses
Brian Carlstrome24fa612011-09-29 00:53:55 -0700148 for (size_t i = 0; i != dex_files_->size(); ++i) {
149 const DexFile* dex_file = (*dex_files_)[i];
150 for (size_t class_def_index = 0;
151 class_def_index < dex_file->NumClassDefs();
Ian Rogersc20a83e2012-01-18 18:15:32 -0800152 class_def_index++) {
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800153 oat_dex_files_[i]->methods_offsets_[class_def_index] = offset;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700154 const DexFile::ClassDef& class_def = dex_file->GetClassDef(class_def_index);
155 const byte* class_data = dex_file->GetClassData(class_def);
Ian Rogers0571d352011-11-03 19:51:38 -0700156 uint32_t num_methods = 0;
157 if (class_data != NULL) { // ie not an empty class, such as a marker interface
158 ClassDataItemIterator it(*dex_file, class_data);
159 size_t num_direct_methods = it.NumDirectMethods();
160 size_t num_virtual_methods = it.NumVirtualMethods();
161 num_methods = num_direct_methods + num_virtual_methods;
162 }
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800163
164 CompiledClass* compiled_class =
Elliott Hughes11d1b0c2012-01-23 16:57:47 -0800165 compiler_->GetCompiledClass(Compiler::MethodReference(dex_file, class_def_index));
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800166 Class::Status status =
167 (compiled_class != NULL) ? compiled_class->GetStatus() : Class::kStatusNotReady;
168
169 OatClass* oat_class = new OatClass(status, num_methods);
Brian Carlstrom389efb02012-01-11 12:06:26 -0800170 oat_classes_.push_back(oat_class);
171 offset += oat_class->SizeOf();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700172 }
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800173 oat_dex_files_[i]->UpdateChecksum(*oat_header_);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700174 }
175 return offset;
176}
177
178size_t OatWriter::InitOatCode(size_t offset) {
179 // calculate the offsets within OatHeader to executable code
180 size_t old_offset = offset;
181 // required to be on a new page boundary
182 offset = RoundUp(offset, kPageSize);
183 oat_header_->SetExecutableOffset(offset);
184 executable_offset_padding_length_ = offset - old_offset;
185 return offset;
186}
187
188size_t OatWriter::InitOatCodeDexFiles(size_t offset) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700189 size_t oat_class_index = 0;
190 for (size_t i = 0; i != dex_files_->size(); ++i) {
191 const DexFile* dex_file = (*dex_files_)[i];
192 CHECK(dex_file != NULL);
193 offset = InitOatCodeDexFile(offset, oat_class_index, *dex_file);
194 }
195 return offset;
196}
197
198size_t OatWriter::InitOatCodeDexFile(size_t offset,
199 size_t& oat_class_index,
200 const DexFile& dex_file) {
Elliott Hughesba8eee12012-01-24 20:25:24 -0800201 for (size_t class_def_index = 0;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700202 class_def_index < dex_file.NumClassDefs();
203 class_def_index++, oat_class_index++) {
204 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Ian Rogersc20a83e2012-01-18 18:15:32 -0800205 offset = InitOatCodeClassDef(offset, oat_class_index, class_def_index, dex_file, class_def);
Brian Carlstrom389efb02012-01-11 12:06:26 -0800206 oat_classes_[oat_class_index]->UpdateChecksum(*oat_header_);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700207 }
208 return offset;
209}
210
211size_t OatWriter::InitOatCodeClassDef(size_t offset,
Ian Rogersc20a83e2012-01-18 18:15:32 -0800212 size_t oat_class_index, size_t class_def_index,
Brian Carlstrome24fa612011-09-29 00:53:55 -0700213 const DexFile& dex_file,
214 const DexFile::ClassDef& class_def) {
215 const byte* class_data = dex_file.GetClassData(class_def);
Ian Rogers0571d352011-11-03 19:51:38 -0700216 if (class_data == NULL) {
217 // empty class, such as a marker interface
Ian Rogers387b6992011-10-31 17:52:37 -0700218 return offset;
219 }
Ian Rogers0571d352011-11-03 19:51:38 -0700220 ClassDataItemIterator it(dex_file, class_data);
Brian Carlstrom389efb02012-01-11 12:06:26 -0800221 CHECK_EQ(oat_classes_[oat_class_index]->method_offsets_.size(),
Ian Rogers0571d352011-11-03 19:51:38 -0700222 it.NumDirectMethods() + it.NumVirtualMethods());
223 // Skip fields
224 while (it.HasNextStaticField()) {
225 it.Next();
226 }
227 while (it.HasNextInstanceField()) {
228 it.Next();
229 }
230 // Process methods
Brian Carlstrome24fa612011-09-29 00:53:55 -0700231 size_t class_def_method_index = 0;
Ian Rogers0571d352011-11-03 19:51:38 -0700232 while (it.HasNextDirectMethod()) {
233 bool is_static = (it.GetMemberAccessFlags() & kAccStatic) != 0;
Ian Rogersc20a83e2012-01-18 18:15:32 -0800234 bool is_native = (it.GetMemberAccessFlags() & kAccNative) != 0;
235 offset = InitOatCodeMethod(offset, oat_class_index, class_def_index, class_def_method_index, is_native,
236 is_static, true, it.GetMemberIndex(), &dex_file);
Ian Rogers0571d352011-11-03 19:51:38 -0700237 class_def_method_index++;
238 it.Next();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700239 }
Ian Rogers0571d352011-11-03 19:51:38 -0700240 while (it.HasNextVirtualMethod()) {
241 CHECK_EQ(it.GetMemberAccessFlags() & kAccStatic, 0U);
Ian Rogersc20a83e2012-01-18 18:15:32 -0800242 bool is_native = (it.GetMemberAccessFlags() & kAccNative) != 0;
243 offset = InitOatCodeMethod(offset, oat_class_index, class_def_index, class_def_method_index, is_native,
244 false, false, it.GetMemberIndex(), &dex_file);
Ian Rogers0571d352011-11-03 19:51:38 -0700245 class_def_method_index++;
246 it.Next();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700247 }
Ian Rogers0571d352011-11-03 19:51:38 -0700248 DCHECK(!it.HasNext());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700249 return offset;
250}
251
Elliott Hughes1bac54f2012-03-16 12:48:31 -0700252size_t OatWriter::InitOatCodeMethod(size_t offset, size_t oat_class_index,
253 size_t __attribute__((unused)) class_def_index,
254 size_t class_def_method_index,
255 bool __attribute__((unused)) is_native,
256 bool is_static, bool is_direct,
257 uint32_t method_idx, const DexFile* dex_file) {
Logan Chien8b977d32012-02-21 19:14:55 +0800258#if !defined(ART_USE_LLVM_COMPILER)
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700259 // derived from CompiledMethod if available
260 uint32_t code_offset = 0;
261 uint32_t frame_size_in_bytes = kStackAlignment;
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700262 uint32_t core_spill_mask = 0;
263 uint32_t fp_spill_mask = 0;
264 uint32_t mapping_table_offset = 0;
265 uint32_t vmap_table_offset = 0;
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800266 uint32_t gc_map_offset = 0;
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700267 // derived from CompiledInvokeStub if available
268 uint32_t invoke_stub_offset = 0;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700269
Ian Rogers0571d352011-11-03 19:51:38 -0700270 CompiledMethod* compiled_method =
Elliott Hughes11d1b0c2012-01-23 16:57:47 -0800271 compiler_->GetCompiledMethod(Compiler::MethodReference(dex_file, method_idx));
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700272 if (compiled_method != NULL) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700273 offset = compiled_method->AlignCode(offset);
Elliott Hughes06b37d92011-10-16 11:51:29 -0700274 DCHECK_ALIGNED(offset, kArmAlignment);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700275 const std::vector<uint8_t>& code = compiled_method->GetCode();
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700276 uint32_t code_size = code.size() * sizeof(code[0]);
277 CHECK_NE(code_size, 0U);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700278 uint32_t thumb_offset = compiled_method->CodeDelta();
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700279 code_offset = offset + sizeof(code_size) + thumb_offset;
jeffhao55d78212011-11-02 11:41:50 -0700280
281 // Deduplicate code arrays
jeffhaof479dcc2011-11-02 15:54:15 -0700282 std::map<const std::vector<uint8_t>*, uint32_t>::iterator code_iter = code_offsets_.find(&code);
jeffhao55d78212011-11-02 11:41:50 -0700283 if (code_iter != code_offsets_.end()) {
284 code_offset = code_iter->second;
285 } else {
jeffhaof479dcc2011-11-02 15:54:15 -0700286 code_offsets_.insert(std::pair<const std::vector<uint8_t>*, uint32_t>(&code, code_offset));
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700287 offset += sizeof(code_size); // code size is prepended before code
jeffhao55d78212011-11-02 11:41:50 -0700288 offset += code_size;
289 oat_header_->UpdateChecksum(&code[0], code_size);
290 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700291 frame_size_in_bytes = compiled_method->GetFrameSizeInBytes();
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700292 core_spill_mask = compiled_method->GetCoreSpillMask();
293 fp_spill_mask = compiled_method->GetFpSpillMask();
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700294
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700295 const std::vector<uint32_t>& mapping_table = compiled_method->GetMappingTable();
296 size_t mapping_table_size = mapping_table.size() * sizeof(mapping_table[0]);
297 mapping_table_offset = (mapping_table_size == 0) ? 0 : offset;
jeffhao55d78212011-11-02 11:41:50 -0700298
299 // Deduplicate mapping tables
jeffhaof479dcc2011-11-02 15:54:15 -0700300 std::map<const std::vector<uint32_t>*, uint32_t>::iterator mapping_iter = mapping_table_offsets_.find(&mapping_table);
jeffhao55d78212011-11-02 11:41:50 -0700301 if (mapping_iter != mapping_table_offsets_.end()) {
302 mapping_table_offset = mapping_iter->second;
303 } else {
jeffhaof479dcc2011-11-02 15:54:15 -0700304 mapping_table_offsets_.insert(std::pair<const std::vector<uint32_t>*, uint32_t>(&mapping_table, mapping_table_offset));
jeffhao55d78212011-11-02 11:41:50 -0700305 offset += mapping_table_size;
306 oat_header_->UpdateChecksum(&mapping_table[0], mapping_table_size);
307 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700308
309 const std::vector<uint16_t>& vmap_table = compiled_method->GetVmapTable();
310 size_t vmap_table_size = vmap_table.size() * sizeof(vmap_table[0]);
311 vmap_table_offset = (vmap_table_size == 0) ? 0 : offset;
jeffhao55d78212011-11-02 11:41:50 -0700312
313 // Deduplicate vmap tables
jeffhaof479dcc2011-11-02 15:54:15 -0700314 std::map<const std::vector<uint16_t>*, uint32_t>::iterator vmap_iter = vmap_table_offsets_.find(&vmap_table);
jeffhao55d78212011-11-02 11:41:50 -0700315 if (vmap_iter != vmap_table_offsets_.end()) {
316 vmap_table_offset = vmap_iter->second;
317 } else {
jeffhaof479dcc2011-11-02 15:54:15 -0700318 vmap_table_offsets_.insert(std::pair<const std::vector<uint16_t>*, uint32_t>(&vmap_table, vmap_table_offset));
jeffhao55d78212011-11-02 11:41:50 -0700319 offset += vmap_table_size;
320 oat_header_->UpdateChecksum(&vmap_table[0], vmap_table_size);
321 }
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800322
323 const std::vector<uint8_t>& gc_map = compiled_method->GetGcMap();
324 size_t gc_map_size = gc_map.size() * sizeof(gc_map[0]);
325 gc_map_offset = (gc_map_size == 0) ? 0 : offset;
326
Ian Rogersc20a83e2012-01-18 18:15:32 -0800327#ifndef NDEBUG
328 // We expect GC maps except when the class hasn't been verified or the method is native
329 CompiledClass* compiled_class =
Elliott Hughes11d1b0c2012-01-23 16:57:47 -0800330 compiler_->GetCompiledClass(Compiler::MethodReference(dex_file, class_def_index));
Ian Rogersc20a83e2012-01-18 18:15:32 -0800331 Class::Status status =
332 (compiled_class != NULL) ? compiled_class->GetStatus() : Class::kStatusNotReady;
333 CHECK(gc_map_size != 0 || is_native || status < Class::kStatusVerified)
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800334 << &gc_map << " " << gc_map_size << " " << (is_native ? "true" : "false") << " " << (status < Class::kStatusVerified) << " " << status << " " << PrettyMethod(method_idx, *dex_file);
Ian Rogersc20a83e2012-01-18 18:15:32 -0800335#endif
336
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800337 // Deduplicate GC maps
338 std::map<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_.insert(std::pair<const std::vector<uint8_t>*, uint32_t>(&gc_map, gc_map_offset));
343 offset += gc_map_size;
344 oat_header_->UpdateChecksum(&gc_map[0], gc_map_size);
345 }
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));
349 const CompiledInvokeStub* compiled_invoke_stub = compiler_->FindInvokeStub(is_static, shorty);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700350 if (compiled_invoke_stub != NULL) {
351 offset = CompiledMethod::AlignCode(offset, compiler_->GetInstructionSet());
Elliott Hughes06b37d92011-10-16 11:51:29 -0700352 DCHECK_ALIGNED(offset, kArmAlignment);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700353 const std::vector<uint8_t>& invoke_stub = compiled_invoke_stub->GetCode();
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700354 uint32_t invoke_stub_size = invoke_stub.size() * sizeof(invoke_stub[0]);
355 CHECK_NE(invoke_stub_size, 0U);
356 invoke_stub_offset = offset + sizeof(invoke_stub_size);
jeffhao55d78212011-11-02 11:41:50 -0700357
358 // Deduplicate invoke stubs
jeffhaof479dcc2011-11-02 15:54:15 -0700359 std::map<const std::vector<uint8_t>*, uint32_t>::iterator stub_iter = code_offsets_.find(&invoke_stub);
jeffhao55d78212011-11-02 11:41:50 -0700360 if (stub_iter != code_offsets_.end()) {
361 invoke_stub_offset = stub_iter->second;
362 } else {
jeffhaof479dcc2011-11-02 15:54:15 -0700363 code_offsets_.insert(std::pair<const std::vector<uint8_t>*, uint32_t>(&invoke_stub, invoke_stub_offset));
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700364 offset += sizeof(invoke_stub_size); // invoke stub size is prepended before code
jeffhao55d78212011-11-02 11:41:50 -0700365 offset += invoke_stub_size;
366 oat_header_->UpdateChecksum(&invoke_stub[0], invoke_stub_size);
367 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700368 }
369
Brian Carlstrom389efb02012-01-11 12:06:26 -0800370 oat_classes_[oat_class_index]->method_offsets_[class_def_method_index]
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700371 = OatMethodOffsets(code_offset,
372 frame_size_in_bytes,
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700373 core_spill_mask,
374 fp_spill_mask,
375 mapping_table_offset,
376 vmap_table_offset,
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800377 gc_map_offset,
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700378 invoke_stub_offset);
379
Ian Rogers0571d352011-11-03 19:51:38 -0700380 if (compiler_->IsImage()) {
381 ClassLinker* linker = Runtime::Current()->GetClassLinker();
382 DexCache* dex_cache = linker->FindDexCache(*dex_file);
383 Method* method = linker->ResolveMethod(*dex_file, method_idx, dex_cache, class_loader_,
384 is_direct);
385 CHECK(method != NULL);
386 method->SetFrameSizeInBytes(frame_size_in_bytes);
387 method->SetCoreSpillMask(core_spill_mask);
388 method->SetFpSpillMask(fp_spill_mask);
389 method->SetOatMappingTableOffset(mapping_table_offset);
Ian Rogers19846512012-02-24 11:42:47 -0800390 // Don't overwrite static method trampoline
391 if (!method->IsStatic() || method->IsConstructor() ||
392 method->GetDeclaringClass()->IsInitialized()) {
393 method->SetOatCodeOffset(code_offset);
394 } else {
395 method->SetCode(Runtime::Current()->GetResolutionStubArray(Runtime::kStaticMethod)->GetData());
396 }
Ian Rogers0571d352011-11-03 19:51:38 -0700397 method->SetOatVmapTableOffset(vmap_table_offset);
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800398 method->SetOatGcMapOffset(gc_map_offset);
Ian Rogers0571d352011-11-03 19:51:38 -0700399 method->SetOatInvokeStubOffset(invoke_stub_offset);
400 }
Logan Chien8b977d32012-02-21 19:14:55 +0800401#endif
402
Brian Carlstrome24fa612011-09-29 00:53:55 -0700403 return offset;
404}
405
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700406#define DCHECK_CODE_OFFSET() \
Elliott Hughes2a2ff562012-01-06 18:07:59 -0800407 DCHECK_EQ(static_cast<off_t>(code_offset), lseek(file->Fd(), 0, SEEK_CUR))
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700408
Elliott Hughes234da572011-11-03 22:13:06 -0700409bool OatWriter::Write(File* file) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700410 if (!file->WriteFully(oat_header_, sizeof(*oat_header_))) {
Elliott Hughes234da572011-11-03 22:13:06 -0700411 PLOG(ERROR) << "Failed to write oat header to " << file->name();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700412 return false;
413 }
414
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700415 if (!file->WriteFully(image_file_location_.data(),
416 image_file_location_.size())) {
417 PLOG(ERROR) << "Failed to write oat header image file location to " << file->name();
418 return false;
419 }
420
Elliott Hughes234da572011-11-03 22:13:06 -0700421 if (!WriteTables(file)) {
422 LOG(ERROR) << "Failed to write oat tables to " << file->name();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700423 return false;
424 }
425
Elliott Hughes234da572011-11-03 22:13:06 -0700426 size_t code_offset = WriteCode(file);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700427 if (code_offset == 0) {
Elliott Hughes234da572011-11-03 22:13:06 -0700428 LOG(ERROR) << "Failed to write oat code to " << file->name();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700429 return false;
430 }
431
Elliott Hughes234da572011-11-03 22:13:06 -0700432 code_offset = WriteCodeDexFiles(file, code_offset);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700433 if (code_offset == 0) {
Elliott Hughes234da572011-11-03 22:13:06 -0700434 LOG(ERROR) << "Failed to write oat code for dex files to " << file->name();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700435 return false;
436 }
437
438 return true;
439}
440
441bool OatWriter::WriteTables(File* file) {
442 for (size_t i = 0; i != oat_dex_files_.size(); ++i) {
443 if (!oat_dex_files_[i]->Write(file)) {
Elliott Hughes234da572011-11-03 22:13:06 -0700444 PLOG(ERROR) << "Failed to write oat dex information to " << file->name();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700445 return false;
446 }
447 }
Brian Carlstrom89521892011-12-07 22:05:07 -0800448 for (size_t i = 0; i != oat_dex_files_.size(); ++i) {
449 uint32_t expected_offset = oat_dex_files_[i]->dex_file_offset_;
Elliott Hughes2a2ff562012-01-06 18:07:59 -0800450 off_t actual_offset = lseek(file->Fd(), expected_offset, SEEK_SET);
Brian Carlstrom89521892011-12-07 22:05:07 -0800451 if (static_cast<uint32_t>(actual_offset) != expected_offset) {
452 const DexFile* dex_file = (*dex_files_)[i];
453 PLOG(ERROR) << "Failed to seek to dex file section. Actual: " << actual_offset
454 << " Expected: " << expected_offset << " File: " << dex_file->GetLocation();
455 return false;
456 }
457 const DexFile* dex_file = (*dex_files_)[i];
458 if (!file->WriteFully(&dex_file->GetHeader(), dex_file->GetHeader().file_size_)) {
459 PLOG(ERROR) << "Failed to write dex file " << dex_file->GetLocation() << " to " << file->name();
460 return false;
461 }
462 }
Logan Chien25ae6402012-03-20 20:19:26 +0800463 for (size_t i = 0; i != oat_elf_images_.size(); ++i) {
464 if (!oat_elf_images_[i]->Write(file)) {
465 PLOG(ERROR) << "Failed to write oat elf information to " << file->name();
466 return false;
467 }
468 }
469 for (size_t i = 0; i != oat_elf_images_.size(); ++i) {
470 uint32_t expected_offset = oat_elf_images_[i]->GetElfOffset();
471 off_t actual_offset = lseek(file->Fd(), expected_offset, SEEK_SET);
472 if (static_cast<uint32_t>(actual_offset) != expected_offset) {
473 PLOG(ERROR) << "Failed to seek to dex file section."
474 << " Actual: " << actual_offset
475 << " Expected: " << expected_offset;
476 return false;
477 }
478 if (!oat_elf_images_[i]->WriteElfImage(file)) {
479 return false;
480 }
481 }
Brian Carlstrom389efb02012-01-11 12:06:26 -0800482 for (size_t i = 0; i != oat_classes_.size(); ++i) {
483 if (!oat_classes_[i]->Write(file)) {
Elliott Hughes234da572011-11-03 22:13:06 -0700484 PLOG(ERROR) << "Failed to write oat methods information to " << file->name();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700485 return false;
486 }
487 }
488 return true;
489}
490
491size_t OatWriter::WriteCode(File* file) {
492 uint32_t code_offset = oat_header_->GetExecutableOffset();
Elliott Hughes2a2ff562012-01-06 18:07:59 -0800493 off_t new_offset = lseek(file->Fd(), executable_offset_padding_length_, SEEK_CUR);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700494 if (static_cast<uint32_t>(new_offset) != code_offset) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700495 PLOG(ERROR) << "Failed to seek to oat code section. Actual: " << new_offset
Elliott Hughes234da572011-11-03 22:13:06 -0700496 << " Expected: " << code_offset << " File: " << file->name();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700497 return 0;
498 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700499 DCHECK_CODE_OFFSET();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700500 return code_offset;
501}
502
503size_t OatWriter::WriteCodeDexFiles(File* file, size_t code_offset) {
Ian Rogers0571d352011-11-03 19:51:38 -0700504 size_t oat_class_index = 0;
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800505 for (size_t i = 0; i != oat_dex_files_.size(); ++i) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700506 const DexFile* dex_file = (*dex_files_)[i];
507 CHECK(dex_file != NULL);
Ian Rogers0571d352011-11-03 19:51:38 -0700508 code_offset = WriteCodeDexFile(file, code_offset, oat_class_index, *dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700509 if (code_offset == 0) {
510 return 0;
511 }
512 }
513 return code_offset;
514}
515
Ian Rogers0571d352011-11-03 19:51:38 -0700516size_t OatWriter::WriteCodeDexFile(File* file, size_t code_offset, size_t& oat_class_index,
517 const DexFile& dex_file) {
518 for (size_t class_def_index = 0; class_def_index < dex_file.NumClassDefs();
519 class_def_index++, oat_class_index++) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700520 const DexFile::ClassDef& class_def = dex_file.GetClassDef(class_def_index);
Ian Rogers0571d352011-11-03 19:51:38 -0700521 code_offset = WriteCodeClassDef(file, code_offset, oat_class_index, dex_file, class_def);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700522 if (code_offset == 0) {
523 return 0;
524 }
525 }
526 return code_offset;
527}
528
Ian Rogers0571d352011-11-03 19:51:38 -0700529void OatWriter::ReportWriteFailure(const char* what, uint32_t method_idx,
530 const DexFile& dex_file, File* f) const {
531 PLOG(ERROR) << "Failed to write " << what << " for " << PrettyMethod(method_idx, dex_file)
532 << " to " << f->name();
Elliott Hughes234da572011-11-03 22:13:06 -0700533}
534
Brian Carlstrome24fa612011-09-29 00:53:55 -0700535size_t OatWriter::WriteCodeClassDef(File* file,
Ian Rogers0571d352011-11-03 19:51:38 -0700536 size_t code_offset, size_t oat_class_index,
Brian Carlstrome24fa612011-09-29 00:53:55 -0700537 const DexFile& dex_file,
538 const DexFile::ClassDef& class_def) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700539 const byte* class_data = dex_file.GetClassData(class_def);
Ian Rogers0571d352011-11-03 19:51:38 -0700540 if (class_data == NULL) {
541 // ie. an empty class such as a marker interface
Ian Rogers387b6992011-10-31 17:52:37 -0700542 return code_offset;
543 }
Ian Rogers0571d352011-11-03 19:51:38 -0700544 ClassDataItemIterator it(dex_file, class_data);
545 // Skip fields
546 while (it.HasNextStaticField()) {
547 it.Next();
548 }
549 while (it.HasNextInstanceField()) {
550 it.Next();
551 }
552 // Process methods
553 size_t class_def_method_index = 0;
554 while (it.HasNextDirectMethod()) {
555 bool is_static = (it.GetMemberAccessFlags() & kAccStatic) != 0;
556 code_offset = WriteCodeMethod(file, code_offset, oat_class_index, class_def_method_index,
557 is_static, it.GetMemberIndex(), dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700558 if (code_offset == 0) {
559 return 0;
560 }
Ian Rogers0571d352011-11-03 19:51:38 -0700561 class_def_method_index++;
562 it.Next();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700563 }
Ian Rogers0571d352011-11-03 19:51:38 -0700564 while (it.HasNextVirtualMethod()) {
565 code_offset = WriteCodeMethod(file, code_offset, oat_class_index, class_def_method_index,
566 false, it.GetMemberIndex(), dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700567 if (code_offset == 0) {
568 return 0;
569 }
Ian Rogers0571d352011-11-03 19:51:38 -0700570 class_def_method_index++;
571 it.Next();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700572 }
573 return code_offset;
574}
575
Ian Rogers0571d352011-11-03 19:51:38 -0700576size_t OatWriter::WriteCodeMethod(File* file, size_t code_offset, size_t oat_class_index,
577 size_t class_def_method_index, bool is_static,
578 uint32_t method_idx, const DexFile& dex_file) {
Logan Chien8b977d32012-02-21 19:14:55 +0800579#if !defined(ART_USE_LLVM_COMPILER)
Ian Rogers0571d352011-11-03 19:51:38 -0700580 const CompiledMethod* compiled_method =
Elliott Hughes11d1b0c2012-01-23 16:57:47 -0800581 compiler_->GetCompiledMethod(Compiler::MethodReference(&dex_file, method_idx));
Ian Rogers0571d352011-11-03 19:51:38 -0700582
583 uint32_t frame_size_in_bytes = 0;
584 uint32_t core_spill_mask = 0;
585 uint32_t fp_spill_mask = 0;
586
587 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 Carlstrom3320cf42011-10-04 14:58:28 -0700592 uint32_t aligned_code_offset = compiled_method->AlignCode(code_offset);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700593 uint32_t aligned_code_delta = aligned_code_offset - code_offset;
594 if (aligned_code_delta != 0) {
Elliott Hughes2a2ff562012-01-06 18:07:59 -0800595 off_t new_offset = lseek(file->Fd(), aligned_code_delta, SEEK_CUR);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700596 if (static_cast<uint32_t>(new_offset) != aligned_code_offset) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700597 PLOG(ERROR) << "Failed to seek to align oat code. Actual: " << new_offset
Elliott Hughes234da572011-11-03 22:13:06 -0700598 << " Expected: " << aligned_code_offset << " File: " << file->name();
Brian Carlstromf03c2882012-03-05 20:29:06 -0800599 return 0;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700600 }
601 code_offset += aligned_code_delta;
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700602 DCHECK_CODE_OFFSET();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700603 }
Elliott Hughes06b37d92011-10-16 11:51:29 -0700604 DCHECK_ALIGNED(code_offset, kArmAlignment);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700605 const std::vector<uint8_t>& code = compiled_method->GetCode();
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700606 uint32_t code_size = code.size() * sizeof(code[0]);
607 CHECK_NE(code_size, 0U);
jeffhao55d78212011-11-02 11:41:50 -0700608
609 // Deduplicate code arrays
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700610 size_t offset = code_offset + sizeof(code_size) + compiled_method->CodeDelta();
jeffhaof479dcc2011-11-02 15:54:15 -0700611 std::map<const std::vector<uint8_t>*, uint32_t>::iterator code_iter = code_offsets_.find(&code);
Ian Rogers0571d352011-11-03 19:51:38 -0700612 if (code_iter != code_offsets_.end() && offset != method_offsets.code_offset_) {
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700613 DCHECK(code_iter->second == method_offsets.code_offset_) << PrettyMethod(method_idx, dex_file);
jeffhao55d78212011-11-02 11:41:50 -0700614 } else {
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700615 DCHECK(offset == method_offsets.code_offset_) << PrettyMethod(method_idx, dex_file);
616 if (!file->WriteFully(&code_size, sizeof(code_size))) {
617 ReportWriteFailure("method code size", method_idx, dex_file, file);
618 return 0;
619 }
620 code_offset += sizeof(code_size);
621 DCHECK_CODE_OFFSET();
jeffhao55d78212011-11-02 11:41:50 -0700622 if (!file->WriteFully(&code[0], code_size)) {
Ian Rogers0571d352011-11-03 19:51:38 -0700623 ReportWriteFailure("method code", method_idx, dex_file, file);
Brian Carlstromf03c2882012-03-05 20:29:06 -0800624 return 0;
jeffhao55d78212011-11-02 11:41:50 -0700625 }
626 code_offset += code_size;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700627 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700628 DCHECK_CODE_OFFSET();
Ian Rogers0571d352011-11-03 19:51:38 -0700629 frame_size_in_bytes = compiled_method->GetFrameSizeInBytes();
630 core_spill_mask = compiled_method->GetCoreSpillMask();
631 fp_spill_mask = compiled_method->GetFpSpillMask();
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700632
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700633 const std::vector<uint32_t>& mapping_table = compiled_method->GetMappingTable();
634 size_t mapping_table_size = mapping_table.size() * sizeof(mapping_table[0]);
jeffhao55d78212011-11-02 11:41:50 -0700635
636 // Deduplicate mapping tables
Ian Rogers0571d352011-11-03 19:51:38 -0700637 std::map<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() &&
640 code_offset != method_offsets.mapping_table_offset_) {
641 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);
jeffhao55d78212011-11-02 11:41:50 -0700644 } else {
Ian Rogers0571d352011-11-03 19:51:38 -0700645 DCHECK((mapping_table_size == 0 && method_offsets.mapping_table_offset_ == 0)
646 || code_offset == method_offsets.mapping_table_offset_)
647 << PrettyMethod(method_idx, dex_file);
jeffhao55d78212011-11-02 11:41:50 -0700648 if (!file->WriteFully(&mapping_table[0], mapping_table_size)) {
Ian Rogers0571d352011-11-03 19:51:38 -0700649 ReportWriteFailure("mapping table", method_idx, dex_file, file);
Brian Carlstromf03c2882012-03-05 20:29:06 -0800650 return 0;
jeffhao55d78212011-11-02 11:41:50 -0700651 }
652 code_offset += mapping_table_size;
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700653 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700654 DCHECK_CODE_OFFSET();
655
656 const std::vector<uint16_t>& vmap_table = compiled_method->GetVmapTable();
657 size_t vmap_table_size = vmap_table.size() * sizeof(vmap_table[0]);
jeffhao55d78212011-11-02 11:41:50 -0700658
659 // Deduplicate vmap tables
Ian Rogers0571d352011-11-03 19:51:38 -0700660 std::map<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() &&
663 code_offset != method_offsets.vmap_table_offset_) {
664 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);
jeffhao55d78212011-11-02 11:41:50 -0700667 } else {
Ian Rogers0571d352011-11-03 19:51:38 -0700668 DCHECK((vmap_table_size == 0 && method_offsets.vmap_table_offset_ == 0)
669 || code_offset == method_offsets.vmap_table_offset_)
670 << PrettyMethod(method_idx, dex_file);
jeffhao55d78212011-11-02 11:41:50 -0700671 if (!file->WriteFully(&vmap_table[0], vmap_table_size)) {
Ian Rogers0571d352011-11-03 19:51:38 -0700672 ReportWriteFailure("vmap table", method_idx, dex_file, file);
Brian Carlstromf03c2882012-03-05 20:29:06 -0800673 return 0;
jeffhao55d78212011-11-02 11:41:50 -0700674 }
675 code_offset += vmap_table_size;
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700676 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700677 DCHECK_CODE_OFFSET();
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800678
679 const std::vector<uint8_t>& gc_map = compiled_method->GetGcMap();
680 size_t gc_map_size = gc_map.size() * sizeof(gc_map[0]);
681
682 // Deduplicate GC maps
683 std::map<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() &&
686 code_offset != method_offsets.gc_map_offset_) {
687 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)
692 || code_offset == method_offsets.gc_map_offset_)
693 << PrettyMethod(method_idx, dex_file);
694 if (!file->WriteFully(&gc_map[0], gc_map_size)) {
695 ReportWriteFailure("GC map", method_idx, dex_file, file);
Brian Carlstromf03c2882012-03-05 20:29:06 -0800696 return 0;
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800697 }
698 code_offset += gc_map_size;
699 }
700 DCHECK_CODE_OFFSET();
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700701 }
Ian Rogers0571d352011-11-03 19:51:38 -0700702 const char* shorty = dex_file.GetMethodShorty(dex_file.GetMethodId(method_idx));
703 const CompiledInvokeStub* compiled_invoke_stub = compiler_->FindInvokeStub(is_static, shorty);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700704 if (compiled_invoke_stub != NULL) {
705 uint32_t aligned_code_offset = CompiledMethod::AlignCode(code_offset,
706 compiler_->GetInstructionSet());
707 uint32_t aligned_code_delta = aligned_code_offset - code_offset;
708 if (aligned_code_delta != 0) {
Elliott Hughes2a2ff562012-01-06 18:07:59 -0800709 off_t new_offset = lseek(file->Fd(), aligned_code_delta, SEEK_CUR);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700710 if (static_cast<uint32_t>(new_offset) != aligned_code_offset) {
711 PLOG(ERROR) << "Failed to seek to align invoke stub code. Actual: " << new_offset
712 << " Expected: " << aligned_code_offset;
Brian Carlstromf03c2882012-03-05 20:29:06 -0800713 return 0;
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700714 }
715 code_offset += aligned_code_delta;
716 DCHECK_CODE_OFFSET();
717 }
Elliott Hughes06b37d92011-10-16 11:51:29 -0700718 DCHECK_ALIGNED(code_offset, kArmAlignment);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700719 const std::vector<uint8_t>& invoke_stub = compiled_invoke_stub->GetCode();
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700720 uint32_t invoke_stub_size = invoke_stub.size() * sizeof(invoke_stub[0]);
721 CHECK_NE(invoke_stub_size, 0U);
jeffhao55d78212011-11-02 11:41:50 -0700722
723 // Deduplicate invoke stubs
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700724 size_t offset = code_offset + sizeof(invoke_stub_size);
Ian Rogers0571d352011-11-03 19:51:38 -0700725 std::map<const std::vector<uint8_t>*, uint32_t>::iterator stub_iter =
726 code_offsets_.find(&invoke_stub);
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700727 if (stub_iter != code_offsets_.end() && offset != method_offsets.invoke_stub_offset_) {
728 DCHECK(stub_iter->second == method_offsets.invoke_stub_offset_) << PrettyMethod(method_idx, dex_file);
jeffhao55d78212011-11-02 11:41:50 -0700729 } else {
Brian Carlstromf8bbb842012-03-14 03:01:42 -0700730 DCHECK(offset == method_offsets.invoke_stub_offset_) << PrettyMethod(method_idx, dex_file);
731 if (!file->WriteFully(&invoke_stub_size, sizeof(invoke_stub_size))) {
732 ReportWriteFailure("invoke stub code size", method_idx, dex_file, file);
733 return 0;
734 }
735 code_offset += sizeof(invoke_stub_size);
736 DCHECK_CODE_OFFSET();
jeffhao55d78212011-11-02 11:41:50 -0700737 if (!file->WriteFully(&invoke_stub[0], invoke_stub_size)) {
Ian Rogers0571d352011-11-03 19:51:38 -0700738 ReportWriteFailure("invoke stub code", method_idx, dex_file, file);
Brian Carlstromf03c2882012-03-05 20:29:06 -0800739 return 0;
jeffhao55d78212011-11-02 11:41:50 -0700740 }
741 code_offset += invoke_stub_size;
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700742 }
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700743 DCHECK_CODE_OFFSET();
744 }
Logan Chien8b977d32012-02-21 19:14:55 +0800745#endif
746
Brian Carlstrome24fa612011-09-29 00:53:55 -0700747 return code_offset;
748}
749
Brian Carlstrome24fa612011-09-29 00:53:55 -0700750OatWriter::OatDexFile::OatDexFile(const DexFile& dex_file) {
Elliott Hughes95572412011-12-13 18:14:20 -0800751 const std::string& location(dex_file.GetLocation());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700752 dex_file_location_size_ = location.size();
753 dex_file_location_data_ = reinterpret_cast<const uint8_t*>(location.data());
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800754 dex_file_location_checksum_ = dex_file.GetLocationChecksum();
Brian Carlstrom89521892011-12-07 22:05:07 -0800755 dex_file_offset_ = 0;
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800756 methods_offsets_.resize(dex_file.NumClassDefs());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700757}
758
759size_t OatWriter::OatDexFile::SizeOf() const {
760 return sizeof(dex_file_location_size_)
761 + dex_file_location_size_
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800762 + sizeof(dex_file_location_checksum_)
Brian Carlstrom89521892011-12-07 22:05:07 -0800763 + sizeof(dex_file_offset_)
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800764 + (sizeof(methods_offsets_[0]) * methods_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700765}
766
767void OatWriter::OatDexFile::UpdateChecksum(OatHeader& oat_header) const {
768 oat_header.UpdateChecksum(&dex_file_location_size_, sizeof(dex_file_location_size_));
769 oat_header.UpdateChecksum(dex_file_location_data_, dex_file_location_size_);
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800770 oat_header.UpdateChecksum(&dex_file_location_checksum_, sizeof(dex_file_location_checksum_));
Brian Carlstrom89521892011-12-07 22:05:07 -0800771 oat_header.UpdateChecksum(&dex_file_offset_, sizeof(dex_file_offset_));
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800772 oat_header.UpdateChecksum(&methods_offsets_[0],
773 sizeof(methods_offsets_[0]) * methods_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700774}
775
776bool OatWriter::OatDexFile::Write(File* file) const {
777 if (!file->WriteFully(&dex_file_location_size_, sizeof(dex_file_location_size_))) {
Elliott Hughes234da572011-11-03 22:13:06 -0700778 PLOG(ERROR) << "Failed to write dex file location length to " << file->name();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700779 return false;
780 }
781 if (!file->WriteFully(dex_file_location_data_, dex_file_location_size_)) {
Elliott Hughes234da572011-11-03 22:13:06 -0700782 PLOG(ERROR) << "Failed to write dex file location data to " << file->name();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700783 return false;
784 }
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800785 if (!file->WriteFully(&dex_file_location_checksum_, sizeof(dex_file_location_checksum_))) {
786 PLOG(ERROR) << "Failed to write dex file location checksum to " << file->name();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700787 return false;
788 }
Brian Carlstrom89521892011-12-07 22:05:07 -0800789 if (!file->WriteFully(&dex_file_offset_, sizeof(dex_file_offset_))) {
790 PLOG(ERROR) << "Failed to write dex file offset to " << file->name();
791 return false;
792 }
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800793 if (!file->WriteFully(&methods_offsets_[0],
794 sizeof(methods_offsets_[0]) * methods_offsets_.size())) {
Elliott Hughes234da572011-11-03 22:13:06 -0700795 PLOG(ERROR) << "Failed to write methods offsets to " << file->name();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700796 return false;
797 }
798 return true;
799}
800
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800801OatWriter::OatClass::OatClass(Class::Status status, uint32_t methods_count) {
802 status_ = status;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700803 method_offsets_.resize(methods_count);
804}
805
Brian Carlstrom389efb02012-01-11 12:06:26 -0800806size_t OatWriter::OatClass::SizeOf() const {
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800807 return sizeof(status_)
808 + (sizeof(method_offsets_[0]) * method_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700809}
810
Brian Carlstrom389efb02012-01-11 12:06:26 -0800811void OatWriter::OatClass::UpdateChecksum(OatHeader& oat_header) const {
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800812 oat_header.UpdateChecksum(&status_, sizeof(status_));
813 oat_header.UpdateChecksum(&method_offsets_[0],
814 sizeof(method_offsets_[0]) * method_offsets_.size());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700815}
816
Brian Carlstrom389efb02012-01-11 12:06:26 -0800817bool OatWriter::OatClass::Write(File* file) const {
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800818 if (!file->WriteFully(&status_, sizeof(status_))) {
819 PLOG(ERROR) << "Failed to write class status to " << file->name();
820 return false;
821 }
822 if (!file->WriteFully(&method_offsets_[0],
823 sizeof(method_offsets_[0]) * method_offsets_.size())) {
Elliott Hughes234da572011-11-03 22:13:06 -0700824 PLOG(ERROR) << "Failed to write method offsets to " << file->name();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700825 return false;
826 }
827 return true;
828}
829
Logan Chien25ae6402012-03-20 20:19:26 +0800830OatWriter::OatElfImage::OatElfImage(const ElfImage& image)
831 : elf_offset_(0), elf_size_(image.size()), elf_addr_(image.begin()) {
832}
833
834size_t OatWriter::OatElfImage::SizeOf() const {
835 return (sizeof(elf_offset_) + sizeof(elf_size_));
836}
837
838uint32_t OatWriter::OatElfImage::GetElfSize() const {
839 return elf_size_;
840}
841
842uint32_t OatWriter::OatElfImage::GetElfOffset() const {
843 DCHECK_NE(elf_offset_, 0U);
844 return elf_offset_;
845}
846
847void OatWriter::OatElfImage::SetElfOffset(uint32_t offset) {
848 DCHECK_NE(offset, 0U);
849 DCHECK((offset & 0x3LU) == 0);
850 elf_offset_ = offset;
851}
852
853bool OatWriter::OatElfImage::Write(File* file) const {
854 DCHECK_NE(elf_offset_, 0U);
855 if (!file->WriteFully(&elf_offset_, sizeof(elf_offset_))) {
856 PLOG(ERROR) << "Failed to write ELF offset to " << file->name();
857 return false;
858 }
859 if (!file->WriteFully(&elf_size_, sizeof(elf_size_))) {
860 PLOG(ERROR) << "Failed to write ELF size to " << file->name();
861 return false;
862 }
863 return true;
864}
865
866bool OatWriter::OatElfImage::WriteElfImage(File* file) const {
867 if (!file->WriteFully(elf_addr_, elf_size_)) {
868 PLOG(ERROR) << "Failed to write ELF image to " << file->name();
869 return false;
870 }
871 return true;
872}
873
Brian Carlstrome24fa612011-09-29 00:53:55 -0700874} // namespace art