Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 | /* -*- mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*- * * Copyright (c) 2014 Apple Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this * file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_LICENSE_HEADER_END@ */ // Swift Optimizations // // The shared cache Swift optimizations are designed to speed up protocol conformance // lookups. // // Protocol conformances are stored as an array on each dylib. To find out if a type conforms // to a protocol, Swift must walk these arrays in all loaded dylibs. This is then cached in // the Swift runtime. // // This optimization builds a number of hash tables to speed up these lookups, and allows the // Swift runtime to avoid caching the results from these tables. This saves both time and memory. // // We start by finding all protocol conformances by walking the "__TEXT, __swift5_proto" section. // There are several kinds of conformance: // 1) (type*, protocol*) // 2) (objc_class*, protocol*) // 3) (class name*, protocol*) // 4) (foreign metadata name*, protocol*) // // 1) Type Pointers // // These are made up of a pointer to a type, and a pointer to a protocol. // We turn these in to shared cache offsets for the type, protocol, conformance, // and the index of the dylib containing the conformance. See SwiftTypeProtocolConformanceLocation. // At runtime, we look in the table at typeConformanceHashTableCacheOffset, to see if a given type and // protocol are in the table, and if the conformance is from a loaded image. // Note it is possible for this table to contain duplicates. In this case, we return the first found // conformance, in the order we found them in the shared cache. // // 2) ObjC Class Pointers // // These are similar to type pointers, but are classed as metadata in the Swift runtime. // Again, similarly to the above, we convert the metadata, protocol, and conformance pointers to // shared cache offsets. See SwiftForeignTypeProtocolConformanceLocationKey. // At runtime, we may be passed a non-null metadata pointer. In that case, we search the table // reached via metadataConformanceHashTableCacheOffset, for matching a ObjC Class and Protocol, // and check that the conformance dylib is loaded. Again duplicates are supported. // // 3) ObjC Class Names // // In this case, we have the "const char*" name of the ObjC class to lookup. The Swift runtime does // this by asking the ObjC runtime for the Class with this name. In the shared cache, we use the ObjC // class hash table to find the Class pointers for all classes with the given name. As we won't know // which one is loaded, we record them all, so duplicates are likely to happen here. // The Class pointers we find from the ObjC hash table are converted to shared cache offsets, and stored // in the same hash table as 2) above. All other details in 2) apply. // // 4) Foreign Metadata Names // // These names are found via the Type Pointers in 1). We visiting a TypeDescriptor, we may // find it has an attached Foreign Name. This is used when the Swift runtime wants to unique a Type by // name, not by pointer. // In this case, names and their protocols are converted to cache offsets and stored in the hash table // found via foreignTypeConformanceHashTableCacheOffset. // At runtime, the Swift runtime will pass a name and protocol to look up in this table. // // Foreign metadata names may additionally have "ImportInfo", which describes an alternative name to use. // This alternative name is the key we store in the map. It can be found by the getForeignFullIdentity() method. // The Swift runtime also knows if metadata has one of these "Full Identities", and will always pass in the // Full Identity when calling the SPI. At runtime, dyld does not know that a given entry in the map is // a regular Foreign metadata name, or the Full Identity. // // One final quirk of Full Identity names, is that they can contain null characters. Eg, NNSFoo\0St. // Given this, all of the code to handle foreign metadata names, including lookups in the hash table, and // the SPI below, take name and name length. We never assume that the name is a null-terminated C string. // // SPIs // // The above types are stored in 3 tables: Type, Metadata, Foreign Metadata. // These are accessed by 2 different SPIs. // // _dyld_find_protocol_conformance() // // This searches for types and metadata. It takes Type* and Metadata* arguments // and looks up the corresponding table, depending on which of Type* or Metadata* // is non-null. // // _dyld_find_foreign_type_protocol_conformance() // // This looks up the given name in the Foreign Metadata table. Matches are done // by string comparison. As noted above in 4), the name may contain null characters // so all hashing, etc, is done with std::string_view which allows null characters. #include "DyldSharedCache.h" #include "Diagnostics.h" #include "MachOLoaded.h" #include "MachOAnalyzer.h" #include "OptimizerObjC.h" #include "OptimizerSwift.h" #include "PerfectHash.h" #if BUILDING_CACHE_BUILDER #include "SharedCacheBuilder.h" #include "objc-shared-cache.h" #endif typedef dyld3::MachOAnalyzer::SwiftProtocolConformance SwiftProtocolConformance; // Tracks which types conform to which protocols namespace std { template<> struct hash<SwiftTypeProtocolConformanceLocationKey> { size_t operator()(const SwiftTypeProtocolConformanceLocationKey& v) const { return std::hash<uint64_t>{}(v.typeDescriptorCacheOffset) ^ std::hash<uint64_t>{}(v.protocolCacheOffset); } }; template<> struct equal_to<SwiftTypeProtocolConformanceLocationKey> { bool operator()(const SwiftTypeProtocolConformanceLocationKey& a, const SwiftTypeProtocolConformanceLocationKey& b) const { return a.typeDescriptorCacheOffset == b.typeDescriptorCacheOffset && a.protocolCacheOffset == b.protocolCacheOffset; } }; } // Tracks which Metadata conform to which protocols namespace std { template<> struct hash<SwiftMetadataProtocolConformanceLocationKey> { size_t operator()(const SwiftMetadataProtocolConformanceLocationKey& v) const { return std::hash<uint64_t>{}(v.metadataCacheOffset) ^ std::hash<uint64_t>{}(v.protocolCacheOffset); } }; template<> struct equal_to<SwiftMetadataProtocolConformanceLocationKey> { bool operator()(const SwiftMetadataProtocolConformanceLocationKey& a, const SwiftMetadataProtocolConformanceLocationKey& b) const { return a.metadataCacheOffset == b.metadataCacheOffset && a.protocolCacheOffset == b.protocolCacheOffset; } }; } // Tracks which foreign types conform to which protocols namespace std { template<> struct hash<SwiftForeignTypeProtocolConformanceLocationKey> { size_t operator()(const SwiftForeignTypeProtocolConformanceLocationKey& v) const { return std::hash<uint64_t>{}(v.rawForeignDescriptor) ^ std::hash<uint64_t>{}(v.protocolCacheOffset); } }; template<> struct equal_to<SwiftForeignTypeProtocolConformanceLocationKey> { bool operator()(const SwiftForeignTypeProtocolConformanceLocationKey& a, const SwiftForeignTypeProtocolConformanceLocationKey& b) const { return a.rawForeignDescriptor == b.rawForeignDescriptor && a.protocolCacheOffset == b.protocolCacheOffset; } }; } // Type Hash Table methods template<> uint32_t SwiftHashTable::hash(const SwiftTypeProtocolConformanceLocationKey& key, const uint8_t*) const { uint64_t val1 = objc::lookup8(key.key1Buffer(nullptr), key.key1Size(), salt); uint64_t val2 = objc::lookup8((uint8_t*)&key.protocolCacheOffset, sizeof(key.protocolCacheOffset), salt); uint64_t val = val1 ^ val2; uint32_t index = (uint32_t)((shift == 64) ? 0 : (val>>shift)) ^ scramble[tab[val&mask]]; return index; } template<> bool SwiftHashTable::equal(const SwiftTypeProtocolConformanceLocationKey& key, const SwiftTypeProtocolConformanceLocationKey& value, const uint8_t*) const { return memcmp(&key, &value, sizeof(SwiftTypeProtocolConformanceLocationKey)) == 0; } template<> SwiftHashTable::CheckByteType SwiftHashTable::checkbyte(const SwiftTypeProtocolConformanceLocationKey& key, const uint8_t*) const { const uint8_t* keyBytes = (const uint8_t*)&key; return ((keyBytes[0] & 0x7) << 5) | ((uint8_t)sizeof(SwiftTypeProtocolConformanceLocationKey) & 0x1f); } // Metadata Hash Table methods template<> uint32_t SwiftHashTable::hash(const SwiftMetadataProtocolConformanceLocationKey& key, const uint8_t*) const { uint64_t val1 = objc::lookup8(key.key1Buffer(nullptr), key.key1Size(), salt); uint64_t val2 = objc::lookup8((uint8_t*)&key.protocolCacheOffset, sizeof(key.protocolCacheOffset), salt); uint64_t val = val1 ^ val2; uint32_t index = (uint32_t)((shift == 64) ? 0 : (val>>shift)) ^ scramble[tab[val&mask]]; return index; } template<> bool SwiftHashTable::equal(const SwiftMetadataProtocolConformanceLocationKey& key, const SwiftMetadataProtocolConformanceLocationKey& value, const uint8_t*) const { return memcmp(&key, &value, sizeof(SwiftMetadataProtocolConformanceLocationKey)) == 0; } template<> SwiftHashTable::CheckByteType SwiftHashTable::checkbyte(const SwiftMetadataProtocolConformanceLocationKey& key, const uint8_t*) const { const uint8_t* keyBytes = (const uint8_t*)&key; return ((keyBytes[0] & 0x7) << 5) | ((uint8_t)sizeof(SwiftTypeProtocolConformanceLocationKey) & 0x1f); } // Foreign Type Hash Table methods template<> uint32_t SwiftHashTable::hash(const SwiftForeignTypeProtocolConformanceLocationKey& key, const uint8_t* stringBaseAddress) const { // Combine the hashes of the foreign type string and the protocol cache offset. // Then combine them to get the hash for this value const char* name = (const char*)stringBaseAddress + key.foreignDescriptorNameCacheOffset; uint64_t val1 = objc::lookup8((uint8_t*)name, key.foreignDescriptorNameLength, salt); uint64_t val2 = objc::lookup8((uint8_t*)&key.protocolCacheOffset, sizeof(key.protocolCacheOffset), salt); uint64_t val = val1 ^ val2; uint32_t index = (uint32_t)((shift == 64) ? 0 : (val>>shift)) ^ scramble[tab[val&mask]]; return index; } template<> bool SwiftHashTable::equal(const SwiftForeignTypeProtocolConformanceLocationKey& key, const SwiftForeignTypeProtocolConformanceLocationKey& value, const uint8_t*) const { return memcmp(&key, &value, sizeof(SwiftForeignTypeProtocolConformanceLocationKey)) == 0; } template<> SwiftHashTable::CheckByteType SwiftHashTable::checkbyte(const SwiftForeignTypeProtocolConformanceLocationKey& key, const uint8_t* stringBaseAddress) const { const char* name = (const char*)stringBaseAddress + key.foreignDescriptorNameCacheOffset; const uint8_t* keyBytes = (const uint8_t*)name; return ((keyBytes[0] & 0x7) << 5) | ((uint8_t)key.foreignDescriptorNameLength & 0x1f); } // Foreign Type Hash Table methods, using a string as a key template<> uint32_t SwiftHashTable::hash(const SwiftForeignTypeProtocolConformanceLookupKey& key, const uint8_t* stringBaseAddress) const { // Combine the hashes of the foreign type string and the protocol cache offset. // Then combine them to get the hash for this value const std::string_view& name = key.foreignDescriptorName; uint64_t val1 = objc::lookup8((uint8_t*)name.data(), name.size(), salt); uint64_t val2 = objc::lookup8((uint8_t*)&key.protocolCacheOffset, sizeof(key.protocolCacheOffset), salt); uint64_t val = val1 ^ val2; uint32_t index = (uint32_t)((shift == 64) ? 0 : (val>>shift)) ^ scramble[tab[val&mask]]; return index; } template<> bool SwiftHashTable::equal(const SwiftForeignTypeProtocolConformanceLocationKey& key, const SwiftForeignTypeProtocolConformanceLookupKey& value, const uint8_t* stringBaseAddress) const { std::string_view keyName((const char*)key.key1Buffer(stringBaseAddress), key.key1Size()); return (key.protocolCacheOffset == value.protocolCacheOffset) && (keyName == value.foreignDescriptorName); } template<> SwiftHashTable::CheckByteType SwiftHashTable::checkbyte(const SwiftForeignTypeProtocolConformanceLookupKey& key, const uint8_t* stringBaseAddress) const { const std::string_view& name = key.foreignDescriptorName; const uint8_t* keyBytes = (const uint8_t*)name.data(); return ((keyBytes[0] & 0x7) << 5) | ((uint8_t)name.size() & 0x1f); } #if BUILDING_CACHE_BUILDER // Swift hash tables template<typename TargetT> static void make_perfect(const std::vector<TargetT> targets, const uint8_t* stringBaseAddress, objc::PerfectHash& phash) { dyld3::OverflowSafeArray<objc::PerfectHash::key> keys; /* read in the list of keywords */ keys.reserve(targets.size()); for (const TargetT& target : targets) { objc::PerfectHash::key mykey; mykey.name1_k = (uint8_t*)target.key1Buffer(stringBaseAddress); mykey.len1_k = (uint32_t)target.key1Size(); mykey.name2_k = (uint8_t*)target.key2Buffer(stringBaseAddress); mykey.len2_k = (uint32_t)target.key2Size(); keys.push_back(mykey); } objc::PerfectHash::make_perfect(keys, phash); } template<typename PerfectHashT, typename TargetT> void SwiftHashTable::write(const PerfectHashT& phash, const std::vector<TargetT>& targetValues, const uint8_t* targetValuesBufferBaseAddress, const uint8_t* stringBaseAddress) { // Set header capacity = phash.capacity; occupied = phash.occupied; shift = phash.shift; mask = phash.mask; sentinelTarget = sentinel; roundedTabSize = std::max(phash.mask+1, 4U); salt = phash.salt; // Set hash data for (uint32_t i = 0; i < 256; i++) { scramble[i] = phash.scramble[i]; } for (uint32_t i = 0; i < phash.mask+1; i++) { tab[i] = phash.tab[i]; } dyld3::Array<TargetOffsetType> targetsArray = targets(); dyld3::Array<CheckByteType> checkBytesArray = checkBytes(); // Set offsets to the sentinel for (uint32_t i = 0; i < phash.capacity; i++) { targetsArray[i] = sentinel; } // Set checkbytes to 0 for (uint32_t i = 0; i < phash.capacity; i++) { checkBytesArray[i] = 0; } // Set real value offsets and checkbytes uint32_t offsetOfTargetBaseFromMap = (uint32_t)((uint64_t)targetValuesBufferBaseAddress - (uint64_t)this); bool skipNext = false; for (const TargetT& targetValue : targetValues) { // Skip chains of duplicates bool skipThisEntry = skipNext; skipNext = targetValue.nextIsDuplicate; if ( skipThisEntry ) continue; uint32_t h = hash<typename TargetT::KeyType>(targetValue, stringBaseAddress); uint32_t offsetOfTargetValueInArray = (uint32_t)((uint64_t)&targetValue - (uint64_t)targetValues.data()); assert(targetsArray[h] == sentinel); targetsArray[h] = offsetOfTargetBaseFromMap + offsetOfTargetValueInArray; assert(checkBytesArray[h] == 0); checkBytesArray[h] = checkbyte<typename TargetT::KeyType>(targetValue, stringBaseAddress); } } // Map from an unsigned 32-bit type to its signed counterpart. // Used for offset calculations template<typename PointerType> struct OffsetType { }; template<> struct OffsetType<uint32_t> { typedef int32_t SignedType; }; template<> struct OffsetType<uint64_t> { typedef int64_t SignedType; }; template <typename PointerType> struct header_info_rw { }; template<> struct header_info_rw<uint64_t> { bool getLoaded() const { return isLoaded; } private: #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wunused-private-field" uint64_t isLoaded : 1; uint64_t allClassesRealized : 1; uint64_t next : 62; #pragma clang diagnostic pop }; template<> struct header_info_rw<uint32_t> { bool getLoaded() const { return isLoaded; } private: #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wunused-private-field" uint32_t isLoaded : 1; uint32_t allClassesRealized : 1; uint32_t next : 30; #pragma clang diagnostic pop }; template <typename PointerType> class objc_header_info_ro_t { private: PointerType mhdr_offset; // offset to mach_header or mach_header_64 PointerType info_offset; // offset to objc_image_info * public: const mach_header* mhdr() const { typedef typename OffsetType<PointerType>::SignedType SignedType; return (const mach_header*)(((intptr_t)&mhdr_offset) + (SignedType)mhdr_offset); } }; template <typename PointerType> struct objc_headeropt_ro_t { uint32_t count; uint32_t entsize; objc_header_info_ro_t<PointerType> headers[0]; // sorted by mhdr address objc_header_info_ro_t<PointerType>& getOrEnd(uint32_t i) const { assert(i <= count); return *(objc_header_info_ro_t<PointerType>*)((uint8_t *)&headers + (i * entsize)); } objc_header_info_ro_t<PointerType>& get(uint32_t i) const { assert(i < count); return *(objc_header_info_ro_t<PointerType>*)((uint8_t *)&headers + (i * entsize)); } uint32_t index(const objc_header_info_ro_t<PointerType>* hi) const { const objc_header_info_ro_t<PointerType>* begin = &get(0); const objc_header_info_ro_t<PointerType>* end = &getOrEnd(count); assert(hi >= begin && hi < end); return (uint32_t)(((uintptr_t)hi - (uintptr_t)begin) / entsize); } objc_header_info_ro_t<PointerType>* get(const mach_header* mhdr) { int32_t start = 0; int32_t end = count; while (start <= end) { int32_t i = (start+end)/2; objc_header_info_ro_t<PointerType> &hi = get(i); if (mhdr == hi.mhdr()) return &hi; else if (mhdr < hi.mhdr()) end = i-1; else start = i+1; } return nullptr; } }; template <typename PointerType> struct objc_headeropt_rw_t { uint32_t count; uint32_t entsize; header_info_rw<PointerType> headers[0]; // sorted by mhdr address void* get(uint32_t i) const { assert(i < count); return (void*)((uint8_t *)&headers + (i * entsize)); } }; static std::optional<uint16_t> getPreoptimizedHeaderRWIndex(const void* headerInfoRO, const void* headerInfoRW, const dyld3::MachOAnalyzer* ma) { assert(headerInfoRO != nullptr); assert(headerInfoRW != nullptr); if ( ma->is64() ) { typedef uint64_t PointerType; objc_headeropt_ro_t<PointerType>* hinfoRO = (objc_headeropt_ro_t<PointerType>*)headerInfoRO; objc_headeropt_rw_t<PointerType>* hinfoRW = (objc_headeropt_rw_t<PointerType>*)headerInfoRW; objc_header_info_ro_t<PointerType>* hdr = hinfoRO->get(ma); if ( hdr == nullptr ) return {}; int32_t index = hinfoRO->index(hdr); assert(hinfoRW->entsize == sizeof(header_info_rw<PointerType>)); return (uint16_t)index; } else { typedef uint32_t PointerType; objc_headeropt_ro_t<PointerType>* hinfoRO = (objc_headeropt_ro_t<PointerType>*)headerInfoRO; objc_headeropt_rw_t<PointerType>* hinfoRW = (objc_headeropt_rw_t<PointerType>*)headerInfoRW; objc_header_info_ro_t<PointerType>* hdr = hinfoRO->get(ma); if ( hdr == nullptr ) return {}; int32_t index = hinfoRO->index(hdr); assert(hinfoRW->entsize == sizeof(header_info_rw<PointerType>)); return (uint16_t)index; } } // Foreign metadata names might not be a regular C string. Instead they might be // a NULL-separated array of C strings. The "full identity" is the result including any // intermidiate NULL characters. Eg, "NNSFoo\0St" would be a legitimate result static std::string_view getForeignFullIdentity(const char* arrayStart) { // Track the extent of the current component. const char* componentStart = arrayStart; const char* componentEnd = componentStart + strlen(arrayStart); // Set initial range to the extent of the user-facing name. const char* identityBeginning = componentStart; const char* identityEnd = componentEnd; // Start examining the following array components, starting past the NUL // terminator of the user-facing name: while (true) { // Advance past the NUL terminator. componentStart = componentEnd + 1; componentEnd = componentStart + strlen(componentStart); // If the component is empty, then we're done. if (componentStart == componentEnd) break; // Switch on the component type at the beginning of the component. switch (componentStart[0]) { case 'N': // ABI name, set identity beginning and end. identityBeginning = componentStart + 1; identityEnd = componentEnd; break; case 'S': case 'R': // Symbol namespace or related entity name, set identity end. identityEnd = componentEnd; break; default: // Ignore anything else. break; } } size_t stringSize = identityEnd - identityBeginning; return std::string_view(identityBeginning, stringSize); } static bool findProtocolConformances(Diagnostics& diags, const DyldSharedCache* dyldCache, std::vector<SwiftTypeProtocolConformanceLocation>& foundTypeProtocolConformances, std::vector<SwiftMetadataProtocolConformanceLocation>& foundMetadataProtocolConformances, std::vector<SwiftForeignTypeProtocolConformanceLocation>& foundForeignTypeProtocolConformances) { // If we have the read only data, make sure it has a valid selector table inside. const objc_opt::objc_opt_t* optObjCHeader = dyldCache->objcOpt(); const objc::ClassHashTable* classHashTable = nullptr; if ( optObjCHeader != nullptr ) { classHashTable = optObjCHeader->classOpt(); } if ( classHashTable == nullptr ) { diags.warning("Skipped optimizing Swift protocols due to missing objc class optimisations"); return false; } const void* headerInfoRO = (const void*)optObjCHeader->headeropt_ro(); const void* headerInfoRW = (const void*)optObjCHeader->headeropt_rw(); if ( (headerInfoRO == nullptr) || (headerInfoRW == nullptr) ) { diags.warning("Skipped optimizing Swift protocols due to missing objc header infos"); return false; } const bool log = false; // Find all conformances in all binaries dyldCache->forEachImage(^(const mach_header* machHeader, const char* installName) { if ( diags.hasError() ) return; const dyld3::MachOAnalyzer* ma = (const dyld3::MachOAnalyzer*)machHeader; auto vmAddrConverter = ma->makeVMAddrConverter(true); // HACK: At this point in the builder, everything contains vmAddr's. Setting // the above vmAddrConverter as "rebabed" and a 0 slide, causes nothing to be converted later vmAddrConverter.slide = 0; uint64_t binaryCacheOffset = (uint64_t)ma - (uint64_t)dyldCache; __block std::unordered_map<uint64_t, const char*> symbols; if ( log ) { uint64_t baseAddress = ma->preferredLoadAddress(); ma->forEachGlobalSymbol(diags, ^(const char *symbolName, uint64_t n_value, uint8_t n_type, uint8_t n_sect, uint16_t n_desc, bool &stop) { symbols[n_value - baseAddress] = symbolName; }); } ma->forEachSwiftProtocolConformance(diags, vmAddrConverter, true, ^(uint64_t protocolConformanceRuntimeOffset, const SwiftProtocolConformance &protocolConformance, bool &stopProtocolConformance) { std::optional<uint16_t> objcIndex = getPreoptimizedHeaderRWIndex(headerInfoRO, headerInfoRW, ma); if ( !objcIndex.has_value() ) { diags.error("Could not find objc header info for Swift dylib: %s", installName); stopProtocolConformance = true; return; } uint16_t dylibObjCIndex = *objcIndex; // The type descriptor might be a pointer to an objc name/class. If so, we need to translate that in to a pointer to a type descriptor // For now just skip adding found protocols to objc if ( protocolConformance.typeConformanceRuntimeOffset != 0 ) { SwiftTypeProtocolConformanceLocation protoLoc; protoLoc.protocolConformanceCacheOffset = binaryCacheOffset + protocolConformanceRuntimeOffset; protoLoc.dylibObjCIndex = dylibObjCIndex; protoLoc.typeDescriptorCacheOffset = binaryCacheOffset + protocolConformance.typeConformanceRuntimeOffset; protoLoc.protocolCacheOffset = binaryCacheOffset + protocolConformance.protocolRuntimeOffset; foundTypeProtocolConformances.push_back(protoLoc); if ( log ) { const char* typeName = ""; const char* protocolName = ""; const char* conformanceName = ""; if ( auto it = symbols.find(protocolConformance.typeConformanceRuntimeOffset); it != symbols.end() ) typeName = it->second; if ( auto it = symbols.find(protocolConformance.protocolRuntimeOffset); it != symbols.end() ) protocolName = it->second; if ( auto it = symbols.find(protocolConformanceRuntimeOffset); it != symbols.end() ) conformanceName = it->second; fprintf(stderr, "%s: (%s, %s) -> %s", ma->installName(), typeName, protocolName, conformanceName); } } else if ( protocolConformance.typeConformanceObjCClassRuntimeOffset != 0 ) { SwiftMetadataProtocolConformanceLocation protoLoc; protoLoc.protocolConformanceCacheOffset = binaryCacheOffset + protocolConformanceRuntimeOffset; protoLoc.dylibObjCIndex = dylibObjCIndex; protoLoc.metadataCacheOffset = binaryCacheOffset + protocolConformance.typeConformanceObjCClassRuntimeOffset; protoLoc.protocolCacheOffset = binaryCacheOffset + protocolConformance.protocolRuntimeOffset; foundMetadataProtocolConformances.push_back(protoLoc); if ( log ) { const char* metadataName = ""; const char* protocolName = ""; const char* conformanceName = ""; if ( auto it = symbols.find(protocolConformance.typeConformanceObjCClassRuntimeOffset); it != symbols.end() ) metadataName = it->second; if ( auto it = symbols.find(protocolConformance.protocolRuntimeOffset); it != symbols.end() ) protocolName = it->second; if ( auto it = symbols.find(protocolConformanceRuntimeOffset); it != symbols.end() ) conformanceName = it->second; fprintf(stderr, "%s: (%s, %s) -> %s", ma->installName(), metadataName, protocolName, conformanceName); } } else if ( protocolConformance.typeConformanceObjCClassNameRuntimeOffset != 0 ) { const char* className = (const char*)ma + protocolConformance.typeConformanceObjCClassNameRuntimeOffset; classHashTable->forEachClass(className, ^(uint64_t classCacheOffset, uint16_t dylibObjCIndexForClass, bool &stopClasses) { // exactly one matching class SwiftMetadataProtocolConformanceLocation protoLoc; protoLoc.protocolConformanceCacheOffset = binaryCacheOffset + protocolConformanceRuntimeOffset; protoLoc.dylibObjCIndex = dylibObjCIndex; protoLoc.metadataCacheOffset = classCacheOffset; protoLoc.protocolCacheOffset = binaryCacheOffset + protocolConformance.protocolRuntimeOffset; foundMetadataProtocolConformances.push_back(protoLoc); if ( log ) { const char* protocolName = ""; const char* conformanceName = ""; if ( auto it = symbols.find(protocolConformance.protocolRuntimeOffset); it != symbols.end() ) protocolName = it->second; if ( auto it = symbols.find(protocolConformanceRuntimeOffset); it != symbols.end() ) conformanceName = it->second; fprintf(stderr, "%s: (%s, %s) -> %s", ma->installName(), className, protocolName, conformanceName); } }); } else { // assert(0 && "Unknown protocol conformance"); // Missing weak imports can result in us wanting to skip a confornmance. Assume that is the case here } // Type's can also have foreign names, which are used to identify the descriptor by name instead of just pointer value if ( protocolConformance.foreignMetadataNameRuntimeOffset != 0 ) { uint64_t foreignDescriptorNameCacheOffset = binaryCacheOffset + protocolConformance.foreignMetadataNameRuntimeOffset; const char* name = (const char*)dyldCache + foreignDescriptorNameCacheOffset; std::string_view fullName(name); if ( protocolConformance.foreignMetadataNameHasImportInfo ) fullName = getForeignFullIdentity(name); // We only have 16-bits for the length. Hopefully that is enough! if ( fullName.size() >= (1 << 16) ) { diags.error("Protocol conformance exceeded name length of 16-bits"); stopProtocolConformance = true; return; } SwiftForeignTypeProtocolConformanceLocation protoLoc; protoLoc.protocolConformanceCacheOffset = binaryCacheOffset + protocolConformanceRuntimeOffset; protoLoc.dylibObjCIndex = dylibObjCIndex; protoLoc.foreignDescriptorNameCacheOffset = (fullName.data() - (const char*)dyldCache); protoLoc.foreignDescriptorNameLength = fullName.size(); protoLoc.protocolCacheOffset = binaryCacheOffset + protocolConformance.protocolRuntimeOffset; foundForeignTypeProtocolConformances.push_back(protoLoc); if ( log ) { const char* typeName = ""; const char* protocolName = ""; const char* conformanceName = ""; typeName = (const char*)dyldCache + protoLoc.foreignDescriptorNameCacheOffset; if ( auto it = symbols.find(protocolConformance.protocolRuntimeOffset); it != symbols.end() ) protocolName = it->second; if ( auto it = symbols.find(protocolConformanceRuntimeOffset); it != symbols.end() ) conformanceName = it->second; fprintf(stderr, "%s: (%s, %s) -> %s", ma->installName(), typeName, protocolName, conformanceName); } } }); }); return !diags.hasError(); } static bool operator<(const SwiftTypeProtocolConformanceLocation& a, const SwiftTypeProtocolConformanceLocation& b) { if ( a.typeDescriptorCacheOffset != b.typeDescriptorCacheOffset ) return a.typeDescriptorCacheOffset < b.typeDescriptorCacheOffset; if ( a.protocolCacheOffset != b.protocolCacheOffset ) return a.protocolCacheOffset < b.protocolCacheOffset; if ( a.raw != b.raw ) return a.raw < b.raw; return false; } static bool operator<(const SwiftMetadataProtocolConformanceLocation& a, const SwiftMetadataProtocolConformanceLocation& b) { if ( a.metadataCacheOffset != b.metadataCacheOffset ) return a.metadataCacheOffset < b.metadataCacheOffset; if ( a.protocolCacheOffset != b.protocolCacheOffset ) return a.protocolCacheOffset < b.protocolCacheOffset; if ( a.raw != b.raw ) return a.raw < b.raw; return false; } static bool operator<(const SwiftForeignTypeProtocolConformanceLocation& a, const SwiftForeignTypeProtocolConformanceLocation& b) { if ( a.foreignDescriptorNameCacheOffset != b.foreignDescriptorNameCacheOffset ) return a.foreignDescriptorNameCacheOffset < b.foreignDescriptorNameCacheOffset; if ( a.foreignDescriptorNameLength != b.foreignDescriptorNameLength ) return a.foreignDescriptorNameLength < b.foreignDescriptorNameLength; if ( a.protocolCacheOffset != b.protocolCacheOffset ) return a.protocolCacheOffset < b.protocolCacheOffset; if ( a.raw != b.raw ) return a.raw < b.raw; return false; } static void optimizeProtocolConformances(Diagnostics& diags, DyldSharedCache* dyldCache, uint8_t* swiftReadOnlyBuffer, uint64_t swiftReadOnlyBufferSizeAllocated) { std::vector<SwiftTypeProtocolConformanceLocation> foundTypeProtocolConformances; std::vector<SwiftMetadataProtocolConformanceLocation> foundMetadataProtocolConformances; std::vector<SwiftForeignTypeProtocolConformanceLocation> foundForeignTypeProtocolConformances; if ( !findProtocolConformances(diags, dyldCache, foundTypeProtocolConformances, foundMetadataProtocolConformances, foundForeignTypeProtocolConformances) ) return; // Sort the lists, and look for duplicates // Types std::sort(foundTypeProtocolConformances.begin(), foundTypeProtocolConformances.end()); for (uint64_t i = 1; i < foundTypeProtocolConformances.size(); ++i) { // Check if this protocol is the same as the previous one auto& prev = foundTypeProtocolConformances[i - 1]; auto& current = foundTypeProtocolConformances[i]; if ( std::equal_to<SwiftTypeProtocolConformanceLocationKey>()(prev, current) ) prev.nextIsDuplicate = 1; } std::vector<SwiftTypeProtocolConformanceLocationKey> typeProtocolConformanceKeys; for (const auto& protoLoc : foundTypeProtocolConformances) { if ( protoLoc.nextIsDuplicate ) continue; typeProtocolConformanceKeys.push_back(protoLoc); } // Metadata std::sort(foundMetadataProtocolConformances.begin(), foundMetadataProtocolConformances.end()); for (uint64_t i = 1; i < foundMetadataProtocolConformances.size(); ++i) { // Check if this protocol is the same as the previous one auto& prev = foundMetadataProtocolConformances[i - 1]; auto& current = foundMetadataProtocolConformances[i]; if ( std::equal_to<SwiftMetadataProtocolConformanceLocationKey>()(prev, current) ) prev.nextIsDuplicate = 1; } std::vector<SwiftMetadataProtocolConformanceLocationKey> metadataProtocolConformanceKeys; for (const auto& protoLoc : foundMetadataProtocolConformances) { if ( protoLoc.nextIsDuplicate ) continue; metadataProtocolConformanceKeys.push_back(protoLoc); } // Foreign types // First unique the offsets so that they all have the same offset for the same name { std::unordered_map<std::string_view, uint64_t> canonicalForeignNameOffsets; for (auto& protoLoc : foundForeignTypeProtocolConformances) { uint64_t nameOffset = protoLoc.foreignDescriptorNameCacheOffset; const char* name = (const char*)dyldCache + nameOffset; // The name might have additional ImportInfo, which may include null characters. // The size we calculated earlier includes any necessary null characters std::string_view fullName(name, protoLoc.foreignDescriptorNameLength); auto itAndInserted = canonicalForeignNameOffsets.insert({ fullName, nameOffset }); if ( !itAndInserted.second ) { // We didn't insert the name, so use the offset already there for this name protoLoc.foreignDescriptorNameCacheOffset = itAndInserted.first->second; } } } std::sort(foundForeignTypeProtocolConformances.begin(), foundForeignTypeProtocolConformances.end()); for (uint64_t i = 1; i < foundForeignTypeProtocolConformances.size(); ++i) { // Check if this protocol is the same as the previous one auto& prev = foundForeignTypeProtocolConformances[i - 1]; auto& current = foundForeignTypeProtocolConformances[i]; if ( std::equal_to<SwiftForeignTypeProtocolConformanceLocationKey>()(prev, current) ) prev.nextIsDuplicate = 1; } std::vector<SwiftForeignTypeProtocolConformanceLocationKey> foreignTypeProtocolConformanceKeys; for (const auto& protoLoc : foundForeignTypeProtocolConformances) { if ( protoLoc.nextIsDuplicate ) continue; foreignTypeProtocolConformanceKeys.push_back(protoLoc); } // Build a map of all found conformances // Build the perfect hash table for type conformances objc::PerfectHash typeConformancePerfectHash; make_perfect(typeProtocolConformanceKeys, nullptr, typeConformancePerfectHash); // Build the perfect hash table for metadata objc::PerfectHash metadataConformancePerfectHash; make_perfect(metadataProtocolConformanceKeys, nullptr, metadataConformancePerfectHash); // Build the perfect hash table for foreign types objc::PerfectHash foreignTypeConformancePerfectHash; make_perfect(foreignTypeProtocolConformanceKeys, (const uint8_t*)dyldCache, foreignTypeConformancePerfectHash); // Make space for all the hash tables uint8_t* bufferStart = swiftReadOnlyBuffer; uint8_t* bufferEnd = swiftReadOnlyBuffer + swiftReadOnlyBufferSizeAllocated; // Add a header SwiftOptimizationHeader* swiftOptimizationHeader = (SwiftOptimizationHeader*)swiftReadOnlyBuffer; swiftReadOnlyBuffer += sizeof(SwiftOptimizationHeader); // Make space for the type conformance map uint8_t* typeConformanceHashTableBuffer = swiftReadOnlyBuffer; size_t typeConformanceHashTableSize = SwiftHashTable::size(typeConformancePerfectHash); swiftReadOnlyBuffer += typeConformanceHashTableSize; // Make space for the metadata conformance map uint8_t* metadataConformanceHashTableBuffer = swiftReadOnlyBuffer; size_t metadataConformanceHashTableSize = SwiftHashTable::size(metadataConformancePerfectHash); swiftReadOnlyBuffer += metadataConformanceHashTableSize; // Make space for the foreign types conformance map uint8_t* foreignTypeConformanceHashTableBuffer = swiftReadOnlyBuffer; size_t foreignTypeConformanceHashTableSize = SwiftHashTable::size(foreignTypeConformancePerfectHash); swiftReadOnlyBuffer += foreignTypeConformanceHashTableSize; // Make space for the type conformance structs uint8_t* typeConformanceBuffer = swiftReadOnlyBuffer; size_t typeConformanceBufferSize = (foundTypeProtocolConformances.size() * sizeof(*foundTypeProtocolConformances.data())); swiftReadOnlyBuffer += typeConformanceBufferSize; // Make space for the metadata conformance structs uint8_t* metadataConformanceBuffer = swiftReadOnlyBuffer; size_t metadataConformanceBufferSize = (foundMetadataProtocolConformances.size() * sizeof(*foundMetadataProtocolConformances.data())); swiftReadOnlyBuffer += metadataConformanceBufferSize; // Make space for the foreign type conformance structs uint8_t* foreignTypeConformanceBuffer = swiftReadOnlyBuffer; size_t foreignTypeConformanceBufferSize = (foundForeignTypeProtocolConformances.size() * sizeof(*foundForeignTypeProtocolConformances.data())); swiftReadOnlyBuffer += foreignTypeConformanceBufferSize; // Check for overflow if ( swiftReadOnlyBuffer > bufferEnd ) { diags.error("Overflow in Swift type hash tables (%lld allocated vs %lld used", swiftReadOnlyBufferSizeAllocated, (uint64_t)(swiftReadOnlyBuffer - bufferStart)); return; } // Write all the hash tables dyldCache->header.swiftOptsOffset = (uint64_t)swiftOptimizationHeader - (uint64_t)dyldCache; dyldCache->header.swiftOptsSize = (uint64_t)swiftReadOnlyBuffer - (uint64_t)bufferStart; swiftOptimizationHeader->version = 1; swiftOptimizationHeader->padding = 0; swiftOptimizationHeader->typeConformanceHashTableCacheOffset = (uint64_t)typeConformanceHashTableBuffer - (uint64_t)dyldCache; swiftOptimizationHeader->metadataConformanceHashTableCacheOffset = (uint64_t)metadataConformanceHashTableBuffer - (uint64_t)dyldCache; swiftOptimizationHeader->foreignTypeConformanceHashTableCacheOffset = (uint64_t)foreignTypeConformanceHashTableBuffer - (uint64_t)dyldCache; ((SwiftHashTable*)typeConformanceHashTableBuffer)->write(typeConformancePerfectHash, foundTypeProtocolConformances, typeConformanceBuffer, nullptr); ((SwiftHashTable*)metadataConformanceHashTableBuffer)->write(metadataConformancePerfectHash, foundMetadataProtocolConformances, metadataConformanceBuffer, nullptr); ((SwiftHashTable*)foreignTypeConformanceHashTableBuffer)->write(foreignTypeConformancePerfectHash, foundForeignTypeProtocolConformances, foreignTypeConformanceBuffer, (const uint8_t*)dyldCache); memcpy(typeConformanceBuffer, foundTypeProtocolConformances.data(), typeConformanceBufferSize); memcpy(metadataConformanceBuffer, foundMetadataProtocolConformances.data(), metadataConformanceBufferSize); memcpy(foreignTypeConformanceBuffer, foundForeignTypeProtocolConformances.data(), foreignTypeConformanceBufferSize); // Check that the hash tables work! for (const auto& target : foundTypeProtocolConformances) { const SwiftHashTable* hashTable = (const SwiftHashTable*)typeConformanceHashTableBuffer; const auto* protocolTarget = hashTable->getValue<SwiftTypeProtocolConformanceLocation>(target, nullptr); assert(protocolTarget != nullptr); if ( !protocolTarget->nextIsDuplicate ) { // No duplicates, so we should match assert(memcmp(protocolTarget, &target, sizeof(SwiftTypeProtocolConformanceLocation)) == 0); } else { // One of the duplicates should match bool foundMatch = false; while ( true ) { if ( memcmp(protocolTarget, &target, sizeof(SwiftTypeProtocolConformanceLocation)) == 0 ) { foundMatch = true; break; } if ( !protocolTarget->nextIsDuplicate ) break; protocolTarget = ++protocolTarget; } assert(foundMatch); } } for (const auto& target : foundMetadataProtocolConformances) { const SwiftHashTable* hashTable = (const SwiftHashTable*)metadataConformanceHashTableBuffer; const auto* protocolTarget = hashTable->getValue<SwiftMetadataProtocolConformanceLocation>(target, nullptr); assert(protocolTarget != nullptr); if ( !protocolTarget->nextIsDuplicate ) { // No duplicates, so we should match assert(memcmp(protocolTarget, &target, sizeof(SwiftMetadataProtocolConformanceLocation)) == 0); } else { // One of the duplicates should match bool foundMatch = false; while ( true ) { if ( memcmp(protocolTarget, &target, sizeof(SwiftMetadataProtocolConformanceLocation)) == 0 ) { foundMatch = true; break; } if ( !protocolTarget->nextIsDuplicate ) break; protocolTarget = ++protocolTarget; } assert(foundMatch); } } for (const auto& target : foundForeignTypeProtocolConformances) { const SwiftHashTable* hashTable = (const SwiftHashTable*)foreignTypeConformanceHashTableBuffer; const auto* protocolTarget = hashTable->getValue<SwiftForeignTypeProtocolConformanceLocation>(target, (const uint8_t*)dyldCache); assert(protocolTarget != nullptr); if ( !protocolTarget->nextIsDuplicate ) { // No duplicates, so we should match assert(memcmp(protocolTarget, &target, sizeof(SwiftForeignTypeProtocolConformanceLocation)) == 0); } else { // One of the duplicates should match bool foundMatch = false; while ( true ) { if ( memcmp(protocolTarget, &target, sizeof(SwiftForeignTypeProtocolConformanceLocation)) == 0 ) { foundMatch = true; break; } if ( !protocolTarget->nextIsDuplicate ) break; protocolTarget = ++protocolTarget; } assert(foundMatch); } } // Check the foreign table again, with a string key, as that is what the SPI will use for (const auto& target : foundForeignTypeProtocolConformances) { const SwiftHashTable* hashTable = (const SwiftHashTable*)foreignTypeConformanceHashTableBuffer; const char* typeName = (const char*)dyldCache + target.foreignDescriptorNameCacheOffset; assert((const uint8_t*)typeName == target.key1Buffer((const uint8_t*)dyldCache)); // The type name might include null characters, if it has additional import info std::string_view fullName(typeName, target.key1Size()); SwiftForeignTypeProtocolConformanceLookupKey lookupKey = { fullName, target.protocolCacheOffset }; const auto* protocolTarget = hashTable->getValue<SwiftForeignTypeProtocolConformanceLookupKey, SwiftForeignTypeProtocolConformanceLocation>(lookupKey, (const uint8_t*)dyldCache); assert(protocolTarget != nullptr); if ( !protocolTarget->nextIsDuplicate ) { // No duplicates, so we should match assert(memcmp(protocolTarget, &target, sizeof(SwiftForeignTypeProtocolConformanceLocation)) == 0); } else { // One of the duplicates should match bool foundMatch = false; while ( true ) { if ( memcmp(protocolTarget, &target, sizeof(SwiftForeignTypeProtocolConformanceLocation)) == 0 ) { foundMatch = true; break; } if ( !protocolTarget->nextIsDuplicate ) break; protocolTarget = ++protocolTarget; } assert(foundMatch); } } diags.verbose("[Swift]: Wrote %lld bytes of hash tables\n", (uint64_t)(swiftReadOnlyBuffer - bufferStart)); } void SharedCacheBuilder::optimizeSwift() { DyldSharedCache* dyldCache = (DyldSharedCache*)_subCaches.front()._readExecuteRegion.buffer; // The only thing we do for now is optimize protocols conformances. But we'll put that in // its own method just to keep it self-contained optimizeProtocolConformances(_diagnostics, dyldCache, _swiftReadOnlyBuffer, _swiftReadOnlyBufferSizeAllocated); } static uint32_t hashTableSize(uint32_t maxElements, uint32_t perElementData) { uint32_t elementsWithPadding = maxElements*11/10; // if close to power of 2, perfect hash may fail, so don't get within 10% of that uint32_t powTwoCapacity = 1 << (32 - __builtin_clz(elementsWithPadding - 1)); uint32_t headerSize = 4*(8+256); return headerSize + powTwoCapacity/2 + powTwoCapacity + powTwoCapacity*perElementData; } // Allocate enough space for the Swift hash tables in the read-only region of the cache uint32_t SharedCacheBuilder::computeReadOnlySwift() { __block uint32_t numTypeConformances = 0; __block uint32_t numMetadataConformances = 0; __block uint32_t numForeignMetadataConformances = 0; for (DylibInfo& dylib : _sortedDylibs) { Diagnostics diags; dylib.input->mappedFile.mh->forEachSwiftProtocolConformance(diags, dylib.input->mappedFile.mh->makeVMAddrConverter(false), false, ^(uint64_t protocolConformanceRuntimeOffset, const SwiftProtocolConformance &protocolConformance, bool &stopProtocolConformance) { if ( protocolConformance.protocolRuntimeOffset != 0 ) ++numTypeConformances; else ++numMetadataConformances; if ( protocolConformance.foreignMetadataNameRuntimeOffset != 0 ) ++numForeignMetadataConformances; }); } // Each conformance entry is 3 uint64_t's internally, plus the space for the hash table uint32_t sizeNeeded = 0x4000 * 3; sizeNeeded += (numTypeConformances * 3 * sizeof(uint64_t)) + hashTableSize(numTypeConformances, 5);; sizeNeeded += (numMetadataConformances * 3 * sizeof(uint64_t)) + hashTableSize(numMetadataConformances, 5); sizeNeeded += (numForeignMetadataConformances * 3 * sizeof(uint64_t)) + hashTableSize(numForeignMetadataConformances, 5); return sizeNeeded; } #endif |