blob: 4c970172b48bde51da2b81547bde15b8a2205197 [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"
Brian Carlstromea46f952013-07-30 01:26:50 -070025#include "mirror/art_method.h"
26#include "mirror/art_method-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080027#include "mirror/class.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"
Ian Rogers1809a722013-08-09 22:05:32 -070031#include "vmap_table.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070032
33namespace art {
34
Brian Carlstrom30e2ea42013-06-19 23:25:37 -070035std::string OatFile::DexFilenameToOdexFilename(const std::string& location) {
jeffhao262bf462011-10-20 18:36:32 -070036 CHECK(IsValidDexFilename(location) || IsValidZipFilename(location));
Brian Carlstrom30e2ea42013-06-19 23:25:37 -070037 std::string odex_location(location);
38 odex_location.resize(odex_location.size() - 3); // 3=dex or zip or apk
39 CHECK_EQ('.', odex_location[odex_location.size()-1]);
40 odex_location += "odex";
41 return odex_location;
Brian Carlstromb7bbba42011-10-13 14:58:47 -070042}
43
Brian Carlstrom700c8d32012-11-05 10:42:02 -080044void OatFile::CheckLocation(const std::string& location) {
Brian Carlstrom7a967b32012-03-28 15:23:10 -070045 CHECK(!location.empty());
46 if (!IsValidOatFilename(location)) {
Brian Carlstromf852fb22012-10-19 11:01:58 -070047 LOG(WARNING) << "Attempting to open oat file with unknown extension '" << location << "'";
Brian Carlstrom7a967b32012-03-28 15:23:10 -070048 }
Brian Carlstrom700c8d32012-11-05 10:42:02 -080049}
50
Brian Carlstrom265091e2013-01-30 14:08:26 -080051OatFile* OatFile::OpenMemory(std::vector<uint8_t>& oat_contents,
52 const std::string& location) {
Brian Carlstrom700c8d32012-11-05 10:42:02 -080053 CHECK(!oat_contents.empty()) << location;
54 CheckLocation(location);
Brian Carlstrom5b332c82012-02-01 15:02:31 -080055 UniquePtr<OatFile> oat_file(new OatFile(location));
Brian Carlstrom700c8d32012-11-05 10:42:02 -080056 oat_file->begin_ = &oat_contents[0];
57 oat_file->end_ = &oat_contents[oat_contents.size()];
Brian Carlstromf1b30302013-03-28 10:35:32 -070058 return oat_file->Setup() ? oat_file.release() : NULL;
Brian Carlstrom700c8d32012-11-05 10:42:02 -080059}
60
61OatFile* OatFile::Open(const std::string& filename,
62 const std::string& location,
Brian Carlstromf1d34552013-07-12 20:22:23 -070063 byte* requested_base,
64 bool executable) {
Brian Carlstrom700c8d32012-11-05 10:42:02 -080065 CHECK(!filename.empty()) << location;
Brian Carlstrom30e2ea42013-06-19 23:25:37 -070066 CheckLocation(filename);
Brian Carlstromf1d34552013-07-12 20:22:23 -070067 // If we are trying to execute, we need to use dlopen.
68 if (executable) {
69 return OpenDlopen(filename, location, requested_base);
Brian Carlstrom700c8d32012-11-05 10:42:02 -080070 }
Brian Carlstromf1d34552013-07-12 20:22:23 -070071 // If we aren't trying to execute, we just use our own ElfFile loader for a couple reasons:
72 //
73 // On target, dlopen may fail when compiling due to selinux restrictions on installd.
74 //
Brian Carlstrom265091e2013-01-30 14:08:26 -080075 // On host, dlopen is expected to fail when cross compiling, so fall back to OpenElfFile.
76 // This won't work for portable runtime execution because it doesn't process relocations.
Brian Carlstrom7571e8b2013-08-12 17:04:14 -070077 UniquePtr<File> file(OS::OpenFileForReading(filename.c_str()));
Brian Carlstrom700c8d32012-11-05 10:42:02 -080078 if (file.get() == NULL) {
79 return NULL;
80 }
Brian Carlstromf1d34552013-07-12 20:22:23 -070081 return OpenElfFile(file.get(), location, requested_base, false, executable);
Brian Carlstrom700c8d32012-11-05 10:42:02 -080082}
83
Brian Carlstrom265091e2013-01-30 14:08:26 -080084OatFile* OatFile::OpenWritable(File* file, const std::string& location) {
Brian Carlstrom700c8d32012-11-05 10:42:02 -080085 CheckLocation(location);
Brian Carlstromf1d34552013-07-12 20:22:23 -070086 return OpenElfFile(file, location, NULL, true, false);
Brian Carlstrom700c8d32012-11-05 10:42:02 -080087}
88
89OatFile* OatFile::OpenDlopen(const std::string& elf_filename,
90 const std::string& location,
91 byte* requested_base) {
92 UniquePtr<OatFile> oat_file(new OatFile(location));
93 bool success = oat_file->Dlopen(elf_filename, requested_base);
94 if (!success) {
95 return NULL;
96 }
97 return oat_file.release();
98}
99
100OatFile* OatFile::OpenElfFile(File* file,
101 const std::string& location,
102 byte* requested_base,
Brian Carlstromf1d34552013-07-12 20:22:23 -0700103 bool writable,
104 bool executable) {
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800105 UniquePtr<OatFile> oat_file(new OatFile(location));
Brian Carlstromf1d34552013-07-12 20:22:23 -0700106 bool success = oat_file->ElfFileOpen(file, requested_base, writable, executable);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700107 if (!success) {
108 return NULL;
109 }
110 return oat_file.release();
111}
112
Logan Chien0c717dd2012-03-28 18:31:07 +0800113OatFile::OatFile(const std::string& location)
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800114 : location_(location), begin_(NULL), end_(NULL), dlopen_handle_(NULL) {
Brian Carlstroma004aa92012-02-08 18:05:09 -0800115 CHECK(!location_.empty());
116}
Brian Carlstrome24fa612011-09-29 00:53:55 -0700117
118OatFile::~OatFile() {
119 STLDeleteValues(&oat_dex_files_);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800120 if (dlopen_handle_ != NULL) {
121 dlclose(dlopen_handle_);
122 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700123}
124
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800125bool OatFile::Dlopen(const std::string& elf_filename, byte* requested_base) {
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800126 char* absolute_path = realpath(elf_filename.c_str(), NULL);
127 if (absolute_path == NULL) {
Brian Carlstrom7571e8b2013-08-12 17:04:14 -0700128 VLOG(class_linker) << "Failed to find absolute path for " << elf_filename;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700129 return false;
130 }
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800131 dlopen_handle_ = dlopen(absolute_path, RTLD_NOW);
132 free(absolute_path);
133 if (dlopen_handle_ == NULL) {
Brian Carlstrom7571e8b2013-08-12 17:04:14 -0700134 VLOG(class_linker) << "Failed to dlopen " << elf_filename << ": " << dlerror();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700135 return false;
136 }
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800137 begin_ = reinterpret_cast<byte*>(dlsym(dlopen_handle_, "oatdata"));
138 if (begin_ == NULL) {
139 LOG(WARNING) << "Failed to find oatdata symbol in " << elf_filename << ": " << dlerror();
140 return false;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700141 }
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800142 if (requested_base != NULL && begin_ != requested_base) {
143 std::string maps;
144 ReadFileToString("/proc/self/maps", &maps);
145 LOG(WARNING) << "Failed to find oatdata symbol at expected address: oatdata="
146 << reinterpret_cast<const void*>(begin_) << " != expected="
147 << reinterpret_cast<const void*>(requested_base)
148 << " /proc/self/maps:\n" << maps;
149 return false;
150 }
151 end_ = reinterpret_cast<byte*>(dlsym(dlopen_handle_, "oatlastword"));
152 if (end_ == NULL) {
153 LOG(WARNING) << "Failed to find oatlastword symbol in " << elf_filename << ": " << dlerror();
154 return false;
155 }
156 // Readjust to be non-inclusive upper bound.
157 end_ += sizeof(uint32_t);
Brian Carlstromf1b30302013-03-28 10:35:32 -0700158 return Setup();
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800159}
Brian Carlstrome24fa612011-09-29 00:53:55 -0700160
Brian Carlstromf1d34552013-07-12 20:22:23 -0700161bool OatFile::ElfFileOpen(File* file, byte* requested_base, bool writable, bool executable) {
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800162 elf_file_.reset(ElfFile::Open(file, writable, true));
163 if (elf_file_.get() == NULL) {
164 PLOG(WARNING) << "Failed to create ELF file for " << file->GetPath();
165 return false;
166 }
Brian Carlstromf1d34552013-07-12 20:22:23 -0700167 bool loaded = elf_file_->Load(executable);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800168 if (!loaded) {
169 LOG(WARNING) << "Failed to load ELF file " << file->GetPath();
170 return false;
171 }
172 begin_ = elf_file_->FindDynamicSymbolAddress("oatdata");
173 if (begin_ == NULL) {
174 LOG(WARNING) << "Failed to find oatdata symbol in " << file->GetPath();
175 return false;
176 }
177 if (requested_base != NULL && begin_ != requested_base) {
178 std::string maps;
179 ReadFileToString("/proc/self/maps", &maps);
180 LOG(WARNING) << "Failed to find oatdata symbol at expected address: oatdata="
181 << reinterpret_cast<const void*>(begin_) << " != expected="
182 << reinterpret_cast<const void*>(requested_base)
183 << " /proc/self/maps:\n" << maps;
184 return false;
185 }
186 end_ = elf_file_->FindDynamicSymbolAddress("oatlastword");
187 if (end_ == NULL) {
188 LOG(WARNING) << "Failed to find oatlastword symbol in " << file->GetPath();
189 return false;
190 }
191 // Readjust to be non-inclusive upper bound.
192 end_ += sizeof(uint32_t);
Brian Carlstromf1b30302013-03-28 10:35:32 -0700193 return Setup();
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800194}
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800195
Brian Carlstromf1b30302013-03-28 10:35:32 -0700196bool OatFile::Setup() {
197 if (!GetOatHeader().IsValid()) {
198 LOG(WARNING) << "Invalid oat magic for " << GetLocation();
199 return false;
200 }
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800201 const byte* oat = Begin();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700202 oat += sizeof(OatHeader);
Brian Carlstromfb331d72013-07-25 22:00:16 -0700203 if (oat > End()) {
204 LOG(ERROR) << "In oat file " << GetLocation() << " found truncated OatHeader";
205 return false;
206 }
Brian Carlstrom81f3ca12012-03-17 00:27:35 -0700207
Brian Carlstromfb331d72013-07-25 22:00:16 -0700208 oat += GetOatHeader().GetImageFileLocationSize();
209 if (oat > End()) {
210 LOG(ERROR) << "In oat file " << GetLocation() << " found truncated image file location: "
211 << reinterpret_cast<const void*>(Begin())
212 << "+" << sizeof(OatHeader)
213 << "+" << GetOatHeader().GetImageFileLocationSize()
214 << "<=" << reinterpret_cast<const void*>(End());
215 return false;
216 }
217
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800218 for (size_t i = 0; i < GetOatHeader().GetDexFileCount(); i++) {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700219 size_t dex_file_location_size = *reinterpret_cast<const uint32_t*>(oat);
Brian Carlstromfb331d72013-07-25 22:00:16 -0700220 if (dex_file_location_size == 0U) {
221 LOG(ERROR) << "In oat file " << GetLocation() << " found OatDexFile # " << i
222 << " with empty location name";
223 return false;
224 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700225 oat += sizeof(dex_file_location_size);
Brian Carlstromfb331d72013-07-25 22:00:16 -0700226 if (oat > End()) {
227 LOG(ERROR) << "In oat file " << GetLocation() << " found OatDexFile # " << i
228 << " truncated after dex file location size";
229 return false;
230 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700231
232 const char* dex_file_location_data = reinterpret_cast<const char*>(oat);
233 oat += dex_file_location_size;
Brian Carlstromfb331d72013-07-25 22:00:16 -0700234 if (oat > End()) {
235 LOG(ERROR) << "In oat file " << GetLocation() << " found OatDexFile # " << i
236 << " with truncated dex file location";
237 return false;
238 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700239
240 std::string dex_file_location(dex_file_location_data, dex_file_location_size);
241
242 uint32_t dex_file_checksum = *reinterpret_cast<const uint32_t*>(oat);
243 oat += sizeof(dex_file_checksum);
Brian Carlstromfb331d72013-07-25 22:00:16 -0700244 if (oat > End()) {
245 LOG(ERROR) << "In oat file " << GetLocation() << " found OatDexFile # " << i
246 << " for "<< dex_file_location
247 << " truncated after dex file checksum";
248 return false;
249 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700250
Brian Carlstrom89521892011-12-07 22:05:07 -0800251 uint32_t dex_file_offset = *reinterpret_cast<const uint32_t*>(oat);
Brian Carlstromfb331d72013-07-25 22:00:16 -0700252 if (dex_file_offset == 0U) {
253 LOG(ERROR) << "In oat file " << GetLocation() << " found OatDexFile # " << i
254 << " for "<< dex_file_location
255 << " with zero dex file offset";
256 return false;
257 }
258 if (dex_file_offset > Size()) {
259 LOG(ERROR) << "In oat file " << GetLocation() << " found OatDexFile # " << i
260 << " for "<< dex_file_location
261 << " with dex file offset" << dex_file_offset << " > " << Size();
262 return false;
263 }
Brian Carlstrom89521892011-12-07 22:05:07 -0800264 oat += sizeof(dex_file_offset);
Brian Carlstromfb331d72013-07-25 22:00:16 -0700265 if (oat > End()) {
266 LOG(ERROR) << "In oat file " << GetLocation() << " found OatDexFile # " << i
267 << " for "<< dex_file_location
268 << " truncated after dex file offset";
269 return false;
270 }
Brian Carlstrom89521892011-12-07 22:05:07 -0800271
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800272 const uint8_t* dex_file_pointer = Begin() + dex_file_offset;
Brian Carlstromfb331d72013-07-25 22:00:16 -0700273 if (!DexFile::IsMagicValid(dex_file_pointer)) {
274 LOG(ERROR) << "In oat file " << GetLocation() << " found OatDexFile # " << i
275 << " for "<< dex_file_location
276 << " with invalid dex file magic: " << dex_file_pointer;
277 return false;
278 }
279 if (!DexFile::IsVersionValid(dex_file_pointer)) {
280 LOG(ERROR) << "In oat file " << GetLocation() << " found OatDexFile # " << i
281 << " for "<< dex_file_location
282 << " with invalid dex file version: " << dex_file_pointer;
283 return false;
284 }
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800285 const DexFile::Header* header = reinterpret_cast<const DexFile::Header*>(dex_file_pointer);
286 const uint32_t* methods_offsets_pointer = reinterpret_cast<const uint32_t*>(oat);
Brian Carlstrom89521892011-12-07 22:05:07 -0800287
Brian Carlstrom6e3b1d92012-01-11 01:36:32 -0800288 oat += (sizeof(*methods_offsets_pointer) * header->class_defs_size_);
Brian Carlstromfb331d72013-07-25 22:00:16 -0700289 if (oat > End()) {
290 LOG(ERROR) << "In oat file " << GetLocation() << " found OatDexFile # " << i
291 << " for "<< dex_file_location
292 << " with truncated method offsets";
293 return false;
294 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700295
Elliott Hughesa0e18062012-04-13 15:59:59 -0700296 oat_dex_files_.Put(dex_file_location, new OatDexFile(this,
297 dex_file_location,
298 dex_file_checksum,
299 dex_file_pointer,
300 methods_offsets_pointer));
Brian Carlstrome24fa612011-09-29 00:53:55 -0700301 }
Brian Carlstromf1b30302013-03-28 10:35:32 -0700302 return true;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700303}
304
305const OatHeader& OatFile::GetOatHeader() const {
Ian Rogers30fab402012-01-23 15:43:46 -0800306 return *reinterpret_cast<const OatHeader*>(Begin());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700307}
308
Ian Rogers30fab402012-01-23 15:43:46 -0800309const byte* OatFile::Begin() const {
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800310 CHECK(begin_ != NULL);
311 return begin_;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700312}
313
Ian Rogers30fab402012-01-23 15:43:46 -0800314const byte* OatFile::End() const {
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800315 CHECK(end_ != NULL);
316 return end_;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700317}
318
Ian Rogers7fe2c692011-12-06 16:35:59 -0800319const OatFile::OatDexFile* OatFile::GetOatDexFile(const std::string& dex_file_location,
320 bool warn_if_not_found) const {
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700321 Table::const_iterator it = oat_dex_files_.find(dex_file_location);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700322 if (it == oat_dex_files_.end()) {
Ian Rogers7fe2c692011-12-06 16:35:59 -0800323 if (warn_if_not_found) {
Brian Carlstrom7571e8b2013-08-12 17:04:14 -0700324 LOG(WARNING) << "Failed to find OatDexFile for DexFile " << dex_file_location
325 << " in OatFile " << GetLocation();
326 if (kIsDebugBuild) {
327 for (Table::const_iterator it = oat_dex_files_.begin(); it != oat_dex_files_.end(); ++it) {
328 LOG(WARNING) << "OatFile " << GetLocation()
329 << " contains OatDexFile " << it->second->GetDexFileLocation();
330 }
331 }
Ian Rogers7fe2c692011-12-06 16:35:59 -0800332 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700333 return NULL;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700334 }
Brian Carlstromaded5f72011-10-07 17:15:04 -0700335 return it->second;
336}
337
338std::vector<const OatFile::OatDexFile*> OatFile::GetOatDexFiles() const {
339 std::vector<const OatFile::OatDexFile*> result;
Elliott Hughes362f9bc2011-10-17 18:56:41 -0700340 for (Table::const_iterator it = oat_dex_files_.begin(); it != oat_dex_files_.end(); ++it) {
Brian Carlstromaded5f72011-10-07 17:15:04 -0700341 result.push_back(it->second);
342 }
343 return result;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700344}
345
346OatFile::OatDexFile::OatDexFile(const OatFile* oat_file,
Elliott Hughesaa6a5882012-01-13 19:39:16 -0800347 const std::string& dex_file_location,
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800348 uint32_t dex_file_location_checksum,
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800349 const byte* dex_file_pointer,
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800350 const uint32_t* oat_class_offsets_pointer)
Brian Carlstrome24fa612011-09-29 00:53:55 -0700351 : oat_file_(oat_file),
352 dex_file_location_(dex_file_location),
Brian Carlstrom5b332c82012-02-01 15:02:31 -0800353 dex_file_location_checksum_(dex_file_location_checksum),
Brian Carlstrom89521892011-12-07 22:05:07 -0800354 dex_file_pointer_(dex_file_pointer),
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800355 oat_class_offsets_pointer_(oat_class_offsets_pointer) {}
Brian Carlstrome24fa612011-09-29 00:53:55 -0700356
357OatFile::OatDexFile::~OatDexFile() {}
358
Ian Rogers05f28c62012-10-23 18:12:13 -0700359size_t OatFile::OatDexFile::FileSize() const {
360 return reinterpret_cast<const DexFile::Header*>(dex_file_pointer_)->file_size_;
361}
362
Brian Carlstrom89521892011-12-07 22:05:07 -0800363const DexFile* OatFile::OatDexFile::OpenDexFile() const {
Ian Rogers05f28c62012-10-23 18:12:13 -0700364 return DexFile::Open(dex_file_pointer_, FileSize(), dex_file_location_,
Brian Carlstrom28db0122012-10-18 16:20:41 -0700365 dex_file_location_checksum_);
Brian Carlstrom89521892011-12-07 22:05:07 -0800366}
367
Ian Rogers8b2c0b92013-09-19 02:56:49 -0700368const OatFile::OatClass* OatFile::OatDexFile::GetOatClass(uint16_t class_def_index) const {
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800369 uint32_t oat_class_offset = oat_class_offsets_pointer_[class_def_index];
370
Ian Rogers30fab402012-01-23 15:43:46 -0800371 const byte* oat_class_pointer = oat_file_->Begin() + oat_class_offset;
Brian Carlstrom7571e8b2013-08-12 17:04:14 -0700372 CHECK_LT(oat_class_pointer, oat_file_->End()) << oat_file_->GetLocation();
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800373 mirror::Class::Status status = *reinterpret_cast<const mirror::Class::Status*>(oat_class_pointer);
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800374
375 const byte* methods_pointer = oat_class_pointer + sizeof(status);
Brian Carlstrom7571e8b2013-08-12 17:04:14 -0700376 CHECK_LT(methods_pointer, oat_file_->End()) << oat_file_->GetLocation();
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800377
378 return new OatClass(oat_file_,
379 status,
380 reinterpret_cast<const OatMethodOffsets*>(methods_pointer));
Brian Carlstrome24fa612011-09-29 00:53:55 -0700381}
382
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800383OatFile::OatClass::OatClass(const OatFile* oat_file,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800384 mirror::Class::Status status,
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800385 const OatMethodOffsets* methods_pointer)
386 : oat_file_(oat_file), status_(status), methods_pointer_(methods_pointer) {}
Brian Carlstrome24fa612011-09-29 00:53:55 -0700387
388OatFile::OatClass::~OatClass() {}
389
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800390mirror::Class::Status OatFile::OatClass::GetStatus() const {
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800391 return status_;
392}
393
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700394const OatFile::OatMethod OatFile::OatClass::GetOatMethod(uint32_t method_index) const {
395 const OatMethodOffsets& oat_method_offsets = methods_pointer_[method_index];
396 return OatMethod(
Ian Rogers30fab402012-01-23 15:43:46 -0800397 oat_file_->Begin(),
Brian Carlstromae826982011-11-09 01:33:42 -0800398 oat_method_offsets.code_offset_,
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700399 oat_method_offsets.frame_size_in_bytes_,
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700400 oat_method_offsets.core_spill_mask_,
401 oat_method_offsets.fp_spill_mask_,
Brian Carlstromae826982011-11-09 01:33:42 -0800402 oat_method_offsets.mapping_table_offset_,
403 oat_method_offsets.vmap_table_offset_,
Brian Carlstrom6a47b9d2013-05-17 10:58:25 -0700404 oat_method_offsets.gc_map_offset_);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700405}
406
Brian Carlstromae826982011-11-09 01:33:42 -0800407OatFile::OatMethod::OatMethod(const byte* base,
408 const uint32_t code_offset,
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700409 const size_t frame_size_in_bytes,
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700410 const uint32_t core_spill_mask,
411 const uint32_t fp_spill_mask,
Brian Carlstromae826982011-11-09 01:33:42 -0800412 const uint32_t mapping_table_offset,
413 const uint32_t vmap_table_offset,
Brian Carlstrom6a47b9d2013-05-17 10:58:25 -0700414 const uint32_t gc_map_offset)
Ian Rogers30fab402012-01-23 15:43:46 -0800415 : begin_(base),
Brian Carlstromae826982011-11-09 01:33:42 -0800416 code_offset_(code_offset),
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700417 frame_size_in_bytes_(frame_size_in_bytes),
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700418 core_spill_mask_(core_spill_mask),
419 fp_spill_mask_(fp_spill_mask),
Brian Carlstromae826982011-11-09 01:33:42 -0800420 mapping_table_offset_(mapping_table_offset),
421 vmap_table_offset_(vmap_table_offset),
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700422 native_gc_map_offset_(gc_map_offset) {
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700423#ifndef NDEBUG
Brian Carlstromae826982011-11-09 01:33:42 -0800424 if (mapping_table_offset_ != 0) { // implies non-native, non-stub code
425 if (vmap_table_offset_ == 0) {
Brian Carlstromfb331d72013-07-25 22:00:16 -0700426 DCHECK_EQ(0U, static_cast<uint32_t>(__builtin_popcount(core_spill_mask_) +
427 __builtin_popcount(fp_spill_mask_)));
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700428 } else {
Ian Rogers1809a722013-08-09 22:05:32 -0700429 VmapTable vmap_table(reinterpret_cast<const uint8_t*>(begin_ + vmap_table_offset_));
430
431 DCHECK_EQ(vmap_table.Size(), static_cast<uint32_t>(__builtin_popcount(core_spill_mask_) +
432 __builtin_popcount(fp_spill_mask_)));
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700433 }
434 } else {
Elliott Hughesba8eee12012-01-24 20:25:24 -0800435 DCHECK_EQ(vmap_table_offset_, 0U);
Brian Carlstrom0dd7dda2011-10-25 15:47:53 -0700436 }
437#endif
438}
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700439
440OatFile::OatMethod::~OatMethod() {}
441
Logan Chien0c717dd2012-03-28 18:31:07 +0800442const void* OatFile::OatMethod::GetCode() const {
Logan Chien971bf3f2012-05-01 15:47:55 +0800443 return GetOatPointer<const void*>(code_offset_);
Logan Chien0c717dd2012-03-28 18:31:07 +0800444}
445
446uint32_t OatFile::OatMethod::GetCodeSize() const {
Brian Carlstrom265091e2013-01-30 14:08:26 -0800447#if defined(ART_USE_PORTABLE_COMPILER)
448 // TODO: With Quick, we store the size before the code. With
449 // Portable, the code is in a .o file we don't manage ourselves. ELF
450 // symbols do have a concept of size, so we could capture that and
451 // store it somewhere, such as the OatMethod.
452 return 0;
453#else
Logan Chien971bf3f2012-05-01 15:47:55 +0800454 uintptr_t code = reinterpret_cast<uint32_t>(GetCode());
Logan Chien0c717dd2012-03-28 18:31:07 +0800455
Logan Chien971bf3f2012-05-01 15:47:55 +0800456 if (code == 0) {
Logan Chien0c717dd2012-03-28 18:31:07 +0800457 return 0;
458 }
Logan Chien971bf3f2012-05-01 15:47:55 +0800459 // TODO: make this Thumb2 specific
460 code &= ~0x1;
461 return reinterpret_cast<uint32_t*>(code)[-1];
Brian Carlstrom265091e2013-01-30 14:08:26 -0800462#endif
Logan Chien0c717dd2012-03-28 18:31:07 +0800463}
464
Brian Carlstromea46f952013-07-30 01:26:50 -0700465void OatFile::OatMethod::LinkMethod(mirror::ArtMethod* method) const {
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700466 CHECK(method != NULL);
Jeff Haoaa4a7932013-05-13 11:28:27 -0700467 method->SetEntryPointFromCompiledCode(GetCode());
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700468 method->SetFrameSizeInBytes(frame_size_in_bytes_);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700469 method->SetCoreSpillMask(core_spill_mask_);
470 method->SetFpSpillMask(fp_spill_mask_);
Brian Carlstromae826982011-11-09 01:33:42 -0800471 method->SetMappingTable(GetMappingTable());
472 method->SetVmapTable(GetVmapTable());
Brian Carlstromfb331d72013-07-25 22:00:16 -0700473 method->SetNativeGcMap(GetNativeGcMap()); // Used by native methods in work around JNI mode.
Brian Carlstromae826982011-11-09 01:33:42 -0800474}
475
Brian Carlstrome24fa612011-09-29 00:53:55 -0700476} // namespace art