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 17 #ifndef ART_DEX2OAT_LINKER_IMAGE_WRITER_H_ 18 #define ART_DEX2OAT_LINKER_IMAGE_WRITER_H_ 19 20 #include <stdint.h> 21 #include "base/memory_tool.h" 22 23 #include <cstddef> 24 #include <memory> 25 #include <ostream> 26 #include <set> 27 #include <stack> 28 #include <string> 29 30 #include "art_method.h" 31 #include "base/bit_utils.h" 32 #include "base/dchecked_vector.h" 33 #include "base/enums.h" 34 #include "base/unix_file/fd_file.h" 35 #include "base/hash_map.h" 36 #include "base/hash_set.h" 37 #include "base/length_prefixed_array.h" 38 #include "base/macros.h" 39 #include "base/mem_map.h" 40 #include "base/os.h" 41 #include "base/utils.h" 42 #include "class_table.h" 43 #include "gc/accounting/space_bitmap.h" 44 #include "image.h" 45 #include "intern_table.h" 46 #include "lock_word.h" 47 #include "mirror/dex_cache.h" 48 #include "oat.h" 49 #include "oat_file.h" 50 #include "obj_ptr.h" 51 52 namespace art { 53 namespace gc { 54 namespace accounting { 55 template <size_t kAlignment> class SpaceBitmap; 56 using ContinuousSpaceBitmap = SpaceBitmap<kObjectAlignment>; 57 } // namespace accounting 58 namespace space { 59 class ImageSpace; 60 } // namespace space 61 } // namespace gc 62 63 namespace mirror { 64 class ClassLoader; 65 } // namespace mirror 66 67 class ClassLoaderVisitor; 68 class CompilerOptions; 69 template<class T> class Handle; 70 class ImTable; 71 class ImtConflictTable; 72 class JavaVMExt; 73 class TimingLogger; 74 75 namespace linker { 76 77 // Write a Space built during compilation for use during execution. 78 class ImageWriter final { 79 public: 80 ImageWriter(const CompilerOptions& compiler_options, 81 uintptr_t image_begin, 82 ImageHeader::StorageMode image_storage_mode, 83 const std::vector<std::string>& oat_filenames, 84 const HashMap<const DexFile*, size_t>& dex_file_oat_index_map, 85 jobject class_loader, 86 const HashSet<std::string>* dirty_image_objects); 87 ~ImageWriter(); 88 89 /* 90 * Modifies the heap and collects information about objects and code so that 91 * they can be written to the boot or app image later. 92 * 93 * First, unneeded classes are removed from the managed heap. Next, we 94 * remove cached values and calculate necessary metadata for later in the 95 * process. Optionally some debugging information is collected and used to 96 * verify the state of the heap at this point. Next, metadata from earlier 97 * is used to calculate offsets of references to strings to speed up string 98 * interning when the image is loaded. Lastly, we allocate enough memory to 99 * fit all image data minus the bitmap and relocation sections. 100 * 101 * This function should only be called when all objects to be included in the 102 * image have been initialized and all native methods have been generated. In 103 * addition, no other thread should be modifying the heap. 104 */ 105 bool PrepareImageAddressSpace(TimingLogger* timings); 106 IsImageAddressSpaceReady()107 bool IsImageAddressSpaceReady() const { 108 DCHECK(!image_infos_.empty()); 109 for (const ImageInfo& image_info : image_infos_) { 110 if (image_info.image_roots_address_ == 0u) { 111 return false; 112 } 113 } 114 return true; 115 } 116 117 ObjPtr<mirror::ClassLoader> GetAppClassLoader() const REQUIRES_SHARED(Locks::mutator_lock_); 118 119 template <typename T> GetImageAddress(T * object)120 T* GetImageAddress(T* object) const REQUIRES_SHARED(Locks::mutator_lock_) { 121 if (object == nullptr || IsInBootImage(object)) { 122 return object; 123 } else { 124 size_t oat_index = GetOatIndex(object); 125 const ImageInfo& image_info = GetImageInfo(oat_index); 126 return reinterpret_cast<T*>(image_info.image_begin_ + GetImageOffset(object, oat_index)); 127 } 128 } 129 130 ArtMethod* GetImageMethodAddress(ArtMethod* method) REQUIRES_SHARED(Locks::mutator_lock_); 131 const void* GetIntrinsicReferenceAddress(uint32_t intrinsic_data) 132 REQUIRES_SHARED(Locks::mutator_lock_); 133 GetOatFileOffset(size_t oat_index)134 size_t GetOatFileOffset(size_t oat_index) const { 135 return GetImageInfo(oat_index).oat_offset_; 136 } 137 GetOatFileBegin(size_t oat_index)138 const uint8_t* GetOatFileBegin(size_t oat_index) const { 139 return GetImageInfo(oat_index).oat_file_begin_; 140 } 141 142 // If image_fd is not File::kInvalidFd, then we use that for the image file. Otherwise we open 143 // the names in image_filenames. 144 // If oat_fd is not File::kInvalidFd, then we use that for the oat file. Otherwise we open 145 // the names in oat_filenames. 146 bool Write(int image_fd, 147 const std::vector<std::string>& image_filenames, 148 size_t component_count) 149 REQUIRES(!Locks::mutator_lock_); 150 GetOatDataBegin(size_t oat_index)151 uintptr_t GetOatDataBegin(size_t oat_index) { 152 return reinterpret_cast<uintptr_t>(GetImageInfo(oat_index).oat_data_begin_); 153 } 154 155 // Get the index of the oat file containing the dex file. 156 // 157 // This "oat_index" is used to retrieve information about the the memory layout 158 // of the oat file and its associated image file, needed for link-time patching 159 // of references to the image or across oat files. 160 size_t GetOatIndexForDexFile(const DexFile* dex_file) const; 161 162 // Get the index of the oat file containing the definition of the class. 163 size_t GetOatIndexForClass(ObjPtr<mirror::Class> klass) const 164 REQUIRES_SHARED(Locks::mutator_lock_); 165 166 // Update the oat layout for the given oat file. 167 // This will make the oat_offset for the next oat file valid. 168 void UpdateOatFileLayout(size_t oat_index, 169 size_t oat_loaded_size, 170 size_t oat_data_offset, 171 size_t oat_data_size); 172 // Update information about the oat header, i.e. checksum and trampoline offsets. 173 void UpdateOatFileHeader(size_t oat_index, const OatHeader& oat_header); 174 175 private: 176 bool AllocMemory(); 177 178 // Mark the objects defined in this space in the given live bitmap. 179 void RecordImageAllocations() REQUIRES_SHARED(Locks::mutator_lock_); 180 181 // Classify different kinds of bins that objects end up getting packed into during image writing. 182 // Ordered from dirtiest to cleanest (until ArtMethods). 183 enum class Bin { 184 kKnownDirty, // Known dirty objects from --dirty-image-objects list 185 kMiscDirty, // Dex caches, object locks, etc... 186 kClassVerified, // Class verified, but initializers haven't been run 187 // Unknown mix of clean/dirty: 188 kRegular, 189 kClassInitialized, // Class initializers have been run 190 // All classes get their own bins since their fields often dirty 191 kClassInitializedFinalStatics, // Class initializers have been run, no non-final statics 192 // Likely-clean: 193 kString, // [String] Almost always immutable (except for obj header). 194 // Definitely clean: 195 kInternalClean, // ART internal: image roots, boot image live objects, vtables 196 // and interface tables, Object[]/int[]/long[]. 197 // Add more bins here if we add more segregation code. 198 // Non mirror fields must be below. 199 // ArtFields should be always clean. 200 kArtField, 201 // If the class is initialized, then the ArtMethods are probably clean. 202 kArtMethodClean, 203 // ArtMethods may be dirty if the class has native methods or a declaring class that isn't 204 // initialized. 205 kArtMethodDirty, 206 // IMT (clean) 207 kImTable, 208 // Conflict tables (clean). 209 kIMTConflictTable, 210 // Runtime methods (always clean, do not have a length prefix array). 211 kRuntimeMethod, 212 // Metadata bin for data that is temporary during image lifetime. 213 kMetadata, 214 kLast = kMetadata, 215 // Number of bins which are for mirror objects. 216 kMirrorCount = kArtField, 217 }; 218 friend std::ostream& operator<<(std::ostream& stream, Bin bin); 219 220 enum class NativeObjectRelocationType { 221 kArtFieldArray, 222 kArtMethodClean, 223 kArtMethodArrayClean, 224 kArtMethodDirty, 225 kArtMethodArrayDirty, 226 kGcRootPointer, 227 kRuntimeMethod, 228 kIMTable, 229 kIMTConflictTable, 230 }; 231 friend std::ostream& operator<<(std::ostream& stream, NativeObjectRelocationType type); 232 233 static constexpr size_t kBinBits = 234 MinimumBitsToStore<uint32_t>(static_cast<size_t>(Bin::kMirrorCount) - 1); 235 // uint32 = typeof(lockword_) 236 // Subtract read barrier bits since we want these to remain 0, or else it may result in DCHECK 237 // failures due to invalid read barrier bits during object field reads. 238 static const size_t kBinShift = BitSizeOf<uint32_t>() - kBinBits - LockWord::kGCStateSize; 239 // 111000.....0 240 static const size_t kBinMask = ((static_cast<size_t>(1) << kBinBits) - 1) << kBinShift; 241 242 // Number of bins, including non-mirror bins. 243 static constexpr size_t kNumberOfBins = static_cast<size_t>(Bin::kLast) + 1u; 244 245 // Number of stub types. 246 static constexpr size_t kNumberOfStubTypes = static_cast<size_t>(StubType::kLast) + 1u; 247 248 // We use the lock word to store the bin # and bin index of the object in the image. 249 // 250 // The struct size must be exactly sizeof(LockWord), currently 32-bits, since this will end up 251 // stored in the lock word bit-for-bit when object forwarding addresses are being calculated. 252 struct BinSlot { 253 explicit BinSlot(uint32_t lockword); 254 BinSlot(Bin bin, uint32_t index); 255 256 // The bin an object belongs to, i.e. regular, class/verified, class/initialized, etc. 257 Bin GetBin() const; 258 // The offset in bytes from the beginning of the bin. Aligned to object size. 259 uint32_t GetOffset() const; 260 // Pack into a single uint32_t, for storing into a lock word. Uint32ValueBinSlot261 uint32_t Uint32Value() const { return lockword_; } 262 // Comparison operator for map support 263 bool operator<(const BinSlot& other) const { return lockword_ < other.lockword_; } 264 265 private: 266 // Must be the same size as LockWord, any larger and we would truncate the data. 267 uint32_t lockword_; 268 }; 269 270 struct ImageInfo { 271 ImageInfo(); 272 ImageInfo(ImageInfo&&) = default; 273 274 /* 275 * Creates ImageSection objects that describe most of the sections of a 276 * boot or AppImage. The following sections are not included: 277 * - ImageHeader::kSectionImageBitmap 278 * 279 * In addition, the ImageHeader is not covered here. 280 * 281 * This function will return the total size of the covered sections as well 282 * as a vector containing the individual ImageSection objects. 283 */ 284 std::pair<size_t, dchecked_vector<ImageSection>> CreateImageSections() const; 285 GetStubOffsetImageInfo286 size_t GetStubOffset(StubType stub_type) const { 287 DCHECK_LT(static_cast<size_t>(stub_type), kNumberOfStubTypes); 288 return stub_offsets_[static_cast<size_t>(stub_type)]; 289 } 290 SetStubOffsetImageInfo291 void SetStubOffset(StubType stub_type, size_t offset) { 292 DCHECK_LT(static_cast<size_t>(stub_type), kNumberOfStubTypes); 293 stub_offsets_[static_cast<size_t>(stub_type)] = offset; 294 } 295 GetBinSlotOffsetImageInfo296 size_t GetBinSlotOffset(Bin bin) const { 297 DCHECK_LT(static_cast<size_t>(bin), kNumberOfBins); 298 return bin_slot_offsets_[static_cast<size_t>(bin)]; 299 } 300 IncrementBinSlotSizeImageInfo301 void IncrementBinSlotSize(Bin bin, size_t size_to_add) { 302 DCHECK_LT(static_cast<size_t>(bin), kNumberOfBins); 303 bin_slot_sizes_[static_cast<size_t>(bin)] += size_to_add; 304 } 305 GetBinSlotSizeImageInfo306 size_t GetBinSlotSize(Bin bin) const { 307 DCHECK_LT(static_cast<size_t>(bin), kNumberOfBins); 308 return bin_slot_sizes_[static_cast<size_t>(bin)]; 309 } 310 IncrementBinSlotCountImageInfo311 void IncrementBinSlotCount(Bin bin, size_t count_to_add) { 312 DCHECK_LT(static_cast<size_t>(bin), kNumberOfBins); 313 bin_slot_count_[static_cast<size_t>(bin)] += count_to_add; 314 } 315 316 // Calculate the sum total of the bin slot sizes in [0, up_to). Defaults to all bins. 317 size_t GetBinSizeSum(Bin up_to) const; 318 319 MemMap image_; // Memory mapped for generating the image. 320 321 // Target begin of this image. Notes: It is not valid to write here, this is the address 322 // of the target image, not necessarily where image_ is mapped. The address is only valid 323 // after layouting (otherwise null). 324 uint8_t* image_begin_ = nullptr; 325 326 // Offset to the free space in image_, initially size of image header. 327 size_t image_end_ = RoundUp(sizeof(ImageHeader), kObjectAlignment); 328 uint32_t image_roots_address_ = 0; // The image roots address in the image. 329 size_t image_offset_ = 0; // Offset of this image from the start of the first image. 330 331 // Image size is the *address space* covered by this image. As the live bitmap is aligned 332 // to the page size, the live bitmap will cover more address space than necessary. But live 333 // bitmaps may not overlap, so an image has a "shadow," which is accounted for in the size. 334 // The next image may only start at image_begin_ + image_size_ (which is guaranteed to be 335 // page-aligned). 336 size_t image_size_ = 0; 337 338 // Oat data. 339 // Offset of the oat file for this image from start of oat files. This is 340 // valid when the previous oat file has been written. 341 size_t oat_offset_ = 0; 342 // Layout of the loaded ELF file containing the oat file, valid after UpdateOatFileLayout(). 343 const uint8_t* oat_file_begin_ = nullptr; 344 size_t oat_loaded_size_ = 0; 345 const uint8_t* oat_data_begin_ = nullptr; 346 size_t oat_size_ = 0; // Size of the corresponding oat data. 347 // The oat header checksum, valid after UpdateOatFileHeader(). 348 uint32_t oat_checksum_ = 0u; 349 350 // Image bitmap which lets us know where the objects inside of the image reside. 351 gc::accounting::ContinuousSpaceBitmap image_bitmap_; 352 353 // Offset from oat_data_begin_ to the stubs. 354 uint32_t stub_offsets_[kNumberOfStubTypes] = {}; 355 356 // Bin slot tracking for dirty object packing. 357 size_t bin_slot_sizes_[kNumberOfBins] = {}; // Number of bytes in a bin. 358 size_t bin_slot_offsets_[kNumberOfBins] = {}; // Number of bytes in previous bins. 359 size_t bin_slot_count_[kNumberOfBins] = {}; // Number of objects in a bin. 360 361 // Cached size of the intern table for when we allocate memory. 362 size_t intern_table_bytes_ = 0; 363 364 // Number of image class table bytes. 365 size_t class_table_bytes_ = 0; 366 367 // Number of object fixup bytes. 368 size_t object_fixup_bytes_ = 0; 369 370 // Number of pointer fixup bytes. 371 size_t pointer_fixup_bytes_ = 0; 372 373 // Number of offsets to string references that will be written to the 374 // StringFieldOffsets section. 375 size_t num_string_references_ = 0; 376 377 // Offsets into the image that indicate where string references are recorded. 378 dchecked_vector<AppImageReferenceOffsetInfo> string_reference_offsets_; 379 380 // Intern table associated with this image for serialization. 381 size_t intern_table_size_ = 0; 382 std::unique_ptr<GcRoot<mirror::String>[]> intern_table_buffer_; 383 std::optional<InternTable::UnorderedSet> intern_table_; 384 385 // Class table associated with this image for serialization. 386 size_t class_table_size_ = 0; 387 std::unique_ptr<ClassTable::ClassSet::value_type[]> class_table_buffer_; 388 std::optional<ClassTable::ClassSet> class_table_; 389 390 // Padding offsets to ensure region alignment (if required). 391 // Objects need to be added from the recorded offset until the end of the region. 392 dchecked_vector<size_t> padding_offsets_; 393 }; 394 395 // We use the lock word to store the offset of the object in the image. 396 size_t GetImageOffset(mirror::Object* object, size_t oat_index) const 397 REQUIRES_SHARED(Locks::mutator_lock_); 398 399 Bin AssignImageBinSlot(mirror::Object* object, size_t oat_index) 400 REQUIRES_SHARED(Locks::mutator_lock_); 401 void AssignImageBinSlot(mirror::Object* object, size_t oat_index, Bin bin) 402 REQUIRES_SHARED(Locks::mutator_lock_); 403 void RecordNativeRelocations(ObjPtr<mirror::Class> klass, size_t oat_index) 404 REQUIRES_SHARED(Locks::mutator_lock_); 405 void SetImageBinSlot(mirror::Object* object, BinSlot bin_slot) 406 REQUIRES_SHARED(Locks::mutator_lock_); 407 bool IsImageBinSlotAssigned(mirror::Object* object) const 408 REQUIRES_SHARED(Locks::mutator_lock_); 409 BinSlot GetImageBinSlot(mirror::Object* object, size_t oat_index) const 410 REQUIRES_SHARED(Locks::mutator_lock_); 411 void UpdateImageBinSlotOffset(mirror::Object* object, size_t oat_index, size_t new_offset) 412 REQUIRES_SHARED(Locks::mutator_lock_); 413 414 // Returns the address in the boot image if we are compiling the app image. 415 const uint8_t* GetOatAddress(StubType type) const; 416 GetOatAddressForOffset(uint32_t offset,const ImageInfo & image_info)417 const uint8_t* GetOatAddressForOffset(uint32_t offset, const ImageInfo& image_info) const { 418 // With Quick, code is within the OatFile, as there are all in one 419 // .o ELF object. But interpret it as signed. 420 DCHECK_LE(static_cast<int32_t>(offset), static_cast<int32_t>(image_info.oat_size_)); 421 DCHECK(image_info.oat_data_begin_ != nullptr); 422 return offset == 0u ? nullptr : image_info.oat_data_begin_ + static_cast<int32_t>(offset); 423 } 424 425 // Returns true if the class was in the original requested image classes list. 426 bool KeepClass(ObjPtr<mirror::Class> klass) REQUIRES_SHARED(Locks::mutator_lock_); 427 428 // Debug aid that list of requested image classes. 429 void DumpImageClasses(); 430 431 // Visit all class loaders. 432 void VisitClassLoaders(ClassLoaderVisitor* visitor) REQUIRES_SHARED(Locks::mutator_lock_); 433 434 // Remove unwanted classes from various roots. 435 void PruneNonImageClasses() REQUIRES_SHARED(Locks::mutator_lock_); 436 437 // Find dex caches for pruning or preloading. 438 dchecked_vector<ObjPtr<mirror::DexCache>> FindDexCaches(Thread* self) 439 REQUIRES_SHARED(Locks::mutator_lock_) 440 REQUIRES(!Locks::classlinker_classes_lock_); 441 442 // Verify unwanted classes removed. 443 void CheckNonImageClassesRemoved() REQUIRES_SHARED(Locks::mutator_lock_); 444 445 // Lays out where the image objects will be at runtime. 446 void CalculateNewObjectOffsets() 447 REQUIRES_SHARED(Locks::mutator_lock_); 448 void CreateHeader(size_t oat_index, size_t component_count) 449 REQUIRES_SHARED(Locks::mutator_lock_); 450 bool CreateImageRoots() 451 REQUIRES_SHARED(Locks::mutator_lock_); 452 void CalculateObjectBinSlots(mirror::Object* obj) 453 REQUIRES_SHARED(Locks::mutator_lock_); 454 // Undo the changes of CalculateNewObjectOffsets. 455 void ResetObjectOffsets() REQUIRES_SHARED(Locks::mutator_lock_); 456 // Reset and calculate new offsets with dirty objects optimization. 457 // Does nothing if dirty object offsets don't match with current offsets. 458 void TryRecalculateOffsetsWithDirtyObjects() REQUIRES_SHARED(Locks::mutator_lock_); 459 460 // Dirty object data from dirty-image-objects. 461 struct DirtyEntry { 462 uint32_t descriptor_hash = 0; 463 bool is_class = false; 464 uint32_t sort_key = 0; 465 }; 466 // Parse dirty-image-objects into (offset->entry) map. Returns nullopt on parse error. 467 static std::optional<HashMap<uint32_t, DirtyEntry>> ParseDirtyObjectOffsets( 468 const HashSet<std::string>& dirty_image_objects) REQUIRES_SHARED(Locks::mutator_lock_); 469 // Get all objects that match dirty_entries by offset. Returns nullopt if there is a mismatch. 470 // Map values are sort_keys from DirtyEntry. 471 std::optional<HashMap<mirror::Object*, uint32_t>> MatchDirtyObjectOffsets( 472 const HashMap<uint32_t, DirtyEntry>& dirty_entries) REQUIRES_SHARED(Locks::mutator_lock_); 473 474 // Creates the contiguous image in memory and adjusts pointers. 475 void CopyAndFixupNativeData(size_t oat_index) REQUIRES_SHARED(Locks::mutator_lock_); 476 void CopyAndFixupObjects() REQUIRES_SHARED(Locks::mutator_lock_); 477 void CopyAndFixupObject(mirror::Object* obj) REQUIRES_SHARED(Locks::mutator_lock_); 478 template <bool kCheckIfDone> 479 mirror::Object* CopyObject(mirror::Object* obj) REQUIRES_SHARED(Locks::mutator_lock_); 480 void CopyAndFixupMethodPointerArray(mirror::PointerArray* arr) 481 REQUIRES_SHARED(Locks::mutator_lock_); 482 void CopyAndFixupMethod(ArtMethod* orig, ArtMethod* copy, size_t oat_index) 483 REQUIRES_SHARED(Locks::mutator_lock_); 484 void CopyAndFixupImTable(ImTable* orig, ImTable* copy) 485 REQUIRES_SHARED(Locks::mutator_lock_); 486 void CopyAndFixupImtConflictTable(ImtConflictTable* orig, ImtConflictTable* copy) 487 REQUIRES_SHARED(Locks::mutator_lock_); 488 489 /* 490 * Copies metadata from the heap into a buffer that will be compressed and 491 * written to the image. 492 * 493 * This function copies the string offset metadata from a local vector to an 494 * offset inside the image_ field of an ImageInfo struct. The offset into the 495 * memory pointed to by the image_ field is obtained from the ImageSection 496 * object for the String Offsets section. 497 * 498 * All data for the image, besides the object bitmap and the relocation data, 499 * will also be copied into the memory region pointed to by image_. 500 */ 501 void CopyMetadata(); 502 503 void FixupClass(mirror::Class* orig, mirror::Class* copy) 504 REQUIRES_SHARED(Locks::mutator_lock_); 505 void FixupObject(mirror::Object* orig, mirror::Object* copy) 506 REQUIRES_SHARED(Locks::mutator_lock_); 507 508 // Get quick code for non-resolution/imt_conflict/abstract method. 509 const uint8_t* GetQuickCode(ArtMethod* method, const ImageInfo& image_info) 510 REQUIRES_SHARED(Locks::mutator_lock_); 511 512 // Return true if a method is likely to be dirtied at runtime. 513 bool WillMethodBeDirty(ArtMethod* m) const REQUIRES_SHARED(Locks::mutator_lock_); 514 515 // Assign the offset for an ArtMethod. 516 void AssignMethodOffset(ArtMethod* method, 517 NativeObjectRelocationType type, 518 size_t oat_index) 519 REQUIRES_SHARED(Locks::mutator_lock_); 520 521 // Return true if imt was newly inserted. 522 bool TryAssignImTableOffset(ImTable* imt, size_t oat_index) REQUIRES_SHARED(Locks::mutator_lock_); 523 524 // Assign the offset for an IMT conflict table. Does nothing if the table already has a native 525 // relocation. 526 void TryAssignConflictTableOffset(ImtConflictTable* table, size_t oat_index) 527 REQUIRES_SHARED(Locks::mutator_lock_); 528 529 // Return true if `klass` depends on a class defined by the boot class path 530 // we're compiling against but not present in the boot image spaces. We want 531 // to prune these classes since we cannot guarantee that they will not be 532 // already loaded at run time when loading this image. This means that we 533 // also cannot have any classes which refer to these non image classes. 534 bool PruneImageClass(ObjPtr<mirror::Class> klass) REQUIRES_SHARED(Locks::mutator_lock_); 535 536 // early_exit is true if we had a cyclic dependency anywhere down the chain. 537 bool PruneImageClassInternal(ObjPtr<mirror::Class> klass, 538 bool* early_exit, 539 HashSet<mirror::Object*>* visited) 540 REQUIRES_SHARED(Locks::mutator_lock_); 541 542 void PromoteWeakInternsToStrong(Thread* self) REQUIRES_SHARED(Locks::mutator_lock_); 543 IsMultiImage()544 bool IsMultiImage() const { 545 return image_infos_.size() > 1; 546 } 547 548 static Bin BinTypeForNativeRelocationType(NativeObjectRelocationType type); 549 550 struct NativeObjectRelocation { 551 size_t oat_index; 552 uintptr_t offset; 553 NativeObjectRelocationType type; 554 }; 555 556 NativeObjectRelocation GetNativeRelocation(void* obj) REQUIRES_SHARED(Locks::mutator_lock_); 557 558 // Location of where the object will be when the image is loaded at runtime. 559 template <typename T> 560 T* NativeLocationInImage(T* obj) REQUIRES_SHARED(Locks::mutator_lock_); 561 ArtField* NativeLocationInImage(ArtField* src_field) REQUIRES_SHARED(Locks::mutator_lock_); 562 563 // Return true if `dex_cache` belongs to the image we're writing. 564 // For a boot image, this is true for all dex caches. 565 // For an app image, boot class path dex caches are excluded. 566 bool IsImageDexCache(ObjPtr<mirror::DexCache> dex_cache) const 567 REQUIRES_SHARED(Locks::mutator_lock_); 568 569 // Return true if `obj` is inside of a boot image space that we're compiling against. 570 // (Always false when compiling the boot image.) IsInBootImage(const void * obj)571 ALWAYS_INLINE bool IsInBootImage(const void* obj) const { 572 return reinterpret_cast<uintptr_t>(obj) - boot_image_begin_ < boot_image_size_; 573 } 574 575 template <typename MirrorType> 576 static ObjPtr<MirrorType> DecodeGlobalWithoutRB(JavaVMExt* vm, jobject obj) 577 REQUIRES_SHARED(Locks::mutator_lock_); 578 579 template <typename MirrorType> 580 static ObjPtr<MirrorType> DecodeWeakGlobalWithoutRB( 581 JavaVMExt* vm, Thread* self, jobject obj) REQUIRES_SHARED(Locks::mutator_lock_); 582 583 // Get the index of the oat file associated with the object. 584 size_t GetOatIndex(mirror::Object* object) const REQUIRES_SHARED(Locks::mutator_lock_); 585 586 // The oat index for shared data in multi-image and all data in single-image compilation. GetDefaultOatIndex()587 static constexpr size_t GetDefaultOatIndex() { 588 return 0u; 589 } 590 GetImageInfo(size_t oat_index)591 ImageInfo& GetImageInfo(size_t oat_index) { 592 return image_infos_[oat_index]; 593 } 594 GetImageInfo(size_t oat_index)595 const ImageInfo& GetImageInfo(size_t oat_index) const { 596 return image_infos_[oat_index]; 597 } 598 599 // Return true if there already exists a native allocation for an object. 600 bool NativeRelocationAssigned(void* ptr) const; 601 602 // Copy a reference, translating source pointer to the target pointer. 603 template <typename DestType> 604 void CopyAndFixupReference(DestType* dest, ObjPtr<mirror::Object> src) 605 REQUIRES_SHARED(Locks::mutator_lock_); 606 607 // Translate a native pointer to the destination value and store in the target location. 608 template <typename ValueType> 609 void CopyAndFixupPointer(void** target, ValueType src_value, PointerSize pointer_size) 610 REQUIRES_SHARED(Locks::mutator_lock_); 611 template <typename ValueType> 612 void CopyAndFixupPointer(void** target, ValueType src_value) 613 REQUIRES_SHARED(Locks::mutator_lock_); 614 template <typename ValueType> 615 void CopyAndFixupPointer( 616 void* object, MemberOffset offset, ValueType src_value, PointerSize pointer_size) 617 REQUIRES_SHARED(Locks::mutator_lock_); 618 template <typename ValueType> 619 void CopyAndFixupPointer(void* object, MemberOffset offset, ValueType src_value) 620 REQUIRES_SHARED(Locks::mutator_lock_); 621 622 ALWAYS_INLINE 623 static bool IsStronglyInternedString(ObjPtr<mirror::String> str) 624 REQUIRES_SHARED(Locks::mutator_lock_); 625 626 /* 627 * Tests an object to see if it will be contained in an AppImage. 628 * 629 * An object reference is considered to be a AppImage String reference iff: 630 * - It isn't null 631 * - The referred-object isn't in the boot image 632 * - The referred-object is a Java String 633 */ 634 ALWAYS_INLINE 635 bool IsInternedAppImageStringReference(ObjPtr<mirror::Object> referred_obj) const 636 REQUIRES_SHARED(Locks::mutator_lock_); 637 638 const CompilerOptions& compiler_options_; 639 640 // Cached boot image begin and size. This includes heap, native objects and oat files. 641 const uint32_t boot_image_begin_; 642 const uint32_t boot_image_size_; 643 644 // Beginning target image address for the first image. 645 uint8_t* global_image_begin_; 646 647 // Offset from image_begin_ to where the first object is in image_. 648 size_t image_objects_offset_begin_; 649 650 // Saved hash codes. We use these to restore lockwords which were temporarily used to have 651 // forwarding addresses as well as copying over hash codes. 652 HashMap<mirror::Object*, uint32_t> saved_hashcode_map_; 653 654 // Oat index map for objects. 655 HashMap<mirror::Object*, uint32_t> oat_index_map_; 656 657 // Size of pointers on the target architecture. 658 PointerSize target_ptr_size_; 659 660 // Image data indexed by the oat file index. 661 dchecked_vector<ImageInfo> image_infos_; 662 663 // ArtField, ArtMethod relocating map. These are allocated as array of structs but we want to 664 // have one entry per art field for convenience. ArtFields are placed right after the end of the 665 // image objects (aka sum of bin_slot_sizes_). ArtMethods are placed right after the ArtFields. 666 HashMap<void*, NativeObjectRelocation> native_object_relocations_; 667 668 // Runtime ArtMethods which aren't reachable from any Class but need to be copied into the image. 669 ArtMethod* image_methods_[ImageHeader::kImageMethodsCount]; 670 671 // Counters for measurements, used for logging only. 672 uint64_t dirty_methods_; 673 uint64_t clean_methods_; 674 675 // Prune class memoization table to speed up ContainsBootClassLoaderNonImageClass. 676 HashMap<mirror::Class*, bool> prune_class_memo_; 677 678 // The application class loader. Null for boot image. 679 jobject app_class_loader_; 680 681 // Boot image live objects, invalid for app image. 682 mirror::ObjectArray<mirror::Object>* boot_image_live_objects_; 683 684 // Image roots corresponding to individual image files. 685 dchecked_vector<jobject> image_roots_; 686 687 // Which mode the image is stored as, see image.h 688 const ImageHeader::StorageMode image_storage_mode_; 689 690 // The file names of oat files. 691 const std::vector<std::string>& oat_filenames_; 692 693 // Map of dex files to the indexes of oat files that they were compiled into. 694 const HashMap<const DexFile*, size_t>& dex_file_oat_index_map_; 695 696 // Set of classes/objects known to be dirty in the image. Can be nullptr if there are none. 697 // For old dirty-image-objects format this set contains descriptors of dirty classes. 698 // For new format -- a set of dirty object offsets and descriptor hashes. 699 const HashSet<std::string>* dirty_image_objects_; 700 701 // Dirty object instances and their sort keys parsed from dirty_image_object_ 702 HashMap<mirror::Object*, uint32_t> dirty_objects_; 703 704 // Objects are guaranteed to not cross the region size boundary. 705 size_t region_size_ = 0u; 706 707 // Region alignment bytes wasted. 708 size_t region_alignment_wasted_ = 0u; 709 710 class FixupClassVisitor; 711 class FixupRootVisitor; 712 class FixupVisitor; 713 class LayoutHelper; 714 class NativeLocationVisitor; 715 class PruneClassesVisitor; 716 class PruneClassLoaderClassesVisitor; 717 class PruneObjectReferenceVisitor; 718 719 // A visitor used by the VerifyNativeGCRootInvariants() function. 720 class NativeGCRootInvariantVisitor; 721 722 DISALLOW_COPY_AND_ASSIGN(ImageWriter); 723 }; 724 725 std::ostream& operator<<(std::ostream& stream, ImageWriter::Bin bin); 726 std::ostream& operator<<(std::ostream& stream, ImageWriter::NativeObjectRelocationType type); 727 728 } // namespace linker 729 } // namespace art 730 731 #endif // ART_DEX2OAT_LINKER_IMAGE_WRITER_H_ 732