├── README.md ├── objc4-779.1 ├── APPLE_LICENSE ├── KCCommon │ ├── Block_private.h │ ├── CrashReporterClient.h │ ├── System │ │ ├── machine │ │ │ └── cpu_capabilities.h │ │ └── pthread_machdep.h │ ├── _simple.h │ ├── kern │ │ └── restartable.h │ ├── mach-o │ │ └── dyld_priv.h │ ├── objc-shared-cache.h │ ├── os │ │ ├── base_private.h │ │ ├── lock_private.h │ │ └── tsd.h │ ├── pthread │ │ ├── spinlock_private.h │ │ └── tsd_private.h │ └── sys │ │ └── reason.h ├── KCObjcTest │ ├── TestObject.h │ ├── TestObject.m │ └── main.m ├── ReleaseNotes.rtf ├── interposable.txt ├── libobjc.order ├── markgc.cpp ├── objc.sln ├── objc.vcproj ├── objc.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── KCObjcTest.xcscheme ├── objcrt │ └── objcrt.vcproj ├── prebuild.bat ├── runtime │ ├── DenseMapExtras.h │ ├── Messengers.subproj │ │ ├── objc-msg-arm.s │ │ ├── objc-msg-arm64.s │ │ ├── objc-msg-i386.s │ │ ├── objc-msg-simulator-i386.s │ │ ├── objc-msg-simulator-x86_64.s │ │ ├── objc-msg-win32.m │ │ └── objc-msg-x86_64.s │ ├── Module │ │ ├── ObjectiveC.apinotes │ │ └── module.modulemap │ ├── NSObjCRuntime.h │ ├── NSObject-internal.h │ ├── NSObject.h │ ├── NSObject.mm │ ├── Object.h │ ├── Object.mm │ ├── OldClasses.subproj │ │ ├── List.h │ │ └── List.m │ ├── Protocol.h │ ├── Protocol.mm │ ├── arm64-asm.h │ ├── hashtable.h │ ├── hashtable2.h │ ├── hashtable2.mm │ ├── isa.h │ ├── llvm-AlignOf.h │ ├── llvm-DenseMap.h │ ├── llvm-DenseMapInfo.h │ ├── llvm-DenseSet.h │ ├── llvm-MathExtras.h │ ├── llvm-type_traits.h │ ├── maptable.h │ ├── maptable.mm │ ├── message.h │ ├── objc-abi.h │ ├── objc-accessors.mm │ ├── objc-api.h │ ├── objc-auto.h │ ├── objc-auto.mm │ ├── objc-block-trampolines.h │ ├── objc-block-trampolines.mm │ ├── objc-blocktramps-arm.s │ ├── objc-blocktramps-arm64.s │ ├── objc-blocktramps-i386.s │ ├── objc-blocktramps-x86_64.s │ ├── objc-cache-old.h │ ├── objc-cache-old.mm │ ├── objc-cache.h │ ├── objc-cache.mm │ ├── objc-class-old.mm │ ├── objc-class.h │ ├── objc-class.mm │ ├── objc-config.h │ ├── objc-env.h │ ├── objc-errors.mm │ ├── objc-exception.h │ ├── objc-exception.mm │ ├── objc-file-old.h │ ├── objc-file-old.mm │ ├── objc-file.h │ ├── objc-file.mm │ ├── objc-gdb.h │ ├── objc-initialize.h │ ├── objc-initialize.mm │ ├── objc-internal.h │ ├── objc-layout.mm │ ├── objc-load.h │ ├── objc-load.mm │ ├── objc-loadmethod.h │ ├── objc-loadmethod.mm │ ├── objc-lockdebug.h │ ├── objc-lockdebug.mm │ ├── objc-locks-new.h │ ├── objc-locks-old.h │ ├── objc-locks.h │ ├── objc-object.h │ ├── objc-opt.mm │ ├── objc-os.h │ ├── objc-os.mm │ ├── objc-private.h │ ├── objc-probes.d │ ├── objc-ptrauth.h │ ├── objc-references.h │ ├── objc-references.mm │ ├── objc-runtime-new.h │ ├── objc-runtime-new.mm │ ├── objc-runtime-old.h │ ├── objc-runtime-old.mm │ ├── objc-runtime.h │ ├── objc-runtime.mm │ ├── objc-sel-old.mm │ ├── objc-sel-set.h │ ├── objc-sel-set.mm │ ├── objc-sel-table.s │ ├── objc-sel.mm │ ├── objc-sync.h │ ├── objc-sync.mm │ ├── objc-typeencoding.mm │ ├── objc-weak.h │ ├── objc-weak.mm │ ├── objc.h │ ├── objcrt.c │ ├── objcrt.h │ └── runtime.h ├── test │ ├── ARCBase.h │ ├── ARCBase.m │ ├── ARCLayouts.m │ ├── ARCLayoutsWithoutWeak.m │ ├── ARCMRC.h │ ├── ARCMRC.m │ ├── MRCARC.h │ ├── MRCARC.m │ ├── MRCBase.h │ ├── MRCBase.m │ ├── accessors.m │ ├── accessors2.m │ ├── addMethod.m │ ├── addMethods.m │ ├── addProtocol.m │ ├── applescriptobjc.m │ ├── arr-cast.m │ ├── arr-weak.m │ ├── asm-placeholder.s │ ├── association-cf.m │ ├── association.m │ ├── associationForbidden.h │ ├── associationForbidden.m │ ├── associationForbidden2.m │ ├── associationForbidden3.m │ ├── associationForbidden4.m │ ├── atomicProperty.mm │ ├── badAltHandler.m │ ├── badCache.m │ ├── badPool.m │ ├── badPoolCompat-ios-tvos.m │ ├── badPoolCompat-macos.m │ ├── badPoolCompat-watchos.m │ ├── badSuperclass.m │ ├── badSuperclass2.m │ ├── badTagClass.m │ ├── badTagIndex.m │ ├── bigrc.m │ ├── blocksAsImps.m │ ├── bool.c │ ├── cacheflush.h │ ├── cacheflush.m │ ├── cacheflush0.m │ ├── cacheflush2.m │ ├── cacheflush3.m │ ├── category.m │ ├── cdtors.mm │ ├── classgetclass.m │ ├── classname.m │ ├── classpair.mm │ ├── classversion.m │ ├── concurrentcat.m │ ├── concurrentcat_category.m │ ├── copyFixupHandler.mm │ ├── copyIvarList.m │ ├── copyMethodList.m │ ├── copyPropertyList.m │ ├── copyProtocolList.m │ ├── createInstance.m │ ├── customrr-cat1.m │ ├── customrr-cat2.m │ ├── customrr-nsobject-awz.m │ ├── customrr-nsobject-core.m │ ├── customrr-nsobject-none.m │ ├── customrr-nsobject-rr.m │ ├── customrr-nsobject-rrawz.m │ ├── customrr-nsobject.m │ ├── customrr.m │ ├── customrr2.m │ ├── definitions.c │ ├── designatedinit.m │ ├── duplicateClass.m │ ├── duplicateProtocols.m │ ├── duplicatedClasses.m │ ├── evil-class-def.m │ ├── exc.m │ ├── exchangeImp.m │ ├── foreach.m │ ├── fork.m │ ├── forkInitialize.m │ ├── forkInitializeDisabled.m │ ├── forkInitializeSingleThreaded.m │ ├── forward.m │ ├── forwardDefault.m │ ├── forwardDefaultStret.m │ ├── future.h │ ├── future.m │ ├── future0.m │ ├── future2.m │ ├── gc-main.m │ ├── gc.c │ ├── gc.m │ ├── gcenforcer-app-aso.m │ ├── gcenforcer-app-gc.m │ ├── gcenforcer-app-gcaso.m │ ├── gcenforcer-app-gcaso2.m │ ├── gcenforcer-app-gconly.m │ ├── gcenforcer-app-nogc.m │ ├── gcenforcer-app-noobjc.m │ ├── gcenforcer-dylib-nogc.m │ ├── gcenforcer-dylib-noobjc.m │ ├── gcenforcer-dylib-requiresgc.m │ ├── gcenforcer-dylib-supportsgc.m │ ├── gcenforcer-preflight.m │ ├── gcfiles │ │ ├── evil1 │ │ ├── i386-aso │ │ ├── i386-aso--x86_64-aso │ │ ├── i386-broken │ │ ├── i386-broken--x86_64-gc │ │ ├── i386-broken--x86_64-nogc │ │ ├── i386-gc │ │ ├── i386-gc--x86_64-broken │ │ ├── i386-gc--x86_64-gc │ │ ├── i386-gc--x86_64-nogc │ │ ├── i386-gcaso │ │ ├── i386-gcaso2 │ │ ├── i386-gconly │ │ ├── i386-nogc │ │ ├── i386-nogc--x86_64-broken │ │ ├── i386-nogc--x86_64-gc │ │ ├── i386-nogc--x86_64-nogc │ │ ├── i386-noobjc │ │ ├── libnogc.dylib │ │ ├── libnoobjc.dylib │ │ ├── librequiresgc.dylib │ │ ├── librequiresgc.fake.dylib │ │ ├── libsupportsgc.dylib │ │ ├── x86_64-aso │ │ ├── x86_64-broken │ │ ├── x86_64-gc │ │ ├── x86_64-gcaso │ │ ├── x86_64-gcaso2 │ │ ├── x86_64-gconly │ │ ├── x86_64-nogc │ │ └── x86_64-noobjc │ ├── gdb.m │ ├── getClassHook.m │ ├── getImageNameHook.m │ ├── getMethod.m │ ├── get_task_allow_entitlement.plist │ ├── headers.c │ ├── headers.sh │ ├── imageorder.h │ ├── imageorder.m │ ├── imageorder1.m │ ├── imageorder2.m │ ├── imageorder3.m │ ├── imports.c │ ├── include-warnings.c │ ├── includes-objc2.c │ ├── includes.c │ ├── initialize.m │ ├── initializeVersusWeak.m │ ├── instanceSize.m │ ├── isaValidation.m │ ├── ismeta.m │ ├── ivar.m │ ├── ivarSlide.h │ ├── ivarSlide.m │ ├── ivarSlide1.m │ ├── literals.m │ ├── load-image-notification-dylib.m │ ├── load-image-notification.m │ ├── load-noobjc.m │ ├── load-noobjc2.m │ ├── load-noobjc3.m │ ├── load-order.m │ ├── load-order1.m │ ├── load-order2.m │ ├── load-order3.m │ ├── load-parallel.m │ ├── load-parallel0.m │ ├── load-parallel00.m │ ├── load-reentrant.m │ ├── load-reentrant2.m │ ├── load.m │ ├── methodArgs.m │ ├── methodCacheLeaks.m │ ├── methodListSize.m │ ├── msgSend-performance.m │ ├── msgSend.m │ ├── nilAPIArgs.m │ ├── nonpointerisa.m │ ├── nopool.m │ ├── nscdtors.mm │ ├── nsexc.m │ ├── nsobject.m │ ├── nsprotocol.m │ ├── objectCopy.m │ ├── property.m │ ├── propertyDesc.m │ ├── protocol.m │ ├── protocol_copyMethodList.m │ ├── protocol_copyPropertyList.m │ ├── rawisa.m │ ├── readClassPair.m │ ├── realizedClassGenerationCount.m │ ├── release-workaround.m │ ├── resolve.m │ ├── restartableRangesSynchronizeStress.m │ ├── rr-autorelease-fast.m │ ├── rr-autorelease-fastarc.m │ ├── rr-autorelease-stacklogging.m │ ├── rr-autorelease.m │ ├── rr-autorelease2.m │ ├── rr-nsautorelease.m │ ├── rr-sidetable.m │ ├── runtime.m │ ├── sel.m │ ├── setAssociatedObjectHook.m │ ├── setSuper.m │ ├── subscripting.m │ ├── super.m │ ├── swift-class-def.m │ ├── swiftMetadataInitializer.m │ ├── swiftMetadataInitializerRealloc-dylib1.m │ ├── swiftMetadataInitializerRealloc-dylib2.m │ ├── swiftMetadataInitializerRealloc.m │ ├── synchronized-counter.m │ ├── synchronized-grid.m │ ├── synchronized.m │ ├── taggedNSPointers.m │ ├── taggedPointers.m │ ├── taggedPointersAllClasses.m │ ├── taggedPointersDisabled.m │ ├── taggedPointersTagObfuscationDisabled.m │ ├── tbi.c │ ├── test.h │ ├── test.pl │ ├── testroot.i │ ├── timeout.pl │ ├── unload.h │ ├── unload.m │ ├── unload2.m │ ├── unload3.c │ ├── unload4.m │ ├── unwind.m │ ├── weak.h │ ├── weak.m │ ├── weak2.m │ ├── weakcopy.m │ ├── weakframework-missing.m │ ├── weakframework-not-missing.m │ ├── weakimport-missing.m │ ├── weakimport-not-missing.m │ ├── weakrace.m │ ├── willInitializeClassFunc.m │ └── zone.m ├── unexported_symbols ├── version.bat └── version.rc └── objc4-runtime-750 ├── APPLE_LICENSE ├── README.md ├── ReleaseNotes.rtf ├── debug-objc └── main.m ├── include ├── Block_private.h ├── CrashReporterClient.h ├── System │ ├── machine │ │ └── cpu_capabilities.h │ └── pthread_machdep.h ├── _simple.h ├── mach-o │ └── dyld_priv.h ├── objc-shared-cache.h ├── os │ ├── base_private.h │ ├── lock_private.h │ └── tsd.h ├── pthread │ ├── qos_private.h │ ├── spinlock_private.h │ ├── tsd_private.h │ └── workqueue_private.h └── sys │ ├── qos_private.h │ └── reason.h ├── interposable.txt ├── libobjc.order ├── markgc.cpp ├── objc-debug ├── NSObject+Test.h ├── NSObject+Test.m ├── TestObject.h ├── TestObject.m └── main.m ├── objc.sln ├── objc.suo ├── objc.vcproj ├── objc.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── objcrt └── objcrt.vcproj ├── prebuild.bat ├── runtime ├── Messengers.subproj │ ├── objc-msg-arm.s │ ├── objc-msg-arm64.s │ ├── objc-msg-i386.s │ ├── objc-msg-simulator-i386.s │ ├── objc-msg-simulator-x86_64.s │ ├── objc-msg-win32.m │ └── objc-msg-x86_64.s ├── Module │ ├── ObjectiveC.apinotes │ └── module.modulemap ├── NSObjCRuntime.h ├── NSObject.h ├── NSObject.mm ├── Object.h ├── Object.mm ├── OldClasses.subproj │ ├── List.h │ └── List.m ├── Protocol.h ├── Protocol.mm ├── a1a2-blocktramps-arm.s ├── a1a2-blocktramps-arm64.s ├── a1a2-blocktramps-i386.s ├── a1a2-blocktramps-x86_64.s ├── a2a3-blocktramps-arm.s ├── a2a3-blocktramps-i386.s ├── a2a3-blocktramps-x86_64.s ├── arm64-asm.h ├── hashtable.h ├── hashtable2.h ├── hashtable2.mm ├── isa.h ├── llvm-AlignOf.h ├── llvm-DenseMap.h ├── llvm-DenseMapInfo.h ├── llvm-MathExtras.h ├── llvm-type_traits.h ├── maptable.h ├── maptable.mm ├── message.h ├── objc-abi.h ├── objc-accessors.mm ├── objc-api.h ├── objc-auto.h ├── objc-auto.mm ├── objc-block-trampolines.h ├── objc-block-trampolines.mm ├── objc-blocktramps-arm.s ├── objc-blocktramps-arm64.s ├── objc-blocktramps-i386.s ├── objc-blocktramps-x86_64.s ├── objc-cache-old.h ├── objc-cache-old.mm ├── objc-cache.h ├── objc-cache.mm ├── objc-class-old.mm ├── objc-class.h ├── objc-class.mm ├── objc-config.h ├── objc-env.h ├── objc-errors.mm ├── objc-exception.h ├── objc-exception.mm ├── objc-file-old.h ├── objc-file-old.mm ├── objc-file.h ├── objc-file.mm ├── objc-gdb.h ├── objc-initialize.h ├── objc-initialize.mm ├── objc-internal.h ├── objc-layout.mm ├── objc-load.h ├── objc-load.mm ├── objc-loadmethod.h ├── objc-loadmethod.mm ├── objc-lockdebug.h ├── objc-lockdebug.mm ├── objc-locks-new.h ├── objc-locks-old.h ├── objc-locks.h ├── objc-object.h ├── objc-opt.mm ├── objc-os.h ├── objc-os.mm ├── objc-private.h ├── objc-probes.d ├── objc-ptrauth.h ├── objc-references.h ├── objc-references.mm ├── objc-runtime-new.h ├── objc-runtime-new.mm ├── objc-runtime-old.h ├── objc-runtime-old.mm ├── objc-runtime.h ├── objc-runtime.mm ├── objc-sel-old.mm ├── objc-sel-set.h ├── objc-sel-set.mm ├── objc-sel-table.s ├── objc-sel.mm ├── objc-sync.h ├── objc-sync.mm ├── objc-typeencoding.mm ├── objc-weak.h ├── objc-weak.mm ├── objc.h ├── objcrt.c ├── objcrt.h └── runtime.h ├── unexported_symbols ├── version.bat └── version.rc /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/README.md -------------------------------------------------------------------------------- /objc4-779.1/APPLE_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/APPLE_LICENSE -------------------------------------------------------------------------------- /objc4-779.1/KCCommon/Block_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/KCCommon/Block_private.h -------------------------------------------------------------------------------- /objc4-779.1/KCCommon/CrashReporterClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/KCCommon/CrashReporterClient.h -------------------------------------------------------------------------------- /objc4-779.1/KCCommon/System/machine/cpu_capabilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/KCCommon/System/machine/cpu_capabilities.h -------------------------------------------------------------------------------- /objc4-779.1/KCCommon/System/pthread_machdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/KCCommon/System/pthread_machdep.h -------------------------------------------------------------------------------- /objc4-779.1/KCCommon/_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/KCCommon/_simple.h -------------------------------------------------------------------------------- /objc4-779.1/KCCommon/kern/restartable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/KCCommon/kern/restartable.h -------------------------------------------------------------------------------- /objc4-779.1/KCCommon/mach-o/dyld_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/KCCommon/mach-o/dyld_priv.h -------------------------------------------------------------------------------- /objc4-779.1/KCCommon/objc-shared-cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/KCCommon/objc-shared-cache.h -------------------------------------------------------------------------------- /objc4-779.1/KCCommon/os/base_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/KCCommon/os/base_private.h -------------------------------------------------------------------------------- /objc4-779.1/KCCommon/os/lock_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/KCCommon/os/lock_private.h -------------------------------------------------------------------------------- /objc4-779.1/KCCommon/os/tsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/KCCommon/os/tsd.h -------------------------------------------------------------------------------- /objc4-779.1/KCCommon/pthread/spinlock_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/KCCommon/pthread/spinlock_private.h -------------------------------------------------------------------------------- /objc4-779.1/KCCommon/pthread/tsd_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/KCCommon/pthread/tsd_private.h -------------------------------------------------------------------------------- /objc4-779.1/KCCommon/sys/reason.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/KCCommon/sys/reason.h -------------------------------------------------------------------------------- /objc4-779.1/KCObjcTest/TestObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/KCObjcTest/TestObject.h -------------------------------------------------------------------------------- /objc4-779.1/KCObjcTest/TestObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/KCObjcTest/TestObject.m -------------------------------------------------------------------------------- /objc4-779.1/KCObjcTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/KCObjcTest/main.m -------------------------------------------------------------------------------- /objc4-779.1/ReleaseNotes.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/ReleaseNotes.rtf -------------------------------------------------------------------------------- /objc4-779.1/interposable.txt: -------------------------------------------------------------------------------- 1 | _objc_release 2 | -------------------------------------------------------------------------------- /objc4-779.1/libobjc.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/libobjc.order -------------------------------------------------------------------------------- /objc4-779.1/markgc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/markgc.cpp -------------------------------------------------------------------------------- /objc4-779.1/objc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/objc.sln -------------------------------------------------------------------------------- /objc4-779.1/objc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/objc.vcproj -------------------------------------------------------------------------------- /objc4-779.1/objc.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/objc.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /objc4-779.1/objc.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/objc.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /objc4-779.1/objc.xcodeproj/xcshareddata/xcschemes/KCObjcTest.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/objc.xcodeproj/xcshareddata/xcschemes/KCObjcTest.xcscheme -------------------------------------------------------------------------------- /objc4-779.1/objcrt/objcrt.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/objcrt/objcrt.vcproj -------------------------------------------------------------------------------- /objc4-779.1/prebuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/prebuild.bat -------------------------------------------------------------------------------- /objc4-779.1/runtime/DenseMapExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/DenseMapExtras.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/Messengers.subproj/objc-msg-arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/Messengers.subproj/objc-msg-arm.s -------------------------------------------------------------------------------- /objc4-779.1/runtime/Messengers.subproj/objc-msg-arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/Messengers.subproj/objc-msg-arm64.s -------------------------------------------------------------------------------- /objc4-779.1/runtime/Messengers.subproj/objc-msg-i386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/Messengers.subproj/objc-msg-i386.s -------------------------------------------------------------------------------- /objc4-779.1/runtime/Messengers.subproj/objc-msg-simulator-i386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/Messengers.subproj/objc-msg-simulator-i386.s -------------------------------------------------------------------------------- /objc4-779.1/runtime/Messengers.subproj/objc-msg-simulator-x86_64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/Messengers.subproj/objc-msg-simulator-x86_64.s -------------------------------------------------------------------------------- /objc4-779.1/runtime/Messengers.subproj/objc-msg-win32.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/Messengers.subproj/objc-msg-win32.m -------------------------------------------------------------------------------- /objc4-779.1/runtime/Messengers.subproj/objc-msg-x86_64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/Messengers.subproj/objc-msg-x86_64.s -------------------------------------------------------------------------------- /objc4-779.1/runtime/Module/ObjectiveC.apinotes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/Module/ObjectiveC.apinotes -------------------------------------------------------------------------------- /objc4-779.1/runtime/Module/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/Module/module.modulemap -------------------------------------------------------------------------------- /objc4-779.1/runtime/NSObjCRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/NSObjCRuntime.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/NSObject-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/NSObject-internal.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/NSObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/NSObject.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/NSObject.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/NSObject.mm -------------------------------------------------------------------------------- /objc4-779.1/runtime/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/Object.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/Object.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/Object.mm -------------------------------------------------------------------------------- /objc4-779.1/runtime/OldClasses.subproj/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/OldClasses.subproj/List.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/OldClasses.subproj/List.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/OldClasses.subproj/List.m -------------------------------------------------------------------------------- /objc4-779.1/runtime/Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/Protocol.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/Protocol.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/Protocol.mm -------------------------------------------------------------------------------- /objc4-779.1/runtime/arm64-asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/arm64-asm.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/hashtable.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | -------------------------------------------------------------------------------- /objc4-779.1/runtime/hashtable2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/hashtable2.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/hashtable2.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/hashtable2.mm -------------------------------------------------------------------------------- /objc4-779.1/runtime/isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/isa.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/llvm-AlignOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/llvm-AlignOf.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/llvm-DenseMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/llvm-DenseMap.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/llvm-DenseMapInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/llvm-DenseMapInfo.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/llvm-DenseSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/llvm-DenseSet.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/llvm-MathExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/llvm-MathExtras.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/llvm-type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/llvm-type_traits.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/maptable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/maptable.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/maptable.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/maptable.mm -------------------------------------------------------------------------------- /objc4-779.1/runtime/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/message.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-abi.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-accessors.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-accessors.mm -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-api.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-auto.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-auto.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-auto.mm -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-block-trampolines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-block-trampolines.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-block-trampolines.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-block-trampolines.mm -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-blocktramps-arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-blocktramps-arm.s -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-blocktramps-arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-blocktramps-arm64.s -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-blocktramps-i386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-blocktramps-i386.s -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-blocktramps-x86_64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-blocktramps-x86_64.s -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-cache-old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-cache-old.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-cache-old.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-cache-old.mm -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-cache.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-cache.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-cache.mm -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-class-old.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-class-old.mm -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-class.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-class.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-class.mm -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-config.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-env.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-errors.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-errors.mm -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-exception.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-exception.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-exception.mm -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-file-old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-file-old.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-file-old.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-file-old.mm -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-file.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-file.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-file.mm -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-gdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-gdb.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-initialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-initialize.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-initialize.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-initialize.mm -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-internal.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-layout.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-layout.mm -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-load.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-load.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-load.mm -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-loadmethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-loadmethod.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-loadmethod.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-loadmethod.mm -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-lockdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-lockdebug.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-lockdebug.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-lockdebug.mm -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-locks-new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-locks-new.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-locks-old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-locks-old.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-locks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-locks.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-object.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-opt.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-opt.mm -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-os.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-os.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-os.mm -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-private.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-probes.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-probes.d -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-ptrauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-ptrauth.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-references.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-references.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-references.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-references.mm -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-runtime-new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-runtime-new.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-runtime-new.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-runtime-new.mm -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-runtime-old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-runtime-old.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-runtime-old.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-runtime-old.mm -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-runtime.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-runtime.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-runtime.mm -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-sel-old.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-sel-old.mm -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-sel-set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-sel-set.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-sel-set.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-sel-set.mm -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-sel-table.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-sel-table.s -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-sel.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-sel.mm -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-sync.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-sync.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-sync.mm -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-typeencoding.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-typeencoding.mm -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-weak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-weak.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc-weak.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc-weak.mm -------------------------------------------------------------------------------- /objc4-779.1/runtime/objc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objc.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/objcrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objcrt.c -------------------------------------------------------------------------------- /objc4-779.1/runtime/objcrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/objcrt.h -------------------------------------------------------------------------------- /objc4-779.1/runtime/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/runtime/runtime.h -------------------------------------------------------------------------------- /objc4-779.1/test/ARCBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/ARCBase.h -------------------------------------------------------------------------------- /objc4-779.1/test/ARCBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/ARCBase.m -------------------------------------------------------------------------------- /objc4-779.1/test/ARCLayouts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/ARCLayouts.m -------------------------------------------------------------------------------- /objc4-779.1/test/ARCLayoutsWithoutWeak.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/ARCLayoutsWithoutWeak.m -------------------------------------------------------------------------------- /objc4-779.1/test/ARCMRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/ARCMRC.h -------------------------------------------------------------------------------- /objc4-779.1/test/ARCMRC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/ARCMRC.m -------------------------------------------------------------------------------- /objc4-779.1/test/MRCARC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/MRCARC.h -------------------------------------------------------------------------------- /objc4-779.1/test/MRCARC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/MRCARC.m -------------------------------------------------------------------------------- /objc4-779.1/test/MRCBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/MRCBase.h -------------------------------------------------------------------------------- /objc4-779.1/test/MRCBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/MRCBase.m -------------------------------------------------------------------------------- /objc4-779.1/test/accessors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/accessors.m -------------------------------------------------------------------------------- /objc4-779.1/test/accessors2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/accessors2.m -------------------------------------------------------------------------------- /objc4-779.1/test/addMethod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/addMethod.m -------------------------------------------------------------------------------- /objc4-779.1/test/addMethods.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/addMethods.m -------------------------------------------------------------------------------- /objc4-779.1/test/addProtocol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/addProtocol.m -------------------------------------------------------------------------------- /objc4-779.1/test/applescriptobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/applescriptobjc.m -------------------------------------------------------------------------------- /objc4-779.1/test/arr-cast.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/arr-cast.m -------------------------------------------------------------------------------- /objc4-779.1/test/arr-weak.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/arr-weak.m -------------------------------------------------------------------------------- /objc4-779.1/test/asm-placeholder.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/asm-placeholder.s -------------------------------------------------------------------------------- /objc4-779.1/test/association-cf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/association-cf.m -------------------------------------------------------------------------------- /objc4-779.1/test/association.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/association.m -------------------------------------------------------------------------------- /objc4-779.1/test/associationForbidden.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/associationForbidden.h -------------------------------------------------------------------------------- /objc4-779.1/test/associationForbidden.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/associationForbidden.m -------------------------------------------------------------------------------- /objc4-779.1/test/associationForbidden2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/associationForbidden2.m -------------------------------------------------------------------------------- /objc4-779.1/test/associationForbidden3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/associationForbidden3.m -------------------------------------------------------------------------------- /objc4-779.1/test/associationForbidden4.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/associationForbidden4.m -------------------------------------------------------------------------------- /objc4-779.1/test/atomicProperty.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/atomicProperty.mm -------------------------------------------------------------------------------- /objc4-779.1/test/badAltHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/badAltHandler.m -------------------------------------------------------------------------------- /objc4-779.1/test/badCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/badCache.m -------------------------------------------------------------------------------- /objc4-779.1/test/badPool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/badPool.m -------------------------------------------------------------------------------- /objc4-779.1/test/badPoolCompat-ios-tvos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/badPoolCompat-ios-tvos.m -------------------------------------------------------------------------------- /objc4-779.1/test/badPoolCompat-macos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/badPoolCompat-macos.m -------------------------------------------------------------------------------- /objc4-779.1/test/badPoolCompat-watchos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/badPoolCompat-watchos.m -------------------------------------------------------------------------------- /objc4-779.1/test/badSuperclass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/badSuperclass.m -------------------------------------------------------------------------------- /objc4-779.1/test/badSuperclass2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/badSuperclass2.m -------------------------------------------------------------------------------- /objc4-779.1/test/badTagClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/badTagClass.m -------------------------------------------------------------------------------- /objc4-779.1/test/badTagIndex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/badTagIndex.m -------------------------------------------------------------------------------- /objc4-779.1/test/bigrc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/bigrc.m -------------------------------------------------------------------------------- /objc4-779.1/test/blocksAsImps.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/blocksAsImps.m -------------------------------------------------------------------------------- /objc4-779.1/test/bool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/bool.c -------------------------------------------------------------------------------- /objc4-779.1/test/cacheflush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/cacheflush.h -------------------------------------------------------------------------------- /objc4-779.1/test/cacheflush.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/cacheflush.m -------------------------------------------------------------------------------- /objc4-779.1/test/cacheflush0.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/cacheflush0.m -------------------------------------------------------------------------------- /objc4-779.1/test/cacheflush2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/cacheflush2.m -------------------------------------------------------------------------------- /objc4-779.1/test/cacheflush3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/cacheflush3.m -------------------------------------------------------------------------------- /objc4-779.1/test/category.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/category.m -------------------------------------------------------------------------------- /objc4-779.1/test/cdtors.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/cdtors.mm -------------------------------------------------------------------------------- /objc4-779.1/test/classgetclass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/classgetclass.m -------------------------------------------------------------------------------- /objc4-779.1/test/classname.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/classname.m -------------------------------------------------------------------------------- /objc4-779.1/test/classpair.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/classpair.mm -------------------------------------------------------------------------------- /objc4-779.1/test/classversion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/classversion.m -------------------------------------------------------------------------------- /objc4-779.1/test/concurrentcat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/concurrentcat.m -------------------------------------------------------------------------------- /objc4-779.1/test/concurrentcat_category.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/concurrentcat_category.m -------------------------------------------------------------------------------- /objc4-779.1/test/copyFixupHandler.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/copyFixupHandler.mm -------------------------------------------------------------------------------- /objc4-779.1/test/copyIvarList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/copyIvarList.m -------------------------------------------------------------------------------- /objc4-779.1/test/copyMethodList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/copyMethodList.m -------------------------------------------------------------------------------- /objc4-779.1/test/copyPropertyList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/copyPropertyList.m -------------------------------------------------------------------------------- /objc4-779.1/test/copyProtocolList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/copyProtocolList.m -------------------------------------------------------------------------------- /objc4-779.1/test/createInstance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/createInstance.m -------------------------------------------------------------------------------- /objc4-779.1/test/customrr-cat1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/customrr-cat1.m -------------------------------------------------------------------------------- /objc4-779.1/test/customrr-cat2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/customrr-cat2.m -------------------------------------------------------------------------------- /objc4-779.1/test/customrr-nsobject-awz.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/customrr-nsobject-awz.m -------------------------------------------------------------------------------- /objc4-779.1/test/customrr-nsobject-core.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/customrr-nsobject-core.m -------------------------------------------------------------------------------- /objc4-779.1/test/customrr-nsobject-none.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/customrr-nsobject-none.m -------------------------------------------------------------------------------- /objc4-779.1/test/customrr-nsobject-rr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/customrr-nsobject-rr.m -------------------------------------------------------------------------------- /objc4-779.1/test/customrr-nsobject-rrawz.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/customrr-nsobject-rrawz.m -------------------------------------------------------------------------------- /objc4-779.1/test/customrr-nsobject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/customrr-nsobject.m -------------------------------------------------------------------------------- /objc4-779.1/test/customrr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/customrr.m -------------------------------------------------------------------------------- /objc4-779.1/test/customrr2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/customrr2.m -------------------------------------------------------------------------------- /objc4-779.1/test/definitions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/definitions.c -------------------------------------------------------------------------------- /objc4-779.1/test/designatedinit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/designatedinit.m -------------------------------------------------------------------------------- /objc4-779.1/test/duplicateClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/duplicateClass.m -------------------------------------------------------------------------------- /objc4-779.1/test/duplicateProtocols.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/duplicateProtocols.m -------------------------------------------------------------------------------- /objc4-779.1/test/duplicatedClasses.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/duplicatedClasses.m -------------------------------------------------------------------------------- /objc4-779.1/test/evil-class-def.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/evil-class-def.m -------------------------------------------------------------------------------- /objc4-779.1/test/exc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/exc.m -------------------------------------------------------------------------------- /objc4-779.1/test/exchangeImp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/exchangeImp.m -------------------------------------------------------------------------------- /objc4-779.1/test/foreach.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/foreach.m -------------------------------------------------------------------------------- /objc4-779.1/test/fork.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/fork.m -------------------------------------------------------------------------------- /objc4-779.1/test/forkInitialize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/forkInitialize.m -------------------------------------------------------------------------------- /objc4-779.1/test/forkInitializeDisabled.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/forkInitializeDisabled.m -------------------------------------------------------------------------------- /objc4-779.1/test/forkInitializeSingleThreaded.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/forkInitializeSingleThreaded.m -------------------------------------------------------------------------------- /objc4-779.1/test/forward.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/forward.m -------------------------------------------------------------------------------- /objc4-779.1/test/forwardDefault.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/forwardDefault.m -------------------------------------------------------------------------------- /objc4-779.1/test/forwardDefaultStret.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/forwardDefaultStret.m -------------------------------------------------------------------------------- /objc4-779.1/test/future.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/future.h -------------------------------------------------------------------------------- /objc4-779.1/test/future.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/future.m -------------------------------------------------------------------------------- /objc4-779.1/test/future0.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/future0.m -------------------------------------------------------------------------------- /objc4-779.1/test/future2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/future2.m -------------------------------------------------------------------------------- /objc4-779.1/test/gc-main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gc-main.m -------------------------------------------------------------------------------- /objc4-779.1/test/gc.c: -------------------------------------------------------------------------------- 1 | int GC(void) { return 42; } 2 | -------------------------------------------------------------------------------- /objc4-779.1/test/gc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gc.m -------------------------------------------------------------------------------- /objc4-779.1/test/gcenforcer-app-aso.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcenforcer-app-aso.m -------------------------------------------------------------------------------- /objc4-779.1/test/gcenforcer-app-gc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcenforcer-app-gc.m -------------------------------------------------------------------------------- /objc4-779.1/test/gcenforcer-app-gcaso.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcenforcer-app-gcaso.m -------------------------------------------------------------------------------- /objc4-779.1/test/gcenforcer-app-gcaso2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcenforcer-app-gcaso2.m -------------------------------------------------------------------------------- /objc4-779.1/test/gcenforcer-app-gconly.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcenforcer-app-gconly.m -------------------------------------------------------------------------------- /objc4-779.1/test/gcenforcer-app-nogc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcenforcer-app-nogc.m -------------------------------------------------------------------------------- /objc4-779.1/test/gcenforcer-app-noobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcenforcer-app-noobjc.m -------------------------------------------------------------------------------- /objc4-779.1/test/gcenforcer-dylib-nogc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcenforcer-dylib-nogc.m -------------------------------------------------------------------------------- /objc4-779.1/test/gcenforcer-dylib-noobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcenforcer-dylib-noobjc.m -------------------------------------------------------------------------------- /objc4-779.1/test/gcenforcer-dylib-requiresgc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcenforcer-dylib-requiresgc.m -------------------------------------------------------------------------------- /objc4-779.1/test/gcenforcer-dylib-supportsgc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcenforcer-dylib-supportsgc.m -------------------------------------------------------------------------------- /objc4-779.1/test/gcenforcer-preflight.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcenforcer-preflight.m -------------------------------------------------------------------------------- /objc4-779.1/test/gcfiles/evil1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcfiles/evil1 -------------------------------------------------------------------------------- /objc4-779.1/test/gcfiles/i386-aso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcfiles/i386-aso -------------------------------------------------------------------------------- /objc4-779.1/test/gcfiles/i386-aso--x86_64-aso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcfiles/i386-aso--x86_64-aso -------------------------------------------------------------------------------- /objc4-779.1/test/gcfiles/i386-broken: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcfiles/i386-broken -------------------------------------------------------------------------------- /objc4-779.1/test/gcfiles/i386-broken--x86_64-gc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcfiles/i386-broken--x86_64-gc -------------------------------------------------------------------------------- /objc4-779.1/test/gcfiles/i386-broken--x86_64-nogc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcfiles/i386-broken--x86_64-nogc -------------------------------------------------------------------------------- /objc4-779.1/test/gcfiles/i386-gc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcfiles/i386-gc -------------------------------------------------------------------------------- /objc4-779.1/test/gcfiles/i386-gc--x86_64-broken: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcfiles/i386-gc--x86_64-broken -------------------------------------------------------------------------------- /objc4-779.1/test/gcfiles/i386-gc--x86_64-gc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcfiles/i386-gc--x86_64-gc -------------------------------------------------------------------------------- /objc4-779.1/test/gcfiles/i386-gc--x86_64-nogc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcfiles/i386-gc--x86_64-nogc -------------------------------------------------------------------------------- /objc4-779.1/test/gcfiles/i386-gcaso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcfiles/i386-gcaso -------------------------------------------------------------------------------- /objc4-779.1/test/gcfiles/i386-gcaso2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcfiles/i386-gcaso2 -------------------------------------------------------------------------------- /objc4-779.1/test/gcfiles/i386-gconly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcfiles/i386-gconly -------------------------------------------------------------------------------- /objc4-779.1/test/gcfiles/i386-nogc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcfiles/i386-nogc -------------------------------------------------------------------------------- /objc4-779.1/test/gcfiles/i386-nogc--x86_64-broken: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcfiles/i386-nogc--x86_64-broken -------------------------------------------------------------------------------- /objc4-779.1/test/gcfiles/i386-nogc--x86_64-gc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcfiles/i386-nogc--x86_64-gc -------------------------------------------------------------------------------- /objc4-779.1/test/gcfiles/i386-nogc--x86_64-nogc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcfiles/i386-nogc--x86_64-nogc -------------------------------------------------------------------------------- /objc4-779.1/test/gcfiles/i386-noobjc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcfiles/i386-noobjc -------------------------------------------------------------------------------- /objc4-779.1/test/gcfiles/libnogc.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcfiles/libnogc.dylib -------------------------------------------------------------------------------- /objc4-779.1/test/gcfiles/libnoobjc.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcfiles/libnoobjc.dylib -------------------------------------------------------------------------------- /objc4-779.1/test/gcfiles/librequiresgc.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcfiles/librequiresgc.dylib -------------------------------------------------------------------------------- /objc4-779.1/test/gcfiles/librequiresgc.fake.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcfiles/librequiresgc.fake.dylib -------------------------------------------------------------------------------- /objc4-779.1/test/gcfiles/libsupportsgc.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcfiles/libsupportsgc.dylib -------------------------------------------------------------------------------- /objc4-779.1/test/gcfiles/x86_64-aso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcfiles/x86_64-aso -------------------------------------------------------------------------------- /objc4-779.1/test/gcfiles/x86_64-broken: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcfiles/x86_64-broken -------------------------------------------------------------------------------- /objc4-779.1/test/gcfiles/x86_64-gc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcfiles/x86_64-gc -------------------------------------------------------------------------------- /objc4-779.1/test/gcfiles/x86_64-gcaso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcfiles/x86_64-gcaso -------------------------------------------------------------------------------- /objc4-779.1/test/gcfiles/x86_64-gcaso2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcfiles/x86_64-gcaso2 -------------------------------------------------------------------------------- /objc4-779.1/test/gcfiles/x86_64-gconly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcfiles/x86_64-gconly -------------------------------------------------------------------------------- /objc4-779.1/test/gcfiles/x86_64-nogc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcfiles/x86_64-nogc -------------------------------------------------------------------------------- /objc4-779.1/test/gcfiles/x86_64-noobjc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gcfiles/x86_64-noobjc -------------------------------------------------------------------------------- /objc4-779.1/test/gdb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/gdb.m -------------------------------------------------------------------------------- /objc4-779.1/test/getClassHook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/getClassHook.m -------------------------------------------------------------------------------- /objc4-779.1/test/getImageNameHook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/getImageNameHook.m -------------------------------------------------------------------------------- /objc4-779.1/test/getMethod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/getMethod.m -------------------------------------------------------------------------------- /objc4-779.1/test/get_task_allow_entitlement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/get_task_allow_entitlement.plist -------------------------------------------------------------------------------- /objc4-779.1/test/headers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/headers.c -------------------------------------------------------------------------------- /objc4-779.1/test/headers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/headers.sh -------------------------------------------------------------------------------- /objc4-779.1/test/imageorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/imageorder.h -------------------------------------------------------------------------------- /objc4-779.1/test/imageorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/imageorder.m -------------------------------------------------------------------------------- /objc4-779.1/test/imageorder1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/imageorder1.m -------------------------------------------------------------------------------- /objc4-779.1/test/imageorder2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/imageorder2.m -------------------------------------------------------------------------------- /objc4-779.1/test/imageorder3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/imageorder3.m -------------------------------------------------------------------------------- /objc4-779.1/test/imports.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/imports.c -------------------------------------------------------------------------------- /objc4-779.1/test/include-warnings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/include-warnings.c -------------------------------------------------------------------------------- /objc4-779.1/test/includes-objc2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/includes-objc2.c -------------------------------------------------------------------------------- /objc4-779.1/test/includes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/includes.c -------------------------------------------------------------------------------- /objc4-779.1/test/initialize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/initialize.m -------------------------------------------------------------------------------- /objc4-779.1/test/initializeVersusWeak.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/initializeVersusWeak.m -------------------------------------------------------------------------------- /objc4-779.1/test/instanceSize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/instanceSize.m -------------------------------------------------------------------------------- /objc4-779.1/test/isaValidation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/isaValidation.m -------------------------------------------------------------------------------- /objc4-779.1/test/ismeta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/ismeta.m -------------------------------------------------------------------------------- /objc4-779.1/test/ivar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/ivar.m -------------------------------------------------------------------------------- /objc4-779.1/test/ivarSlide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/ivarSlide.h -------------------------------------------------------------------------------- /objc4-779.1/test/ivarSlide.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/ivarSlide.m -------------------------------------------------------------------------------- /objc4-779.1/test/ivarSlide1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/ivarSlide1.m -------------------------------------------------------------------------------- /objc4-779.1/test/literals.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/literals.m -------------------------------------------------------------------------------- /objc4-779.1/test/load-image-notification-dylib.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/load-image-notification-dylib.m -------------------------------------------------------------------------------- /objc4-779.1/test/load-image-notification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/load-image-notification.m -------------------------------------------------------------------------------- /objc4-779.1/test/load-noobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/load-noobjc.m -------------------------------------------------------------------------------- /objc4-779.1/test/load-noobjc2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/load-noobjc2.m -------------------------------------------------------------------------------- /objc4-779.1/test/load-noobjc3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/load-noobjc3.m -------------------------------------------------------------------------------- /objc4-779.1/test/load-order.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/load-order.m -------------------------------------------------------------------------------- /objc4-779.1/test/load-order1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/load-order1.m -------------------------------------------------------------------------------- /objc4-779.1/test/load-order2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/load-order2.m -------------------------------------------------------------------------------- /objc4-779.1/test/load-order3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/load-order3.m -------------------------------------------------------------------------------- /objc4-779.1/test/load-parallel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/load-parallel.m -------------------------------------------------------------------------------- /objc4-779.1/test/load-parallel0.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/load-parallel0.m -------------------------------------------------------------------------------- /objc4-779.1/test/load-parallel00.m: -------------------------------------------------------------------------------- 1 | #include "test.h" 2 | atomic_int state; 3 | -------------------------------------------------------------------------------- /objc4-779.1/test/load-reentrant.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/load-reentrant.m -------------------------------------------------------------------------------- /objc4-779.1/test/load-reentrant2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/load-reentrant2.m -------------------------------------------------------------------------------- /objc4-779.1/test/load.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/load.m -------------------------------------------------------------------------------- /objc4-779.1/test/methodArgs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/methodArgs.m -------------------------------------------------------------------------------- /objc4-779.1/test/methodCacheLeaks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/methodCacheLeaks.m -------------------------------------------------------------------------------- /objc4-779.1/test/methodListSize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/methodListSize.m -------------------------------------------------------------------------------- /objc4-779.1/test/msgSend-performance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/msgSend-performance.m -------------------------------------------------------------------------------- /objc4-779.1/test/msgSend.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/msgSend.m -------------------------------------------------------------------------------- /objc4-779.1/test/nilAPIArgs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/nilAPIArgs.m -------------------------------------------------------------------------------- /objc4-779.1/test/nonpointerisa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/nonpointerisa.m -------------------------------------------------------------------------------- /objc4-779.1/test/nopool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/nopool.m -------------------------------------------------------------------------------- /objc4-779.1/test/nscdtors.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/nscdtors.mm -------------------------------------------------------------------------------- /objc4-779.1/test/nsexc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/nsexc.m -------------------------------------------------------------------------------- /objc4-779.1/test/nsobject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/nsobject.m -------------------------------------------------------------------------------- /objc4-779.1/test/nsprotocol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/nsprotocol.m -------------------------------------------------------------------------------- /objc4-779.1/test/objectCopy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/objectCopy.m -------------------------------------------------------------------------------- /objc4-779.1/test/property.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/property.m -------------------------------------------------------------------------------- /objc4-779.1/test/propertyDesc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/propertyDesc.m -------------------------------------------------------------------------------- /objc4-779.1/test/protocol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/protocol.m -------------------------------------------------------------------------------- /objc4-779.1/test/protocol_copyMethodList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/protocol_copyMethodList.m -------------------------------------------------------------------------------- /objc4-779.1/test/protocol_copyPropertyList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/protocol_copyPropertyList.m -------------------------------------------------------------------------------- /objc4-779.1/test/rawisa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/rawisa.m -------------------------------------------------------------------------------- /objc4-779.1/test/readClassPair.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/readClassPair.m -------------------------------------------------------------------------------- /objc4-779.1/test/realizedClassGenerationCount.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/realizedClassGenerationCount.m -------------------------------------------------------------------------------- /objc4-779.1/test/release-workaround.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/release-workaround.m -------------------------------------------------------------------------------- /objc4-779.1/test/resolve.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/resolve.m -------------------------------------------------------------------------------- /objc4-779.1/test/restartableRangesSynchronizeStress.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/restartableRangesSynchronizeStress.m -------------------------------------------------------------------------------- /objc4-779.1/test/rr-autorelease-fast.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/rr-autorelease-fast.m -------------------------------------------------------------------------------- /objc4-779.1/test/rr-autorelease-fastarc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/rr-autorelease-fastarc.m -------------------------------------------------------------------------------- /objc4-779.1/test/rr-autorelease-stacklogging.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/rr-autorelease-stacklogging.m -------------------------------------------------------------------------------- /objc4-779.1/test/rr-autorelease.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/rr-autorelease.m -------------------------------------------------------------------------------- /objc4-779.1/test/rr-autorelease2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/rr-autorelease2.m -------------------------------------------------------------------------------- /objc4-779.1/test/rr-nsautorelease.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/rr-nsautorelease.m -------------------------------------------------------------------------------- /objc4-779.1/test/rr-sidetable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/rr-sidetable.m -------------------------------------------------------------------------------- /objc4-779.1/test/runtime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/runtime.m -------------------------------------------------------------------------------- /objc4-779.1/test/sel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/sel.m -------------------------------------------------------------------------------- /objc4-779.1/test/setAssociatedObjectHook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/setAssociatedObjectHook.m -------------------------------------------------------------------------------- /objc4-779.1/test/setSuper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/setSuper.m -------------------------------------------------------------------------------- /objc4-779.1/test/subscripting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/subscripting.m -------------------------------------------------------------------------------- /objc4-779.1/test/super.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/super.m -------------------------------------------------------------------------------- /objc4-779.1/test/swift-class-def.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/swift-class-def.m -------------------------------------------------------------------------------- /objc4-779.1/test/swiftMetadataInitializer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/swiftMetadataInitializer.m -------------------------------------------------------------------------------- /objc4-779.1/test/swiftMetadataInitializerRealloc-dylib1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/swiftMetadataInitializerRealloc-dylib1.m -------------------------------------------------------------------------------- /objc4-779.1/test/swiftMetadataInitializerRealloc-dylib2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/swiftMetadataInitializerRealloc-dylib2.m -------------------------------------------------------------------------------- /objc4-779.1/test/swiftMetadataInitializerRealloc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/swiftMetadataInitializerRealloc.m -------------------------------------------------------------------------------- /objc4-779.1/test/synchronized-counter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/synchronized-counter.m -------------------------------------------------------------------------------- /objc4-779.1/test/synchronized-grid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/synchronized-grid.m -------------------------------------------------------------------------------- /objc4-779.1/test/synchronized.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/synchronized.m -------------------------------------------------------------------------------- /objc4-779.1/test/taggedNSPointers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/taggedNSPointers.m -------------------------------------------------------------------------------- /objc4-779.1/test/taggedPointers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/taggedPointers.m -------------------------------------------------------------------------------- /objc4-779.1/test/taggedPointersAllClasses.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/taggedPointersAllClasses.m -------------------------------------------------------------------------------- /objc4-779.1/test/taggedPointersDisabled.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/taggedPointersDisabled.m -------------------------------------------------------------------------------- /objc4-779.1/test/taggedPointersTagObfuscationDisabled.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/taggedPointersTagObfuscationDisabled.m -------------------------------------------------------------------------------- /objc4-779.1/test/tbi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/tbi.c -------------------------------------------------------------------------------- /objc4-779.1/test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/test.h -------------------------------------------------------------------------------- /objc4-779.1/test/test.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/test.pl -------------------------------------------------------------------------------- /objc4-779.1/test/testroot.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/testroot.i -------------------------------------------------------------------------------- /objc4-779.1/test/timeout.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/timeout.pl -------------------------------------------------------------------------------- /objc4-779.1/test/unload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/unload.h -------------------------------------------------------------------------------- /objc4-779.1/test/unload.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/unload.m -------------------------------------------------------------------------------- /objc4-779.1/test/unload2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/unload2.m -------------------------------------------------------------------------------- /objc4-779.1/test/unload3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/unload3.c -------------------------------------------------------------------------------- /objc4-779.1/test/unload4.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/unload4.m -------------------------------------------------------------------------------- /objc4-779.1/test/unwind.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/unwind.m -------------------------------------------------------------------------------- /objc4-779.1/test/weak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/weak.h -------------------------------------------------------------------------------- /objc4-779.1/test/weak.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/weak.m -------------------------------------------------------------------------------- /objc4-779.1/test/weak2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/weak2.m -------------------------------------------------------------------------------- /objc4-779.1/test/weakcopy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/weakcopy.m -------------------------------------------------------------------------------- /objc4-779.1/test/weakframework-missing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/weakframework-missing.m -------------------------------------------------------------------------------- /objc4-779.1/test/weakframework-not-missing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/weakframework-not-missing.m -------------------------------------------------------------------------------- /objc4-779.1/test/weakimport-missing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/weakimport-missing.m -------------------------------------------------------------------------------- /objc4-779.1/test/weakimport-not-missing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/weakimport-not-missing.m -------------------------------------------------------------------------------- /objc4-779.1/test/weakrace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/weakrace.m -------------------------------------------------------------------------------- /objc4-779.1/test/willInitializeClassFunc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/willInitializeClassFunc.m -------------------------------------------------------------------------------- /objc4-779.1/test/zone.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/test/zone.m -------------------------------------------------------------------------------- /objc4-779.1/unexported_symbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/unexported_symbols -------------------------------------------------------------------------------- /objc4-779.1/version.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/version.bat -------------------------------------------------------------------------------- /objc4-779.1/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-779.1/version.rc -------------------------------------------------------------------------------- /objc4-runtime-750/APPLE_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/APPLE_LICENSE -------------------------------------------------------------------------------- /objc4-runtime-750/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/README.md -------------------------------------------------------------------------------- /objc4-runtime-750/ReleaseNotes.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/ReleaseNotes.rtf -------------------------------------------------------------------------------- /objc4-runtime-750/debug-objc/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/debug-objc/main.m -------------------------------------------------------------------------------- /objc4-runtime-750/include/Block_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/include/Block_private.h -------------------------------------------------------------------------------- /objc4-runtime-750/include/CrashReporterClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/include/CrashReporterClient.h -------------------------------------------------------------------------------- /objc4-runtime-750/include/System/machine/cpu_capabilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/include/System/machine/cpu_capabilities.h -------------------------------------------------------------------------------- /objc4-runtime-750/include/System/pthread_machdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/include/System/pthread_machdep.h -------------------------------------------------------------------------------- /objc4-runtime-750/include/_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/include/_simple.h -------------------------------------------------------------------------------- /objc4-runtime-750/include/mach-o/dyld_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/include/mach-o/dyld_priv.h -------------------------------------------------------------------------------- /objc4-runtime-750/include/objc-shared-cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/include/objc-shared-cache.h -------------------------------------------------------------------------------- /objc4-runtime-750/include/os/base_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/include/os/base_private.h -------------------------------------------------------------------------------- /objc4-runtime-750/include/os/lock_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/include/os/lock_private.h -------------------------------------------------------------------------------- /objc4-runtime-750/include/os/tsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/include/os/tsd.h -------------------------------------------------------------------------------- /objc4-runtime-750/include/pthread/qos_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/include/pthread/qos_private.h -------------------------------------------------------------------------------- /objc4-runtime-750/include/pthread/spinlock_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/include/pthread/spinlock_private.h -------------------------------------------------------------------------------- /objc4-runtime-750/include/pthread/tsd_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/include/pthread/tsd_private.h -------------------------------------------------------------------------------- /objc4-runtime-750/include/pthread/workqueue_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/include/pthread/workqueue_private.h -------------------------------------------------------------------------------- /objc4-runtime-750/include/sys/qos_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/include/sys/qos_private.h -------------------------------------------------------------------------------- /objc4-runtime-750/include/sys/reason.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/include/sys/reason.h -------------------------------------------------------------------------------- /objc4-runtime-750/interposable.txt: -------------------------------------------------------------------------------- 1 | _objc_release 2 | -------------------------------------------------------------------------------- /objc4-runtime-750/libobjc.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/libobjc.order -------------------------------------------------------------------------------- /objc4-runtime-750/markgc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/markgc.cpp -------------------------------------------------------------------------------- /objc4-runtime-750/objc-debug/NSObject+Test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/objc-debug/NSObject+Test.h -------------------------------------------------------------------------------- /objc4-runtime-750/objc-debug/NSObject+Test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/objc-debug/NSObject+Test.m -------------------------------------------------------------------------------- /objc4-runtime-750/objc-debug/TestObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/objc-debug/TestObject.h -------------------------------------------------------------------------------- /objc4-runtime-750/objc-debug/TestObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/objc-debug/TestObject.m -------------------------------------------------------------------------------- /objc4-runtime-750/objc-debug/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/objc-debug/main.m -------------------------------------------------------------------------------- /objc4-runtime-750/objc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/objc.sln -------------------------------------------------------------------------------- /objc4-runtime-750/objc.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/objc.suo -------------------------------------------------------------------------------- /objc4-runtime-750/objc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/objc.vcproj -------------------------------------------------------------------------------- /objc4-runtime-750/objc.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/objc.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /objc4-runtime-750/objc.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/objc.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /objc4-runtime-750/objcrt/objcrt.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/objcrt/objcrt.vcproj -------------------------------------------------------------------------------- /objc4-runtime-750/prebuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/prebuild.bat -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/Messengers.subproj/objc-msg-arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/Messengers.subproj/objc-msg-arm.s -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/Messengers.subproj/objc-msg-arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/Messengers.subproj/objc-msg-arm64.s -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/Messengers.subproj/objc-msg-i386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/Messengers.subproj/objc-msg-i386.s -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/Messengers.subproj/objc-msg-simulator-i386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/Messengers.subproj/objc-msg-simulator-i386.s -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/Messengers.subproj/objc-msg-simulator-x86_64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/Messengers.subproj/objc-msg-simulator-x86_64.s -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/Messengers.subproj/objc-msg-win32.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/Messengers.subproj/objc-msg-win32.m -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/Messengers.subproj/objc-msg-x86_64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/Messengers.subproj/objc-msg-x86_64.s -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/Module/ObjectiveC.apinotes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/Module/ObjectiveC.apinotes -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/Module/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/Module/module.modulemap -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/NSObjCRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/NSObjCRuntime.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/NSObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/NSObject.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/NSObject.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/NSObject.mm -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/Object.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/Object.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/Object.mm -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/OldClasses.subproj/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/OldClasses.subproj/List.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/OldClasses.subproj/List.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/OldClasses.subproj/List.m -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/Protocol.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/Protocol.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/Protocol.mm -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/a1a2-blocktramps-arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/a1a2-blocktramps-arm.s -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/a1a2-blocktramps-arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/a1a2-blocktramps-arm64.s -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/a1a2-blocktramps-i386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/a1a2-blocktramps-i386.s -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/a1a2-blocktramps-x86_64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/a1a2-blocktramps-x86_64.s -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/a2a3-blocktramps-arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/a2a3-blocktramps-arm.s -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/a2a3-blocktramps-i386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/a2a3-blocktramps-i386.s -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/a2a3-blocktramps-x86_64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/a2a3-blocktramps-x86_64.s -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/arm64-asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/arm64-asm.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/hashtable.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/hashtable2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/hashtable2.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/hashtable2.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/hashtable2.mm -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/isa.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/llvm-AlignOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/llvm-AlignOf.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/llvm-DenseMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/llvm-DenseMap.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/llvm-DenseMapInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/llvm-DenseMapInfo.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/llvm-MathExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/llvm-MathExtras.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/llvm-type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/llvm-type_traits.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/maptable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/maptable.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/maptable.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/maptable.mm -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/message.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-abi.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-accessors.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-accessors.mm -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-api.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-auto.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-auto.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-auto.mm -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-block-trampolines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-block-trampolines.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-block-trampolines.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-block-trampolines.mm -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-blocktramps-arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-blocktramps-arm.s -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-blocktramps-arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-blocktramps-arm64.s -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-blocktramps-i386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-blocktramps-i386.s -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-blocktramps-x86_64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-blocktramps-x86_64.s -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-cache-old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-cache-old.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-cache-old.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-cache-old.mm -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-cache.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-cache.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-cache.mm -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-class-old.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-class-old.mm -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-class.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-class.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-class.mm -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-config.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-env.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-errors.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-errors.mm -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-exception.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-exception.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-exception.mm -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-file-old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-file-old.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-file-old.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-file-old.mm -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-file.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-file.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-file.mm -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-gdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-gdb.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-initialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-initialize.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-initialize.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-initialize.mm -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-internal.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-layout.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-layout.mm -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-load.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-load.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-load.mm -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-loadmethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-loadmethod.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-loadmethod.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-loadmethod.mm -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-lockdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-lockdebug.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-lockdebug.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-lockdebug.mm -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-locks-new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-locks-new.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-locks-old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-locks-old.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-locks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-locks.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-object.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-opt.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-opt.mm -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-os.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-os.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-os.mm -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-private.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-probes.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-probes.d -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-ptrauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-ptrauth.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-references.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-references.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-references.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-references.mm -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-runtime-new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-runtime-new.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-runtime-new.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-runtime-new.mm -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-runtime-old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-runtime-old.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-runtime-old.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-runtime-old.mm -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-runtime.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-runtime.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-runtime.mm -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-sel-old.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-sel-old.mm -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-sel-set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-sel-set.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-sel-set.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-sel-set.mm -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-sel-table.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-sel-table.s -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-sel.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-sel.mm -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-sync.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-sync.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-sync.mm -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-typeencoding.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-typeencoding.mm -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-weak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-weak.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc-weak.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc-weak.mm -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objc.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objcrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objcrt.c -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/objcrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/objcrt.h -------------------------------------------------------------------------------- /objc4-runtime-750/runtime/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/runtime/runtime.h -------------------------------------------------------------------------------- /objc4-runtime-750/unexported_symbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/unexported_symbols -------------------------------------------------------------------------------- /objc4-runtime-750/version.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/version.bat -------------------------------------------------------------------------------- /objc4-runtime-750/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperErenLiu/RuntimeAnalyze/HEAD/objc4-runtime-750/version.rc --------------------------------------------------------------------------------