Elliott Hughes | 2faa5f1 | 2012-01-30 14:42:07 -0800 | [diff] [blame] | 1 | /* |
| 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 Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 16 | |
| 17 | #include "oat_file.h" |
| 18 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 19 | #include "file.h" |
| 20 | #include "os.h" |
| 21 | #include "stl_util.h" |
| 22 | |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 23 | #if defined(ART_USE_LLVM_COMPILER) |
| 24 | #include "compiler_llvm/elf_loader.h" |
| 25 | #endif |
| 26 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 27 | namespace art { |
| 28 | |
jeffhao | 262bf46 | 2011-10-20 18:36:32 -0700 | [diff] [blame] | 29 | std::string OatFile::DexFilenameToOatFilename(const std::string& location) { |
jeffhao | 262bf46 | 2011-10-20 18:36:32 -0700 | [diff] [blame] | 30 | CHECK(IsValidDexFilename(location) || IsValidZipFilename(location)); |
Brian Carlstrom | a6cc893 | 2012-01-04 14:44:07 -0800 | [diff] [blame] | 31 | std::string oat_location(location); |
| 32 | oat_location += ".oat"; |
jeffhao | 262bf46 | 2011-10-20 18:36:32 -0700 | [diff] [blame] | 33 | return oat_location; |
Brian Carlstrom | b7bbba4 | 2011-10-13 14:58:47 -0700 | [diff] [blame] | 34 | } |
| 35 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 36 | OatFile* OatFile::Open(const std::string& filename, |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 37 | const std::string& location, |
Brian Carlstrom | f582258 | 2012-03-19 22:34:31 -0700 | [diff] [blame] | 38 | byte* requested_base, |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 39 | RelocationBehavior reloc, |
Brian Carlstrom | f582258 | 2012-03-19 22:34:31 -0700 | [diff] [blame] | 40 | bool writable) { |
Brian Carlstrom | 7a967b3 | 2012-03-28 15:23:10 -0700 | [diff] [blame] | 41 | CHECK(!filename.empty()) << location; |
Brian Carlstrom | f582258 | 2012-03-19 22:34:31 -0700 | [diff] [blame] | 42 | UniquePtr<File> file(OS::OpenFile(filename.c_str(), writable, false)); |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 43 | if (file.get() == NULL) { |
Brian Carlstrom | f582258 | 2012-03-19 22:34:31 -0700 | [diff] [blame] | 44 | return NULL; |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 45 | } |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 46 | return Open(*file.get(), location, requested_base, reloc, writable); |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 47 | } |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 48 | |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 49 | OatFile* OatFile::Open(File& file, |
| 50 | const std::string& location, |
Brian Carlstrom | f582258 | 2012-03-19 22:34:31 -0700 | [diff] [blame] | 51 | byte* requested_base, |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 52 | RelocationBehavior reloc, |
Brian Carlstrom | f582258 | 2012-03-19 22:34:31 -0700 | [diff] [blame] | 53 | bool writable) { |
Brian Carlstrom | 7a967b3 | 2012-03-28 15:23:10 -0700 | [diff] [blame] | 54 | CHECK(!location.empty()); |
| 55 | if (!IsValidOatFilename(location)) { |
| 56 | LOG(WARNING) << "Attempting to open dex file with unknown extension '" << location << "'"; |
| 57 | } |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 58 | UniquePtr<OatFile> oat_file(new OatFile(location)); |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 59 | bool success = oat_file->Map(file, requested_base, reloc, writable); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 60 | if (!success) { |
| 61 | return NULL; |
| 62 | } |
| 63 | return oat_file.release(); |
| 64 | } |
| 65 | |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 66 | OatFile::OatFile(const std::string& location) |
| 67 | : location_(location) |
| 68 | #if defined(ART_USE_LLVM_COMPILER) |
| 69 | , elf_loader_(new compiler_llvm::ElfLoader()) |
| 70 | #endif |
| 71 | { |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 72 | CHECK(!location_.empty()); |
| 73 | } |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 74 | |
| 75 | OatFile::~OatFile() { |
| 76 | STLDeleteValues(&oat_dex_files_); |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 77 | #if defined(ART_USE_LLVM_COMPILER) |
Logan Chien | 0cc6ab6 | 2012-03-20 22:57:52 +0800 | [diff] [blame] | 78 | STLDeleteElements(&oat_elf_images_); |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 79 | #endif |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 80 | } |
| 81 | |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 82 | bool OatFile::Map(File& file, |
| 83 | byte* requested_base, |
| 84 | #if defined(ART_USE_LLVM_COMPILER) |
| 85 | RelocationBehavior reloc, |
| 86 | #else |
| 87 | RelocationBehavior /*UNUSED*/, |
| 88 | #endif |
| 89 | bool writable) { |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 90 | OatHeader oat_header; |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 91 | bool success = file.ReadFully(&oat_header, sizeof(oat_header)); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 92 | if (!success || !oat_header.IsValid()) { |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 93 | LOG(WARNING) << "Invalid oat header " << GetLocation(); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 94 | return false; |
| 95 | } |
| 96 | |
Brian Carlstrom | f582258 | 2012-03-19 22:34:31 -0700 | [diff] [blame] | 97 | int flags = 0; |
| 98 | int prot = 0; |
| 99 | if (writable) { |
| 100 | flags |= MAP_SHARED; // So changes will write through to file |
| 101 | prot |= (PROT_READ | PROT_WRITE); |
| 102 | } else { |
| 103 | flags |= MAP_PRIVATE; |
| 104 | prot |= PROT_READ; |
| 105 | } |
| 106 | if (requested_base != NULL) { |
| 107 | flags |= MAP_FIXED; |
| 108 | } |
Brian Carlstrom | 8952189 | 2011-12-07 22:05:07 -0800 | [diff] [blame] | 109 | UniquePtr<MemMap> map(MemMap::MapFileAtAddress(requested_base, |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 110 | file.Length(), |
Brian Carlstrom | f582258 | 2012-03-19 22:34:31 -0700 | [diff] [blame] | 111 | prot, |
Brian Carlstrom | 8952189 | 2011-12-07 22:05:07 -0800 | [diff] [blame] | 112 | flags, |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 113 | file.Fd(), |
Brian Carlstrom | 8952189 | 2011-12-07 22:05:07 -0800 | [diff] [blame] | 114 | 0)); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 115 | if (map.get() == NULL) { |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 116 | LOG(WARNING) << "Failed to map oat file " << GetLocation(); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 117 | return false; |
| 118 | } |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 119 | CHECK(requested_base == 0 || requested_base == map->Begin()) |
Brian Carlstrom | f8bbb84 | 2012-03-14 03:01:42 -0700 | [diff] [blame] | 120 | << GetLocation() << " " << reinterpret_cast<void*>(map->Begin()); |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 121 | DCHECK_EQ(0, memcmp(&oat_header, map->Begin(), sizeof(OatHeader))) << GetLocation(); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 122 | |
Elliott Hughes | e689d51 | 2012-01-18 23:39:47 -0800 | [diff] [blame] | 123 | off_t code_offset = oat_header.GetExecutableOffset(); |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 124 | if (code_offset < file.Length()) { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 125 | byte* code_address = map->Begin() + code_offset; |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 126 | size_t code_length = file.Length() - code_offset; |
Brian Carlstrom | f582258 | 2012-03-19 22:34:31 -0700 | [diff] [blame] | 127 | if (mprotect(code_address, code_length, prot | PROT_EXEC) != 0) { |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 128 | PLOG(ERROR) << "Failed to make oat code executable in " << GetLocation(); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 129 | return false; |
| 130 | } |
| 131 | } else { |
| 132 | // its possible to have no code if all the methods were abstract, native, etc |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 133 | DCHECK_EQ(code_offset, RoundUp(file.Length(), kPageSize)) << GetLocation(); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 134 | } |
| 135 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 136 | const byte* oat = map->Begin(); |
Brian Carlstrom | 6e3b1d9 | 2012-01-11 01:36:32 -0800 | [diff] [blame] | 137 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 138 | oat += sizeof(OatHeader); |
Brian Carlstrom | 81f3ca1 | 2012-03-17 00:27:35 -0700 | [diff] [blame] | 139 | oat += oat_header.GetImageFileLocationSize(); |
| 140 | |
| 141 | CHECK_LE(oat, map->End()) |
| 142 | << reinterpret_cast<void*>(map->Begin()) |
| 143 | << "+" << sizeof(OatHeader) |
| 144 | << "+" << oat_header.GetImageFileLocationSize() |
| 145 | << "<=" << reinterpret_cast<void*>(map->End()) |
| 146 | << " " << GetLocation(); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 147 | for (size_t i = 0; i < oat_header.GetDexFileCount(); i++) { |
| 148 | size_t dex_file_location_size = *reinterpret_cast<const uint32_t*>(oat); |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 149 | CHECK_GT(dex_file_location_size, 0U) << GetLocation(); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 150 | oat += sizeof(dex_file_location_size); |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 151 | CHECK_LT(oat, map->End()) << GetLocation(); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 152 | |
| 153 | const char* dex_file_location_data = reinterpret_cast<const char*>(oat); |
| 154 | oat += dex_file_location_size; |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 155 | CHECK_LT(oat, map->End()) << GetLocation(); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 156 | |
| 157 | std::string dex_file_location(dex_file_location_data, dex_file_location_size); |
| 158 | |
| 159 | uint32_t dex_file_checksum = *reinterpret_cast<const uint32_t*>(oat); |
| 160 | oat += sizeof(dex_file_checksum); |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 161 | CHECK_LT(oat, map->End()) << GetLocation(); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 162 | |
Brian Carlstrom | 8952189 | 2011-12-07 22:05:07 -0800 | [diff] [blame] | 163 | uint32_t dex_file_offset = *reinterpret_cast<const uint32_t*>(oat); |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 164 | CHECK_GT(dex_file_offset, 0U) << GetLocation(); |
| 165 | CHECK_LT(dex_file_offset, static_cast<uint32_t>(file.Length())) << GetLocation(); |
Brian Carlstrom | 8952189 | 2011-12-07 22:05:07 -0800 | [diff] [blame] | 166 | oat += sizeof(dex_file_offset); |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 167 | CHECK_LT(oat, map->End()) << GetLocation(); |
Brian Carlstrom | 8952189 | 2011-12-07 22:05:07 -0800 | [diff] [blame] | 168 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 169 | uint8_t* dex_file_pointer = map->Begin() + dex_file_offset; |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 170 | CHECK(DexFile::IsMagicValid(dex_file_pointer)) << GetLocation() << " " << dex_file_pointer; |
| 171 | CHECK(DexFile::IsVersionValid(dex_file_pointer)) << GetLocation() << " " << dex_file_pointer; |
Brian Carlstrom | 6e3b1d9 | 2012-01-11 01:36:32 -0800 | [diff] [blame] | 172 | const DexFile::Header* header = reinterpret_cast<const DexFile::Header*>(dex_file_pointer); |
| 173 | const uint32_t* methods_offsets_pointer = reinterpret_cast<const uint32_t*>(oat); |
Brian Carlstrom | 8952189 | 2011-12-07 22:05:07 -0800 | [diff] [blame] | 174 | |
Brian Carlstrom | 6e3b1d9 | 2012-01-11 01:36:32 -0800 | [diff] [blame] | 175 | oat += (sizeof(*methods_offsets_pointer) * header->class_defs_size_); |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 176 | CHECK_LE(oat, map->End()) << GetLocation(); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 177 | |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 178 | oat_dex_files_.Put(dex_file_location, new OatDexFile(this, |
| 179 | dex_file_location, |
| 180 | dex_file_checksum, |
| 181 | dex_file_pointer, |
| 182 | methods_offsets_pointer)); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 183 | } |
| 184 | |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 185 | #if !defined(ART_USE_LLVM_COMPILER) |
| 186 | CHECK_EQ(oat_header.GetElfImageTableOffset(), 0u); |
| 187 | CHECK_EQ(oat_header.GetElfImageCount(), 0u); |
| 188 | |
| 189 | #else |
Logan Chien | 0cc6ab6 | 2012-03-20 22:57:52 +0800 | [diff] [blame] | 190 | oat = map->Begin() + oat_header.GetElfImageTableOffset(); |
Logan Chien | 8b0c816 | 2012-06-22 13:05:45 +0800 | [diff] [blame] | 191 | CHECK_EQ((reinterpret_cast<uintptr_t>(oat) & 0x3), 0u); |
Logan Chien | 0cc6ab6 | 2012-03-20 22:57:52 +0800 | [diff] [blame] | 192 | |
| 193 | for (uint32_t i = 0, end = oat_header.GetElfImageCount(); i < end; ++i) { |
| 194 | uint32_t elf_offset = *reinterpret_cast<const uint32_t*>(oat); |
| 195 | oat += sizeof(uint32_t); |
| 196 | |
| 197 | uint32_t elf_size = *reinterpret_cast<const uint32_t*>(oat); |
| 198 | oat += sizeof(uint32_t); |
| 199 | |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 200 | const byte* elf_begin = map->Begin() + elf_offset; |
| 201 | |
| 202 | oat_elf_images_.push_back(new OatElfImage(this, elf_begin, elf_size)); |
| 203 | |
| 204 | if (!elf_loader_->LoadElfAt(i, ElfImage(elf_begin, elf_size), reloc)) { |
| 205 | LOG(ERROR) << "Failed to load ELF image. index: " << i; |
| 206 | } |
Logan Chien | 0cc6ab6 | 2012-03-20 22:57:52 +0800 | [diff] [blame] | 207 | } |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 208 | #endif |
Logan Chien | 0cc6ab6 | 2012-03-20 22:57:52 +0800 | [diff] [blame] | 209 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 210 | mem_map_.reset(map.release()); |
| 211 | return true; |
| 212 | } |
| 213 | |
| 214 | const OatHeader& OatFile::GetOatHeader() const { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 215 | return *reinterpret_cast<const OatHeader*>(Begin()); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 216 | } |
| 217 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 218 | const byte* OatFile::Begin() const { |
| 219 | CHECK(mem_map_->Begin() != NULL); |
| 220 | return mem_map_->Begin(); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 221 | } |
| 222 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 223 | const byte* OatFile::End() const { |
| 224 | CHECK(mem_map_->End() != NULL); |
| 225 | return mem_map_->End(); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 226 | } |
| 227 | |
Ian Rogers | 7fe2c69 | 2011-12-06 16:35:59 -0800 | [diff] [blame] | 228 | const OatFile::OatDexFile* OatFile::GetOatDexFile(const std::string& dex_file_location, |
| 229 | bool warn_if_not_found) const { |
Brian Carlstrom | 58ae941 | 2011-10-04 00:56:06 -0700 | [diff] [blame] | 230 | Table::const_iterator it = oat_dex_files_.find(dex_file_location); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 231 | if (it == oat_dex_files_.end()) { |
Ian Rogers | 7fe2c69 | 2011-12-06 16:35:59 -0800 | [diff] [blame] | 232 | if (warn_if_not_found) { |
| 233 | LOG(WARNING) << "Failed to find OatDexFile for DexFile " << dex_file_location; |
| 234 | } |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 235 | return NULL; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 236 | } |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 237 | return it->second; |
| 238 | } |
| 239 | |
| 240 | std::vector<const OatFile::OatDexFile*> OatFile::GetOatDexFiles() const { |
| 241 | std::vector<const OatFile::OatDexFile*> result; |
Elliott Hughes | 362f9bc | 2011-10-17 18:56:41 -0700 | [diff] [blame] | 242 | for (Table::const_iterator it = oat_dex_files_.begin(); it != oat_dex_files_.end(); ++it) { |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 243 | result.push_back(it->second); |
| 244 | } |
| 245 | return result; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 246 | } |
| 247 | |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 248 | void OatFile::RelocateExecutable() { |
| 249 | #if defined(ART_USE_LLVM_COMPILER) |
| 250 | elf_loader_->RelocateExecutable(); |
| 251 | #endif |
| 252 | } |
| 253 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 254 | OatFile::OatDexFile::OatDexFile(const OatFile* oat_file, |
Elliott Hughes | aa6a588 | 2012-01-13 19:39:16 -0800 | [diff] [blame] | 255 | const std::string& dex_file_location, |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 256 | uint32_t dex_file_location_checksum, |
Brian Carlstrom | 8952189 | 2011-12-07 22:05:07 -0800 | [diff] [blame] | 257 | byte* dex_file_pointer, |
Brian Carlstrom | 0755ec5 | 2012-01-11 15:19:46 -0800 | [diff] [blame] | 258 | const uint32_t* oat_class_offsets_pointer) |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 259 | : oat_file_(oat_file), |
| 260 | dex_file_location_(dex_file_location), |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 261 | dex_file_location_checksum_(dex_file_location_checksum), |
Brian Carlstrom | 8952189 | 2011-12-07 22:05:07 -0800 | [diff] [blame] | 262 | dex_file_pointer_(dex_file_pointer), |
Brian Carlstrom | 0755ec5 | 2012-01-11 15:19:46 -0800 | [diff] [blame] | 263 | oat_class_offsets_pointer_(oat_class_offsets_pointer) {} |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 264 | |
| 265 | OatFile::OatDexFile::~OatDexFile() {} |
| 266 | |
Brian Carlstrom | 8952189 | 2011-12-07 22:05:07 -0800 | [diff] [blame] | 267 | const DexFile* OatFile::OatDexFile::OpenDexFile() const { |
| 268 | size_t length = reinterpret_cast<const DexFile::Header*>(dex_file_pointer_)->file_size_; |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 269 | return DexFile::Open(dex_file_pointer_, length, dex_file_location_, dex_file_location_checksum_); |
Brian Carlstrom | 8952189 | 2011-12-07 22:05:07 -0800 | [diff] [blame] | 270 | } |
| 271 | |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 272 | const OatFile::OatClass* OatFile::OatDexFile::GetOatClass(uint32_t class_def_index) const { |
Brian Carlstrom | 0755ec5 | 2012-01-11 15:19:46 -0800 | [diff] [blame] | 273 | uint32_t oat_class_offset = oat_class_offsets_pointer_[class_def_index]; |
| 274 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 275 | const byte* oat_class_pointer = oat_file_->Begin() + oat_class_offset; |
| 276 | CHECK_LT(oat_class_pointer, oat_file_->End()); |
Brian Carlstrom | 0755ec5 | 2012-01-11 15:19:46 -0800 | [diff] [blame] | 277 | Class::Status status = *reinterpret_cast<const Class::Status*>(oat_class_pointer); |
| 278 | |
| 279 | const byte* methods_pointer = oat_class_pointer + sizeof(status); |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 280 | CHECK_LT(methods_pointer, oat_file_->End()); |
Brian Carlstrom | 0755ec5 | 2012-01-11 15:19:46 -0800 | [diff] [blame] | 281 | |
| 282 | return new OatClass(oat_file_, |
| 283 | status, |
| 284 | reinterpret_cast<const OatMethodOffsets*>(methods_pointer)); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 285 | } |
| 286 | |
Brian Carlstrom | 0755ec5 | 2012-01-11 15:19:46 -0800 | [diff] [blame] | 287 | OatFile::OatClass::OatClass(const OatFile* oat_file, |
| 288 | Class::Status status, |
| 289 | const OatMethodOffsets* methods_pointer) |
| 290 | : oat_file_(oat_file), status_(status), methods_pointer_(methods_pointer) {} |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 291 | |
| 292 | OatFile::OatClass::~OatClass() {} |
| 293 | |
Brian Carlstrom | 0755ec5 | 2012-01-11 15:19:46 -0800 | [diff] [blame] | 294 | Class::Status OatFile::OatClass::GetStatus() const { |
| 295 | return status_; |
| 296 | } |
| 297 | |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 298 | const OatFile::OatMethod OatFile::OatClass::GetOatMethod(uint32_t method_index) const { |
| 299 | const OatMethodOffsets& oat_method_offsets = methods_pointer_[method_index]; |
| 300 | return OatMethod( |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 301 | oat_file_->Begin(), |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 302 | oat_method_offsets.code_offset_, |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 303 | oat_method_offsets.frame_size_in_bytes_, |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 304 | oat_method_offsets.core_spill_mask_, |
| 305 | oat_method_offsets.fp_spill_mask_, |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 306 | oat_method_offsets.mapping_table_offset_, |
| 307 | oat_method_offsets.vmap_table_offset_, |
Brian Carlstrom | e7d856b | 2012-01-11 18:10:55 -0800 | [diff] [blame] | 308 | oat_method_offsets.gc_map_offset_, |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 309 | oat_method_offsets.invoke_stub_offset_ |
| 310 | #if defined(ART_USE_LLVM_COMPILER) |
| 311 | , oat_file_->elf_loader_.get(), |
| 312 | oat_method_offsets.code_elf_idx_, |
Logan Chien | 937105a | 2012-04-02 02:37:37 +0800 | [diff] [blame] | 313 | oat_method_offsets.code_elf_func_idx_, |
| 314 | oat_method_offsets.invoke_stub_elf_idx_, |
TDYa127 | eead4ac | 2012-06-03 07:15:25 -0700 | [diff] [blame] | 315 | oat_method_offsets.invoke_stub_elf_func_idx_, |
Logan Chien | 7a2a23a | 2012-06-06 11:01:00 +0800 | [diff] [blame] | 316 | oat_method_offsets.proxy_stub_elf_idx_, |
TDYa127 | eead4ac | 2012-06-03 07:15:25 -0700 | [diff] [blame] | 317 | oat_method_offsets.proxy_stub_elf_func_idx_ |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 318 | #endif |
| 319 | ); |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 320 | } |
| 321 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 322 | OatFile::OatMethod::OatMethod(const byte* base, |
| 323 | const uint32_t code_offset, |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 324 | const size_t frame_size_in_bytes, |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 325 | const uint32_t core_spill_mask, |
| 326 | const uint32_t fp_spill_mask, |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 327 | const uint32_t mapping_table_offset, |
| 328 | const uint32_t vmap_table_offset, |
Brian Carlstrom | e7d856b | 2012-01-11 18:10:55 -0800 | [diff] [blame] | 329 | const uint32_t gc_map_offset, |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 330 | const uint32_t invoke_stub_offset |
| 331 | #if defined(ART_USE_LLVM_COMPILER) |
| 332 | , const compiler_llvm::ElfLoader* elf_loader, |
Logan Chien | 937105a | 2012-04-02 02:37:37 +0800 | [diff] [blame] | 333 | const uint16_t code_elf_idx, |
| 334 | const uint16_t code_elf_func_idx, |
| 335 | const uint16_t invoke_stub_elf_idx, |
TDYa127 | eead4ac | 2012-06-03 07:15:25 -0700 | [diff] [blame] | 336 | const uint16_t invoke_stub_elf_func_idx, |
Logan Chien | 7a2a23a | 2012-06-06 11:01:00 +0800 | [diff] [blame] | 337 | const uint16_t proxy_stub_elf_idx, |
TDYa127 | eead4ac | 2012-06-03 07:15:25 -0700 | [diff] [blame] | 338 | const uint16_t proxy_stub_elf_func_idx |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 339 | #endif |
| 340 | ) |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 341 | : begin_(base), |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 342 | code_offset_(code_offset), |
Brian Carlstrom | 0dd7dda | 2011-10-25 15:47:53 -0700 | [diff] [blame] | 343 | frame_size_in_bytes_(frame_size_in_bytes), |
Brian Carlstrom | 0dd7dda | 2011-10-25 15:47:53 -0700 | [diff] [blame] | 344 | core_spill_mask_(core_spill_mask), |
| 345 | fp_spill_mask_(fp_spill_mask), |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 346 | mapping_table_offset_(mapping_table_offset), |
| 347 | vmap_table_offset_(vmap_table_offset), |
Brian Carlstrom | e7d856b | 2012-01-11 18:10:55 -0800 | [diff] [blame] | 348 | gc_map_offset_(gc_map_offset), |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 349 | invoke_stub_offset_(invoke_stub_offset) |
| 350 | #if defined(ART_USE_LLVM_COMPILER) |
| 351 | , elf_loader_(elf_loader), |
| 352 | code_elf_idx_(code_elf_idx), |
Logan Chien | 937105a | 2012-04-02 02:37:37 +0800 | [diff] [blame] | 353 | code_elf_func_idx_(code_elf_func_idx), |
| 354 | invoke_stub_elf_idx_(invoke_stub_elf_idx), |
TDYa127 | eead4ac | 2012-06-03 07:15:25 -0700 | [diff] [blame] | 355 | invoke_stub_elf_func_idx_(invoke_stub_elf_func_idx), |
Logan Chien | 7a2a23a | 2012-06-06 11:01:00 +0800 | [diff] [blame] | 356 | proxy_stub_elf_idx_(proxy_stub_elf_idx), |
TDYa127 | eead4ac | 2012-06-03 07:15:25 -0700 | [diff] [blame] | 357 | proxy_stub_elf_func_idx_(proxy_stub_elf_func_idx) |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 358 | #endif |
| 359 | { |
Brian Carlstrom | 0dd7dda | 2011-10-25 15:47:53 -0700 | [diff] [blame] | 360 | #ifndef NDEBUG |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 361 | if (mapping_table_offset_ != 0) { // implies non-native, non-stub code |
| 362 | if (vmap_table_offset_ == 0) { |
Brian Carlstrom | 0dd7dda | 2011-10-25 15:47:53 -0700 | [diff] [blame] | 363 | DCHECK_EQ(0U, static_cast<uint32_t>(__builtin_popcount(core_spill_mask_) + __builtin_popcount(fp_spill_mask_))); |
| 364 | } else { |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 365 | const uint16_t* vmap_table_ = reinterpret_cast<const uint16_t*>(begin_ + vmap_table_offset_); |
Brian Carlstrom | 0dd7dda | 2011-10-25 15:47:53 -0700 | [diff] [blame] | 366 | DCHECK_EQ(vmap_table_[0], static_cast<uint32_t>(__builtin_popcount(core_spill_mask_) + __builtin_popcount(fp_spill_mask_))); |
| 367 | } |
| 368 | } else { |
Elliott Hughes | ba8eee1 | 2012-01-24 20:25:24 -0800 | [diff] [blame] | 369 | DCHECK_EQ(vmap_table_offset_, 0U); |
Brian Carlstrom | 0dd7dda | 2011-10-25 15:47:53 -0700 | [diff] [blame] | 370 | } |
| 371 | #endif |
| 372 | } |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 373 | |
| 374 | OatFile::OatMethod::~OatMethod() {} |
| 375 | |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 376 | const void* OatFile::OatMethod::GetCode() const { |
| 377 | if (!IsCodeInElf()) { |
| 378 | return GetOatPointer<const void*>(code_offset_); |
| 379 | } else { |
| 380 | #if !defined(ART_USE_LLVM_COMPILER) |
| 381 | UNIMPLEMENTED(FATAL); |
| 382 | return NULL; |
| 383 | #else |
| 384 | CHECK(elf_loader_ != NULL); |
Logan Chien | 937105a | 2012-04-02 02:37:37 +0800 | [diff] [blame] | 385 | const void* code = |
| 386 | elf_loader_->GetMethodCodeAddr(code_elf_idx_, code_elf_func_idx_); |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 387 | CHECK(code != NULL); |
| 388 | return code; |
| 389 | #endif |
| 390 | } |
| 391 | } |
| 392 | |
| 393 | uint32_t OatFile::OatMethod::GetCodeSize() const { |
| 394 | if (!IsCodeInElf()) { |
| 395 | uintptr_t code = reinterpret_cast<uint32_t>(GetCode()); |
| 396 | |
| 397 | if (code == 0) { |
| 398 | return 0; |
| 399 | } |
| 400 | // TODO: make this Thumb2 specific |
| 401 | code &= ~0x1; |
| 402 | return reinterpret_cast<uint32_t*>(code)[-1]; |
| 403 | } else { |
Logan Chien | 14924fe | 2012-04-03 18:33:37 +0800 | [diff] [blame] | 404 | #if !defined(ART_USE_LLVM_COMPILER) |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 405 | UNIMPLEMENTED(ERROR); |
| 406 | return 0; |
Logan Chien | 14924fe | 2012-04-03 18:33:37 +0800 | [diff] [blame] | 407 | #else |
| 408 | CHECK(elf_loader_ != NULL); |
| 409 | return elf_loader_->GetCodeSize(code_elf_idx_, code_elf_func_idx_); |
| 410 | #endif |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 411 | } |
| 412 | } |
| 413 | |
| 414 | const Method::InvokeStub* OatFile::OatMethod::GetInvokeStub() const { |
| 415 | if (!IsInvokeStubInElf()) { |
| 416 | return GetOatPointer<const Method::InvokeStub*>(invoke_stub_offset_); |
| 417 | } else { |
| 418 | #if !defined(ART_USE_LLVM_COMPILER) |
| 419 | UNIMPLEMENTED(FATAL); |
| 420 | return NULL; |
| 421 | #else |
| 422 | CHECK(elf_loader_ != NULL); |
Logan Chien | 937105a | 2012-04-02 02:37:37 +0800 | [diff] [blame] | 423 | const Method::InvokeStub* stub = |
| 424 | elf_loader_->GetMethodInvokeStubAddr(invoke_stub_elf_idx_, |
| 425 | invoke_stub_elf_func_idx_); |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 426 | CHECK(stub != NULL); |
| 427 | return stub; |
| 428 | #endif |
| 429 | } |
| 430 | } |
| 431 | |
| 432 | uint32_t OatFile::OatMethod::GetInvokeStubSize() const { |
| 433 | if (!IsInvokeStubInElf()) { |
| 434 | uintptr_t code = reinterpret_cast<uint32_t>(GetInvokeStub()); |
| 435 | if (code == 0) { |
| 436 | return 0; |
| 437 | } |
Logan Chien | 4284bb9 | 2012-06-06 15:30:44 +0800 | [diff] [blame] | 438 | // TODO: make this Thumb2 specific |
| 439 | code &= ~0x1; |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 440 | return reinterpret_cast<uint32_t*>(code)[-1]; |
| 441 | } else { |
Logan Chien | 14924fe | 2012-04-03 18:33:37 +0800 | [diff] [blame] | 442 | #if !defined(ART_USE_LLVM_COMPILER) |
Logan Chien | 937105a | 2012-04-02 02:37:37 +0800 | [diff] [blame] | 443 | UNIMPLEMENTED(WARNING); |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 444 | return 0; |
Logan Chien | 14924fe | 2012-04-03 18:33:37 +0800 | [diff] [blame] | 445 | #else |
| 446 | CHECK(elf_loader_ != NULL); |
| 447 | return elf_loader_->GetCodeSize(invoke_stub_elf_idx_, |
| 448 | invoke_stub_elf_func_idx_); |
| 449 | #endif |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 450 | } |
| 451 | } |
| 452 | |
TDYa127 | eead4ac | 2012-06-03 07:15:25 -0700 | [diff] [blame] | 453 | #if defined(ART_USE_LLVM_COMPILER) |
| 454 | const void* OatFile::OatMethod::GetProxyStub() const { |
| 455 | CHECK(elf_loader_ != NULL); |
| 456 | const void* stub = NULL; |
| 457 | if (proxy_stub_elf_func_idx_ != static_cast<uint16_t>(-1)) { |
Logan Chien | 7a2a23a | 2012-06-06 11:01:00 +0800 | [diff] [blame] | 458 | stub = elf_loader_->GetMethodCodeAddr(proxy_stub_elf_idx_, |
TDYa127 | eead4ac | 2012-06-03 07:15:25 -0700 | [diff] [blame] | 459 | proxy_stub_elf_func_idx_); |
Logan Chien | 7a2a23a | 2012-06-06 11:01:00 +0800 | [diff] [blame] | 460 | CHECK(stub != NULL); |
TDYa127 | eead4ac | 2012-06-03 07:15:25 -0700 | [diff] [blame] | 461 | } |
| 462 | return stub; |
| 463 | } |
| 464 | #endif |
| 465 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 466 | void OatFile::OatMethod::LinkMethodPointers(Method* method) const { |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 467 | CHECK(method != NULL); |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 468 | method->SetCode(GetCode()); |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 469 | method->SetFrameSizeInBytes(frame_size_in_bytes_); |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 470 | method->SetCoreSpillMask(core_spill_mask_); |
| 471 | method->SetFpSpillMask(fp_spill_mask_); |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 472 | method->SetMappingTable(GetMappingTable()); |
| 473 | method->SetVmapTable(GetVmapTable()); |
Ian Rogers | 1984651 | 2012-02-24 11:42:47 -0800 | [diff] [blame] | 474 | method->SetGcMap(GetGcMap()); // Note, used by native methods in work around JNI mode. |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 475 | method->SetInvokeStub(GetInvokeStub()); |
| 476 | } |
| 477 | |
| 478 | void OatFile::OatMethod::LinkMethodOffsets(Method* method) const { |
| 479 | CHECK(method != NULL); |
| 480 | method->SetOatCodeOffset(GetCodeOffset()); |
| 481 | method->SetFrameSizeInBytes(GetFrameSizeInBytes()); |
| 482 | method->SetCoreSpillMask(GetCoreSpillMask()); |
| 483 | method->SetFpSpillMask(GetFpSpillMask()); |
| 484 | method->SetOatMappingTableOffset(GetMappingTableOffset()); |
| 485 | method->SetOatVmapTableOffset(GetVmapTableOffset()); |
Brian Carlstrom | e7d856b | 2012-01-11 18:10:55 -0800 | [diff] [blame] | 486 | method->SetOatGcMapOffset(GetGcMapOffset()); |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 487 | method->SetOatInvokeStubOffset(GetInvokeStubOffset()); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 488 | } |
| 489 | |
Logan Chien | 937105a | 2012-04-02 02:37:37 +0800 | [diff] [blame] | 490 | #if defined(ART_USE_LLVM_COMPILER) |
Logan Chien | 0cc6ab6 | 2012-03-20 22:57:52 +0800 | [diff] [blame] | 491 | OatFile::OatElfImage::OatElfImage(const OatFile* oat_file, |
| 492 | const byte* addr, |
| 493 | uint32_t size) |
| 494 | : oat_file_(oat_file), elf_addr_(addr), elf_size_(size) { |
| 495 | } |
Logan Chien | 937105a | 2012-04-02 02:37:37 +0800 | [diff] [blame] | 496 | #endif |
Logan Chien | 0cc6ab6 | 2012-03-20 22:57:52 +0800 | [diff] [blame] | 497 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 498 | } // namespace art |