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 | |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 20 | #include <string> |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 21 | #include <vector> |
| 22 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 23 | #include "dex_file.h" |
| 24 | #include "invoke_type.h" |
| 25 | #include "mem_map.h" |
| 26 | #include "mirror/abstract_method.h" |
| 27 | #include "oat.h" |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 28 | #include "os.h" |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 29 | |
| 30 | namespace art { |
| 31 | |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 32 | class ElfFile; |
| 33 | class MemMap; |
| 34 | class OatMethodOffsets; |
| 35 | struct OatHeader; |
| 36 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 37 | class OatFile { |
| 38 | public: |
Brian Carlstrom | b7bbba4 | 2011-10-13 14:58:47 -0700 | [diff] [blame] | 39 | // Returns an OatFile name based on a DexFile location |
jeffhao | 262bf46 | 2011-10-20 18:36:32 -0700 | [diff] [blame] | 40 | static std::string DexFilenameToOatFilename(const std::string& location); |
Brian Carlstrom | b7bbba4 | 2011-10-13 14:58:47 -0700 | [diff] [blame] | 41 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 42 | // Open an oat file. Returns NULL on failure. Requested base can |
| 43 | // optionally be used to request where the file should be loaded. |
| 44 | static OatFile* Open(const std::string& filename, |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 45 | const std::string& location, |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 46 | byte* requested_base); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 47 | |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 48 | // Open an oat file from an already opened File. |
| 49 | static OatFile* Open(File* file, |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 50 | const std::string& location, |
Brian Carlstrom | f582258 | 2012-03-19 22:34:31 -0700 | [diff] [blame] | 51 | byte* requested_base, |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 52 | bool writable); |
| 53 | |
| 54 | // Open an oat file backed by a std::vector with the given location. |
| 55 | static OatFile* Open(std::vector<uint8_t>& oat_contents, |
| 56 | const std::string& location); |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 57 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 58 | ~OatFile(); |
| 59 | |
| 60 | const std::string& GetLocation() const { |
| 61 | return location_; |
| 62 | } |
| 63 | |
| 64 | const OatHeader& GetOatHeader() const; |
| 65 | |
| 66 | class OatDexFile; |
| 67 | |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 68 | class OatMethod { |
| 69 | public: |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 70 | // Link Method for execution using the contents of this OatMethod |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 71 | void LinkMethodPointers(mirror::AbstractMethod* method) const; |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 72 | |
| 73 | // Link Method for image writing using the contents of this OatMethod |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 74 | void LinkMethodOffsets(mirror::AbstractMethod* method) const; |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 75 | |
| 76 | uint32_t GetCodeOffset() const { |
| 77 | return code_offset_; |
| 78 | } |
| 79 | size_t GetFrameSizeInBytes() const { |
| 80 | return frame_size_in_bytes_; |
| 81 | } |
| 82 | uint32_t GetCoreSpillMask() const { |
| 83 | return core_spill_mask_; |
| 84 | } |
| 85 | uint32_t GetFpSpillMask() const { |
| 86 | return fp_spill_mask_; |
| 87 | } |
| 88 | uint32_t GetMappingTableOffset() const { |
| 89 | return mapping_table_offset_; |
| 90 | } |
| 91 | uint32_t GetVmapTableOffset() const { |
| 92 | return vmap_table_offset_; |
| 93 | } |
Ian Rogers | 0c7abda | 2012-09-19 13:33:42 -0700 | [diff] [blame] | 94 | uint32_t GetNativeGcMapOffset() const { |
| 95 | return native_gc_map_offset_; |
Brian Carlstrom | e7d856b | 2012-01-11 18:10:55 -0800 | [diff] [blame] | 96 | } |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 97 | uint32_t GetInvokeStubOffset() const { |
| 98 | return invoke_stub_offset_; |
| 99 | } |
| 100 | |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 101 | const void* GetCode() const; |
| 102 | uint32_t GetCodeSize() const; |
| 103 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 104 | const uint32_t* GetMappingTable() const { |
| 105 | return GetOatPointer<const uint32_t*>(mapping_table_offset_); |
| 106 | } |
| 107 | const uint16_t* GetVmapTable() const { |
| 108 | return GetOatPointer<const uint16_t*>(vmap_table_offset_); |
| 109 | } |
Ian Rogers | 0c7abda | 2012-09-19 13:33:42 -0700 | [diff] [blame] | 110 | const uint8_t* GetNativeGcMap() const { |
| 111 | return GetOatPointer<const uint8_t*>(native_gc_map_offset_); |
Brian Carlstrom | e7d856b | 2012-01-11 18:10:55 -0800 | [diff] [blame] | 112 | } |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 113 | |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 114 | mirror::AbstractMethod::InvokeStub* GetInvokeStub() const; |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 115 | uint32_t GetInvokeStubSize() const; |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 116 | |
Ian Rogers | c928de9 | 2013-02-27 14:30:44 -0800 | [diff] [blame] | 117 | #if defined(ART_USE_PORTABLE_COMPILER) |
TDYa127 | eead4ac | 2012-06-03 07:15:25 -0700 | [diff] [blame] | 118 | const void* GetProxyStub() const; |
| 119 | #endif |
| 120 | |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 121 | ~OatMethod(); |
| 122 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 123 | // Create an OatMethod with offsets relative to the given base address |
| 124 | OatMethod(const byte* base, |
| 125 | const uint32_t code_offset, |
| 126 | const size_t frame_size_in_bytes, |
| 127 | const uint32_t core_spill_mask, |
| 128 | const uint32_t fp_spill_mask, |
| 129 | const uint32_t mapping_table_offset, |
| 130 | const uint32_t vmap_table_offset, |
Brian Carlstrom | e7d856b | 2012-01-11 18:10:55 -0800 | [diff] [blame] | 131 | const uint32_t gc_map_offset, |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 132 | const uint32_t invoke_stub_offset |
Ian Rogers | c928de9 | 2013-02-27 14:30:44 -0800 | [diff] [blame] | 133 | #if defined(ART_USE_PORTABLE_COMPILER) |
Logan Chien | 971bf3f | 2012-05-01 15:47:55 +0800 | [diff] [blame] | 134 | , const uint32_t proxy_stub_offset |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 135 | #endif |
| 136 | ); |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 137 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 138 | private: |
| 139 | template<class T> |
| 140 | T GetOatPointer(uint32_t offset) const { |
| 141 | if (offset == 0) { |
| 142 | return NULL; |
| 143 | } |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 144 | return reinterpret_cast<T>(begin_ + offset); |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 145 | } |
| 146 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 147 | const byte* begin_; |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 148 | |
| 149 | uint32_t code_offset_; |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 150 | size_t frame_size_in_bytes_; |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 151 | uint32_t core_spill_mask_; |
| 152 | uint32_t fp_spill_mask_; |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 153 | uint32_t mapping_table_offset_; |
| 154 | uint32_t vmap_table_offset_; |
Ian Rogers | 0c7abda | 2012-09-19 13:33:42 -0700 | [diff] [blame] | 155 | uint32_t native_gc_map_offset_; |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 156 | uint32_t invoke_stub_offset_; |
| 157 | |
Ian Rogers | c928de9 | 2013-02-27 14:30:44 -0800 | [diff] [blame] | 158 | #if defined(ART_USE_PORTABLE_COMPILER) |
Logan Chien | 971bf3f | 2012-05-01 15:47:55 +0800 | [diff] [blame] | 159 | uint32_t proxy_stub_offset_; |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 160 | #endif |
| 161 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 162 | friend class OatClass; |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 163 | }; |
| 164 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 165 | class OatClass { |
| 166 | public: |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 167 | mirror::Class::Status GetStatus() const; |
Brian Carlstrom | 0755ec5 | 2012-01-11 15:19:46 -0800 | [diff] [blame] | 168 | |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 169 | // get the OatMethod entry based on its index into the class |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 170 | // defintion. direct methods come first, followed by virtual |
| 171 | // methods. note that runtime created methods such as miranda |
| 172 | // methods are not included. |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 173 | const OatMethod GetOatMethod(uint32_t method_index) const; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 174 | ~OatClass(); |
| 175 | |
| 176 | private: |
Brian Carlstrom | 0755ec5 | 2012-01-11 15:19:46 -0800 | [diff] [blame] | 177 | OatClass(const OatFile* oat_file, |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 178 | mirror::Class::Status status, |
Brian Carlstrom | 0755ec5 | 2012-01-11 15:19:46 -0800 | [diff] [blame] | 179 | const OatMethodOffsets* methods_pointer); |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 180 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 181 | const OatFile* oat_file_; |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 182 | const mirror::Class::Status status_; |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 183 | const OatMethodOffsets* methods_pointer_; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 184 | |
| 185 | friend class OatDexFile; |
| 186 | }; |
| 187 | |
| 188 | class OatDexFile { |
| 189 | public: |
Brian Carlstrom | 8952189 | 2011-12-07 22:05:07 -0800 | [diff] [blame] | 190 | const DexFile* OpenDexFile() const; |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 191 | const OatClass* GetOatClass(uint32_t class_def_index) const; |
Ian Rogers | 05f28c6 | 2012-10-23 18:12:13 -0700 | [diff] [blame] | 192 | size_t FileSize() const; |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 193 | |
| 194 | const std::string& GetDexFileLocation() const { |
| 195 | return dex_file_location_; |
| 196 | } |
Brian Carlstrom | 58ae941 | 2011-10-04 00:56:06 -0700 | [diff] [blame] | 197 | |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 198 | uint32_t GetDexFileLocationChecksum() const { |
| 199 | return dex_file_location_checksum_; |
Brian Carlstrom | 58ae941 | 2011-10-04 00:56:06 -0700 | [diff] [blame] | 200 | } |
| 201 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 202 | ~OatDexFile(); |
Elliott Hughes | a21039c | 2012-06-21 12:09:25 -0700 | [diff] [blame] | 203 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 204 | private: |
| 205 | OatDexFile(const OatFile* oat_file, |
Elliott Hughes | aa6a588 | 2012-01-13 19:39:16 -0800 | [diff] [blame] | 206 | const std::string& dex_file_location, |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 207 | uint32_t dex_file_checksum, |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 208 | const byte* dex_file_pointer, |
Brian Carlstrom | 0755ec5 | 2012-01-11 15:19:46 -0800 | [diff] [blame] | 209 | const uint32_t* oat_class_offsets_pointer); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 210 | |
| 211 | const OatFile* oat_file_; |
| 212 | std::string dex_file_location_; |
Brian Carlstrom | 5b332c8 | 2012-02-01 15:02:31 -0800 | [diff] [blame] | 213 | uint32_t dex_file_location_checksum_; |
Brian Carlstrom | 8952189 | 2011-12-07 22:05:07 -0800 | [diff] [blame] | 214 | const byte* dex_file_pointer_; |
Brian Carlstrom | 0755ec5 | 2012-01-11 15:19:46 -0800 | [diff] [blame] | 215 | const uint32_t* oat_class_offsets_pointer_; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 216 | |
| 217 | friend class OatFile; |
| 218 | DISALLOW_COPY_AND_ASSIGN(OatDexFile); |
| 219 | }; |
| 220 | |
Ian Rogers | 7fe2c69 | 2011-12-06 16:35:59 -0800 | [diff] [blame] | 221 | const OatDexFile* GetOatDexFile(const std::string& dex_file_location, |
| 222 | bool warn_if_not_found = true) const; |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 223 | std::vector<const OatDexFile*> GetOatDexFiles() const; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 224 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 225 | size_t Size() const { |
| 226 | return End() - Begin(); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 227 | } |
| 228 | |
| 229 | private: |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 230 | static void CheckLocation(const std::string& location); |
| 231 | |
| 232 | static OatFile* OpenDlopen(const std::string& elf_filename, |
| 233 | const std::string& location, |
| 234 | byte* requested_base); |
| 235 | |
| 236 | static OatFile* OpenElfFile(File* file, |
| 237 | const std::string& location, |
| 238 | byte* requested_base, |
| 239 | bool writable); |
| 240 | |
Elliott Hughes | a51a3dd | 2011-10-17 15:19:26 -0700 | [diff] [blame] | 241 | explicit OatFile(const std::string& filename); |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 242 | bool Dlopen(const std::string& elf_filename, byte* requested_base); |
| 243 | bool ElfFileOpen(File* file, byte* requested_base, bool writable); |
| 244 | void Setup(); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 245 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 246 | const byte* Begin() const; |
| 247 | const byte* End() const; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 248 | |
| 249 | // The oat file name. |
| 250 | // |
| 251 | // The image will embed this to link its associated oat file. |
| 252 | const std::string location_; |
| 253 | |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 254 | // Pointer to OatHeader. |
| 255 | const byte* begin_; |
| 256 | |
| 257 | // Pointer to end of oat region for bounds checking. |
| 258 | const byte* end_; |
| 259 | |
| 260 | // Backing memory map for oat file during when opened by ElfWriter during initial compilation. |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 261 | UniquePtr<MemMap> mem_map_; |
| 262 | |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 263 | // Backing memory map for oat file during cross compilation. |
| 264 | UniquePtr<ElfFile> elf_file_; |
| 265 | |
| 266 | // dlopen handle during runtime. |
| 267 | void* dlopen_handle_; |
| 268 | |
Elliott Hughes | a0e1806 | 2012-04-13 15:59:59 -0700 | [diff] [blame] | 269 | typedef SafeMap<std::string, const OatDexFile*> Table; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 270 | Table oat_dex_files_; |
| 271 | |
| 272 | friend class OatClass; |
| 273 | friend class OatDexFile; |
Elliott Hughes | e3c845c | 2012-02-28 17:23:01 -0800 | [diff] [blame] | 274 | friend class OatDumper; // For GetBase and GetLimit |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 275 | DISALLOW_COPY_AND_ASSIGN(OatFile); |
| 276 | }; |
| 277 | |
| 278 | } // namespace art |
| 279 | |
| 280 | #endif // ART_SRC_OAT_WRITER_H_ |