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 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 17 | #ifndef ART_RUNTIME_OAT_FILE_H_ |
| 18 | #define ART_RUNTIME_OAT_FILE_H_ |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 19 | |
Vladimir Marko | 3f5838d | 2014-08-07 18:07:18 +0100 | [diff] [blame] | 20 | #include <list> |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 21 | #include <string> |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 22 | #include <vector> |
| 23 | |
Vladimir Marko | aad75c6 | 2016-10-03 08:46:48 +0000 | [diff] [blame] | 24 | #include "base/array_ref.h" |
Vladimir Marko | 3f5838d | 2014-08-07 18:07:18 +0100 | [diff] [blame] | 25 | #include "base/mutex.h" |
David Sehr | c431b9d | 2018-03-02 12:01:51 -0800 | [diff] [blame^] | 26 | #include "base/os.h" |
David Sehr | 67bf42e | 2018-02-26 16:43:04 -0800 | [diff] [blame] | 27 | #include "base/safe_map.h" |
Vladimir Marko | 539690a | 2014-06-05 18:36:42 +0100 | [diff] [blame] | 28 | #include "base/stringpiece.h" |
David Sehr | 67bf42e | 2018-02-26 16:43:04 -0800 | [diff] [blame] | 29 | #include "base/tracking_safe_map.h" |
David Sehr | c431b9d | 2018-03-02 12:01:51 -0800 | [diff] [blame^] | 30 | #include "base/utils.h" |
Vladimir Marko | 2c64a83 | 2018-01-04 11:31:56 +0000 | [diff] [blame] | 31 | #include "class_status.h" |
Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 32 | #include "compiler_filter.h" |
David Sehr | 9e734c7 | 2018-01-04 17:56:19 -0800 | [diff] [blame] | 33 | #include "dex/dex_file.h" |
| 34 | #include "dex/dex_file_layout.h" |
David Sehr | 0225f8e | 2018-01-31 08:52:24 +0000 | [diff] [blame] | 35 | #include "dex/utf.h" |
Vladimir Marko | f3c52b4 | 2017-11-17 17:32:12 +0000 | [diff] [blame] | 36 | #include "index_bss_mapping.h" |
Vladimir Marko | 2c64a83 | 2018-01-04 11:31:56 +0000 | [diff] [blame] | 37 | #include "mirror/object.h" |
Ian Rogers | 2dd0e2c | 2013-01-24 12:42:14 -0800 | [diff] [blame] | 38 | #include "oat.h" |
David Sehr | 9aa352e | 2016-09-15 18:13:52 -0700 | [diff] [blame] | 39 | #include "type_lookup_table.h" |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 40 | |
| 41 | namespace art { |
| 42 | |
Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 43 | class BitVector; |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 44 | class ElfFile; |
Mathieu Chartier | 120aa28 | 2017-08-05 16:03:03 -0700 | [diff] [blame] | 45 | class DexLayoutSections; |
Vladimir Marko | aad75c6 | 2016-10-03 08:46:48 +0000 | [diff] [blame] | 46 | template <class MirrorType> class GcRoot; |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 47 | class MemMap; |
Richard Uhler | 07b3c23 | 2015-03-31 15:57:54 -0700 | [diff] [blame] | 48 | class OatDexFile; |
Andreas Gampe | 513061a | 2017-06-01 09:17:34 -0700 | [diff] [blame] | 49 | class OatHeader; |
| 50 | class OatMethodOffsets; |
| 51 | class OatQuickMethodHeader; |
Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 52 | class VdexFile; |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 53 | |
Mathieu Chartier | 5351da0 | 2016-02-17 16:19:53 -0800 | [diff] [blame] | 54 | namespace gc { |
| 55 | namespace collector { |
| 56 | class DummyOatFile; |
| 57 | } // namespace collector |
| 58 | } // namespace gc |
| 59 | |
David Brazdil | 7b49e6c | 2016-09-01 11:06:18 +0100 | [diff] [blame] | 60 | // Runtime representation of the OAT file format which holds compiler output. |
| 61 | // The class opens an OAT file from storage and maps it to memory, typically with |
| 62 | // dlopen and provides access to its internal data structures (see OatWriter for |
| 63 | // for more details about the OAT format). |
| 64 | // In the process of loading OAT, the class also loads the associated VDEX file |
| 65 | // with the input DEX files (see VdexFile for details about the VDEX format). |
| 66 | // The raw DEX data are accessible transparently through the OatDexFile objects. |
| 67 | |
Andreas Gampe | 049cff0 | 2015-12-01 23:27:12 -0800 | [diff] [blame] | 68 | class OatFile { |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 69 | public: |
Jeff Hao | f0192c8 | 2016-03-28 20:39:50 -0700 | [diff] [blame] | 70 | // Special classpath that skips shared library check. |
| 71 | static constexpr const char* kSpecialSharedLibrary = "&"; |
| 72 | |
Richard Uhler | 07b3c23 | 2015-03-31 15:57:54 -0700 | [diff] [blame] | 73 | typedef art::OatDexFile OatDexFile; |
| 74 | |
Alex Light | 84d7605 | 2014-08-22 17:49:35 -0700 | [diff] [blame] | 75 | // Opens an oat file contained within the given elf file. This is always opened as |
| 76 | // non-executable at the moment. |
David Brazdil | c93b3be | 2016-09-12 18:49:58 +0100 | [diff] [blame] | 77 | static OatFile* OpenWithElfFile(ElfFile* elf_file, |
| 78 | VdexFile* vdex_file, |
| 79 | const std::string& location, |
Richard Uhler | e5fed03 | 2015-03-18 08:21:11 -0700 | [diff] [blame] | 80 | const char* abs_dex_location, |
Igor Murashkin | b1d8c31 | 2015-08-04 11:18:43 -0700 | [diff] [blame] | 81 | std::string* error_msg); |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 82 | // Open an oat file. Returns null on failure. Requested base can |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 83 | // optionally be used to request where the file should be loaded. |
Richard Uhler | e5fed03 | 2015-03-18 08:21:11 -0700 | [diff] [blame] | 84 | // See the ResolveRelativeEncodedDexLocation for a description of how the |
| 85 | // abs_dex_location argument is used. |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 86 | static OatFile* Open(const std::string& filename, |
Brian Carlstrom | a004aa9 | 2012-02-08 18:05:09 -0800 | [diff] [blame] | 87 | const std::string& location, |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 88 | uint8_t* requested_base, |
Igor Murashkin | 4677476 | 2014-10-22 11:37:02 -0700 | [diff] [blame] | 89 | uint8_t* oat_file_begin, |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 90 | bool executable, |
Mathieu Chartier | 0b4cbd0 | 2016-03-08 16:49:58 -0800 | [diff] [blame] | 91 | bool low_4gb, |
Richard Uhler | e5fed03 | 2015-03-18 08:21:11 -0700 | [diff] [blame] | 92 | const char* abs_dex_location, |
Igor Murashkin | b1d8c31 | 2015-08-04 11:18:43 -0700 | [diff] [blame] | 93 | std::string* error_msg); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 94 | |
Shubham Ajmera | b22dea0 | 2017-10-04 18:36:41 -0700 | [diff] [blame] | 95 | // Similar to OatFile::Open(const std::string...), but accepts input vdex and |
| 96 | // odex files as file descriptors. |
| 97 | static OatFile* Open(int vdex_fd, |
| 98 | int oat_fd, |
| 99 | const std::string& oat_location, |
| 100 | uint8_t* requested_base, |
| 101 | uint8_t* oat_file_begin, |
| 102 | bool executable, |
| 103 | bool low_4gb, |
| 104 | const char* abs_dex_location, |
| 105 | std::string* error_msg); |
| 106 | |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 107 | // Open an oat file from an already opened File. |
Brian Carlstrom | 265091e | 2013-01-30 14:08:26 -0800 | [diff] [blame] | 108 | // Does not use dlopen underneath so cannot be used for runtime use |
| 109 | // where relocations may be required. Currently used from |
| 110 | // ImageWriter which wants to open a writable version from an existing |
| 111 | // file descriptor for patching. |
Igor Murashkin | b1d8c31 | 2015-08-04 11:18:43 -0700 | [diff] [blame] | 112 | static OatFile* OpenWritable(File* file, const std::string& location, |
Richard Uhler | e5fed03 | 2015-03-18 08:21:11 -0700 | [diff] [blame] | 113 | const char* abs_dex_location, |
Igor Murashkin | b1d8c31 | 2015-08-04 11:18:43 -0700 | [diff] [blame] | 114 | std::string* error_msg); |
Nicolas Geoffray | 58cc1cb | 2017-11-20 13:27:29 +0000 | [diff] [blame] | 115 | // Open an oat file from an already opened File. Maps it PROT_READ, MAP_PRIVATE. |
Igor Murashkin | b1d8c31 | 2015-08-04 11:18:43 -0700 | [diff] [blame] | 116 | static OatFile* OpenReadable(File* file, const std::string& location, |
Richard Uhler | e5fed03 | 2015-03-18 08:21:11 -0700 | [diff] [blame] | 117 | const char* abs_dex_location, |
Igor Murashkin | b1d8c31 | 2015-08-04 11:18:43 -0700 | [diff] [blame] | 118 | std::string* error_msg); |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 119 | |
Andreas Gampe | 049cff0 | 2015-12-01 23:27:12 -0800 | [diff] [blame] | 120 | virtual ~OatFile(); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 121 | |
Alex Light | 9dcc457 | 2014-08-14 14:16:26 -0700 | [diff] [blame] | 122 | bool IsExecutable() const { |
| 123 | return is_executable_; |
| 124 | } |
| 125 | |
Andreas Gampe | 7ba6496 | 2014-10-23 11:37:40 -0700 | [diff] [blame] | 126 | bool IsPic() const; |
| 127 | |
Sebastien Hertz | 0de1133 | 2015-05-13 12:14:05 +0200 | [diff] [blame] | 128 | // Indicates whether the oat file was compiled with full debugging capability. |
| 129 | bool IsDebuggable() const; |
| 130 | |
Andreas Gampe | 29d38e7 | 2016-03-23 15:31:51 +0000 | [diff] [blame] | 131 | CompilerFilter::Filter GetCompilerFilter() const; |
Calin Juravle | b077e15 | 2016-02-18 18:47:37 +0000 | [diff] [blame] | 132 | |
Calin Juravle | 44e5efa | 2017-09-12 00:54:26 -0700 | [diff] [blame] | 133 | std::string GetClassLoaderContext() const; |
| 134 | |
Calin Juravle | 0e09dfc | 2018-02-12 19:01:09 -0800 | [diff] [blame] | 135 | const char* GetCompilationReason() const; |
| 136 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 137 | const std::string& GetLocation() const { |
| 138 | return location_; |
| 139 | } |
| 140 | |
| 141 | const OatHeader& GetOatHeader() const; |
| 142 | |
Richard Uhler | 07b3c23 | 2015-03-31 15:57:54 -0700 | [diff] [blame] | 143 | class OatMethod FINAL { |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 144 | public: |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 145 | void LinkMethod(ArtMethod* method) const; |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 146 | |
Nicolas Geoffray | c04c800 | 2015-07-14 11:37:54 +0100 | [diff] [blame] | 147 | uint32_t GetCodeOffset() const; |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 148 | |
Nicolas Geoffray | c04c800 | 2015-07-14 11:37:54 +0100 | [diff] [blame] | 149 | const void* GetQuickCode() const; |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 150 | |
| 151 | // Returns size of quick code. |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 152 | uint32_t GetQuickCodeSize() const; |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 153 | uint32_t GetQuickCodeSizeOffset() const; |
| 154 | |
| 155 | // Returns OatQuickMethodHeader for debugging. Most callers should |
| 156 | // use more specific methods such as GetQuickCodeSize. |
| 157 | const OatQuickMethodHeader* GetOatQuickMethodHeader() const; |
| 158 | uint32_t GetOatQuickMethodHeaderOffset() const; |
Logan Chien | 0c717dd | 2012-03-28 18:31:07 +0800 | [diff] [blame] | 159 | |
Vladimir Marko | 7624d25 | 2014-05-02 14:40:15 +0100 | [diff] [blame] | 160 | size_t GetFrameSizeInBytes() const; |
| 161 | uint32_t GetCoreSpillMask() const; |
| 162 | uint32_t GetFpSpillMask() const; |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 163 | |
Vladimir Marko | 8a63057 | 2014-04-09 18:45:35 +0100 | [diff] [blame] | 164 | const uint8_t* GetVmapTable() const; |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 165 | uint32_t GetVmapTableOffset() const; |
| 166 | uint32_t GetVmapTableOffsetOffset() const; |
Vladimir Marko | 8a63057 | 2014-04-09 18:45:35 +0100 | [diff] [blame] | 167 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 168 | // Create an OatMethod with offsets relative to the given base address |
Mathieu Chartier | 957ca1c | 2014-11-21 16:51:29 -0800 | [diff] [blame] | 169 | OatMethod(const uint8_t* base, const uint32_t code_offset) |
| 170 | : begin_(base), code_offset_(code_offset) { |
Ian Rogers | 97b52f8 | 2014-08-14 11:34:07 -0700 | [diff] [blame] | 171 | } |
Andreas Gampe | 758a801 | 2015-04-03 21:28:42 -0700 | [diff] [blame] | 172 | OatMethod(const OatMethod&) = default; |
Ian Rogers | 97b52f8 | 2014-08-14 11:34:07 -0700 | [diff] [blame] | 173 | ~OatMethod() {} |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 174 | |
Andreas Gampe | 758a801 | 2015-04-03 21:28:42 -0700 | [diff] [blame] | 175 | OatMethod& operator=(const OatMethod&) = default; |
| 176 | |
Ian Rogers | 97b52f8 | 2014-08-14 11:34:07 -0700 | [diff] [blame] | 177 | // A representation of an invalid OatMethod, used when an OatMethod or OatClass can't be found. |
| 178 | // See ClassLinker::FindOatMethodFor. |
| 179 | static const OatMethod Invalid() { |
Mathieu Chartier | 957ca1c | 2014-11-21 16:51:29 -0800 | [diff] [blame] | 180 | return OatMethod(nullptr, -1); |
Ian Rogers | 97b52f8 | 2014-08-14 11:34:07 -0700 | [diff] [blame] | 181 | } |
Nicolas Geoffray | 4fcdc94 | 2014-07-22 10:48:00 +0100 | [diff] [blame] | 182 | |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 183 | private: |
| 184 | template<class T> |
| 185 | T GetOatPointer(uint32_t offset) const { |
| 186 | if (offset == 0) { |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 187 | return nullptr; |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 188 | } |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 189 | return reinterpret_cast<T>(begin_ + offset); |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 190 | } |
| 191 | |
Mathieu Chartier | e5f13e5 | 2015-02-24 09:37:21 -0800 | [diff] [blame] | 192 | const uint8_t* begin_; |
| 193 | uint32_t code_offset_; |
Brian Carlstrom | ae82698 | 2011-11-09 01:33:42 -0800 | [diff] [blame] | 194 | |
| 195 | friend class OatClass; |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 196 | }; |
| 197 | |
Richard Uhler | 07b3c23 | 2015-03-31 15:57:54 -0700 | [diff] [blame] | 198 | class OatClass FINAL { |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 199 | public: |
Vladimir Marko | 2c64a83 | 2018-01-04 11:31:56 +0000 | [diff] [blame] | 200 | ClassStatus GetStatus() const { |
Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 201 | return status_; |
| 202 | } |
| 203 | |
| 204 | OatClassType GetType() const { |
| 205 | return type_; |
| 206 | } |
Brian Carlstrom | 0755ec5 | 2012-01-11 15:19:46 -0800 | [diff] [blame] | 207 | |
Mathieu Chartier | eb8167a | 2014-05-07 15:43:14 -0700 | [diff] [blame] | 208 | // Get the OatMethod entry based on its index into the class |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 209 | // defintion. Direct methods come first, followed by virtual |
| 210 | // methods. Note that runtime created methods such as miranda |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 211 | // methods are not included. |
Brian Carlstrom | aded5f7 | 2011-10-07 17:15:04 -0700 | [diff] [blame] | 212 | const OatMethod GetOatMethod(uint32_t method_index) const; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 213 | |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 214 | // Return a pointer to the OatMethodOffsets for the requested |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 215 | // method_index, or null if none is present. Note that most |
Brian Carlstrom | 2cbaccb | 2014-09-14 20:34:17 -0700 | [diff] [blame] | 216 | // callers should use GetOatMethod. |
| 217 | const OatMethodOffsets* GetOatMethodOffsets(uint32_t method_index) const; |
| 218 | |
| 219 | // Return the offset from the start of the OatFile to the |
| 220 | // OatMethodOffsets for the requested method_index, or 0 if none |
| 221 | // is present. Note that most callers should use GetOatMethod. |
| 222 | uint32_t GetOatMethodOffsetsOffset(uint32_t method_index) const; |
| 223 | |
Ian Rogers | 97b52f8 | 2014-08-14 11:34:07 -0700 | [diff] [blame] | 224 | // A representation of an invalid OatClass, used when an OatClass can't be found. |
Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 225 | // See FindOatClass(). |
Ian Rogers | 97b52f8 | 2014-08-14 11:34:07 -0700 | [diff] [blame] | 226 | static OatClass Invalid() { |
Vladimir Marko | 72ab684 | 2017-01-20 19:32:50 +0000 | [diff] [blame] | 227 | return OatClass(/* oat_file */ nullptr, |
Vladimir Marko | 2c64a83 | 2018-01-04 11:31:56 +0000 | [diff] [blame] | 228 | ClassStatus::kErrorUnresolved, |
Vladimir Marko | 72ab684 | 2017-01-20 19:32:50 +0000 | [diff] [blame] | 229 | kOatClassNoneCompiled, |
| 230 | /* bitmap_size */ 0, |
| 231 | /* bitmap_pointer */ nullptr, |
| 232 | /* methods_pointer */ nullptr); |
Ian Rogers | 97b52f8 | 2014-08-14 11:34:07 -0700 | [diff] [blame] | 233 | } |
Nicolas Geoffray | 4fcdc94 | 2014-07-22 10:48:00 +0100 | [diff] [blame] | 234 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 235 | private: |
Brian Carlstrom | 0755ec5 | 2012-01-11 15:19:46 -0800 | [diff] [blame] | 236 | OatClass(const OatFile* oat_file, |
Vladimir Marko | 2c64a83 | 2018-01-04 11:31:56 +0000 | [diff] [blame] | 237 | ClassStatus status, |
Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 238 | OatClassType type, |
| 239 | uint32_t bitmap_size, |
| 240 | const uint32_t* bitmap_pointer, |
Brian Carlstrom | 0755ec5 | 2012-01-11 15:19:46 -0800 | [diff] [blame] | 241 | const OatMethodOffsets* methods_pointer); |
Brian Carlstrom | 3320cf4 | 2011-10-04 14:58:28 -0700 | [diff] [blame] | 242 | |
Ian Rogers | 97b52f8 | 2014-08-14 11:34:07 -0700 | [diff] [blame] | 243 | const OatFile* const oat_file_; |
Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 244 | |
Vladimir Marko | 2c64a83 | 2018-01-04 11:31:56 +0000 | [diff] [blame] | 245 | const ClassStatus status_; |
Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 246 | |
Ian Rogers | 97b52f8 | 2014-08-14 11:34:07 -0700 | [diff] [blame] | 247 | const OatClassType type_; |
Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 248 | |
Ian Rogers | 97b52f8 | 2014-08-14 11:34:07 -0700 | [diff] [blame] | 249 | const uint32_t* const bitmap_; |
Brian Carlstrom | ba150c3 | 2013-08-27 17:31:03 -0700 | [diff] [blame] | 250 | |
Ian Rogers | 97b52f8 | 2014-08-14 11:34:07 -0700 | [diff] [blame] | 251 | const OatMethodOffsets* const methods_pointer_; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 252 | |
Richard Uhler | 07b3c23 | 2015-03-31 15:57:54 -0700 | [diff] [blame] | 253 | friend class art::OatDexFile; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 254 | }; |
Richard Uhler | 9a37efc | 2016-08-05 16:32:55 -0700 | [diff] [blame] | 255 | |
| 256 | // Get the OatDexFile for the given dex_location within this oat file. |
| 257 | // If dex_location_checksum is non-null, the OatDexFile will only be |
| 258 | // returned if it has a matching checksum. |
| 259 | // If error_msg is non-null and no OatDexFile is returned, error_msg will |
| 260 | // be updated with a description of why no OatDexFile was returned. |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 261 | const OatDexFile* GetOatDexFile(const char* dex_location, |
Brian Carlstrom | 756ee4e | 2013-10-03 15:46:12 -0700 | [diff] [blame] | 262 | const uint32_t* const dex_location_checksum, |
Richard Uhler | 9a37efc | 2016-08-05 16:32:55 -0700 | [diff] [blame] | 263 | /*out*/std::string* error_msg = nullptr) const |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 264 | REQUIRES(!secondary_lookup_lock_); |
Ian Rogers | 8d31bbd | 2013-10-13 10:44:14 -0700 | [diff] [blame] | 265 | |
Vladimir Marko | aa4497d | 2014-09-05 14:01:17 +0100 | [diff] [blame] | 266 | const std::vector<const OatDexFile*>& GetOatDexFiles() const { |
| 267 | return oat_dex_files_storage_; |
| 268 | } |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 269 | |
Ian Rogers | 30fab40 | 2012-01-23 15:43:46 -0800 | [diff] [blame] | 270 | size_t Size() const { |
| 271 | return End() - Begin(); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 272 | } |
| 273 | |
Mingyao Yang | 6ea1a0e | 2016-01-29 12:12:49 -0800 | [diff] [blame] | 274 | bool Contains(const void* p) const { |
| 275 | return p >= Begin() && p < End(); |
| 276 | } |
| 277 | |
Vladimir Marko | 5c42c29 | 2015-02-25 12:02:49 +0000 | [diff] [blame] | 278 | size_t BssSize() const { |
| 279 | return BssEnd() - BssBegin(); |
| 280 | } |
| 281 | |
David Srbecky | ec2cdf4 | 2017-12-08 16:21:25 +0000 | [diff] [blame] | 282 | size_t VdexSize() const { |
| 283 | return VdexEnd() - VdexBegin(); |
| 284 | } |
| 285 | |
Vladimir Marko | 0eb882b | 2017-05-15 13:39:18 +0100 | [diff] [blame] | 286 | size_t BssMethodsOffset() const { |
| 287 | // Note: This is used only for symbolizer and needs to return a valid .bss offset. |
| 288 | return (bss_methods_ != nullptr) ? bss_methods_ - BssBegin() : BssRootsOffset(); |
| 289 | } |
| 290 | |
Vladimir Marko | aad75c6 | 2016-10-03 08:46:48 +0000 | [diff] [blame] | 291 | size_t BssRootsOffset() const { |
Vladimir Marko | 0eb882b | 2017-05-15 13:39:18 +0100 | [diff] [blame] | 292 | // Note: This is used only for symbolizer and needs to return a valid .bss offset. |
| 293 | return (bss_roots_ != nullptr) ? bss_roots_ - BssBegin() : BssSize(); |
Vladimir Marko | aad75c6 | 2016-10-03 08:46:48 +0000 | [diff] [blame] | 294 | } |
| 295 | |
David Brazdil | 7b49e6c | 2016-09-01 11:06:18 +0100 | [diff] [blame] | 296 | size_t DexSize() const { |
| 297 | return DexEnd() - DexBegin(); |
| 298 | } |
| 299 | |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 300 | const uint8_t* Begin() const; |
| 301 | const uint8_t* End() const; |
Alex Light | 53cb16b | 2014-06-12 11:26:29 -0700 | [diff] [blame] | 302 | |
Vladimir Marko | 5c42c29 | 2015-02-25 12:02:49 +0000 | [diff] [blame] | 303 | const uint8_t* BssBegin() const; |
| 304 | const uint8_t* BssEnd() const; |
| 305 | |
David Srbecky | ec2cdf4 | 2017-12-08 16:21:25 +0000 | [diff] [blame] | 306 | const uint8_t* VdexBegin() const; |
| 307 | const uint8_t* VdexEnd() const; |
| 308 | |
David Brazdil | 7b49e6c | 2016-09-01 11:06:18 +0100 | [diff] [blame] | 309 | const uint8_t* DexBegin() const; |
| 310 | const uint8_t* DexEnd() const; |
| 311 | |
Vladimir Marko | 0eb882b | 2017-05-15 13:39:18 +0100 | [diff] [blame] | 312 | ArrayRef<ArtMethod*> GetBssMethods() const; |
Vladimir Marko | aad75c6 | 2016-10-03 08:46:48 +0000 | [diff] [blame] | 313 | ArrayRef<GcRoot<mirror::Object>> GetBssGcRoots() const; |
| 314 | |
Richard Uhler | e5fed03 | 2015-03-18 08:21:11 -0700 | [diff] [blame] | 315 | // Returns the absolute dex location for the encoded relative dex location. |
| 316 | // |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 317 | // If not null, abs_dex_location is used to resolve the absolute dex |
Richard Uhler | e5fed03 | 2015-03-18 08:21:11 -0700 | [diff] [blame] | 318 | // location of relative dex locations encoded in the oat file. |
| 319 | // For example, given absolute location "/data/app/foo/base.apk", encoded |
Calin Juravle | a308a32 | 2017-07-18 16:51:51 -0700 | [diff] [blame] | 320 | // dex locations "base.apk", "base.apk!classes2.dex", etc. would be resolved |
| 321 | // to "/data/app/foo/base.apk", "/data/app/foo/base.apk!classes2.dex", etc. |
Richard Uhler | e5fed03 | 2015-03-18 08:21:11 -0700 | [diff] [blame] | 322 | // Relative encoded dex locations that don't match the given abs_dex_location |
| 323 | // are left unchanged. |
| 324 | static std::string ResolveRelativeEncodedDexLocation( |
| 325 | const char* abs_dex_location, const std::string& rel_dex_location); |
| 326 | |
Vladimir Marko | 97d7e1c | 2016-10-04 14:44:28 +0100 | [diff] [blame] | 327 | // Finds the associated oat class for a dex_file and descriptor. Returns an invalid OatClass on |
| 328 | // error and sets found to false. |
| 329 | static OatClass FindOatClass(const DexFile& dex_file, uint16_t class_def_idx, bool* found); |
| 330 | |
Nicolas Geoffray | 4acefd3 | 2016-10-24 13:14:58 +0100 | [diff] [blame] | 331 | VdexFile* GetVdexFile() const { |
| 332 | return vdex_.get(); |
| 333 | } |
| 334 | |
Nicolas Geoffray | f307527 | 2018-01-08 12:41:19 +0000 | [diff] [blame] | 335 | // Whether the OatFile embeds the Dex code. |
| 336 | bool ContainsDexCode() const { |
| 337 | return uncompressed_dex_files_ == nullptr; |
| 338 | } |
| 339 | |
Andreas Gampe | 049cff0 | 2015-12-01 23:27:12 -0800 | [diff] [blame] | 340 | protected: |
| 341 | OatFile(const std::string& filename, bool executable); |
| 342 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 343 | private: |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 344 | // The oat file name. |
| 345 | // |
| 346 | // The image will embed this to link its associated oat file. |
| 347 | const std::string location_; |
| 348 | |
David Brazdil | 7b49e6c | 2016-09-01 11:06:18 +0100 | [diff] [blame] | 349 | // Pointer to the Vdex file with the Dex files for this Oat file. |
| 350 | std::unique_ptr<VdexFile> vdex_; |
| 351 | |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 352 | // Pointer to OatHeader. |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 353 | const uint8_t* begin_; |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 354 | |
| 355 | // Pointer to end of oat region for bounds checking. |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 356 | const uint8_t* end_; |
Brian Carlstrom | 700c8d3 | 2012-11-05 10:42:02 -0800 | [diff] [blame] | 357 | |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 358 | // Pointer to the .bss section, if present, otherwise null. |
Vladimir Marko | 06d7aaa | 2015-10-16 11:23:41 +0100 | [diff] [blame] | 359 | uint8_t* bss_begin_; |
Vladimir Marko | 5c42c29 | 2015-02-25 12:02:49 +0000 | [diff] [blame] | 360 | |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 361 | // Pointer to the end of the .bss section, if present, otherwise null. |
Vladimir Marko | 06d7aaa | 2015-10-16 11:23:41 +0100 | [diff] [blame] | 362 | uint8_t* bss_end_; |
Vladimir Marko | 5c42c29 | 2015-02-25 12:02:49 +0000 | [diff] [blame] | 363 | |
Vladimir Marko | 0eb882b | 2017-05-15 13:39:18 +0100 | [diff] [blame] | 364 | // Pointer to the beginning of the ArtMethod*s in .bss section, if present, otherwise null. |
| 365 | uint8_t* bss_methods_; |
| 366 | |
Vladimir Marko | aad75c6 | 2016-10-03 08:46:48 +0000 | [diff] [blame] | 367 | // Pointer to the beginning of the GC roots in .bss section, if present, otherwise null. |
| 368 | uint8_t* bss_roots_; |
| 369 | |
Alex Light | 9dcc457 | 2014-08-14 14:16:26 -0700 | [diff] [blame] | 370 | // Was this oat_file loaded executable? |
| 371 | const bool is_executable_; |
| 372 | |
David Srbecky | ec2cdf4 | 2017-12-08 16:21:25 +0000 | [diff] [blame] | 373 | // Pointer to the .vdex section, if present, otherwise null. |
| 374 | uint8_t* vdex_begin_; |
| 375 | |
| 376 | // Pointer to the end of the .vdex section, if present, otherwise null. |
| 377 | uint8_t* vdex_end_; |
| 378 | |
Vladimir Marko | aa4497d | 2014-09-05 14:01:17 +0100 | [diff] [blame] | 379 | // Owning storage for the OatDexFile objects. |
| 380 | std::vector<const OatDexFile*> oat_dex_files_storage_; |
| 381 | |
Vladimir Marko | 3f5838d | 2014-08-07 18:07:18 +0100 | [diff] [blame] | 382 | // NOTE: We use a StringPiece as the key type to avoid a memory allocation on every |
| 383 | // lookup with a const char* key. The StringPiece doesn't own its backing storage, |
| 384 | // therefore we're using the OatDexFile::dex_file_location_ as the backing storage |
| 385 | // for keys in oat_dex_files_ and the string_cache_ entries for the backing storage |
| 386 | // of keys in secondary_oat_dex_files_ and oat_dex_files_by_canonical_location_. |
Mathieu Chartier | bad0267 | 2014-08-25 13:08:22 -0700 | [diff] [blame] | 387 | typedef AllocationTrackingSafeMap<StringPiece, const OatDexFile*, kAllocatorTagOatFile> Table; |
Vladimir Marko | 3f5838d | 2014-08-07 18:07:18 +0100 | [diff] [blame] | 388 | |
Vladimir Marko | aa4497d | 2014-09-05 14:01:17 +0100 | [diff] [blame] | 389 | // Map each location and canonical location (if different) retrieved from the |
| 390 | // oat file to its OatDexFile. This map doesn't change after it's constructed in Setup() |
| 391 | // and therefore doesn't need any locking and provides the cheapest dex file lookup |
Mathieu Chartier | 2cebb24 | 2015-04-21 16:50:40 -0700 | [diff] [blame] | 392 | // for GetOatDexFile() for a very frequent use case. Never contains a null value. |
Vladimir Marko | aa4497d | 2014-09-05 14:01:17 +0100 | [diff] [blame] | 393 | Table oat_dex_files_; |
Vladimir Marko | 3f5838d | 2014-08-07 18:07:18 +0100 | [diff] [blame] | 394 | |
| 395 | // Lock guarding all members needed for secondary lookup in GetOatDexFile(). |
| 396 | mutable Mutex secondary_lookup_lock_ DEFAULT_MUTEX_ACQUIRED_AFTER; |
| 397 | |
| 398 | // If the primary oat_dex_files_ lookup fails, use a secondary map. This map stores |
| 399 | // the results of all previous secondary lookups, whether successful (non-null) or |
| 400 | // failed (null). If it doesn't contain an entry we need to calculate the canonical |
| 401 | // location and use oat_dex_files_by_canonical_location_. |
| 402 | mutable Table secondary_oat_dex_files_ GUARDED_BY(secondary_lookup_lock_); |
| 403 | |
Vladimir Marko | 3f5838d | 2014-08-07 18:07:18 +0100 | [diff] [blame] | 404 | // Cache of strings. Contains the backing storage for keys in the secondary_oat_dex_files_ |
| 405 | // and the lazily initialized oat_dex_files_by_canonical_location_. |
| 406 | // NOTE: We're keeping references to contained strings in form of StringPiece and adding |
| 407 | // new strings to the end. The adding of a new element must not touch any previously stored |
| 408 | // elements. std::list<> and std::deque<> satisfy this requirement, std::vector<> doesn't. |
| 409 | mutable std::list<std::string> string_cache_ GUARDED_BY(secondary_lookup_lock_); |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 410 | |
Nicolas Geoffray | f307527 | 2018-01-08 12:41:19 +0000 | [diff] [blame] | 411 | // Cache of dex files mapped directly from a location, in case the OatFile does |
| 412 | // not embed the dex code. |
| 413 | std::unique_ptr<std::vector<std::unique_ptr<const DexFile>>> uncompressed_dex_files_; |
| 414 | |
Mathieu Chartier | 5351da0 | 2016-02-17 16:19:53 -0800 | [diff] [blame] | 415 | friend class gc::collector::DummyOatFile; // For modifying begin_ and end_. |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 416 | friend class OatClass; |
Richard Uhler | 07b3c23 | 2015-03-31 15:57:54 -0700 | [diff] [blame] | 417 | friend class art::OatDexFile; |
Elliott Hughes | e3c845c | 2012-02-28 17:23:01 -0800 | [diff] [blame] | 418 | friend class OatDumper; // For GetBase and GetLimit |
Andreas Gampe | 049cff0 | 2015-12-01 23:27:12 -0800 | [diff] [blame] | 419 | friend class OatFileBase; |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 420 | DISALLOW_COPY_AND_ASSIGN(OatFile); |
| 421 | }; |
| 422 | |
Richard Uhler | 07b3c23 | 2015-03-31 15:57:54 -0700 | [diff] [blame] | 423 | // OatDexFile should be an inner class of OatFile. Unfortunately, C++ doesn't |
| 424 | // support forward declarations of inner classes, and we want to |
| 425 | // forward-declare OatDexFile so that we can store an opaque pointer to an |
| 426 | // OatDexFile in DexFile. |
| 427 | class OatDexFile FINAL { |
| 428 | public: |
| 429 | // Opens the DexFile referred to by this OatDexFile from within the containing OatFile. |
Igor Murashkin | b1d8c31 | 2015-08-04 11:18:43 -0700 | [diff] [blame] | 430 | std::unique_ptr<const DexFile> OpenDexFile(std::string* error_msg) const; |
Richard Uhler | 07b3c23 | 2015-03-31 15:57:54 -0700 | [diff] [blame] | 431 | |
Mathieu Chartier | 1b86849 | 2016-11-16 16:22:37 -0800 | [diff] [blame] | 432 | // May return null if the OatDexFile only contains a type lookup table. This case only happens |
| 433 | // for the compiler to speed up compilation. |
Richard Uhler | 07b3c23 | 2015-03-31 15:57:54 -0700 | [diff] [blame] | 434 | const OatFile* GetOatFile() const { |
Mathieu Chartier | 1b86849 | 2016-11-16 16:22:37 -0800 | [diff] [blame] | 435 | // Avoid pulling in runtime.h in the header file. |
| 436 | if (kIsDebugBuild && oat_file_ == nullptr) { |
| 437 | AssertAotCompiler(); |
| 438 | } |
Richard Uhler | 07b3c23 | 2015-03-31 15:57:54 -0700 | [diff] [blame] | 439 | return oat_file_; |
| 440 | } |
| 441 | |
| 442 | // Returns the size of the DexFile refered to by this OatDexFile. |
| 443 | size_t FileSize() const; |
| 444 | |
| 445 | // Returns original path of DexFile that was the source of this OatDexFile. |
| 446 | const std::string& GetDexFileLocation() const { |
| 447 | return dex_file_location_; |
| 448 | } |
| 449 | |
| 450 | // Returns the canonical location of DexFile that was the source of this OatDexFile. |
| 451 | const std::string& GetCanonicalDexFileLocation() const { |
| 452 | return canonical_dex_file_location_; |
| 453 | } |
| 454 | |
| 455 | // Returns checksum of original DexFile that was the source of this OatDexFile; |
| 456 | uint32_t GetDexFileLocationChecksum() const { |
| 457 | return dex_file_location_checksum_; |
| 458 | } |
| 459 | |
| 460 | // Returns the OatClass for the class specified by the given DexFile class_def_index. |
| 461 | OatFile::OatClass GetOatClass(uint16_t class_def_index) const; |
| 462 | |
| 463 | // Returns the offset to the OatClass information. Most callers should use GetOatClass. |
| 464 | uint32_t GetOatClassOffset(uint16_t class_def_index) const; |
| 465 | |
Artem Udovichenko | d9786b0 | 2015-10-14 16:36:55 +0300 | [diff] [blame] | 466 | const uint8_t* GetLookupTableData() const { |
| 467 | return lookup_table_data_; |
| 468 | } |
| 469 | |
Vladimir Marko | f3c52b4 | 2017-11-17 17:32:12 +0000 | [diff] [blame] | 470 | const IndexBssMapping* GetMethodBssMapping() const { |
Vladimir Marko | 0eb882b | 2017-05-15 13:39:18 +0100 | [diff] [blame] | 471 | return method_bss_mapping_; |
| 472 | } |
| 473 | |
Vladimir Marko | f3c52b4 | 2017-11-17 17:32:12 +0000 | [diff] [blame] | 474 | const IndexBssMapping* GetTypeBssMapping() const { |
| 475 | return type_bss_mapping_; |
| 476 | } |
| 477 | |
| 478 | const IndexBssMapping* GetStringBssMapping() const { |
| 479 | return string_bss_mapping_; |
| 480 | } |
| 481 | |
Andreas Gampe | 2ba8895 | 2016-04-29 17:52:07 -0700 | [diff] [blame] | 482 | const uint8_t* GetDexFilePointer() const { |
| 483 | return dex_file_pointer_; |
| 484 | } |
| 485 | |
David Sehr | 9aa352e | 2016-09-15 18:13:52 -0700 | [diff] [blame] | 486 | // Looks up a class definition by its class descriptor. Hash must be |
| 487 | // ComputeModifiedUtf8Hash(descriptor). |
| 488 | static const DexFile::ClassDef* FindClassDef(const DexFile& dex_file, |
| 489 | const char* descriptor, |
| 490 | size_t hash); |
| 491 | |
Mathieu Chartier | 120aa28 | 2017-08-05 16:03:03 -0700 | [diff] [blame] | 492 | // Madvise the dex file based on the state we are moving to. |
| 493 | static void MadviseDexFile(const DexFile& dex_file, MadviseState state); |
| 494 | |
David Sehr | 9aa352e | 2016-09-15 18:13:52 -0700 | [diff] [blame] | 495 | TypeLookupTable* GetTypeLookupTable() const { |
| 496 | return lookup_table_.get(); |
| 497 | } |
| 498 | |
Richard Uhler | 07b3c23 | 2015-03-31 15:57:54 -0700 | [diff] [blame] | 499 | ~OatDexFile(); |
| 500 | |
Mathieu Chartier | 1b86849 | 2016-11-16 16:22:37 -0800 | [diff] [blame] | 501 | // Create only with a type lookup table, used by the compiler to speed up compilation. |
| 502 | explicit OatDexFile(std::unique_ptr<TypeLookupTable>&& lookup_table); |
| 503 | |
Mathieu Chartier | 120aa28 | 2017-08-05 16:03:03 -0700 | [diff] [blame] | 504 | // Return the dex layout sections. |
| 505 | const DexLayoutSections* GetDexLayoutSections() const { |
| 506 | return dex_layout_sections_; |
| 507 | } |
| 508 | |
Richard Uhler | 07b3c23 | 2015-03-31 15:57:54 -0700 | [diff] [blame] | 509 | private: |
| 510 | OatDexFile(const OatFile* oat_file, |
| 511 | const std::string& dex_file_location, |
| 512 | const std::string& canonical_dex_file_location, |
| 513 | uint32_t dex_file_checksum, |
| 514 | const uint8_t* dex_file_pointer, |
Artem Udovichenko | d9786b0 | 2015-10-14 16:36:55 +0300 | [diff] [blame] | 515 | const uint8_t* lookup_table_data, |
Vladimir Marko | f3c52b4 | 2017-11-17 17:32:12 +0000 | [diff] [blame] | 516 | const IndexBssMapping* method_bss_mapping, |
| 517 | const IndexBssMapping* type_bss_mapping, |
| 518 | const IndexBssMapping* string_bss_mapping, |
Vladimir Marko | 09d0943 | 2015-09-08 13:47:48 +0100 | [diff] [blame] | 519 | const uint32_t* oat_class_offsets_pointer, |
Mathieu Chartier | 120aa28 | 2017-08-05 16:03:03 -0700 | [diff] [blame] | 520 | const DexLayoutSections* dex_layout_sections); |
Richard Uhler | 07b3c23 | 2015-03-31 15:57:54 -0700 | [diff] [blame] | 521 | |
Mathieu Chartier | 1b86849 | 2016-11-16 16:22:37 -0800 | [diff] [blame] | 522 | static void AssertAotCompiler(); |
| 523 | |
| 524 | const OatFile* const oat_file_ = nullptr; |
Richard Uhler | 07b3c23 | 2015-03-31 15:57:54 -0700 | [diff] [blame] | 525 | const std::string dex_file_location_; |
| 526 | const std::string canonical_dex_file_location_; |
Mathieu Chartier | 1b86849 | 2016-11-16 16:22:37 -0800 | [diff] [blame] | 527 | const uint32_t dex_file_location_checksum_ = 0u; |
| 528 | const uint8_t* const dex_file_pointer_ = nullptr; |
Vladimir Marko | 0eb882b | 2017-05-15 13:39:18 +0100 | [diff] [blame] | 529 | const uint8_t* const lookup_table_data_ = nullptr; |
Vladimir Marko | f3c52b4 | 2017-11-17 17:32:12 +0000 | [diff] [blame] | 530 | const IndexBssMapping* const method_bss_mapping_ = nullptr; |
| 531 | const IndexBssMapping* const type_bss_mapping_ = nullptr; |
| 532 | const IndexBssMapping* const string_bss_mapping_ = nullptr; |
Mathieu Chartier | 1b86849 | 2016-11-16 16:22:37 -0800 | [diff] [blame] | 533 | const uint32_t* const oat_class_offsets_pointer_ = 0u; |
David Sehr | 9aa352e | 2016-09-15 18:13:52 -0700 | [diff] [blame] | 534 | mutable std::unique_ptr<TypeLookupTable> lookup_table_; |
Mathieu Chartier | 120aa28 | 2017-08-05 16:03:03 -0700 | [diff] [blame] | 535 | const DexLayoutSections* const dex_layout_sections_ = nullptr; |
Richard Uhler | 07b3c23 | 2015-03-31 15:57:54 -0700 | [diff] [blame] | 536 | |
| 537 | friend class OatFile; |
Andreas Gampe | 049cff0 | 2015-12-01 23:27:12 -0800 | [diff] [blame] | 538 | friend class OatFileBase; |
Richard Uhler | 07b3c23 | 2015-03-31 15:57:54 -0700 | [diff] [blame] | 539 | DISALLOW_COPY_AND_ASSIGN(OatDexFile); |
| 540 | }; |
| 541 | |
Brian Carlstrom | e24fa61 | 2011-09-29 00:53:55 -0700 | [diff] [blame] | 542 | } // namespace art |
| 543 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 544 | #endif // ART_RUNTIME_OAT_FILE_H_ |