blob: 29add5b2b2301249cfde9f4fb85885551f19ef75 [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Brian Carlstrome24fa612011-09-29 00:53:55 -070016
Brian Carlstromfc0e3212013-07-17 14:40:12 -070017#ifndef ART_RUNTIME_OAT_FILE_H_
18#define ART_RUNTIME_OAT_FILE_H_
Brian Carlstrome24fa612011-09-29 00:53:55 -070019
Vladimir Marko3f5838d2014-08-07 18:07:18 +010020#include <list>
Brian Carlstrom700c8d32012-11-05 10:42:02 -080021#include <string>
Brian Carlstrome24fa612011-09-29 00:53:55 -070022#include <vector>
23
Vladimir Markoaad75c62016-10-03 08:46:48 +000024#include "base/array_ref.h"
Vladimir Marko3f5838d2014-08-07 18:07:18 +010025#include "base/mutex.h"
Vladimir Marko539690a2014-06-05 18:36:42 +010026#include "base/stringpiece.h"
Vladimir Marko97d7e1c2016-10-04 14:44:28 +010027#include "compiler_filter.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080028#include "dex_file.h"
Mingyao Yang98d1cc82014-05-15 17:02:16 -070029#include "mirror/class.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080030#include "oat.h"
Brian Carlstrom700c8d32012-11-05 10:42:02 -080031#include "os.h"
David Sehr9aa352e2016-09-15 18:13:52 -070032#include "type_lookup_table.h"
33#include "utf.h"
Nicolas Geoffray6bc43742015-10-12 18:11:10 +010034#include "utils.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070035
36namespace art {
37
Brian Carlstromba150c32013-08-27 17:31:03 -070038class BitVector;
Brian Carlstrom700c8d32012-11-05 10:42:02 -080039class ElfFile;
Vladimir Markoaad75c62016-10-03 08:46:48 +000040template <class MirrorType> class GcRoot;
Brian Carlstrom700c8d32012-11-05 10:42:02 -080041class MemMap;
42class OatMethodOffsets;
Ian Rogers33e95662013-05-20 20:29:14 -070043class OatHeader;
Richard Uhler07b3c232015-03-31 15:57:54 -070044class OatDexFile;
Vladimir Marko97d7e1c2016-10-04 14:44:28 +010045class VdexFile;
Brian Carlstrom700c8d32012-11-05 10:42:02 -080046
Mathieu Chartier5351da02016-02-17 16:19:53 -080047namespace gc {
48namespace collector {
49class DummyOatFile;
50} // namespace collector
51} // namespace gc
52
David Brazdil7b49e6c2016-09-01 11:06:18 +010053// Runtime representation of the OAT file format which holds compiler output.
54// The class opens an OAT file from storage and maps it to memory, typically with
55// dlopen and provides access to its internal data structures (see OatWriter for
56// for more details about the OAT format).
57// In the process of loading OAT, the class also loads the associated VDEX file
58// with the input DEX files (see VdexFile for details about the VDEX format).
59// The raw DEX data are accessible transparently through the OatDexFile objects.
60
Andreas Gampe049cff02015-12-01 23:27:12 -080061class OatFile {
Brian Carlstrome24fa612011-09-29 00:53:55 -070062 public:
Jeff Haof0192c82016-03-28 20:39:50 -070063 // Special classpath that skips shared library check.
64 static constexpr const char* kSpecialSharedLibrary = "&";
65
Richard Uhler07b3c232015-03-31 15:57:54 -070066 typedef art::OatDexFile OatDexFile;
67
Alex Light84d76052014-08-22 17:49:35 -070068 // Opens an oat file contained within the given elf file. This is always opened as
69 // non-executable at the moment.
David Brazdilc93b3be2016-09-12 18:49:58 +010070 static OatFile* OpenWithElfFile(ElfFile* elf_file,
71 VdexFile* vdex_file,
72 const std::string& location,
Richard Uhlere5fed032015-03-18 08:21:11 -070073 const char* abs_dex_location,
Igor Murashkinb1d8c312015-08-04 11:18:43 -070074 std::string* error_msg);
Mathieu Chartier2cebb242015-04-21 16:50:40 -070075 // Open an oat file. Returns null on failure. Requested base can
Brian Carlstrome24fa612011-09-29 00:53:55 -070076 // optionally be used to request where the file should be loaded.
Richard Uhlere5fed032015-03-18 08:21:11 -070077 // See the ResolveRelativeEncodedDexLocation for a description of how the
78 // abs_dex_location argument is used.
Brian Carlstrome24fa612011-09-29 00:53:55 -070079 static OatFile* Open(const std::string& filename,
Brian Carlstroma004aa92012-02-08 18:05:09 -080080 const std::string& location,
Ian Rogers13735952014-10-08 12:43:28 -070081 uint8_t* requested_base,
Igor Murashkin46774762014-10-22 11:37:02 -070082 uint8_t* oat_file_begin,
Ian Rogers8d31bbd2013-10-13 10:44:14 -070083 bool executable,
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -080084 bool low_4gb,
Richard Uhlere5fed032015-03-18 08:21:11 -070085 const char* abs_dex_location,
Igor Murashkinb1d8c312015-08-04 11:18:43 -070086 std::string* error_msg);
Brian Carlstrome24fa612011-09-29 00:53:55 -070087
Brian Carlstrom700c8d32012-11-05 10:42:02 -080088 // Open an oat file from an already opened File.
Brian Carlstrom265091e2013-01-30 14:08:26 -080089 // Does not use dlopen underneath so cannot be used for runtime use
90 // where relocations may be required. Currently used from
91 // ImageWriter which wants to open a writable version from an existing
92 // file descriptor for patching.
Igor Murashkinb1d8c312015-08-04 11:18:43 -070093 static OatFile* OpenWritable(File* file, const std::string& location,
Richard Uhlere5fed032015-03-18 08:21:11 -070094 const char* abs_dex_location,
Igor Murashkinb1d8c312015-08-04 11:18:43 -070095 std::string* error_msg);
Alex Lighta59dd802014-07-02 16:28:08 -070096 // Opens an oat file from an already opened File. Maps it PROT_READ, MAP_PRIVATE.
Igor Murashkinb1d8c312015-08-04 11:18:43 -070097 static OatFile* OpenReadable(File* file, const std::string& location,
Richard Uhlere5fed032015-03-18 08:21:11 -070098 const char* abs_dex_location,
Igor Murashkinb1d8c312015-08-04 11:18:43 -070099 std::string* error_msg);
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800100
Andreas Gampe049cff02015-12-01 23:27:12 -0800101 virtual ~OatFile();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700102
Alex Light9dcc4572014-08-14 14:16:26 -0700103 bool IsExecutable() const {
104 return is_executable_;
105 }
106
Richard Uhlerd1537b52016-03-29 13:27:41 -0700107 bool HasPatchInfo() const;
108
Andreas Gampe7ba64962014-10-23 11:37:40 -0700109 bool IsPic() const;
110
Sebastien Hertz0de11332015-05-13 12:14:05 +0200111 // Indicates whether the oat file was compiled with full debugging capability.
112 bool IsDebuggable() const;
113
Andreas Gampe29d38e72016-03-23 15:31:51 +0000114 CompilerFilter::Filter GetCompilerFilter() const;
Calin Juravleb077e152016-02-18 18:47:37 +0000115
Brian Carlstrome24fa612011-09-29 00:53:55 -0700116 const std::string& GetLocation() const {
117 return location_;
118 }
119
120 const OatHeader& GetOatHeader() const;
121
Richard Uhler07b3c232015-03-31 15:57:54 -0700122 class OatMethod FINAL {
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700123 public:
Mathieu Chartiere401d142015-04-22 13:56:20 -0700124 void LinkMethod(ArtMethod* method) const;
Brian Carlstromae826982011-11-09 01:33:42 -0800125
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100126 uint32_t GetCodeOffset() const;
Brian Carlstromae826982011-11-09 01:33:42 -0800127
Nicolas Geoffrayc04c8002015-07-14 11:37:54 +0100128 const void* GetQuickCode() const;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700129
130 // Returns size of quick code.
Ian Rogersef7d42f2014-01-06 12:55:46 -0800131 uint32_t GetQuickCodeSize() const;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700132 uint32_t GetQuickCodeSizeOffset() const;
133
134 // Returns OatQuickMethodHeader for debugging. Most callers should
135 // use more specific methods such as GetQuickCodeSize.
136 const OatQuickMethodHeader* GetOatQuickMethodHeader() const;
137 uint32_t GetOatQuickMethodHeaderOffset() const;
Logan Chien0c717dd2012-03-28 18:31:07 +0800138
Vladimir Marko7624d252014-05-02 14:40:15 +0100139 size_t GetFrameSizeInBytes() const;
140 uint32_t GetCoreSpillMask() const;
141 uint32_t GetFpSpillMask() const;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700142
Vladimir Marko8a630572014-04-09 18:45:35 +0100143 const uint8_t* GetVmapTable() const;
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700144 uint32_t GetVmapTableOffset() const;
145 uint32_t GetVmapTableOffsetOffset() const;
Vladimir Marko8a630572014-04-09 18:45:35 +0100146
Brian Carlstromae826982011-11-09 01:33:42 -0800147 // Create an OatMethod with offsets relative to the given base address
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800148 OatMethod(const uint8_t* base, const uint32_t code_offset)
149 : begin_(base), code_offset_(code_offset) {
Ian Rogers97b52f82014-08-14 11:34:07 -0700150 }
Andreas Gampe758a8012015-04-03 21:28:42 -0700151 OatMethod(const OatMethod&) = default;
Ian Rogers97b52f82014-08-14 11:34:07 -0700152 ~OatMethod() {}
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700153
Andreas Gampe758a8012015-04-03 21:28:42 -0700154 OatMethod& operator=(const OatMethod&) = default;
155
Ian Rogers97b52f82014-08-14 11:34:07 -0700156 // A representation of an invalid OatMethod, used when an OatMethod or OatClass can't be found.
157 // See ClassLinker::FindOatMethodFor.
158 static const OatMethod Invalid() {
Mathieu Chartier957ca1c2014-11-21 16:51:29 -0800159 return OatMethod(nullptr, -1);
Ian Rogers97b52f82014-08-14 11:34:07 -0700160 }
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +0100161
Brian Carlstromae826982011-11-09 01:33:42 -0800162 private:
163 template<class T>
164 T GetOatPointer(uint32_t offset) const {
165 if (offset == 0) {
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700166 return nullptr;
Brian Carlstromae826982011-11-09 01:33:42 -0800167 }
Ian Rogers30fab402012-01-23 15:43:46 -0800168 return reinterpret_cast<T>(begin_ + offset);
Brian Carlstromae826982011-11-09 01:33:42 -0800169 }
170
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800171 const uint8_t* begin_;
172 uint32_t code_offset_;
Brian Carlstromae826982011-11-09 01:33:42 -0800173
174 friend class OatClass;
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700175 };
176
Richard Uhler07b3c232015-03-31 15:57:54 -0700177 class OatClass FINAL {
Brian Carlstrome24fa612011-09-29 00:53:55 -0700178 public:
Brian Carlstromba150c32013-08-27 17:31:03 -0700179 mirror::Class::Status GetStatus() const {
180 return status_;
181 }
182
183 OatClassType GetType() const {
184 return type_;
185 }
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800186
Mathieu Chartiereb8167a2014-05-07 15:43:14 -0700187 // Get the OatMethod entry based on its index into the class
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700188 // defintion. Direct methods come first, followed by virtual
189 // methods. Note that runtime created methods such as miranda
Brian Carlstrome24fa612011-09-29 00:53:55 -0700190 // methods are not included.
Brian Carlstromaded5f72011-10-07 17:15:04 -0700191 const OatMethod GetOatMethod(uint32_t method_index) const;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700192
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700193 // Return a pointer to the OatMethodOffsets for the requested
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700194 // method_index, or null if none is present. Note that most
Brian Carlstrom2cbaccb2014-09-14 20:34:17 -0700195 // callers should use GetOatMethod.
196 const OatMethodOffsets* GetOatMethodOffsets(uint32_t method_index) const;
197
198 // Return the offset from the start of the OatFile to the
199 // OatMethodOffsets for the requested method_index, or 0 if none
200 // is present. Note that most callers should use GetOatMethod.
201 uint32_t GetOatMethodOffsetsOffset(uint32_t method_index) const;
202
Ian Rogers97b52f82014-08-14 11:34:07 -0700203 // A representation of an invalid OatClass, used when an OatClass can't be found.
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100204 // See FindOatClass().
Ian Rogers97b52f82014-08-14 11:34:07 -0700205 static OatClass Invalid() {
206 return OatClass(nullptr, mirror::Class::kStatusError, kOatClassNoneCompiled, 0, nullptr,
207 nullptr);
208 }
Nicolas Geoffray4fcdc942014-07-22 10:48:00 +0100209
Brian Carlstrome24fa612011-09-29 00:53:55 -0700210 private:
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800211 OatClass(const OatFile* oat_file,
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800212 mirror::Class::Status status,
Brian Carlstromba150c32013-08-27 17:31:03 -0700213 OatClassType type,
214 uint32_t bitmap_size,
215 const uint32_t* bitmap_pointer,
Brian Carlstrom0755ec52012-01-11 15:19:46 -0800216 const OatMethodOffsets* methods_pointer);
Brian Carlstrom3320cf42011-10-04 14:58:28 -0700217
Ian Rogers97b52f82014-08-14 11:34:07 -0700218 const OatFile* const oat_file_;
Brian Carlstromba150c32013-08-27 17:31:03 -0700219
Ian Rogers97b52f82014-08-14 11:34:07 -0700220 const mirror::Class::Status status_;
Brian Carlstromba150c32013-08-27 17:31:03 -0700221
Ian Rogers97b52f82014-08-14 11:34:07 -0700222 const OatClassType type_;
Brian Carlstromba150c32013-08-27 17:31:03 -0700223
Ian Rogers97b52f82014-08-14 11:34:07 -0700224 const uint32_t* const bitmap_;
Brian Carlstromba150c32013-08-27 17:31:03 -0700225
Ian Rogers97b52f82014-08-14 11:34:07 -0700226 const OatMethodOffsets* const methods_pointer_;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700227
Richard Uhler07b3c232015-03-31 15:57:54 -0700228 friend class art::OatDexFile;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700229 };
Richard Uhler9a37efc2016-08-05 16:32:55 -0700230
231 // Get the OatDexFile for the given dex_location within this oat file.
232 // If dex_location_checksum is non-null, the OatDexFile will only be
233 // returned if it has a matching checksum.
234 // If error_msg is non-null and no OatDexFile is returned, error_msg will
235 // be updated with a description of why no OatDexFile was returned.
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700236 const OatDexFile* GetOatDexFile(const char* dex_location,
Brian Carlstrom756ee4e2013-10-03 15:46:12 -0700237 const uint32_t* const dex_location_checksum,
Richard Uhler9a37efc2016-08-05 16:32:55 -0700238 /*out*/std::string* error_msg = nullptr) const
Mathieu Chartier90443472015-07-16 20:32:27 -0700239 REQUIRES(!secondary_lookup_lock_);
Ian Rogers8d31bbd2013-10-13 10:44:14 -0700240
Vladimir Markoaa4497d2014-09-05 14:01:17 +0100241 const std::vector<const OatDexFile*>& GetOatDexFiles() const {
242 return oat_dex_files_storage_;
243 }
Brian Carlstrome24fa612011-09-29 00:53:55 -0700244
Ian Rogers30fab402012-01-23 15:43:46 -0800245 size_t Size() const {
246 return End() - Begin();
Brian Carlstrome24fa612011-09-29 00:53:55 -0700247 }
248
Mingyao Yang6ea1a0e2016-01-29 12:12:49 -0800249 bool Contains(const void* p) const {
250 return p >= Begin() && p < End();
251 }
252
Vladimir Marko5c42c292015-02-25 12:02:49 +0000253 size_t BssSize() const {
254 return BssEnd() - BssBegin();
255 }
256
Vladimir Markoaad75c62016-10-03 08:46:48 +0000257 size_t BssRootsOffset() const {
258 return bss_roots_ - BssBegin();
259 }
260
David Brazdil7b49e6c2016-09-01 11:06:18 +0100261 size_t DexSize() const {
262 return DexEnd() - DexBegin();
263 }
264
Ian Rogers13735952014-10-08 12:43:28 -0700265 const uint8_t* Begin() const;
266 const uint8_t* End() const;
Alex Light53cb16b2014-06-12 11:26:29 -0700267
Vladimir Marko5c42c292015-02-25 12:02:49 +0000268 const uint8_t* BssBegin() const;
269 const uint8_t* BssEnd() const;
270
David Brazdil7b49e6c2016-09-01 11:06:18 +0100271 const uint8_t* DexBegin() const;
272 const uint8_t* DexEnd() const;
273
Vladimir Markoaad75c62016-10-03 08:46:48 +0000274 ArrayRef<GcRoot<mirror::Object>> GetBssGcRoots() const;
275
Richard Uhlere5fed032015-03-18 08:21:11 -0700276 // Returns the absolute dex location for the encoded relative dex location.
277 //
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700278 // If not null, abs_dex_location is used to resolve the absolute dex
Richard Uhlere5fed032015-03-18 08:21:11 -0700279 // location of relative dex locations encoded in the oat file.
280 // For example, given absolute location "/data/app/foo/base.apk", encoded
281 // dex locations "base.apk", "base.apk:classes2.dex", etc. would be resolved
282 // to "/data/app/foo/base.apk", "/data/app/foo/base.apk:classes2.dex", etc.
283 // Relative encoded dex locations that don't match the given abs_dex_location
284 // are left unchanged.
285 static std::string ResolveRelativeEncodedDexLocation(
286 const char* abs_dex_location, const std::string& rel_dex_location);
287
Andreas Gampe7848da42015-04-09 11:15:04 -0700288 // Create a dependency list (dex locations and checksums) for the given dex files.
289 static std::string EncodeDexFileDependencies(const std::vector<const DexFile*>& dex_files);
290
291 // Check the given dependency list against their dex files - thus the name "Static," this does
292 // not check the class-loader environment, only whether there have been file updates.
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700293 static bool CheckStaticDexFileDependencies(const char* dex_dependencies, std::string* msg);
Andreas Gampe7848da42015-04-09 11:15:04 -0700294
295 // Get the dex locations of a dependency list. Note: this is *not* cleaned for synthetic
296 // locations of multidex files.
297 static bool GetDexLocationsFromDependencies(const char* dex_dependencies,
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700298 std::vector<std::string>* locations);
Andreas Gampe7848da42015-04-09 11:15:04 -0700299
Vladimir Marko97d7e1c2016-10-04 14:44:28 +0100300 // Finds the associated oat class for a dex_file and descriptor. Returns an invalid OatClass on
301 // error and sets found to false.
302 static OatClass FindOatClass(const DexFile& dex_file, uint16_t class_def_idx, bool* found);
303
Nicolas Geoffray4acefd32016-10-24 13:14:58 +0100304 VdexFile* GetVdexFile() const {
305 return vdex_.get();
306 }
307
Andreas Gampe049cff02015-12-01 23:27:12 -0800308 protected:
309 OatFile(const std::string& filename, bool executable);
310
Brian Carlstrome24fa612011-09-29 00:53:55 -0700311 private:
Brian Carlstrome24fa612011-09-29 00:53:55 -0700312 // The oat file name.
313 //
314 // The image will embed this to link its associated oat file.
315 const std::string location_;
316
David Brazdil7b49e6c2016-09-01 11:06:18 +0100317 // Pointer to the Vdex file with the Dex files for this Oat file.
318 std::unique_ptr<VdexFile> vdex_;
319
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800320 // Pointer to OatHeader.
Ian Rogers13735952014-10-08 12:43:28 -0700321 const uint8_t* begin_;
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800322
323 // Pointer to end of oat region for bounds checking.
Ian Rogers13735952014-10-08 12:43:28 -0700324 const uint8_t* end_;
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800325
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700326 // Pointer to the .bss section, if present, otherwise null.
Vladimir Marko06d7aaa2015-10-16 11:23:41 +0100327 uint8_t* bss_begin_;
Vladimir Marko5c42c292015-02-25 12:02:49 +0000328
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700329 // Pointer to the end of the .bss section, if present, otherwise null.
Vladimir Marko06d7aaa2015-10-16 11:23:41 +0100330 uint8_t* bss_end_;
Vladimir Marko5c42c292015-02-25 12:02:49 +0000331
Vladimir Markoaad75c62016-10-03 08:46:48 +0000332 // Pointer to the beginning of the GC roots in .bss section, if present, otherwise null.
333 uint8_t* bss_roots_;
334
Alex Light9dcc4572014-08-14 14:16:26 -0700335 // Was this oat_file loaded executable?
336 const bool is_executable_;
337
Vladimir Markoaa4497d2014-09-05 14:01:17 +0100338 // Owning storage for the OatDexFile objects.
339 std::vector<const OatDexFile*> oat_dex_files_storage_;
340
Vladimir Marko3f5838d2014-08-07 18:07:18 +0100341 // NOTE: We use a StringPiece as the key type to avoid a memory allocation on every
342 // lookup with a const char* key. The StringPiece doesn't own its backing storage,
343 // therefore we're using the OatDexFile::dex_file_location_ as the backing storage
344 // for keys in oat_dex_files_ and the string_cache_ entries for the backing storage
345 // of keys in secondary_oat_dex_files_ and oat_dex_files_by_canonical_location_.
Mathieu Chartierbad02672014-08-25 13:08:22 -0700346 typedef AllocationTrackingSafeMap<StringPiece, const OatDexFile*, kAllocatorTagOatFile> Table;
Vladimir Marko3f5838d2014-08-07 18:07:18 +0100347
Vladimir Markoaa4497d2014-09-05 14:01:17 +0100348 // Map each location and canonical location (if different) retrieved from the
349 // oat file to its OatDexFile. This map doesn't change after it's constructed in Setup()
350 // and therefore doesn't need any locking and provides the cheapest dex file lookup
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700351 // for GetOatDexFile() for a very frequent use case. Never contains a null value.
Vladimir Markoaa4497d2014-09-05 14:01:17 +0100352 Table oat_dex_files_;
Vladimir Marko3f5838d2014-08-07 18:07:18 +0100353
354 // Lock guarding all members needed for secondary lookup in GetOatDexFile().
355 mutable Mutex secondary_lookup_lock_ DEFAULT_MUTEX_ACQUIRED_AFTER;
356
357 // If the primary oat_dex_files_ lookup fails, use a secondary map. This map stores
358 // the results of all previous secondary lookups, whether successful (non-null) or
359 // failed (null). If it doesn't contain an entry we need to calculate the canonical
360 // location and use oat_dex_files_by_canonical_location_.
361 mutable Table secondary_oat_dex_files_ GUARDED_BY(secondary_lookup_lock_);
362
Vladimir Marko3f5838d2014-08-07 18:07:18 +0100363 // Cache of strings. Contains the backing storage for keys in the secondary_oat_dex_files_
364 // and the lazily initialized oat_dex_files_by_canonical_location_.
365 // NOTE: We're keeping references to contained strings in form of StringPiece and adding
366 // new strings to the end. The adding of a new element must not touch any previously stored
367 // elements. std::list<> and std::deque<> satisfy this requirement, std::vector<> doesn't.
368 mutable std::list<std::string> string_cache_ GUARDED_BY(secondary_lookup_lock_);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700369
Mathieu Chartier5351da02016-02-17 16:19:53 -0800370 friend class gc::collector::DummyOatFile; // For modifying begin_ and end_.
Brian Carlstrome24fa612011-09-29 00:53:55 -0700371 friend class OatClass;
Richard Uhler07b3c232015-03-31 15:57:54 -0700372 friend class art::OatDexFile;
Elliott Hughese3c845c2012-02-28 17:23:01 -0800373 friend class OatDumper; // For GetBase and GetLimit
Andreas Gampe049cff02015-12-01 23:27:12 -0800374 friend class OatFileBase;
Brian Carlstrome24fa612011-09-29 00:53:55 -0700375 DISALLOW_COPY_AND_ASSIGN(OatFile);
376};
377
Richard Uhler07b3c232015-03-31 15:57:54 -0700378// OatDexFile should be an inner class of OatFile. Unfortunately, C++ doesn't
379// support forward declarations of inner classes, and we want to
380// forward-declare OatDexFile so that we can store an opaque pointer to an
381// OatDexFile in DexFile.
382class OatDexFile FINAL {
383 public:
384 // Opens the DexFile referred to by this OatDexFile from within the containing OatFile.
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700385 std::unique_ptr<const DexFile> OpenDexFile(std::string* error_msg) const;
Richard Uhler07b3c232015-03-31 15:57:54 -0700386
Mathieu Chartier1b868492016-11-16 16:22:37 -0800387 // May return null if the OatDexFile only contains a type lookup table. This case only happens
388 // for the compiler to speed up compilation.
Richard Uhler07b3c232015-03-31 15:57:54 -0700389 const OatFile* GetOatFile() const {
Mathieu Chartier1b868492016-11-16 16:22:37 -0800390 // Avoid pulling in runtime.h in the header file.
391 if (kIsDebugBuild && oat_file_ == nullptr) {
392 AssertAotCompiler();
393 }
Richard Uhler07b3c232015-03-31 15:57:54 -0700394 return oat_file_;
395 }
396
397 // Returns the size of the DexFile refered to by this OatDexFile.
398 size_t FileSize() const;
399
400 // Returns original path of DexFile that was the source of this OatDexFile.
401 const std::string& GetDexFileLocation() const {
402 return dex_file_location_;
403 }
404
405 // Returns the canonical location of DexFile that was the source of this OatDexFile.
406 const std::string& GetCanonicalDexFileLocation() const {
407 return canonical_dex_file_location_;
408 }
409
410 // Returns checksum of original DexFile that was the source of this OatDexFile;
411 uint32_t GetDexFileLocationChecksum() const {
412 return dex_file_location_checksum_;
413 }
414
415 // Returns the OatClass for the class specified by the given DexFile class_def_index.
416 OatFile::OatClass GetOatClass(uint16_t class_def_index) const;
417
418 // Returns the offset to the OatClass information. Most callers should use GetOatClass.
419 uint32_t GetOatClassOffset(uint16_t class_def_index) const;
420
Vladimir Marko06d7aaa2015-10-16 11:23:41 +0100421 uint8_t* GetDexCacheArrays() const {
Vladimir Marko09d09432015-09-08 13:47:48 +0100422 return dex_cache_arrays_;
423 }
424
Artem Udovichenkod9786b02015-10-14 16:36:55 +0300425 const uint8_t* GetLookupTableData() const {
426 return lookup_table_data_;
427 }
428
Andreas Gampe2ba88952016-04-29 17:52:07 -0700429 const uint8_t* GetDexFilePointer() const {
430 return dex_file_pointer_;
431 }
432
David Sehr9aa352e2016-09-15 18:13:52 -0700433 // Looks up a class definition by its class descriptor. Hash must be
434 // ComputeModifiedUtf8Hash(descriptor).
435 static const DexFile::ClassDef* FindClassDef(const DexFile& dex_file,
436 const char* descriptor,
437 size_t hash);
438
439 TypeLookupTable* GetTypeLookupTable() const {
440 return lookup_table_.get();
441 }
442
Richard Uhler07b3c232015-03-31 15:57:54 -0700443 ~OatDexFile();
444
Mathieu Chartier1b868492016-11-16 16:22:37 -0800445 // Create only with a type lookup table, used by the compiler to speed up compilation.
446 explicit OatDexFile(std::unique_ptr<TypeLookupTable>&& lookup_table);
447
Richard Uhler07b3c232015-03-31 15:57:54 -0700448 private:
449 OatDexFile(const OatFile* oat_file,
450 const std::string& dex_file_location,
451 const std::string& canonical_dex_file_location,
452 uint32_t dex_file_checksum,
453 const uint8_t* dex_file_pointer,
Artem Udovichenkod9786b02015-10-14 16:36:55 +0300454 const uint8_t* lookup_table_data,
Vladimir Marko09d09432015-09-08 13:47:48 +0100455 const uint32_t* oat_class_offsets_pointer,
Vladimir Marko06d7aaa2015-10-16 11:23:41 +0100456 uint8_t* dex_cache_arrays);
Richard Uhler07b3c232015-03-31 15:57:54 -0700457
Mathieu Chartier1b868492016-11-16 16:22:37 -0800458 static void AssertAotCompiler();
459
460 const OatFile* const oat_file_ = nullptr;
Richard Uhler07b3c232015-03-31 15:57:54 -0700461 const std::string dex_file_location_;
462 const std::string canonical_dex_file_location_;
Mathieu Chartier1b868492016-11-16 16:22:37 -0800463 const uint32_t dex_file_location_checksum_ = 0u;
464 const uint8_t* const dex_file_pointer_ = nullptr;
465 const uint8_t* lookup_table_data_ = nullptr;
466 const uint32_t* const oat_class_offsets_pointer_ = 0u;
467 uint8_t* const dex_cache_arrays_ = nullptr;
David Sehr9aa352e2016-09-15 18:13:52 -0700468 mutable std::unique_ptr<TypeLookupTable> lookup_table_;
Richard Uhler07b3c232015-03-31 15:57:54 -0700469
470 friend class OatFile;
Andreas Gampe049cff02015-12-01 23:27:12 -0800471 friend class OatFileBase;
Richard Uhler07b3c232015-03-31 15:57:54 -0700472 DISALLOW_COPY_AND_ASSIGN(OatDexFile);
473};
474
Brian Carlstrome24fa612011-09-29 00:53:55 -0700475} // namespace art
476
Brian Carlstromfc0e3212013-07-17 14:40:12 -0700477#endif // ART_RUNTIME_OAT_FILE_H_