blob: b806df82d6532883ba8298fd542a653b0cf931fe [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"
Brian Carlstrome24fa612011-09-29 00:53:55 -070028#include "os.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080029#include "utils.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070030
31namespace art {
32
jeffhao262bf462011-10-20 18:36:32 -070033std::string OatFile::DexFilenameToOatFilename(const std::string& location) {
jeffhao262bf462011-10-20 18:36:32 -070034 CHECK(IsValidDexFilename(location) || IsValidZipFilename(location));
Brian Carlstroma6cc8932012-01-04 14:44:07 -080035 std::string oat_location(location);
36 oat_location += ".oat";
jeffhao262bf462011-10-20 18:36:32 -070037 return oat_location;
Brian Carlstromb7bbba42011-10-13 14:58:47 -070038}
39
Brian Carlstrom700c8d32012-11-05 10:42:02 -080040void OatFile::CheckLocation(const std::string& location) {
Brian Carlstrom7a967b32012-03-28 15:23:10 -070041 CHECK(!location.empty());
42 if (!IsValidOatFilename(location)) {
Brian Carlstromf852fb22012-10-19 11:01:58 -070043 LOG(WARNING) << "Attempting to open oat file with unknown extension '" << location << "'";
Brian Carlstrom7a967b32012-03-28 15:23:10 -070044 }
Brian Carlstrom700c8d32012-11-05 10:42:02 -080045}
46
47OatFile* OatFile::Open(std::vector<uint8_t>& oat_contents,
48 const std::string& location) {
49 CHECK(!oat_contents.empty()) << location;
50 CheckLocation(location);
Brian Carlstrom5b332c82012-02-01 15:02:31 -080051 UniquePtr<OatFile> oat_file(new OatFile(location));
Brian Carlstrom700c8d32012-11-05 10:42:02 -080052 oat_file->begin_ = &oat_contents[0];
53 oat_file->end_ = &oat_contents[oat_contents.size()];
54 oat_file->Setup();
55 return oat_file.release();
56}
57
58OatFile* OatFile::Open(const std::string& filename,
59 const std::string& location,
60 byte* requested_base) {
61 CHECK(!filename.empty()) << location;
62 CheckLocation(location);
63 OatFile* result = OpenDlopen(filename, location, requested_base);
64 if (result != NULL) {
65 return result;
66 }
67 UniquePtr<File> file(OS::OpenFile(filename.c_str(), false, false));
68 if (file.get() == NULL) {
69 return NULL;
70 }
71 return OpenElfFile(file.get(), location, requested_base, false);
72}
73
74OatFile* OatFile::Open(File* file,
75 const std::string& location,
76 byte* requested_base,
77 bool writable) {
78 CheckLocation(location);
79 return OpenElfFile(file, location, requested_base, writable);
80}
81
82OatFile* OatFile::OpenDlopen(const std::string& elf_filename,
83 const std::string& location,
84 byte* requested_base) {
85 UniquePtr<OatFile> oat_file(new OatFile(location));
86 bool success = oat_file->Dlopen(elf_filename, requested_base);
87 if (!success) {
88 return NULL;
89 }
90 return oat_file.release();
91}
92
93OatFile* OatFile::OpenElfFile(File* file,
94 const std::string& location,
95 byte* requested_base,
96 bool writable) {
97 UniquePtr<OatFile> oat_file(new OatFile(location));
98 bool success = oat_file->ElfFileOpen(file, requested_base, writable);
Brian Carlstrome24fa612011-09-29 00:53:55 -070099 if (!success) {
100 return NULL;
101 }
102 return oat_file.release();
103}
104
Logan Chien0c717dd2012-03-28 18:31:07 +0800105OatFile::OatFile(const std::string& location)
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800106 : location_(location), begin_(NULL), end_(NULL), dlopen_handle_(NULL) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800107 CHECK(!location_.empty());
108}
Brian Carlstrome24fa612011-09-29 00:53:55 -0700109
110OatFile::~OatFile() {
111 STLDeleteValues(&oat_dex_files_);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800112 if (dlopen_handle_ != NULL) {
113 dlclose(dlopen_handle_);
114 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700115}
116
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800117bool OatFile::Dlopen(const std::string& elf_filename, byte* requested_base) {
118
119 char* absolute_path = realpath(elf_filename.c_str(), NULL);
120 if (absolute_path == NULL) {
121 PLOG(WARNING) << "Failed to create absolute path for " << elf_filename;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700122 return false;
123 }
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800124 dlopen_handle_ = dlopen(absolute_path, RTLD_NOW);
125 free(absolute_path);
126 if (dlopen_handle_ == NULL) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700127 return false;
128 }
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800129 begin_ = reinterpret_cast<byte*>(dlsym(dlopen_handle_, "oatdata"));
130 if (begin_ == NULL) {
131 LOG(WARNING) << "Failed to find oatdata symbol in " << elf_filename << ": " << dlerror();
132 return false;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700133 }
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800134 if (requested_base != NULL && begin_ != requested_base) {
135 std::string maps;
136 ReadFileToString("/proc/self/maps", &maps);
137 LOG(WARNING) << "Failed to find oatdata symbol at expected address: oatdata="
138 << reinterpret_cast<const void*>(begin_) << " != expected="
139 << reinterpret_cast<const void*>(requested_base)
140 << " /proc/self/maps:\n" << maps;
141 return false;
142 }
143 end_ = reinterpret_cast<byte*>(dlsym(dlopen_handle_, "oatlastword"));
144 if (end_ == NULL) {
145 LOG(WARNING) << "Failed to find oatlastword symbol in " << elf_filename << ": " << dlerror();
146 return false;
147 }
148 // Readjust to be non-inclusive upper bound.
149 end_ += sizeof(uint32_t);
150 Setup();
151 return true;
152}
Brian Carlstrome24fa612011-09-29 00:53:55 -0700153
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800154bool OatFile::ElfFileOpen(File* file, byte* requested_base, bool writable) {
155 elf_file_.reset(ElfFile::Open(file, writable, true));
156 if (elf_file_.get() == NULL) {
157 PLOG(WARNING) << "Failed to create ELF file for " << file->GetPath();
158 return false;
159 }
160 bool loaded = elf_file_->Load();
161 if (!loaded) {
162 LOG(WARNING) << "Failed to load ELF file " << file->GetPath();
163 return false;
164 }
165 begin_ = elf_file_->FindDynamicSymbolAddress("oatdata");
166 if (begin_ == NULL) {
167 LOG(WARNING) << "Failed to find oatdata symbol in " << file->GetPath();
168 return false;
169 }
170 if (requested_base != NULL && begin_ != requested_base) {
171 std::string maps;
172 ReadFileToString("/proc/self/maps", &maps);
173 LOG(WARNING) << "Failed to find oatdata symbol at expected address: oatdata="
174 << reinterpret_cast<const void*>(begin_) << " != expected="
175 << reinterpret_cast<const void*>(requested_base)
176 << " /proc/self/maps:\n" << maps;
177 return false;
178 }
179 end_ = elf_file_->FindDynamicSymbolAddress("oatlastword");
180 if (end_ == NULL) {
181 LOG(WARNING) << "Failed to find oatlastword symbol in " << file->GetPath();
182 return false;
183 }
184 // Readjust to be non-inclusive upper bound.
185 end_ += sizeof(uint32_t);
186 Setup();
187 return true;
188}
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800189
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800190void OatFile::Setup() {
191 const byte* oat = Begin();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700192 oat += sizeof(OatHeader);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800193 oat += GetOatHeader().GetImageFileLocationSize();
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700194
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800195 CHECK_LE(oat, End())
196 << reinterpret_cast<const void*>(Begin())
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700197 << "+" << sizeof(OatHeader)
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800198 << "+" << GetOatHeader().GetImageFileLocationSize()
199 << "<=" << reinterpret_cast<const void*>(End())
200 << " " << GetLocation();
201 for (size_t i = 0; i < GetOatHeader().GetDexFileCount(); i++) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700202 size_t dex_file_location_size = *reinterpret_cast<const uint32_t*>(oat);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800203 CHECK_GT(dex_file_location_size, 0U) << GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700204 oat += sizeof(dex_file_location_size);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800205 CHECK_LT(oat, End()) << GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700206
207 const char* dex_file_location_data = reinterpret_cast<const char*>(oat);
208 oat += dex_file_location_size;
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800209 CHECK_LT(oat, End()) << GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700210
211 std::string dex_file_location(dex_file_location_data, dex_file_location_size);
212
213 uint32_t dex_file_checksum = *reinterpret_cast<const uint32_t*>(oat);
214 oat += sizeof(dex_file_checksum);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800215 CHECK_LT(oat, End()) << GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700216
Brian Carlstrom89521892011-12-07 22:05:07 -0800217 uint32_t dex_file_offset = *reinterpret_cast<const uint32_t*>(oat);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800218 CHECK_GT(dex_file_offset, 0U) << GetLocation();
219 CHECK_LT(dex_file_offset, Size()) << GetLocation();
Brian Carlstrom89521892011-12-07 22:05:07 -0800220 oat += sizeof(dex_file_offset);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800221 CHECK_LT(oat, End()) << GetLocation();
Brian Carlstrom89521892011-12-07 22:05:07 -0800222
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800223 const uint8_t* dex_file_pointer = Begin() + dex_file_offset;
Brian Carlstromf852fb22012-10-19 11:01:58 -0700224 CHECK(DexFile::IsMagicValid(dex_file_pointer))
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800225 << GetLocation() << " " << dex_file_pointer;
Brian Carlstromf852fb22012-10-19 11:01:58 -0700226 CHECK(DexFile::IsVersionValid(dex_file_pointer))
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800227 << GetLocation() << " " << dex_file_pointer;
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800228 const DexFile::Header* header = reinterpret_cast<const DexFile::Header*>(dex_file_pointer);
229 const uint32_t* methods_offsets_pointer = reinterpret_cast<const uint32_t*>(oat);
Brian Carlstrom89521892011-12-07 22:05:07 -0800230
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800231 oat += (sizeof(*methods_offsets_pointer) * header->class_defs_size_);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800232 CHECK_LE(oat, End()) << GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700233
Elliott Hughesa0e18062012-04-13 15:59:59 -0700234 oat_dex_files_.Put(dex_file_location, new OatDexFile(this,
235 dex_file_location,
236 dex_file_checksum,
237 dex_file_pointer,
238 methods_offsets_pointer));
Brian Carlstrome24fa612011-09-29 00:53:55 -0700239 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700240}
241
242const OatHeader& OatFile::GetOatHeader() const {
Ian Rogers30fab402012-01-23 15:43:46 -0800243 return *reinterpret_cast<const OatHeader*>(Begin());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700244}
245
Ian Rogers30fab402012-01-23 15:43:46 -0800246const byte* OatFile::Begin() const {
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800247 CHECK(begin_ != NULL);
248 return begin_;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700249}
250
Ian Rogers30fab402012-01-23 15:43:46 -0800251const byte* OatFile::End() const {
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800252 CHECK(end_ != NULL);
253 return end_;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700254}
255
Ian Rogers7fe2c692011-12-06 16:35:59 -0800256const OatFile::OatDexFile* OatFile::GetOatDexFile(const std::string& dex_file_location,
257 bool warn_if_not_found) const {
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700258 Table::const_iterator it = oat_dex_files_.find(dex_file_location);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700259 if (it == oat_dex_files_.end()) {
Ian Rogers7fe2c692011-12-06 16:35:59 -0800260 if (warn_if_not_found) {
261 LOG(WARNING) << "Failed to find OatDexFile for DexFile " << dex_file_location;
262 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700263 return NULL;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700264 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700265 return it->second;
266}
267
268std::vector<const OatFile::OatDexFile*> OatFile::GetOatDexFiles() const {
269 std::vector<const OatFile::OatDexFile*> result;
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700270 for (Table::const_iterator it = oat_dex_files_.begin(); it != oat_dex_files_.end(); ++it) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700271 result.push_back(it->second);
272 }
273 return result;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700274}
275
276OatFile::OatDexFile::OatDexFile(const OatFile* oat_file,
Elliott Hughesaa6a5882012-01-13 19:39:16 -0800277 const std::string& dex_file_location,
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800278 uint32_t dex_file_location_checksum,
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800279 const byte* dex_file_pointer,
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800280 const uint32_t* oat_class_offsets_pointer)
Brian Carlstrome24fa612011-09-29 00:53:55 -0700281 : oat_file_(oat_file),
282 dex_file_location_(dex_file_location),
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800283 dex_file_location_checksum_(dex_file_location_checksum),
Brian Carlstrom89521892011-12-07 22:05:07 -0800284 dex_file_pointer_(dex_file_pointer),
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800285 oat_class_offsets_pointer_(oat_class_offsets_pointer) {}
Brian Carlstrome24fa612011-09-29 00:53:55 -0700286
287OatFile::OatDexFile::~OatDexFile() {}
288
Ian Rogers05f28c62012-10-23 18:12:13 -0700289size_t OatFile::OatDexFile::FileSize() const {
290 return reinterpret_cast<const DexFile::Header*>(dex_file_pointer_)->file_size_;
291}
292
Brian Carlstrom89521892011-12-07 22:05:07 -0800293const DexFile* OatFile::OatDexFile::OpenDexFile() const {
Ian Rogers05f28c62012-10-23 18:12:13 -0700294 return DexFile::Open(dex_file_pointer_, FileSize(), dex_file_location_,
Brian Carlstrom28db0122012-10-18 16:20:41 -0700295 dex_file_location_checksum_);
Brian Carlstrom89521892011-12-07 22:05:07 -0800296}
297
Brian Carlstromaded5f72011-10-07 17:15:04 -0700298const OatFile::OatClass* OatFile::OatDexFile::GetOatClass(uint32_t class_def_index) const {
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800299 uint32_t oat_class_offset = oat_class_offsets_pointer_[class_def_index];
300
Ian Rogers30fab402012-01-23 15:43:46 -0800301 const byte* oat_class_pointer = oat_file_->Begin() + oat_class_offset;
302 CHECK_LT(oat_class_pointer, oat_file_->End());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800303 mirror::Class::Status status = *reinterpret_cast<const mirror::Class::Status*>(oat_class_pointer);
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800304
305 const byte* methods_pointer = oat_class_pointer + sizeof(status);
Ian Rogers30fab402012-01-23 15:43:46 -0800306 CHECK_LT(methods_pointer, oat_file_->End());
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800307
308 return new OatClass(oat_file_,
309 status,
310 reinterpret_cast<const OatMethodOffsets*>(methods_pointer));
Brian Carlstrome24fa612011-09-29 00:53:55 -0700311}
312
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800313OatFile::OatClass::OatClass(const OatFile* oat_file,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800314 mirror::Class::Status status,
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800315 const OatMethodOffsets* methods_pointer)
316 : oat_file_(oat_file), status_(status), methods_pointer_(methods_pointer) {}
Brian Carlstrome24fa612011-09-29 00:53:55 -0700317
318OatFile::OatClass::~OatClass() {}
319
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800320mirror::Class::Status OatFile::OatClass::GetStatus() const {
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800321 return status_;
322}
323
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700324const OatFile::OatMethod OatFile::OatClass::GetOatMethod(uint32_t method_index) const {
325 const OatMethodOffsets& oat_method_offsets = methods_pointer_[method_index];
326 return OatMethod(
Ian Rogers30fab402012-01-23 15:43:46 -0800327 oat_file_->Begin(),
Brian Carlstromae826982011-11-09 01:33:42 -0800328 oat_method_offsets.code_offset_,
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700329 oat_method_offsets.frame_size_in_bytes_,
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700330 oat_method_offsets.core_spill_mask_,
331 oat_method_offsets.fp_spill_mask_,
Brian Carlstromae826982011-11-09 01:33:42 -0800332 oat_method_offsets.mapping_table_offset_,
333 oat_method_offsets.vmap_table_offset_,
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800334 oat_method_offsets.gc_map_offset_,
Logan Chien0c717dd2012-03-28 18:31:07 +0800335 oat_method_offsets.invoke_stub_offset_
336#if defined(ART_USE_LLVM_COMPILER)
Logan Chien971bf3f2012-05-01 15:47:55 +0800337 , oat_method_offsets.proxy_stub_offset_
Logan Chien0c717dd2012-03-28 18:31:07 +0800338#endif
339 );
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700340}
341
Brian Carlstromae826982011-11-09 01:33:42 -0800342OatFile::OatMethod::OatMethod(const byte* base,
343 const uint32_t code_offset,
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700344 const size_t frame_size_in_bytes,
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700345 const uint32_t core_spill_mask,
346 const uint32_t fp_spill_mask,
Brian Carlstromae826982011-11-09 01:33:42 -0800347 const uint32_t mapping_table_offset,
348 const uint32_t vmap_table_offset,
Brian Carlstrome7d856b2012-01-11 18:10:55 -0800349 const uint32_t gc_map_offset,
Logan Chien0c717dd2012-03-28 18:31:07 +0800350 const uint32_t invoke_stub_offset
351#if defined(ART_USE_LLVM_COMPILER)
Logan Chien971bf3f2012-05-01 15:47:55 +0800352 , const uint32_t proxy_stub_offset
Logan Chien0c717dd2012-03-28 18:31:07 +0800353#endif
354 )
Ian Rogers30fab402012-01-23 15:43:46 -0800355 : begin_(base),
Brian Carlstromae826982011-11-09 01:33:42 -0800356 code_offset_(code_offset),
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700357 frame_size_in_bytes_(frame_size_in_bytes),
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700358 core_spill_mask_(core_spill_mask),
359 fp_spill_mask_(fp_spill_mask),
Brian Carlstromae826982011-11-09 01:33:42 -0800360 mapping_table_offset_(mapping_table_offset),
361 vmap_table_offset_(vmap_table_offset),
Ian Rogers0c7abda2012-09-19 13:33:42 -0700362 native_gc_map_offset_(gc_map_offset),
Logan Chien0c717dd2012-03-28 18:31:07 +0800363 invoke_stub_offset_(invoke_stub_offset)
364#if defined(ART_USE_LLVM_COMPILER)
Logan Chien971bf3f2012-05-01 15:47:55 +0800365 , proxy_stub_offset_(proxy_stub_offset)
Logan Chien0c717dd2012-03-28 18:31:07 +0800366#endif
367{
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700368#ifndef NDEBUG
Brian Carlstromae826982011-11-09 01:33:42 -0800369 if (mapping_table_offset_ != 0) { // implies non-native, non-stub code
370 if (vmap_table_offset_ == 0) {
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700371 DCHECK_EQ(0U, static_cast<uint32_t>(__builtin_popcount(core_spill_mask_) + __builtin_popcount(fp_spill_mask_)));
372 } else {
Ian Rogers30fab402012-01-23 15:43:46 -0800373 const uint16_t* vmap_table_ = reinterpret_cast<const uint16_t*>(begin_ + vmap_table_offset_);
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700374 DCHECK_EQ(vmap_table_[0], static_cast<uint32_t>(__builtin_popcount(core_spill_mask_) + __builtin_popcount(fp_spill_mask_)));
375 }
376 } else {
Elliott Hughesba8eee12012-01-24 20:25:24 -0800377 DCHECK_EQ(vmap_table_offset_, 0U);
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700378 }
379#endif
380}
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700381
382OatFile::OatMethod::~OatMethod() {}
383
Logan Chien0c717dd2012-03-28 18:31:07 +0800384const void* OatFile::OatMethod::GetCode() const {
Logan Chien971bf3f2012-05-01 15:47:55 +0800385 return GetOatPointer<const void*>(code_offset_);
Logan Chien0c717dd2012-03-28 18:31:07 +0800386}
387
388uint32_t OatFile::OatMethod::GetCodeSize() const {
Logan Chien971bf3f2012-05-01 15:47:55 +0800389 uintptr_t code = reinterpret_cast<uint32_t>(GetCode());
Logan Chien0c717dd2012-03-28 18:31:07 +0800390
Logan Chien971bf3f2012-05-01 15:47:55 +0800391 if (code == 0) {
Logan Chien0c717dd2012-03-28 18:31:07 +0800392 return 0;
393 }
Logan Chien971bf3f2012-05-01 15:47:55 +0800394 // TODO: make this Thumb2 specific
395 code &= ~0x1;
396 return reinterpret_cast<uint32_t*>(code)[-1];
Logan Chien0c717dd2012-03-28 18:31:07 +0800397}
398
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800399mirror::AbstractMethod::InvokeStub* OatFile::OatMethod::GetInvokeStub() const {
Ian Rogers1b09b092012-08-20 15:35:52 -0700400 const byte* stub = GetOatPointer<const byte*>(invoke_stub_offset_);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800401 return reinterpret_cast<mirror::AbstractMethod::InvokeStub*>(const_cast<byte*>(stub));
Logan Chien0c717dd2012-03-28 18:31:07 +0800402}
403
404uint32_t OatFile::OatMethod::GetInvokeStubSize() const {
Logan Chien971bf3f2012-05-01 15:47:55 +0800405 uintptr_t code = reinterpret_cast<uint32_t>(GetInvokeStub());
406 if (code == 0) {
Logan Chien0c717dd2012-03-28 18:31:07 +0800407 return 0;
408 }
Logan Chien971bf3f2012-05-01 15:47:55 +0800409 // TODO: make this Thumb2 specific
410 code &= ~0x1;
411 return reinterpret_cast<uint32_t*>(code)[-1];
Logan Chien0c717dd2012-03-28 18:31:07 +0800412}
413
TDYa127eead4ac2012-06-03 07:15:25 -0700414#if defined(ART_USE_LLVM_COMPILER)
415const void* OatFile::OatMethod::GetProxyStub() const {
Logan Chien971bf3f2012-05-01 15:47:55 +0800416 return GetOatPointer<const void*>(proxy_stub_offset_);
TDYa127eead4ac2012-06-03 07:15:25 -0700417}
418#endif
419
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800420void OatFile::OatMethod::LinkMethodPointers(mirror::AbstractMethod* method) const {
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700421 CHECK(method != NULL);
Brian Carlstromae826982011-11-09 01:33:42 -0800422 method->SetCode(GetCode());
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700423 method->SetFrameSizeInBytes(frame_size_in_bytes_);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700424 method->SetCoreSpillMask(core_spill_mask_);
425 method->SetFpSpillMask(fp_spill_mask_);
Brian Carlstromae826982011-11-09 01:33:42 -0800426 method->SetMappingTable(GetMappingTable());
427 method->SetVmapTable(GetVmapTable());
Ian Rogers0c7abda2012-09-19 13:33:42 -0700428 method->SetNativeGcMap(GetNativeGcMap()); // Note, used by native methods in work around JNI mode.
Brian Carlstromae826982011-11-09 01:33:42 -0800429 method->SetInvokeStub(GetInvokeStub());
430}
431
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800432void OatFile::OatMethod::LinkMethodOffsets(mirror::AbstractMethod* method) const {
Brian Carlstromae826982011-11-09 01:33:42 -0800433 CHECK(method != NULL);
434 method->SetOatCodeOffset(GetCodeOffset());
435 method->SetFrameSizeInBytes(GetFrameSizeInBytes());
436 method->SetCoreSpillMask(GetCoreSpillMask());
437 method->SetFpSpillMask(GetFpSpillMask());
438 method->SetOatMappingTableOffset(GetMappingTableOffset());
439 method->SetOatVmapTableOffset(GetVmapTableOffset());
Ian Rogers0c7abda2012-09-19 13:33:42 -0700440 method->SetOatNativeGcMapOffset(GetNativeGcMapOffset());
Brian Carlstromae826982011-11-09 01:33:42 -0800441 method->SetOatInvokeStubOffset(GetInvokeStubOffset());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700442}
443
Brian Carlstrome24fa612011-09-29 00:53:55 -0700444} // namespace art