├── .gitignore ├── 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 ├── auto_zone.h ├── dispatch │ ├── benchmark.h │ ├── data_private.h │ ├── io_private.h │ ├── layout_private.h │ ├── mach_private.h │ ├── private.h │ ├── queue_private.h │ └── source_private.h ├── mach-o │ └── dyld_priv.h ├── objc-shared-cache.h ├── os │ └── tsd.h ├── pthread │ ├── qos_private.h │ ├── spinlock_private.h │ ├── tsd_private.h │ └── workqueue_private.h ├── sys │ └── qos_private.h └── vproc_priv.h ├── libobjc.order ├── markgc.cpp ├── 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 ├── 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 ├── hashtable.h ├── hashtable2.h ├── hashtable2.mm ├── 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.h ├── objc-accessors.mm ├── objc-api.h ├── objc-auto-dump.h ├── objc-auto-dump.mm ├── objc-auto.h ├── objc-auto.mm ├── objc-block-trampolines.mm ├── 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-externalref.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-object.h ├── objc-opt.mm ├── objc-os.h ├── objc-os.mm ├── objc-private.h ├── objc-probes.d ├── 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 ├── ARRBase.h ├── ARRBase.m ├── ARRLayouts.m ├── ARRMRR.h ├── ARRMRR.m ├── MRRARR.h ├── MRRARR.m ├── MRRBase.h ├── MRRBase.m ├── Makefile ├── accessors.m ├── accessors2.m ├── addMethod.m ├── addProtocol.m ├── applescriptobjc.m ├── applescriptobjc2.m ├── arr-cast.m ├── arr-weak.m ├── association-cf.m ├── association.m ├── atomicProperty.mm ├── badAltHandler.m ├── badCache.m ├── badTagClass.m ├── badTagIndex.m ├── bigrc.m ├── blocksAsImps.m ├── cacheflush.h ├── cacheflush.m ├── cacheflush0.m ├── cacheflush2.m ├── cacheflush3.m ├── category.m ├── cdtors.mm ├── classgetclass.m ├── classname.m ├── classpair.m ├── classversion.m ├── concurrentcat.m ├── concurrentcat_category.m ├── copyIvarList.m ├── copyMethodList.m ├── copyPropertyList.m ├── createInstance.m ├── customrr-cat1.m ├── customrr-cat2.m ├── customrr-nsobject-awz.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 ├── duplicatedClasses.m ├── evil-category-0.m ├── evil-category-00.m ├── evil-category-000.m ├── evil-category-1.m ├── evil-category-2.m ├── evil-category-3.m ├── evil-category-4.m ├── evil-category-def.m ├── evil-class-0.m ├── evil-class-00.m ├── evil-class-000.m ├── evil-class-1.m ├── evil-class-2.m ├── evil-class-3.m ├── evil-class-4.m ├── evil-class-5.m ├── evil-class-def.m ├── evil-main.m ├── exc.m ├── exchangeImp.m ├── foreach.m ├── forward.m ├── forwardDefault.m ├── forwardDefaultStret.m ├── future.h ├── future.m ├── future0.m ├── future2.m ├── gc-main.m ├── gc.c ├── gc.m ├── gcenforcer-nogc-1.m ├── gcenforcer-nogc-2.m ├── gcenforcer-noobjc.m ├── gcenforcer-requiresgc-1.m ├── gcenforcer-requiresgc-2.m ├── gcenforcer-supportsgc.m ├── gcenforcer.m ├── gdb.m ├── getMethod.m ├── ignoredSelector.m ├── ignoredSelector2.m ├── imageorder.h ├── imageorder.m ├── imageorder1.m ├── imageorder2.m ├── imageorder3.m ├── includes.c ├── initialize.m ├── initializeVersusWeak.m ├── instanceSize.m ├── ismeta.m ├── ivar.m ├── ivarSlide.h ├── ivarSlide.m ├── ivarSlide1.m ├── layout.m ├── literals.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 ├── methodListSize.m ├── method_getName.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 ├── protocol_cw.m ├── rawisa.m ├── readClassPair.m ├── resolve.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 ├── setSuper.m ├── subscripting.m ├── super.m ├── synchronized-counter.m ├── synchronized-grid.m ├── synchronized.m ├── taggedNSPointers.m ├── taggedPointers.m ├── taggedPointersDisabled.m ├── tbi.c ├── test.h ├── test.pl ├── testroot.i ├── unload.h ├── unload.m ├── unload2.m ├── unload3.c ├── unload4.m ├── unwind.m ├── verify-exports.pl ├── weak.h ├── weak.m ├── weak2.m ├── weakcopy.m ├── weakframework-missing.m ├── weakframework-not-missing.m ├── weakimport-missing.m ├── weakimport-not-missing.m ├── weakrace.m ├── xref.m └── zone.m ├── unexported_symbols ├── version.bat └── version.rc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/.gitignore -------------------------------------------------------------------------------- /APPLE_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/APPLE_LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseNotes.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/ReleaseNotes.rtf -------------------------------------------------------------------------------- /debug-objc/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/debug-objc/main.m -------------------------------------------------------------------------------- /include/Block_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/include/Block_private.h -------------------------------------------------------------------------------- /include/CrashReporterClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/include/CrashReporterClient.h -------------------------------------------------------------------------------- /include/System/machine/cpu_capabilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/include/System/machine/cpu_capabilities.h -------------------------------------------------------------------------------- /include/System/pthread_machdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/include/System/pthread_machdep.h -------------------------------------------------------------------------------- /include/_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/include/_simple.h -------------------------------------------------------------------------------- /include/auto_zone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/include/auto_zone.h -------------------------------------------------------------------------------- /include/dispatch/benchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/include/dispatch/benchmark.h -------------------------------------------------------------------------------- /include/dispatch/data_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/include/dispatch/data_private.h -------------------------------------------------------------------------------- /include/dispatch/io_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/include/dispatch/io_private.h -------------------------------------------------------------------------------- /include/dispatch/layout_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/include/dispatch/layout_private.h -------------------------------------------------------------------------------- /include/dispatch/mach_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/include/dispatch/mach_private.h -------------------------------------------------------------------------------- /include/dispatch/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/include/dispatch/private.h -------------------------------------------------------------------------------- /include/dispatch/queue_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/include/dispatch/queue_private.h -------------------------------------------------------------------------------- /include/dispatch/source_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/include/dispatch/source_private.h -------------------------------------------------------------------------------- /include/mach-o/dyld_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/include/mach-o/dyld_priv.h -------------------------------------------------------------------------------- /include/objc-shared-cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/include/objc-shared-cache.h -------------------------------------------------------------------------------- /include/os/tsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/include/os/tsd.h -------------------------------------------------------------------------------- /include/pthread/qos_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/include/pthread/qos_private.h -------------------------------------------------------------------------------- /include/pthread/spinlock_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/include/pthread/spinlock_private.h -------------------------------------------------------------------------------- /include/pthread/tsd_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/include/pthread/tsd_private.h -------------------------------------------------------------------------------- /include/pthread/workqueue_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/include/pthread/workqueue_private.h -------------------------------------------------------------------------------- /include/sys/qos_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/include/sys/qos_private.h -------------------------------------------------------------------------------- /include/vproc_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/include/vproc_priv.h -------------------------------------------------------------------------------- /libobjc.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/libobjc.order -------------------------------------------------------------------------------- /markgc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/markgc.cpp -------------------------------------------------------------------------------- /objc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/objc.sln -------------------------------------------------------------------------------- /objc.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/objc.suo -------------------------------------------------------------------------------- /objc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/objc.vcproj -------------------------------------------------------------------------------- /objc.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/objc.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /objc.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/objc.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /objcrt/objcrt.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/objcrt/objcrt.vcproj -------------------------------------------------------------------------------- /prebuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/prebuild.bat -------------------------------------------------------------------------------- /runtime/Messengers.subproj/objc-msg-arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/Messengers.subproj/objc-msg-arm.s -------------------------------------------------------------------------------- /runtime/Messengers.subproj/objc-msg-arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/Messengers.subproj/objc-msg-arm64.s -------------------------------------------------------------------------------- /runtime/Messengers.subproj/objc-msg-i386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/Messengers.subproj/objc-msg-i386.s -------------------------------------------------------------------------------- /runtime/Messengers.subproj/objc-msg-simulator-i386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/Messengers.subproj/objc-msg-simulator-i386.s -------------------------------------------------------------------------------- /runtime/Messengers.subproj/objc-msg-simulator-x86_64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/Messengers.subproj/objc-msg-simulator-x86_64.s -------------------------------------------------------------------------------- /runtime/Messengers.subproj/objc-msg-win32.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/Messengers.subproj/objc-msg-win32.m -------------------------------------------------------------------------------- /runtime/Messengers.subproj/objc-msg-x86_64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/Messengers.subproj/objc-msg-x86_64.s -------------------------------------------------------------------------------- /runtime/NSObjCRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/NSObjCRuntime.h -------------------------------------------------------------------------------- /runtime/NSObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/NSObject.h -------------------------------------------------------------------------------- /runtime/NSObject.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/NSObject.mm -------------------------------------------------------------------------------- /runtime/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/Object.h -------------------------------------------------------------------------------- /runtime/Object.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/Object.mm -------------------------------------------------------------------------------- /runtime/OldClasses.subproj/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/OldClasses.subproj/List.h -------------------------------------------------------------------------------- /runtime/OldClasses.subproj/List.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/OldClasses.subproj/List.m -------------------------------------------------------------------------------- /runtime/Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/Protocol.h -------------------------------------------------------------------------------- /runtime/Protocol.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/Protocol.mm -------------------------------------------------------------------------------- /runtime/a1a2-blocktramps-arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/a1a2-blocktramps-arm.s -------------------------------------------------------------------------------- /runtime/a1a2-blocktramps-arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/a1a2-blocktramps-arm64.s -------------------------------------------------------------------------------- /runtime/a1a2-blocktramps-i386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/a1a2-blocktramps-i386.s -------------------------------------------------------------------------------- /runtime/a1a2-blocktramps-x86_64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/a1a2-blocktramps-x86_64.s -------------------------------------------------------------------------------- /runtime/a2a3-blocktramps-arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/a2a3-blocktramps-arm.s -------------------------------------------------------------------------------- /runtime/a2a3-blocktramps-i386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/a2a3-blocktramps-i386.s -------------------------------------------------------------------------------- /runtime/a2a3-blocktramps-x86_64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/a2a3-blocktramps-x86_64.s -------------------------------------------------------------------------------- /runtime/hashtable.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | -------------------------------------------------------------------------------- /runtime/hashtable2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/hashtable2.h -------------------------------------------------------------------------------- /runtime/hashtable2.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/hashtable2.mm -------------------------------------------------------------------------------- /runtime/llvm-AlignOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/llvm-AlignOf.h -------------------------------------------------------------------------------- /runtime/llvm-DenseMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/llvm-DenseMap.h -------------------------------------------------------------------------------- /runtime/llvm-DenseMapInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/llvm-DenseMapInfo.h -------------------------------------------------------------------------------- /runtime/llvm-MathExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/llvm-MathExtras.h -------------------------------------------------------------------------------- /runtime/llvm-type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/llvm-type_traits.h -------------------------------------------------------------------------------- /runtime/maptable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/maptable.h -------------------------------------------------------------------------------- /runtime/maptable.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/maptable.mm -------------------------------------------------------------------------------- /runtime/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/message.h -------------------------------------------------------------------------------- /runtime/objc-abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-abi.h -------------------------------------------------------------------------------- /runtime/objc-accessors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-accessors.h -------------------------------------------------------------------------------- /runtime/objc-accessors.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-accessors.mm -------------------------------------------------------------------------------- /runtime/objc-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-api.h -------------------------------------------------------------------------------- /runtime/objc-auto-dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-auto-dump.h -------------------------------------------------------------------------------- /runtime/objc-auto-dump.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-auto-dump.mm -------------------------------------------------------------------------------- /runtime/objc-auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-auto.h -------------------------------------------------------------------------------- /runtime/objc-auto.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-auto.mm -------------------------------------------------------------------------------- /runtime/objc-block-trampolines.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-block-trampolines.mm -------------------------------------------------------------------------------- /runtime/objc-cache-old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-cache-old.h -------------------------------------------------------------------------------- /runtime/objc-cache-old.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-cache-old.mm -------------------------------------------------------------------------------- /runtime/objc-cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-cache.h -------------------------------------------------------------------------------- /runtime/objc-cache.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-cache.mm -------------------------------------------------------------------------------- /runtime/objc-class-old.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-class-old.mm -------------------------------------------------------------------------------- /runtime/objc-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-class.h -------------------------------------------------------------------------------- /runtime/objc-class.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-class.mm -------------------------------------------------------------------------------- /runtime/objc-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-config.h -------------------------------------------------------------------------------- /runtime/objc-env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-env.h -------------------------------------------------------------------------------- /runtime/objc-errors.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-errors.mm -------------------------------------------------------------------------------- /runtime/objc-exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-exception.h -------------------------------------------------------------------------------- /runtime/objc-exception.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-exception.mm -------------------------------------------------------------------------------- /runtime/objc-externalref.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-externalref.mm -------------------------------------------------------------------------------- /runtime/objc-file-old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-file-old.h -------------------------------------------------------------------------------- /runtime/objc-file-old.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-file-old.mm -------------------------------------------------------------------------------- /runtime/objc-file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-file.h -------------------------------------------------------------------------------- /runtime/objc-file.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-file.mm -------------------------------------------------------------------------------- /runtime/objc-gdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-gdb.h -------------------------------------------------------------------------------- /runtime/objc-initialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-initialize.h -------------------------------------------------------------------------------- /runtime/objc-initialize.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-initialize.mm -------------------------------------------------------------------------------- /runtime/objc-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-internal.h -------------------------------------------------------------------------------- /runtime/objc-layout.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-layout.mm -------------------------------------------------------------------------------- /runtime/objc-load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-load.h -------------------------------------------------------------------------------- /runtime/objc-load.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-load.mm -------------------------------------------------------------------------------- /runtime/objc-loadmethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-loadmethod.h -------------------------------------------------------------------------------- /runtime/objc-loadmethod.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-loadmethod.mm -------------------------------------------------------------------------------- /runtime/objc-lockdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-lockdebug.h -------------------------------------------------------------------------------- /runtime/objc-lockdebug.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-lockdebug.mm -------------------------------------------------------------------------------- /runtime/objc-object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-object.h -------------------------------------------------------------------------------- /runtime/objc-opt.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-opt.mm -------------------------------------------------------------------------------- /runtime/objc-os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-os.h -------------------------------------------------------------------------------- /runtime/objc-os.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-os.mm -------------------------------------------------------------------------------- /runtime/objc-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-private.h -------------------------------------------------------------------------------- /runtime/objc-probes.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-probes.d -------------------------------------------------------------------------------- /runtime/objc-references.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-references.h -------------------------------------------------------------------------------- /runtime/objc-references.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-references.mm -------------------------------------------------------------------------------- /runtime/objc-runtime-new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-runtime-new.h -------------------------------------------------------------------------------- /runtime/objc-runtime-new.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-runtime-new.mm -------------------------------------------------------------------------------- /runtime/objc-runtime-old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-runtime-old.h -------------------------------------------------------------------------------- /runtime/objc-runtime-old.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-runtime-old.mm -------------------------------------------------------------------------------- /runtime/objc-runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-runtime.h -------------------------------------------------------------------------------- /runtime/objc-runtime.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-runtime.mm -------------------------------------------------------------------------------- /runtime/objc-sel-old.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-sel-old.mm -------------------------------------------------------------------------------- /runtime/objc-sel-set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-sel-set.h -------------------------------------------------------------------------------- /runtime/objc-sel-set.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-sel-set.mm -------------------------------------------------------------------------------- /runtime/objc-sel-table.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-sel-table.s -------------------------------------------------------------------------------- /runtime/objc-sel.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-sel.mm -------------------------------------------------------------------------------- /runtime/objc-sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-sync.h -------------------------------------------------------------------------------- /runtime/objc-sync.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-sync.mm -------------------------------------------------------------------------------- /runtime/objc-typeencoding.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-typeencoding.mm -------------------------------------------------------------------------------- /runtime/objc-weak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-weak.h -------------------------------------------------------------------------------- /runtime/objc-weak.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc-weak.mm -------------------------------------------------------------------------------- /runtime/objc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objc.h -------------------------------------------------------------------------------- /runtime/objcrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objcrt.c -------------------------------------------------------------------------------- /runtime/objcrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/objcrt.h -------------------------------------------------------------------------------- /runtime/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/runtime/runtime.h -------------------------------------------------------------------------------- /test/ARRBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/ARRBase.h -------------------------------------------------------------------------------- /test/ARRBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/ARRBase.m -------------------------------------------------------------------------------- /test/ARRLayouts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/ARRLayouts.m -------------------------------------------------------------------------------- /test/ARRMRR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/ARRMRR.h -------------------------------------------------------------------------------- /test/ARRMRR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/ARRMRR.m -------------------------------------------------------------------------------- /test/MRRARR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/MRRARR.h -------------------------------------------------------------------------------- /test/MRRARR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/MRRARR.m -------------------------------------------------------------------------------- /test/MRRBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/MRRBase.h -------------------------------------------------------------------------------- /test/MRRBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/MRRBase.m -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/accessors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/accessors.m -------------------------------------------------------------------------------- /test/accessors2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/accessors2.m -------------------------------------------------------------------------------- /test/addMethod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/addMethod.m -------------------------------------------------------------------------------- /test/addProtocol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/addProtocol.m -------------------------------------------------------------------------------- /test/applescriptobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/applescriptobjc.m -------------------------------------------------------------------------------- /test/applescriptobjc2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/applescriptobjc2.m -------------------------------------------------------------------------------- /test/arr-cast.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/arr-cast.m -------------------------------------------------------------------------------- /test/arr-weak.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/arr-weak.m -------------------------------------------------------------------------------- /test/association-cf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/association-cf.m -------------------------------------------------------------------------------- /test/association.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/association.m -------------------------------------------------------------------------------- /test/atomicProperty.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/atomicProperty.mm -------------------------------------------------------------------------------- /test/badAltHandler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/badAltHandler.m -------------------------------------------------------------------------------- /test/badCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/badCache.m -------------------------------------------------------------------------------- /test/badTagClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/badTagClass.m -------------------------------------------------------------------------------- /test/badTagIndex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/badTagIndex.m -------------------------------------------------------------------------------- /test/bigrc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/bigrc.m -------------------------------------------------------------------------------- /test/blocksAsImps.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/blocksAsImps.m -------------------------------------------------------------------------------- /test/cacheflush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/cacheflush.h -------------------------------------------------------------------------------- /test/cacheflush.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/cacheflush.m -------------------------------------------------------------------------------- /test/cacheflush0.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/cacheflush0.m -------------------------------------------------------------------------------- /test/cacheflush2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/cacheflush2.m -------------------------------------------------------------------------------- /test/cacheflush3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/cacheflush3.m -------------------------------------------------------------------------------- /test/category.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/category.m -------------------------------------------------------------------------------- /test/cdtors.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/cdtors.mm -------------------------------------------------------------------------------- /test/classgetclass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/classgetclass.m -------------------------------------------------------------------------------- /test/classname.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/classname.m -------------------------------------------------------------------------------- /test/classpair.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/classpair.m -------------------------------------------------------------------------------- /test/classversion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/classversion.m -------------------------------------------------------------------------------- /test/concurrentcat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/concurrentcat.m -------------------------------------------------------------------------------- /test/concurrentcat_category.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/concurrentcat_category.m -------------------------------------------------------------------------------- /test/copyIvarList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/copyIvarList.m -------------------------------------------------------------------------------- /test/copyMethodList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/copyMethodList.m -------------------------------------------------------------------------------- /test/copyPropertyList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/copyPropertyList.m -------------------------------------------------------------------------------- /test/createInstance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/createInstance.m -------------------------------------------------------------------------------- /test/customrr-cat1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/customrr-cat1.m -------------------------------------------------------------------------------- /test/customrr-cat2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/customrr-cat2.m -------------------------------------------------------------------------------- /test/customrr-nsobject-awz.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/customrr-nsobject-awz.m -------------------------------------------------------------------------------- /test/customrr-nsobject-none.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/customrr-nsobject-none.m -------------------------------------------------------------------------------- /test/customrr-nsobject-rr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/customrr-nsobject-rr.m -------------------------------------------------------------------------------- /test/customrr-nsobject-rrawz.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/customrr-nsobject-rrawz.m -------------------------------------------------------------------------------- /test/customrr-nsobject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/customrr-nsobject.m -------------------------------------------------------------------------------- /test/customrr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/customrr.m -------------------------------------------------------------------------------- /test/customrr2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/customrr2.m -------------------------------------------------------------------------------- /test/definitions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/definitions.c -------------------------------------------------------------------------------- /test/designatedinit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/designatedinit.m -------------------------------------------------------------------------------- /test/duplicateClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/duplicateClass.m -------------------------------------------------------------------------------- /test/duplicatedClasses.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/duplicatedClasses.m -------------------------------------------------------------------------------- /test/evil-category-0.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/evil-category-0.m -------------------------------------------------------------------------------- /test/evil-category-00.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/evil-category-00.m -------------------------------------------------------------------------------- /test/evil-category-000.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/evil-category-000.m -------------------------------------------------------------------------------- /test/evil-category-1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/evil-category-1.m -------------------------------------------------------------------------------- /test/evil-category-2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/evil-category-2.m -------------------------------------------------------------------------------- /test/evil-category-3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/evil-category-3.m -------------------------------------------------------------------------------- /test/evil-category-4.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/evil-category-4.m -------------------------------------------------------------------------------- /test/evil-category-def.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/evil-category-def.m -------------------------------------------------------------------------------- /test/evil-class-0.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/evil-class-0.m -------------------------------------------------------------------------------- /test/evil-class-00.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/evil-class-00.m -------------------------------------------------------------------------------- /test/evil-class-000.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/evil-class-000.m -------------------------------------------------------------------------------- /test/evil-class-1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/evil-class-1.m -------------------------------------------------------------------------------- /test/evil-class-2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/evil-class-2.m -------------------------------------------------------------------------------- /test/evil-class-3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/evil-class-3.m -------------------------------------------------------------------------------- /test/evil-class-4.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/evil-class-4.m -------------------------------------------------------------------------------- /test/evil-class-5.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/evil-class-5.m -------------------------------------------------------------------------------- /test/evil-class-def.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/evil-class-def.m -------------------------------------------------------------------------------- /test/evil-main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/evil-main.m -------------------------------------------------------------------------------- /test/exc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/exc.m -------------------------------------------------------------------------------- /test/exchangeImp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/exchangeImp.m -------------------------------------------------------------------------------- /test/foreach.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/foreach.m -------------------------------------------------------------------------------- /test/forward.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/forward.m -------------------------------------------------------------------------------- /test/forwardDefault.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/forwardDefault.m -------------------------------------------------------------------------------- /test/forwardDefaultStret.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/forwardDefaultStret.m -------------------------------------------------------------------------------- /test/future.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/future.h -------------------------------------------------------------------------------- /test/future.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/future.m -------------------------------------------------------------------------------- /test/future0.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/future0.m -------------------------------------------------------------------------------- /test/future2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/future2.m -------------------------------------------------------------------------------- /test/gc-main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/gc-main.m -------------------------------------------------------------------------------- /test/gc.c: -------------------------------------------------------------------------------- 1 | int GC(void) { return 42; } 2 | -------------------------------------------------------------------------------- /test/gc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/gc.m -------------------------------------------------------------------------------- /test/gcenforcer-nogc-1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/gcenforcer-nogc-1.m -------------------------------------------------------------------------------- /test/gcenforcer-nogc-2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/gcenforcer-nogc-2.m -------------------------------------------------------------------------------- /test/gcenforcer-noobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/gcenforcer-noobjc.m -------------------------------------------------------------------------------- /test/gcenforcer-requiresgc-1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/gcenforcer-requiresgc-1.m -------------------------------------------------------------------------------- /test/gcenforcer-requiresgc-2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/gcenforcer-requiresgc-2.m -------------------------------------------------------------------------------- /test/gcenforcer-supportsgc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/gcenforcer-supportsgc.m -------------------------------------------------------------------------------- /test/gcenforcer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/gcenforcer.m -------------------------------------------------------------------------------- /test/gdb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/gdb.m -------------------------------------------------------------------------------- /test/getMethod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/getMethod.m -------------------------------------------------------------------------------- /test/ignoredSelector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/ignoredSelector.m -------------------------------------------------------------------------------- /test/ignoredSelector2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/ignoredSelector2.m -------------------------------------------------------------------------------- /test/imageorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/imageorder.h -------------------------------------------------------------------------------- /test/imageorder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/imageorder.m -------------------------------------------------------------------------------- /test/imageorder1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/imageorder1.m -------------------------------------------------------------------------------- /test/imageorder2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/imageorder2.m -------------------------------------------------------------------------------- /test/imageorder3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/imageorder3.m -------------------------------------------------------------------------------- /test/includes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/includes.c -------------------------------------------------------------------------------- /test/initialize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/initialize.m -------------------------------------------------------------------------------- /test/initializeVersusWeak.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/initializeVersusWeak.m -------------------------------------------------------------------------------- /test/instanceSize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/instanceSize.m -------------------------------------------------------------------------------- /test/ismeta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/ismeta.m -------------------------------------------------------------------------------- /test/ivar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/ivar.m -------------------------------------------------------------------------------- /test/ivarSlide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/ivarSlide.h -------------------------------------------------------------------------------- /test/ivarSlide.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/ivarSlide.m -------------------------------------------------------------------------------- /test/ivarSlide1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/ivarSlide1.m -------------------------------------------------------------------------------- /test/layout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/layout.m -------------------------------------------------------------------------------- /test/literals.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/literals.m -------------------------------------------------------------------------------- /test/load-noobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/load-noobjc.m -------------------------------------------------------------------------------- /test/load-noobjc2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/load-noobjc2.m -------------------------------------------------------------------------------- /test/load-noobjc3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/load-noobjc3.m -------------------------------------------------------------------------------- /test/load-order.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/load-order.m -------------------------------------------------------------------------------- /test/load-order1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/load-order1.m -------------------------------------------------------------------------------- /test/load-order2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/load-order2.m -------------------------------------------------------------------------------- /test/load-order3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/load-order3.m -------------------------------------------------------------------------------- /test/load-parallel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/load-parallel.m -------------------------------------------------------------------------------- /test/load-parallel0.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/load-parallel0.m -------------------------------------------------------------------------------- /test/load-parallel00.m: -------------------------------------------------------------------------------- 1 | int state = 0; 2 | -------------------------------------------------------------------------------- /test/load-reentrant.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/load-reentrant.m -------------------------------------------------------------------------------- /test/load-reentrant2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/load-reentrant2.m -------------------------------------------------------------------------------- /test/load.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/load.m -------------------------------------------------------------------------------- /test/methodArgs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/methodArgs.m -------------------------------------------------------------------------------- /test/methodListSize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/methodListSize.m -------------------------------------------------------------------------------- /test/method_getName.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/method_getName.m -------------------------------------------------------------------------------- /test/msgSend.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/msgSend.m -------------------------------------------------------------------------------- /test/nilAPIArgs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/nilAPIArgs.m -------------------------------------------------------------------------------- /test/nonpointerisa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/nonpointerisa.m -------------------------------------------------------------------------------- /test/nopool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/nopool.m -------------------------------------------------------------------------------- /test/nscdtors.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/nscdtors.mm -------------------------------------------------------------------------------- /test/nsexc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/nsexc.m -------------------------------------------------------------------------------- /test/nsobject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/nsobject.m -------------------------------------------------------------------------------- /test/nsprotocol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/nsprotocol.m -------------------------------------------------------------------------------- /test/objectCopy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/objectCopy.m -------------------------------------------------------------------------------- /test/property.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/property.m -------------------------------------------------------------------------------- /test/propertyDesc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/propertyDesc.m -------------------------------------------------------------------------------- /test/protocol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/protocol.m -------------------------------------------------------------------------------- /test/protocol_copyMethodList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/protocol_copyMethodList.m -------------------------------------------------------------------------------- /test/protocol_copyPropertyList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/protocol_copyPropertyList.m -------------------------------------------------------------------------------- /test/protocol_cw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/protocol_cw.m -------------------------------------------------------------------------------- /test/rawisa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/rawisa.m -------------------------------------------------------------------------------- /test/readClassPair.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/readClassPair.m -------------------------------------------------------------------------------- /test/resolve.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/resolve.m -------------------------------------------------------------------------------- /test/rr-autorelease-fast.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/rr-autorelease-fast.m -------------------------------------------------------------------------------- /test/rr-autorelease-fastarc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/rr-autorelease-fastarc.m -------------------------------------------------------------------------------- /test/rr-autorelease-stacklogging.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/rr-autorelease-stacklogging.m -------------------------------------------------------------------------------- /test/rr-autorelease.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/rr-autorelease.m -------------------------------------------------------------------------------- /test/rr-autorelease2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/rr-autorelease2.m -------------------------------------------------------------------------------- /test/rr-nsautorelease.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/rr-nsautorelease.m -------------------------------------------------------------------------------- /test/rr-sidetable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/rr-sidetable.m -------------------------------------------------------------------------------- /test/runtime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/runtime.m -------------------------------------------------------------------------------- /test/sel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/sel.m -------------------------------------------------------------------------------- /test/setSuper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/setSuper.m -------------------------------------------------------------------------------- /test/subscripting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/subscripting.m -------------------------------------------------------------------------------- /test/super.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/super.m -------------------------------------------------------------------------------- /test/synchronized-counter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/synchronized-counter.m -------------------------------------------------------------------------------- /test/synchronized-grid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/synchronized-grid.m -------------------------------------------------------------------------------- /test/synchronized.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/synchronized.m -------------------------------------------------------------------------------- /test/taggedNSPointers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/taggedNSPointers.m -------------------------------------------------------------------------------- /test/taggedPointers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/taggedPointers.m -------------------------------------------------------------------------------- /test/taggedPointersDisabled.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/taggedPointersDisabled.m -------------------------------------------------------------------------------- /test/tbi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/tbi.c -------------------------------------------------------------------------------- /test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/test.h -------------------------------------------------------------------------------- /test/test.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/test.pl -------------------------------------------------------------------------------- /test/testroot.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/testroot.i -------------------------------------------------------------------------------- /test/unload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/unload.h -------------------------------------------------------------------------------- /test/unload.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/unload.m -------------------------------------------------------------------------------- /test/unload2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/unload2.m -------------------------------------------------------------------------------- /test/unload3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/unload3.c -------------------------------------------------------------------------------- /test/unload4.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/unload4.m -------------------------------------------------------------------------------- /test/unwind.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/unwind.m -------------------------------------------------------------------------------- /test/verify-exports.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/verify-exports.pl -------------------------------------------------------------------------------- /test/weak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/weak.h -------------------------------------------------------------------------------- /test/weak.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/weak.m -------------------------------------------------------------------------------- /test/weak2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/weak2.m -------------------------------------------------------------------------------- /test/weakcopy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/weakcopy.m -------------------------------------------------------------------------------- /test/weakframework-missing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/weakframework-missing.m -------------------------------------------------------------------------------- /test/weakframework-not-missing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/weakframework-not-missing.m -------------------------------------------------------------------------------- /test/weakimport-missing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/weakimport-missing.m -------------------------------------------------------------------------------- /test/weakimport-not-missing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/weakimport-not-missing.m -------------------------------------------------------------------------------- /test/weakrace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/weakrace.m -------------------------------------------------------------------------------- /test/xref.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/xref.m -------------------------------------------------------------------------------- /test/zone.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/test/zone.m -------------------------------------------------------------------------------- /unexported_symbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/unexported_symbols -------------------------------------------------------------------------------- /version.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/version.bat -------------------------------------------------------------------------------- /version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isaacselement/objc4-680/HEAD/version.rc --------------------------------------------------------------------------------