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 | #ifndef ART_SRC_OAT_FILE_H_ |
| 18 | #define ART_SRC_OAT_FILE_H_ |
| 19 | |
| 20 | #include <vector> |
| 21 | |
| 22 | #include "dex_file.h" |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame^] | 23 | #include "invoke_type.h" |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 24 | #include "mem_map.h" |
| 25 | #include "oat.h" |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 26 | #include "object.h" |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 27 | |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame^] | 28 | #if defined(ART_USE_LLVM_COMPILER) |
| 29 | namespace art { |
| 30 | namespace compiler_llvm { |
| 31 | class ElfLoader; |
| 32 | } |
| 33 | } |
| 34 | #endif |
| 35 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 36 | namespace art { |
| 37 | |
| 38 | class OatFile { |
| 39 | public: |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame^] | 40 | enum RelocationBehavior { |
| 41 | kRelocNone, |
| 42 | kRelocAll, |
| 43 | }; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 44 | |
Brian Carlstrom | b7bbba4 | 2011-10-13 14:58:47 -0700 | [diff] [blame] | 45 | // Returns an OatFile name based on a DexFile location |
jeffhao | 262bf46 | 2011-10-20 18:36:32 -0700 | [diff] [blame] | 46 | static std::string DexFilenameToOatFilename(const std::string& location); |
Brian Carlstrom | b7bbba4 | 2011-10-13 14:58:47 -0700 | [diff] [blame] | 47 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 48 | // Open an oat file. Returns NULL on failure. Requested base can |
| 49 | // optionally be used to request where the file should be loaded. |
| 50 | static OatFile* Open(const std::string& filename, |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 51 | const std::string& location, |
Brian Carlstrom | f582258 | 2012-03-19 22:34:31 -0700 | [diff] [blame] | 52 | byte* requested_base, |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame^] | 53 | RelocationBehavior reloc, |
Elliott Hughes | b25c3f6 | 2012-03-26 16:35:06 -0700 | [diff] [blame] | 54 | bool writable = false); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 55 | |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 56 | // Open an oat file from an already opened File with the given location. |
| 57 | static OatFile* Open(File& file, |
| 58 | const std::string& location, |
Brian Carlstrom | f582258 | 2012-03-19 22:34:31 -0700 | [diff] [blame] | 59 | byte* requested_base, |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame^] | 60 | RelocationBehavior reloc, |
Elliott Hughes | b25c3f6 | 2012-03-26 16:35:06 -0700 | [diff] [blame] | 61 | bool writable = false); |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 62 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 63 | ~OatFile(); |
| 64 | |
| 65 | const std::string& GetLocation() const { |
| 66 | return location_; |
| 67 | } |
| 68 | |
| 69 | const OatHeader& GetOatHeader() const; |
| 70 | |
| 71 | class OatDexFile; |
| 72 | |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 73 | class OatMethod { |
| 74 | public: |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 75 | // Link Method for execution using the contents of this OatMethod |
| 76 | void LinkMethodPointers(Method* method) const; |
| 77 | |
| 78 | // Link Method for image writing using the contents of this OatMethod |
| 79 | void LinkMethodOffsets(Method* method) const; |
| 80 | |
| 81 | uint32_t GetCodeOffset() const { |
| 82 | return code_offset_; |
| 83 | } |
| 84 | size_t GetFrameSizeInBytes() const { |
| 85 | return frame_size_in_bytes_; |
| 86 | } |
| 87 | uint32_t GetCoreSpillMask() const { |
| 88 | return core_spill_mask_; |
| 89 | } |
| 90 | uint32_t GetFpSpillMask() const { |
| 91 | return fp_spill_mask_; |
| 92 | } |
| 93 | uint32_t GetMappingTableOffset() const { |
| 94 | return mapping_table_offset_; |
| 95 | } |
| 96 | uint32_t GetVmapTableOffset() const { |
| 97 | return vmap_table_offset_; |
| 98 | } |
Brian Carlstrom | e7d856b | 2012-01-11 18:10:55 -0800 | [diff] [blame] | 99 | uint32_t GetGcMapOffset() const { |
| 100 | return gc_map_offset_; |
| 101 | } |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 102 | uint32_t GetInvokeStubOffset() const { |
| 103 | return invoke_stub_offset_; |
| 104 | } |
| 105 | |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame^] | 106 | #if defined(ART_USE_LLVM_COMPILER) |
| 107 | uint32_t GetCodeElfIndex() const { |
| 108 | return code_elf_idx_; |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 109 | } |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame^] | 110 | uint32_t GetInvokeStubElfIndex() const { |
| 111 | return invoke_stub_elf_idx_; |
Brian Carlstrom | f8bbb84 | 2012-03-14 03:01:42 -0700 | [diff] [blame] | 112 | } |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame^] | 113 | #endif |
| 114 | |
| 115 | bool IsCodeInElf() const { |
| 116 | #if defined(ART_USE_LLVM_COMPILER) |
| 117 | return (code_elf_idx_ != -1u); |
| 118 | #else |
| 119 | return false; |
| 120 | #endif |
| 121 | } |
| 122 | |
| 123 | bool IsInvokeStubInElf() const { |
| 124 | #if defined(ART_USE_LLVM_COMPILER) |
| 125 | return (invoke_stub_elf_idx_ != -1u); |
| 126 | #else |
| 127 | return false; |
| 128 | #endif |
| 129 | } |
| 130 | |
| 131 | const void* GetCode() const; |
| 132 | uint32_t GetCodeSize() const; |
| 133 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 134 | const uint32_t* GetMappingTable() const { |
| 135 | return GetOatPointer<const uint32_t*>(mapping_table_offset_); |
| 136 | } |
| 137 | const uint16_t* GetVmapTable() const { |
| 138 | return GetOatPointer<const uint16_t*>(vmap_table_offset_); |
| 139 | } |
Brian Carlstrom | e7d856b | 2012-01-11 18:10:55 -0800 | [diff] [blame] | 140 | const uint8_t* GetGcMap() const { |
| 141 | return GetOatPointer<const uint8_t*>(gc_map_offset_); |
| 142 | } |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame^] | 143 | |
| 144 | const Method::InvokeStub* GetInvokeStub() const; |
| 145 | uint32_t GetInvokeStubSize() const; |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 146 | |
| 147 | ~OatMethod(); |
| 148 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 149 | // Create an OatMethod with offsets relative to the given base address |
| 150 | OatMethod(const byte* base, |
| 151 | const uint32_t code_offset, |
| 152 | const size_t frame_size_in_bytes, |
| 153 | const uint32_t core_spill_mask, |
| 154 | const uint32_t fp_spill_mask, |
| 155 | const uint32_t mapping_table_offset, |
| 156 | const uint32_t vmap_table_offset, |
Brian Carlstrom | e7d856b | 2012-01-11 18:10:55 -0800 | [diff] [blame] | 157 | const uint32_t gc_map_offset, |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame^] | 158 | const uint32_t invoke_stub_offset |
| 159 | #if defined(ART_USE_LLVM_COMPILER) |
| 160 | , const compiler_llvm::ElfLoader* elf_loader, |
| 161 | const uint32_t code_elf_idx, |
| 162 | const uint32_t invoke_stub_elf_idx |
| 163 | #endif |
| 164 | ); |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 165 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 166 | private: |
| 167 | template<class T> |
| 168 | T GetOatPointer(uint32_t offset) const { |
| 169 | if (offset == 0) { |
| 170 | return NULL; |
| 171 | } |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 172 | return reinterpret_cast<T>(begin_ + offset); |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 173 | } |
| 174 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 175 | const byte* begin_; |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 176 | |
| 177 | uint32_t code_offset_; |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 178 | size_t frame_size_in_bytes_; |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 179 | uint32_t core_spill_mask_; |
| 180 | uint32_t fp_spill_mask_; |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 181 | uint32_t mapping_table_offset_; |
| 182 | uint32_t vmap_table_offset_; |
Brian Carlstrom | e7d856b | 2012-01-11 18:10:55 -0800 | [diff] [blame] | 183 | uint32_t gc_map_offset_; |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 184 | uint32_t invoke_stub_offset_; |
| 185 | |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame^] | 186 | #if defined(ART_USE_LLVM_COMPILER) |
| 187 | const compiler_llvm::ElfLoader* elf_loader_; |
| 188 | |
| 189 | uint32_t code_elf_idx_; |
| 190 | uint32_t invoke_stub_elf_idx_; |
| 191 | #endif |
| 192 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 193 | friend class OatClass; |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 194 | }; |
| 195 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 196 | class OatClass { |
| 197 | public: |
Brian Carlstrom | 0755ec5 | 2012-01-11 15:19:46 -0800 | [diff] [blame] | 198 | Class::Status GetStatus() const; |
| 199 | |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 200 | // get the OatMethod entry based on its index into the class |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 201 | // defintion. direct methods come first, followed by virtual |
| 202 | // methods. note that runtime created methods such as miranda |
| 203 | // methods are not included. |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 204 | const OatMethod GetOatMethod(uint32_t method_index) const; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 205 | ~OatClass(); |
| 206 | |
| 207 | private: |
Brian Carlstrom | 0755ec5 | 2012-01-11 15:19:46 -0800 | [diff] [blame] | 208 | OatClass(const OatFile* oat_file, |
| 209 | Class::Status status, |
| 210 | const OatMethodOffsets* methods_pointer); |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 211 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 212 | const OatFile* oat_file_; |
Brian Carlstrom | 0755ec5 | 2012-01-11 15:19:46 -0800 | [diff] [blame] | 213 | const Class::Status status_; |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 214 | const OatMethodOffsets* methods_pointer_; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 215 | |
| 216 | friend class OatDexFile; |
| 217 | }; |
| 218 | |
| 219 | class OatDexFile { |
| 220 | public: |
Brian Carlstrom | 8952189 | 2011-12-07 22:05:07 -0800 | [diff] [blame] | 221 | const DexFile* OpenDexFile() const; |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 222 | const OatClass* GetOatClass(uint32_t class_def_index) const; |
| 223 | |
| 224 | const std::string& GetDexFileLocation() const { |
| 225 | return dex_file_location_; |
| 226 | } |
Brian Carlstrom | 58ae941 | 2011-10-04 00:56:06 -0700 | [diff] [blame] | 227 | |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 228 | uint32_t GetDexFileLocationChecksum() const { |
| 229 | return dex_file_location_checksum_; |
Brian Carlstrom | 58ae941 | 2011-10-04 00:56:06 -0700 | [diff] [blame] | 230 | } |
| 231 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 232 | ~OatDexFile(); |
| 233 | private: |
| 234 | OatDexFile(const OatFile* oat_file, |
Elliott Hughes | aa6a588 | 2012-01-13 19:39:16 -0800 | [diff] [blame] | 235 | const std::string& dex_file_location, |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 236 | uint32_t dex_file_checksum, |
Brian Carlstrom | 8952189 | 2011-12-07 22:05:07 -0800 | [diff] [blame] | 237 | byte* dex_file_pointer, |
Brian Carlstrom | 0755ec5 | 2012-01-11 15:19:46 -0800 | [diff] [blame] | 238 | const uint32_t* oat_class_offsets_pointer); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 239 | |
| 240 | const OatFile* oat_file_; |
| 241 | std::string dex_file_location_; |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 242 | uint32_t dex_file_location_checksum_; |
Brian Carlstrom | 8952189 | 2011-12-07 22:05:07 -0800 | [diff] [blame] | 243 | const byte* dex_file_pointer_; |
Brian Carlstrom | 0755ec5 | 2012-01-11 15:19:46 -0800 | [diff] [blame] | 244 | const uint32_t* oat_class_offsets_pointer_; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 245 | |
| 246 | friend class OatFile; |
| 247 | DISALLOW_COPY_AND_ASSIGN(OatDexFile); |
| 248 | }; |
| 249 | |
Logan Chien | 0cc6ab6 | 2012-03-20 22:57:52 +0800 | [diff] [blame] | 250 | class OatElfImage { |
| 251 | public: |
| 252 | const byte* begin() const { |
| 253 | return elf_addr_; |
| 254 | } |
| 255 | |
| 256 | const byte* end() const { |
| 257 | return (elf_addr_ + elf_size_); |
| 258 | } |
| 259 | |
| 260 | size_t size() const { |
| 261 | return elf_size_; |
| 262 | } |
| 263 | |
| 264 | private: |
| 265 | OatElfImage(const OatFile* oat_file, const byte* addr, uint32_t size); |
| 266 | |
| 267 | const OatFile* oat_file_; |
| 268 | const byte* elf_addr_; |
| 269 | uint32_t elf_size_; |
| 270 | |
| 271 | friend class OatFile; |
| 272 | DISALLOW_COPY_AND_ASSIGN(OatElfImage); |
| 273 | }; |
| 274 | |
Ian Rogers | 7fe2c69 | 2011-12-06 16:35:59 -0800 | [diff] [blame] | 275 | const OatDexFile* GetOatDexFile(const std::string& dex_file_location, |
| 276 | bool warn_if_not_found = true) const; |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 277 | std::vector<const OatDexFile*> GetOatDexFiles() const; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 278 | |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame^] | 279 | #if defined(ART_USE_LLVM_COMPILER) |
Logan Chien | 0cc6ab6 | 2012-03-20 22:57:52 +0800 | [diff] [blame] | 280 | const OatElfImage* GetOatElfImage(size_t i) const { |
| 281 | return oat_elf_images_[i]; |
| 282 | } |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame^] | 283 | #endif |
Logan Chien | 0cc6ab6 | 2012-03-20 22:57:52 +0800 | [diff] [blame] | 284 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 285 | size_t Size() const { |
| 286 | return End() - Begin(); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 287 | } |
| 288 | |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame^] | 289 | void RelocateExecutable(); |
| 290 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 291 | private: |
Elliott Hughes | a51a3dd | 2011-10-17 15:19:26 -0700 | [diff] [blame] | 292 | explicit OatFile(const std::string& filename); |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame^] | 293 | bool Map(File& file, byte* requested_base, RelocationBehavior reloc, bool writable); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 294 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 295 | const byte* Begin() const; |
| 296 | const byte* End() const; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 297 | |
| 298 | // The oat file name. |
| 299 | // |
| 300 | // The image will embed this to link its associated oat file. |
| 301 | const std::string location_; |
| 302 | |
| 303 | // backing memory map for oat file |
| 304 | UniquePtr<MemMap> mem_map_; |
| 305 | |
| 306 | typedef std::map<std::string, const OatDexFile*> Table; |
| 307 | Table oat_dex_files_; |
| 308 | |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame^] | 309 | #if defined(ART_USE_LLVM_COMPILER) |
Logan Chien | 0cc6ab6 | 2012-03-20 22:57:52 +0800 | [diff] [blame] | 310 | std::vector<OatElfImage*> oat_elf_images_; |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame^] | 311 | UniquePtr<compiler_llvm::ElfLoader> elf_loader_; |
| 312 | #endif |
Logan Chien | 0cc6ab6 | 2012-03-20 22:57:52 +0800 | [diff] [blame] | 313 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 314 | friend class OatClass; |
| 315 | friend class OatDexFile; |
Elliott Hughes | e3c845c | 2012-02-28 17:23:01 -0800 | [diff] [blame] | 316 | friend class OatDumper; // For GetBase and GetLimit |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 317 | DISALLOW_COPY_AND_ASSIGN(OatFile); |
| 318 | }; |
| 319 | |
| 320 | } // namespace art |
| 321 | |
| 322 | #endif // ART_SRC_OAT_WRITER_H_ |