Difference between revisions of "User:Jonas"

From Free Pascal wiki
Jump to navigationJump to search
m
(objc abi link)
 
Line 5: Line 5:
 
* encode_method_prototype(): toplevel function to create the parameter info ("i8@0:4\0" etc, objc_meth_var_types section)
 
* encode_method_prototype(): toplevel function to create the parameter info ("i8@0:4\0" etc, objc_meth_var_types section)
 
* finish_objc(): generate all class metadata (rtti)
 
* finish_objc(): generate all class metadata (rtti)
 +
* Objective-C ABI: http://www.sealiesoftware.com/blog/
  
 
===LLVM Clang Objective-C code===
 
===LLVM Clang Objective-C code===

Latest revision as of 00:48, 21 February 2016

Apple gcc Objective-C code

gcc/objc/objc-act.c

  • generate_protocols(): create meta-class info for referenced protocols
  • encode_method_prototype(): toplevel function to create the parameter info ("i8@0:4\0" etc, objc_meth_var_types section)
  • finish_objc(): generate all class metadata (rtti)
  • Objective-C ABI: http://www.sealiesoftware.com/blog/

LLVM Clang Objective-C code

http://llvm.org/svn/llvm-project/cfe/trunk/lib/CodeGen/CGObjCMac.cpp

Exception handling

http://groups.google.com/group/llvm-dev/browse_thread/thread/ea4d79327b7e2c0a

GCC Gimple frontend

http://gcc.gnu.org/wiki/GimpleFrontEnd

Debug info

LLVM