blob: 7f7bab98afa5530f1070cb590108436cfa38892b [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_file.h"
18
Brian Carlstrom700c8d32012-11-05 10:42:02 -080019#include <dlfcn.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 Carlstrom700c8d32012-11-05 10:42:02 -080023#include "elf_file.h"
24#include "oat.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080025#include "mirror/class.h"
26#include "mirror/abstract_method.h"
27#include "mirror/abstract_method-inl.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070028#include "mirror/object-inl.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070029#include "os.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080030#include "utils.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070031
32namespace art {
33
jeffhao262bf462011-10-20 18:36:32 -070034std::string OatFile::DexFilenameToOatFilename(const std::string& location) {
jeffhao262bf462011-10-20 18:36:32 -070035 CHECK(IsValidDexFilename(location) || IsValidZipFilename(location));
Brian Carlstroma6cc8932012-01-04 14:44:07 -080036 std::string oat_location(location);
37 oat_location += ".oat";
jeffhao262bf462011-10-20 18:36:32 -070038 return oat_location;
Brian Carlstromb7bbba42011-10-13 14:58:47 -070039}
40
Brian Carlstrom700c8d32012-11-05 10:42:02 -080041void OatFile::CheckLocation(const std::string& location) {
Brian Carlstrom7a967b32012-03-28 15:23:10 -070042 CHECK(!location.empty());
43 if (!IsValidOatFilename(location)) {
Brian Carlstromf852fb22012-10-19 11:01:58 -070044 LOG(WARNING) << "Attempting to open oat file with unknown extension '" << location << "'";
Brian Carlstrom7a967b32012-03-28 15:23:10 -070045 }
Brian Carlstrom700c8d32012-11-05 10:42:02 -080046}
47
Brian Carlstrom265091e2013-01-30 14:08:26 -080048OatFile* OatFile::OpenMemory(std::vector<uint8_t>& oat_contents,
49 const std::string& location) {
Brian Carlstrom700c8d32012-11-05 10:42:02 -080050 CHECK(!oat_contents.empty()) << location;
51 CheckLocation(location);
Brian Carlstrom5b332c82012-02-01 15:02:31 -080052 UniquePtr<OatFile> oat_file(new OatFile(location));
Brian Carlstrom700c8d32012-11-05 10:42:02 -080053 oat_file->begin_ = &oat_contents[0];
54 oat_file->end_ = &oat_contents[oat_contents.size()];
55 oat_file->Setup();
56 return oat_file.release();
57}
58
59OatFile* OatFile::Open(const std::string& filename,
60 const std::string& location,
61 byte* requested_base) {
62 CHECK(!filename.empty()) << location;
63 CheckLocation(location);
Jeff Haof9e609f2013-02-15 16:36:29 -080064 /*
65 * TODO: Reenable dlopen when it works again on MIPS. It may have broken from this change:
66 * commit 818d98eb563ad5d7293b8b5c40f3dabf745e611f
67 * Author: Brian Carlstrom <bdc@google.com>
68 * Date: Sun Feb 10 21:38:12 2013 -0800
69 *
70 * Fix MIPS to use standard kPageSize=0x1000 section alignment for ELF sections
71 *
72 * Change-Id: I905f0c5f75921a65bd7426a54d6258c780d85d0e
Brian Carlstrom265091e2013-01-30 14:08:26 -080073 */
Brian Carlstrom700c8d32012-11-05 10:42:02 -080074 OatFile* result = OpenDlopen(filename, location, requested_base);
75 if (result != NULL) {
76 return result;
77 }
Brian Carlstrom265091e2013-01-30 14:08:26 -080078 // On target, only used dlopen to load.
79 if (kIsTargetBuild) {
80 return NULL;
81 }
82 // On host, dlopen is expected to fail when cross compiling, so fall back to OpenElfFile.
83 // This won't work for portable runtime execution because it doesn't process relocations.
Brian Carlstrom700c8d32012-11-05 10:42:02 -080084 UniquePtr<File> file(OS::OpenFile(filename.c_str(), false, false));
85 if (file.get() == NULL) {
86 return NULL;
87 }
88 return OpenElfFile(file.get(), location, requested_base, false);
89}
90
Brian Carlstrom265091e2013-01-30 14:08:26 -080091OatFile* OatFile::OpenWritable(File* file, const std::string& location) {
Brian Carlstrom700c8d32012-11-05 10:42:02 -080092 CheckLocation(location);
Brian Carlstrom265091e2013-01-30 14:08:26 -080093 return OpenElfFile(file, location, NULL, true);
Brian Carlstrom700c8d32012-11-05 10:42:02 -080094}
95
96OatFile* OatFile::OpenDlopen(const std::string& elf_filename,
97 const std::string& location,
98 byte* requested_base) {
99 UniquePtr<OatFile> oat_file(new OatFile(location));
100 bool success = oat_file->Dlopen(elf_filename, requested_base);
101 if (!success) {
102 return NULL;
103 }
104 return oat_file.release();
105}
106
107OatFile* OatFile::OpenElfFile(File* file,
108 const std::string& location,
109 byte* requested_base,
110 bool writable) {
111 UniquePtr<OatFile> oat_file(new OatFile(location));
112 bool success = oat_file->ElfFileOpen(file, requested_base, writable);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700113 if (!success) {
114 return NULL;
115 }
116 return oat_file.release();
117}
118
Logan Chien0c717dd2012-03-28 18:31:07 +0800119OatFile::OatFile(const std::string& location)
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800120 : location_(location), begin_(NULL), end_(NULL), dlopen_handle_(NULL) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800121 CHECK(!location_.empty());
122}
Brian Carlstrome24fa612011-09-29 00:53:55 -0700123
124OatFile::~OatFile() {
125 STLDeleteValues(&oat_dex_files_);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800126 if (dlopen_handle_ != NULL) {
127 dlclose(dlopen_handle_);
128 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700129}
130
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800131bool OatFile::Dlopen(const std::string& elf_filename, byte* requested_base) {
132
133 char* absolute_path = realpath(elf_filename.c_str(), NULL);
134 if (absolute_path == NULL) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700135 return false;
136 }
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800137 dlopen_handle_ = dlopen(absolute_path, RTLD_NOW);
138 free(absolute_path);
139 if (dlopen_handle_ == NULL) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700140 return false;
141 }
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800142 begin_ = reinterpret_cast<byte*>(dlsym(dlopen_handle_, "oatdata"));
143 if (begin_ == NULL) {
144 LOG(WARNING) << "Failed to find oatdata symbol in " << elf_filename << ": " << dlerror();
145 return false;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700146 }
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800147 if (requested_base != NULL && begin_ != requested_base) {
148 std::string maps;
149 ReadFileToString("/proc/self/maps", &maps);
150 LOG(WARNING) << "Failed to find oatdata symbol at expected address: oatdata="
151 << reinterpret_cast<const void*>(begin_) << " != expected="
152 << reinterpret_cast<const void*>(requested_base)
153 << " /proc/self/maps:\n" << maps;
154 return false;
155 }
156 end_ = reinterpret_cast<byte*>(dlsym(dlopen_handle_, "oatlastword"));
157 if (end_ == NULL) {
158 LOG(WARNING) << "Failed to find oatlastword symbol in " << elf_filename << ": " << dlerror();
159 return false;
160 }
161 // Readjust to be non-inclusive upper bound.
162 end_ += sizeof(uint32_t);
163 Setup();
164 return true;
165}
Brian Carlstrome24fa612011-09-29 00:53:55 -0700166
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800167bool OatFile::ElfFileOpen(File* file, byte* requested_base, bool writable) {
168 elf_file_.reset(ElfFile::Open(file, writable, true));
169 if (elf_file_.get() == NULL) {
170 PLOG(WARNING) << "Failed to create ELF file for " << file->GetPath();
171 return false;
172 }
173 bool loaded = elf_file_->Load();
174 if (!loaded) {
175 LOG(WARNING) << "Failed to load ELF file " << file->GetPath();
176 return false;
177 }
178 begin_ = elf_file_->FindDynamicSymbolAddress("oatdata");
179 if (begin_ == NULL) {
180 LOG(WARNING) << "Failed to find oatdata symbol in " << file->GetPath();
181 return false;
182 }
183 if (requested_base != NULL && begin_ != requested_base) {
184 std::string maps;
185 ReadFileToString("/proc/self/maps", &maps);
186 LOG(WARNING) << "Failed to find oatdata symbol at expected address: oatdata="
187 << reinterpret_cast<const void*>(begin_) << " != expected="
188 << reinterpret_cast<const void*>(requested_base)
189 << " /proc/self/maps:\n" << maps;
190 return false;
191 }
192 end_ = elf_file_->FindDynamicSymbolAddress("oatlastword");
193 if (end_ == NULL) {
194 LOG(WARNING) << "Failed to find oatlastword symbol in " << file->GetPath();
195 return false;
196 }
197 // Readjust to be non-inclusive upper bound.
198 end_ += sizeof(uint32_t);
199 Setup();
200 return true;
201}
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800202
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800203void OatFile::Setup() {
204 const byte* oat = Begin();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700205 oat += sizeof(OatHeader);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800206 oat += GetOatHeader().GetImageFileLocationSize();
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700207
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800208 CHECK_LE(oat, End())
209 << reinterpret_cast<const void*>(Begin())
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700210 << "+" << sizeof(OatHeader)
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800211 << "+" << GetOatHeader().GetImageFileLocationSize()
212 << "<=" << reinterpret_cast<const void*>(End())
213 << " " << GetLocation();
214 for (size_t i = 0; i < GetOatHeader().GetDexFileCount(); i++) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700215 size_t dex_file_location_size = *reinterpret_cast<const uint32_t*>(oat);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800216 CHECK_GT(dex_file_location_size, 0U) << GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700217 oat += sizeof(dex_file_location_size);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800218 CHECK_LT(oat, End()) << GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700219
220 const char* dex_file_location_data = reinterpret_cast<const char*>(oat);
221 oat += dex_file_location_size;
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800222 CHECK_LT(oat, End()) << GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700223
224 std::string dex_file_location(dex_file_location_data, dex_file_location_size);
225
226 uint32_t dex_file_checksum = *reinterpret_cast<const uint32_t*>(oat);
227 oat += sizeof(dex_file_checksum);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800228 CHECK_LT(oat, End()) << GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700229
Brian Carlstrom89521892011-12-07 22:05:07 -0800230 uint32_t dex_file_offset = *reinterpret_cast<const uint32_t*>(oat);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800231 CHECK_GT(dex_file_offset, 0U) << GetLocation();
232 CHECK_LT(dex_file_offset, Size()) << GetLocation();
Brian Carlstrom89521892011-12-07 22:05:07 -0800233 oat += sizeof(dex_file_offset);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800234 CHECK_LT(oat, End()) << GetLocation();
Brian Carlstrom89521892011-12-07 22:05:07 -0800235
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800236 const uint8_t* dex_file_pointer = Begin() + dex_file_offset;
Brian Carlstromf852fb22012-10-19 11:01:58 -0700237 CHECK(DexFile::IsMagicValid(dex_file_pointer))
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800238 << GetLocation() << " " << dex_file_pointer;
Brian Carlstromf852fb22012-10-19 11:01:58 -0700239 CHECK(DexFile::IsVersionValid(dex_file_pointer))
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800240 << GetLocation() << " " << dex_file_pointer;
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800241 const DexFile::Header* header = reinterpret_cast<const DexFile::Header*>(dex_file_pointer);
242 const uint32_t* methods_offsets_pointer = reinterpret_cast<const uint32_t*>(oat);
Brian Carlstrom89521892011-12-07 22:05:07 -0800243
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800244 oat += (sizeof(*methods_offsets_pointer) * header->class_defs_size_);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800245 CHECK_LE(oat, End()) << GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700246
Elliott Hughesa0e18062012-04-13 15:59:59 -0700247 oat_dex_files_.Put(dex_file_location, new OatDexFile(this,
248 dex_file_location,
249 dex_file_checksum,
250 dex_file_pointer,
251 methods_offsets_pointer));
Brian Carlstrome24fa612011-09-29 00:53:55 -0700252 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700253}
254
255const OatHeader& OatFile::GetOatHeader() const {
Ian Rogers30fab402012-01-23 15:43:46 -0800256 return *reinterpret_cast<const OatHeader*>(Begin());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700257}
258
Ian Rogers30fab402012-01-23 15:43:46 -0800259const byte* OatFile::Begin() const {
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800260 CHECK(begin_ != NULL);
261 return begin_;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700262}
263
Ian Rogers30fab402012-01-23 15:43:46 -0800264const byte* OatFile::End() const {
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800265 CHECK(end_ != NULL);
266 return end_;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700267}
268
Ian Rogers7fe2c692011-12-06 16:35:59 -0800269const OatFile::OatDexFile* OatFile::GetOatDexFile(const std::string& dex_file_location,
270 bool warn_if_not_found) const {
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700271 Table::const_iterator it = oat_dex_files_.find(dex_file_location);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700272 if (it == oat_dex_files_.end()) {
Ian Rogers7fe2c692011-12-06 16:35:59 -0800273 if (warn_if_not_found) {
274 LOG(WARNING) << "Failed to find OatDexFile for DexFile " << dex_file_location;
275 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700276 return NULL;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700277 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700278 return it->second;
279}
280
281std::vector<const OatFile::OatDexFile*> OatFile::GetOatDexFiles() const {
282 std::vector<const OatFile::OatDexFile*> result;
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700283 for (Table::const_iterator it = oat_dex_files_.begin(); it != oat_dex_files_.end(); ++it) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700284 result.push_back(it->second);
285 }
286 return result;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700287}
288
289OatFile::OatDexFile::OatDexFile(const OatFile* oat_file,
Elliott Hughesaa6a5882012-01-13 19:39:16 -0800290 const std::string& dex_file_location,
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800291 uint32_t dex_file_location_checksum,
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800292 const byte* dex_file_pointer,
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800293 const uint32_t* oat_class_offsets_pointer)
Brian Carlstrome24fa612011-09-29 00:53:55 -0700294 : oat_file_(oat_file),
295 dex_file_location_(dex_file_location),
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800296 dex_file_location_checksum_(dex_file_location_checksum),
Brian Carlstrom89521892011-12-07 22:05:07 -0800297 dex_file_pointer_(dex_file_pointer),
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800298 oat_class_offsets_pointer_(oat_class_offsets_pointer) {}
Brian Carlstrome24fa612011-09-29 00:53:55 -0700299
300OatFile::OatDexFile::~OatDexFile() {}
301
Ian Rogers05f28c62012-10-23 18:12:13 -0700302size_t OatFile::OatDexFile::FileSize() const {
303 return reinterpret_cast<const DexFile::Header*>(dex_file_pointer_)->file_size_;
304}
305
Brian Carlstrom89521892011-12-07 22:05:07 -0800306const DexFile* OatFile::OatDexFile::OpenDexFile() const {
Ian Rogers05f28c62012-10-23 18:12:13 -0700307 return DexFile::Open(dex_file_pointer_, FileSize(), dex_file_location_,
Brian Carlstrom28db0122012-10-18 16:20:41 -0700308 dex_file_location_checksum_);
Brian Carlstrom89521892011-12-07 22:05:07 -0800309}
310
Brian Carlstromaded5f72011-10-07 17:15:04 -0700311const OatFile::OatClass* OatFile::OatDexFile::GetOatClass(uint32_t class_def_index) const {
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800312 uint32_t oat_class_offset = oat_class_offsets_pointer_[class_def_index];
313
Ian Rogers30fab402012-01-23 15:43:46 -0800314 const byte* oat_class_pointer = oat_file_->Begin() + oat_class_offset;
315 CHECK_LT(oat_class_pointer, oat_file_->End());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800316 mirror::Class::Status status = *reinterpret_cast<const mirror::Class::Status*>(oat_class_pointer);
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800317
318 const byte* methods_pointer = oat_class_pointer + sizeof(status);
Ian Rogers30fab402012-01-23 15:43:46 -0800319 CHECK_LT(methods_pointer, oat_file_->End());
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800320
321 return new OatClass(oat_file_,
322 status,
323 reinterpret_cast<const OatMethodOffsets*>(methods_pointer));
Brian Carlstrome24fa612011-09-29 00:53:55 -0700324}
325
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800326OatFile::OatClass::OatClass(const OatFile* oat_file,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800327 mirror::Class::Status status,
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800328 const OatMethodOffsets* methods_pointer)
329 : oat_file_(oat_file), status_(status), methods_pointer_(methods_pointer) {}
Brian Carlstrome24fa612011-09-29 00:53:55 -0700330
331OatFile::OatClass::~OatClass() {}
332
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800333mirror::Class::Status OatFile::OatClass::GetStatus() const {
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800334 return status_;
335}
336
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700337const OatFile::OatMethod OatFile::OatClass::GetOatMethod(uint32_t method_index) const {
338 const OatMethodOffsets& oat_method_offsets = methods_pointer_[method_index];
339 return OatMethod(
Ian Rogers30fab402012-01-23 15:43:46 -0800340 oat_file_->Begin(),
Brian Carlstromae826982011-11-09 01:33:42 -0800341 oat_method_offsets.code_offset_,
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700342 oat_method_offsets.frame_size_in_bytes_,
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700343 oat_method_offsets.core_spill_mask_,
344 oat_method_offsets.fp_spill_mask_,
Brian Carlstromae826982011-11-09 01:33:42 -0800345 oat_method_offsets.mapping_table_offset_,
346 oat_method_offsets.vmap_table_offset_,
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800347 oat_method_offsets.gc_map_offset_,
Logan Chien0c717dd2012-03-28 18:31:07 +0800348 oat_method_offsets.invoke_stub_offset_
Ian Rogersc928de92013-02-27 14:30:44 -0800349#if defined(ART_USE_PORTABLE_COMPILER)
Logan Chien971bf3f2012-05-01 15:47:55 +0800350 , oat_method_offsets.proxy_stub_offset_
Logan Chien0c717dd2012-03-28 18:31:07 +0800351#endif
352 );
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700353}
354
Brian Carlstromae826982011-11-09 01:33:42 -0800355OatFile::OatMethod::OatMethod(const byte* base,
356 const uint32_t code_offset,
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700357 const size_t frame_size_in_bytes,
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700358 const uint32_t core_spill_mask,
359 const uint32_t fp_spill_mask,
Brian Carlstromae826982011-11-09 01:33:42 -0800360 const uint32_t mapping_table_offset,
361 const uint32_t vmap_table_offset,
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800362 const uint32_t gc_map_offset,
Logan Chien0c717dd2012-03-28 18:31:07 +0800363 const uint32_t invoke_stub_offset
Ian Rogersc928de92013-02-27 14:30:44 -0800364#if defined(ART_USE_PORTABLE_COMPILER)
Logan Chien971bf3f2012-05-01 15:47:55 +0800365 , const uint32_t proxy_stub_offset
Logan Chien0c717dd2012-03-28 18:31:07 +0800366#endif
367 )
Ian Rogers30fab402012-01-23 15:43:46 -0800368 : begin_(base),
Brian Carlstromae826982011-11-09 01:33:42 -0800369 code_offset_(code_offset),
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700370 frame_size_in_bytes_(frame_size_in_bytes),
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700371 core_spill_mask_(core_spill_mask),
372 fp_spill_mask_(fp_spill_mask),
Brian Carlstromae826982011-11-09 01:33:42 -0800373 mapping_table_offset_(mapping_table_offset),
374 vmap_table_offset_(vmap_table_offset),
Ian Rogers0c7abda2012-09-19 13:33:42 -0700375 native_gc_map_offset_(gc_map_offset),
Logan Chien0c717dd2012-03-28 18:31:07 +0800376 invoke_stub_offset_(invoke_stub_offset)
Ian Rogersc928de92013-02-27 14:30:44 -0800377#if defined(ART_USE_PORTABLE_COMPILER)
Logan Chien971bf3f2012-05-01 15:47:55 +0800378 , proxy_stub_offset_(proxy_stub_offset)
Logan Chien0c717dd2012-03-28 18:31:07 +0800379#endif
380{
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700381#ifndef NDEBUG
Brian Carlstromae826982011-11-09 01:33:42 -0800382 if (mapping_table_offset_ != 0) { // implies non-native, non-stub code
383 if (vmap_table_offset_ == 0) {
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700384 DCHECK_EQ(0U, static_cast<uint32_t>(__builtin_popcount(core_spill_mask_) + __builtin_popcount(fp_spill_mask_)));
385 } else {
Ian Rogers30fab402012-01-23 15:43:46 -0800386 const uint16_t* vmap_table_ = reinterpret_cast<const uint16_t*>(begin_ + vmap_table_offset_);
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700387 DCHECK_EQ(vmap_table_[0], static_cast<uint32_t>(__builtin_popcount(core_spill_mask_) + __builtin_popcount(fp_spill_mask_)));
388 }
389 } else {
Elliott Hughesba8eee12012-01-24 20:25:24 -0800390 DCHECK_EQ(vmap_table_offset_, 0U);
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700391 }
392#endif
393}
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700394
395OatFile::OatMethod::~OatMethod() {}
396
Logan Chien0c717dd2012-03-28 18:31:07 +0800397const void* OatFile::OatMethod::GetCode() const {
Logan Chien971bf3f2012-05-01 15:47:55 +0800398 return GetOatPointer<const void*>(code_offset_);
Logan Chien0c717dd2012-03-28 18:31:07 +0800399}
400
401uint32_t OatFile::OatMethod::GetCodeSize() const {
Brian Carlstrom265091e2013-01-30 14:08:26 -0800402#if defined(ART_USE_PORTABLE_COMPILER)
403 // TODO: With Quick, we store the size before the code. With
404 // Portable, the code is in a .o file we don't manage ourselves. ELF
405 // symbols do have a concept of size, so we could capture that and
406 // store it somewhere, such as the OatMethod.
407 return 0;
408#else
Logan Chien971bf3f2012-05-01 15:47:55 +0800409 uintptr_t code = reinterpret_cast<uint32_t>(GetCode());
Logan Chien0c717dd2012-03-28 18:31:07 +0800410
Logan Chien971bf3f2012-05-01 15:47:55 +0800411 if (code == 0) {
Logan Chien0c717dd2012-03-28 18:31:07 +0800412 return 0;
413 }
Logan Chien971bf3f2012-05-01 15:47:55 +0800414 // TODO: make this Thumb2 specific
415 code &= ~0x1;
416 return reinterpret_cast<uint32_t*>(code)[-1];
Brian Carlstrom265091e2013-01-30 14:08:26 -0800417#endif
Logan Chien0c717dd2012-03-28 18:31:07 +0800418}
419
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800420mirror::AbstractMethod::InvokeStub* OatFile::OatMethod::GetInvokeStub() const {
Ian Rogers1b09b092012-08-20 15:35:52 -0700421 const byte* stub = GetOatPointer<const byte*>(invoke_stub_offset_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800422 return reinterpret_cast<mirror::AbstractMethod::InvokeStub*>(const_cast<byte*>(stub));
Logan Chien0c717dd2012-03-28 18:31:07 +0800423}
424
425uint32_t OatFile::OatMethod::GetInvokeStubSize() const {
Brian Carlstrom265091e2013-01-30 14:08:26 -0800426#if defined(ART_USE_PORTABLE_COMPILER)
427 return 0;
428#else
Logan Chien971bf3f2012-05-01 15:47:55 +0800429 uintptr_t code = reinterpret_cast<uint32_t>(GetInvokeStub());
430 if (code == 0) {
Logan Chien0c717dd2012-03-28 18:31:07 +0800431 return 0;
432 }
Logan Chien971bf3f2012-05-01 15:47:55 +0800433 // TODO: make this Thumb2 specific
434 code &= ~0x1;
435 return reinterpret_cast<uint32_t*>(code)[-1];
Brian Carlstrom265091e2013-01-30 14:08:26 -0800436#endif
Logan Chien0c717dd2012-03-28 18:31:07 +0800437}
438
Ian Rogersc928de92013-02-27 14:30:44 -0800439#if defined(ART_USE_PORTABLE_COMPILER)
TDYa127eead4ac2012-06-03 07:15:25 -0700440const void* OatFile::OatMethod::GetProxyStub() const {
Logan Chien971bf3f2012-05-01 15:47:55 +0800441 return GetOatPointer<const void*>(proxy_stub_offset_);
TDYa127eead4ac2012-06-03 07:15:25 -0700442}
443#endif
444
Brian Carlstrom265091e2013-01-30 14:08:26 -0800445void OatFile::OatMethod::LinkMethod(mirror::AbstractMethod* method) const {
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700446 CHECK(method != NULL);
Brian Carlstromae826982011-11-09 01:33:42 -0800447 method->SetCode(GetCode());
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700448 method->SetFrameSizeInBytes(frame_size_in_bytes_);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700449 method->SetCoreSpillMask(core_spill_mask_);
450 method->SetFpSpillMask(fp_spill_mask_);
Brian Carlstromae826982011-11-09 01:33:42 -0800451 method->SetMappingTable(GetMappingTable());
452 method->SetVmapTable(GetVmapTable());
Ian Rogers0c7abda2012-09-19 13:33:42 -0700453 method->SetNativeGcMap(GetNativeGcMap()); // Note, used by native methods in work around JNI mode.
Brian Carlstromae826982011-11-09 01:33:42 -0800454 method->SetInvokeStub(GetInvokeStub());
455}
456
Brian Carlstrome24fa612011-09-29 00:53:55 -0700457} // namespace art