Does documentation for the Objective-C 2.0 ABI exist somewhere on the Internet? The release notes for objc4-493.9
say:
Forthcoming documentation will describe the ABI for the use of compilers and developer tools only.
Has it since been released? The closest such reference is Apple's Objective-C runtime reference, but this only describes the public-facing API rather than the implementation details. In fact, it even mentions the ABI in passing:
In addition, the new Objective-C ABI (not described here) [...]
Unfortunately the new ABI is not hyperlinked in the aforementioned text. :-) Is my only option to grok the source code for the objc4
runtime and Clang's CGObjCNonFragileABIMac
code-generation projects?