blob: 0f29915a9b2b57cc24f0375254218766fe4c1a87 [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
Brian Carlstrom30e2ea42013-06-19 23:25:37 -070034std::string OatFile::DexFilenameToOdexFilename(const std::string& location) {
jeffhao262bf462011-10-20 18:36:32 -070035 CHECK(IsValidDexFilename(location) || IsValidZipFilename(location));
Brian Carlstrom30e2ea42013-06-19 23:25:37 -070036 std::string odex_location(location);
37 odex_location.resize(odex_location.size() - 3); // 3=dex or zip or apk
38 CHECK_EQ('.', odex_location[odex_location.size()-1]);
39 odex_location += "odex";
40 return odex_location;
Brian Carlstromb7bbba42011-10-13 14:58:47 -070041}
42
Brian Carlstrom700c8d32012-11-05 10:42:02 -080043void OatFile::CheckLocation(const std::string& location) {
Brian Carlstrom7a967b32012-03-28 15:23:10 -070044 CHECK(!location.empty());
45 if (!IsValidOatFilename(location)) {
Brian Carlstromf852fb22012-10-19 11:01:58 -070046 LOG(WARNING) << "Attempting to open oat file with unknown extension '" << location << "'";
Brian Carlstrom7a967b32012-03-28 15:23:10 -070047 }
Brian Carlstrom700c8d32012-11-05 10:42:02 -080048}
49
Brian Carlstrom265091e2013-01-30 14:08:26 -080050OatFile* OatFile::OpenMemory(std::vector<uint8_t>& oat_contents,
51 const std::string& location) {
Brian Carlstrom700c8d32012-11-05 10:42:02 -080052 CHECK(!oat_contents.empty()) << location;
53 CheckLocation(location);
Brian Carlstrom5b332c82012-02-01 15:02:31 -080054 UniquePtr<OatFile> oat_file(new OatFile(location));
Brian Carlstrom700c8d32012-11-05 10:42:02 -080055 oat_file->begin_ = &oat_contents[0];
56 oat_file->end_ = &oat_contents[oat_contents.size()];
Brian Carlstromf1b30302013-03-28 10:35:32 -070057 return oat_file->Setup() ? oat_file.release() : NULL;
Brian Carlstrom700c8d32012-11-05 10:42:02 -080058}
59
60OatFile* OatFile::Open(const std::string& filename,
61 const std::string& location,
Brian Carlstromf1d34552013-07-12 20:22:23 -070062 byte* requested_base,
63 bool executable) {
Brian Carlstrom700c8d32012-11-05 10:42:02 -080064 CHECK(!filename.empty()) << location;
Brian Carlstrom30e2ea42013-06-19 23:25:37 -070065 CheckLocation(filename);
Brian Carlstromf1d34552013-07-12 20:22:23 -070066 // If we are trying to execute, we need to use dlopen.
67 if (executable) {
68 return OpenDlopen(filename, location, requested_base);
Brian Carlstrom700c8d32012-11-05 10:42:02 -080069 }
Brian Carlstromf1d34552013-07-12 20:22:23 -070070 // If we aren't trying to execute, we just use our own ElfFile loader for a couple reasons:
71 //
72 // On target, dlopen may fail when compiling due to selinux restrictions on installd.
73 //
Brian Carlstrom265091e2013-01-30 14:08:26 -080074 // On host, dlopen is expected to fail when cross compiling, so fall back to OpenElfFile.
75 // This won't work for portable runtime execution because it doesn't process relocations.
Brian Carlstrom700c8d32012-11-05 10:42:02 -080076 UniquePtr<File> file(OS::OpenFile(filename.c_str(), false, false));
77 if (file.get() == NULL) {
78 return NULL;
79 }
Brian Carlstromf1d34552013-07-12 20:22:23 -070080 return OpenElfFile(file.get(), location, requested_base, false, executable);
Brian Carlstrom700c8d32012-11-05 10:42:02 -080081}
82
Brian Carlstrom265091e2013-01-30 14:08:26 -080083OatFile* OatFile::OpenWritable(File* file, const std::string& location) {
Brian Carlstrom700c8d32012-11-05 10:42:02 -080084 CheckLocation(location);
Brian Carlstromf1d34552013-07-12 20:22:23 -070085 return OpenElfFile(file, location, NULL, true, false);
Brian Carlstrom700c8d32012-11-05 10:42:02 -080086}
87
88OatFile* OatFile::OpenDlopen(const std::string& elf_filename,
89 const std::string& location,
90 byte* requested_base) {
91 UniquePtr<OatFile> oat_file(new OatFile(location));
92 bool success = oat_file->Dlopen(elf_filename, requested_base);
93 if (!success) {
94 return NULL;
95 }
96 return oat_file.release();
97}
98
99OatFile* OatFile::OpenElfFile(File* file,
100 const std::string& location,
101 byte* requested_base,
Brian Carlstromf1d34552013-07-12 20:22:23 -0700102 bool writable,
103 bool executable) {
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800104 UniquePtr<OatFile> oat_file(new OatFile(location));
Brian Carlstromf1d34552013-07-12 20:22:23 -0700105 bool success = oat_file->ElfFileOpen(file, requested_base, writable, executable);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700106 if (!success) {
107 return NULL;
108 }
109 return oat_file.release();
110}
111
Logan Chien0c717dd2012-03-28 18:31:07 +0800112OatFile::OatFile(const std::string& location)
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800113 : location_(location), begin_(NULL), end_(NULL), dlopen_handle_(NULL) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800114 CHECK(!location_.empty());
115}
Brian Carlstrome24fa612011-09-29 00:53:55 -0700116
117OatFile::~OatFile() {
118 STLDeleteValues(&oat_dex_files_);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800119 if (dlopen_handle_ != NULL) {
120 dlclose(dlopen_handle_);
121 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700122}
123
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800124bool OatFile::Dlopen(const std::string& elf_filename, byte* requested_base) {
125
126 char* absolute_path = realpath(elf_filename.c_str(), NULL);
127 if (absolute_path == NULL) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700128 return false;
129 }
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800130 dlopen_handle_ = dlopen(absolute_path, RTLD_NOW);
131 free(absolute_path);
132 if (dlopen_handle_ == NULL) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700133 return false;
134 }
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800135 begin_ = reinterpret_cast<byte*>(dlsym(dlopen_handle_, "oatdata"));
136 if (begin_ == NULL) {
137 LOG(WARNING) << "Failed to find oatdata symbol in " << elf_filename << ": " << dlerror();
138 return false;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700139 }
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800140 if (requested_base != NULL && begin_ != requested_base) {
141 std::string maps;
142 ReadFileToString("/proc/self/maps", &maps);
143 LOG(WARNING) << "Failed to find oatdata symbol at expected address: oatdata="
144 << reinterpret_cast<const void*>(begin_) << " != expected="
145 << reinterpret_cast<const void*>(requested_base)
146 << " /proc/self/maps:\n" << maps;
147 return false;
148 }
149 end_ = reinterpret_cast<byte*>(dlsym(dlopen_handle_, "oatlastword"));
150 if (end_ == NULL) {
151 LOG(WARNING) << "Failed to find oatlastword symbol in " << elf_filename << ": " << dlerror();
152 return false;
153 }
154 // Readjust to be non-inclusive upper bound.
155 end_ += sizeof(uint32_t);
Brian Carlstromf1b30302013-03-28 10:35:32 -0700156 return Setup();
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800157}
Brian Carlstrome24fa612011-09-29 00:53:55 -0700158
Brian Carlstromf1d34552013-07-12 20:22:23 -0700159bool OatFile::ElfFileOpen(File* file, byte* requested_base, bool writable, bool executable) {
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800160 elf_file_.reset(ElfFile::Open(file, writable, true));
161 if (elf_file_.get() == NULL) {
162 PLOG(WARNING) << "Failed to create ELF file for " << file->GetPath();
163 return false;
164 }
Brian Carlstromf1d34552013-07-12 20:22:23 -0700165 bool loaded = elf_file_->Load(executable);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800166 if (!loaded) {
167 LOG(WARNING) << "Failed to load ELF file " << file->GetPath();
168 return false;
169 }
170 begin_ = elf_file_->FindDynamicSymbolAddress("oatdata");
171 if (begin_ == NULL) {
172 LOG(WARNING) << "Failed to find oatdata symbol in " << file->GetPath();
173 return false;
174 }
175 if (requested_base != NULL && begin_ != requested_base) {
176 std::string maps;
177 ReadFileToString("/proc/self/maps", &maps);
178 LOG(WARNING) << "Failed to find oatdata symbol at expected address: oatdata="
179 << reinterpret_cast<const void*>(begin_) << " != expected="
180 << reinterpret_cast<const void*>(requested_base)
181 << " /proc/self/maps:\n" << maps;
182 return false;
183 }
184 end_ = elf_file_->FindDynamicSymbolAddress("oatlastword");
185 if (end_ == NULL) {
186 LOG(WARNING) << "Failed to find oatlastword symbol in " << file->GetPath();
187 return false;
188 }
189 // Readjust to be non-inclusive upper bound.
190 end_ += sizeof(uint32_t);
Brian Carlstromf1b30302013-03-28 10:35:32 -0700191 return Setup();
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800192}
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800193
Brian Carlstromf1b30302013-03-28 10:35:32 -0700194bool OatFile::Setup() {
195 if (!GetOatHeader().IsValid()) {
196 LOG(WARNING) << "Invalid oat magic for " << GetLocation();
197 return false;
198 }
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800199 const byte* oat = Begin();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700200 oat += sizeof(OatHeader);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800201 oat += GetOatHeader().GetImageFileLocationSize();
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700202
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800203 CHECK_LE(oat, End())
204 << reinterpret_cast<const void*>(Begin())
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700205 << "+" << sizeof(OatHeader)
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800206 << "+" << GetOatHeader().GetImageFileLocationSize()
207 << "<=" << reinterpret_cast<const void*>(End())
208 << " " << GetLocation();
209 for (size_t i = 0; i < GetOatHeader().GetDexFileCount(); i++) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700210 size_t dex_file_location_size = *reinterpret_cast<const uint32_t*>(oat);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800211 CHECK_GT(dex_file_location_size, 0U) << GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700212 oat += sizeof(dex_file_location_size);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800213 CHECK_LT(oat, End()) << GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700214
215 const char* dex_file_location_data = reinterpret_cast<const char*>(oat);
216 oat += dex_file_location_size;
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800217 CHECK_LT(oat, End()) << GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700218
219 std::string dex_file_location(dex_file_location_data, dex_file_location_size);
220
221 uint32_t dex_file_checksum = *reinterpret_cast<const uint32_t*>(oat);
222 oat += sizeof(dex_file_checksum);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800223 CHECK_LT(oat, End()) << GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700224
Brian Carlstrom89521892011-12-07 22:05:07 -0800225 uint32_t dex_file_offset = *reinterpret_cast<const uint32_t*>(oat);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800226 CHECK_GT(dex_file_offset, 0U) << GetLocation();
227 CHECK_LT(dex_file_offset, Size()) << GetLocation();
Brian Carlstrom89521892011-12-07 22:05:07 -0800228 oat += sizeof(dex_file_offset);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800229 CHECK_LT(oat, End()) << GetLocation();
Brian Carlstrom89521892011-12-07 22:05:07 -0800230
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800231 const uint8_t* dex_file_pointer = Begin() + dex_file_offset;
Brian Carlstromf852fb22012-10-19 11:01:58 -0700232 CHECK(DexFile::IsMagicValid(dex_file_pointer))
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800233 << GetLocation() << " " << dex_file_pointer;
Brian Carlstromf852fb22012-10-19 11:01:58 -0700234 CHECK(DexFile::IsVersionValid(dex_file_pointer))
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800235 << GetLocation() << " " << dex_file_pointer;
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800236 const DexFile::Header* header = reinterpret_cast<const DexFile::Header*>(dex_file_pointer);
237 const uint32_t* methods_offsets_pointer = reinterpret_cast<const uint32_t*>(oat);
Brian Carlstrom89521892011-12-07 22:05:07 -0800238
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800239 oat += (sizeof(*methods_offsets_pointer) * header->class_defs_size_);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800240 CHECK_LE(oat, End()) << GetLocation();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700241
Elliott Hughesa0e18062012-04-13 15:59:59 -0700242 oat_dex_files_.Put(dex_file_location, new OatDexFile(this,
243 dex_file_location,
244 dex_file_checksum,
245 dex_file_pointer,
246 methods_offsets_pointer));
Brian Carlstrome24fa612011-09-29 00:53:55 -0700247 }
Brian Carlstromf1b30302013-03-28 10:35:32 -0700248 return true;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700249}
250
251const OatHeader& OatFile::GetOatHeader() const {
Ian Rogers30fab402012-01-23 15:43:46 -0800252 return *reinterpret_cast<const OatHeader*>(Begin());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700253}
254
Ian Rogers30fab402012-01-23 15:43:46 -0800255const byte* OatFile::Begin() const {
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800256 CHECK(begin_ != NULL);
257 return begin_;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700258}
259
Ian Rogers30fab402012-01-23 15:43:46 -0800260const byte* OatFile::End() const {
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800261 CHECK(end_ != NULL);
262 return end_;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700263}
264
Ian Rogers7fe2c692011-12-06 16:35:59 -0800265const OatFile::OatDexFile* OatFile::GetOatDexFile(const std::string& dex_file_location,
266 bool warn_if_not_found) const {
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700267 Table::const_iterator it = oat_dex_files_.find(dex_file_location);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700268 if (it == oat_dex_files_.end()) {
Ian Rogers7fe2c692011-12-06 16:35:59 -0800269 if (warn_if_not_found) {
270 LOG(WARNING) << "Failed to find OatDexFile for DexFile " << dex_file_location;
271 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700272 return NULL;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700273 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700274 return it->second;
275}
276
277std::vector<const OatFile::OatDexFile*> OatFile::GetOatDexFiles() const {
278 std::vector<const OatFile::OatDexFile*> result;
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700279 for (Table::const_iterator it = oat_dex_files_.begin(); it != oat_dex_files_.end(); ++it) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700280 result.push_back(it->second);
281 }
282 return result;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700283}
284
285OatFile::OatDexFile::OatDexFile(const OatFile* oat_file,
Elliott Hughesaa6a5882012-01-13 19:39:16 -0800286 const std::string& dex_file_location,
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800287 uint32_t dex_file_location_checksum,
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800288 const byte* dex_file_pointer,
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800289 const uint32_t* oat_class_offsets_pointer)
Brian Carlstrome24fa612011-09-29 00:53:55 -0700290 : oat_file_(oat_file),
291 dex_file_location_(dex_file_location),
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800292 dex_file_location_checksum_(dex_file_location_checksum),
Brian Carlstrom89521892011-12-07 22:05:07 -0800293 dex_file_pointer_(dex_file_pointer),
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800294 oat_class_offsets_pointer_(oat_class_offsets_pointer) {}
Brian Carlstrome24fa612011-09-29 00:53:55 -0700295
296OatFile::OatDexFile::~OatDexFile() {}
297
Ian Rogers05f28c62012-10-23 18:12:13 -0700298size_t OatFile::OatDexFile::FileSize() const {
299 return reinterpret_cast<const DexFile::Header*>(dex_file_pointer_)->file_size_;
300}
301
Brian Carlstrom89521892011-12-07 22:05:07 -0800302const DexFile* OatFile::OatDexFile::OpenDexFile() const {
Ian Rogers05f28c62012-10-23 18:12:13 -0700303 return DexFile::Open(dex_file_pointer_, FileSize(), dex_file_location_,
Brian Carlstrom28db0122012-10-18 16:20:41 -0700304 dex_file_location_checksum_);
Brian Carlstrom89521892011-12-07 22:05:07 -0800305}
306
Brian Carlstromaded5f72011-10-07 17:15:04 -0700307const OatFile::OatClass* OatFile::OatDexFile::GetOatClass(uint32_t class_def_index) const {
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800308 uint32_t oat_class_offset = oat_class_offsets_pointer_[class_def_index];
309
Ian Rogers30fab402012-01-23 15:43:46 -0800310 const byte* oat_class_pointer = oat_file_->Begin() + oat_class_offset;
311 CHECK_LT(oat_class_pointer, oat_file_->End());
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800312 mirror::Class::Status status = *reinterpret_cast<const mirror::Class::Status*>(oat_class_pointer);
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800313
314 const byte* methods_pointer = oat_class_pointer + sizeof(status);
Ian Rogers30fab402012-01-23 15:43:46 -0800315 CHECK_LT(methods_pointer, oat_file_->End());
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800316
317 return new OatClass(oat_file_,
318 status,
319 reinterpret_cast<const OatMethodOffsets*>(methods_pointer));
Brian Carlstrome24fa612011-09-29 00:53:55 -0700320}
321
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800322OatFile::OatClass::OatClass(const OatFile* oat_file,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800323 mirror::Class::Status status,
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800324 const OatMethodOffsets* methods_pointer)
325 : oat_file_(oat_file), status_(status), methods_pointer_(methods_pointer) {}
Brian Carlstrome24fa612011-09-29 00:53:55 -0700326
327OatFile::OatClass::~OatClass() {}
328
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800329mirror::Class::Status OatFile::OatClass::GetStatus() const {
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800330 return status_;
331}
332
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700333const OatFile::OatMethod OatFile::OatClass::GetOatMethod(uint32_t method_index) const {
334 const OatMethodOffsets& oat_method_offsets = methods_pointer_[method_index];
335 return OatMethod(
Ian Rogers30fab402012-01-23 15:43:46 -0800336 oat_file_->Begin(),
Brian Carlstromae826982011-11-09 01:33:42 -0800337 oat_method_offsets.code_offset_,
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700338 oat_method_offsets.frame_size_in_bytes_,
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700339 oat_method_offsets.core_spill_mask_,
340 oat_method_offsets.fp_spill_mask_,
Brian Carlstromae826982011-11-09 01:33:42 -0800341 oat_method_offsets.mapping_table_offset_,
342 oat_method_offsets.vmap_table_offset_,
Brian Carlstrom6a47b9d2013-05-17 10:58:25 -0700343 oat_method_offsets.gc_map_offset_);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700344}
345
Brian Carlstromae826982011-11-09 01:33:42 -0800346OatFile::OatMethod::OatMethod(const byte* base,
347 const uint32_t code_offset,
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700348 const size_t frame_size_in_bytes,
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700349 const uint32_t core_spill_mask,
350 const uint32_t fp_spill_mask,
Brian Carlstromae826982011-11-09 01:33:42 -0800351 const uint32_t mapping_table_offset,
352 const uint32_t vmap_table_offset,
Brian Carlstrom6a47b9d2013-05-17 10:58:25 -0700353 const uint32_t gc_map_offset)
Ian Rogers30fab402012-01-23 15:43:46 -0800354 : begin_(base),
Brian Carlstromae826982011-11-09 01:33:42 -0800355 code_offset_(code_offset),
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700356 frame_size_in_bytes_(frame_size_in_bytes),
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700357 core_spill_mask_(core_spill_mask),
358 fp_spill_mask_(fp_spill_mask),
Brian Carlstromae826982011-11-09 01:33:42 -0800359 mapping_table_offset_(mapping_table_offset),
360 vmap_table_offset_(vmap_table_offset),
Jeff Hao74180ca2013-03-27 15:29:11 -0700361 native_gc_map_offset_(gc_map_offset)
Logan Chien0c717dd2012-03-28 18:31:07 +0800362{
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700363#ifndef NDEBUG
Brian Carlstromae826982011-11-09 01:33:42 -0800364 if (mapping_table_offset_ != 0) { // implies non-native, non-stub code
365 if (vmap_table_offset_ == 0) {
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700366 DCHECK_EQ(0U, static_cast<uint32_t>(__builtin_popcount(core_spill_mask_) + __builtin_popcount(fp_spill_mask_)));
367 } else {
Ian Rogers30fab402012-01-23 15:43:46 -0800368 const uint16_t* vmap_table_ = reinterpret_cast<const uint16_t*>(begin_ + vmap_table_offset_);
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700369 DCHECK_EQ(vmap_table_[0], static_cast<uint32_t>(__builtin_popcount(core_spill_mask_) + __builtin_popcount(fp_spill_mask_)));
370 }
371 } else {
Elliott Hughesba8eee12012-01-24 20:25:24 -0800372 DCHECK_EQ(vmap_table_offset_, 0U);
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700373 }
374#endif
375}
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700376
377OatFile::OatMethod::~OatMethod() {}
378
Logan Chien0c717dd2012-03-28 18:31:07 +0800379const void* OatFile::OatMethod::GetCode() const {
Logan Chien971bf3f2012-05-01 15:47:55 +0800380 return GetOatPointer<const void*>(code_offset_);
Logan Chien0c717dd2012-03-28 18:31:07 +0800381}
382
383uint32_t OatFile::OatMethod::GetCodeSize() const {
Brian Carlstrom265091e2013-01-30 14:08:26 -0800384#if defined(ART_USE_PORTABLE_COMPILER)
385 // TODO: With Quick, we store the size before the code. With
386 // Portable, the code is in a .o file we don't manage ourselves. ELF
387 // symbols do have a concept of size, so we could capture that and
388 // store it somewhere, such as the OatMethod.
389 return 0;
390#else
Logan Chien971bf3f2012-05-01 15:47:55 +0800391 uintptr_t code = reinterpret_cast<uint32_t>(GetCode());
Logan Chien0c717dd2012-03-28 18:31:07 +0800392
Logan Chien971bf3f2012-05-01 15:47:55 +0800393 if (code == 0) {
Logan Chien0c717dd2012-03-28 18:31:07 +0800394 return 0;
395 }
Logan Chien971bf3f2012-05-01 15:47:55 +0800396 // TODO: make this Thumb2 specific
397 code &= ~0x1;
398 return reinterpret_cast<uint32_t*>(code)[-1];
Brian Carlstrom265091e2013-01-30 14:08:26 -0800399#endif
Logan Chien0c717dd2012-03-28 18:31:07 +0800400}
401
Brian Carlstrom265091e2013-01-30 14:08:26 -0800402void OatFile::OatMethod::LinkMethod(mirror::AbstractMethod* method) const {
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700403 CHECK(method != NULL);
Jeff Haoaa4a7932013-05-13 11:28:27 -0700404 method->SetEntryPointFromCompiledCode(GetCode());
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700405 method->SetFrameSizeInBytes(frame_size_in_bytes_);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700406 method->SetCoreSpillMask(core_spill_mask_);
407 method->SetFpSpillMask(fp_spill_mask_);
Brian Carlstromae826982011-11-09 01:33:42 -0800408 method->SetMappingTable(GetMappingTable());
409 method->SetVmapTable(GetVmapTable());
Ian Rogers0c7abda2012-09-19 13:33:42 -0700410 method->SetNativeGcMap(GetNativeGcMap()); // Note, used by native methods in work around JNI mode.
Brian Carlstromae826982011-11-09 01:33:42 -0800411}
412
Brian Carlstrome24fa612011-09-29 00:53:55 -0700413} // namespace art