├── .DS_Store ├── APPLE_LICENSE ├── Common ├── .DS_Store ├── Block_private.h ├── CrashReporterClient.h ├── System │ ├── .DS_Store │ ├── machine │ │ └── cpu_capabilities.h │ └── pthread_machdep.h ├── _simple.h ├── mach-o │ ├── .DS_Store │ └── dyld_priv.h ├── objc-shared-cache.h ├── os │ ├── base_private.h │ ├── lock_private.h │ └── tsd.h ├── pthread │ ├── spinlock_private.h │ └── tsd_private.h └── sys │ └── reason.h ├── README.md ├── ReleaseNotes.rtf ├── interposable.txt ├── libobjc.order ├── markgc.cpp ├── objc-test └── main.m ├── objc.sln ├── objc.vcproj ├── objc.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── gcf.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── xcshareddata │ └── xcschemes │ │ └── objc.xcscheme └── xcuserdata │ └── gcf.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── objcrt └── objcrt.vcproj ├── prebuild.bat ├── runtime ├── Messengers.subproj │ ├── objc-msg-arm.s │ ├── objc-msg-arm64.s │ ├── objc-msg-i386.s │ ├── objc-msg-simulator-i386.s │ ├── objc-msg-simulator-x86_64.s │ ├── objc-msg-win32.m │ └── objc-msg-x86_64.s ├── Module │ ├── ObjectiveC.apinotes │ └── module.modulemap ├── NSObjCRuntime.h ├── NSObject.h ├── NSObject.mm ├── Object.h ├── Object.mm ├── OldClasses.subproj │ ├── List.h │ └── List.m ├── Protocol.h ├── Protocol.mm ├── arm64-asm.h ├── hashtable.h ├── hashtable2.h ├── hashtable2.mm ├── isa.h ├── llvm-AlignOf.h ├── llvm-DenseMap.h ├── llvm-DenseMapInfo.h ├── llvm-MathExtras.h ├── llvm-type_traits.h ├── maptable.h ├── maptable.mm ├── message.h ├── objc-abi.h ├── objc-accessors.mm ├── objc-api.h ├── objc-auto.h ├── objc-auto.mm ├── objc-block-trampolines.h ├── objc-block-trampolines.mm ├── objc-blocktramps-arm.s ├── objc-blocktramps-arm64.s ├── objc-blocktramps-i386.s ├── objc-blocktramps-x86_64.s ├── objc-cache-old.h ├── objc-cache-old.mm ├── objc-cache.h ├── objc-cache.mm ├── objc-class-old.mm ├── objc-class.h ├── objc-class.mm ├── objc-config.h ├── objc-env.h ├── objc-errors.mm ├── objc-exception.h ├── objc-exception.mm ├── objc-file-old.h ├── objc-file-old.mm ├── objc-file.h ├── objc-file.mm ├── objc-gdb.h ├── objc-initialize.h ├── objc-initialize.mm ├── objc-internal.h ├── objc-layout.mm ├── objc-load.h ├── objc-load.mm ├── objc-loadmethod.h ├── objc-loadmethod.mm ├── objc-lockdebug.h ├── objc-lockdebug.mm ├── objc-locks-new.h ├── objc-locks-old.h ├── objc-locks.h ├── objc-object.h ├── objc-opt.mm ├── objc-os.h ├── objc-os.mm ├── objc-private.h ├── objc-probes.d ├── objc-ptrauth.h ├── objc-references.h ├── objc-references.mm ├── objc-runtime-new.h ├── objc-runtime-new.mm ├── objc-runtime-old.h ├── objc-runtime-old.mm ├── objc-runtime.h ├── objc-runtime.mm ├── objc-sel-old.mm ├── objc-sel-set.h ├── objc-sel-set.mm ├── objc-sel-table.s ├── objc-sel.mm ├── objc-sync.h ├── objc-sync.mm ├── objc-typeencoding.mm ├── objc-weak.h ├── objc-weak.mm ├── objc.h ├── objcrt.c ├── objcrt.h └── runtime.h ├── unexported_symbols ├── version.bat └── version.rc /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/.DS_Store -------------------------------------------------------------------------------- /APPLE_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/APPLE_LICENSE -------------------------------------------------------------------------------- /Common/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/Common/.DS_Store -------------------------------------------------------------------------------- /Common/Block_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/Common/Block_private.h -------------------------------------------------------------------------------- /Common/CrashReporterClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/Common/CrashReporterClient.h -------------------------------------------------------------------------------- /Common/System/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/Common/System/.DS_Store -------------------------------------------------------------------------------- /Common/System/machine/cpu_capabilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/Common/System/machine/cpu_capabilities.h -------------------------------------------------------------------------------- /Common/System/pthread_machdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/Common/System/pthread_machdep.h -------------------------------------------------------------------------------- /Common/_simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/Common/_simple.h -------------------------------------------------------------------------------- /Common/mach-o/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/Common/mach-o/.DS_Store -------------------------------------------------------------------------------- /Common/mach-o/dyld_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/Common/mach-o/dyld_priv.h -------------------------------------------------------------------------------- /Common/objc-shared-cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/Common/objc-shared-cache.h -------------------------------------------------------------------------------- /Common/os/base_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/Common/os/base_private.h -------------------------------------------------------------------------------- /Common/os/lock_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/Common/os/lock_private.h -------------------------------------------------------------------------------- /Common/os/tsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/Common/os/tsd.h -------------------------------------------------------------------------------- /Common/pthread/spinlock_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/Common/pthread/spinlock_private.h -------------------------------------------------------------------------------- /Common/pthread/tsd_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/Common/pthread/tsd_private.h -------------------------------------------------------------------------------- /Common/sys/reason.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/Common/sys/reason.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseNotes.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/ReleaseNotes.rtf -------------------------------------------------------------------------------- /interposable.txt: -------------------------------------------------------------------------------- 1 | _objc_release 2 | -------------------------------------------------------------------------------- /libobjc.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/libobjc.order -------------------------------------------------------------------------------- /markgc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/markgc.cpp -------------------------------------------------------------------------------- /objc-test/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/objc-test/main.m -------------------------------------------------------------------------------- /objc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/objc.sln -------------------------------------------------------------------------------- /objc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/objc.vcproj -------------------------------------------------------------------------------- /objc.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/objc.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /objc.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/objc.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /objc.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/objc.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /objc.xcodeproj/project.xcworkspace/xcuserdata/gcf.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/objc.xcodeproj/project.xcworkspace/xcuserdata/gcf.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /objc.xcodeproj/xcshareddata/xcschemes/objc.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/objc.xcodeproj/xcshareddata/xcschemes/objc.xcscheme -------------------------------------------------------------------------------- /objc.xcodeproj/xcuserdata/gcf.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/objc.xcodeproj/xcuserdata/gcf.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /objcrt/objcrt.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/objcrt/objcrt.vcproj -------------------------------------------------------------------------------- /prebuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/prebuild.bat -------------------------------------------------------------------------------- /runtime/Messengers.subproj/objc-msg-arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/Messengers.subproj/objc-msg-arm.s -------------------------------------------------------------------------------- /runtime/Messengers.subproj/objc-msg-arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/Messengers.subproj/objc-msg-arm64.s -------------------------------------------------------------------------------- /runtime/Messengers.subproj/objc-msg-i386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/Messengers.subproj/objc-msg-i386.s -------------------------------------------------------------------------------- /runtime/Messengers.subproj/objc-msg-simulator-i386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/Messengers.subproj/objc-msg-simulator-i386.s -------------------------------------------------------------------------------- /runtime/Messengers.subproj/objc-msg-simulator-x86_64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/Messengers.subproj/objc-msg-simulator-x86_64.s -------------------------------------------------------------------------------- /runtime/Messengers.subproj/objc-msg-win32.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/Messengers.subproj/objc-msg-win32.m -------------------------------------------------------------------------------- /runtime/Messengers.subproj/objc-msg-x86_64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/Messengers.subproj/objc-msg-x86_64.s -------------------------------------------------------------------------------- /runtime/Module/ObjectiveC.apinotes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/Module/ObjectiveC.apinotes -------------------------------------------------------------------------------- /runtime/Module/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/Module/module.modulemap -------------------------------------------------------------------------------- /runtime/NSObjCRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/NSObjCRuntime.h -------------------------------------------------------------------------------- /runtime/NSObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/NSObject.h -------------------------------------------------------------------------------- /runtime/NSObject.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/NSObject.mm -------------------------------------------------------------------------------- /runtime/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/Object.h -------------------------------------------------------------------------------- /runtime/Object.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/Object.mm -------------------------------------------------------------------------------- /runtime/OldClasses.subproj/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/OldClasses.subproj/List.h -------------------------------------------------------------------------------- /runtime/OldClasses.subproj/List.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/OldClasses.subproj/List.m -------------------------------------------------------------------------------- /runtime/Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/Protocol.h -------------------------------------------------------------------------------- /runtime/Protocol.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/Protocol.mm -------------------------------------------------------------------------------- /runtime/arm64-asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/arm64-asm.h -------------------------------------------------------------------------------- /runtime/hashtable.h: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | -------------------------------------------------------------------------------- /runtime/hashtable2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/hashtable2.h -------------------------------------------------------------------------------- /runtime/hashtable2.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/hashtable2.mm -------------------------------------------------------------------------------- /runtime/isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/isa.h -------------------------------------------------------------------------------- /runtime/llvm-AlignOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/llvm-AlignOf.h -------------------------------------------------------------------------------- /runtime/llvm-DenseMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/llvm-DenseMap.h -------------------------------------------------------------------------------- /runtime/llvm-DenseMapInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/llvm-DenseMapInfo.h -------------------------------------------------------------------------------- /runtime/llvm-MathExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/llvm-MathExtras.h -------------------------------------------------------------------------------- /runtime/llvm-type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/llvm-type_traits.h -------------------------------------------------------------------------------- /runtime/maptable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/maptable.h -------------------------------------------------------------------------------- /runtime/maptable.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/maptable.mm -------------------------------------------------------------------------------- /runtime/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/message.h -------------------------------------------------------------------------------- /runtime/objc-abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-abi.h -------------------------------------------------------------------------------- /runtime/objc-accessors.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-accessors.mm -------------------------------------------------------------------------------- /runtime/objc-api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-api.h -------------------------------------------------------------------------------- /runtime/objc-auto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-auto.h -------------------------------------------------------------------------------- /runtime/objc-auto.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-auto.mm -------------------------------------------------------------------------------- /runtime/objc-block-trampolines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-block-trampolines.h -------------------------------------------------------------------------------- /runtime/objc-block-trampolines.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-block-trampolines.mm -------------------------------------------------------------------------------- /runtime/objc-blocktramps-arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-blocktramps-arm.s -------------------------------------------------------------------------------- /runtime/objc-blocktramps-arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-blocktramps-arm64.s -------------------------------------------------------------------------------- /runtime/objc-blocktramps-i386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-blocktramps-i386.s -------------------------------------------------------------------------------- /runtime/objc-blocktramps-x86_64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-blocktramps-x86_64.s -------------------------------------------------------------------------------- /runtime/objc-cache-old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-cache-old.h -------------------------------------------------------------------------------- /runtime/objc-cache-old.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-cache-old.mm -------------------------------------------------------------------------------- /runtime/objc-cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-cache.h -------------------------------------------------------------------------------- /runtime/objc-cache.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-cache.mm -------------------------------------------------------------------------------- /runtime/objc-class-old.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-class-old.mm -------------------------------------------------------------------------------- /runtime/objc-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-class.h -------------------------------------------------------------------------------- /runtime/objc-class.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-class.mm -------------------------------------------------------------------------------- /runtime/objc-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-config.h -------------------------------------------------------------------------------- /runtime/objc-env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-env.h -------------------------------------------------------------------------------- /runtime/objc-errors.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-errors.mm -------------------------------------------------------------------------------- /runtime/objc-exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-exception.h -------------------------------------------------------------------------------- /runtime/objc-exception.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-exception.mm -------------------------------------------------------------------------------- /runtime/objc-file-old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-file-old.h -------------------------------------------------------------------------------- /runtime/objc-file-old.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-file-old.mm -------------------------------------------------------------------------------- /runtime/objc-file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-file.h -------------------------------------------------------------------------------- /runtime/objc-file.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-file.mm -------------------------------------------------------------------------------- /runtime/objc-gdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-gdb.h -------------------------------------------------------------------------------- /runtime/objc-initialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-initialize.h -------------------------------------------------------------------------------- /runtime/objc-initialize.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-initialize.mm -------------------------------------------------------------------------------- /runtime/objc-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-internal.h -------------------------------------------------------------------------------- /runtime/objc-layout.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-layout.mm -------------------------------------------------------------------------------- /runtime/objc-load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-load.h -------------------------------------------------------------------------------- /runtime/objc-load.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-load.mm -------------------------------------------------------------------------------- /runtime/objc-loadmethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-loadmethod.h -------------------------------------------------------------------------------- /runtime/objc-loadmethod.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-loadmethod.mm -------------------------------------------------------------------------------- /runtime/objc-lockdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-lockdebug.h -------------------------------------------------------------------------------- /runtime/objc-lockdebug.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-lockdebug.mm -------------------------------------------------------------------------------- /runtime/objc-locks-new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-locks-new.h -------------------------------------------------------------------------------- /runtime/objc-locks-old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-locks-old.h -------------------------------------------------------------------------------- /runtime/objc-locks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-locks.h -------------------------------------------------------------------------------- /runtime/objc-object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-object.h -------------------------------------------------------------------------------- /runtime/objc-opt.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-opt.mm -------------------------------------------------------------------------------- /runtime/objc-os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-os.h -------------------------------------------------------------------------------- /runtime/objc-os.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-os.mm -------------------------------------------------------------------------------- /runtime/objc-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-private.h -------------------------------------------------------------------------------- /runtime/objc-probes.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-probes.d -------------------------------------------------------------------------------- /runtime/objc-ptrauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-ptrauth.h -------------------------------------------------------------------------------- /runtime/objc-references.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-references.h -------------------------------------------------------------------------------- /runtime/objc-references.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-references.mm -------------------------------------------------------------------------------- /runtime/objc-runtime-new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-runtime-new.h -------------------------------------------------------------------------------- /runtime/objc-runtime-new.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-runtime-new.mm -------------------------------------------------------------------------------- /runtime/objc-runtime-old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-runtime-old.h -------------------------------------------------------------------------------- /runtime/objc-runtime-old.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-runtime-old.mm -------------------------------------------------------------------------------- /runtime/objc-runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-runtime.h -------------------------------------------------------------------------------- /runtime/objc-runtime.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-runtime.mm -------------------------------------------------------------------------------- /runtime/objc-sel-old.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-sel-old.mm -------------------------------------------------------------------------------- /runtime/objc-sel-set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-sel-set.h -------------------------------------------------------------------------------- /runtime/objc-sel-set.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-sel-set.mm -------------------------------------------------------------------------------- /runtime/objc-sel-table.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-sel-table.s -------------------------------------------------------------------------------- /runtime/objc-sel.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-sel.mm -------------------------------------------------------------------------------- /runtime/objc-sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-sync.h -------------------------------------------------------------------------------- /runtime/objc-sync.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-sync.mm -------------------------------------------------------------------------------- /runtime/objc-typeencoding.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-typeencoding.mm -------------------------------------------------------------------------------- /runtime/objc-weak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-weak.h -------------------------------------------------------------------------------- /runtime/objc-weak.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc-weak.mm -------------------------------------------------------------------------------- /runtime/objc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objc.h -------------------------------------------------------------------------------- /runtime/objcrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objcrt.c -------------------------------------------------------------------------------- /runtime/objcrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/objcrt.h -------------------------------------------------------------------------------- /runtime/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/runtime/runtime.h -------------------------------------------------------------------------------- /unexported_symbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/unexported_symbols -------------------------------------------------------------------------------- /version.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/version.bat -------------------------------------------------------------------------------- /version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcfrun/objc4-750/HEAD/version.rc --------------------------------------------------------------------------------