Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [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 | */ |
| 16 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 17 | #ifndef ART_COMPILER_IMAGE_WRITER_H_ |
| 18 | #define ART_COMPILER_IMAGE_WRITER_H_ |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 19 | |
| 20 | #include <stdint.h> |
Evgenii Stepanov | 1e13374 | 2015-05-20 12:30:59 -0700 | [diff] [blame] | 21 | #include "base/memory_tool.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 22 | |
| 23 | #include <cstddef> |
Ian Rogers | 700a402 | 2014-05-19 16:49:03 -0700 | [diff] [blame] | 24 | #include <memory> |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 25 | #include <set> |
| 26 | #include <string> |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 27 | #include <ostream> |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 28 | |
Vladimir Marko | 80afd02 | 2015-05-19 18:08:00 +0100 | [diff] [blame] | 29 | #include "base/bit_utils.h" |
Vladimir Marko | 944da60 | 2016-02-19 12:27:55 +0000 | [diff] [blame] | 30 | #include "base/dchecked_vector.h" |
Alex Light | e64300b | 2015-12-15 15:02:47 -0800 | [diff] [blame] | 31 | #include "base/length_prefixed_array.h" |
Igor Murashkin | 4677476 | 2014-10-22 11:37:02 -0700 | [diff] [blame] | 32 | #include "base/macros.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 33 | #include "driver/compiler_driver.h" |
Mathieu Chartier | fd04b6f | 2014-11-14 19:34:18 -0800 | [diff] [blame] | 34 | #include "gc/space/space.h" |
Mathieu Chartier | ceb07b3 | 2015-12-10 09:33:21 -0800 | [diff] [blame] | 35 | #include "image.h" |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 36 | #include "lock_word.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 37 | #include "mem_map.h" |
| 38 | #include "oat_file.h" |
| 39 | #include "mirror/dex_cache.h" |
| 40 | #include "os.h" |
| 41 | #include "safe_map.h" |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 42 | #include "utils.h" |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 43 | |
| 44 | namespace art { |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 45 | namespace gc { |
| 46 | namespace space { |
| 47 | class ImageSpace; |
| 48 | } // namespace space |
| 49 | } // namespace gc |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 50 | |
Mathieu Chartier | 1f47b67 | 2016-01-07 16:29:01 -0800 | [diff] [blame] | 51 | class ClassTable; |
| 52 | |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 53 | static constexpr int kInvalidFd = -1; |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 54 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 55 | // Write a Space built during compilation for use during execution. |
Igor Murashkin | 4677476 | 2014-10-22 11:37:02 -0700 | [diff] [blame] | 56 | class ImageWriter FINAL { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 57 | public: |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 58 | ImageWriter(const CompilerDriver& compiler_driver, |
| 59 | uintptr_t image_begin, |
| 60 | bool compile_pic, |
Mathieu Chartier | ceb07b3 | 2015-12-10 09:33:21 -0800 | [diff] [blame] | 61 | bool compile_app_image, |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 62 | ImageHeader::StorageMode image_storage_mode, |
Vladimir Marko | 944da60 | 2016-02-19 12:27:55 +0000 | [diff] [blame] | 63 | const std::vector<const char*>& oat_filenames, |
| 64 | const std::unordered_map<const DexFile*, size_t>& dex_file_oat_index_map); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 65 | |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 66 | bool PrepareImageAddressSpace(); |
| 67 | |
| 68 | bool IsImageAddressSpaceReady() const { |
Vladimir Marko | 944da60 | 2016-02-19 12:27:55 +0000 | [diff] [blame] | 69 | DCHECK(!image_infos_.empty()); |
| 70 | for (const ImageInfo& image_info : image_infos_) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 71 | if (image_info.image_roots_address_ == 0u) { |
| 72 | return false; |
| 73 | } |
| 74 | } |
Vladimir Marko | 944da60 | 2016-02-19 12:27:55 +0000 | [diff] [blame] | 75 | return true; |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 76 | } |
| 77 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 78 | template <typename T> |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 79 | T* GetImageAddress(T* object) const SHARED_REQUIRES(Locks::mutator_lock_) { |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 80 | if (object == nullptr || IsInBootImage(object)) { |
| 81 | return object; |
| 82 | } else { |
Vladimir Marko | 944da60 | 2016-02-19 12:27:55 +0000 | [diff] [blame] | 83 | size_t oat_index = GetOatIndex(object); |
| 84 | const ImageInfo& image_info = GetImageInfo(oat_index); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 85 | return reinterpret_cast<T*>(image_info.image_begin_ + GetImageOffset(object)); |
| 86 | } |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 87 | } |
| 88 | |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 89 | ArtMethod* GetImageMethodAddress(ArtMethod* method) SHARED_REQUIRES(Locks::mutator_lock_); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 90 | |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 91 | template <typename PtrType> |
| 92 | PtrType GetDexCacheArrayElementImageAddress(const DexFile* dex_file, uint32_t offset) |
| 93 | const SHARED_REQUIRES(Locks::mutator_lock_) { |
Vladimir Marko | 944da60 | 2016-02-19 12:27:55 +0000 | [diff] [blame] | 94 | auto oat_it = dex_file_oat_index_map_.find(dex_file); |
| 95 | DCHECK(oat_it != dex_file_oat_index_map_.end()); |
| 96 | const ImageInfo& image_info = GetImageInfo(oat_it->second); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 97 | auto it = image_info.dex_cache_array_starts_.find(dex_file); |
| 98 | DCHECK(it != image_info.dex_cache_array_starts_.end()); |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 99 | return reinterpret_cast<PtrType>( |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 100 | image_info.image_begin_ + image_info.bin_slot_offsets_[kBinDexCacheArray] + |
| 101 | it->second + offset); |
Vladimir Marko | 20f8559 | 2015-03-19 10:07:02 +0000 | [diff] [blame] | 102 | } |
| 103 | |
Vladimir Marko | 944da60 | 2016-02-19 12:27:55 +0000 | [diff] [blame] | 104 | size_t GetOatFileOffset(size_t oat_index) const { |
| 105 | return GetImageInfo(oat_index).oat_offset_; |
| 106 | } |
| 107 | |
| 108 | const uint8_t* GetOatFileBegin(size_t oat_index) const { |
| 109 | return GetImageInfo(oat_index).oat_file_begin_; |
| 110 | } |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 111 | |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 112 | // If image_fd is not kInvalidFd, then we use that for the image file. Otherwise we open |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 113 | // the names in image_filenames. |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 114 | // If oat_fd is not kInvalidFd, then we use that for the oat file. Otherwise we open |
| 115 | // the names in oat_filenames. |
Mathieu Chartier | a90c772 | 2015-10-29 15:41:36 -0700 | [diff] [blame] | 116 | bool Write(int image_fd, |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 117 | const std::vector<const char*>& image_filenames, |
Vladimir Marko | 944da60 | 2016-02-19 12:27:55 +0000 | [diff] [blame] | 118 | const std::vector<const char*>& oat_filenames) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 119 | REQUIRES(!Locks::mutator_lock_); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 120 | |
Vladimir Marko | 944da60 | 2016-02-19 12:27:55 +0000 | [diff] [blame] | 121 | uintptr_t GetOatDataBegin(size_t oat_index) { |
| 122 | return reinterpret_cast<uintptr_t>(GetImageInfo(oat_index).oat_data_begin_); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 123 | } |
| 124 | |
Vladimir Marko | 944da60 | 2016-02-19 12:27:55 +0000 | [diff] [blame] | 125 | // Get the index of the oat file containing the dex file. |
| 126 | // |
| 127 | // This "oat_index" is used to retrieve information about the the memory layout |
| 128 | // of the oat file and its associated image file, needed for link-time patching |
| 129 | // of references to the image or across oat files. |
| 130 | size_t GetOatIndexForDexFile(const DexFile* dex_file) const; |
| 131 | |
| 132 | // Get the index of the oat file containing the dex file served by the dex cache. |
| 133 | size_t GetOatIndexForDexCache(mirror::DexCache* dex_cache) const |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 134 | SHARED_REQUIRES(Locks::mutator_lock_); |
| 135 | |
Vladimir Marko | 944da60 | 2016-02-19 12:27:55 +0000 | [diff] [blame] | 136 | // Update the oat layout for the given oat file. |
| 137 | // This will make the oat_offset for the next oat file valid. |
| 138 | void UpdateOatFileLayout(size_t oat_index, |
| 139 | size_t oat_loaded_size, |
| 140 | size_t oat_data_offset, |
| 141 | size_t oat_data_size); |
| 142 | // Update information about the oat header, i.e. checksum and trampoline offsets. |
| 143 | void UpdateOatFileHeader(size_t oat_index, const OatHeader& oat_header); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 144 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 145 | private: |
| 146 | bool AllocMemory(); |
| 147 | |
Mathieu Chartier | 31e8925 | 2013-08-28 11:29:12 -0700 | [diff] [blame] | 148 | // Mark the objects defined in this space in the given live bitmap. |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 149 | void RecordImageAllocations() SHARED_REQUIRES(Locks::mutator_lock_); |
Mathieu Chartier | 31e8925 | 2013-08-28 11:29:12 -0700 | [diff] [blame] | 150 | |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 151 | // Classify different kinds of bins that objects end up getting packed into during image writing. |
| 152 | enum Bin { |
| 153 | // Likely-clean: |
| 154 | kBinString, // [String] Almost always immutable (except for obj header). |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 155 | // Unknown mix of clean/dirty: |
| 156 | kBinRegular, |
| 157 | // Likely-dirty: |
| 158 | // All classes get their own bins since their fields often dirty |
| 159 | kBinClassInitializedFinalStatics, // Class initializers have been run, no non-final statics |
| 160 | kBinClassInitialized, // Class initializers have been run |
| 161 | kBinClassVerified, // Class verified, but initializers haven't been run |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 162 | // Add more bins here if we add more segregation code. |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 163 | // Non mirror fields must be below. |
| 164 | // ArtFields should be always clean. |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 165 | kBinArtField, |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 166 | // If the class is initialized, then the ArtMethods are probably clean. |
| 167 | kBinArtMethodClean, |
| 168 | // ArtMethods may be dirty if the class has native methods or a declaring class that isn't |
| 169 | // initialized. |
| 170 | kBinArtMethodDirty, |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 171 | // Dex cache arrays have a special slot for PC-relative addressing. Since they are |
| 172 | // huge, and as such their dirtiness is not important for the clean/dirty separation, |
| 173 | // we arbitrarily keep them at the end of the native data. |
| 174 | kBinDexCacheArray, // Arrays belonging to dex cache. |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 175 | kBinSize, |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 176 | // Number of bins which are for mirror objects. |
| 177 | kBinMirrorCount = kBinArtField, |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 178 | }; |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 179 | friend std::ostream& operator<<(std::ostream& stream, const Bin& bin); |
| 180 | |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 181 | enum NativeObjectRelocationType { |
| 182 | kNativeObjectRelocationTypeArtField, |
| 183 | kNativeObjectRelocationTypeArtFieldArray, |
| 184 | kNativeObjectRelocationTypeArtMethodClean, |
| 185 | kNativeObjectRelocationTypeArtMethodArrayClean, |
| 186 | kNativeObjectRelocationTypeArtMethodDirty, |
| 187 | kNativeObjectRelocationTypeArtMethodArrayDirty, |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 188 | kNativeObjectRelocationTypeDexCacheArray, |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 189 | }; |
| 190 | friend std::ostream& operator<<(std::ostream& stream, const NativeObjectRelocationType& type); |
| 191 | |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 192 | enum OatAddress { |
| 193 | kOatAddressInterpreterToInterpreterBridge, |
| 194 | kOatAddressInterpreterToCompiledCodeBridge, |
| 195 | kOatAddressJNIDlsymLookup, |
| 196 | kOatAddressQuickGenericJNITrampoline, |
| 197 | kOatAddressQuickIMTConflictTrampoline, |
| 198 | kOatAddressQuickResolutionTrampoline, |
| 199 | kOatAddressQuickToInterpreterBridge, |
| 200 | // Number of elements in the enum. |
| 201 | kOatAddressCount, |
| 202 | }; |
| 203 | friend std::ostream& operator<<(std::ostream& stream, const OatAddress& oat_address); |
| 204 | |
Vladimir Marko | 80afd02 | 2015-05-19 18:08:00 +0100 | [diff] [blame] | 205 | static constexpr size_t kBinBits = MinimumBitsToStore<uint32_t>(kBinMirrorCount - 1); |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 206 | // uint32 = typeof(lockword_) |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 207 | // Subtract read barrier bits since we want these to remain 0, or else it may result in DCHECK |
| 208 | // failures due to invalid read barrier bits during object field reads. |
| 209 | static const size_t kBinShift = BitSizeOf<uint32_t>() - kBinBits - |
| 210 | LockWord::kReadBarrierStateSize; |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 211 | // 111000.....0 |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 212 | static const size_t kBinMask = ((static_cast<size_t>(1) << kBinBits) - 1) << kBinShift; |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 213 | |
| 214 | // We use the lock word to store the bin # and bin index of the object in the image. |
| 215 | // |
| 216 | // The struct size must be exactly sizeof(LockWord), currently 32-bits, since this will end up |
| 217 | // stored in the lock word bit-for-bit when object forwarding addresses are being calculated. |
| 218 | struct BinSlot { |
| 219 | explicit BinSlot(uint32_t lockword); |
| 220 | BinSlot(Bin bin, uint32_t index); |
| 221 | |
| 222 | // The bin an object belongs to, i.e. regular, class/verified, class/initialized, etc. |
| 223 | Bin GetBin() const; |
| 224 | // The offset in bytes from the beginning of the bin. Aligned to object size. |
| 225 | uint32_t GetIndex() const; |
| 226 | // Pack into a single uint32_t, for storing into a lock word. |
Mathieu Chartier | d39645e | 2015-06-09 17:50:29 -0700 | [diff] [blame] | 227 | uint32_t Uint32Value() const { return lockword_; } |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 228 | // Comparison operator for map support |
| 229 | bool operator<(const BinSlot& other) const { return lockword_ < other.lockword_; } |
| 230 | |
| 231 | private: |
| 232 | // Must be the same size as LockWord, any larger and we would truncate the data. |
| 233 | const uint32_t lockword_; |
| 234 | }; |
| 235 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 236 | struct ImageInfo { |
Mathieu Chartier | ea0831f | 2015-12-29 13:17:37 -0800 | [diff] [blame] | 237 | ImageInfo(); |
| 238 | ImageInfo(ImageInfo&&) = default; |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 239 | |
Mathieu Chartier | a06ba05 | 2016-01-06 13:51:52 -0800 | [diff] [blame] | 240 | // Create the image sections into the out sections variable, returns the size of the image |
| 241 | // excluding the bitmap. |
| 242 | size_t CreateImageSections(size_t target_ptr_size, ImageSection* out_sections) const; |
| 243 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 244 | std::unique_ptr<MemMap> image_; // Memory mapped for generating the image. |
| 245 | |
| 246 | // Target begin of this image. Notes: It is not valid to write here, this is the address |
| 247 | // of the target image, not necessarily where image_ is mapped. The address is only valid |
| 248 | // after layouting (otherwise null). |
Mathieu Chartier | ea0831f | 2015-12-29 13:17:37 -0800 | [diff] [blame] | 249 | uint8_t* image_begin_ = nullptr; |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 250 | |
Mathieu Chartier | ea0831f | 2015-12-29 13:17:37 -0800 | [diff] [blame] | 251 | // Offset to the free space in image_, initially size of image header. |
| 252 | size_t image_end_ = RoundUp(sizeof(ImageHeader), kObjectAlignment); |
| 253 | uint32_t image_roots_address_ = 0; // The image roots address in the image. |
| 254 | size_t image_offset_ = 0; // Offset of this image from the start of the first image. |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 255 | |
| 256 | // Image size is the *address space* covered by this image. As the live bitmap is aligned |
| 257 | // to the page size, the live bitmap will cover more address space than necessary. But live |
| 258 | // bitmaps may not overlap, so an image has a "shadow," which is accounted for in the size. |
| 259 | // The next image may only start at image_begin_ + image_size_ (which is guaranteed to be |
| 260 | // page-aligned). |
Mathieu Chartier | ea0831f | 2015-12-29 13:17:37 -0800 | [diff] [blame] | 261 | size_t image_size_ = 0; |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 262 | |
| 263 | // Oat data. |
Mathieu Chartier | ea0831f | 2015-12-29 13:17:37 -0800 | [diff] [blame] | 264 | // Offset of the oat file for this image from start of oat files. This is |
| 265 | // valid when the previous oat file has been written. |
| 266 | size_t oat_offset_ = 0; |
Vladimir Marko | 944da60 | 2016-02-19 12:27:55 +0000 | [diff] [blame] | 267 | // Layout of the loaded ELF file containing the oat file, valid after UpdateOatFileLayout(). |
| 268 | const uint8_t* oat_file_begin_ = nullptr; |
| 269 | size_t oat_loaded_size_ = 0; |
| 270 | const uint8_t* oat_data_begin_ = nullptr; |
Mathieu Chartier | ea0831f | 2015-12-29 13:17:37 -0800 | [diff] [blame] | 271 | size_t oat_size_ = 0; // Size of the corresponding oat data. |
Vladimir Marko | 944da60 | 2016-02-19 12:27:55 +0000 | [diff] [blame] | 272 | // The oat header checksum, valid after UpdateOatFileHeader(). |
| 273 | uint32_t oat_checksum_ = 0u; |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 274 | |
| 275 | // Image bitmap which lets us know where the objects inside of the image reside. |
| 276 | std::unique_ptr<gc::accounting::ContinuousSpaceBitmap> image_bitmap_; |
| 277 | |
| 278 | // The start offsets of the dex cache arrays. |
| 279 | SafeMap<const DexFile*, size_t> dex_cache_array_starts_; |
| 280 | |
| 281 | // Offset from oat_data_begin_ to the stubs. |
Mathieu Chartier | ea0831f | 2015-12-29 13:17:37 -0800 | [diff] [blame] | 282 | uint32_t oat_address_offsets_[kOatAddressCount] = {}; |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 283 | |
| 284 | // Bin slot tracking for dirty object packing. |
Mathieu Chartier | ea0831f | 2015-12-29 13:17:37 -0800 | [diff] [blame] | 285 | size_t bin_slot_sizes_[kBinSize] = {}; // Number of bytes in a bin. |
| 286 | size_t bin_slot_offsets_[kBinSize] = {}; // Number of bytes in previous bins. |
| 287 | size_t bin_slot_count_[kBinSize] = {}; // Number of objects in a bin. |
| 288 | |
| 289 | // Cached size of the intern table for when we allocate memory. |
| 290 | size_t intern_table_bytes_ = 0; |
| 291 | |
Mathieu Chartier | 1f47b67 | 2016-01-07 16:29:01 -0800 | [diff] [blame] | 292 | // Number of image class table bytes. |
| 293 | size_t class_table_bytes_ = 0; |
| 294 | |
| 295 | // Intern table associated with this image for serialization. |
Mathieu Chartier | ea0831f | 2015-12-29 13:17:37 -0800 | [diff] [blame] | 296 | std::unique_ptr<InternTable> intern_table_; |
Mathieu Chartier | 1f47b67 | 2016-01-07 16:29:01 -0800 | [diff] [blame] | 297 | |
| 298 | // Class table associated with this image for serialization. |
| 299 | std::unique_ptr<ClassTable> class_table_; |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 300 | }; |
| 301 | |
Mathieu Chartier | 31e8925 | 2013-08-28 11:29:12 -0700 | [diff] [blame] | 302 | // We use the lock word to store the offset of the object in the image. |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 303 | void AssignImageOffset(mirror::Object* object, BinSlot bin_slot) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 304 | SHARED_REQUIRES(Locks::mutator_lock_); |
Mathieu Chartier | d39645e | 2015-06-09 17:50:29 -0700 | [diff] [blame] | 305 | void SetImageOffset(mirror::Object* object, size_t offset) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 306 | SHARED_REQUIRES(Locks::mutator_lock_); |
Ian Rogers | b0fa5dc | 2014-04-28 16:47:08 -0700 | [diff] [blame] | 307 | bool IsImageOffsetAssigned(mirror::Object* object) const |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 308 | SHARED_REQUIRES(Locks::mutator_lock_); |
| 309 | size_t GetImageOffset(mirror::Object* object) const SHARED_REQUIRES(Locks::mutator_lock_); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 310 | void UpdateImageOffset(mirror::Object* obj, uintptr_t offset) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 311 | SHARED_REQUIRES(Locks::mutator_lock_); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 312 | |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 313 | void PrepareDexCacheArraySlots() SHARED_REQUIRES(Locks::mutator_lock_); |
| 314 | void AssignImageBinSlot(mirror::Object* object) SHARED_REQUIRES(Locks::mutator_lock_); |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 315 | void SetImageBinSlot(mirror::Object* object, BinSlot bin_slot) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 316 | SHARED_REQUIRES(Locks::mutator_lock_); |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 317 | bool IsImageBinSlotAssigned(mirror::Object* object) const |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 318 | SHARED_REQUIRES(Locks::mutator_lock_); |
| 319 | BinSlot GetImageBinSlot(mirror::Object* object) const SHARED_REQUIRES(Locks::mutator_lock_); |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 320 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 321 | void AddDexCacheArrayRelocation(void* array, size_t offset, mirror::DexCache* dex_cache) |
| 322 | SHARED_REQUIRES(Locks::mutator_lock_); |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 323 | void AddMethodPointerArray(mirror::PointerArray* arr) SHARED_REQUIRES(Locks::mutator_lock_); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 324 | |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 325 | static void* GetImageAddressCallback(void* writer, mirror::Object* obj) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 326 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Alex Light | a59dd80 | 2014-07-02 16:28:08 -0700 | [diff] [blame] | 327 | return reinterpret_cast<ImageWriter*>(writer)->GetImageAddress(obj); |
| 328 | } |
| 329 | |
Ian Rogers | b0fa5dc | 2014-04-28 16:47:08 -0700 | [diff] [blame] | 330 | mirror::Object* GetLocalAddress(mirror::Object* object) const |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 331 | SHARED_REQUIRES(Locks::mutator_lock_) { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 332 | size_t offset = GetImageOffset(object); |
Vladimir Marko | 944da60 | 2016-02-19 12:27:55 +0000 | [diff] [blame] | 333 | size_t oat_index = GetOatIndex(object); |
| 334 | const ImageInfo& image_info = GetImageInfo(oat_index); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 335 | uint8_t* dst = image_info.image_->Begin() + offset; |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 336 | return reinterpret_cast<mirror::Object*>(dst); |
| 337 | } |
| 338 | |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 339 | // Returns the address in the boot image if we are compiling the app image. |
| 340 | const uint8_t* GetOatAddress(OatAddress type) const; |
| 341 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 342 | const uint8_t* GetOatAddressForOffset(uint32_t offset, const ImageInfo& image_info) const { |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 343 | // With Quick, code is within the OatFile, as there are all in one |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 344 | // .o ELF object. But interpret it as signed. |
| 345 | DCHECK_LE(static_cast<int32_t>(offset), static_cast<int32_t>(image_info.oat_size_)); |
| 346 | DCHECK(image_info.oat_data_begin_ != nullptr); |
| 347 | return offset == 0u ? nullptr : image_info.oat_data_begin_ + static_cast<int32_t>(offset); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 348 | } |
| 349 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 350 | // Returns true if the class was in the original requested image classes list. |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 351 | bool KeepClass(mirror::Class* klass) SHARED_REQUIRES(Locks::mutator_lock_); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 352 | |
| 353 | // Debug aid that list of requested image classes. |
| 354 | void DumpImageClasses(); |
| 355 | |
| 356 | // Preinitializes some otherwise lazy fields (such as Class name) to avoid runtime image dirtying. |
| 357 | void ComputeLazyFieldsForImageClasses() |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 358 | SHARED_REQUIRES(Locks::mutator_lock_); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 359 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 360 | // Remove unwanted classes from various roots. |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 361 | void PruneNonImageClasses() SHARED_REQUIRES(Locks::mutator_lock_); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 362 | |
| 363 | // Verify unwanted classes removed. |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 364 | void CheckNonImageClassesRemoved() SHARED_REQUIRES(Locks::mutator_lock_); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 365 | static void CheckNonImageClassesRemovedCallback(mirror::Object* obj, void* arg) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 366 | SHARED_REQUIRES(Locks::mutator_lock_); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 367 | |
| 368 | // Lays out where the image objects will be at runtime. |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 369 | void CalculateNewObjectOffsets() |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 370 | SHARED_REQUIRES(Locks::mutator_lock_); |
Vladimir Marko | 944da60 | 2016-02-19 12:27:55 +0000 | [diff] [blame] | 371 | void CreateHeader(size_t oat_index) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 372 | SHARED_REQUIRES(Locks::mutator_lock_); |
Vladimir Marko | 944da60 | 2016-02-19 12:27:55 +0000 | [diff] [blame] | 373 | mirror::ObjectArray<mirror::Object>* CreateImageRoots(size_t oat_index) const |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 374 | SHARED_REQUIRES(Locks::mutator_lock_); |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 375 | void CalculateObjectBinSlots(mirror::Object* obj) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 376 | SHARED_REQUIRES(Locks::mutator_lock_); |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 377 | void UnbinObjectsIntoOffset(mirror::Object* obj) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 378 | SHARED_REQUIRES(Locks::mutator_lock_); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 379 | |
| 380 | void WalkInstanceFields(mirror::Object* obj, mirror::Class* klass) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 381 | SHARED_REQUIRES(Locks::mutator_lock_); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 382 | void WalkFieldsInOrder(mirror::Object* obj) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 383 | SHARED_REQUIRES(Locks::mutator_lock_); |
Mathieu Chartier | 590fee9 | 2013-09-13 13:46:47 -0700 | [diff] [blame] | 384 | static void WalkFieldsCallback(mirror::Object* obj, void* arg) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 385 | SHARED_REQUIRES(Locks::mutator_lock_); |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 386 | static void UnbinObjectsIntoOffsetCallback(mirror::Object* obj, void* arg) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 387 | SHARED_REQUIRES(Locks::mutator_lock_); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 388 | |
| 389 | // Creates the contiguous image in memory and adjusts pointers. |
Vladimir Marko | 944da60 | 2016-02-19 12:27:55 +0000 | [diff] [blame] | 390 | void CopyAndFixupNativeData(size_t oat_index) SHARED_REQUIRES(Locks::mutator_lock_); |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 391 | void CopyAndFixupObjects() SHARED_REQUIRES(Locks::mutator_lock_); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 392 | static void CopyAndFixupObjectsCallback(mirror::Object* obj, void* arg) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 393 | SHARED_REQUIRES(Locks::mutator_lock_); |
| 394 | void CopyAndFixupObject(mirror::Object* obj) SHARED_REQUIRES(Locks::mutator_lock_); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 395 | void CopyAndFixupMethod(ArtMethod* orig, ArtMethod* copy, const ImageInfo& image_info) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 396 | SHARED_REQUIRES(Locks::mutator_lock_); |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 397 | void FixupClass(mirror::Class* orig, mirror::Class* copy) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 398 | SHARED_REQUIRES(Locks::mutator_lock_); |
Ian Rogers | ef7d42f | 2014-01-06 12:55:46 -0800 | [diff] [blame] | 399 | void FixupObject(mirror::Object* orig, mirror::Object* copy) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 400 | SHARED_REQUIRES(Locks::mutator_lock_); |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 401 | void FixupDexCache(mirror::DexCache* orig_dex_cache, mirror::DexCache* copy_dex_cache) |
| 402 | SHARED_REQUIRES(Locks::mutator_lock_); |
Mathieu Chartier | a808bac | 2015-11-05 16:33:15 -0800 | [diff] [blame] | 403 | void FixupPointerArray(mirror::Object* dst, |
| 404 | mirror::PointerArray* arr, |
| 405 | mirror::Class* klass, |
| 406 | Bin array_type) |
| 407 | SHARED_REQUIRES(Locks::mutator_lock_); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 408 | |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 409 | // Get quick code for non-resolution/imt_conflict/abstract method. |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 410 | const uint8_t* GetQuickCode(ArtMethod* method, |
| 411 | const ImageInfo& image_info, |
| 412 | bool* quick_is_interpreted) |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 413 | SHARED_REQUIRES(Locks::mutator_lock_); |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 414 | |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 415 | // Calculate the sum total of the bin slot sizes in [0, up_to). Defaults to all bins. |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 416 | size_t GetBinSizeSum(ImageInfo& image_info, Bin up_to = kBinSize) const; |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 417 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 418 | // Return true if a method is likely to be dirtied at runtime. |
Mathieu Chartier | 9044347 | 2015-07-16 20:32:27 -0700 | [diff] [blame] | 419 | bool WillMethodBeDirty(ArtMethod* m) const SHARED_REQUIRES(Locks::mutator_lock_); |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 420 | |
| 421 | // Assign the offset for an ArtMethod. |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 422 | void AssignMethodOffset(ArtMethod* method, |
| 423 | NativeObjectRelocationType type, |
Vladimir Marko | 944da60 | 2016-02-19 12:27:55 +0000 | [diff] [blame] | 424 | size_t oat_index) |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 425 | SHARED_REQUIRES(Locks::mutator_lock_); |
| 426 | |
Mathieu Chartier | a808bac | 2015-11-05 16:33:15 -0800 | [diff] [blame] | 427 | // Return true if klass is loaded by the boot class loader but not in the boot image. |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 428 | bool IsBootClassLoaderNonImageClass(mirror::Class* klass) SHARED_REQUIRES(Locks::mutator_lock_); |
| 429 | |
Mathieu Chartier | 901e070 | 2016-02-19 13:42:48 -0800 | [diff] [blame] | 430 | // Return true if klass depends on a boot class loader non image class. We want to prune these |
| 431 | // classes since we do not want any boot class loader classes in the image. This means that |
Mathieu Chartier | a808bac | 2015-11-05 16:33:15 -0800 | [diff] [blame] | 432 | // we also cannot have any classes which refer to these boot class loader non image classes. |
Mathieu Chartier | 901e070 | 2016-02-19 13:42:48 -0800 | [diff] [blame] | 433 | // PruneAppImageClass also prunes if klass depends on a non-image class according to the compiler |
| 434 | // driver. |
| 435 | bool PruneAppImageClass(mirror::Class* klass) |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 436 | SHARED_REQUIRES(Locks::mutator_lock_); |
| 437 | |
Mathieu Chartier | 945c1c1 | 2015-11-24 15:37:12 -0800 | [diff] [blame] | 438 | // early_exit is true if we had a cyclic dependency anywhere down the chain. |
Mathieu Chartier | 901e070 | 2016-02-19 13:42:48 -0800 | [diff] [blame] | 439 | bool PruneAppImageClassInternal(mirror::Class* klass, |
| 440 | bool* early_exit, |
| 441 | std::unordered_set<mirror::Class*>* visited) |
Mathieu Chartier | 945c1c1 | 2015-11-24 15:37:12 -0800 | [diff] [blame] | 442 | SHARED_REQUIRES(Locks::mutator_lock_); |
| 443 | |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 444 | static Bin BinTypeForNativeRelocationType(NativeObjectRelocationType type); |
| 445 | |
Mathieu Chartier | bcd9dd7 | 2016-03-07 10:25:04 -0800 | [diff] [blame] | 446 | uintptr_t NativeOffsetInImage(void* obj) SHARED_REQUIRES(Locks::mutator_lock_); |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 447 | |
Mathieu Chartier | 4b00d34 | 2015-11-13 10:42:08 -0800 | [diff] [blame] | 448 | // Location of where the object will be when the image is loaded at runtime. |
Vladimir Marko | 05792b9 | 2015-08-03 11:56:49 +0100 | [diff] [blame] | 449 | template <typename T> |
Mathieu Chartier | e8bf134 | 2016-02-17 18:02:40 -0800 | [diff] [blame] | 450 | T* NativeLocationInImage(T* obj) SHARED_REQUIRES(Locks::mutator_lock_); |
Andreas Gampe | 245ee00 | 2014-12-04 21:25:04 -0800 | [diff] [blame] | 451 | |
Mathieu Chartier | 4b00d34 | 2015-11-13 10:42:08 -0800 | [diff] [blame] | 452 | // Location of where the temporary copy of the object currently is. |
| 453 | template <typename T> |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 454 | T* NativeCopyLocation(T* obj, mirror::DexCache* dex_cache) SHARED_REQUIRES(Locks::mutator_lock_); |
Mathieu Chartier | 4b00d34 | 2015-11-13 10:42:08 -0800 | [diff] [blame] | 455 | |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 456 | // Return true of obj is inside of the boot image space. This may only return true if we are |
| 457 | // compiling an app image. |
| 458 | bool IsInBootImage(const void* obj) const; |
| 459 | |
| 460 | // Return true if ptr is within the boot oat file. |
| 461 | bool IsInBootOatFile(const void* ptr) const; |
| 462 | |
Vladimir Marko | 944da60 | 2016-02-19 12:27:55 +0000 | [diff] [blame] | 463 | // Get the index of the oat file associated with the object. |
| 464 | size_t GetOatIndex(mirror::Object* object) const SHARED_REQUIRES(Locks::mutator_lock_); |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 465 | |
Vladimir Marko | 944da60 | 2016-02-19 12:27:55 +0000 | [diff] [blame] | 466 | // The oat index for shared data in multi-image and all data in single-image compilation. |
| 467 | size_t GetDefaultOatIndex() const { |
| 468 | return 0u; |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 469 | } |
| 470 | |
Vladimir Marko | 944da60 | 2016-02-19 12:27:55 +0000 | [diff] [blame] | 471 | ImageInfo& GetImageInfo(size_t oat_index) { |
| 472 | return image_infos_[oat_index]; |
| 473 | } |
| 474 | |
| 475 | const ImageInfo& GetImageInfo(size_t oat_index) const { |
| 476 | return image_infos_[oat_index]; |
| 477 | } |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 478 | |
Mathieu Chartier | fbc3108 | 2016-01-24 11:59:56 -0800 | [diff] [blame] | 479 | // Find an already strong interned string in the other images or in the boot image. Used to |
| 480 | // remove duplicates in the multi image and app image case. |
| 481 | mirror::String* FindInternedString(mirror::String* string) SHARED_REQUIRES(Locks::mutator_lock_); |
| 482 | |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 483 | const CompilerDriver& compiler_driver_; |
| 484 | |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 485 | // Beginning target image address for the first image. |
| 486 | uint8_t* global_image_begin_; |
Vladimir Marko | f4da675 | 2014-08-01 19:04:18 +0100 | [diff] [blame] | 487 | |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 488 | // Offset from image_begin_ to where the first object is in image_. |
| 489 | size_t image_objects_offset_begin_; |
| 490 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 491 | // Pointer arrays that need to be updated. Since these are only some int and long arrays, we need |
| 492 | // to keep track. These include vtable arrays, iftable arrays, and dex caches. |
| 493 | std::unordered_map<mirror::PointerArray*, Bin> pointer_arrays_; |
| 494 | |
Mathieu Chartier | d39645e | 2015-06-09 17:50:29 -0700 | [diff] [blame] | 495 | // Saved hash codes. We use these to restore lockwords which were temporarily used to have |
| 496 | // forwarding addresses as well as copying over hash codes. |
| 497 | std::unordered_map<mirror::Object*, uint32_t> saved_hashcode_map_; |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 498 | |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 499 | // Boolean flags. |
Igor Murashkin | 4677476 | 2014-10-22 11:37:02 -0700 | [diff] [blame] | 500 | const bool compile_pic_; |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 501 | const bool compile_app_image_; |
| 502 | |
Mathieu Chartier | 2d72101 | 2014-11-10 11:08:06 -0800 | [diff] [blame] | 503 | // Size of pointers on the target architecture. |
| 504 | size_t target_ptr_size_; |
| 505 | |
Vladimir Marko | 944da60 | 2016-02-19 12:27:55 +0000 | [diff] [blame] | 506 | // Image data indexed by the oat file index. |
| 507 | dchecked_vector<ImageInfo> image_infos_; |
Igor Murashkin | f5b4c50 | 2014-11-14 15:01:59 -0800 | [diff] [blame] | 508 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 509 | // ArtField, ArtMethod relocating map. These are allocated as array of structs but we want to |
| 510 | // have one entry per art field for convenience. ArtFields are placed right after the end of the |
| 511 | // image objects (aka sum of bin_slot_sizes_). ArtMethods are placed right after the ArtFields. |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 512 | struct NativeObjectRelocation { |
Vladimir Marko | 944da60 | 2016-02-19 12:27:55 +0000 | [diff] [blame] | 513 | size_t oat_index; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 514 | uintptr_t offset; |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 515 | NativeObjectRelocationType type; |
| 516 | |
| 517 | bool IsArtMethodRelocation() const { |
| 518 | return type == kNativeObjectRelocationTypeArtMethodClean || |
| 519 | type == kNativeObjectRelocationTypeArtMethodDirty; |
| 520 | } |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 521 | }; |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 522 | std::unordered_map<void*, NativeObjectRelocation> native_object_relocations_; |
Mathieu Chartier | c785344 | 2015-03-27 14:35:38 -0700 | [diff] [blame] | 523 | |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 524 | // Runtime ArtMethods which aren't reachable from any Class but need to be copied into the image. |
| 525 | ArtMethod* image_methods_[ImageHeader::kImageMethodsCount]; |
Mathieu Chartier | c0fe56a | 2015-08-11 13:01:23 -0700 | [diff] [blame] | 526 | // Fake length prefixed array for image methods. This array does not contain the actual |
| 527 | // ArtMethods. We only use it for the header and relocation addresses. |
Mathieu Chartier | 54d220e | 2015-07-30 16:20:06 -0700 | [diff] [blame] | 528 | LengthPrefixedArray<ArtMethod> image_method_array_; |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 529 | |
| 530 | // Counters for measurements, used for logging only. |
| 531 | uint64_t dirty_methods_; |
| 532 | uint64_t clean_methods_; |
Andreas Gampe | 245ee00 | 2014-12-04 21:25:04 -0800 | [diff] [blame] | 533 | |
Mathieu Chartier | a808bac | 2015-11-05 16:33:15 -0800 | [diff] [blame] | 534 | // Prune class memoization table to speed up ContainsBootClassLoaderNonImageClass. |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 535 | std::unordered_map<mirror::Class*, bool> prune_class_memo_; |
| 536 | |
Mathieu Chartier | 67ad20e | 2015-12-09 15:41:09 -0800 | [diff] [blame] | 537 | // Class loaders with a class table to write out. There should only be one class loader because |
| 538 | // dex2oat loads the dex files to be compiled into a single class loader. For the boot image, |
| 539 | // null is a valid entry. |
Mathieu Chartier | 208a5cb | 2015-12-02 15:44:07 -0800 | [diff] [blame] | 540 | std::unordered_set<mirror::ClassLoader*> class_loaders_; |
| 541 | |
Mathieu Chartier | ceb07b3 | 2015-12-10 09:33:21 -0800 | [diff] [blame] | 542 | // Which mode the image is stored as, see image.h |
| 543 | const ImageHeader::StorageMode image_storage_mode_; |
| 544 | |
Vladimir Marko | 944da60 | 2016-02-19 12:27:55 +0000 | [diff] [blame] | 545 | // The file names of oat files. |
| 546 | const std::vector<const char*>& oat_filenames_; |
| 547 | |
| 548 | // Map of dex files to the indexes of oat files that they were compiled into. |
| 549 | const std::unordered_map<const DexFile*, size_t>& dex_file_oat_index_map_; |
Jeff Hao | dcdc85b | 2015-12-04 14:06:18 -0800 | [diff] [blame] | 550 | |
Mathieu Chartier | da5b28a | 2015-11-05 08:03:47 -0800 | [diff] [blame] | 551 | friend class ContainsBootClassLoaderNonImageClassVisitor; |
Mingyao Yang | 98d1cc8 | 2014-05-15 17:02:16 -0700 | [diff] [blame] | 552 | friend class FixupClassVisitor; |
Mathieu Chartier | d39645e | 2015-06-09 17:50:29 -0700 | [diff] [blame] | 553 | friend class FixupRootVisitor; |
| 554 | friend class FixupVisitor; |
Mathieu Chartier | 4b00d34 | 2015-11-13 10:42:08 -0800 | [diff] [blame] | 555 | friend class NativeLocationVisitor; |
Mathieu Chartier | e0671ce | 2015-07-28 17:23:28 -0700 | [diff] [blame] | 556 | friend class NonImageClassesVisitor; |
Mathieu Chartier | b7ea3ac | 2014-03-24 16:54:46 -0700 | [diff] [blame] | 557 | DISALLOW_COPY_AND_ASSIGN(ImageWriter); |
Brian Carlstrom | 7940e44 | 2013-07-12 13:46:57 -0700 | [diff] [blame] | 558 | }; |
| 559 | |
| 560 | } // namespace art |
| 561 | |
Brian Carlstrom | fc0e321 | 2013-07-17 14:40:12 -0700 | [diff] [blame] | 562 | #endif // ART_COMPILER_IMAGE_WRITER_H_ |