Daniel Dunbar | 303e2c2 | 2008-08-11 02:45:11 +0000 | [diff] [blame] | 1 | //===------- CGObjCMac.cpp - Interface to Apple Objective-C Runtime -------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Chris Lattner | 57540c5 | 2011-04-15 05:22:18 +0000 | [diff] [blame] | 10 | // This provides Objective-C code generation targeting the Apple runtime. |
Daniel Dunbar | 303e2c2 | 2008-08-11 02:45:11 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
John McCall | ad7c5c1 | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 14 | #include "CGBlocks.h" |
John McCall | ed1ae86 | 2011-01-28 11:13:47 +0000 | [diff] [blame] | 15 | #include "CGCleanup.h" |
Justin Lebar | 5e83dfe | 2016-10-21 21:45:01 +0000 | [diff] [blame] | 16 | #include "CGObjCRuntime.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 17 | #include "CGRecordLayout.h" |
| 18 | #include "CodeGenFunction.h" |
| 19 | #include "CodeGenModule.h" |
John McCall | 5ad7407 | 2017-03-02 20:04:19 +0000 | [diff] [blame] | 20 | #include "clang/CodeGen/ConstantInitBuilder.h" |
Daniel Dunbar | 8b8683f | 2008-08-12 00:12:39 +0000 | [diff] [blame] | 21 | #include "clang/AST/ASTContext.h" |
Daniel Dunbar | 221fa94 | 2008-08-11 04:54:23 +0000 | [diff] [blame] | 22 | #include "clang/AST/Decl.h" |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 23 | #include "clang/AST/DeclObjC.h" |
Anders Carlsson | 15b73de | 2009-07-18 19:43:29 +0000 | [diff] [blame] | 24 | #include "clang/AST/RecordLayout.h" |
Chris Lattner | f0b64d7 | 2009-04-26 01:32:48 +0000 | [diff] [blame] | 25 | #include "clang/AST/StmtObjC.h" |
Richard Trieu | 6368818 | 2018-12-11 03:18:39 +0000 | [diff] [blame] | 26 | #include "clang/Basic/CodeGenOptions.h" |
Daniel Dunbar | 3ad5348 | 2008-08-11 21:35:06 +0000 | [diff] [blame] | 27 | #include "clang/Basic/LangOptions.h" |
Mark Lacey | a8e7df3 | 2013-10-30 21:53:58 +0000 | [diff] [blame] | 28 | #include "clang/CodeGen/CGFunctionInfo.h" |
Justin Lebar | 5e83dfe | 2016-10-21 21:45:01 +0000 | [diff] [blame] | 29 | #include "llvm/ADT/CachedHashString.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 30 | #include "llvm/ADT/DenseSet.h" |
| 31 | #include "llvm/ADT/SetVector.h" |
| 32 | #include "llvm/ADT/SmallPtrSet.h" |
| 33 | #include "llvm/ADT/SmallString.h" |
Chandler Carruth | c80ceea | 2014-03-04 11:02:08 +0000 | [diff] [blame] | 34 | #include "llvm/IR/CallSite.h" |
Chandler Carruth | ffd5551 | 2013-01-02 11:45:17 +0000 | [diff] [blame] | 35 | #include "llvm/IR/DataLayout.h" |
| 36 | #include "llvm/IR/InlineAsm.h" |
| 37 | #include "llvm/IR/IntrinsicInst.h" |
| 38 | #include "llvm/IR/LLVMContext.h" |
| 39 | #include "llvm/IR/Module.h" |
Akira Hatanaka | 2ec36f0 | 2018-08-17 15:46:07 +0000 | [diff] [blame] | 40 | #include "llvm/Support/ScopedPrinter.h" |
Daniel Dunbar | d027a92 | 2009-09-07 00:20:42 +0000 | [diff] [blame] | 41 | #include "llvm/Support/raw_ostream.h" |
Torok Edwin | db71492 | 2009-08-24 13:25:12 +0000 | [diff] [blame] | 42 | #include <cstdio> |
Daniel Dunbar | 303e2c2 | 2008-08-11 02:45:11 +0000 | [diff] [blame] | 43 | |
| 44 | using namespace clang; |
Daniel Dunbar | 41cf9de | 2008-09-09 01:06:48 +0000 | [diff] [blame] | 45 | using namespace CodeGen; |
Daniel Dunbar | 303e2c2 | 2008-08-11 02:45:11 +0000 | [diff] [blame] | 46 | |
| 47 | namespace { |
Daniel Dunbar | 8b8683f | 2008-08-12 00:12:39 +0000 | [diff] [blame] | 48 | |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 49 | // FIXME: We should find a nicer way to make the labels for metadata, string |
| 50 | // concatenation is lame. |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 51 | |
Fariborz Jahanian | 279eda6 | 2009-01-21 22:04:16 +0000 | [diff] [blame] | 52 | class ObjCCommonTypesHelper { |
Owen Anderson | 170229f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 53 | protected: |
| 54 | llvm::LLVMContext &VMContext; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 55 | |
Fariborz Jahanian | 5d5ed2d | 2009-05-11 19:25:47 +0000 | [diff] [blame] | 56 | private: |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 57 | // The types of these functions don't really matter because we |
| 58 | // should always bitcast before calling them. |
| 59 | |
| 60 | /// id objc_msgSend (id, SEL, ...) |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 61 | /// |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 62 | /// The default messenger, used for sends whose ABI is unchanged from |
| 63 | /// the all-integer/pointer case. |
Fariborz Jahanian | 5d5ed2d | 2009-05-11 19:25:47 +0000 | [diff] [blame] | 64 | llvm::Constant *getMessageSendFn() const { |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 65 | // Add the non-lazy-bind attribute, since objc_msgSend is likely to |
| 66 | // be called a lot. |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 67 | llvm::Type *params[] = { ObjectPtrTy, SelectorPtrTy }; |
Reid Kleckner | de86482 | 2017-03-21 16:57:30 +0000 | [diff] [blame] | 68 | return CGM.CreateRuntimeFunction( |
| 69 | llvm::FunctionType::get(ObjectPtrTy, params, true), "objc_msgSend", |
| 70 | llvm::AttributeList::get(CGM.getLLVMContext(), |
| 71 | llvm::AttributeList::FunctionIndex, |
| 72 | llvm::Attribute::NonLazyBind)); |
Fariborz Jahanian | 5d5ed2d | 2009-05-11 19:25:47 +0000 | [diff] [blame] | 73 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 74 | |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 75 | /// void objc_msgSend_stret (id, SEL, ...) |
| 76 | /// |
| 77 | /// The messenger used when the return value is an aggregate returned |
| 78 | /// by indirect reference in the first argument, and therefore the |
| 79 | /// self and selector parameters are shifted over by one. |
Fariborz Jahanian | 5d5ed2d | 2009-05-11 19:25:47 +0000 | [diff] [blame] | 80 | llvm::Constant *getMessageSendStretFn() const { |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 81 | llvm::Type *params[] = { ObjectPtrTy, SelectorPtrTy }; |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 82 | return CGM.CreateRuntimeFunction(llvm::FunctionType::get(CGM.VoidTy, |
| 83 | params, true), |
| 84 | "objc_msgSend_stret"); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 85 | |
Fariborz Jahanian | 5d5ed2d | 2009-05-11 19:25:47 +0000 | [diff] [blame] | 86 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 87 | |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 88 | /// [double | long double] objc_msgSend_fpret(id self, SEL op, ...) |
| 89 | /// |
| 90 | /// The messenger used when the return value is returned on the x87 |
| 91 | /// floating-point stack; without a special entrypoint, the nil case |
| 92 | /// would be unbalanced. |
Fariborz Jahanian | 5d5ed2d | 2009-05-11 19:25:47 +0000 | [diff] [blame] | 93 | llvm::Constant *getMessageSendFpretFn() const { |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 94 | llvm::Type *params[] = { ObjectPtrTy, SelectorPtrTy }; |
Chris Lattner | ece0409 | 2012-02-07 00:39:47 +0000 | [diff] [blame] | 95 | return CGM.CreateRuntimeFunction(llvm::FunctionType::get(CGM.DoubleTy, |
| 96 | params, true), |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 97 | "objc_msgSend_fpret"); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 98 | |
Fariborz Jahanian | 5d5ed2d | 2009-05-11 19:25:47 +0000 | [diff] [blame] | 99 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 100 | |
Anders Carlsson | 2f1a6c3 | 2011-10-31 16:27:11 +0000 | [diff] [blame] | 101 | /// _Complex long double objc_msgSend_fp2ret(id self, SEL op, ...) |
| 102 | /// |
| 103 | /// The messenger used when the return value is returned in two values on the |
| 104 | /// x87 floating point stack; without a special entrypoint, the nil case |
| 105 | /// would be unbalanced. Only used on 64-bit X86. |
| 106 | llvm::Constant *getMessageSendFp2retFn() const { |
| 107 | llvm::Type *params[] = { ObjectPtrTy, SelectorPtrTy }; |
| 108 | llvm::Type *longDoubleType = llvm::Type::getX86_FP80Ty(VMContext); |
Serge Guelton | 1d99327 | 2017-05-09 19:31:30 +0000 | [diff] [blame] | 109 | llvm::Type *resultType = |
| 110 | llvm::StructType::get(longDoubleType, longDoubleType); |
Anders Carlsson | 2f1a6c3 | 2011-10-31 16:27:11 +0000 | [diff] [blame] | 111 | |
| 112 | return CGM.CreateRuntimeFunction(llvm::FunctionType::get(resultType, |
| 113 | params, true), |
| 114 | "objc_msgSend_fp2ret"); |
| 115 | } |
| 116 | |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 117 | /// id objc_msgSendSuper(struct objc_super *super, SEL op, ...) |
| 118 | /// |
| 119 | /// The messenger used for super calls, which have different dispatch |
| 120 | /// semantics. The class passed is the superclass of the current |
| 121 | /// class. |
Fariborz Jahanian | 5d5ed2d | 2009-05-11 19:25:47 +0000 | [diff] [blame] | 122 | llvm::Constant *getMessageSendSuperFn() const { |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 123 | llvm::Type *params[] = { SuperPtrTy, SelectorPtrTy }; |
Owen Anderson | 9793f0e | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 124 | return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy, |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 125 | params, true), |
| 126 | "objc_msgSendSuper"); |
Fariborz Jahanian | 5d5ed2d | 2009-05-11 19:25:47 +0000 | [diff] [blame] | 127 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 128 | |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 129 | /// id objc_msgSendSuper2(struct objc_super *super, SEL op, ...) |
| 130 | /// |
| 131 | /// A slightly different messenger used for super calls. The class |
| 132 | /// passed is the current class. |
Fariborz Jahanian | 5d5ed2d | 2009-05-11 19:25:47 +0000 | [diff] [blame] | 133 | llvm::Constant *getMessageSendSuperFn2() const { |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 134 | llvm::Type *params[] = { SuperPtrTy, SelectorPtrTy }; |
Owen Anderson | 9793f0e | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 135 | return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy, |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 136 | params, true), |
| 137 | "objc_msgSendSuper2"); |
Fariborz Jahanian | 5d5ed2d | 2009-05-11 19:25:47 +0000 | [diff] [blame] | 138 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 139 | |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 140 | /// void objc_msgSendSuper_stret(void *stretAddr, struct objc_super *super, |
| 141 | /// SEL op, ...) |
| 142 | /// |
| 143 | /// The messenger used for super calls which return an aggregate indirectly. |
Fariborz Jahanian | 5d5ed2d | 2009-05-11 19:25:47 +0000 | [diff] [blame] | 144 | llvm::Constant *getMessageSendSuperStretFn() const { |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 145 | llvm::Type *params[] = { Int8PtrTy, SuperPtrTy, SelectorPtrTy }; |
Owen Anderson | 170229f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 146 | return CGM.CreateRuntimeFunction( |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 147 | llvm::FunctionType::get(CGM.VoidTy, params, true), |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 148 | "objc_msgSendSuper_stret"); |
Fariborz Jahanian | 5d5ed2d | 2009-05-11 19:25:47 +0000 | [diff] [blame] | 149 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 150 | |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 151 | /// void objc_msgSendSuper2_stret(void * stretAddr, struct objc_super *super, |
| 152 | /// SEL op, ...) |
| 153 | /// |
| 154 | /// objc_msgSendSuper_stret with the super2 semantics. |
Fariborz Jahanian | 5d5ed2d | 2009-05-11 19:25:47 +0000 | [diff] [blame] | 155 | llvm::Constant *getMessageSendSuperStretFn2() const { |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 156 | llvm::Type *params[] = { Int8PtrTy, SuperPtrTy, SelectorPtrTy }; |
Owen Anderson | 170229f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 157 | return CGM.CreateRuntimeFunction( |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 158 | llvm::FunctionType::get(CGM.VoidTy, params, true), |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 159 | "objc_msgSendSuper2_stret"); |
Fariborz Jahanian | 5d5ed2d | 2009-05-11 19:25:47 +0000 | [diff] [blame] | 160 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 161 | |
Fariborz Jahanian | 5d5ed2d | 2009-05-11 19:25:47 +0000 | [diff] [blame] | 162 | llvm::Constant *getMessageSendSuperFpretFn() const { |
| 163 | // There is no objc_msgSendSuper_fpret? How can that work? |
| 164 | return getMessageSendSuperFn(); |
| 165 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 166 | |
Fariborz Jahanian | 5d5ed2d | 2009-05-11 19:25:47 +0000 | [diff] [blame] | 167 | llvm::Constant *getMessageSendSuperFpretFn2() const { |
| 168 | // There is no objc_msgSendSuper_fpret? How can that work? |
| 169 | return getMessageSendSuperFn2(); |
| 170 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 171 | |
Fariborz Jahanian | 279eda6 | 2009-01-21 22:04:16 +0000 | [diff] [blame] | 172 | protected: |
| 173 | CodeGen::CodeGenModule &CGM; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 174 | |
Daniel Dunbar | 8b8683f | 2008-08-12 00:12:39 +0000 | [diff] [blame] | 175 | public: |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 176 | llvm::IntegerType *ShortTy, *IntTy, *LongTy; |
| 177 | llvm::PointerType *Int8PtrTy, *Int8PtrPtrTy; |
Tim Northover | 238b508 | 2014-03-29 13:42:40 +0000 | [diff] [blame] | 178 | llvm::Type *IvarOffsetVarTy; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 179 | |
Daniel Dunbar | 5d71559 | 2008-08-12 05:28:47 +0000 | [diff] [blame] | 180 | /// ObjectPtrTy - LLVM type for object handles (typeof(id)) |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 181 | llvm::PointerType *ObjectPtrTy; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 182 | |
Fariborz Jahanian | 406b117 | 2008-11-18 20:18:11 +0000 | [diff] [blame] | 183 | /// PtrObjectPtrTy - LLVM type for id * |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 184 | llvm::PointerType *PtrObjectPtrTy; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 185 | |
Daniel Dunbar | 7bd00bd | 2008-08-12 06:48:42 +0000 | [diff] [blame] | 186 | /// SelectorPtrTy - LLVM type for selector handles (typeof(SEL)) |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 187 | llvm::PointerType *SelectorPtrTy; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 188 | |
Douglas Gregor | 020de32 | 2012-01-17 18:36:30 +0000 | [diff] [blame] | 189 | private: |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 190 | /// ProtocolPtrTy - LLVM type for external protocol handles |
| 191 | /// (typeof(Protocol)) |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 192 | llvm::Type *ExternalProtocolPtrTy; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 193 | |
Douglas Gregor | 020de32 | 2012-01-17 18:36:30 +0000 | [diff] [blame] | 194 | public: |
| 195 | llvm::Type *getExternalProtocolPtrTy() { |
| 196 | if (!ExternalProtocolPtrTy) { |
| 197 | // FIXME: It would be nice to unify this with the opaque type, so that the |
| 198 | // IR comes out a bit cleaner. |
| 199 | CodeGen::CodeGenTypes &Types = CGM.getTypes(); |
| 200 | ASTContext &Ctx = CGM.getContext(); |
| 201 | llvm::Type *T = Types.ConvertType(Ctx.getObjCProtoType()); |
| 202 | ExternalProtocolPtrTy = llvm::PointerType::getUnqual(T); |
| 203 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 204 | |
Douglas Gregor | 020de32 | 2012-01-17 18:36:30 +0000 | [diff] [blame] | 205 | return ExternalProtocolPtrTy; |
| 206 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 207 | |
Daniel Dunbar | c722b85 | 2008-08-30 03:02:31 +0000 | [diff] [blame] | 208 | // SuperCTy - clang type for struct objc_super. |
| 209 | QualType SuperCTy; |
| 210 | // SuperPtrCTy - clang type for struct objc_super *. |
| 211 | QualType SuperPtrCTy; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 212 | |
Daniel Dunbar | f6397fe | 2008-08-23 04:28:29 +0000 | [diff] [blame] | 213 | /// SuperTy - LLVM type for struct objc_super. |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 214 | llvm::StructType *SuperTy; |
Daniel Dunbar | 97ff50d | 2008-08-23 09:25:55 +0000 | [diff] [blame] | 215 | /// SuperPtrTy - LLVM type for struct objc_super *. |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 216 | llvm::PointerType *SuperPtrTy; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 217 | |
Fariborz Jahanian | b15a3d5 | 2009-01-22 23:02:58 +0000 | [diff] [blame] | 218 | /// PropertyTy - LLVM type for struct objc_property (struct _prop_t |
| 219 | /// in GCC parlance). |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 220 | llvm::StructType *PropertyTy; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 221 | |
Fariborz Jahanian | b15a3d5 | 2009-01-22 23:02:58 +0000 | [diff] [blame] | 222 | /// PropertyListTy - LLVM type for struct objc_property_list |
| 223 | /// (_prop_list_t in GCC parlance). |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 224 | llvm::StructType *PropertyListTy; |
Fariborz Jahanian | b15a3d5 | 2009-01-22 23:02:58 +0000 | [diff] [blame] | 225 | /// PropertyListPtrTy - LLVM type for struct objc_property_list*. |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 226 | llvm::PointerType *PropertyListPtrTy; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 227 | |
Fariborz Jahanian | b15a3d5 | 2009-01-22 23:02:58 +0000 | [diff] [blame] | 228 | // MethodTy - LLVM type for struct objc_method. |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 229 | llvm::StructType *MethodTy; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 230 | |
Fariborz Jahanian | 0232c05 | 2009-01-23 01:46:23 +0000 | [diff] [blame] | 231 | /// CacheTy - LLVM type for struct objc_cache. |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 232 | llvm::Type *CacheTy; |
Fariborz Jahanian | 0232c05 | 2009-01-23 01:46:23 +0000 | [diff] [blame] | 233 | /// CachePtrTy - LLVM type for struct objc_cache *. |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 234 | llvm::PointerType *CachePtrTy; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 235 | |
Chris Lattner | ce8754e | 2009-04-22 02:44:54 +0000 | [diff] [blame] | 236 | llvm::Constant *getGetPropertyFn() { |
| 237 | CodeGen::CodeGenTypes &Types = CGM.getTypes(); |
| 238 | ASTContext &Ctx = CGM.getContext(); |
| 239 | // id objc_getProperty (id, SEL, ptrdiff_t, bool) |
John McCall | 2da83a3 | 2010-02-26 00:48:12 +0000 | [diff] [blame] | 240 | CanQualType IdType = Ctx.getCanonicalParamType(Ctx.getObjCIdType()); |
| 241 | CanQualType SelType = Ctx.getCanonicalParamType(Ctx.getObjCSelType()); |
Benjamin Kramer | 3093473 | 2016-07-02 11:41:41 +0000 | [diff] [blame] | 242 | CanQualType Params[] = { |
| 243 | IdType, SelType, |
| 244 | Ctx.getPointerDiffType()->getCanonicalTypeUnqualified(), Ctx.BoolTy}; |
Chris Lattner | 2192fe5 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 245 | llvm::FunctionType *FTy = |
John McCall | c56a8b3 | 2016-03-11 04:30:31 +0000 | [diff] [blame] | 246 | Types.GetFunctionType( |
| 247 | Types.arrangeBuiltinFunctionDeclaration(IdType, Params)); |
Chris Lattner | ce8754e | 2009-04-22 02:44:54 +0000 | [diff] [blame] | 248 | return CGM.CreateRuntimeFunction(FTy, "objc_getProperty"); |
| 249 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 250 | |
Chris Lattner | ce8754e | 2009-04-22 02:44:54 +0000 | [diff] [blame] | 251 | llvm::Constant *getSetPropertyFn() { |
| 252 | CodeGen::CodeGenTypes &Types = CGM.getTypes(); |
| 253 | ASTContext &Ctx = CGM.getContext(); |
| 254 | // void objc_setProperty (id, SEL, ptrdiff_t, id, bool, bool) |
John McCall | 2da83a3 | 2010-02-26 00:48:12 +0000 | [diff] [blame] | 255 | CanQualType IdType = Ctx.getCanonicalParamType(Ctx.getObjCIdType()); |
| 256 | CanQualType SelType = Ctx.getCanonicalParamType(Ctx.getObjCSelType()); |
Benjamin Kramer | 3093473 | 2016-07-02 11:41:41 +0000 | [diff] [blame] | 257 | CanQualType Params[] = { |
| 258 | IdType, |
| 259 | SelType, |
| 260 | Ctx.getPointerDiffType()->getCanonicalTypeUnqualified(), |
| 261 | IdType, |
| 262 | Ctx.BoolTy, |
| 263 | Ctx.BoolTy}; |
Chris Lattner | 2192fe5 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 264 | llvm::FunctionType *FTy = |
John McCall | c56a8b3 | 2016-03-11 04:30:31 +0000 | [diff] [blame] | 265 | Types.GetFunctionType( |
| 266 | Types.arrangeBuiltinFunctionDeclaration(Ctx.VoidTy, Params)); |
Chris Lattner | ce8754e | 2009-04-22 02:44:54 +0000 | [diff] [blame] | 267 | return CGM.CreateRuntimeFunction(FTy, "objc_setProperty"); |
| 268 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 269 | |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 270 | llvm::Constant *getOptimizedSetPropertyFn(bool atomic, bool copy) { |
| 271 | CodeGen::CodeGenTypes &Types = CGM.getTypes(); |
| 272 | ASTContext &Ctx = CGM.getContext(); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 273 | // void objc_setProperty_atomic(id self, SEL _cmd, |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 274 | // id newValue, ptrdiff_t offset); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 275 | // void objc_setProperty_nonatomic(id self, SEL _cmd, |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 276 | // id newValue, ptrdiff_t offset); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 277 | // void objc_setProperty_atomic_copy(id self, SEL _cmd, |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 278 | // id newValue, ptrdiff_t offset); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 279 | // void objc_setProperty_nonatomic_copy(id self, SEL _cmd, |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 280 | // id newValue, ptrdiff_t offset); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 281 | |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 282 | SmallVector<CanQualType,4> Params; |
| 283 | CanQualType IdType = Ctx.getCanonicalParamType(Ctx.getObjCIdType()); |
| 284 | CanQualType SelType = Ctx.getCanonicalParamType(Ctx.getObjCSelType()); |
| 285 | Params.push_back(IdType); |
| 286 | Params.push_back(SelType); |
| 287 | Params.push_back(IdType); |
| 288 | Params.push_back(Ctx.getPointerDiffType()->getCanonicalTypeUnqualified()); |
| 289 | llvm::FunctionType *FTy = |
John McCall | c56a8b3 | 2016-03-11 04:30:31 +0000 | [diff] [blame] | 290 | Types.GetFunctionType( |
| 291 | Types.arrangeBuiltinFunctionDeclaration(Ctx.VoidTy, Params)); |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 292 | const char *name; |
| 293 | if (atomic && copy) |
| 294 | name = "objc_setProperty_atomic_copy"; |
| 295 | else if (atomic && !copy) |
| 296 | name = "objc_setProperty_atomic"; |
| 297 | else if (!atomic && copy) |
| 298 | name = "objc_setProperty_nonatomic_copy"; |
| 299 | else |
| 300 | name = "objc_setProperty_nonatomic"; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 301 | |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 302 | return CGM.CreateRuntimeFunction(FTy, name); |
| 303 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 304 | |
Fariborz Jahanian | 5a8c203 | 2010-04-12 18:18:10 +0000 | [diff] [blame] | 305 | llvm::Constant *getCopyStructFn() { |
| 306 | CodeGen::CodeGenTypes &Types = CGM.getTypes(); |
| 307 | ASTContext &Ctx = CGM.getContext(); |
| 308 | // void objc_copyStruct (void *, const void *, size_t, bool, bool) |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 309 | SmallVector<CanQualType,5> Params; |
Fariborz Jahanian | 5a8c203 | 2010-04-12 18:18:10 +0000 | [diff] [blame] | 310 | Params.push_back(Ctx.VoidPtrTy); |
| 311 | Params.push_back(Ctx.VoidPtrTy); |
Saleem Abdulrasool | 91d9bfc | 2017-06-17 17:30:31 +0000 | [diff] [blame] | 312 | Params.push_back(Ctx.getSizeType()); |
Fariborz Jahanian | 5a8c203 | 2010-04-12 18:18:10 +0000 | [diff] [blame] | 313 | Params.push_back(Ctx.BoolTy); |
| 314 | Params.push_back(Ctx.BoolTy); |
Chris Lattner | 2192fe5 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 315 | llvm::FunctionType *FTy = |
John McCall | c56a8b3 | 2016-03-11 04:30:31 +0000 | [diff] [blame] | 316 | Types.GetFunctionType( |
| 317 | Types.arrangeBuiltinFunctionDeclaration(Ctx.VoidTy, Params)); |
Fariborz Jahanian | 5a8c203 | 2010-04-12 18:18:10 +0000 | [diff] [blame] | 318 | return CGM.CreateRuntimeFunction(FTy, "objc_copyStruct"); |
| 319 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 320 | |
Fariborz Jahanian | 1e1b549 | 2012-01-06 18:07:23 +0000 | [diff] [blame] | 321 | /// This routine declares and returns address of: |
| 322 | /// void objc_copyCppObjectAtomic( |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 323 | /// void *dest, const void *src, |
Fariborz Jahanian | 1e1b549 | 2012-01-06 18:07:23 +0000 | [diff] [blame] | 324 | /// void (*copyHelper) (void *dest, const void *source)); |
| 325 | llvm::Constant *getCppAtomicObjectFunction() { |
| 326 | CodeGen::CodeGenTypes &Types = CGM.getTypes(); |
| 327 | ASTContext &Ctx = CGM.getContext(); |
| 328 | /// void objc_copyCppObjectAtomic(void *dest, const void *src, void *helper); |
| 329 | SmallVector<CanQualType,3> Params; |
| 330 | Params.push_back(Ctx.VoidPtrTy); |
| 331 | Params.push_back(Ctx.VoidPtrTy); |
| 332 | Params.push_back(Ctx.VoidPtrTy); |
| 333 | llvm::FunctionType *FTy = |
John McCall | c56a8b3 | 2016-03-11 04:30:31 +0000 | [diff] [blame] | 334 | Types.GetFunctionType( |
| 335 | Types.arrangeBuiltinFunctionDeclaration(Ctx.VoidTy, Params)); |
Fariborz Jahanian | 1e1b549 | 2012-01-06 18:07:23 +0000 | [diff] [blame] | 336 | return CGM.CreateRuntimeFunction(FTy, "objc_copyCppObjectAtomic"); |
| 337 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 338 | |
Chris Lattner | ce8754e | 2009-04-22 02:44:54 +0000 | [diff] [blame] | 339 | llvm::Constant *getEnumerationMutationFn() { |
Daniel Dunbar | 9d82da4 | 2009-07-11 20:32:50 +0000 | [diff] [blame] | 340 | CodeGen::CodeGenTypes &Types = CGM.getTypes(); |
| 341 | ASTContext &Ctx = CGM.getContext(); |
Chris Lattner | ce8754e | 2009-04-22 02:44:54 +0000 | [diff] [blame] | 342 | // void objc_enumerationMutation (id) |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 343 | SmallVector<CanQualType,1> Params; |
John McCall | 2da83a3 | 2010-02-26 00:48:12 +0000 | [diff] [blame] | 344 | Params.push_back(Ctx.getCanonicalParamType(Ctx.getObjCIdType())); |
Chris Lattner | 2192fe5 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 345 | llvm::FunctionType *FTy = |
John McCall | c56a8b3 | 2016-03-11 04:30:31 +0000 | [diff] [blame] | 346 | Types.GetFunctionType( |
| 347 | Types.arrangeBuiltinFunctionDeclaration(Ctx.VoidTy, Params)); |
Chris Lattner | ce8754e | 2009-04-22 02:44:54 +0000 | [diff] [blame] | 348 | return CGM.CreateRuntimeFunction(FTy, "objc_enumerationMutation"); |
| 349 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 350 | |
Douglas Gregor | 24ae22c | 2016-04-01 23:23:52 +0000 | [diff] [blame] | 351 | llvm::Constant *getLookUpClassFn() { |
| 352 | CodeGen::CodeGenTypes &Types = CGM.getTypes(); |
| 353 | ASTContext &Ctx = CGM.getContext(); |
| 354 | // Class objc_lookUpClass (const char *) |
| 355 | SmallVector<CanQualType,1> Params; |
| 356 | Params.push_back( |
| 357 | Ctx.getCanonicalType(Ctx.getPointerType(Ctx.CharTy.withConst()))); |
| 358 | llvm::FunctionType *FTy = |
| 359 | Types.GetFunctionType(Types.arrangeBuiltinFunctionDeclaration( |
| 360 | Ctx.getCanonicalType(Ctx.getObjCClassType()), |
| 361 | Params)); |
| 362 | return CGM.CreateRuntimeFunction(FTy, "objc_lookUpClass"); |
| 363 | } |
| 364 | |
Fariborz Jahanian | eee54df | 2009-01-22 00:37:21 +0000 | [diff] [blame] | 365 | /// GcReadWeakFn -- LLVM objc_read_weak (id *src) function. |
Chris Lattner | ce8754e | 2009-04-22 02:44:54 +0000 | [diff] [blame] | 366 | llvm::Constant *getGcReadWeakFn() { |
| 367 | // id objc_read_weak (id *) |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 368 | llvm::Type *args[] = { ObjectPtrTy->getPointerTo() }; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 369 | llvm::FunctionType *FTy = |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 370 | llvm::FunctionType::get(ObjectPtrTy, args, false); |
Chris Lattner | ce8754e | 2009-04-22 02:44:54 +0000 | [diff] [blame] | 371 | return CGM.CreateRuntimeFunction(FTy, "objc_read_weak"); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 372 | } |
| 373 | |
Fariborz Jahanian | eee54df | 2009-01-22 00:37:21 +0000 | [diff] [blame] | 374 | /// GcAssignWeakFn -- LLVM objc_assign_weak function. |
Chris Lattner | 6fdd57c | 2009-04-17 22:12:36 +0000 | [diff] [blame] | 375 | llvm::Constant *getGcAssignWeakFn() { |
| 376 | // id objc_assign_weak (id, id *) |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 377 | llvm::Type *args[] = { ObjectPtrTy, ObjectPtrTy->getPointerTo() }; |
Chris Lattner | 6fdd57c | 2009-04-17 22:12:36 +0000 | [diff] [blame] | 378 | llvm::FunctionType *FTy = |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 379 | llvm::FunctionType::get(ObjectPtrTy, args, false); |
Chris Lattner | 6fdd57c | 2009-04-17 22:12:36 +0000 | [diff] [blame] | 380 | return CGM.CreateRuntimeFunction(FTy, "objc_assign_weak"); |
| 381 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 382 | |
Fariborz Jahanian | eee54df | 2009-01-22 00:37:21 +0000 | [diff] [blame] | 383 | /// GcAssignGlobalFn -- LLVM objc_assign_global function. |
Chris Lattner | 0a696a42 | 2009-04-22 02:38:11 +0000 | [diff] [blame] | 384 | llvm::Constant *getGcAssignGlobalFn() { |
| 385 | // id objc_assign_global(id, id *) |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 386 | llvm::Type *args[] = { ObjectPtrTy, ObjectPtrTy->getPointerTo() }; |
Owen Anderson | 170229f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 387 | llvm::FunctionType *FTy = |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 388 | llvm::FunctionType::get(ObjectPtrTy, args, false); |
Chris Lattner | 0a696a42 | 2009-04-22 02:38:11 +0000 | [diff] [blame] | 389 | return CGM.CreateRuntimeFunction(FTy, "objc_assign_global"); |
| 390 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 391 | |
Fariborz Jahanian | 217af24 | 2010-07-20 20:30:03 +0000 | [diff] [blame] | 392 | /// GcAssignThreadLocalFn -- LLVM objc_assign_threadlocal function. |
| 393 | llvm::Constant *getGcAssignThreadLocalFn() { |
| 394 | // id objc_assign_threadlocal(id src, id * dest) |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 395 | llvm::Type *args[] = { ObjectPtrTy, ObjectPtrTy->getPointerTo() }; |
Fariborz Jahanian | 217af24 | 2010-07-20 20:30:03 +0000 | [diff] [blame] | 396 | llvm::FunctionType *FTy = |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 397 | llvm::FunctionType::get(ObjectPtrTy, args, false); |
Fariborz Jahanian | 217af24 | 2010-07-20 20:30:03 +0000 | [diff] [blame] | 398 | return CGM.CreateRuntimeFunction(FTy, "objc_assign_threadlocal"); |
| 399 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 400 | |
Fariborz Jahanian | eee54df | 2009-01-22 00:37:21 +0000 | [diff] [blame] | 401 | /// GcAssignIvarFn -- LLVM objc_assign_ivar function. |
Chris Lattner | 0a696a42 | 2009-04-22 02:38:11 +0000 | [diff] [blame] | 402 | llvm::Constant *getGcAssignIvarFn() { |
Fariborz Jahanian | 7a95d72 | 2009-09-24 22:25:38 +0000 | [diff] [blame] | 403 | // id objc_assign_ivar(id, id *, ptrdiff_t) |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 404 | llvm::Type *args[] = { ObjectPtrTy, ObjectPtrTy->getPointerTo(), |
| 405 | CGM.PtrDiffTy }; |
Owen Anderson | 170229f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 406 | llvm::FunctionType *FTy = |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 407 | llvm::FunctionType::get(ObjectPtrTy, args, false); |
Chris Lattner | 0a696a42 | 2009-04-22 02:38:11 +0000 | [diff] [blame] | 408 | return CGM.CreateRuntimeFunction(FTy, "objc_assign_ivar"); |
| 409 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 410 | |
Fariborz Jahanian | 5f21d2f | 2009-07-08 01:18:33 +0000 | [diff] [blame] | 411 | /// GcMemmoveCollectableFn -- LLVM objc_memmove_collectable function. |
| 412 | llvm::Constant *GcMemmoveCollectableFn() { |
| 413 | // void *objc_memmove_collectable(void *dst, const void *src, size_t size) |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 414 | llvm::Type *args[] = { Int8PtrTy, Int8PtrTy, LongTy }; |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 415 | llvm::FunctionType *FTy = llvm::FunctionType::get(Int8PtrTy, args, false); |
Fariborz Jahanian | 5f21d2f | 2009-07-08 01:18:33 +0000 | [diff] [blame] | 416 | return CGM.CreateRuntimeFunction(FTy, "objc_memmove_collectable"); |
| 417 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 418 | |
Fariborz Jahanian | eee54df | 2009-01-22 00:37:21 +0000 | [diff] [blame] | 419 | /// GcAssignStrongCastFn -- LLVM objc_assign_strongCast function. |
Chris Lattner | 0a696a42 | 2009-04-22 02:38:11 +0000 | [diff] [blame] | 420 | llvm::Constant *getGcAssignStrongCastFn() { |
Fariborz Jahanian | 217af24 | 2010-07-20 20:30:03 +0000 | [diff] [blame] | 421 | // id objc_assign_strongCast(id, id *) |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 422 | llvm::Type *args[] = { ObjectPtrTy, ObjectPtrTy->getPointerTo() }; |
Owen Anderson | 170229f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 423 | llvm::FunctionType *FTy = |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 424 | llvm::FunctionType::get(ObjectPtrTy, args, false); |
Chris Lattner | 0a696a42 | 2009-04-22 02:38:11 +0000 | [diff] [blame] | 425 | return CGM.CreateRuntimeFunction(FTy, "objc_assign_strongCast"); |
| 426 | } |
Anders Carlsson | 9ab53d1 | 2009-02-16 22:59:18 +0000 | [diff] [blame] | 427 | |
| 428 | /// ExceptionThrowFn - LLVM objc_exception_throw function. |
Chris Lattner | 0a696a42 | 2009-04-22 02:38:11 +0000 | [diff] [blame] | 429 | llvm::Constant *getExceptionThrowFn() { |
| 430 | // void objc_exception_throw(id) |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 431 | llvm::Type *args[] = { ObjectPtrTy }; |
Chris Lattner | 0a696a42 | 2009-04-22 02:38:11 +0000 | [diff] [blame] | 432 | llvm::FunctionType *FTy = |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 433 | llvm::FunctionType::get(CGM.VoidTy, args, false); |
Chris Lattner | 0a696a42 | 2009-04-22 02:38:11 +0000 | [diff] [blame] | 434 | return CGM.CreateRuntimeFunction(FTy, "objc_exception_throw"); |
| 435 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 436 | |
Fariborz Jahanian | 3336de1 | 2010-05-28 17:34:43 +0000 | [diff] [blame] | 437 | /// ExceptionRethrowFn - LLVM objc_exception_rethrow function. |
| 438 | llvm::Constant *getExceptionRethrowFn() { |
| 439 | // void objc_exception_rethrow(void) |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 440 | llvm::FunctionType *FTy = llvm::FunctionType::get(CGM.VoidTy, false); |
Fariborz Jahanian | 3336de1 | 2010-05-28 17:34:43 +0000 | [diff] [blame] | 441 | return CGM.CreateRuntimeFunction(FTy, "objc_exception_rethrow"); |
| 442 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 443 | |
Daniel Dunbar | 94ceb61 | 2009-02-24 01:43:46 +0000 | [diff] [blame] | 444 | /// SyncEnterFn - LLVM object_sync_enter function. |
Chris Lattner | dcceee7 | 2009-04-06 16:53:45 +0000 | [diff] [blame] | 445 | llvm::Constant *getSyncEnterFn() { |
Aaron Ballman | 9c00446 | 2012-09-06 16:44:16 +0000 | [diff] [blame] | 446 | // int objc_sync_enter (id) |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 447 | llvm::Type *args[] = { ObjectPtrTy }; |
Chris Lattner | dcceee7 | 2009-04-06 16:53:45 +0000 | [diff] [blame] | 448 | llvm::FunctionType *FTy = |
Aaron Ballman | 9c00446 | 2012-09-06 16:44:16 +0000 | [diff] [blame] | 449 | llvm::FunctionType::get(CGM.IntTy, args, false); |
Chris Lattner | dcceee7 | 2009-04-06 16:53:45 +0000 | [diff] [blame] | 450 | return CGM.CreateRuntimeFunction(FTy, "objc_sync_enter"); |
| 451 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 452 | |
Daniel Dunbar | 94ceb61 | 2009-02-24 01:43:46 +0000 | [diff] [blame] | 453 | /// SyncExitFn - LLVM object_sync_exit function. |
Chris Lattner | 0a696a42 | 2009-04-22 02:38:11 +0000 | [diff] [blame] | 454 | llvm::Constant *getSyncExitFn() { |
Aaron Ballman | 9c00446 | 2012-09-06 16:44:16 +0000 | [diff] [blame] | 455 | // int objc_sync_exit (id) |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 456 | llvm::Type *args[] = { ObjectPtrTy }; |
Chris Lattner | 0a696a42 | 2009-04-22 02:38:11 +0000 | [diff] [blame] | 457 | llvm::FunctionType *FTy = |
Aaron Ballman | 9c00446 | 2012-09-06 16:44:16 +0000 | [diff] [blame] | 458 | llvm::FunctionType::get(CGM.IntTy, args, false); |
Chris Lattner | 0a696a42 | 2009-04-22 02:38:11 +0000 | [diff] [blame] | 459 | return CGM.CreateRuntimeFunction(FTy, "objc_sync_exit"); |
| 460 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 461 | |
Fariborz Jahanian | 5d5ed2d | 2009-05-11 19:25:47 +0000 | [diff] [blame] | 462 | llvm::Constant *getSendFn(bool IsSuper) const { |
| 463 | return IsSuper ? getMessageSendSuperFn() : getMessageSendFn(); |
| 464 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 465 | |
Fariborz Jahanian | 5d5ed2d | 2009-05-11 19:25:47 +0000 | [diff] [blame] | 466 | llvm::Constant *getSendFn2(bool IsSuper) const { |
| 467 | return IsSuper ? getMessageSendSuperFn2() : getMessageSendFn(); |
| 468 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 469 | |
Fariborz Jahanian | 5d5ed2d | 2009-05-11 19:25:47 +0000 | [diff] [blame] | 470 | llvm::Constant *getSendStretFn(bool IsSuper) const { |
| 471 | return IsSuper ? getMessageSendSuperStretFn() : getMessageSendStretFn(); |
| 472 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 473 | |
Fariborz Jahanian | 5d5ed2d | 2009-05-11 19:25:47 +0000 | [diff] [blame] | 474 | llvm::Constant *getSendStretFn2(bool IsSuper) const { |
| 475 | return IsSuper ? getMessageSendSuperStretFn2() : getMessageSendStretFn(); |
| 476 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 477 | |
Fariborz Jahanian | 5d5ed2d | 2009-05-11 19:25:47 +0000 | [diff] [blame] | 478 | llvm::Constant *getSendFpretFn(bool IsSuper) const { |
| 479 | return IsSuper ? getMessageSendSuperFpretFn() : getMessageSendFpretFn(); |
| 480 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 481 | |
Fariborz Jahanian | 5d5ed2d | 2009-05-11 19:25:47 +0000 | [diff] [blame] | 482 | llvm::Constant *getSendFpretFn2(bool IsSuper) const { |
| 483 | return IsSuper ? getMessageSendSuperFpretFn2() : getMessageSendFpretFn(); |
| 484 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 485 | |
Anders Carlsson | 2f1a6c3 | 2011-10-31 16:27:11 +0000 | [diff] [blame] | 486 | llvm::Constant *getSendFp2retFn(bool IsSuper) const { |
| 487 | return IsSuper ? getMessageSendSuperFn() : getMessageSendFp2retFn(); |
| 488 | } |
| 489 | |
| 490 | llvm::Constant *getSendFp2RetFn2(bool IsSuper) const { |
| 491 | return IsSuper ? getMessageSendSuperFn2() : getMessageSendFp2retFn(); |
| 492 | } |
| 493 | |
Fariborz Jahanian | 279eda6 | 2009-01-21 22:04:16 +0000 | [diff] [blame] | 494 | ObjCCommonTypesHelper(CodeGen::CodeGenModule &cgm); |
Fariborz Jahanian | 279eda6 | 2009-01-21 22:04:16 +0000 | [diff] [blame] | 495 | }; |
Daniel Dunbar | f6397fe | 2008-08-23 04:28:29 +0000 | [diff] [blame] | 496 | |
Fariborz Jahanian | 279eda6 | 2009-01-21 22:04:16 +0000 | [diff] [blame] | 497 | /// ObjCTypesHelper - Helper class that encapsulates lazy |
| 498 | /// construction of varies types used during ObjC generation. |
| 499 | class ObjCTypesHelper : public ObjCCommonTypesHelper { |
Fariborz Jahanian | 279eda6 | 2009-01-21 22:04:16 +0000 | [diff] [blame] | 500 | public: |
Daniel Dunbar | 7bd00bd | 2008-08-12 06:48:42 +0000 | [diff] [blame] | 501 | /// SymtabTy - LLVM type for struct objc_symtab. |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 502 | llvm::StructType *SymtabTy; |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 503 | /// SymtabPtrTy - LLVM type for struct objc_symtab *. |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 504 | llvm::PointerType *SymtabPtrTy; |
Daniel Dunbar | 7bd00bd | 2008-08-12 06:48:42 +0000 | [diff] [blame] | 505 | /// ModuleTy - LLVM type for struct objc_module. |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 506 | llvm::StructType *ModuleTy; |
Daniel Dunbar | cb515c8 | 2008-08-12 03:39:23 +0000 | [diff] [blame] | 507 | |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 508 | /// ProtocolTy - LLVM type for struct objc_protocol. |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 509 | llvm::StructType *ProtocolTy; |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 510 | /// ProtocolPtrTy - LLVM type for struct objc_protocol *. |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 511 | llvm::PointerType *ProtocolPtrTy; |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 512 | /// ProtocolExtensionTy - LLVM type for struct |
| 513 | /// objc_protocol_extension. |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 514 | llvm::StructType *ProtocolExtensionTy; |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 515 | /// ProtocolExtensionTy - LLVM type for struct |
| 516 | /// objc_protocol_extension *. |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 517 | llvm::PointerType *ProtocolExtensionPtrTy; |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 518 | /// MethodDescriptionTy - LLVM type for struct |
| 519 | /// objc_method_description. |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 520 | llvm::StructType *MethodDescriptionTy; |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 521 | /// MethodDescriptionListTy - LLVM type for struct |
| 522 | /// objc_method_description_list. |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 523 | llvm::StructType *MethodDescriptionListTy; |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 524 | /// MethodDescriptionListPtrTy - LLVM type for struct |
| 525 | /// objc_method_description_list *. |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 526 | llvm::PointerType *MethodDescriptionListPtrTy; |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 527 | /// ProtocolListTy - LLVM type for struct objc_property_list. |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 528 | llvm::StructType *ProtocolListTy; |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 529 | /// ProtocolListPtrTy - LLVM type for struct objc_property_list*. |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 530 | llvm::PointerType *ProtocolListPtrTy; |
Daniel Dunbar | 938a77f | 2008-08-22 20:34:54 +0000 | [diff] [blame] | 531 | /// CategoryTy - LLVM type for struct objc_category. |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 532 | llvm::StructType *CategoryTy; |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 533 | /// ClassTy - LLVM type for struct objc_class. |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 534 | llvm::StructType *ClassTy; |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 535 | /// ClassPtrTy - LLVM type for struct objc_class *. |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 536 | llvm::PointerType *ClassPtrTy; |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 537 | /// ClassExtensionTy - LLVM type for struct objc_class_ext. |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 538 | llvm::StructType *ClassExtensionTy; |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 539 | /// ClassExtensionPtrTy - LLVM type for struct objc_class_ext *. |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 540 | llvm::PointerType *ClassExtensionPtrTy; |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 541 | // IvarTy - LLVM type for struct objc_ivar. |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 542 | llvm::StructType *IvarTy; |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 543 | /// IvarListTy - LLVM type for struct objc_ivar_list. |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 544 | llvm::StructType *IvarListTy; |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 545 | /// IvarListPtrTy - LLVM type for struct objc_ivar_list *. |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 546 | llvm::PointerType *IvarListPtrTy; |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 547 | /// MethodListTy - LLVM type for struct objc_method_list. |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 548 | llvm::StructType *MethodListTy; |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 549 | /// MethodListPtrTy - LLVM type for struct objc_method_list *. |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 550 | llvm::PointerType *MethodListPtrTy; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 551 | |
Anders Carlsson | 9ff2248 | 2008-09-09 10:10:21 +0000 | [diff] [blame] | 552 | /// ExceptionDataTy - LLVM type for struct _objc_exception_data. |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 553 | llvm::StructType *ExceptionDataTy; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 554 | |
Anders Carlsson | 9ff2248 | 2008-09-09 10:10:21 +0000 | [diff] [blame] | 555 | /// ExceptionTryEnterFn - LLVM objc_exception_try_enter function. |
Chris Lattner | c6406db | 2009-04-22 02:26:14 +0000 | [diff] [blame] | 556 | llvm::Constant *getExceptionTryEnterFn() { |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 557 | llvm::Type *params[] = { ExceptionDataTy->getPointerTo() }; |
Owen Anderson | 170229f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 558 | return CGM.CreateRuntimeFunction( |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 559 | llvm::FunctionType::get(CGM.VoidTy, params, false), |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 560 | "objc_exception_try_enter"); |
Chris Lattner | c6406db | 2009-04-22 02:26:14 +0000 | [diff] [blame] | 561 | } |
Anders Carlsson | 9ff2248 | 2008-09-09 10:10:21 +0000 | [diff] [blame] | 562 | |
| 563 | /// ExceptionTryExitFn - LLVM objc_exception_try_exit function. |
Chris Lattner | c6406db | 2009-04-22 02:26:14 +0000 | [diff] [blame] | 564 | llvm::Constant *getExceptionTryExitFn() { |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 565 | llvm::Type *params[] = { ExceptionDataTy->getPointerTo() }; |
Owen Anderson | 170229f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 566 | return CGM.CreateRuntimeFunction( |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 567 | llvm::FunctionType::get(CGM.VoidTy, params, false), |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 568 | "objc_exception_try_exit"); |
Chris Lattner | c6406db | 2009-04-22 02:26:14 +0000 | [diff] [blame] | 569 | } |
Anders Carlsson | 9ff2248 | 2008-09-09 10:10:21 +0000 | [diff] [blame] | 570 | |
| 571 | /// ExceptionExtractFn - LLVM objc_exception_extract function. |
Chris Lattner | c6406db | 2009-04-22 02:26:14 +0000 | [diff] [blame] | 572 | llvm::Constant *getExceptionExtractFn() { |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 573 | llvm::Type *params[] = { ExceptionDataTy->getPointerTo() }; |
Owen Anderson | 9793f0e | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 574 | return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy, |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 575 | params, false), |
Chris Lattner | c6406db | 2009-04-22 02:26:14 +0000 | [diff] [blame] | 576 | "objc_exception_extract"); |
Chris Lattner | c6406db | 2009-04-22 02:26:14 +0000 | [diff] [blame] | 577 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 578 | |
Anders Carlsson | 9ff2248 | 2008-09-09 10:10:21 +0000 | [diff] [blame] | 579 | /// ExceptionMatchFn - LLVM objc_exception_match function. |
Chris Lattner | c6406db | 2009-04-22 02:26:14 +0000 | [diff] [blame] | 580 | llvm::Constant *getExceptionMatchFn() { |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 581 | llvm::Type *params[] = { ClassPtrTy, ObjectPtrTy }; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 582 | return CGM.CreateRuntimeFunction( |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 583 | llvm::FunctionType::get(CGM.Int32Ty, params, false), |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 584 | "objc_exception_match"); |
Chris Lattner | c6406db | 2009-04-22 02:26:14 +0000 | [diff] [blame] | 585 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 586 | |
Anders Carlsson | 9ff2248 | 2008-09-09 10:10:21 +0000 | [diff] [blame] | 587 | /// SetJmpFn - LLVM _setjmp function. |
Chris Lattner | c6406db | 2009-04-22 02:26:14 +0000 | [diff] [blame] | 588 | llvm::Constant *getSetJmpFn() { |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 589 | // This is specifically the prototype for x86. |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 590 | llvm::Type *params[] = { CGM.Int32Ty->getPointerTo() }; |
Reid Kleckner | de86482 | 2017-03-21 16:57:30 +0000 | [diff] [blame] | 591 | return CGM.CreateRuntimeFunction( |
| 592 | llvm::FunctionType::get(CGM.Int32Ty, params, false), "_setjmp", |
| 593 | llvm::AttributeList::get(CGM.getLLVMContext(), |
| 594 | llvm::AttributeList::FunctionIndex, |
| 595 | llvm::Attribute::NonLazyBind)); |
Chris Lattner | c6406db | 2009-04-22 02:26:14 +0000 | [diff] [blame] | 596 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 597 | |
Daniel Dunbar | 8b8683f | 2008-08-12 00:12:39 +0000 | [diff] [blame] | 598 | public: |
| 599 | ObjCTypesHelper(CodeGen::CodeGenModule &cgm); |
Daniel Dunbar | 8b8683f | 2008-08-12 00:12:39 +0000 | [diff] [blame] | 600 | }; |
| 601 | |
Fariborz Jahanian | b15a3d5 | 2009-01-22 23:02:58 +0000 | [diff] [blame] | 602 | /// ObjCNonFragileABITypesHelper - will have all types needed by objective-c's |
Fariborz Jahanian | 279eda6 | 2009-01-21 22:04:16 +0000 | [diff] [blame] | 603 | /// modern abi |
Fariborz Jahanian | b15a3d5 | 2009-01-22 23:02:58 +0000 | [diff] [blame] | 604 | class ObjCNonFragileABITypesHelper : public ObjCCommonTypesHelper { |
Fariborz Jahanian | e4dc35d | 2009-02-04 20:42:28 +0000 | [diff] [blame] | 605 | public: |
Fariborz Jahanian | 0232c05 | 2009-01-23 01:46:23 +0000 | [diff] [blame] | 606 | // MethodListnfABITy - LLVM for struct _method_list_t |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 607 | llvm::StructType *MethodListnfABITy; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 608 | |
Fariborz Jahanian | 0232c05 | 2009-01-23 01:46:23 +0000 | [diff] [blame] | 609 | // MethodListnfABIPtrTy - LLVM for struct _method_list_t* |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 610 | llvm::PointerType *MethodListnfABIPtrTy; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 611 | |
Fariborz Jahanian | 0232c05 | 2009-01-23 01:46:23 +0000 | [diff] [blame] | 612 | // ProtocolnfABITy = LLVM for struct _protocol_t |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 613 | llvm::StructType *ProtocolnfABITy; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 614 | |
Daniel Dunbar | 8de90f0 | 2009-02-15 07:36:20 +0000 | [diff] [blame] | 615 | // ProtocolnfABIPtrTy = LLVM for struct _protocol_t* |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 616 | llvm::PointerType *ProtocolnfABIPtrTy; |
Daniel Dunbar | 8de90f0 | 2009-02-15 07:36:20 +0000 | [diff] [blame] | 617 | |
Fariborz Jahanian | 0232c05 | 2009-01-23 01:46:23 +0000 | [diff] [blame] | 618 | // ProtocolListnfABITy - LLVM for struct _objc_protocol_list |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 619 | llvm::StructType *ProtocolListnfABITy; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 620 | |
Fariborz Jahanian | 0232c05 | 2009-01-23 01:46:23 +0000 | [diff] [blame] | 621 | // ProtocolListnfABIPtrTy - LLVM for struct _objc_protocol_list* |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 622 | llvm::PointerType *ProtocolListnfABIPtrTy; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 623 | |
Fariborz Jahanian | 0232c05 | 2009-01-23 01:46:23 +0000 | [diff] [blame] | 624 | // ClassnfABITy - LLVM for struct _class_t |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 625 | llvm::StructType *ClassnfABITy; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 626 | |
Fariborz Jahanian | 7139404 | 2009-01-23 23:53:38 +0000 | [diff] [blame] | 627 | // ClassnfABIPtrTy - LLVM for struct _class_t* |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 628 | llvm::PointerType *ClassnfABIPtrTy; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 629 | |
Fariborz Jahanian | 0232c05 | 2009-01-23 01:46:23 +0000 | [diff] [blame] | 630 | // IvarnfABITy - LLVM for struct _ivar_t |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 631 | llvm::StructType *IvarnfABITy; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 632 | |
Fariborz Jahanian | 0232c05 | 2009-01-23 01:46:23 +0000 | [diff] [blame] | 633 | // IvarListnfABITy - LLVM for struct _ivar_list_t |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 634 | llvm::StructType *IvarListnfABITy; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 635 | |
Fariborz Jahanian | 0232c05 | 2009-01-23 01:46:23 +0000 | [diff] [blame] | 636 | // IvarListnfABIPtrTy = LLVM for struct _ivar_list_t* |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 637 | llvm::PointerType *IvarListnfABIPtrTy; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 638 | |
Fariborz Jahanian | 0232c05 | 2009-01-23 01:46:23 +0000 | [diff] [blame] | 639 | // ClassRonfABITy - LLVM for struct _class_ro_t |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 640 | llvm::StructType *ClassRonfABITy; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 641 | |
Fariborz Jahanian | 0232c05 | 2009-01-23 01:46:23 +0000 | [diff] [blame] | 642 | // ImpnfABITy - LLVM for id (*)(id, SEL, ...) |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 643 | llvm::PointerType *ImpnfABITy; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 644 | |
Fariborz Jahanian | 0232c05 | 2009-01-23 01:46:23 +0000 | [diff] [blame] | 645 | // CategorynfABITy - LLVM for struct _category_t |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 646 | llvm::StructType *CategorynfABITy; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 647 | |
Fariborz Jahanian | 82c72e1 | 2009-02-03 23:49:23 +0000 | [diff] [blame] | 648 | // New types for nonfragile abi messaging. |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 649 | |
Fariborz Jahanian | 82c72e1 | 2009-02-03 23:49:23 +0000 | [diff] [blame] | 650 | // MessageRefTy - LLVM for: |
| 651 | // struct _message_ref_t { |
| 652 | // IMP messenger; |
| 653 | // SEL name; |
| 654 | // }; |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 655 | llvm::StructType *MessageRefTy; |
Fariborz Jahanian | e4dc35d | 2009-02-04 20:42:28 +0000 | [diff] [blame] | 656 | // MessageRefCTy - clang type for struct _message_ref_t |
| 657 | QualType MessageRefCTy; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 658 | |
Fariborz Jahanian | 82c72e1 | 2009-02-03 23:49:23 +0000 | [diff] [blame] | 659 | // MessageRefPtrTy - LLVM for struct _message_ref_t* |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 660 | llvm::Type *MessageRefPtrTy; |
Fariborz Jahanian | e4dc35d | 2009-02-04 20:42:28 +0000 | [diff] [blame] | 661 | // MessageRefCPtrTy - clang type for struct _message_ref_t* |
| 662 | QualType MessageRefCPtrTy; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 663 | |
Fariborz Jahanian | 82c72e1 | 2009-02-03 23:49:23 +0000 | [diff] [blame] | 664 | // SuperMessageRefTy - LLVM for: |
| 665 | // struct _super_message_ref_t { |
| 666 | // SUPER_IMP messenger; |
| 667 | // SEL name; |
| 668 | // }; |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 669 | llvm::StructType *SuperMessageRefTy; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 670 | |
Fariborz Jahanian | 82c72e1 | 2009-02-03 23:49:23 +0000 | [diff] [blame] | 671 | // SuperMessageRefPtrTy - LLVM for struct _super_message_ref_t* |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 672 | llvm::PointerType *SuperMessageRefPtrTy; |
Daniel Dunbar | 0b0dcd9 | 2009-02-24 07:47:38 +0000 | [diff] [blame] | 673 | |
Chris Lattner | 2dfdb3e | 2009-04-22 02:53:24 +0000 | [diff] [blame] | 674 | llvm::Constant *getMessageSendFixupFn() { |
| 675 | // id objc_msgSend_fixup(id, struct message_ref_t*, ...) |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 676 | llvm::Type *params[] = { ObjectPtrTy, MessageRefPtrTy }; |
Owen Anderson | 9793f0e | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 677 | return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy, |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 678 | params, true), |
Chris Lattner | 2dfdb3e | 2009-04-22 02:53:24 +0000 | [diff] [blame] | 679 | "objc_msgSend_fixup"); |
| 680 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 681 | |
Chris Lattner | 2dfdb3e | 2009-04-22 02:53:24 +0000 | [diff] [blame] | 682 | llvm::Constant *getMessageSendFpretFixupFn() { |
| 683 | // id objc_msgSend_fpret_fixup(id, struct message_ref_t*, ...) |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 684 | llvm::Type *params[] = { ObjectPtrTy, MessageRefPtrTy }; |
Owen Anderson | 9793f0e | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 685 | return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy, |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 686 | params, true), |
Chris Lattner | 2dfdb3e | 2009-04-22 02:53:24 +0000 | [diff] [blame] | 687 | "objc_msgSend_fpret_fixup"); |
| 688 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 689 | |
Chris Lattner | 2dfdb3e | 2009-04-22 02:53:24 +0000 | [diff] [blame] | 690 | llvm::Constant *getMessageSendStretFixupFn() { |
| 691 | // id objc_msgSend_stret_fixup(id, struct message_ref_t*, ...) |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 692 | llvm::Type *params[] = { ObjectPtrTy, MessageRefPtrTy }; |
Owen Anderson | 9793f0e | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 693 | return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy, |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 694 | params, true), |
Chris Lattner | 2dfdb3e | 2009-04-22 02:53:24 +0000 | [diff] [blame] | 695 | "objc_msgSend_stret_fixup"); |
| 696 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 697 | |
Chris Lattner | 2dfdb3e | 2009-04-22 02:53:24 +0000 | [diff] [blame] | 698 | llvm::Constant *getMessageSendSuper2FixupFn() { |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 699 | // id objc_msgSendSuper2_fixup (struct objc_super *, |
Chris Lattner | 2dfdb3e | 2009-04-22 02:53:24 +0000 | [diff] [blame] | 700 | // struct _super_message_ref_t*, ...) |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 701 | llvm::Type *params[] = { SuperPtrTy, SuperMessageRefPtrTy }; |
Owen Anderson | 9793f0e | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 702 | return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy, |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 703 | params, true), |
Chris Lattner | 2dfdb3e | 2009-04-22 02:53:24 +0000 | [diff] [blame] | 704 | "objc_msgSendSuper2_fixup"); |
| 705 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 706 | |
Chris Lattner | 2dfdb3e | 2009-04-22 02:53:24 +0000 | [diff] [blame] | 707 | llvm::Constant *getMessageSendSuper2StretFixupFn() { |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 708 | // id objc_msgSendSuper2_stret_fixup(struct objc_super *, |
Chris Lattner | 2dfdb3e | 2009-04-22 02:53:24 +0000 | [diff] [blame] | 709 | // struct _super_message_ref_t*, ...) |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 710 | llvm::Type *params[] = { SuperPtrTy, SuperMessageRefPtrTy }; |
Owen Anderson | 9793f0e | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 711 | return CGM.CreateRuntimeFunction(llvm::FunctionType::get(ObjectPtrTy, |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 712 | params, true), |
Chris Lattner | 2dfdb3e | 2009-04-22 02:53:24 +0000 | [diff] [blame] | 713 | "objc_msgSendSuper2_stret_fixup"); |
| 714 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 715 | |
Chris Lattner | a7c00b4 | 2009-04-22 02:15:23 +0000 | [diff] [blame] | 716 | llvm::Constant *getObjCEndCatchFn() { |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 717 | return CGM.CreateRuntimeFunction(llvm::FunctionType::get(CGM.VoidTy, false), |
Chris Lattner | a7c00b4 | 2009-04-22 02:15:23 +0000 | [diff] [blame] | 718 | "objc_end_catch"); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 719 | |
Chris Lattner | a7c00b4 | 2009-04-22 02:15:23 +0000 | [diff] [blame] | 720 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 721 | |
Chris Lattner | a7c00b4 | 2009-04-22 02:15:23 +0000 | [diff] [blame] | 722 | llvm::Constant *getObjCBeginCatchFn() { |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 723 | llvm::Type *params[] = { Int8PtrTy }; |
Owen Anderson | 9793f0e | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 724 | return CGM.CreateRuntimeFunction(llvm::FunctionType::get(Int8PtrTy, |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 725 | params, false), |
Chris Lattner | a7c00b4 | 2009-04-22 02:15:23 +0000 | [diff] [blame] | 726 | "objc_begin_catch"); |
| 727 | } |
Daniel Dunbar | b1559a4 | 2009-03-01 04:46:24 +0000 | [diff] [blame] | 728 | |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 729 | llvm::StructType *EHTypeTy; |
| 730 | llvm::Type *EHTypePtrTy; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 731 | |
Fariborz Jahanian | b15a3d5 | 2009-01-22 23:02:58 +0000 | [diff] [blame] | 732 | ObjCNonFragileABITypesHelper(CodeGen::CodeGenModule &cgm); |
Fariborz Jahanian | 279eda6 | 2009-01-21 22:04:16 +0000 | [diff] [blame] | 733 | }; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 734 | |
Saleem Abdulrasool | 271106c | 2016-09-16 23:41:13 +0000 | [diff] [blame] | 735 | enum class ObjCLabelType { |
| 736 | ClassName, |
| 737 | MethodVarName, |
| 738 | MethodVarType, |
| 739 | PropertyName, |
| 740 | }; |
| 741 | |
Fariborz Jahanian | 279eda6 | 2009-01-21 22:04:16 +0000 | [diff] [blame] | 742 | class CGObjCCommonMac : public CodeGen::CGObjCRuntime { |
Fariborz Jahanian | cbaf73c | 2009-03-11 20:59:05 +0000 | [diff] [blame] | 743 | public: |
Fariborz Jahanian | cbaf73c | 2009-03-11 20:59:05 +0000 | [diff] [blame] | 744 | class SKIP_SCAN { |
Daniel Dunbar | 7b89ace | 2009-05-03 13:44:42 +0000 | [diff] [blame] | 745 | public: |
| 746 | unsigned skip; |
| 747 | unsigned scan; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 748 | SKIP_SCAN(unsigned _skip = 0, unsigned _scan = 0) |
Daniel Dunbar | 7b89ace | 2009-05-03 13:44:42 +0000 | [diff] [blame] | 749 | : skip(_skip), scan(_scan) {} |
Fariborz Jahanian | cbaf73c | 2009-03-11 20:59:05 +0000 | [diff] [blame] | 750 | }; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 751 | |
Fariborz Jahanian | 196f938 | 2012-10-25 21:15:04 +0000 | [diff] [blame] | 752 | /// opcode for captured block variables layout 'instructions'. |
| 753 | /// In the following descriptions, 'I' is the value of the immediate field. |
| 754 | /// (field following the opcode). |
| 755 | /// |
| 756 | enum BLOCK_LAYOUT_OPCODE { |
| 757 | /// An operator which affects how the following layout should be |
| 758 | /// interpreted. |
| 759 | /// I == 0: Halt interpretation and treat everything else as |
| 760 | /// a non-pointer. Note that this instruction is equal |
| 761 | /// to '\0'. |
| 762 | /// I != 0: Currently unused. |
| 763 | BLOCK_LAYOUT_OPERATOR = 0, |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 764 | |
Fariborz Jahanian | 196f938 | 2012-10-25 21:15:04 +0000 | [diff] [blame] | 765 | /// The next I+1 bytes do not contain a value of object pointer type. |
| 766 | /// Note that this can leave the stream unaligned, meaning that |
| 767 | /// subsequent word-size instructions do not begin at a multiple of |
| 768 | /// the pointer size. |
| 769 | BLOCK_LAYOUT_NON_OBJECT_BYTES = 1, |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 770 | |
Fariborz Jahanian | 196f938 | 2012-10-25 21:15:04 +0000 | [diff] [blame] | 771 | /// The next I+1 words do not contain a value of object pointer type. |
| 772 | /// This is simply an optimized version of BLOCK_LAYOUT_BYTES for |
| 773 | /// when the required skip quantity is a multiple of the pointer size. |
| 774 | BLOCK_LAYOUT_NON_OBJECT_WORDS = 2, |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 775 | |
Fariborz Jahanian | 196f938 | 2012-10-25 21:15:04 +0000 | [diff] [blame] | 776 | /// The next I+1 words are __strong pointers to Objective-C |
| 777 | /// objects or blocks. |
| 778 | BLOCK_LAYOUT_STRONG = 3, |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 779 | |
Fariborz Jahanian | 196f938 | 2012-10-25 21:15:04 +0000 | [diff] [blame] | 780 | /// The next I+1 words are pointers to __block variables. |
| 781 | BLOCK_LAYOUT_BYREF = 4, |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 782 | |
Fariborz Jahanian | 196f938 | 2012-10-25 21:15:04 +0000 | [diff] [blame] | 783 | /// The next I+1 words are __weak pointers to Objective-C |
| 784 | /// objects or blocks. |
| 785 | BLOCK_LAYOUT_WEAK = 5, |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 786 | |
Fariborz Jahanian | 196f938 | 2012-10-25 21:15:04 +0000 | [diff] [blame] | 787 | /// The next I+1 words are __unsafe_unretained pointers to |
| 788 | /// Objective-C objects or blocks. |
| 789 | BLOCK_LAYOUT_UNRETAINED = 6 |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 790 | |
Fariborz Jahanian | 196f938 | 2012-10-25 21:15:04 +0000 | [diff] [blame] | 791 | /// The next I+1 words are block or object pointers with some |
| 792 | /// as-yet-unspecified ownership semantics. If we add more |
| 793 | /// flavors of ownership semantics, values will be taken from |
| 794 | /// this range. |
| 795 | /// |
| 796 | /// This is included so that older tools can at least continue |
| 797 | /// processing the layout past such things. |
| 798 | //BLOCK_LAYOUT_OWNERSHIP_UNKNOWN = 7..10, |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 799 | |
Fariborz Jahanian | 196f938 | 2012-10-25 21:15:04 +0000 | [diff] [blame] | 800 | /// All other opcodes are reserved. Halt interpretation and |
| 801 | /// treat everything else as opaque. |
| 802 | }; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 803 | |
Fariborz Jahanian | 196f938 | 2012-10-25 21:15:04 +0000 | [diff] [blame] | 804 | class RUN_SKIP { |
| 805 | public: |
| 806 | enum BLOCK_LAYOUT_OPCODE opcode; |
Fariborz Jahanian | 7778d61 | 2012-11-07 20:00:32 +0000 | [diff] [blame] | 807 | CharUnits block_var_bytepos; |
| 808 | CharUnits block_var_size; |
Fariborz Jahanian | 196f938 | 2012-10-25 21:15:04 +0000 | [diff] [blame] | 809 | RUN_SKIP(enum BLOCK_LAYOUT_OPCODE Opcode = BLOCK_LAYOUT_OPERATOR, |
Fariborz Jahanian | 7778d61 | 2012-11-07 20:00:32 +0000 | [diff] [blame] | 810 | CharUnits BytePos = CharUnits::Zero(), |
| 811 | CharUnits Size = CharUnits::Zero()) |
Fariborz Jahanian | 0c58ce9 | 2012-10-27 21:10:38 +0000 | [diff] [blame] | 812 | : opcode(Opcode), block_var_bytepos(BytePos), block_var_size(Size) {} |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 813 | |
Fariborz Jahanian | 196f938 | 2012-10-25 21:15:04 +0000 | [diff] [blame] | 814 | // Allow sorting based on byte pos. |
| 815 | bool operator<(const RUN_SKIP &b) const { |
| 816 | return block_var_bytepos < b.block_var_bytepos; |
| 817 | } |
| 818 | }; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 819 | |
Fariborz Jahanian | 279eda6 | 2009-01-21 22:04:16 +0000 | [diff] [blame] | 820 | protected: |
Owen Anderson | ae86c19 | 2009-07-13 04:10:07 +0000 | [diff] [blame] | 821 | llvm::LLVMContext &VMContext; |
Fariborz Jahanian | 279eda6 | 2009-01-21 22:04:16 +0000 | [diff] [blame] | 822 | // FIXME! May not be needing this after all. |
Daniel Dunbar | 8b8683f | 2008-08-12 00:12:39 +0000 | [diff] [blame] | 823 | unsigned ObjCABI; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 824 | |
Fariborz Jahanian | 196f938 | 2012-10-25 21:15:04 +0000 | [diff] [blame] | 825 | // arc/mrr layout of captured block literal variables. |
| 826 | SmallVector<RUN_SKIP, 16> RunSkipBlockVars; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 827 | |
Daniel Dunbar | c61d0e9 | 2008-08-25 06:02:07 +0000 | [diff] [blame] | 828 | /// LazySymbols - Symbols to generate a lazy reference for. See |
| 829 | /// DefinedSymbols and FinishModule(). |
Daniel Dunbar | d027a92 | 2009-09-07 00:20:42 +0000 | [diff] [blame] | 830 | llvm::SetVector<IdentifierInfo*> LazySymbols; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 831 | |
Daniel Dunbar | c61d0e9 | 2008-08-25 06:02:07 +0000 | [diff] [blame] | 832 | /// DefinedSymbols - External symbols which are defined by this |
| 833 | /// module. The symbols in this list and LazySymbols are used to add |
| 834 | /// special linker symbols which ensure that Objective-C modules are |
| 835 | /// linked properly. |
Daniel Dunbar | d027a92 | 2009-09-07 00:20:42 +0000 | [diff] [blame] | 836 | llvm::SetVector<IdentifierInfo*> DefinedSymbols; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 837 | |
Daniel Dunbar | 7bd00bd | 2008-08-12 06:48:42 +0000 | [diff] [blame] | 838 | /// ClassNames - uniqued class names. |
Fariborz Jahanian | 451b92a | 2014-07-16 16:16:04 +0000 | [diff] [blame] | 839 | llvm::StringMap<llvm::GlobalVariable*> ClassNames; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 840 | |
Daniel Dunbar | cb515c8 | 2008-08-12 03:39:23 +0000 | [diff] [blame] | 841 | /// MethodVarNames - uniqued method variable names. |
| 842 | llvm::DenseMap<Selector, llvm::GlobalVariable*> MethodVarNames; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 843 | |
Fariborz Jahanian | 9adb2e6 | 2010-06-21 22:05:18 +0000 | [diff] [blame] | 844 | /// DefinedCategoryNames - list of category names in form Class_Category. |
Justin Lebar | 5e83dfe | 2016-10-21 21:45:01 +0000 | [diff] [blame] | 845 | llvm::SmallSetVector<llvm::CachedHashString, 16> DefinedCategoryNames; |
Fariborz Jahanian | 9adb2e6 | 2010-06-21 22:05:18 +0000 | [diff] [blame] | 846 | |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 847 | /// MethodVarTypes - uniqued method type signatures. We have to use |
| 848 | /// a StringMap here because have no other unique reference. |
| 849 | llvm::StringMap<llvm::GlobalVariable*> MethodVarTypes; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 850 | |
Daniel Dunbar | 3c76cb5 | 2008-08-26 21:51:14 +0000 | [diff] [blame] | 851 | /// MethodDefinitions - map of methods which have been defined in |
| 852 | /// this translation unit. |
| 853 | llvm::DenseMap<const ObjCMethodDecl*, llvm::Function*> MethodDefinitions; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 854 | |
Daniel Dunbar | 80a840b | 2008-08-23 00:19:03 +0000 | [diff] [blame] | 855 | /// PropertyNames - uniqued method variable names. |
| 856 | llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> PropertyNames; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 857 | |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 858 | /// ClassReferences - uniqued class references. |
| 859 | llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> ClassReferences; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 860 | |
Daniel Dunbar | cb515c8 | 2008-08-12 03:39:23 +0000 | [diff] [blame] | 861 | /// SelectorReferences - uniqued selector references. |
| 862 | llvm::DenseMap<Selector, llvm::GlobalVariable*> SelectorReferences; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 863 | |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 864 | /// Protocols - Protocols for which an objc_protocol structure has |
| 865 | /// been emitted. Forward declarations are handled by creating an |
| 866 | /// empty structure whose initializer is filled in when/if defined. |
| 867 | llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> Protocols; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 868 | |
Daniel Dunbar | c475d42 | 2008-10-29 22:36:39 +0000 | [diff] [blame] | 869 | /// DefinedProtocols - Protocols which have actually been |
| 870 | /// defined. We should not need this, see FIXME in GenerateProtocol. |
| 871 | llvm::DenseSet<IdentifierInfo*> DefinedProtocols; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 872 | |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 873 | /// DefinedClasses - List of defined classes. |
Dmitri Gribenko | f857950 | 2013-01-12 19:30:44 +0000 | [diff] [blame] | 874 | SmallVector<llvm::GlobalValue*, 16> DefinedClasses; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 875 | |
Fariborz Jahanian | f322f2f | 2014-03-11 00:25:05 +0000 | [diff] [blame] | 876 | /// ImplementedClasses - List of @implemented classes. |
| 877 | SmallVector<const ObjCInterfaceDecl*, 16> ImplementedClasses; |
Daniel Dunbar | 9a017d7 | 2009-05-15 22:33:15 +0000 | [diff] [blame] | 878 | |
| 879 | /// DefinedNonLazyClasses - List of defined "non-lazy" classes. |
Dmitri Gribenko | f857950 | 2013-01-12 19:30:44 +0000 | [diff] [blame] | 880 | SmallVector<llvm::GlobalValue*, 16> DefinedNonLazyClasses; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 881 | |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 882 | /// DefinedCategories - List of defined categories. |
Dmitri Gribenko | f857950 | 2013-01-12 19:30:44 +0000 | [diff] [blame] | 883 | SmallVector<llvm::GlobalValue*, 16> DefinedCategories; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 884 | |
Daniel Dunbar | 9a017d7 | 2009-05-15 22:33:15 +0000 | [diff] [blame] | 885 | /// DefinedNonLazyCategories - List of defined "non-lazy" categories. |
Dmitri Gribenko | f857950 | 2013-01-12 19:30:44 +0000 | [diff] [blame] | 886 | SmallVector<llvm::GlobalValue*, 16> DefinedNonLazyCategories; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 887 | |
John McCall | cd21d54 | 2016-11-30 23:15:55 +0000 | [diff] [blame] | 888 | /// Cached reference to the class for constant strings. This value has type |
| 889 | /// int * but is actually an Obj-C class pointer. |
Sanjoy Das | e369bd9 | 2017-05-01 17:08:00 +0000 | [diff] [blame] | 890 | llvm::WeakTrackingVH ConstantStringClassRef; |
John McCall | cd21d54 | 2016-11-30 23:15:55 +0000 | [diff] [blame] | 891 | |
Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 892 | /// The LLVM type corresponding to NSConstantString. |
John McCall | cd21d54 | 2016-11-30 23:15:55 +0000 | [diff] [blame] | 893 | llvm::StructType *NSConstantStringType = nullptr; |
| 894 | |
| 895 | llvm::StringMap<llvm::GlobalVariable *> NSConstantStringMap; |
| 896 | |
Fariborz Jahanian | 0b1ccdc | 2009-01-21 23:34:32 +0000 | [diff] [blame] | 897 | /// GetNameForMethod - Return a name for the given method. |
| 898 | /// \param[out] NameOut - The return value. |
| 899 | void GetNameForMethod(const ObjCMethodDecl *OMD, |
| 900 | const ObjCContainerDecl *CD, |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 901 | SmallVectorImpl<char> &NameOut); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 902 | |
Fariborz Jahanian | 0b1ccdc | 2009-01-21 23:34:32 +0000 | [diff] [blame] | 903 | /// GetMethodVarName - Return a unique constant for the given |
| 904 | /// selector's name. The return value has type char *. |
| 905 | llvm::Constant *GetMethodVarName(Selector Sel); |
| 906 | llvm::Constant *GetMethodVarName(IdentifierInfo *Ident); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 907 | |
Fariborz Jahanian | 0b1ccdc | 2009-01-21 23:34:32 +0000 | [diff] [blame] | 908 | /// GetMethodVarType - Return a unique constant for the given |
Bob Wilson | 5f4e3a7 | 2011-11-30 01:57:58 +0000 | [diff] [blame] | 909 | /// method's type encoding string. The return value has type char *. |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 910 | |
Fariborz Jahanian | 0b1ccdc | 2009-01-21 23:34:32 +0000 | [diff] [blame] | 911 | // FIXME: This is a horrible name. |
Bob Wilson | 5f4e3a7 | 2011-11-30 01:57:58 +0000 | [diff] [blame] | 912 | llvm::Constant *GetMethodVarType(const ObjCMethodDecl *D, |
| 913 | bool Extended = false); |
Daniel Dunbar | f5c1846 | 2009-04-20 06:54:31 +0000 | [diff] [blame] | 914 | llvm::Constant *GetMethodVarType(const FieldDecl *D); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 915 | |
Fariborz Jahanian | 0b1ccdc | 2009-01-21 23:34:32 +0000 | [diff] [blame] | 916 | /// GetPropertyName - Return a unique constant for the given |
| 917 | /// name. The return value has type char *. |
| 918 | llvm::Constant *GetPropertyName(IdentifierInfo *Ident); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 919 | |
Fariborz Jahanian | 0b1ccdc | 2009-01-21 23:34:32 +0000 | [diff] [blame] | 920 | // FIXME: This can be dropped once string functions are unified. |
| 921 | llvm::Constant *GetPropertyTypeString(const ObjCPropertyDecl *PD, |
| 922 | const Decl *Container); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 923 | |
Fariborz Jahanian | 9e3ad52 | 2009-01-24 20:21:50 +0000 | [diff] [blame] | 924 | /// GetClassName - Return a unique constant for the given selector's |
Fariborz Jahanian | 451b92a | 2014-07-16 16:16:04 +0000 | [diff] [blame] | 925 | /// runtime name (which may change via use of objc_runtime_name attribute on |
| 926 | /// class or protocol definition. The return value has type char *. |
| 927 | llvm::Constant *GetClassName(StringRef RuntimeName); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 928 | |
Argyrios Kyrtzidis | 13257c5 | 2010-08-09 10:54:20 +0000 | [diff] [blame] | 929 | llvm::Function *GetMethodDefinition(const ObjCMethodDecl *MD); |
| 930 | |
Fariborz Jahanian | c559f3f | 2009-03-05 22:39:55 +0000 | [diff] [blame] | 931 | /// BuildIvarLayout - Builds ivar layout bitmap for the class |
| 932 | /// implementation for the __strong or __weak case. |
| 933 | /// |
John McCall | 460ce58 | 2015-10-22 18:38:17 +0000 | [diff] [blame] | 934 | /// \param hasMRCWeakIvars - Whether we are compiling in MRC and there |
| 935 | /// are any weak ivars defined directly in the class. Meaningless unless |
| 936 | /// building a weak layout. Does not guarantee that the layout will |
| 937 | /// actually have any entries, because the ivar might be under-aligned. |
Fariborz Jahanian | 1bf7288 | 2009-03-12 22:50:49 +0000 | [diff] [blame] | 938 | llvm::Constant *BuildIvarLayout(const ObjCImplementationDecl *OI, |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 939 | CharUnits beginOffset, |
| 940 | CharUnits endOffset, |
John McCall | 460ce58 | 2015-10-22 18:38:17 +0000 | [diff] [blame] | 941 | bool forStrongLayout, |
| 942 | bool hasMRCWeakIvars); |
| 943 | |
| 944 | llvm::Constant *BuildStrongIvarLayout(const ObjCImplementationDecl *OI, |
| 945 | CharUnits beginOffset, |
| 946 | CharUnits endOffset) { |
| 947 | return BuildIvarLayout(OI, beginOffset, endOffset, true, false); |
| 948 | } |
| 949 | |
| 950 | llvm::Constant *BuildWeakIvarLayout(const ObjCImplementationDecl *OI, |
| 951 | CharUnits beginOffset, |
| 952 | CharUnits endOffset, |
| 953 | bool hasMRCWeakIvars) { |
| 954 | return BuildIvarLayout(OI, beginOffset, endOffset, false, hasMRCWeakIvars); |
| 955 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 956 | |
Fariborz Jahanian | a9d4464 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 957 | Qualifiers::ObjCLifetime getBlockCaptureLifetime(QualType QT, bool ByrefLayout); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 958 | |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 959 | void UpdateRunSkipBlockVars(bool IsByref, |
| 960 | Qualifiers::ObjCLifetime LifeTime, |
Fariborz Jahanian | 7778d61 | 2012-11-07 20:00:32 +0000 | [diff] [blame] | 961 | CharUnits FieldOffset, |
| 962 | CharUnits FieldSize); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 963 | |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 964 | void BuildRCBlockVarRecordLayout(const RecordType *RT, |
Fariborz Jahanian | a9d4464 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 965 | CharUnits BytePos, bool &HasUnion, |
| 966 | bool ByrefLayout=false); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 967 | |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 968 | void BuildRCRecordLayout(const llvm::StructLayout *RecLayout, |
| 969 | const RecordDecl *RD, |
| 970 | ArrayRef<const FieldDecl*> RecFields, |
Fariborz Jahanian | a9d4464 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 971 | CharUnits BytePos, bool &HasUnion, |
| 972 | bool ByrefLayout); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 973 | |
Fariborz Jahanian | 23290b0 | 2012-11-01 18:32:55 +0000 | [diff] [blame] | 974 | uint64_t InlineLayoutInstruction(SmallVectorImpl<unsigned char> &Layout); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 975 | |
Fariborz Jahanian | a9d4464 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 976 | llvm::Constant *getBitmapBlockLayout(bool ComputeByrefLayout); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 977 | |
Fariborz Jahanian | 01dff42 | 2009-03-05 19:17:31 +0000 | [diff] [blame] | 978 | /// GetIvarLayoutName - Returns a unique constant for the given |
| 979 | /// ivar layout bitmap. |
| 980 | llvm::Constant *GetIvarLayoutName(IdentifierInfo *Ident, |
| 981 | const ObjCCommonTypesHelper &ObjCTypes); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 982 | |
Fariborz Jahanian | 066347e | 2009-01-28 22:18:42 +0000 | [diff] [blame] | 983 | /// EmitPropertyList - Emit the given property list. The return |
| 984 | /// value has type PropertyListPtrTy. |
Zachary Turner | 41a9ee9 | 2017-10-11 23:54:34 +0000 | [diff] [blame] | 985 | llvm::Constant *EmitPropertyList(Twine Name, |
| 986 | const Decl *Container, |
Fariborz Jahanian | 066347e | 2009-01-28 22:18:42 +0000 | [diff] [blame] | 987 | const ObjCContainerDecl *OCD, |
Manman Ren | ad0e791 | 2016-01-29 19:22:54 +0000 | [diff] [blame] | 988 | const ObjCCommonTypesHelper &ObjCTypes, |
| 989 | bool IsClassProperty); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 990 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 991 | /// EmitProtocolMethodTypes - Generate the array of extended method type |
Bob Wilson | 5f4e3a7 | 2011-11-30 01:57:58 +0000 | [diff] [blame] | 992 | /// strings. The return value has type Int8PtrPtrTy. |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 993 | llvm::Constant *EmitProtocolMethodTypes(Twine Name, |
Zachary Turner | 41a9ee9 | 2017-10-11 23:54:34 +0000 | [diff] [blame] | 994 | ArrayRef<llvm::Constant*> MethodTypes, |
| 995 | const ObjCCommonTypesHelper &ObjCTypes); |
Bob Wilson | 5f4e3a7 | 2011-11-30 01:57:58 +0000 | [diff] [blame] | 996 | |
Fariborz Jahanian | 56b3b77 | 2009-01-29 19:24:30 +0000 | [diff] [blame] | 997 | /// GetProtocolRef - Return a reference to the internal protocol |
| 998 | /// description, creating an empty one if it has not been |
| 999 | /// defined. The return value has type ProtocolPtrTy. |
| 1000 | llvm::Constant *GetProtocolRef(const ObjCProtocolDecl *PD); |
Fariborz Jahanian | 6772621 | 2009-03-08 20:18:37 +0000 | [diff] [blame] | 1001 | |
Douglas Gregor | 24ae22c | 2016-04-01 23:23:52 +0000 | [diff] [blame] | 1002 | /// Return a reference to the given Class using runtime calls rather than |
| 1003 | /// by a symbol reference. |
| 1004 | llvm::Value *EmitClassRefViaRuntime(CodeGenFunction &CGF, |
| 1005 | const ObjCInterfaceDecl *ID, |
| 1006 | ObjCCommonTypesHelper &ObjCTypes); |
| 1007 | |
Saleem Abdulrasool | 13d73d5 | 2017-06-03 16:18:09 +0000 | [diff] [blame] | 1008 | std::string GetSectionName(StringRef Section, StringRef MachOAttributes); |
| 1009 | |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 1010 | public: |
Daniel Dunbar | 30c6536 | 2009-03-09 20:09:19 +0000 | [diff] [blame] | 1011 | /// CreateMetadataVar - Create a global variable with internal |
| 1012 | /// linkage for use by the Objective-C runtime. |
| 1013 | /// |
| 1014 | /// This is a convenience wrapper which not only creates the |
| 1015 | /// variable, but also sets the section and alignment and adds the |
Chris Lattner | f56501c | 2009-07-17 23:57:13 +0000 | [diff] [blame] | 1016 | /// global to the "llvm.used" list. |
Daniel Dunbar | 463cc8a | 2009-03-09 20:50:13 +0000 | [diff] [blame] | 1017 | /// |
| 1018 | /// \param Name - The variable name. |
| 1019 | /// \param Init - The variable initializer; this is also used to |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 1020 | /// define the type of the variable. |
Alp Toker | 541d507 | 2014-06-07 23:30:53 +0000 | [diff] [blame] | 1021 | /// \param Section - The section the variable should go into, or empty. |
Daniel Dunbar | 463cc8a | 2009-03-09 20:50:13 +0000 | [diff] [blame] | 1022 | /// \param Align - The alignment for the variable, or 0. |
| 1023 | /// \param AddToUsed - Whether the variable should be added to |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 1024 | /// "llvm.used". |
Zachary Turner | 41a9ee9 | 2017-10-11 23:54:34 +0000 | [diff] [blame] | 1025 | llvm::GlobalVariable *CreateMetadataVar(Twine Name, |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 1026 | ConstantStructBuilder &Init, |
| 1027 | StringRef Section, CharUnits Align, |
| 1028 | bool AddToUsed); |
Zachary Turner | 41a9ee9 | 2017-10-11 23:54:34 +0000 | [diff] [blame] | 1029 | llvm::GlobalVariable *CreateMetadataVar(Twine Name, |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 1030 | llvm::Constant *Init, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1031 | StringRef Section, CharUnits Align, |
Daniel Dunbar | 463cc8a | 2009-03-09 20:50:13 +0000 | [diff] [blame] | 1032 | bool AddToUsed); |
Daniel Dunbar | 30c6536 | 2009-03-09 20:09:19 +0000 | [diff] [blame] | 1033 | |
Saleem Abdulrasool | 271106c | 2016-09-16 23:41:13 +0000 | [diff] [blame] | 1034 | llvm::GlobalVariable *CreateCStringLiteral(StringRef Name, |
Saleem Abdulrasool | 82f6add | 2016-09-20 18:38:54 +0000 | [diff] [blame] | 1035 | ObjCLabelType LabelType, |
| 1036 | bool ForceNonFragileABI = false, |
| 1037 | bool NullTerminate = true); |
Saleem Abdulrasool | 271106c | 2016-09-16 23:41:13 +0000 | [diff] [blame] | 1038 | |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 1039 | protected: |
John McCall | 9e8bb00 | 2011-05-14 03:10:52 +0000 | [diff] [blame] | 1040 | CodeGen::RValue EmitMessageSend(CodeGen::CodeGenFunction &CGF, |
| 1041 | ReturnValueSlot Return, |
| 1042 | QualType ResultType, |
| 1043 | llvm::Value *Sel, |
| 1044 | llvm::Value *Arg0, |
| 1045 | QualType Arg0Ty, |
| 1046 | bool IsSuper, |
| 1047 | const CallArgList &CallArgs, |
| 1048 | const ObjCMethodDecl *OMD, |
John McCall | 1e3157b | 2015-09-10 22:27:50 +0000 | [diff] [blame] | 1049 | const ObjCInterfaceDecl *ClassReceiver, |
John McCall | 9e8bb00 | 2011-05-14 03:10:52 +0000 | [diff] [blame] | 1050 | const ObjCCommonTypesHelper &ObjCTypes); |
Daniel Dunbar | f5c1846 | 2009-04-20 06:54:31 +0000 | [diff] [blame] | 1051 | |
Daniel Dunbar | 5e63927 | 2010-04-25 20:39:01 +0000 | [diff] [blame] | 1052 | /// EmitImageInfo - Emit the image info marker used to encode some module |
| 1053 | /// level information. |
| 1054 | void EmitImageInfo(); |
| 1055 | |
Fariborz Jahanian | 279eda6 | 2009-01-21 22:04:16 +0000 | [diff] [blame] | 1056 | public: |
Owen Anderson | ae86c19 | 2009-07-13 04:10:07 +0000 | [diff] [blame] | 1057 | CGObjCCommonMac(CodeGen::CodeGenModule &cgm) : |
John McCall | a729c62 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 1058 | CGObjCRuntime(cgm), VMContext(cgm.getLLVMContext()) { } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1059 | |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 1060 | bool isNonFragileABI() const { |
| 1061 | return ObjCABI == 2; |
| 1062 | } |
| 1063 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1064 | ConstantAddress GenerateConstantString(const StringLiteral *SL) override; |
John McCall | cd21d54 | 2016-11-30 23:15:55 +0000 | [diff] [blame] | 1065 | ConstantAddress GenerateConstantNSString(const StringLiteral *SL); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1066 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1067 | llvm::Function *GenerateMethod(const ObjCMethodDecl *OMD, |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 1068 | const ObjCContainerDecl *CD=nullptr) override; |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1069 | |
| 1070 | void GenerateProtocol(const ObjCProtocolDecl *PD) override; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1071 | |
Fariborz Jahanian | 56b3b77 | 2009-01-29 19:24:30 +0000 | [diff] [blame] | 1072 | /// GetOrEmitProtocol - Get the protocol object for the given |
| 1073 | /// declaration, emitting it if necessary. The return value has type |
| 1074 | /// ProtocolPtrTy. |
| 1075 | virtual llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD)=0; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1076 | |
Fariborz Jahanian | 56b3b77 | 2009-01-29 19:24:30 +0000 | [diff] [blame] | 1077 | /// GetOrEmitProtocolRef - Get a forward reference to the protocol |
| 1078 | /// object for the given declaration, emitting it if needed. These |
| 1079 | /// forward references will be filled in with empty bodies if no |
| 1080 | /// definition is seen. The return value has type ProtocolPtrTy. |
| 1081 | virtual llvm::Constant *GetOrEmitProtocolRef(const ObjCProtocolDecl *PD)=0; |
John McCall | cd21d54 | 2016-11-30 23:15:55 +0000 | [diff] [blame] | 1082 | |
| 1083 | virtual llvm::Constant *getNSConstantStringClassRef() = 0; |
| 1084 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1085 | llvm::Constant *BuildGCBlockLayout(CodeGen::CodeGenModule &CGM, |
| 1086 | const CGBlockInfo &blockInfo) override; |
| 1087 | llvm::Constant *BuildRCBlockLayout(CodeGen::CodeGenModule &CGM, |
| 1088 | const CGBlockInfo &blockInfo) override; |
Akira Hatanaka | 2ec36f0 | 2018-08-17 15:46:07 +0000 | [diff] [blame] | 1089 | std::string getRCBlockLayoutStr(CodeGen::CodeGenModule &CGM, |
| 1090 | const CGBlockInfo &blockInfo) override; |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1091 | |
| 1092 | llvm::Constant *BuildByrefLayout(CodeGen::CodeGenModule &CGM, |
| 1093 | QualType T) override; |
Akira Hatanaka | 2ec36f0 | 2018-08-17 15:46:07 +0000 | [diff] [blame] | 1094 | |
| 1095 | private: |
| 1096 | void fillRunSkipBlockVars(CodeGenModule &CGM, const CGBlockInfo &blockInfo); |
Fariborz Jahanian | 279eda6 | 2009-01-21 22:04:16 +0000 | [diff] [blame] | 1097 | }; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1098 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 1099 | namespace { |
| 1100 | |
Saleem Abdulrasool | d48b0a3 | 2016-10-24 20:47:58 +0000 | [diff] [blame] | 1101 | enum class MethodListType { |
| 1102 | CategoryInstanceMethods, |
| 1103 | CategoryClassMethods, |
| 1104 | InstanceMethods, |
| 1105 | ClassMethods, |
| 1106 | ProtocolInstanceMethods, |
| 1107 | ProtocolClassMethods, |
| 1108 | OptionalProtocolInstanceMethods, |
| 1109 | OptionalProtocolClassMethods, |
| 1110 | }; |
| 1111 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 1112 | /// A convenience class for splitting the methods of a protocol into |
| 1113 | /// the four interesting groups. |
| 1114 | class ProtocolMethodLists { |
| 1115 | public: |
| 1116 | enum Kind { |
| 1117 | RequiredInstanceMethods, |
| 1118 | RequiredClassMethods, |
| 1119 | OptionalInstanceMethods, |
| 1120 | OptionalClassMethods |
| 1121 | }; |
| 1122 | enum { |
| 1123 | NumProtocolMethodLists = 4 |
| 1124 | }; |
| 1125 | |
| 1126 | static MethodListType getMethodListKind(Kind kind) { |
| 1127 | switch (kind) { |
| 1128 | case RequiredInstanceMethods: |
| 1129 | return MethodListType::ProtocolInstanceMethods; |
| 1130 | case RequiredClassMethods: |
| 1131 | return MethodListType::ProtocolClassMethods; |
| 1132 | case OptionalInstanceMethods: |
| 1133 | return MethodListType::OptionalProtocolInstanceMethods; |
| 1134 | case OptionalClassMethods: |
| 1135 | return MethodListType::OptionalProtocolClassMethods; |
| 1136 | } |
| 1137 | llvm_unreachable("bad kind"); |
| 1138 | } |
| 1139 | |
| 1140 | SmallVector<const ObjCMethodDecl *, 4> Methods[NumProtocolMethodLists]; |
| 1141 | |
| 1142 | static ProtocolMethodLists get(const ObjCProtocolDecl *PD) { |
| 1143 | ProtocolMethodLists result; |
| 1144 | |
| 1145 | for (auto MD : PD->methods()) { |
| 1146 | size_t index = (2 * size_t(MD->isOptional())) |
| 1147 | + (size_t(MD->isClassMethod())); |
| 1148 | result.Methods[index].push_back(MD); |
| 1149 | } |
| 1150 | |
| 1151 | return result; |
| 1152 | } |
| 1153 | |
| 1154 | template <class Self> |
| 1155 | SmallVector<llvm::Constant*, 8> emitExtendedTypesArray(Self *self) const { |
| 1156 | // In both ABIs, the method types list is parallel with the |
| 1157 | // concatenation of the methods arrays in the following order: |
| 1158 | // instance methods |
| 1159 | // class methods |
| 1160 | // optional instance methods |
| 1161 | // optional class methods |
| 1162 | SmallVector<llvm::Constant*, 8> result; |
| 1163 | |
| 1164 | // Methods is already in the correct order for both ABIs. |
| 1165 | for (auto &list : Methods) { |
| 1166 | for (auto MD : list) { |
| 1167 | result.push_back(self->GetMethodVarType(MD, true)); |
| 1168 | } |
| 1169 | } |
| 1170 | |
| 1171 | return result; |
| 1172 | } |
| 1173 | |
| 1174 | template <class Self> |
| 1175 | llvm::Constant *emitMethodList(Self *self, const ObjCProtocolDecl *PD, |
| 1176 | Kind kind) const { |
| 1177 | return self->emitMethodList(PD->getObjCRuntimeNameAsString(), |
| 1178 | getMethodListKind(kind), Methods[kind]); |
| 1179 | } |
| 1180 | }; |
| 1181 | |
| 1182 | } // end anonymous namespace |
| 1183 | |
Fariborz Jahanian | 279eda6 | 2009-01-21 22:04:16 +0000 | [diff] [blame] | 1184 | class CGObjCMac : public CGObjCCommonMac { |
| 1185 | private: |
John McCall | c4ae1dd | 2016-11-30 04:18:19 +0000 | [diff] [blame] | 1186 | friend ProtocolMethodLists; |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 1187 | |
Fariborz Jahanian | 279eda6 | 2009-01-21 22:04:16 +0000 | [diff] [blame] | 1188 | ObjCTypesHelper ObjCTypes; |
Daniel Dunbar | 3ad5348 | 2008-08-11 21:35:06 +0000 | [diff] [blame] | 1189 | |
Daniel Dunbar | 7bd00bd | 2008-08-12 06:48:42 +0000 | [diff] [blame] | 1190 | /// EmitModuleInfo - Another marker encoding module level |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1191 | /// information. |
Daniel Dunbar | 7bd00bd | 2008-08-12 06:48:42 +0000 | [diff] [blame] | 1192 | void EmitModuleInfo(); |
| 1193 | |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 1194 | /// EmitModuleSymols - Emit module symbols, the list of defined |
| 1195 | /// classes and categories. The result has type SymtabPtrTy. |
Daniel Dunbar | 7bd00bd | 2008-08-12 06:48:42 +0000 | [diff] [blame] | 1196 | llvm::Constant *EmitModuleSymbols(); |
| 1197 | |
Daniel Dunbar | 3ad5348 | 2008-08-11 21:35:06 +0000 | [diff] [blame] | 1198 | /// FinishModule - Write out global data structures at the end of |
| 1199 | /// processing a translation unit. |
| 1200 | void FinishModule(); |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 1201 | |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 1202 | /// EmitClassExtension - Generate the class extension structure used |
| 1203 | /// to store the weak ivar layout and properties. The return value |
| 1204 | /// has type ClassExtensionPtrTy. |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 1205 | llvm::Constant *EmitClassExtension(const ObjCImplementationDecl *ID, |
John McCall | 460ce58 | 2015-10-22 18:38:17 +0000 | [diff] [blame] | 1206 | CharUnits instanceSize, |
Manman Ren | ad0e791 | 2016-01-29 19:22:54 +0000 | [diff] [blame] | 1207 | bool hasMRCWeakIvars, |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 1208 | bool isMetaclass); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 1209 | |
| 1210 | /// EmitClassRef - Return a Value*, of type ObjCTypes.ClassPtrTy, |
| 1211 | /// for the given class. |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 1212 | llvm::Value *EmitClassRef(CodeGenFunction &CGF, |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 1213 | const ObjCInterfaceDecl *ID); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1214 | |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 1215 | llvm::Value *EmitClassRefFromId(CodeGenFunction &CGF, |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1216 | IdentifierInfo *II); |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1217 | |
| 1218 | llvm::Value *EmitNSAutoreleasePoolClassRef(CodeGenFunction &CGF) override; |
| 1219 | |
Fariborz Jahanian | eb80c98 | 2009-11-12 20:14:24 +0000 | [diff] [blame] | 1220 | /// EmitSuperClassRef - Emits reference to class's main metadata class. |
| 1221 | llvm::Value *EmitSuperClassRef(const ObjCInterfaceDecl *ID); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 1222 | |
| 1223 | /// EmitIvarList - Emit the ivar list for the given |
| 1224 | /// implementation. If ForClass is true the list of class ivars |
| 1225 | /// (i.e. metaclass ivars) is emitted, otherwise the list of |
| 1226 | /// interface ivars will be emitted. The return value has type |
| 1227 | /// IvarListPtrTy. |
| 1228 | llvm::Constant *EmitIvarList(const ObjCImplementationDecl *ID, |
Fariborz Jahanian | b042a59 | 2009-01-28 19:12:34 +0000 | [diff] [blame] | 1229 | bool ForClass); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1230 | |
Daniel Dunbar | ca8531a | 2008-08-25 08:19:24 +0000 | [diff] [blame] | 1231 | /// EmitMetaClass - Emit a forward reference to the class structure |
| 1232 | /// for the metaclass of the given interface. The return value has |
| 1233 | /// type ClassPtrTy. |
| 1234 | llvm::Constant *EmitMetaClassRef(const ObjCInterfaceDecl *ID); |
| 1235 | |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 1236 | /// EmitMetaClass - Emit a class structure for the metaclass of the |
Daniel Dunbar | ca8531a | 2008-08-25 08:19:24 +0000 | [diff] [blame] | 1237 | /// given implementation. The return value has type ClassPtrTy. |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 1238 | llvm::Constant *EmitMetaClass(const ObjCImplementationDecl *ID, |
| 1239 | llvm::Constant *Protocols, |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 1240 | ArrayRef<const ObjCMethodDecl *> Methods); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1241 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 1242 | void emitMethodConstant(ConstantArrayBuilder &builder, |
| 1243 | const ObjCMethodDecl *MD); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1244 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 1245 | void emitMethodDescriptionConstant(ConstantArrayBuilder &builder, |
| 1246 | const ObjCMethodDecl *MD); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 1247 | |
| 1248 | /// EmitMethodList - Emit the method list for the given |
Daniel Dunbar | 89654ee | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 1249 | /// implementation. The return value has type MethodListPtrTy. |
Zachary Turner | 41a9ee9 | 2017-10-11 23:54:34 +0000 | [diff] [blame] | 1250 | llvm::Constant *emitMethodList(Twine Name, MethodListType MLT, |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 1251 | ArrayRef<const ObjCMethodDecl *> Methods); |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 1252 | |
Daniel Dunbar | c475d42 | 2008-10-29 22:36:39 +0000 | [diff] [blame] | 1253 | /// GetOrEmitProtocol - Get the protocol object for the given |
| 1254 | /// declaration, emitting it if necessary. The return value has type |
| 1255 | /// ProtocolPtrTy. |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1256 | llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD) override; |
Daniel Dunbar | c475d42 | 2008-10-29 22:36:39 +0000 | [diff] [blame] | 1257 | |
| 1258 | /// GetOrEmitProtocolRef - Get a forward reference to the protocol |
| 1259 | /// object for the given declaration, emitting it if needed. These |
| 1260 | /// forward references will be filled in with empty bodies if no |
| 1261 | /// definition is seen. The return value has type ProtocolPtrTy. |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1262 | llvm::Constant *GetOrEmitProtocolRef(const ObjCProtocolDecl *PD) override; |
Daniel Dunbar | c475d42 | 2008-10-29 22:36:39 +0000 | [diff] [blame] | 1263 | |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 1264 | /// EmitProtocolExtension - Generate the protocol extension |
| 1265 | /// structure used to store optional instance and class methods, and |
| 1266 | /// protocol properties. The return value has type |
| 1267 | /// ProtocolExtensionPtrTy. |
Daniel Dunbar | eb1f9a2 | 2008-08-27 02:31:56 +0000 | [diff] [blame] | 1268 | llvm::Constant * |
| 1269 | EmitProtocolExtension(const ObjCProtocolDecl *PD, |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 1270 | const ProtocolMethodLists &methodLists); |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 1271 | |
| 1272 | /// EmitProtocolList - Generate the list of referenced |
| 1273 | /// protocols. The return value has type ProtocolListPtrTy. |
Zachary Turner | 41a9ee9 | 2017-10-11 23:54:34 +0000 | [diff] [blame] | 1274 | llvm::Constant *EmitProtocolList(Twine Name, |
Daniel Dunbar | dec75f8 | 2008-08-21 21:57:41 +0000 | [diff] [blame] | 1275 | ObjCProtocolDecl::protocol_iterator begin, |
| 1276 | ObjCProtocolDecl::protocol_iterator end); |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 1277 | |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 1278 | /// EmitSelector - Return a Value*, of type ObjCTypes.SelectorPtrTy, |
| 1279 | /// for the given selector. |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1280 | llvm::Value *EmitSelector(CodeGenFunction &CGF, Selector Sel); |
| 1281 | Address EmitSelectorAddr(CodeGenFunction &CGF, Selector Sel); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1282 | |
| 1283 | public: |
Daniel Dunbar | 303e2c2 | 2008-08-11 02:45:11 +0000 | [diff] [blame] | 1284 | CGObjCMac(CodeGen::CodeGenModule &cgm); |
Daniel Dunbar | 303e2c2 | 2008-08-11 02:45:11 +0000 | [diff] [blame] | 1285 | |
John McCall | cd21d54 | 2016-11-30 23:15:55 +0000 | [diff] [blame] | 1286 | llvm::Constant *getNSConstantStringClassRef() override; |
| 1287 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1288 | llvm::Function *ModuleInitFunction() override; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1289 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1290 | CodeGen::RValue GenerateMessageSend(CodeGen::CodeGenFunction &CGF, |
| 1291 | ReturnValueSlot Return, |
| 1292 | QualType ResultType, |
| 1293 | Selector Sel, llvm::Value *Receiver, |
| 1294 | const CallArgList &CallArgs, |
| 1295 | const ObjCInterfaceDecl *Class, |
| 1296 | const ObjCMethodDecl *Method) override; |
Daniel Dunbar | 303e2c2 | 2008-08-11 02:45:11 +0000 | [diff] [blame] | 1297 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1298 | CodeGen::RValue |
Daniel Dunbar | 97db84c | 2008-08-23 03:46:30 +0000 | [diff] [blame] | 1299 | GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF, |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1300 | ReturnValueSlot Return, QualType ResultType, |
| 1301 | Selector Sel, const ObjCInterfaceDecl *Class, |
| 1302 | bool isCategoryImpl, llvm::Value *Receiver, |
| 1303 | bool IsClassMessage, const CallArgList &CallArgs, |
| 1304 | const ObjCMethodDecl *Method) override; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1305 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1306 | llvm::Value *GetClass(CodeGenFunction &CGF, |
| 1307 | const ObjCInterfaceDecl *ID) override; |
Daniel Dunbar | 303e2c2 | 2008-08-11 02:45:11 +0000 | [diff] [blame] | 1308 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1309 | llvm::Value *GetSelector(CodeGenFunction &CGF, Selector Sel) override; |
| 1310 | Address GetAddrOfSelector(CodeGenFunction &CGF, Selector Sel) override; |
Fariborz Jahanian | f3648b8 | 2009-05-05 21:36:57 +0000 | [diff] [blame] | 1311 | |
| 1312 | /// The NeXT/Apple runtimes do not support typed selectors; just emit an |
| 1313 | /// untyped one. |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1314 | llvm::Value *GetSelector(CodeGenFunction &CGF, |
| 1315 | const ObjCMethodDecl *Method) override; |
Fariborz Jahanian | f3648b8 | 2009-05-05 21:36:57 +0000 | [diff] [blame] | 1316 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1317 | llvm::Constant *GetEHType(QualType T) override; |
John McCall | 2ca705e | 2010-07-24 00:37:23 +0000 | [diff] [blame] | 1318 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1319 | void GenerateCategory(const ObjCCategoryImplDecl *CMD) override; |
Daniel Dunbar | 303e2c2 | 2008-08-11 02:45:11 +0000 | [diff] [blame] | 1320 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1321 | void GenerateClass(const ObjCImplementationDecl *ClassDecl) override; |
Daniel Dunbar | 303e2c2 | 2008-08-11 02:45:11 +0000 | [diff] [blame] | 1322 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1323 | void RegisterAlias(const ObjCCompatibleAliasDecl *OAD) override {} |
David Chisnall | 92d436b | 2012-01-31 18:59:20 +0000 | [diff] [blame] | 1324 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1325 | llvm::Value *GenerateProtocolRef(CodeGenFunction &CGF, |
| 1326 | const ObjCProtocolDecl *PD) override; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1327 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1328 | llvm::Constant *GetPropertyGetFunction() override; |
| 1329 | llvm::Constant *GetPropertySetFunction() override; |
| 1330 | llvm::Constant *GetOptimizedPropertySetFunction(bool atomic, |
| 1331 | bool copy) override; |
| 1332 | llvm::Constant *GetGetStructFunction() override; |
| 1333 | llvm::Constant *GetSetStructFunction() override; |
| 1334 | llvm::Constant *GetCppAtomicObjectGetFunction() override; |
| 1335 | llvm::Constant *GetCppAtomicObjectSetFunction() override; |
| 1336 | llvm::Constant *EnumerationMutationFunction() override; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1337 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1338 | void EmitTryStmt(CodeGen::CodeGenFunction &CGF, |
| 1339 | const ObjCAtTryStmt &S) override; |
| 1340 | void EmitSynchronizedStmt(CodeGen::CodeGenFunction &CGF, |
| 1341 | const ObjCAtSynchronizedStmt &S) override; |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1342 | void EmitTryOrSynchronizedStmt(CodeGen::CodeGenFunction &CGF, const Stmt &S); |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1343 | void EmitThrowStmt(CodeGen::CodeGenFunction &CGF, const ObjCAtThrowStmt &S, |
| 1344 | bool ClearInsertionPoint=true) override; |
| 1345 | llvm::Value * EmitObjCWeakRead(CodeGen::CodeGenFunction &CGF, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1346 | Address AddrWeakObj) override; |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1347 | void EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1348 | llvm::Value *src, Address dst) override; |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1349 | void EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1350 | llvm::Value *src, Address dest, |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1351 | bool threadlocal = false) override; |
| 1352 | void EmitObjCIvarAssign(CodeGen::CodeGenFunction &CGF, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1353 | llvm::Value *src, Address dest, |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1354 | llvm::Value *ivarOffset) override; |
| 1355 | void EmitObjCStrongCastAssign(CodeGen::CodeGenFunction &CGF, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1356 | llvm::Value *src, Address dest) override; |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1357 | void EmitGCMemmoveCollectable(CodeGen::CodeGenFunction &CGF, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1358 | Address dest, Address src, |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1359 | llvm::Value *size) override; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1360 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1361 | LValue EmitObjCValueForIvar(CodeGen::CodeGenFunction &CGF, QualType ObjectTy, |
| 1362 | llvm::Value *BaseValue, const ObjCIvarDecl *Ivar, |
| 1363 | unsigned CVRQualifiers) override; |
| 1364 | llvm::Value *EmitIvarOffset(CodeGen::CodeGenFunction &CGF, |
| 1365 | const ObjCInterfaceDecl *Interface, |
| 1366 | const ObjCIvarDecl *Ivar) override; |
Daniel Dunbar | 303e2c2 | 2008-08-11 02:45:11 +0000 | [diff] [blame] | 1367 | }; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1368 | |
Fariborz Jahanian | b15a3d5 | 2009-01-22 23:02:58 +0000 | [diff] [blame] | 1369 | class CGObjCNonFragileABIMac : public CGObjCCommonMac { |
Fariborz Jahanian | 279eda6 | 2009-01-21 22:04:16 +0000 | [diff] [blame] | 1370 | private: |
John McCall | c4ae1dd | 2016-11-30 04:18:19 +0000 | [diff] [blame] | 1371 | friend ProtocolMethodLists; |
Fariborz Jahanian | b15a3d5 | 2009-01-22 23:02:58 +0000 | [diff] [blame] | 1372 | ObjCNonFragileABITypesHelper ObjCTypes; |
Fariborz Jahanian | 7139404 | 2009-01-23 23:53:38 +0000 | [diff] [blame] | 1373 | llvm::GlobalVariable* ObjCEmptyCacheVar; |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 1374 | llvm::Constant* ObjCEmptyVtableVar; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1375 | |
Daniel Dunbar | 508a7dd | 2009-04-18 08:51:00 +0000 | [diff] [blame] | 1376 | /// SuperClassReferences - uniqued super class references. |
| 1377 | llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> SuperClassReferences; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1378 | |
Fariborz Jahanian | 6b7cd6e | 2009-02-06 20:09:23 +0000 | [diff] [blame] | 1379 | /// MetaClassReferences - uniqued meta class references. |
| 1380 | llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> MetaClassReferences; |
Daniel Dunbar | b1559a4 | 2009-03-01 04:46:24 +0000 | [diff] [blame] | 1381 | |
| 1382 | /// EHTypeReferences - uniqued class ehtype references. |
| 1383 | llvm::DenseMap<IdentifierInfo*, llvm::GlobalVariable*> EHTypeReferences; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1384 | |
John McCall | 9e8bb00 | 2011-05-14 03:10:52 +0000 | [diff] [blame] | 1385 | /// VTableDispatchMethods - List of methods for which we generate |
| 1386 | /// vtable-based message dispatch. |
| 1387 | llvm::DenseSet<Selector> VTableDispatchMethods; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1388 | |
Fariborz Jahanian | 6726055 | 2009-11-17 21:37:35 +0000 | [diff] [blame] | 1389 | /// DefinedMetaClasses - List of defined meta-classes. |
| 1390 | std::vector<llvm::GlobalValue*> DefinedMetaClasses; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1391 | |
John McCall | 9e8bb00 | 2011-05-14 03:10:52 +0000 | [diff] [blame] | 1392 | /// isVTableDispatchedSelector - Returns true if SEL is a |
| 1393 | /// vtable-based selector. |
| 1394 | bool isVTableDispatchedSelector(Selector Sel); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1395 | |
Fariborz Jahanian | 7139404 | 2009-01-23 23:53:38 +0000 | [diff] [blame] | 1396 | /// FinishNonFragileABIModule - Write out global data structures at the end of |
| 1397 | /// processing a translation unit. |
| 1398 | void FinishNonFragileABIModule(); |
Daniel Dunbar | 8f28d01 | 2009-04-08 04:21:03 +0000 | [diff] [blame] | 1399 | |
Daniel Dunbar | 19573e7 | 2009-05-15 21:48:48 +0000 | [diff] [blame] | 1400 | /// AddModuleClassList - Add the given list of class pointers to the |
| 1401 | /// module with the provided symbol and section names. |
Saleem Abdulrasool | 1e6c406 | 2016-05-16 05:06:49 +0000 | [diff] [blame] | 1402 | void AddModuleClassList(ArrayRef<llvm::GlobalValue *> Container, |
| 1403 | StringRef SymbolName, StringRef SectionName); |
Daniel Dunbar | 19573e7 | 2009-05-15 21:48:48 +0000 | [diff] [blame] | 1404 | |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1405 | llvm::GlobalVariable * BuildClassRoTInitializer(unsigned flags, |
| 1406 | unsigned InstanceStart, |
| 1407 | unsigned InstanceSize, |
| 1408 | const ObjCImplementationDecl *ID); |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 1409 | llvm::GlobalVariable *BuildClassObject(const ObjCInterfaceDecl *CI, |
| 1410 | bool isMetaclass, |
| 1411 | llvm::Constant *IsAGV, |
| 1412 | llvm::Constant *SuperClassGV, |
| 1413 | llvm::Constant *ClassRoGV, |
| 1414 | bool HiddenVisibility); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1415 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 1416 | void emitMethodConstant(ConstantArrayBuilder &builder, |
| 1417 | const ObjCMethodDecl *MD, |
| 1418 | bool forProtocol); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1419 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 1420 | /// Emit the method list for the given implementation. The return value |
| 1421 | /// has type MethodListnfABITy. |
Zachary Turner | 41a9ee9 | 2017-10-11 23:54:34 +0000 | [diff] [blame] | 1422 | llvm::Constant *emitMethodList(Twine Name, MethodListType MLT, |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 1423 | ArrayRef<const ObjCMethodDecl *> Methods); |
Saleem Abdulrasool | d48b0a3 | 2016-10-24 20:47:58 +0000 | [diff] [blame] | 1424 | |
Fariborz Jahanian | 7415caa | 2009-01-27 19:38:51 +0000 | [diff] [blame] | 1425 | /// EmitIvarList - Emit the ivar list for the given |
| 1426 | /// implementation. If ForClass is true the list of class ivars |
| 1427 | /// (i.e. metaclass ivars) is emitted, otherwise the list of |
| 1428 | /// interface ivars will be emitted. The return value has type |
| 1429 | /// IvarListnfABIPtrTy. |
| 1430 | llvm::Constant *EmitIvarList(const ObjCImplementationDecl *ID); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1431 | |
Fariborz Jahanian | 4e7ae06 | 2009-02-10 20:21:06 +0000 | [diff] [blame] | 1432 | llvm::Constant *EmitIvarOffsetVar(const ObjCInterfaceDecl *ID, |
Fariborz Jahanian | 3d3426f | 2009-01-28 01:36:42 +0000 | [diff] [blame] | 1433 | const ObjCIvarDecl *Ivar, |
Eli Friedman | 8cbca20 | 2012-11-06 22:15:52 +0000 | [diff] [blame] | 1434 | unsigned long int offset); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1435 | |
Fariborz Jahanian | 56b3b77 | 2009-01-29 19:24:30 +0000 | [diff] [blame] | 1436 | /// GetOrEmitProtocol - Get the protocol object for the given |
| 1437 | /// declaration, emitting it if necessary. The return value has type |
| 1438 | /// ProtocolPtrTy. |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1439 | llvm::Constant *GetOrEmitProtocol(const ObjCProtocolDecl *PD) override; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1440 | |
Fariborz Jahanian | 56b3b77 | 2009-01-29 19:24:30 +0000 | [diff] [blame] | 1441 | /// GetOrEmitProtocolRef - Get a forward reference to the protocol |
| 1442 | /// object for the given declaration, emitting it if needed. These |
| 1443 | /// forward references will be filled in with empty bodies if no |
| 1444 | /// definition is seen. The return value has type ProtocolPtrTy. |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1445 | llvm::Constant *GetOrEmitProtocolRef(const ObjCProtocolDecl *PD) override; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1446 | |
Fariborz Jahanian | 56b3b77 | 2009-01-29 19:24:30 +0000 | [diff] [blame] | 1447 | /// EmitProtocolList - Generate the list of referenced |
| 1448 | /// protocols. The return value has type ProtocolListPtrTy. |
Zachary Turner | 41a9ee9 | 2017-10-11 23:54:34 +0000 | [diff] [blame] | 1449 | llvm::Constant *EmitProtocolList(Twine Name, |
Fariborz Jahanian | 56b3b77 | 2009-01-29 19:24:30 +0000 | [diff] [blame] | 1450 | ObjCProtocolDecl::protocol_iterator begin, |
Fariborz Jahanian | 3d9296e | 2009-02-04 00:22:57 +0000 | [diff] [blame] | 1451 | ObjCProtocolDecl::protocol_iterator end); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1452 | |
John McCall | 9e8bb00 | 2011-05-14 03:10:52 +0000 | [diff] [blame] | 1453 | CodeGen::RValue EmitVTableMessageSend(CodeGen::CodeGenFunction &CGF, |
| 1454 | ReturnValueSlot Return, |
| 1455 | QualType ResultType, |
| 1456 | Selector Sel, |
| 1457 | llvm::Value *Receiver, |
| 1458 | QualType Arg0Ty, |
| 1459 | bool IsSuper, |
| 1460 | const CallArgList &CallArgs, |
| 1461 | const ObjCMethodDecl *Method); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1462 | |
Daniel Dunbar | c6928bb | 2009-03-01 04:40:10 +0000 | [diff] [blame] | 1463 | /// GetClassGlobal - Return the global variable for the Objective-C |
| 1464 | /// class of the given name. |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 1465 | llvm::Constant *GetClassGlobal(StringRef Name, |
| 1466 | ForDefinition_t IsForDefinition, |
| 1467 | bool Weak = false, bool DLLImport = false); |
| 1468 | llvm::Constant *GetClassGlobal(const ObjCInterfaceDecl *ID, |
| 1469 | bool isMetaclass, |
| 1470 | ForDefinition_t isForDefinition); |
Rafael Espindola | 554256c | 2014-02-26 22:25:45 +0000 | [diff] [blame] | 1471 | |
Fariborz Jahanian | 33f66e6 | 2009-02-05 20:41:40 +0000 | [diff] [blame] | 1472 | /// EmitClassRef - Return a Value*, of type ObjCTypes.ClassPtrTy, |
Daniel Dunbar | 508a7dd | 2009-04-18 08:51:00 +0000 | [diff] [blame] | 1473 | /// for the given class reference. |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 1474 | llvm::Value *EmitClassRef(CodeGenFunction &CGF, |
Daniel Dunbar | 508a7dd | 2009-04-18 08:51:00 +0000 | [diff] [blame] | 1475 | const ObjCInterfaceDecl *ID); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1476 | |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 1477 | llvm::Value *EmitClassRefFromId(CodeGenFunction &CGF, |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 1478 | IdentifierInfo *II, |
Fariborz Jahanian | 451b92a | 2014-07-16 16:16:04 +0000 | [diff] [blame] | 1479 | const ObjCInterfaceDecl *ID); |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1480 | |
| 1481 | llvm::Value *EmitNSAutoreleasePoolClassRef(CodeGenFunction &CGF) override; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1482 | |
Daniel Dunbar | 508a7dd | 2009-04-18 08:51:00 +0000 | [diff] [blame] | 1483 | /// EmitSuperClassRef - Return a Value*, of type ObjCTypes.ClassPtrTy, |
| 1484 | /// for the given super class reference. |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 1485 | llvm::Value *EmitSuperClassRef(CodeGenFunction &CGF, |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1486 | const ObjCInterfaceDecl *ID); |
| 1487 | |
Fariborz Jahanian | 6b7cd6e | 2009-02-06 20:09:23 +0000 | [diff] [blame] | 1488 | /// EmitMetaClassRef - Return a Value * of the address of _class_t |
| 1489 | /// meta-data |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 1490 | llvm::Value *EmitMetaClassRef(CodeGenFunction &CGF, |
Fariborz Jahanian | 0b3bc24 | 2014-06-10 17:08:04 +0000 | [diff] [blame] | 1491 | const ObjCInterfaceDecl *ID, bool Weak); |
Fariborz Jahanian | 6b7cd6e | 2009-02-06 20:09:23 +0000 | [diff] [blame] | 1492 | |
Fariborz Jahanian | 4e7ae06 | 2009-02-10 20:21:06 +0000 | [diff] [blame] | 1493 | /// ObjCIvarOffsetVariable - Returns the ivar offset variable for |
| 1494 | /// the given ivar. |
| 1495 | /// |
Daniel Dunbar | a106052 | 2009-04-19 00:31:15 +0000 | [diff] [blame] | 1496 | llvm::GlobalVariable * ObjCIvarOffsetVariable( |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1497 | const ObjCInterfaceDecl *ID, |
| 1498 | const ObjCIvarDecl *Ivar); |
| 1499 | |
Fariborz Jahanian | 74b7722 | 2009-02-11 20:51:17 +0000 | [diff] [blame] | 1500 | /// EmitSelector - Return a Value*, of type ObjCTypes.SelectorPtrTy, |
| 1501 | /// for the given selector. |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1502 | llvm::Value *EmitSelector(CodeGenFunction &CGF, Selector Sel); |
| 1503 | Address EmitSelectorAddr(CodeGenFunction &CGF, Selector Sel); |
Daniel Dunbar | b1559a4 | 2009-03-01 04:46:24 +0000 | [diff] [blame] | 1504 | |
Daniel Dunbar | 8f28d01 | 2009-04-08 04:21:03 +0000 | [diff] [blame] | 1505 | /// GetInterfaceEHType - Get the cached ehtype for the given Objective-C |
Daniel Dunbar | b1559a4 | 2009-03-01 04:46:24 +0000 | [diff] [blame] | 1506 | /// interface. The return value has type EHTypePtrTy. |
John McCall | 2ca705e | 2010-07-24 00:37:23 +0000 | [diff] [blame] | 1507 | llvm::Constant *GetInterfaceEHType(const ObjCInterfaceDecl *ID, |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 1508 | ForDefinition_t IsForDefinition); |
Daniel Dunbar | 15894b7 | 2009-04-07 05:48:37 +0000 | [diff] [blame] | 1509 | |
Saleem Abdulrasool | 1e6c406 | 2016-05-16 05:06:49 +0000 | [diff] [blame] | 1510 | StringRef getMetaclassSymbolPrefix() const { return "OBJC_METACLASS_$_"; } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1511 | |
Saleem Abdulrasool | 1e6c406 | 2016-05-16 05:06:49 +0000 | [diff] [blame] | 1512 | StringRef getClassSymbolPrefix() const { return "OBJC_CLASS_$_"; } |
Daniel Dunbar | 15894b7 | 2009-04-07 05:48:37 +0000 | [diff] [blame] | 1513 | |
Daniel Dunbar | 96120237 | 2009-05-03 12:57:56 +0000 | [diff] [blame] | 1514 | void GetClassSizeInfo(const ObjCImplementationDecl *OID, |
Daniel Dunbar | 554fd79 | 2009-04-19 23:41:48 +0000 | [diff] [blame] | 1515 | uint32_t &InstanceStart, |
| 1516 | uint32_t &InstanceSize); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1517 | |
Fariborz Jahanian | e412864 | 2009-05-12 20:06:41 +0000 | [diff] [blame] | 1518 | // Shamelessly stolen from Analysis/CFRefCount.cpp |
Daniel Dunbar | 9a017d7 | 2009-05-15 22:33:15 +0000 | [diff] [blame] | 1519 | Selector GetNullarySelector(const char* name) const { |
Fariborz Jahanian | e412864 | 2009-05-12 20:06:41 +0000 | [diff] [blame] | 1520 | IdentifierInfo* II = &CGM.getContext().Idents.get(name); |
| 1521 | return CGM.getContext().Selectors.getSelector(0, &II); |
| 1522 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1523 | |
Daniel Dunbar | 9a017d7 | 2009-05-15 22:33:15 +0000 | [diff] [blame] | 1524 | Selector GetUnarySelector(const char* name) const { |
Fariborz Jahanian | e412864 | 2009-05-12 20:06:41 +0000 | [diff] [blame] | 1525 | IdentifierInfo* II = &CGM.getContext().Idents.get(name); |
| 1526 | return CGM.getContext().Selectors.getSelector(1, &II); |
| 1527 | } |
Daniel Dunbar | 554fd79 | 2009-04-19 23:41:48 +0000 | [diff] [blame] | 1528 | |
Daniel Dunbar | 9a017d7 | 2009-05-15 22:33:15 +0000 | [diff] [blame] | 1529 | /// ImplementationIsNonLazy - Check whether the given category or |
| 1530 | /// class implementation is "non-lazy". |
Fariborz Jahanian | a6bed83 | 2009-05-21 01:03:45 +0000 | [diff] [blame] | 1531 | bool ImplementationIsNonLazy(const ObjCImplDecl *OD) const; |
Daniel Dunbar | 9a017d7 | 2009-05-15 22:33:15 +0000 | [diff] [blame] | 1532 | |
Saleem Abdulrasool | 5f25bc3 | 2013-02-17 04:03:34 +0000 | [diff] [blame] | 1533 | bool IsIvarOffsetKnownIdempotent(const CodeGen::CodeGenFunction &CGF, |
Saleem Abdulrasool | 5f25bc3 | 2013-02-17 04:03:34 +0000 | [diff] [blame] | 1534 | const ObjCIvarDecl *IV) { |
Fariborz Jahanian | dafffbe | 2014-03-04 18:34:52 +0000 | [diff] [blame] | 1535 | // Annotate the load as an invariant load iff inside an instance method |
| 1536 | // and ivar belongs to instance method's class and one of its super class. |
| 1537 | // This check is needed because the ivar offset is a lazily |
Saleem Abdulrasool | 5f25bc3 | 2013-02-17 04:03:34 +0000 | [diff] [blame] | 1538 | // initialised value that may depend on objc_msgSend to perform a fixup on |
| 1539 | // the first message dispatch. |
| 1540 | // |
| 1541 | // An additional opportunity to mark the load as invariant arises when the |
| 1542 | // base of the ivar access is a parameter to an Objective C method. |
| 1543 | // However, because the parameters are not available in the current |
| 1544 | // interface, we cannot perform this check. |
Fariborz Jahanian | dafffbe | 2014-03-04 18:34:52 +0000 | [diff] [blame] | 1545 | if (const ObjCMethodDecl *MD = |
| 1546 | dyn_cast_or_null<ObjCMethodDecl>(CGF.CurFuncDecl)) |
Fariborz Jahanian | 7a58302 | 2014-03-04 22:57:32 +0000 | [diff] [blame] | 1547 | if (MD->isInstanceMethod()) |
Fariborz Jahanian | dafffbe | 2014-03-04 18:34:52 +0000 | [diff] [blame] | 1548 | if (const ObjCInterfaceDecl *ID = MD->getClassInterface()) |
| 1549 | return IV->getContainingInterface()->isSuperClassOf(ID); |
Saleem Abdulrasool | 5f25bc3 | 2013-02-17 04:03:34 +0000 | [diff] [blame] | 1550 | return false; |
| 1551 | } |
| 1552 | |
Fariborz Jahanian | 279eda6 | 2009-01-21 22:04:16 +0000 | [diff] [blame] | 1553 | public: |
Fariborz Jahanian | b15a3d5 | 2009-01-22 23:02:58 +0000 | [diff] [blame] | 1554 | CGObjCNonFragileABIMac(CodeGen::CodeGenModule &cgm); |
John McCall | cd21d54 | 2016-11-30 23:15:55 +0000 | [diff] [blame] | 1555 | |
| 1556 | llvm::Constant *getNSConstantStringClassRef() override; |
| 1557 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1558 | llvm::Function *ModuleInitFunction() override; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1559 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1560 | CodeGen::RValue GenerateMessageSend(CodeGen::CodeGenFunction &CGF, |
| 1561 | ReturnValueSlot Return, |
| 1562 | QualType ResultType, Selector Sel, |
| 1563 | llvm::Value *Receiver, |
| 1564 | const CallArgList &CallArgs, |
| 1565 | const ObjCInterfaceDecl *Class, |
| 1566 | const ObjCMethodDecl *Method) override; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1567 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1568 | CodeGen::RValue |
Fariborz Jahanian | 7139404 | 2009-01-23 23:53:38 +0000 | [diff] [blame] | 1569 | GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF, |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1570 | ReturnValueSlot Return, QualType ResultType, |
| 1571 | Selector Sel, const ObjCInterfaceDecl *Class, |
| 1572 | bool isCategoryImpl, llvm::Value *Receiver, |
| 1573 | bool IsClassMessage, const CallArgList &CallArgs, |
| 1574 | const ObjCMethodDecl *Method) override; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1575 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1576 | llvm::Value *GetClass(CodeGenFunction &CGF, |
| 1577 | const ObjCInterfaceDecl *ID) override; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1578 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1579 | llvm::Value *GetSelector(CodeGenFunction &CGF, Selector Sel) override |
| 1580 | { return EmitSelector(CGF, Sel); } |
| 1581 | Address GetAddrOfSelector(CodeGenFunction &CGF, Selector Sel) override |
| 1582 | { return EmitSelectorAddr(CGF, Sel); } |
Fariborz Jahanian | f3648b8 | 2009-05-05 21:36:57 +0000 | [diff] [blame] | 1583 | |
| 1584 | /// The NeXT/Apple runtimes do not support typed selectors; just emit an |
| 1585 | /// untyped one. |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1586 | llvm::Value *GetSelector(CodeGenFunction &CGF, |
| 1587 | const ObjCMethodDecl *Method) override |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 1588 | { return EmitSelector(CGF, Method->getSelector()); } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1589 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1590 | void GenerateCategory(const ObjCCategoryImplDecl *CMD) override; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1591 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1592 | void GenerateClass(const ObjCImplementationDecl *ClassDecl) override; |
David Chisnall | 92d436b | 2012-01-31 18:59:20 +0000 | [diff] [blame] | 1593 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1594 | void RegisterAlias(const ObjCCompatibleAliasDecl *OAD) override {} |
David Chisnall | 92d436b | 2012-01-31 18:59:20 +0000 | [diff] [blame] | 1595 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1596 | llvm::Value *GenerateProtocolRef(CodeGenFunction &CGF, |
| 1597 | const ObjCProtocolDecl *PD) override; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1598 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1599 | llvm::Constant *GetEHType(QualType T) override; |
John McCall | 2ca705e | 2010-07-24 00:37:23 +0000 | [diff] [blame] | 1600 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1601 | llvm::Constant *GetPropertyGetFunction() override { |
Chris Lattner | ce8754e | 2009-04-22 02:44:54 +0000 | [diff] [blame] | 1602 | return ObjCTypes.getGetPropertyFn(); |
Fariborz Jahanian | 21fc74c | 2009-02-10 19:02:04 +0000 | [diff] [blame] | 1603 | } |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1604 | llvm::Constant *GetPropertySetFunction() override { |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1605 | return ObjCTypes.getSetPropertyFn(); |
Fariborz Jahanian | 21fc74c | 2009-02-10 19:02:04 +0000 | [diff] [blame] | 1606 | } |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1607 | |
| 1608 | llvm::Constant *GetOptimizedPropertySetFunction(bool atomic, |
| 1609 | bool copy) override { |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 1610 | return ObjCTypes.getOptimizedSetPropertyFn(atomic, copy); |
| 1611 | } |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1612 | |
| 1613 | llvm::Constant *GetSetStructFunction() override { |
David Chisnall | 168b80f | 2010-12-26 22:13:16 +0000 | [diff] [blame] | 1614 | return ObjCTypes.getCopyStructFn(); |
| 1615 | } |
Eugene Zelenko | 0a4f3f4 | 2016-02-10 19:11:58 +0000 | [diff] [blame] | 1616 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1617 | llvm::Constant *GetGetStructFunction() override { |
Fariborz Jahanian | 5a8c203 | 2010-04-12 18:18:10 +0000 | [diff] [blame] | 1618 | return ObjCTypes.getCopyStructFn(); |
| 1619 | } |
Eugene Zelenko | 0a4f3f4 | 2016-02-10 19:11:58 +0000 | [diff] [blame] | 1620 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1621 | llvm::Constant *GetCppAtomicObjectSetFunction() override { |
David Chisnall | 0d75e06 | 2012-12-17 18:54:24 +0000 | [diff] [blame] | 1622 | return ObjCTypes.getCppAtomicObjectFunction(); |
| 1623 | } |
Eugene Zelenko | 0a4f3f4 | 2016-02-10 19:11:58 +0000 | [diff] [blame] | 1624 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1625 | llvm::Constant *GetCppAtomicObjectGetFunction() override { |
Fariborz Jahanian | 1e1b549 | 2012-01-06 18:07:23 +0000 | [diff] [blame] | 1626 | return ObjCTypes.getCppAtomicObjectFunction(); |
| 1627 | } |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1628 | |
| 1629 | llvm::Constant *EnumerationMutationFunction() override { |
Chris Lattner | ce8754e | 2009-04-22 02:44:54 +0000 | [diff] [blame] | 1630 | return ObjCTypes.getEnumerationMutationFn(); |
Daniel Dunbar | d73ea816 | 2009-02-16 18:48:45 +0000 | [diff] [blame] | 1631 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1632 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1633 | void EmitTryStmt(CodeGen::CodeGenFunction &CGF, |
| 1634 | const ObjCAtTryStmt &S) override; |
| 1635 | void EmitSynchronizedStmt(CodeGen::CodeGenFunction &CGF, |
| 1636 | const ObjCAtSynchronizedStmt &S) override; |
| 1637 | void EmitThrowStmt(CodeGen::CodeGenFunction &CGF, const ObjCAtThrowStmt &S, |
| 1638 | bool ClearInsertionPoint=true) override; |
| 1639 | llvm::Value * EmitObjCWeakRead(CodeGen::CodeGenFunction &CGF, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1640 | Address AddrWeakObj) override; |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1641 | void EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1642 | llvm::Value *src, Address edst) override; |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1643 | void EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1644 | llvm::Value *src, Address dest, |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1645 | bool threadlocal = false) override; |
| 1646 | void EmitObjCIvarAssign(CodeGen::CodeGenFunction &CGF, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1647 | llvm::Value *src, Address dest, |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1648 | llvm::Value *ivarOffset) override; |
| 1649 | void EmitObjCStrongCastAssign(CodeGen::CodeGenFunction &CGF, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1650 | llvm::Value *src, Address dest) override; |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1651 | void EmitGCMemmoveCollectable(CodeGen::CodeGenFunction &CGF, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1652 | Address dest, Address src, |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1653 | llvm::Value *size) override; |
| 1654 | LValue EmitObjCValueForIvar(CodeGen::CodeGenFunction &CGF, QualType ObjectTy, |
| 1655 | llvm::Value *BaseValue, const ObjCIvarDecl *Ivar, |
| 1656 | unsigned CVRQualifiers) override; |
| 1657 | llvm::Value *EmitIvarOffset(CodeGen::CodeGenFunction &CGF, |
| 1658 | const ObjCInterfaceDecl *Interface, |
| 1659 | const ObjCIvarDecl *Ivar) override; |
Fariborz Jahanian | 279eda6 | 2009-01-21 22:04:16 +0000 | [diff] [blame] | 1660 | }; |
Fariborz Jahanian | 715fdd5 | 2012-01-29 20:27:13 +0000 | [diff] [blame] | 1661 | |
| 1662 | /// A helper class for performing the null-initialization of a return |
| 1663 | /// value. |
| 1664 | struct NullReturnState { |
| 1665 | llvm::BasicBlock *NullBB; |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 1666 | NullReturnState() : NullBB(nullptr) {} |
Fariborz Jahanian | 715fdd5 | 2012-01-29 20:27:13 +0000 | [diff] [blame] | 1667 | |
John McCall | 3d1e2c9 | 2013-02-12 05:53:35 +0000 | [diff] [blame] | 1668 | /// Perform a null-check of the given receiver. |
Fariborz Jahanian | 715fdd5 | 2012-01-29 20:27:13 +0000 | [diff] [blame] | 1669 | void init(CodeGenFunction &CGF, llvm::Value *receiver) { |
John McCall | 3d1e2c9 | 2013-02-12 05:53:35 +0000 | [diff] [blame] | 1670 | // Make blocks for the null-receiver and call edges. |
| 1671 | NullBB = CGF.createBasicBlock("msgSend.null-receiver"); |
| 1672 | llvm::BasicBlock *callBB = CGF.createBasicBlock("msgSend.call"); |
Fariborz Jahanian | 715fdd5 | 2012-01-29 20:27:13 +0000 | [diff] [blame] | 1673 | |
| 1674 | // Check for a null receiver and, if there is one, jump to the |
John McCall | 3d1e2c9 | 2013-02-12 05:53:35 +0000 | [diff] [blame] | 1675 | // null-receiver block. There's no point in trying to avoid it: |
| 1676 | // we're always going to put *something* there, because otherwise |
| 1677 | // we shouldn't have done this null-check in the first place. |
Fariborz Jahanian | 715fdd5 | 2012-01-29 20:27:13 +0000 | [diff] [blame] | 1678 | llvm::Value *isNull = CGF.Builder.CreateIsNull(receiver); |
| 1679 | CGF.Builder.CreateCondBr(isNull, NullBB, callBB); |
| 1680 | |
| 1681 | // Otherwise, start performing the call. |
| 1682 | CGF.EmitBlock(callBB); |
| 1683 | } |
| 1684 | |
John McCall | 3d1e2c9 | 2013-02-12 05:53:35 +0000 | [diff] [blame] | 1685 | /// Complete the null-return operation. It is valid to call this |
| 1686 | /// regardless of whether 'init' has been called. |
Kuba Mracek | bce5cea | 2017-06-30 16:28:15 +0000 | [diff] [blame] | 1687 | RValue complete(CodeGenFunction &CGF, |
| 1688 | ReturnValueSlot returnSlot, |
| 1689 | RValue result, |
| 1690 | QualType resultType, |
Fariborz Jahanian | f2bda69 | 2012-01-30 21:40:37 +0000 | [diff] [blame] | 1691 | const CallArgList &CallArgs, |
| 1692 | const ObjCMethodDecl *Method) { |
John McCall | 3d1e2c9 | 2013-02-12 05:53:35 +0000 | [diff] [blame] | 1693 | // If we never had to do a null-check, just use the raw result. |
Fariborz Jahanian | 715fdd5 | 2012-01-29 20:27:13 +0000 | [diff] [blame] | 1694 | if (!NullBB) return result; |
John McCall | 3d1e2c9 | 2013-02-12 05:53:35 +0000 | [diff] [blame] | 1695 | |
| 1696 | // The continuation block. This will be left null if we don't have an |
| 1697 | // IP, which can happen if the method we're calling is marked noreturn. |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 1698 | llvm::BasicBlock *contBB = nullptr; |
| 1699 | |
John McCall | 3d1e2c9 | 2013-02-12 05:53:35 +0000 | [diff] [blame] | 1700 | // Finish the call path. |
| 1701 | llvm::BasicBlock *callBB = CGF.Builder.GetInsertBlock(); |
| 1702 | if (callBB) { |
| 1703 | contBB = CGF.createBasicBlock("msgSend.cont"); |
| 1704 | CGF.Builder.CreateBr(contBB); |
Fariborz Jahanian | f2bda69 | 2012-01-30 21:40:37 +0000 | [diff] [blame] | 1705 | } |
Fariborz Jahanian | 715fdd5 | 2012-01-29 20:27:13 +0000 | [diff] [blame] | 1706 | |
John McCall | 3d1e2c9 | 2013-02-12 05:53:35 +0000 | [diff] [blame] | 1707 | // Okay, start emitting the null-receiver block. |
Fariborz Jahanian | 715fdd5 | 2012-01-29 20:27:13 +0000 | [diff] [blame] | 1708 | CGF.EmitBlock(NullBB); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1709 | |
John McCall | 3d1e2c9 | 2013-02-12 05:53:35 +0000 | [diff] [blame] | 1710 | // Release any consumed arguments we've got. |
Fariborz Jahanian | f2bda69 | 2012-01-30 21:40:37 +0000 | [diff] [blame] | 1711 | if (Method) { |
| 1712 | CallArgList::const_iterator I = CallArgs.begin(); |
| 1713 | for (ObjCMethodDecl::param_const_iterator i = Method->param_begin(), |
| 1714 | e = Method->param_end(); i != e; ++i, ++I) { |
| 1715 | const ParmVarDecl *ParamDecl = (*i); |
| 1716 | if (ParamDecl->hasAttr<NSConsumedAttr>()) { |
Yaxun Liu | 5b330e8 | 2018-03-15 15:25:19 +0000 | [diff] [blame] | 1717 | RValue RV = I->getRValue(CGF); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1718 | assert(RV.isScalar() && |
Fariborz Jahanian | f2bda69 | 2012-01-30 21:40:37 +0000 | [diff] [blame] | 1719 | "NullReturnState::complete - arg not on object"); |
John McCall | cdda29c | 2013-03-13 03:10:54 +0000 | [diff] [blame] | 1720 | CGF.EmitARCRelease(RV.getScalarVal(), ARCImpreciseLifetime); |
Fariborz Jahanian | f2bda69 | 2012-01-30 21:40:37 +0000 | [diff] [blame] | 1721 | } |
| 1722 | } |
| 1723 | } |
John McCall | 3d1e2c9 | 2013-02-12 05:53:35 +0000 | [diff] [blame] | 1724 | |
| 1725 | // The phi code below assumes that we haven't needed any control flow yet. |
| 1726 | assert(CGF.Builder.GetInsertBlock() == NullBB); |
| 1727 | |
| 1728 | // If we've got a void return, just jump to the continuation block. |
| 1729 | if (result.isScalar() && resultType->isVoidType()) { |
| 1730 | // No jumps required if the message-send was noreturn. |
| 1731 | if (contBB) CGF.EmitBlock(contBB); |
Fariborz Jahanian | 715fdd5 | 2012-01-29 20:27:13 +0000 | [diff] [blame] | 1732 | return result; |
| 1733 | } |
| 1734 | |
John McCall | 3d1e2c9 | 2013-02-12 05:53:35 +0000 | [diff] [blame] | 1735 | // If we've got a scalar return, build a phi. |
| 1736 | if (result.isScalar()) { |
| 1737 | // Derive the null-initialization value. |
| 1738 | llvm::Constant *null = CGF.CGM.EmitNullConstant(resultType); |
| 1739 | |
| 1740 | // If no join is necessary, just flow out. |
| 1741 | if (!contBB) return RValue::get(null); |
| 1742 | |
| 1743 | // Otherwise, build a phi. |
| 1744 | CGF.EmitBlock(contBB); |
| 1745 | llvm::PHINode *phi = CGF.Builder.CreatePHI(null->getType(), 2); |
| 1746 | phi->addIncoming(result.getScalarVal(), callBB); |
| 1747 | phi->addIncoming(null, NullBB); |
| 1748 | return RValue::get(phi); |
| 1749 | } |
| 1750 | |
| 1751 | // If we've got an aggregate return, null the buffer out. |
| 1752 | // FIXME: maybe we should be doing things differently for all the |
| 1753 | // cases where the ABI has us returning (1) non-agg values in |
| 1754 | // memory or (2) agg values in registers. |
| 1755 | if (result.isAggregate()) { |
| 1756 | assert(result.isAggregate() && "null init of non-aggregate result?"); |
Kuba Mracek | bce5cea | 2017-06-30 16:28:15 +0000 | [diff] [blame] | 1757 | if (!returnSlot.isUnused()) |
| 1758 | CGF.EmitNullInitialization(result.getAggregateAddress(), resultType); |
John McCall | 3d1e2c9 | 2013-02-12 05:53:35 +0000 | [diff] [blame] | 1759 | if (contBB) CGF.EmitBlock(contBB); |
| 1760 | return result; |
| 1761 | } |
| 1762 | |
| 1763 | // Complex types. |
Fariborz Jahanian | 715fdd5 | 2012-01-29 20:27:13 +0000 | [diff] [blame] | 1764 | CGF.EmitBlock(contBB); |
John McCall | 3d1e2c9 | 2013-02-12 05:53:35 +0000 | [diff] [blame] | 1765 | CodeGenFunction::ComplexPairTy callResult = result.getComplexVal(); |
| 1766 | |
| 1767 | // Find the scalar type and its zero value. |
| 1768 | llvm::Type *scalarTy = callResult.first->getType(); |
| 1769 | llvm::Constant *scalarZero = llvm::Constant::getNullValue(scalarTy); |
| 1770 | |
| 1771 | // Build phis for both coordinates. |
| 1772 | llvm::PHINode *real = CGF.Builder.CreatePHI(scalarTy, 2); |
| 1773 | real->addIncoming(callResult.first, callBB); |
| 1774 | real->addIncoming(scalarZero, NullBB); |
| 1775 | llvm::PHINode *imag = CGF.Builder.CreatePHI(scalarTy, 2); |
| 1776 | imag->addIncoming(callResult.second, callBB); |
| 1777 | imag->addIncoming(scalarZero, NullBB); |
| 1778 | return RValue::getComplex(real, imag); |
Fariborz Jahanian | 715fdd5 | 2012-01-29 20:27:13 +0000 | [diff] [blame] | 1779 | } |
| 1780 | }; |
| 1781 | |
Daniel Dunbar | 303e2c2 | 2008-08-11 02:45:11 +0000 | [diff] [blame] | 1782 | } // end anonymous namespace |
Daniel Dunbar | 8b8683f | 2008-08-12 00:12:39 +0000 | [diff] [blame] | 1783 | |
| 1784 | /* *** Helper Functions *** */ |
| 1785 | |
| 1786 | /// getConstantGEP() - Help routine to construct simple GEPs. |
Owen Anderson | 170229f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 1787 | static llvm::Constant *getConstantGEP(llvm::LLVMContext &VMContext, |
David Blaikie | e3b172a | 2015-04-02 18:55:21 +0000 | [diff] [blame] | 1788 | llvm::GlobalVariable *C, unsigned idx0, |
Daniel Dunbar | 8b8683f | 2008-08-12 00:12:39 +0000 | [diff] [blame] | 1789 | unsigned idx1) { |
| 1790 | llvm::Value *Idxs[] = { |
Owen Anderson | 41a7502 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 1791 | llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), idx0), |
| 1792 | llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), idx1) |
Daniel Dunbar | 8b8683f | 2008-08-12 00:12:39 +0000 | [diff] [blame] | 1793 | }; |
David Blaikie | e3b172a | 2015-04-02 18:55:21 +0000 | [diff] [blame] | 1794 | return llvm::ConstantExpr::getGetElementPtr(C->getValueType(), C, Idxs); |
Daniel Dunbar | 8b8683f | 2008-08-12 00:12:39 +0000 | [diff] [blame] | 1795 | } |
| 1796 | |
Daniel Dunbar | 8f28d01 | 2009-04-08 04:21:03 +0000 | [diff] [blame] | 1797 | /// hasObjCExceptionAttribute - Return true if this class or any super |
| 1798 | /// class has the __objc_exception__ attribute. |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1799 | static bool hasObjCExceptionAttribute(ASTContext &Context, |
Douglas Gregor | 78bd61f | 2009-06-18 16:11:24 +0000 | [diff] [blame] | 1800 | const ObjCInterfaceDecl *OID) { |
Argyrios Kyrtzidis | b4b64ca | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 1801 | if (OID->hasAttr<ObjCExceptionAttr>()) |
Daniel Dunbar | 8f28d01 | 2009-04-08 04:21:03 +0000 | [diff] [blame] | 1802 | return true; |
| 1803 | if (const ObjCInterfaceDecl *Super = OID->getSuperClass()) |
Douglas Gregor | 78bd61f | 2009-06-18 16:11:24 +0000 | [diff] [blame] | 1804 | return hasObjCExceptionAttribute(Context, Super); |
Daniel Dunbar | 8f28d01 | 2009-04-08 04:21:03 +0000 | [diff] [blame] | 1805 | return false; |
| 1806 | } |
| 1807 | |
Daniel Dunbar | 8b8683f | 2008-08-12 00:12:39 +0000 | [diff] [blame] | 1808 | /* *** CGObjCMac Public Interface *** */ |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1809 | |
Fariborz Jahanian | 279eda6 | 2009-01-21 22:04:16 +0000 | [diff] [blame] | 1810 | CGObjCMac::CGObjCMac(CodeGen::CodeGenModule &cgm) : CGObjCCommonMac(cgm), |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1811 | ObjCTypes(cgm) { |
Fariborz Jahanian | 279eda6 | 2009-01-21 22:04:16 +0000 | [diff] [blame] | 1812 | ObjCABI = 1; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1813 | EmitImageInfo(); |
Daniel Dunbar | 303e2c2 | 2008-08-11 02:45:11 +0000 | [diff] [blame] | 1814 | } |
| 1815 | |
Daniel Dunbar | 7c6d3a7 | 2008-08-16 00:25:02 +0000 | [diff] [blame] | 1816 | /// GetClass - Return a reference to the class for the given interface |
| 1817 | /// decl. |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 1818 | llvm::Value *CGObjCMac::GetClass(CodeGenFunction &CGF, |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 1819 | const ObjCInterfaceDecl *ID) { |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 1820 | return EmitClassRef(CGF, ID); |
Daniel Dunbar | 303e2c2 | 2008-08-11 02:45:11 +0000 | [diff] [blame] | 1821 | } |
| 1822 | |
| 1823 | /// GetSelector - Return the pointer to the unique'd string for this selector. |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1824 | llvm::Value *CGObjCMac::GetSelector(CodeGenFunction &CGF, Selector Sel) { |
| 1825 | return EmitSelector(CGF, Sel); |
| 1826 | } |
| 1827 | Address CGObjCMac::GetAddrOfSelector(CodeGenFunction &CGF, Selector Sel) { |
| 1828 | return EmitSelectorAddr(CGF, Sel); |
Daniel Dunbar | 303e2c2 | 2008-08-11 02:45:11 +0000 | [diff] [blame] | 1829 | } |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 1830 | llvm::Value *CGObjCMac::GetSelector(CodeGenFunction &CGF, const ObjCMethodDecl |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1831 | *Method) { |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 1832 | return EmitSelector(CGF, Method->getSelector()); |
Fariborz Jahanian | f3648b8 | 2009-05-05 21:36:57 +0000 | [diff] [blame] | 1833 | } |
Daniel Dunbar | 303e2c2 | 2008-08-11 02:45:11 +0000 | [diff] [blame] | 1834 | |
Fariborz Jahanian | 831f0fc | 2011-06-23 19:00:08 +0000 | [diff] [blame] | 1835 | llvm::Constant *CGObjCMac::GetEHType(QualType T) { |
Fariborz Jahanian | 0a3cfcc | 2011-06-22 20:21:51 +0000 | [diff] [blame] | 1836 | if (T->isObjCIdType() || |
| 1837 | T->isObjCQualifiedIdType()) { |
| 1838 | return CGM.GetAddrOfRTTIDescriptor( |
Douglas Gregor | 9767347 | 2011-08-11 20:58:55 +0000 | [diff] [blame] | 1839 | CGM.getContext().getObjCIdRedefinitionType(), /*ForEH=*/true); |
Fariborz Jahanian | 0a3cfcc | 2011-06-22 20:21:51 +0000 | [diff] [blame] | 1840 | } |
Fariborz Jahanian | 831f0fc | 2011-06-23 19:00:08 +0000 | [diff] [blame] | 1841 | if (T->isObjCClassType() || |
| 1842 | T->isObjCQualifiedClassType()) { |
| 1843 | return CGM.GetAddrOfRTTIDescriptor( |
Douglas Gregor | 9767347 | 2011-08-11 20:58:55 +0000 | [diff] [blame] | 1844 | CGM.getContext().getObjCClassRedefinitionType(), /*ForEH=*/true); |
Fariborz Jahanian | 831f0fc | 2011-06-23 19:00:08 +0000 | [diff] [blame] | 1845 | } |
| 1846 | if (T->isObjCObjectPointerType()) |
| 1847 | return CGM.GetAddrOfRTTIDescriptor(T, /*ForEH=*/true); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1848 | |
John McCall | 2ca705e | 2010-07-24 00:37:23 +0000 | [diff] [blame] | 1849 | llvm_unreachable("asking for catch type for ObjC type in fragile runtime"); |
John McCall | 2ca705e | 2010-07-24 00:37:23 +0000 | [diff] [blame] | 1850 | } |
| 1851 | |
Daniel Dunbar | 8b8683f | 2008-08-12 00:12:39 +0000 | [diff] [blame] | 1852 | /// Generate a constant CFString object. |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 1853 | /* |
| 1854 | struct __builtin_CFString { |
| 1855 | const int *isa; // point to __CFConstantStringClassReference |
| 1856 | int flags; |
| 1857 | const char *str; |
| 1858 | long length; |
| 1859 | }; |
Daniel Dunbar | 8b8683f | 2008-08-12 00:12:39 +0000 | [diff] [blame] | 1860 | */ |
| 1861 | |
Fariborz Jahanian | 63408e8 | 2010-04-22 20:26:39 +0000 | [diff] [blame] | 1862 | /// or Generate a constant NSString object. |
| 1863 | /* |
| 1864 | struct __builtin_NSString { |
| 1865 | const int *isa; // point to __NSConstantStringClassReference |
| 1866 | const char *str; |
| 1867 | unsigned int length; |
| 1868 | }; |
| 1869 | */ |
| 1870 | |
John McCall | cd21d54 | 2016-11-30 23:15:55 +0000 | [diff] [blame] | 1871 | ConstantAddress |
| 1872 | CGObjCCommonMac::GenerateConstantString(const StringLiteral *SL) { |
| 1873 | return (!CGM.getLangOpts().NoConstantCFStrings |
| 1874 | ? CGM.GetAddrOfConstantCFString(SL) |
| 1875 | : GenerateConstantNSString(SL)); |
| 1876 | } |
| 1877 | |
| 1878 | static llvm::StringMapEntry<llvm::GlobalVariable *> & |
| 1879 | GetConstantStringEntry(llvm::StringMap<llvm::GlobalVariable *> &Map, |
| 1880 | const StringLiteral *Literal, unsigned &StringLength) { |
| 1881 | StringRef String = Literal->getString(); |
| 1882 | StringLength = String.size(); |
| 1883 | return *Map.insert(std::make_pair(String, nullptr)).first; |
| 1884 | } |
| 1885 | |
| 1886 | llvm::Constant *CGObjCMac::getNSConstantStringClassRef() { |
| 1887 | if (llvm::Value *V = ConstantStringClassRef) |
| 1888 | return cast<llvm::Constant>(V); |
| 1889 | |
| 1890 | auto &StringClass = CGM.getLangOpts().ObjCConstantStringClass; |
| 1891 | std::string str = |
| 1892 | StringClass.empty() ? "_NSConstantStringClassReference" |
| 1893 | : "_" + StringClass + "ClassReference"; |
| 1894 | |
| 1895 | llvm::Type *PTy = llvm::ArrayType::get(CGM.IntTy, 0); |
| 1896 | auto GV = CGM.CreateRuntimeVariable(PTy, str); |
| 1897 | auto V = llvm::ConstantExpr::getBitCast(GV, CGM.IntTy->getPointerTo()); |
| 1898 | ConstantStringClassRef = V; |
| 1899 | return V; |
| 1900 | } |
| 1901 | |
| 1902 | llvm::Constant *CGObjCNonFragileABIMac::getNSConstantStringClassRef() { |
| 1903 | if (llvm::Value *V = ConstantStringClassRef) |
| 1904 | return cast<llvm::Constant>(V); |
| 1905 | |
| 1906 | auto &StringClass = CGM.getLangOpts().ObjCConstantStringClass; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 1907 | std::string str = |
| 1908 | StringClass.empty() ? "OBJC_CLASS_$_NSConstantString" |
John McCall | cd21d54 | 2016-11-30 23:15:55 +0000 | [diff] [blame] | 1909 | : "OBJC_CLASS_$_" + StringClass; |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 1910 | auto GV = GetClassGlobal(str, NotForDefinition); |
John McCall | cd21d54 | 2016-11-30 23:15:55 +0000 | [diff] [blame] | 1911 | |
| 1912 | // Make sure the result is of the correct type. |
| 1913 | auto V = llvm::ConstantExpr::getBitCast(GV, CGM.IntTy->getPointerTo()); |
| 1914 | |
| 1915 | ConstantStringClassRef = V; |
| 1916 | return V; |
| 1917 | } |
| 1918 | |
| 1919 | ConstantAddress |
| 1920 | CGObjCCommonMac::GenerateConstantNSString(const StringLiteral *Literal) { |
| 1921 | unsigned StringLength = 0; |
| 1922 | llvm::StringMapEntry<llvm::GlobalVariable *> &Entry = |
| 1923 | GetConstantStringEntry(NSConstantStringMap, Literal, StringLength); |
| 1924 | |
| 1925 | if (auto *C = Entry.second) |
| 1926 | return ConstantAddress(C, CharUnits::fromQuantity(C->getAlignment())); |
| 1927 | |
| 1928 | // If we don't already have it, get _NSConstantStringClassReference. |
| 1929 | llvm::Constant *Class = getNSConstantStringClassRef(); |
| 1930 | |
| 1931 | // If we don't already have it, construct the type for a constant NSString. |
| 1932 | if (!NSConstantStringType) { |
| 1933 | NSConstantStringType = |
| 1934 | llvm::StructType::create({ |
| 1935 | CGM.Int32Ty->getPointerTo(), |
| 1936 | CGM.Int8PtrTy, |
| 1937 | CGM.IntTy |
| 1938 | }, "struct.__builtin_NSString"); |
| 1939 | } |
| 1940 | |
| 1941 | ConstantInitBuilder Builder(CGM); |
| 1942 | auto Fields = Builder.beginStruct(NSConstantStringType); |
| 1943 | |
| 1944 | // Class pointer. |
| 1945 | Fields.add(Class); |
| 1946 | |
| 1947 | // String pointer. |
| 1948 | llvm::Constant *C = |
| 1949 | llvm::ConstantDataArray::getString(VMContext, Entry.first()); |
| 1950 | |
| 1951 | llvm::GlobalValue::LinkageTypes Linkage = llvm::GlobalValue::PrivateLinkage; |
| 1952 | bool isConstant = !CGM.getLangOpts().WritableStrings; |
| 1953 | |
| 1954 | auto *GV = new llvm::GlobalVariable(CGM.getModule(), C->getType(), isConstant, |
| 1955 | Linkage, C, ".str"); |
| 1956 | GV->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global); |
| 1957 | // Don't enforce the target's minimum global alignment, since the only use |
| 1958 | // of the string is via this class initializer. |
| 1959 | GV->setAlignment(1); |
| 1960 | Fields.addBitCast(GV, CGM.Int8PtrTy); |
| 1961 | |
| 1962 | // String length. |
| 1963 | Fields.addInt(CGM.IntTy, StringLength); |
| 1964 | |
| 1965 | // The struct. |
| 1966 | CharUnits Alignment = CGM.getPointerAlign(); |
| 1967 | GV = Fields.finishAndCreateGlobal("_unnamed_nsstring_", Alignment, |
| 1968 | /*constant*/ true, |
| 1969 | llvm::GlobalVariable::PrivateLinkage); |
| 1970 | const char *NSStringSection = "__OBJC,__cstring_object,regular,no_dead_strip"; |
| 1971 | const char *NSStringNonFragileABISection = |
| 1972 | "__DATA,__objc_stringobj,regular,no_dead_strip"; |
| 1973 | // FIXME. Fix section. |
| 1974 | GV->setSection(CGM.getLangOpts().ObjCRuntime.isNonFragile() |
| 1975 | ? NSStringNonFragileABISection |
| 1976 | : NSStringSection); |
| 1977 | Entry.second = GV; |
| 1978 | |
| 1979 | return ConstantAddress(GV, Alignment); |
Daniel Dunbar | 303e2c2 | 2008-08-11 02:45:11 +0000 | [diff] [blame] | 1980 | } |
| 1981 | |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 1982 | enum { |
| 1983 | kCFTaggedObjectID_Integer = (1 << 1) + 1 |
| 1984 | }; |
| 1985 | |
Daniel Dunbar | 303e2c2 | 2008-08-11 02:45:11 +0000 | [diff] [blame] | 1986 | /// Generates a message send where the super is the receiver. This is |
| 1987 | /// a message send to self with special delivery semantics indicating |
| 1988 | /// which class's method should be called. |
Daniel Dunbar | 97db84c | 2008-08-23 03:46:30 +0000 | [diff] [blame] | 1989 | CodeGen::RValue |
| 1990 | CGObjCMac::GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF, |
John McCall | 78a1511 | 2010-05-22 01:48:05 +0000 | [diff] [blame] | 1991 | ReturnValueSlot Return, |
Daniel Dunbar | 4b8c6db | 2008-08-30 05:35:15 +0000 | [diff] [blame] | 1992 | QualType ResultType, |
| 1993 | Selector Sel, |
Daniel Dunbar | ca8531a | 2008-08-25 08:19:24 +0000 | [diff] [blame] | 1994 | const ObjCInterfaceDecl *Class, |
Fariborz Jahanian | bac73ac | 2009-02-28 20:07:56 +0000 | [diff] [blame] | 1995 | bool isCategoryImpl, |
Daniel Dunbar | ca8531a | 2008-08-25 08:19:24 +0000 | [diff] [blame] | 1996 | llvm::Value *Receiver, |
Daniel Dunbar | c722b85 | 2008-08-30 03:02:31 +0000 | [diff] [blame] | 1997 | bool IsClassMessage, |
Daniel Dunbar | aff9fca | 2009-09-17 04:01:22 +0000 | [diff] [blame] | 1998 | const CodeGen::CallArgList &CallArgs, |
| 1999 | const ObjCMethodDecl *Method) { |
Daniel Dunbar | f6397fe | 2008-08-23 04:28:29 +0000 | [diff] [blame] | 2000 | // Create and init a super structure; this is a (receiver, class) |
| 2001 | // pair we will pass to objc_msgSendSuper. |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 2002 | Address ObjCSuper = |
| 2003 | CGF.CreateTempAlloca(ObjCTypes.SuperTy, CGF.getPointerAlign(), |
| 2004 | "objc_super"); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 2005 | llvm::Value *ReceiverAsObject = |
Daniel Dunbar | f6397fe | 2008-08-23 04:28:29 +0000 | [diff] [blame] | 2006 | CGF.Builder.CreateBitCast(Receiver, ObjCTypes.ObjectPtrTy); |
David Blaikie | 1ed728c | 2015-04-05 22:45:47 +0000 | [diff] [blame] | 2007 | CGF.Builder.CreateStore( |
| 2008 | ReceiverAsObject, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 2009 | CGF.Builder.CreateStructGEP(ObjCSuper, 0, CharUnits::Zero())); |
Daniel Dunbar | f6397fe | 2008-08-23 04:28:29 +0000 | [diff] [blame] | 2010 | |
Daniel Dunbar | ca8531a | 2008-08-25 08:19:24 +0000 | [diff] [blame] | 2011 | // If this is a class message the metaclass is passed as the target. |
| 2012 | llvm::Value *Target; |
| 2013 | if (IsClassMessage) { |
Fariborz Jahanian | bac73ac | 2009-02-28 20:07:56 +0000 | [diff] [blame] | 2014 | if (isCategoryImpl) { |
| 2015 | // Message sent to 'super' in a class method defined in a category |
| 2016 | // implementation requires an odd treatment. |
| 2017 | // If we are in a class method, we must retrieve the |
| 2018 | // _metaclass_ for the current class, pointed at by |
| 2019 | // the class's "isa" pointer. The following assumes that |
| 2020 | // isa" is the first ivar in a class (which it must be). |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 2021 | Target = EmitClassRef(CGF, Class->getSuperClass()); |
David Blaikie | 1ed728c | 2015-04-05 22:45:47 +0000 | [diff] [blame] | 2022 | Target = CGF.Builder.CreateStructGEP(ObjCTypes.ClassTy, Target, 0); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 2023 | Target = CGF.Builder.CreateAlignedLoad(Target, CGF.getPointerAlign()); |
Mike Stump | 658fe02 | 2009-07-30 22:28:39 +0000 | [diff] [blame] | 2024 | } else { |
David Blaikie | 1ed728c | 2015-04-05 22:45:47 +0000 | [diff] [blame] | 2025 | llvm::Constant *MetaClassPtr = EmitMetaClassRef(Class); |
| 2026 | llvm::Value *SuperPtr = |
| 2027 | CGF.Builder.CreateStructGEP(ObjCTypes.ClassTy, MetaClassPtr, 1); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 2028 | llvm::Value *Super = |
| 2029 | CGF.Builder.CreateAlignedLoad(SuperPtr, CGF.getPointerAlign()); |
Fariborz Jahanian | bac73ac | 2009-02-28 20:07:56 +0000 | [diff] [blame] | 2030 | Target = Super; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 2031 | } |
David Blaikie | 1ed728c | 2015-04-05 22:45:47 +0000 | [diff] [blame] | 2032 | } else if (isCategoryImpl) |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 2033 | Target = EmitClassRef(CGF, Class->getSuperClass()); |
Fariborz Jahanian | da2efb0 | 2009-11-14 02:18:31 +0000 | [diff] [blame] | 2034 | else { |
Fariborz Jahanian | eb80c98 | 2009-11-12 20:14:24 +0000 | [diff] [blame] | 2035 | llvm::Value *ClassPtr = EmitSuperClassRef(Class); |
David Blaikie | 1ed728c | 2015-04-05 22:45:47 +0000 | [diff] [blame] | 2036 | ClassPtr = CGF.Builder.CreateStructGEP(ObjCTypes.ClassTy, ClassPtr, 1); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 2037 | Target = CGF.Builder.CreateAlignedLoad(ClassPtr, CGF.getPointerAlign()); |
Daniel Dunbar | ca8531a | 2008-08-25 08:19:24 +0000 | [diff] [blame] | 2038 | } |
Mike Stump | 18bb928 | 2009-05-16 07:57:57 +0000 | [diff] [blame] | 2039 | // FIXME: We shouldn't need to do this cast, rectify the ASTContext and |
| 2040 | // ObjCTypes types. |
Chris Lattner | 2192fe5 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 2041 | llvm::Type *ClassTy = |
Daniel Dunbar | c722b85 | 2008-08-30 03:02:31 +0000 | [diff] [blame] | 2042 | CGM.getTypes().ConvertType(CGF.getContext().getObjCClassType()); |
Daniel Dunbar | c475d42 | 2008-10-29 22:36:39 +0000 | [diff] [blame] | 2043 | Target = CGF.Builder.CreateBitCast(Target, ClassTy); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 2044 | CGF.Builder.CreateStore(Target, |
| 2045 | CGF.Builder.CreateStructGEP(ObjCSuper, 1, CGF.getPointerSize())); |
John McCall | 9e8bb00 | 2011-05-14 03:10:52 +0000 | [diff] [blame] | 2046 | return EmitMessageSend(CGF, Return, ResultType, |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 2047 | EmitSelector(CGF, Sel), |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 2048 | ObjCSuper.getPointer(), ObjCTypes.SuperPtrCTy, |
John McCall | 1e3157b | 2015-09-10 22:27:50 +0000 | [diff] [blame] | 2049 | true, CallArgs, Method, Class, ObjCTypes); |
Daniel Dunbar | 303e2c2 | 2008-08-11 02:45:11 +0000 | [diff] [blame] | 2050 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 2051 | |
| 2052 | /// Generate code for a message send expression. |
Daniel Dunbar | 97db84c | 2008-08-23 03:46:30 +0000 | [diff] [blame] | 2053 | CodeGen::RValue CGObjCMac::GenerateMessageSend(CodeGen::CodeGenFunction &CGF, |
John McCall | 78a1511 | 2010-05-22 01:48:05 +0000 | [diff] [blame] | 2054 | ReturnValueSlot Return, |
Daniel Dunbar | 4b8c6db | 2008-08-30 05:35:15 +0000 | [diff] [blame] | 2055 | QualType ResultType, |
| 2056 | Selector Sel, |
Daniel Dunbar | ca8531a | 2008-08-25 08:19:24 +0000 | [diff] [blame] | 2057 | llvm::Value *Receiver, |
Fariborz Jahanian | f3648b8 | 2009-05-05 21:36:57 +0000 | [diff] [blame] | 2058 | const CallArgList &CallArgs, |
David Chisnall | 01aa467 | 2010-04-28 19:33:36 +0000 | [diff] [blame] | 2059 | const ObjCInterfaceDecl *Class, |
Fariborz Jahanian | f3648b8 | 2009-05-05 21:36:57 +0000 | [diff] [blame] | 2060 | const ObjCMethodDecl *Method) { |
John McCall | 9e8bb00 | 2011-05-14 03:10:52 +0000 | [diff] [blame] | 2061 | return EmitMessageSend(CGF, Return, ResultType, |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 2062 | EmitSelector(CGF, Sel), |
John McCall | 9e8bb00 | 2011-05-14 03:10:52 +0000 | [diff] [blame] | 2063 | Receiver, CGF.getContext().getObjCIdType(), |
John McCall | 1e3157b | 2015-09-10 22:27:50 +0000 | [diff] [blame] | 2064 | false, CallArgs, Method, Class, ObjCTypes); |
| 2065 | } |
| 2066 | |
| 2067 | static bool isWeakLinkedClass(const ObjCInterfaceDecl *ID) { |
| 2068 | do { |
| 2069 | if (ID->isWeakImported()) |
| 2070 | return true; |
| 2071 | } while ((ID = ID->getSuperClass())); |
| 2072 | |
| 2073 | return false; |
Daniel Dunbar | 97ff50d | 2008-08-23 09:25:55 +0000 | [diff] [blame] | 2074 | } |
| 2075 | |
Daniel Dunbar | aff9fca | 2009-09-17 04:01:22 +0000 | [diff] [blame] | 2076 | CodeGen::RValue |
John McCall | 9e8bb00 | 2011-05-14 03:10:52 +0000 | [diff] [blame] | 2077 | CGObjCCommonMac::EmitMessageSend(CodeGen::CodeGenFunction &CGF, |
| 2078 | ReturnValueSlot Return, |
| 2079 | QualType ResultType, |
| 2080 | llvm::Value *Sel, |
| 2081 | llvm::Value *Arg0, |
| 2082 | QualType Arg0Ty, |
| 2083 | bool IsSuper, |
| 2084 | const CallArgList &CallArgs, |
| 2085 | const ObjCMethodDecl *Method, |
John McCall | 1e3157b | 2015-09-10 22:27:50 +0000 | [diff] [blame] | 2086 | const ObjCInterfaceDecl *ClassReceiver, |
John McCall | 9e8bb00 | 2011-05-14 03:10:52 +0000 | [diff] [blame] | 2087 | const ObjCCommonTypesHelper &ObjCTypes) { |
Daniel Dunbar | c722b85 | 2008-08-30 03:02:31 +0000 | [diff] [blame] | 2088 | CallArgList ActualArgs; |
Fariborz Jahanian | 969bc68 | 2009-04-24 21:07:43 +0000 | [diff] [blame] | 2089 | if (!IsSuper) |
Benjamin Kramer | 76399eb | 2011-09-27 21:06:10 +0000 | [diff] [blame] | 2090 | Arg0 = CGF.Builder.CreateBitCast(Arg0, ObjCTypes.ObjectPtrTy); |
Eli Friedman | 43dca6a | 2011-05-02 17:57:46 +0000 | [diff] [blame] | 2091 | ActualArgs.add(RValue::get(Arg0), Arg0Ty); |
| 2092 | ActualArgs.add(RValue::get(Sel), CGF.getContext().getObjCSelType()); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2093 | ActualArgs.addFrom(CallArgs); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 2094 | |
John McCall | a729c62 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 2095 | // If we're calling a method, use the formal signature. |
| 2096 | MessageSendInfo MSI = getMessageSendInfo(Method, ResultType, ActualArgs); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 2097 | |
Anders Carlsson | 280e61f1 | 2010-06-21 20:59:55 +0000 | [diff] [blame] | 2098 | if (Method) |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 2099 | assert(CGM.getContext().getCanonicalType(Method->getReturnType()) == |
| 2100 | CGM.getContext().getCanonicalType(ResultType) && |
Anders Carlsson | 280e61f1 | 2010-06-21 20:59:55 +0000 | [diff] [blame] | 2101 | "Result type mismatch!"); |
| 2102 | |
John McCall | 1e3157b | 2015-09-10 22:27:50 +0000 | [diff] [blame] | 2103 | bool ReceiverCanBeNull = true; |
| 2104 | |
| 2105 | // Super dispatch assumes that self is non-null; even the messenger |
| 2106 | // doesn't have a null check internally. |
| 2107 | if (IsSuper) { |
| 2108 | ReceiverCanBeNull = false; |
| 2109 | |
| 2110 | // If this is a direct dispatch of a class method, check whether the class, |
| 2111 | // or anything in its hierarchy, was weak-linked. |
| 2112 | } else if (ClassReceiver && Method && Method->isClassMethod()) { |
| 2113 | ReceiverCanBeNull = isWeakLinkedClass(ClassReceiver); |
| 2114 | |
| 2115 | // If we're emitting a method, and self is const (meaning just ARC, for now), |
| 2116 | // and the receiver is a load of self, then self is a valid object. |
| 2117 | } else if (auto CurMethod = |
| 2118 | dyn_cast_or_null<ObjCMethodDecl>(CGF.CurCodeDecl)) { |
| 2119 | auto Self = CurMethod->getSelfDecl(); |
| 2120 | if (Self->getType().isConstQualified()) { |
| 2121 | if (auto LI = dyn_cast<llvm::LoadInst>(Arg0->stripPointerCasts())) { |
| 2122 | llvm::Value *SelfAddr = CGF.GetAddrOfLocalVar(Self).getPointer(); |
| 2123 | if (SelfAddr == LI->getPointerOperand()) { |
| 2124 | ReceiverCanBeNull = false; |
| 2125 | } |
| 2126 | } |
| 2127 | } |
| 2128 | } |
| 2129 | |
Kuba Mracek | bce5cea | 2017-06-30 16:28:15 +0000 | [diff] [blame] | 2130 | bool RequiresNullCheck = false; |
John McCall | 5880fb8 | 2011-05-14 21:12:11 +0000 | [diff] [blame] | 2131 | |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 2132 | llvm::Constant *Fn = nullptr; |
Tim Northover | e77cc39 | 2014-03-29 13:28:05 +0000 | [diff] [blame] | 2133 | if (CGM.ReturnSlotInterferesWithArgs(MSI.CallInfo)) { |
Kuba Mracek | bce5cea | 2017-06-30 16:28:15 +0000 | [diff] [blame] | 2134 | if (ReceiverCanBeNull) RequiresNullCheck = true; |
Fariborz Jahanian | 5d5ed2d | 2009-05-11 19:25:47 +0000 | [diff] [blame] | 2135 | Fn = (ObjCABI == 2) ? ObjCTypes.getSendStretFn2(IsSuper) |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 2136 | : ObjCTypes.getSendStretFn(IsSuper); |
Daniel Dunbar | 6f2e839 | 2010-07-14 23:39:36 +0000 | [diff] [blame] | 2137 | } else if (CGM.ReturnTypeUsesFPRet(ResultType)) { |
| 2138 | Fn = (ObjCABI == 2) ? ObjCTypes.getSendFpretFn2(IsSuper) |
| 2139 | : ObjCTypes.getSendFpretFn(IsSuper); |
Anders Carlsson | 2f1a6c3 | 2011-10-31 16:27:11 +0000 | [diff] [blame] | 2140 | } else if (CGM.ReturnTypeUsesFP2Ret(ResultType)) { |
| 2141 | Fn = (ObjCABI == 2) ? ObjCTypes.getSendFp2RetFn2(IsSuper) |
| 2142 | : ObjCTypes.getSendFp2retFn(IsSuper); |
Daniel Dunbar | 3c683f5b | 2008-10-17 03:24:53 +0000 | [diff] [blame] | 2143 | } else { |
Tim Northover | e77cc39 | 2014-03-29 13:28:05 +0000 | [diff] [blame] | 2144 | // arm64 uses objc_msgSend for stret methods and yet null receiver check |
| 2145 | // must be made for it. |
Ahmed Bougacha | a3df87b | 2015-10-02 22:41:59 +0000 | [diff] [blame] | 2146 | if (ReceiverCanBeNull && CGM.ReturnTypeUsesSRet(MSI.CallInfo)) |
Kuba Mracek | bce5cea | 2017-06-30 16:28:15 +0000 | [diff] [blame] | 2147 | RequiresNullCheck = true; |
Fariborz Jahanian | 5d5ed2d | 2009-05-11 19:25:47 +0000 | [diff] [blame] | 2148 | Fn = (ObjCABI == 2) ? ObjCTypes.getSendFn2(IsSuper) |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 2149 | : ObjCTypes.getSendFn(IsSuper); |
Daniel Dunbar | 3c683f5b | 2008-10-17 03:24:53 +0000 | [diff] [blame] | 2150 | } |
John McCall | 1e3157b | 2015-09-10 22:27:50 +0000 | [diff] [blame] | 2151 | |
Kuba Mracek | bce5cea | 2017-06-30 16:28:15 +0000 | [diff] [blame] | 2152 | // We don't need to emit a null check to zero out an indirect result if the |
| 2153 | // result is ignored. |
| 2154 | if (Return.isUnused()) |
| 2155 | RequiresNullCheck = false; |
| 2156 | |
John McCall | 1e3157b | 2015-09-10 22:27:50 +0000 | [diff] [blame] | 2157 | // Emit a null-check if there's a consumed argument other than the receiver. |
Kuba Mracek | bce5cea | 2017-06-30 16:28:15 +0000 | [diff] [blame] | 2158 | if (!RequiresNullCheck && CGM.getLangOpts().ObjCAutoRefCount && Method) { |
David Majnemer | 59f7792 | 2016-06-24 04:05:48 +0000 | [diff] [blame] | 2159 | for (const auto *ParamDecl : Method->parameters()) { |
Fariborz Jahanian | f2bda69 | 2012-01-30 21:40:37 +0000 | [diff] [blame] | 2160 | if (ParamDecl->hasAttr<NSConsumedAttr>()) { |
John McCall | 1e3157b | 2015-09-10 22:27:50 +0000 | [diff] [blame] | 2161 | RequiresNullCheck = true; |
Fariborz Jahanian | f2bda69 | 2012-01-30 21:40:37 +0000 | [diff] [blame] | 2162 | break; |
| 2163 | } |
| 2164 | } |
John McCall | 1e3157b | 2015-09-10 22:27:50 +0000 | [diff] [blame] | 2165 | } |
Kuba Mracek | bce5cea | 2017-06-30 16:28:15 +0000 | [diff] [blame] | 2166 | |
| 2167 | NullReturnState nullReturn; |
| 2168 | if (RequiresNullCheck) { |
| 2169 | nullReturn.init(CGF, Arg0); |
| 2170 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2171 | |
John McCall | 1e3157b | 2015-09-10 22:27:50 +0000 | [diff] [blame] | 2172 | llvm::Instruction *CallSite; |
John McCall | a729c62 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 2173 | Fn = llvm::ConstantExpr::getBitCast(Fn, MSI.MessengerType); |
John McCall | b92ab1a | 2016-10-26 23:46:34 +0000 | [diff] [blame] | 2174 | CGCallee Callee = CGCallee::forDirect(Fn); |
| 2175 | RValue rvalue = CGF.EmitCall(MSI.CallInfo, Callee, Return, ActualArgs, |
| 2176 | &CallSite); |
John McCall | 1e3157b | 2015-09-10 22:27:50 +0000 | [diff] [blame] | 2177 | |
| 2178 | // Mark the call as noreturn if the method is marked noreturn and the |
| 2179 | // receiver cannot be null. |
| 2180 | if (Method && Method->hasAttr<NoReturnAttr>() && !ReceiverCanBeNull) { |
| 2181 | llvm::CallSite(CallSite).setDoesNotReturn(); |
| 2182 | } |
| 2183 | |
Kuba Mracek | bce5cea | 2017-06-30 16:28:15 +0000 | [diff] [blame] | 2184 | return nullReturn.complete(CGF, Return, rvalue, ResultType, CallArgs, |
John McCall | 1e3157b | 2015-09-10 22:27:50 +0000 | [diff] [blame] | 2185 | RequiresNullCheck ? Method : nullptr); |
Daniel Dunbar | 303e2c2 | 2008-08-11 02:45:11 +0000 | [diff] [blame] | 2186 | } |
| 2187 | |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 2188 | static Qualifiers::GC GetGCAttrTypeForType(ASTContext &Ctx, QualType FQT, |
| 2189 | bool pointee = false) { |
| 2190 | // Note that GC qualification applies recursively to C pointer types |
| 2191 | // that aren't otherwise decorated. This is weird, but it's probably |
| 2192 | // an intentional workaround to the unreliable placement of GC qualifiers. |
Fariborz Jahanian | 9659f6b | 2010-08-04 23:55:24 +0000 | [diff] [blame] | 2193 | if (FQT.isObjCGCStrong()) |
| 2194 | return Qualifiers::Strong; |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 2195 | |
| 2196 | if (FQT.isObjCGCWeak()) |
Fariborz Jahanian | 9659f6b | 2010-08-04 23:55:24 +0000 | [diff] [blame] | 2197 | return Qualifiers::Weak; |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 2198 | |
| 2199 | if (auto ownership = FQT.getObjCLifetime()) { |
| 2200 | // Ownership does not apply recursively to C pointer types. |
| 2201 | if (pointee) return Qualifiers::GCNone; |
| 2202 | switch (ownership) { |
| 2203 | case Qualifiers::OCL_Weak: return Qualifiers::Weak; |
| 2204 | case Qualifiers::OCL_Strong: return Qualifiers::Strong; |
| 2205 | case Qualifiers::OCL_ExplicitNone: return Qualifiers::GCNone; |
| 2206 | case Qualifiers::OCL_Autoreleasing: llvm_unreachable("autoreleasing ivar?"); |
| 2207 | case Qualifiers::OCL_None: llvm_unreachable("known nonzero"); |
| 2208 | } |
| 2209 | llvm_unreachable("bad objc ownership"); |
| 2210 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2211 | |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 2212 | // Treat unqualified retainable pointers as strong. |
Fariborz Jahanian | 9659f6b | 2010-08-04 23:55:24 +0000 | [diff] [blame] | 2213 | if (FQT->isObjCObjectPointerType() || FQT->isBlockPointerType()) |
| 2214 | return Qualifiers::Strong; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2215 | |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 2216 | // Walk into C pointer types, but only in GC. |
| 2217 | if (Ctx.getLangOpts().getGC() != LangOptions::NonGC) { |
| 2218 | if (const PointerType *PT = FQT->getAs<PointerType>()) |
| 2219 | return GetGCAttrTypeForType(Ctx, PT->getPointeeType(), /*pointee*/ true); |
| 2220 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2221 | |
Fariborz Jahanian | 9659f6b | 2010-08-04 23:55:24 +0000 | [diff] [blame] | 2222 | return Qualifiers::GCNone; |
| 2223 | } |
| 2224 | |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 2225 | namespace { |
| 2226 | struct IvarInfo { |
| 2227 | CharUnits Offset; |
| 2228 | uint64_t SizeInWords; |
| 2229 | IvarInfo(CharUnits offset, uint64_t sizeInWords) |
| 2230 | : Offset(offset), SizeInWords(sizeInWords) {} |
| 2231 | |
| 2232 | // Allow sorting based on byte pos. |
| 2233 | bool operator<(const IvarInfo &other) const { |
| 2234 | return Offset < other.Offset; |
| 2235 | } |
| 2236 | }; |
| 2237 | |
| 2238 | /// A helper class for building GC layout strings. |
| 2239 | class IvarLayoutBuilder { |
| 2240 | CodeGenModule &CGM; |
| 2241 | |
| 2242 | /// The start of the layout. Offsets will be relative to this value, |
| 2243 | /// and entries less than this value will be silently discarded. |
| 2244 | CharUnits InstanceBegin; |
| 2245 | |
| 2246 | /// The end of the layout. Offsets will never exceed this value. |
| 2247 | CharUnits InstanceEnd; |
| 2248 | |
| 2249 | /// Whether we're generating the strong layout or the weak layout. |
| 2250 | bool ForStrongLayout; |
| 2251 | |
| 2252 | /// Whether the offsets in IvarsInfo might be out-of-order. |
| 2253 | bool IsDisordered = false; |
| 2254 | |
| 2255 | llvm::SmallVector<IvarInfo, 8> IvarsInfo; |
Eugene Zelenko | 0a4f3f4 | 2016-02-10 19:11:58 +0000 | [diff] [blame] | 2256 | |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 2257 | public: |
| 2258 | IvarLayoutBuilder(CodeGenModule &CGM, CharUnits instanceBegin, |
| 2259 | CharUnits instanceEnd, bool forStrongLayout) |
| 2260 | : CGM(CGM), InstanceBegin(instanceBegin), InstanceEnd(instanceEnd), |
| 2261 | ForStrongLayout(forStrongLayout) { |
| 2262 | } |
| 2263 | |
| 2264 | void visitRecord(const RecordType *RT, CharUnits offset); |
| 2265 | |
| 2266 | template <class Iterator, class GetOffsetFn> |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2267 | void visitAggregate(Iterator begin, Iterator end, |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 2268 | CharUnits aggrOffset, |
| 2269 | const GetOffsetFn &getOffset); |
| 2270 | |
| 2271 | void visitField(const FieldDecl *field, CharUnits offset); |
| 2272 | |
| 2273 | /// Add the layout of a block implementation. |
| 2274 | void visitBlock(const CGBlockInfo &blockInfo); |
| 2275 | |
| 2276 | /// Is there any information for an interesting bitmap? |
| 2277 | bool hasBitmapData() const { return !IvarsInfo.empty(); } |
| 2278 | |
| 2279 | llvm::Constant *buildBitmap(CGObjCCommonMac &CGObjC, |
| 2280 | llvm::SmallVectorImpl<unsigned char> &buffer); |
| 2281 | |
| 2282 | static void dump(ArrayRef<unsigned char> buffer) { |
| 2283 | const unsigned char *s = buffer.data(); |
| 2284 | for (unsigned i = 0, e = buffer.size(); i < e; i++) |
| 2285 | if (!(s[i] & 0xf0)) |
| 2286 | printf("0x0%x%s", s[i], s[i] != 0 ? ", " : ""); |
| 2287 | else |
| 2288 | printf("0x%x%s", s[i], s[i] != 0 ? ", " : ""); |
| 2289 | printf("\n"); |
| 2290 | } |
| 2291 | }; |
Eugene Zelenko | 0a4f3f4 | 2016-02-10 19:11:58 +0000 | [diff] [blame] | 2292 | } // end anonymous namespace |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 2293 | |
John McCall | 351762c | 2011-02-07 10:33:21 +0000 | [diff] [blame] | 2294 | llvm::Constant *CGObjCCommonMac::BuildGCBlockLayout(CodeGenModule &CGM, |
| 2295 | const CGBlockInfo &blockInfo) { |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2296 | |
Chris Lattner | ece0409 | 2012-02-07 00:39:47 +0000 | [diff] [blame] | 2297 | llvm::Constant *nullPtr = llvm::Constant::getNullValue(CGM.Int8PtrTy); |
John McCall | 460ce58 | 2015-10-22 18:38:17 +0000 | [diff] [blame] | 2298 | if (CGM.getLangOpts().getGC() == LangOptions::NonGC) |
John McCall | 351762c | 2011-02-07 10:33:21 +0000 | [diff] [blame] | 2299 | return nullPtr; |
| 2300 | |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 2301 | IvarLayoutBuilder builder(CGM, CharUnits::Zero(), blockInfo.BlockSize, |
| 2302 | /*for strong layout*/ true); |
| 2303 | |
| 2304 | builder.visitBlock(blockInfo); |
| 2305 | |
| 2306 | if (!builder.hasBitmapData()) |
| 2307 | return nullPtr; |
| 2308 | |
| 2309 | llvm::SmallVector<unsigned char, 32> buffer; |
| 2310 | llvm::Constant *C = builder.buildBitmap(*this, buffer); |
John McCall | f5ea072 | 2015-10-29 23:36:14 +0000 | [diff] [blame] | 2311 | if (CGM.getLangOpts().ObjCGCBitmapPrint && !buffer.empty()) { |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 2312 | printf("\n block variable layout for block: "); |
| 2313 | builder.dump(buffer); |
| 2314 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2315 | |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 2316 | return C; |
| 2317 | } |
| 2318 | |
| 2319 | void IvarLayoutBuilder::visitBlock(const CGBlockInfo &blockInfo) { |
Fariborz Jahanian | cfddabf | 2010-09-09 00:21:45 +0000 | [diff] [blame] | 2320 | // __isa is the first field in block descriptor and must assume by runtime's |
| 2321 | // convention that it is GC'able. |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 2322 | IvarsInfo.push_back(IvarInfo(CharUnits::Zero(), 1)); |
John McCall | 351762c | 2011-02-07 10:33:21 +0000 | [diff] [blame] | 2323 | |
| 2324 | const BlockDecl *blockDecl = blockInfo.getBlockDecl(); |
| 2325 | |
John McCall | 351762c | 2011-02-07 10:33:21 +0000 | [diff] [blame] | 2326 | // Ignore the optional 'this' capture: C++ objects are not assumed |
| 2327 | // to be GC'ed. |
| 2328 | |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 2329 | CharUnits lastFieldOffset; |
| 2330 | |
John McCall | 351762c | 2011-02-07 10:33:21 +0000 | [diff] [blame] | 2331 | // Walk the captured variables. |
Aaron Ballman | 9371dd2 | 2014-03-14 18:34:04 +0000 | [diff] [blame] | 2332 | for (const auto &CI : blockDecl->captures()) { |
| 2333 | const VarDecl *variable = CI.getVariable(); |
John McCall | 351762c | 2011-02-07 10:33:21 +0000 | [diff] [blame] | 2334 | QualType type = variable->getType(); |
| 2335 | |
| 2336 | const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); |
| 2337 | |
| 2338 | // Ignore constant captures. |
| 2339 | if (capture.isConstant()) continue; |
| 2340 | |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 2341 | CharUnits fieldOffset = capture.getOffset(); |
| 2342 | |
| 2343 | // Block fields are not necessarily ordered; if we detect that we're |
| 2344 | // adding them out-of-order, make sure we sort later. |
| 2345 | if (fieldOffset < lastFieldOffset) |
| 2346 | IsDisordered = true; |
| 2347 | lastFieldOffset = fieldOffset; |
John McCall | 351762c | 2011-02-07 10:33:21 +0000 | [diff] [blame] | 2348 | |
| 2349 | // __block variables are passed by their descriptor address. |
Aaron Ballman | 9371dd2 | 2014-03-14 18:34:04 +0000 | [diff] [blame] | 2350 | if (CI.isByRef()) { |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 2351 | IvarsInfo.push_back(IvarInfo(fieldOffset, /*size in words*/ 1)); |
Fariborz Jahanian | 933c672 | 2010-09-11 01:27:29 +0000 | [diff] [blame] | 2352 | continue; |
John McCall | 351762c | 2011-02-07 10:33:21 +0000 | [diff] [blame] | 2353 | } |
| 2354 | |
| 2355 | assert(!type->isArrayType() && "array variable should not be caught"); |
| 2356 | if (const RecordType *record = type->getAs<RecordType>()) { |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 2357 | visitRecord(record, fieldOffset); |
Fariborz Jahanian | 903aba3 | 2010-08-05 21:00:25 +0000 | [diff] [blame] | 2358 | continue; |
| 2359 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2360 | |
John McCall | 351762c | 2011-02-07 10:33:21 +0000 | [diff] [blame] | 2361 | Qualifiers::GC GCAttr = GetGCAttrTypeForType(CGM.getContext(), type); |
John McCall | 351762c | 2011-02-07 10:33:21 +0000 | [diff] [blame] | 2362 | |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 2363 | if (GCAttr == Qualifiers::Strong) { |
| 2364 | assert(CGM.getContext().getTypeSize(type) |
| 2365 | == CGM.getTarget().getPointerWidth(0)); |
| 2366 | IvarsInfo.push_back(IvarInfo(fieldOffset, /*size in words*/ 1)); |
| 2367 | } |
Fariborz Jahanian | 9659f6b | 2010-08-04 23:55:24 +0000 | [diff] [blame] | 2368 | } |
Fariborz Jahanian | c05349e | 2010-08-04 16:57:49 +0000 | [diff] [blame] | 2369 | } |
| 2370 | |
Fariborz Jahanian | 2c96d30 | 2012-11-04 18:19:40 +0000 | [diff] [blame] | 2371 | /// getBlockCaptureLifetime - This routine returns life time of the captured |
| 2372 | /// block variable for the purpose of block layout meta-data generation. FQT is |
| 2373 | /// the type of the variable captured in the block. |
Fariborz Jahanian | a9d4464 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 2374 | Qualifiers::ObjCLifetime CGObjCCommonMac::getBlockCaptureLifetime(QualType FQT, |
| 2375 | bool ByrefLayout) { |
John McCall | 460ce58 | 2015-10-22 18:38:17 +0000 | [diff] [blame] | 2376 | // If it has an ownership qualifier, we're done. |
| 2377 | if (auto lifetime = FQT.getObjCLifetime()) |
| 2378 | return lifetime; |
| 2379 | |
| 2380 | // If it doesn't, and this is ARC, it has no ownership. |
Fariborz Jahanian | 2dd7819 | 2012-11-02 22:51:18 +0000 | [diff] [blame] | 2381 | if (CGM.getLangOpts().ObjCAutoRefCount) |
John McCall | 460ce58 | 2015-10-22 18:38:17 +0000 | [diff] [blame] | 2382 | return Qualifiers::OCL_None; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2383 | |
John McCall | 460ce58 | 2015-10-22 18:38:17 +0000 | [diff] [blame] | 2384 | // In MRC, retainable pointers are owned by non-__block variables. |
Fariborz Jahanian | 2dd7819 | 2012-11-02 22:51:18 +0000 | [diff] [blame] | 2385 | if (FQT->isObjCObjectPointerType() || FQT->isBlockPointerType()) |
Fariborz Jahanian | a9d4464 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 2386 | return ByrefLayout ? Qualifiers::OCL_ExplicitNone : Qualifiers::OCL_Strong; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2387 | |
Fariborz Jahanian | 2dd7819 | 2012-11-02 22:51:18 +0000 | [diff] [blame] | 2388 | return Qualifiers::OCL_None; |
| 2389 | } |
| 2390 | |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2391 | void CGObjCCommonMac::UpdateRunSkipBlockVars(bool IsByref, |
| 2392 | Qualifiers::ObjCLifetime LifeTime, |
Fariborz Jahanian | 7778d61 | 2012-11-07 20:00:32 +0000 | [diff] [blame] | 2393 | CharUnits FieldOffset, |
| 2394 | CharUnits FieldSize) { |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2395 | // __block variables are passed by their descriptor address. |
| 2396 | if (IsByref) |
| 2397 | RunSkipBlockVars.push_back(RUN_SKIP(BLOCK_LAYOUT_BYREF, FieldOffset, |
Fariborz Jahanian | 7778d61 | 2012-11-07 20:00:32 +0000 | [diff] [blame] | 2398 | FieldSize)); |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2399 | else if (LifeTime == Qualifiers::OCL_Strong) |
| 2400 | RunSkipBlockVars.push_back(RUN_SKIP(BLOCK_LAYOUT_STRONG, FieldOffset, |
Fariborz Jahanian | 7778d61 | 2012-11-07 20:00:32 +0000 | [diff] [blame] | 2401 | FieldSize)); |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2402 | else if (LifeTime == Qualifiers::OCL_Weak) |
| 2403 | RunSkipBlockVars.push_back(RUN_SKIP(BLOCK_LAYOUT_WEAK, FieldOffset, |
Fariborz Jahanian | 7778d61 | 2012-11-07 20:00:32 +0000 | [diff] [blame] | 2404 | FieldSize)); |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2405 | else if (LifeTime == Qualifiers::OCL_ExplicitNone) |
| 2406 | RunSkipBlockVars.push_back(RUN_SKIP(BLOCK_LAYOUT_UNRETAINED, FieldOffset, |
Fariborz Jahanian | 7778d61 | 2012-11-07 20:00:32 +0000 | [diff] [blame] | 2407 | FieldSize)); |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2408 | else |
| 2409 | RunSkipBlockVars.push_back(RUN_SKIP(BLOCK_LAYOUT_NON_OBJECT_BYTES, |
| 2410 | FieldOffset, |
Fariborz Jahanian | 7778d61 | 2012-11-07 20:00:32 +0000 | [diff] [blame] | 2411 | FieldSize)); |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2412 | } |
| 2413 | |
| 2414 | void CGObjCCommonMac::BuildRCRecordLayout(const llvm::StructLayout *RecLayout, |
| 2415 | const RecordDecl *RD, |
| 2416 | ArrayRef<const FieldDecl*> RecFields, |
Fariborz Jahanian | a9d4464 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 2417 | CharUnits BytePos, bool &HasUnion, |
| 2418 | bool ByrefLayout) { |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2419 | bool IsUnion = (RD && RD->isUnion()); |
Fariborz Jahanian | 7778d61 | 2012-11-07 20:00:32 +0000 | [diff] [blame] | 2420 | CharUnits MaxUnionSize = CharUnits::Zero(); |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 2421 | const FieldDecl *MaxField = nullptr; |
| 2422 | const FieldDecl *LastFieldBitfieldOrUnnamed = nullptr; |
Fariborz Jahanian | 7778d61 | 2012-11-07 20:00:32 +0000 | [diff] [blame] | 2423 | CharUnits MaxFieldOffset = CharUnits::Zero(); |
| 2424 | CharUnits LastBitfieldOrUnnamedOffset = CharUnits::Zero(); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2425 | |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2426 | if (RecFields.empty()) |
| 2427 | return; |
John McCall | c8e0170 | 2013-04-16 22:48:15 +0000 | [diff] [blame] | 2428 | unsigned ByteSizeInBits = CGM.getTarget().getCharWidth(); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2429 | |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2430 | for (unsigned i = 0, e = RecFields.size(); i != e; ++i) { |
| 2431 | const FieldDecl *Field = RecFields[i]; |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2432 | // Note that 'i' here is actually the field index inside RD of Field, |
| 2433 | // although this dependency is hidden. |
| 2434 | const ASTRecordLayout &RL = CGM.getContext().getASTRecordLayout(RD); |
Fariborz Jahanian | 7778d61 | 2012-11-07 20:00:32 +0000 | [diff] [blame] | 2435 | CharUnits FieldOffset = |
| 2436 | CGM.getContext().toCharUnitsFromBits(RL.getFieldOffset(i)); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2437 | |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2438 | // Skip over unnamed or bitfields |
| 2439 | if (!Field->getIdentifier() || Field->isBitField()) { |
| 2440 | LastFieldBitfieldOrUnnamed = Field; |
| 2441 | LastBitfieldOrUnnamedOffset = FieldOffset; |
| 2442 | continue; |
| 2443 | } |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 2444 | |
| 2445 | LastFieldBitfieldOrUnnamed = nullptr; |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2446 | QualType FQT = Field->getType(); |
| 2447 | if (FQT->isRecordType() || FQT->isUnionType()) { |
| 2448 | if (FQT->isUnionType()) |
| 2449 | HasUnion = true; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2450 | |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2451 | BuildRCBlockVarRecordLayout(FQT->getAs<RecordType>(), |
| 2452 | BytePos + FieldOffset, HasUnion); |
| 2453 | continue; |
| 2454 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2455 | |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2456 | if (const ArrayType *Array = CGM.getContext().getAsArrayType(FQT)) { |
| 2457 | const ConstantArrayType *CArray = |
| 2458 | dyn_cast_or_null<ConstantArrayType>(Array); |
| 2459 | uint64_t ElCount = CArray->getSize().getZExtValue(); |
| 2460 | assert(CArray && "only array with known element size is supported"); |
| 2461 | FQT = CArray->getElementType(); |
| 2462 | while (const ArrayType *Array = CGM.getContext().getAsArrayType(FQT)) { |
| 2463 | const ConstantArrayType *CArray = |
| 2464 | dyn_cast_or_null<ConstantArrayType>(Array); |
| 2465 | ElCount *= CArray->getSize().getZExtValue(); |
| 2466 | FQT = CArray->getElementType(); |
| 2467 | } |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2468 | if (FQT->isRecordType() && ElCount) { |
| 2469 | int OldIndex = RunSkipBlockVars.size() - 1; |
| 2470 | const RecordType *RT = FQT->getAs<RecordType>(); |
| 2471 | BuildRCBlockVarRecordLayout(RT, BytePos + FieldOffset, |
| 2472 | HasUnion); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2473 | |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2474 | // Replicate layout information for each array element. Note that |
| 2475 | // one element is already done. |
| 2476 | uint64_t ElIx = 1; |
| 2477 | for (int FirstIndex = RunSkipBlockVars.size() - 1 ;ElIx < ElCount; ElIx++) { |
Fariborz Jahanian | 7778d61 | 2012-11-07 20:00:32 +0000 | [diff] [blame] | 2478 | CharUnits Size = CGM.getContext().getTypeSizeInChars(RT); |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2479 | for (int i = OldIndex+1; i <= FirstIndex; ++i) |
| 2480 | RunSkipBlockVars.push_back( |
| 2481 | RUN_SKIP(RunSkipBlockVars[i].opcode, |
| 2482 | RunSkipBlockVars[i].block_var_bytepos + Size*ElIx, |
| 2483 | RunSkipBlockVars[i].block_var_size)); |
| 2484 | } |
| 2485 | continue; |
| 2486 | } |
| 2487 | } |
Fariborz Jahanian | 7778d61 | 2012-11-07 20:00:32 +0000 | [diff] [blame] | 2488 | CharUnits FieldSize = CGM.getContext().getTypeSizeInChars(Field->getType()); |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2489 | if (IsUnion) { |
Fariborz Jahanian | 7778d61 | 2012-11-07 20:00:32 +0000 | [diff] [blame] | 2490 | CharUnits UnionIvarSize = FieldSize; |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2491 | if (UnionIvarSize > MaxUnionSize) { |
| 2492 | MaxUnionSize = UnionIvarSize; |
| 2493 | MaxField = Field; |
| 2494 | MaxFieldOffset = FieldOffset; |
| 2495 | } |
| 2496 | } else { |
| 2497 | UpdateRunSkipBlockVars(false, |
Fariborz Jahanian | a9d4464 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 2498 | getBlockCaptureLifetime(FQT, ByrefLayout), |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2499 | BytePos + FieldOffset, |
| 2500 | FieldSize); |
| 2501 | } |
| 2502 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2503 | |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2504 | if (LastFieldBitfieldOrUnnamed) { |
| 2505 | if (LastFieldBitfieldOrUnnamed->isBitField()) { |
| 2506 | // Last field was a bitfield. Must update the info. |
| 2507 | uint64_t BitFieldSize |
| 2508 | = LastFieldBitfieldOrUnnamed->getBitWidthValue(CGM.getContext()); |
Fariborz Jahanian | 7778d61 | 2012-11-07 20:00:32 +0000 | [diff] [blame] | 2509 | unsigned UnsSize = (BitFieldSize / ByteSizeInBits) + |
Eli Friedman | 8cbca20 | 2012-11-06 22:15:52 +0000 | [diff] [blame] | 2510 | ((BitFieldSize % ByteSizeInBits) != 0); |
Fariborz Jahanian | 7778d61 | 2012-11-07 20:00:32 +0000 | [diff] [blame] | 2511 | CharUnits Size = CharUnits::fromQuantity(UnsSize); |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2512 | Size += LastBitfieldOrUnnamedOffset; |
| 2513 | UpdateRunSkipBlockVars(false, |
Fariborz Jahanian | a9d4464 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 2514 | getBlockCaptureLifetime(LastFieldBitfieldOrUnnamed->getType(), |
| 2515 | ByrefLayout), |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2516 | BytePos + LastBitfieldOrUnnamedOffset, |
Fariborz Jahanian | 7778d61 | 2012-11-07 20:00:32 +0000 | [diff] [blame] | 2517 | Size); |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2518 | } else { |
| 2519 | assert(!LastFieldBitfieldOrUnnamed->getIdentifier() &&"Expected unnamed"); |
| 2520 | // Last field was unnamed. Must update skip info. |
Fariborz Jahanian | 7778d61 | 2012-11-07 20:00:32 +0000 | [diff] [blame] | 2521 | CharUnits FieldSize |
| 2522 | = CGM.getContext().getTypeSizeInChars(LastFieldBitfieldOrUnnamed->getType()); |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2523 | UpdateRunSkipBlockVars(false, |
Fariborz Jahanian | a9d4464 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 2524 | getBlockCaptureLifetime(LastFieldBitfieldOrUnnamed->getType(), |
| 2525 | ByrefLayout), |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2526 | BytePos + LastBitfieldOrUnnamedOffset, |
| 2527 | FieldSize); |
| 2528 | } |
| 2529 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2530 | |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2531 | if (MaxField) |
| 2532 | UpdateRunSkipBlockVars(false, |
Fariborz Jahanian | a9d4464 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 2533 | getBlockCaptureLifetime(MaxField->getType(), ByrefLayout), |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2534 | BytePos + MaxFieldOffset, |
| 2535 | MaxUnionSize); |
| 2536 | } |
| 2537 | |
| 2538 | void CGObjCCommonMac::BuildRCBlockVarRecordLayout(const RecordType *RT, |
Fariborz Jahanian | 7778d61 | 2012-11-07 20:00:32 +0000 | [diff] [blame] | 2539 | CharUnits BytePos, |
Fariborz Jahanian | a9d4464 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 2540 | bool &HasUnion, |
| 2541 | bool ByrefLayout) { |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2542 | const RecordDecl *RD = RT->getDecl(); |
Aaron Ballman | 62e47c4 | 2014-03-10 13:43:55 +0000 | [diff] [blame] | 2543 | SmallVector<const FieldDecl*, 16> Fields(RD->fields()); |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2544 | llvm::Type *Ty = CGM.getTypes().ConvertType(QualType(RT, 0)); |
| 2545 | const llvm::StructLayout *RecLayout = |
| 2546 | CGM.getDataLayout().getStructLayout(cast<llvm::StructType>(Ty)); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2547 | |
Fariborz Jahanian | a9d4464 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 2548 | BuildRCRecordLayout(RecLayout, RD, Fields, BytePos, HasUnion, ByrefLayout); |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2549 | } |
| 2550 | |
Fariborz Jahanian | 23290b0 | 2012-11-01 18:32:55 +0000 | [diff] [blame] | 2551 | /// InlineLayoutInstruction - This routine produce an inline instruction for the |
| 2552 | /// block variable layout if it can. If not, it returns 0. Rules are as follow: |
| 2553 | /// If ((uintptr_t) layout) < (1 << 12), the layout is inline. In the 64bit world, |
| 2554 | /// an inline layout of value 0x0000000000000xyz is interpreted as follows: |
| 2555 | /// x captured object pointers of BLOCK_LAYOUT_STRONG. Followed by |
| 2556 | /// y captured object of BLOCK_LAYOUT_BYREF. Followed by |
| 2557 | /// z captured object of BLOCK_LAYOUT_WEAK. If any of the above is missing, zero |
| 2558 | /// replaces it. For example, 0x00000x00 means x BLOCK_LAYOUT_STRONG and no |
| 2559 | /// BLOCK_LAYOUT_BYREF and no BLOCK_LAYOUT_WEAK objects are captured. |
| 2560 | uint64_t CGObjCCommonMac::InlineLayoutInstruction( |
| 2561 | SmallVectorImpl<unsigned char> &Layout) { |
| 2562 | uint64_t Result = 0; |
| 2563 | if (Layout.size() <= 3) { |
| 2564 | unsigned size = Layout.size(); |
| 2565 | unsigned strong_word_count = 0, byref_word_count=0, weak_word_count=0; |
| 2566 | unsigned char inst; |
| 2567 | enum BLOCK_LAYOUT_OPCODE opcode ; |
| 2568 | switch (size) { |
| 2569 | case 3: |
| 2570 | inst = Layout[0]; |
| 2571 | opcode = (enum BLOCK_LAYOUT_OPCODE) (inst >> 4); |
| 2572 | if (opcode == BLOCK_LAYOUT_STRONG) |
| 2573 | strong_word_count = (inst & 0xF)+1; |
| 2574 | else |
| 2575 | return 0; |
| 2576 | inst = Layout[1]; |
| 2577 | opcode = (enum BLOCK_LAYOUT_OPCODE) (inst >> 4); |
| 2578 | if (opcode == BLOCK_LAYOUT_BYREF) |
| 2579 | byref_word_count = (inst & 0xF)+1; |
| 2580 | else |
| 2581 | return 0; |
| 2582 | inst = Layout[2]; |
| 2583 | opcode = (enum BLOCK_LAYOUT_OPCODE) (inst >> 4); |
| 2584 | if (opcode == BLOCK_LAYOUT_WEAK) |
| 2585 | weak_word_count = (inst & 0xF)+1; |
| 2586 | else |
| 2587 | return 0; |
| 2588 | break; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2589 | |
Fariborz Jahanian | 23290b0 | 2012-11-01 18:32:55 +0000 | [diff] [blame] | 2590 | case 2: |
| 2591 | inst = Layout[0]; |
| 2592 | opcode = (enum BLOCK_LAYOUT_OPCODE) (inst >> 4); |
| 2593 | if (opcode == BLOCK_LAYOUT_STRONG) { |
| 2594 | strong_word_count = (inst & 0xF)+1; |
| 2595 | inst = Layout[1]; |
| 2596 | opcode = (enum BLOCK_LAYOUT_OPCODE) (inst >> 4); |
| 2597 | if (opcode == BLOCK_LAYOUT_BYREF) |
| 2598 | byref_word_count = (inst & 0xF)+1; |
| 2599 | else if (opcode == BLOCK_LAYOUT_WEAK) |
| 2600 | weak_word_count = (inst & 0xF)+1; |
| 2601 | else |
| 2602 | return 0; |
| 2603 | } |
| 2604 | else if (opcode == BLOCK_LAYOUT_BYREF) { |
| 2605 | byref_word_count = (inst & 0xF)+1; |
| 2606 | inst = Layout[1]; |
| 2607 | opcode = (enum BLOCK_LAYOUT_OPCODE) (inst >> 4); |
| 2608 | if (opcode == BLOCK_LAYOUT_WEAK) |
| 2609 | weak_word_count = (inst & 0xF)+1; |
| 2610 | else |
| 2611 | return 0; |
| 2612 | } |
| 2613 | else |
| 2614 | return 0; |
| 2615 | break; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2616 | |
Fariborz Jahanian | 23290b0 | 2012-11-01 18:32:55 +0000 | [diff] [blame] | 2617 | case 1: |
| 2618 | inst = Layout[0]; |
| 2619 | opcode = (enum BLOCK_LAYOUT_OPCODE) (inst >> 4); |
| 2620 | if (opcode == BLOCK_LAYOUT_STRONG) |
| 2621 | strong_word_count = (inst & 0xF)+1; |
| 2622 | else if (opcode == BLOCK_LAYOUT_BYREF) |
| 2623 | byref_word_count = (inst & 0xF)+1; |
| 2624 | else if (opcode == BLOCK_LAYOUT_WEAK) |
| 2625 | weak_word_count = (inst & 0xF)+1; |
| 2626 | else |
| 2627 | return 0; |
| 2628 | break; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2629 | |
Fariborz Jahanian | 23290b0 | 2012-11-01 18:32:55 +0000 | [diff] [blame] | 2630 | default: |
| 2631 | return 0; |
| 2632 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2633 | |
Fariborz Jahanian | 23290b0 | 2012-11-01 18:32:55 +0000 | [diff] [blame] | 2634 | // Cannot inline when any of the word counts is 15. Because this is one less |
| 2635 | // than the actual work count (so 15 means 16 actual word counts), |
| 2636 | // and we can only display 0 thru 15 word counts. |
| 2637 | if (strong_word_count == 16 || byref_word_count == 16 || weak_word_count == 16) |
| 2638 | return 0; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2639 | |
Fariborz Jahanian | 23290b0 | 2012-11-01 18:32:55 +0000 | [diff] [blame] | 2640 | unsigned count = |
| 2641 | (strong_word_count != 0) + (byref_word_count != 0) + (weak_word_count != 0); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2642 | |
Fariborz Jahanian | 23290b0 | 2012-11-01 18:32:55 +0000 | [diff] [blame] | 2643 | if (size == count) { |
| 2644 | if (strong_word_count) |
| 2645 | Result = strong_word_count; |
| 2646 | Result <<= 4; |
| 2647 | if (byref_word_count) |
| 2648 | Result += byref_word_count; |
| 2649 | Result <<= 4; |
| 2650 | if (weak_word_count) |
| 2651 | Result += weak_word_count; |
| 2652 | } |
| 2653 | } |
| 2654 | return Result; |
| 2655 | } |
| 2656 | |
Fariborz Jahanian | a9d4464 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 2657 | llvm::Constant *CGObjCCommonMac::getBitmapBlockLayout(bool ComputeByrefLayout) { |
| 2658 | llvm::Constant *nullPtr = llvm::Constant::getNullValue(CGM.Int8PtrTy); |
| 2659 | if (RunSkipBlockVars.empty()) |
| 2660 | return nullPtr; |
John McCall | c8e0170 | 2013-04-16 22:48:15 +0000 | [diff] [blame] | 2661 | unsigned WordSizeInBits = CGM.getTarget().getPointerWidth(0); |
| 2662 | unsigned ByteSizeInBits = CGM.getTarget().getCharWidth(); |
Fariborz Jahanian | a9d4464 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 2663 | unsigned WordSizeInBytes = WordSizeInBits/ByteSizeInBits; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2664 | |
Fariborz Jahanian | a9d4464 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 2665 | // Sort on byte position; captures might not be allocated in order, |
| 2666 | // and unions can do funny things. |
| 2667 | llvm::array_pod_sort(RunSkipBlockVars.begin(), RunSkipBlockVars.end()); |
| 2668 | SmallVector<unsigned char, 16> Layout; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2669 | |
Fariborz Jahanian | a9d4464 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 2670 | unsigned size = RunSkipBlockVars.size(); |
| 2671 | for (unsigned i = 0; i < size; i++) { |
| 2672 | enum BLOCK_LAYOUT_OPCODE opcode = RunSkipBlockVars[i].opcode; |
| 2673 | CharUnits start_byte_pos = RunSkipBlockVars[i].block_var_bytepos; |
| 2674 | CharUnits end_byte_pos = start_byte_pos; |
| 2675 | unsigned j = i+1; |
| 2676 | while (j < size) { |
| 2677 | if (opcode == RunSkipBlockVars[j].opcode) { |
| 2678 | end_byte_pos = RunSkipBlockVars[j++].block_var_bytepos; |
| 2679 | i++; |
| 2680 | } |
| 2681 | else |
| 2682 | break; |
| 2683 | } |
| 2684 | CharUnits size_in_bytes = |
| 2685 | end_byte_pos - start_byte_pos + RunSkipBlockVars[j-1].block_var_size; |
| 2686 | if (j < size) { |
| 2687 | CharUnits gap = |
| 2688 | RunSkipBlockVars[j].block_var_bytepos - |
| 2689 | RunSkipBlockVars[j-1].block_var_bytepos - RunSkipBlockVars[j-1].block_var_size; |
| 2690 | size_in_bytes += gap; |
| 2691 | } |
| 2692 | CharUnits residue_in_bytes = CharUnits::Zero(); |
| 2693 | if (opcode == BLOCK_LAYOUT_NON_OBJECT_BYTES) { |
| 2694 | residue_in_bytes = size_in_bytes % WordSizeInBytes; |
| 2695 | size_in_bytes -= residue_in_bytes; |
| 2696 | opcode = BLOCK_LAYOUT_NON_OBJECT_WORDS; |
| 2697 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2698 | |
Fariborz Jahanian | a9d4464 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 2699 | unsigned size_in_words = size_in_bytes.getQuantity() / WordSizeInBytes; |
| 2700 | while (size_in_words >= 16) { |
| 2701 | // Note that value in imm. is one less that the actual |
| 2702 | // value. So, 0xf means 16 words follow! |
| 2703 | unsigned char inst = (opcode << 4) | 0xf; |
| 2704 | Layout.push_back(inst); |
| 2705 | size_in_words -= 16; |
| 2706 | } |
| 2707 | if (size_in_words > 0) { |
| 2708 | // Note that value in imm. is one less that the actual |
| 2709 | // value. So, we subtract 1 away! |
| 2710 | unsigned char inst = (opcode << 4) | (size_in_words-1); |
| 2711 | Layout.push_back(inst); |
| 2712 | } |
| 2713 | if (residue_in_bytes > CharUnits::Zero()) { |
| 2714 | unsigned char inst = |
| 2715 | (BLOCK_LAYOUT_NON_OBJECT_BYTES << 4) | (residue_in_bytes.getQuantity()-1); |
| 2716 | Layout.push_back(inst); |
| 2717 | } |
| 2718 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2719 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 2720 | while (!Layout.empty()) { |
| 2721 | unsigned char inst = Layout.back(); |
Fariborz Jahanian | a9d4464 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 2722 | enum BLOCK_LAYOUT_OPCODE opcode = (enum BLOCK_LAYOUT_OPCODE) (inst >> 4); |
| 2723 | if (opcode == BLOCK_LAYOUT_NON_OBJECT_BYTES || opcode == BLOCK_LAYOUT_NON_OBJECT_WORDS) |
| 2724 | Layout.pop_back(); |
| 2725 | else |
| 2726 | break; |
| 2727 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2728 | |
Fariborz Jahanian | a9d4464 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 2729 | uint64_t Result = InlineLayoutInstruction(Layout); |
| 2730 | if (Result != 0) { |
| 2731 | // Block variable layout instruction has been inlined. |
| 2732 | if (CGM.getLangOpts().ObjCGCBitmapPrint) { |
| 2733 | if (ComputeByrefLayout) |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 2734 | printf("\n Inline BYREF variable layout: "); |
Fariborz Jahanian | a9d4464 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 2735 | else |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 2736 | printf("\n Inline block variable layout: "); |
| 2737 | printf("0x0%" PRIx64 "", Result); |
| 2738 | if (auto numStrong = (Result & 0xF00) >> 8) |
| 2739 | printf(", BL_STRONG:%d", (int) numStrong); |
| 2740 | if (auto numByref = (Result & 0x0F0) >> 4) |
| 2741 | printf(", BL_BYREF:%d", (int) numByref); |
| 2742 | if (auto numWeak = (Result & 0x00F) >> 0) |
| 2743 | printf(", BL_WEAK:%d", (int) numWeak); |
| 2744 | printf(", BL_OPERATOR:0\n"); |
Fariborz Jahanian | a9d4464 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 2745 | } |
Vedant Kumar | 3ed0df0 | 2015-12-21 19:43:25 +0000 | [diff] [blame] | 2746 | return llvm::ConstantInt::get(CGM.IntPtrTy, Result); |
Fariborz Jahanian | a9d4464 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 2747 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2748 | |
Fariborz Jahanian | a9d4464 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 2749 | unsigned char inst = (BLOCK_LAYOUT_OPERATOR << 4) | 0; |
| 2750 | Layout.push_back(inst); |
| 2751 | std::string BitMap; |
| 2752 | for (unsigned i = 0, e = Layout.size(); i != e; i++) |
| 2753 | BitMap += Layout[i]; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2754 | |
Fariborz Jahanian | a9d4464 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 2755 | if (CGM.getLangOpts().ObjCGCBitmapPrint) { |
| 2756 | if (ComputeByrefLayout) |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 2757 | printf("\n Byref variable layout: "); |
Fariborz Jahanian | a9d4464 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 2758 | else |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 2759 | printf("\n Block variable layout: "); |
Fariborz Jahanian | a9d4464 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 2760 | for (unsigned i = 0, e = BitMap.size(); i != e; i++) { |
| 2761 | unsigned char inst = BitMap[i]; |
| 2762 | enum BLOCK_LAYOUT_OPCODE opcode = (enum BLOCK_LAYOUT_OPCODE) (inst >> 4); |
| 2763 | unsigned delta = 1; |
| 2764 | switch (opcode) { |
| 2765 | case BLOCK_LAYOUT_OPERATOR: |
| 2766 | printf("BL_OPERATOR:"); |
| 2767 | delta = 0; |
| 2768 | break; |
| 2769 | case BLOCK_LAYOUT_NON_OBJECT_BYTES: |
| 2770 | printf("BL_NON_OBJECT_BYTES:"); |
| 2771 | break; |
| 2772 | case BLOCK_LAYOUT_NON_OBJECT_WORDS: |
| 2773 | printf("BL_NON_OBJECT_WORD:"); |
| 2774 | break; |
| 2775 | case BLOCK_LAYOUT_STRONG: |
| 2776 | printf("BL_STRONG:"); |
| 2777 | break; |
| 2778 | case BLOCK_LAYOUT_BYREF: |
| 2779 | printf("BL_BYREF:"); |
| 2780 | break; |
| 2781 | case BLOCK_LAYOUT_WEAK: |
| 2782 | printf("BL_WEAK:"); |
| 2783 | break; |
| 2784 | case BLOCK_LAYOUT_UNRETAINED: |
| 2785 | printf("BL_UNRETAINED:"); |
| 2786 | break; |
| 2787 | } |
| 2788 | // Actual value of word count is one more that what is in the imm. |
| 2789 | // field of the instruction |
| 2790 | printf("%d", (inst & 0xf) + delta); |
| 2791 | if (i < e-1) |
| 2792 | printf(", "); |
| 2793 | else |
| 2794 | printf("\n"); |
| 2795 | } |
| 2796 | } |
Rafael Espindola | 8b27bdb | 2014-11-06 13:30:38 +0000 | [diff] [blame] | 2797 | |
Saleem Abdulrasool | 82f6add | 2016-09-20 18:38:54 +0000 | [diff] [blame] | 2798 | auto *Entry = CreateCStringLiteral(BitMap, ObjCLabelType::ClassName, |
| 2799 | /*ForceNonFragileABI=*/true, |
| 2800 | /*NullTerminate=*/false); |
Fariborz Jahanian | a9d4464 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 2801 | return getConstantGEP(VMContext, Entry, 0, 0); |
| 2802 | } |
| 2803 | |
Akira Hatanaka | 2ec36f0 | 2018-08-17 15:46:07 +0000 | [diff] [blame] | 2804 | static std::string getBlockLayoutInfoString( |
| 2805 | const SmallVectorImpl<CGObjCCommonMac::RUN_SKIP> &RunSkipBlockVars, |
| 2806 | bool HasCopyDisposeHelpers) { |
| 2807 | std::string Str; |
| 2808 | for (const CGObjCCommonMac::RUN_SKIP &R : RunSkipBlockVars) { |
| 2809 | if (R.opcode == CGObjCCommonMac::BLOCK_LAYOUT_UNRETAINED) { |
| 2810 | // Copy/dispose helpers don't have any information about |
| 2811 | // __unsafe_unretained captures, so unconditionally concatenate a string. |
| 2812 | Str += "u"; |
| 2813 | } else if (HasCopyDisposeHelpers) { |
| 2814 | // Information about __strong, __weak, or byref captures has already been |
| 2815 | // encoded into the names of the copy/dispose helpers. We have to add a |
| 2816 | // string here only when the copy/dispose helpers aren't generated (which |
| 2817 | // happens when the block is non-escaping). |
| 2818 | continue; |
| 2819 | } else { |
| 2820 | switch (R.opcode) { |
| 2821 | case CGObjCCommonMac::BLOCK_LAYOUT_STRONG: |
| 2822 | Str += "s"; |
| 2823 | break; |
| 2824 | case CGObjCCommonMac::BLOCK_LAYOUT_BYREF: |
| 2825 | Str += "r"; |
| 2826 | break; |
| 2827 | case CGObjCCommonMac::BLOCK_LAYOUT_WEAK: |
| 2828 | Str += "w"; |
| 2829 | break; |
| 2830 | default: |
| 2831 | continue; |
| 2832 | } |
| 2833 | } |
| 2834 | Str += llvm::to_string(R.block_var_bytepos.getQuantity()); |
| 2835 | Str += "l" + llvm::to_string(R.block_var_size.getQuantity()); |
| 2836 | } |
| 2837 | return Str; |
| 2838 | } |
| 2839 | |
| 2840 | void CGObjCCommonMac::fillRunSkipBlockVars(CodeGenModule &CGM, |
| 2841 | const CGBlockInfo &blockInfo) { |
Fariborz Jahanian | 0c58ce9 | 2012-10-27 21:10:38 +0000 | [diff] [blame] | 2842 | assert(CGM.getLangOpts().getGC() == LangOptions::NonGC); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2843 | |
Fariborz Jahanian | 0c58ce9 | 2012-10-27 21:10:38 +0000 | [diff] [blame] | 2844 | RunSkipBlockVars.clear(); |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2845 | bool hasUnion = false; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2846 | |
John McCall | c8e0170 | 2013-04-16 22:48:15 +0000 | [diff] [blame] | 2847 | unsigned WordSizeInBits = CGM.getTarget().getPointerWidth(0); |
| 2848 | unsigned ByteSizeInBits = CGM.getTarget().getCharWidth(); |
Fariborz Jahanian | 0c58ce9 | 2012-10-27 21:10:38 +0000 | [diff] [blame] | 2849 | unsigned WordSizeInBytes = WordSizeInBits/ByteSizeInBits; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2850 | |
Fariborz Jahanian | 0c58ce9 | 2012-10-27 21:10:38 +0000 | [diff] [blame] | 2851 | const BlockDecl *blockDecl = blockInfo.getBlockDecl(); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2852 | |
Fariborz Jahanian | 0c58ce9 | 2012-10-27 21:10:38 +0000 | [diff] [blame] | 2853 | // Calculate the basic layout of the block structure. |
| 2854 | const llvm::StructLayout *layout = |
| 2855 | CGM.getDataLayout().getStructLayout(blockInfo.StructureType); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2856 | |
Fariborz Jahanian | 0c58ce9 | 2012-10-27 21:10:38 +0000 | [diff] [blame] | 2857 | // Ignore the optional 'this' capture: C++ objects are not assumed |
| 2858 | // to be GC'ed. |
Fariborz Jahanian | 4cf177e | 2012-12-04 17:20:57 +0000 | [diff] [blame] | 2859 | if (blockInfo.BlockHeaderForcedGapSize != CharUnits::Zero()) |
| 2860 | UpdateRunSkipBlockVars(false, Qualifiers::OCL_None, |
| 2861 | blockInfo.BlockHeaderForcedGapOffset, |
| 2862 | blockInfo.BlockHeaderForcedGapSize); |
Fariborz Jahanian | 0c58ce9 | 2012-10-27 21:10:38 +0000 | [diff] [blame] | 2863 | // Walk the captured variables. |
Aaron Ballman | 9371dd2 | 2014-03-14 18:34:04 +0000 | [diff] [blame] | 2864 | for (const auto &CI : blockDecl->captures()) { |
| 2865 | const VarDecl *variable = CI.getVariable(); |
Fariborz Jahanian | 0c58ce9 | 2012-10-27 21:10:38 +0000 | [diff] [blame] | 2866 | QualType type = variable->getType(); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2867 | |
Fariborz Jahanian | 0c58ce9 | 2012-10-27 21:10:38 +0000 | [diff] [blame] | 2868 | const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2869 | |
Fariborz Jahanian | 0c58ce9 | 2012-10-27 21:10:38 +0000 | [diff] [blame] | 2870 | // Ignore constant captures. |
| 2871 | if (capture.isConstant()) continue; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2872 | |
Fariborz Jahanian | 7778d61 | 2012-11-07 20:00:32 +0000 | [diff] [blame] | 2873 | CharUnits fieldOffset = |
| 2874 | CharUnits::fromQuantity(layout->getElementOffset(capture.getIndex())); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2875 | |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2876 | assert(!type->isArrayType() && "array variable should not be caught"); |
Aaron Ballman | 9371dd2 | 2014-03-14 18:34:04 +0000 | [diff] [blame] | 2877 | if (!CI.isByRef()) |
Fariborz Jahanian | a9d4464 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 2878 | if (const RecordType *record = type->getAs<RecordType>()) { |
| 2879 | BuildRCBlockVarRecordLayout(record, fieldOffset, hasUnion); |
| 2880 | continue; |
| 2881 | } |
Fariborz Jahanian | 7778d61 | 2012-11-07 20:00:32 +0000 | [diff] [blame] | 2882 | CharUnits fieldSize; |
Aaron Ballman | 9371dd2 | 2014-03-14 18:34:04 +0000 | [diff] [blame] | 2883 | if (CI.isByRef()) |
Fariborz Jahanian | 7778d61 | 2012-11-07 20:00:32 +0000 | [diff] [blame] | 2884 | fieldSize = CharUnits::fromQuantity(WordSizeInBytes); |
| 2885 | else |
| 2886 | fieldSize = CGM.getContext().getTypeSizeInChars(type); |
Aaron Ballman | 9371dd2 | 2014-03-14 18:34:04 +0000 | [diff] [blame] | 2887 | UpdateRunSkipBlockVars(CI.isByRef(), getBlockCaptureLifetime(type, false), |
Fariborz Jahanian | 39319c4 | 2012-10-30 20:05:29 +0000 | [diff] [blame] | 2888 | fieldOffset, fieldSize); |
Fariborz Jahanian | 0c58ce9 | 2012-10-27 21:10:38 +0000 | [diff] [blame] | 2889 | } |
Akira Hatanaka | 2ec36f0 | 2018-08-17 15:46:07 +0000 | [diff] [blame] | 2890 | } |
| 2891 | |
| 2892 | llvm::Constant * |
| 2893 | CGObjCCommonMac::BuildRCBlockLayout(CodeGenModule &CGM, |
| 2894 | const CGBlockInfo &blockInfo) { |
| 2895 | fillRunSkipBlockVars(CGM, blockInfo); |
Fariborz Jahanian | a9d4464 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 2896 | return getBitmapBlockLayout(false); |
| 2897 | } |
Fariborz Jahanian | 0c58ce9 | 2012-10-27 21:10:38 +0000 | [diff] [blame] | 2898 | |
Akira Hatanaka | 2ec36f0 | 2018-08-17 15:46:07 +0000 | [diff] [blame] | 2899 | std::string CGObjCCommonMac::getRCBlockLayoutStr(CodeGenModule &CGM, |
| 2900 | const CGBlockInfo &blockInfo) { |
| 2901 | fillRunSkipBlockVars(CGM, blockInfo); |
| 2902 | return getBlockLayoutInfoString(RunSkipBlockVars, |
| 2903 | blockInfo.needsCopyDisposeHelpers()); |
| 2904 | } |
| 2905 | |
Fariborz Jahanian | a9d4464 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 2906 | llvm::Constant *CGObjCCommonMac::BuildByrefLayout(CodeGen::CodeGenModule &CGM, |
| 2907 | QualType T) { |
| 2908 | assert(CGM.getLangOpts().getGC() == LangOptions::NonGC); |
| 2909 | assert(!T->isArrayType() && "__block array variable should not be caught"); |
| 2910 | CharUnits fieldOffset; |
| 2911 | RunSkipBlockVars.clear(); |
| 2912 | bool hasUnion = false; |
| 2913 | if (const RecordType *record = T->getAs<RecordType>()) { |
| 2914 | BuildRCBlockVarRecordLayout(record, fieldOffset, hasUnion, true /*ByrefLayout */); |
| 2915 | llvm::Constant *Result = getBitmapBlockLayout(true); |
Vedant Kumar | 2f5bb115 | 2015-12-21 20:21:15 +0000 | [diff] [blame] | 2916 | if (isa<llvm::ConstantInt>(Result)) |
| 2917 | Result = llvm::ConstantExpr::getIntToPtr(Result, CGM.Int8PtrTy); |
Fariborz Jahanian | a9d4464 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 2918 | return Result; |
Fariborz Jahanian | 0c58ce9 | 2012-10-27 21:10:38 +0000 | [diff] [blame] | 2919 | } |
Fariborz Jahanian | a9d4464 | 2012-11-14 17:15:51 +0000 | [diff] [blame] | 2920 | llvm::Constant *nullPtr = llvm::Constant::getNullValue(CGM.Int8PtrTy); |
| 2921 | return nullPtr; |
Fariborz Jahanian | 0c58ce9 | 2012-10-27 21:10:38 +0000 | [diff] [blame] | 2922 | } |
| 2923 | |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 2924 | llvm::Value *CGObjCMac::GenerateProtocolRef(CodeGenFunction &CGF, |
Daniel Dunbar | 89da6ad | 2008-08-13 00:59:25 +0000 | [diff] [blame] | 2925 | const ObjCProtocolDecl *PD) { |
Daniel Dunbar | 7050c55 | 2008-09-04 04:33:15 +0000 | [diff] [blame] | 2926 | // FIXME: I don't understand why gcc generates this, or where it is |
Mike Stump | 18bb928 | 2009-05-16 07:57:57 +0000 | [diff] [blame] | 2927 | // resolved. Investigate. Its also wasteful to look this up over and over. |
Daniel Dunbar | 7050c55 | 2008-09-04 04:33:15 +0000 | [diff] [blame] | 2928 | LazySymbols.insert(&CGM.getContext().Idents.get("Protocol")); |
| 2929 | |
Owen Anderson | ade90fd | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 2930 | return llvm::ConstantExpr::getBitCast(GetProtocolRef(PD), |
Douglas Gregor | 020de32 | 2012-01-17 18:36:30 +0000 | [diff] [blame] | 2931 | ObjCTypes.getExternalProtocolPtrTy()); |
Daniel Dunbar | 303e2c2 | 2008-08-11 02:45:11 +0000 | [diff] [blame] | 2932 | } |
| 2933 | |
Fariborz Jahanian | 56b3b77 | 2009-01-29 19:24:30 +0000 | [diff] [blame] | 2934 | void CGObjCCommonMac::GenerateProtocol(const ObjCProtocolDecl *PD) { |
Mike Stump | 18bb928 | 2009-05-16 07:57:57 +0000 | [diff] [blame] | 2935 | // FIXME: We shouldn't need this, the protocol decl should contain enough |
| 2936 | // information to tell us whether this was a declaration or a definition. |
Daniel Dunbar | c475d42 | 2008-10-29 22:36:39 +0000 | [diff] [blame] | 2937 | DefinedProtocols.insert(PD->getIdentifier()); |
| 2938 | |
| 2939 | // If we have generated a forward reference to this protocol, emit |
| 2940 | // it now. Otherwise do nothing, the protocol objects are lazily |
| 2941 | // emitted. |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 2942 | if (Protocols.count(PD->getIdentifier())) |
Daniel Dunbar | c475d42 | 2008-10-29 22:36:39 +0000 | [diff] [blame] | 2943 | GetOrEmitProtocol(PD); |
| 2944 | } |
| 2945 | |
Fariborz Jahanian | 56b3b77 | 2009-01-29 19:24:30 +0000 | [diff] [blame] | 2946 | llvm::Constant *CGObjCCommonMac::GetProtocolRef(const ObjCProtocolDecl *PD) { |
Daniel Dunbar | c475d42 | 2008-10-29 22:36:39 +0000 | [diff] [blame] | 2947 | if (DefinedProtocols.count(PD->getIdentifier())) |
| 2948 | return GetOrEmitProtocol(PD); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 2949 | |
Daniel Dunbar | c475d42 | 2008-10-29 22:36:39 +0000 | [diff] [blame] | 2950 | return GetOrEmitProtocolRef(PD); |
| 2951 | } |
| 2952 | |
Douglas Gregor | 24ae22c | 2016-04-01 23:23:52 +0000 | [diff] [blame] | 2953 | llvm::Value *CGObjCCommonMac::EmitClassRefViaRuntime( |
| 2954 | CodeGenFunction &CGF, |
| 2955 | const ObjCInterfaceDecl *ID, |
| 2956 | ObjCCommonTypesHelper &ObjCTypes) { |
| 2957 | llvm::Constant *lookUpClassFn = ObjCTypes.getLookUpClassFn(); |
| 2958 | |
| 2959 | llvm::Value *className = |
| 2960 | CGF.CGM.GetAddrOfConstantCString(ID->getObjCRuntimeNameAsString()) |
| 2961 | .getPointer(); |
| 2962 | ASTContext &ctx = CGF.CGM.getContext(); |
| 2963 | className = |
| 2964 | CGF.Builder.CreateBitCast(className, |
| 2965 | CGF.ConvertType( |
| 2966 | ctx.getPointerType(ctx.CharTy.withConst()))); |
| 2967 | llvm::CallInst *call = CGF.Builder.CreateCall(lookUpClassFn, className); |
| 2968 | call->setDoesNotThrow(); |
| 2969 | return call; |
| 2970 | } |
| 2971 | |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 2972 | /* |
Rafael Espindola | f9e1e5e | 2014-02-20 14:09:04 +0000 | [diff] [blame] | 2973 | // Objective-C 1.0 extensions |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 2974 | struct _objc_protocol { |
| 2975 | struct _objc_protocol_extension *isa; |
| 2976 | char *protocol_name; |
| 2977 | struct _objc_protocol_list *protocol_list; |
| 2978 | struct _objc__method_prototype_list *instance_methods; |
| 2979 | struct _objc__method_prototype_list *class_methods |
| 2980 | }; |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 2981 | |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 2982 | See EmitProtocolExtension(). |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 2983 | */ |
Daniel Dunbar | c475d42 | 2008-10-29 22:36:39 +0000 | [diff] [blame] | 2984 | llvm::Constant *CGObjCMac::GetOrEmitProtocol(const ObjCProtocolDecl *PD) { |
John McCall | f9582a7 | 2012-03-30 21:29:05 +0000 | [diff] [blame] | 2985 | llvm::GlobalVariable *Entry = Protocols[PD->getIdentifier()]; |
Daniel Dunbar | c475d42 | 2008-10-29 22:36:39 +0000 | [diff] [blame] | 2986 | |
| 2987 | // Early exit if a defining object has already been generated. |
| 2988 | if (Entry && Entry->hasInitializer()) |
| 2989 | return Entry; |
| 2990 | |
Douglas Gregor | a715bff | 2012-01-01 19:51:50 +0000 | [diff] [blame] | 2991 | // Use the protocol definition, if there is one. |
| 2992 | if (const ObjCProtocolDecl *Def = PD->getDefinition()) |
| 2993 | PD = Def; |
| 2994 | |
Daniel Dunbar | c61d0e9 | 2008-08-25 06:02:07 +0000 | [diff] [blame] | 2995 | // FIXME: I don't understand why gcc generates this, or where it is |
Mike Stump | 18bb928 | 2009-05-16 07:57:57 +0000 | [diff] [blame] | 2996 | // resolved. Investigate. Its also wasteful to look this up over and over. |
Daniel Dunbar | c61d0e9 | 2008-08-25 06:02:07 +0000 | [diff] [blame] | 2997 | LazySymbols.insert(&CGM.getContext().Idents.get("Protocol")); |
| 2998 | |
Daniel Dunbar | eb1f9a2 | 2008-08-27 02:31:56 +0000 | [diff] [blame] | 2999 | // Construct method lists. |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3000 | auto methodLists = ProtocolMethodLists::get(PD); |
Daniel Dunbar | eb1f9a2 | 2008-08-27 02:31:56 +0000 | [diff] [blame] | 3001 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3002 | ConstantInitBuilder builder(CGM); |
| 3003 | auto values = builder.beginStruct(ObjCTypes.ProtocolTy); |
| 3004 | values.add(EmitProtocolExtension(PD, methodLists)); |
| 3005 | values.add(GetClassName(PD->getObjCRuntimeNameAsString())); |
| 3006 | values.add(EmitProtocolList("OBJC_PROTOCOL_REFS_" + PD->getName(), |
| 3007 | PD->protocol_begin(), PD->protocol_end())); |
| 3008 | values.add(methodLists.emitMethodList(this, PD, |
| 3009 | ProtocolMethodLists::RequiredInstanceMethods)); |
| 3010 | values.add(methodLists.emitMethodList(this, PD, |
| 3011 | ProtocolMethodLists::RequiredClassMethods)); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 3012 | |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 3013 | if (Entry) { |
Rafael Espindola | 5d117f3 | 2014-03-06 01:10:46 +0000 | [diff] [blame] | 3014 | // Already created, update the initializer. |
Rafael Espindola | b326295 | 2014-05-09 00:43:37 +0000 | [diff] [blame] | 3015 | assert(Entry->hasPrivateLinkage()); |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3016 | values.finishAndSetAsInitializer(Entry); |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 3017 | } else { |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3018 | Entry = values.finishAndCreateGlobal("OBJC_PROTOCOL_" + PD->getName(), |
| 3019 | CGM.getPointerAlign(), |
| 3020 | /*constant*/ false, |
| 3021 | llvm::GlobalValue::PrivateLinkage); |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 3022 | Entry->setSection("__OBJC,__protocol,regular,no_dead_strip"); |
John McCall | f9582a7 | 2012-03-30 21:29:05 +0000 | [diff] [blame] | 3023 | |
| 3024 | Protocols[PD->getIdentifier()] = Entry; |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 3025 | } |
Rafael Espindola | 060062a | 2014-03-06 22:15:10 +0000 | [diff] [blame] | 3026 | CGM.addCompilerUsedGlobal(Entry); |
Daniel Dunbar | c475d42 | 2008-10-29 22:36:39 +0000 | [diff] [blame] | 3027 | |
| 3028 | return Entry; |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 3029 | } |
| 3030 | |
Daniel Dunbar | c475d42 | 2008-10-29 22:36:39 +0000 | [diff] [blame] | 3031 | llvm::Constant *CGObjCMac::GetOrEmitProtocolRef(const ObjCProtocolDecl *PD) { |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 3032 | llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()]; |
| 3033 | |
| 3034 | if (!Entry) { |
Daniel Dunbar | c475d42 | 2008-10-29 22:36:39 +0000 | [diff] [blame] | 3035 | // We use the initializer as a marker of whether this is a forward |
| 3036 | // reference or not. At module finalization we add the empty |
| 3037 | // contents for protocols which were referenced but never defined. |
Rafael Espindola | 8b27bdb | 2014-11-06 13:30:38 +0000 | [diff] [blame] | 3038 | Entry = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ProtocolTy, |
| 3039 | false, llvm::GlobalValue::PrivateLinkage, |
| 3040 | nullptr, "OBJC_PROTOCOL_" + PD->getName()); |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 3041 | Entry->setSection("__OBJC,__protocol,regular,no_dead_strip"); |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 3042 | // FIXME: Is this necessary? Why only for protocol? |
| 3043 | Entry->setAlignment(4); |
| 3044 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 3045 | |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 3046 | return Entry; |
| 3047 | } |
| 3048 | |
| 3049 | /* |
| 3050 | struct _objc_protocol_extension { |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 3051 | uint32_t size; |
| 3052 | struct objc_method_description_list *optional_instance_methods; |
| 3053 | struct objc_method_description_list *optional_class_methods; |
| 3054 | struct objc_property_list *instance_properties; |
Bob Wilson | 5f4e3a7 | 2011-11-30 01:57:58 +0000 | [diff] [blame] | 3055 | const char ** extendedMethodTypes; |
Manman Ren | ce7bff5 | 2016-01-29 23:46:55 +0000 | [diff] [blame] | 3056 | struct objc_property_list *class_properties; |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 3057 | }; |
| 3058 | */ |
Daniel Dunbar | eb1f9a2 | 2008-08-27 02:31:56 +0000 | [diff] [blame] | 3059 | llvm::Constant * |
| 3060 | CGObjCMac::EmitProtocolExtension(const ObjCProtocolDecl *PD, |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3061 | const ProtocolMethodLists &methodLists) { |
| 3062 | auto optInstanceMethods = |
| 3063 | methodLists.emitMethodList(this, PD, |
| 3064 | ProtocolMethodLists::OptionalInstanceMethods); |
| 3065 | auto optClassMethods = |
| 3066 | methodLists.emitMethodList(this, PD, |
| 3067 | ProtocolMethodLists::OptionalClassMethods); |
| 3068 | |
| 3069 | auto extendedMethodTypes = |
| 3070 | EmitProtocolMethodTypes("OBJC_PROTOCOL_METHOD_TYPES_" + PD->getName(), |
| 3071 | methodLists.emitExtendedTypesArray(this), |
| 3072 | ObjCTypes); |
| 3073 | |
| 3074 | auto instanceProperties = |
| 3075 | EmitPropertyList("OBJC_$_PROP_PROTO_LIST_" + PD->getName(), nullptr, PD, |
| 3076 | ObjCTypes, false); |
| 3077 | auto classProperties = |
| 3078 | EmitPropertyList("OBJC_$_CLASS_PROP_PROTO_LIST_" + PD->getName(), nullptr, |
| 3079 | PD, ObjCTypes, true); |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 3080 | |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3081 | // Return null if no extension bits are used. |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3082 | if (optInstanceMethods->isNullValue() && |
| 3083 | optClassMethods->isNullValue() && |
| 3084 | extendedMethodTypes->isNullValue() && |
| 3085 | instanceProperties->isNullValue() && |
| 3086 | classProperties->isNullValue()) { |
Owen Anderson | 0b75f23 | 2009-07-31 20:28:54 +0000 | [diff] [blame] | 3087 | return llvm::Constant::getNullValue(ObjCTypes.ProtocolExtensionPtrTy); |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3088 | } |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 3089 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3090 | uint64_t size = |
| 3091 | CGM.getDataLayout().getTypeAllocSize(ObjCTypes.ProtocolExtensionTy); |
| 3092 | |
| 3093 | ConstantInitBuilder builder(CGM); |
| 3094 | auto values = builder.beginStruct(ObjCTypes.ProtocolExtensionTy); |
| 3095 | values.addInt(ObjCTypes.IntTy, size); |
| 3096 | values.add(optInstanceMethods); |
| 3097 | values.add(optClassMethods); |
| 3098 | values.add(instanceProperties); |
| 3099 | values.add(extendedMethodTypes); |
| 3100 | values.add(classProperties); |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 3101 | |
Daniel Dunbar | c2d4b62 | 2009-03-09 21:49:58 +0000 | [diff] [blame] | 3102 | // No special section, but goes in llvm.used |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3103 | return CreateMetadataVar("\01l_OBJC_PROTOCOLEXT_" + PD->getName(), values, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 3104 | StringRef(), CGM.getPointerAlign(), true); |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 3105 | } |
| 3106 | |
| 3107 | /* |
| 3108 | struct objc_protocol_list { |
Bill Wendling | a515b58 | 2012-02-09 22:16:49 +0000 | [diff] [blame] | 3109 | struct objc_protocol_list *next; |
| 3110 | long count; |
| 3111 | Protocol *list[]; |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 3112 | }; |
| 3113 | */ |
Daniel Dunbar | dec75f8 | 2008-08-21 21:57:41 +0000 | [diff] [blame] | 3114 | llvm::Constant * |
Zachary Turner | 41a9ee9 | 2017-10-11 23:54:34 +0000 | [diff] [blame] | 3115 | CGObjCMac::EmitProtocolList(Twine name, |
Daniel Dunbar | dec75f8 | 2008-08-21 21:57:41 +0000 | [diff] [blame] | 3116 | ObjCProtocolDecl::protocol_iterator begin, |
| 3117 | ObjCProtocolDecl::protocol_iterator end) { |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 3118 | // Just return null for empty protocol lists |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3119 | if (begin == end) |
Owen Anderson | 0b75f23 | 2009-07-31 20:28:54 +0000 | [diff] [blame] | 3120 | return llvm::Constant::getNullValue(ObjCTypes.ProtocolListPtrTy); |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 3121 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3122 | ConstantInitBuilder builder(CGM); |
| 3123 | auto values = builder.beginStruct(); |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 3124 | |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3125 | // This field is only used by the runtime. |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3126 | values.addNullPointer(ObjCTypes.ProtocolListPtrTy); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 3127 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3128 | // Reserve a slot for the count. |
| 3129 | auto countSlot = values.addPlaceholder(); |
| 3130 | |
| 3131 | auto refsArray = values.beginArray(ObjCTypes.ProtocolPtrTy); |
| 3132 | for (; begin != end; ++begin) { |
| 3133 | refsArray.add(GetProtocolRef(*begin)); |
| 3134 | } |
| 3135 | auto count = refsArray.size(); |
| 3136 | |
| 3137 | // This list is null terminated. |
| 3138 | refsArray.addNullPointer(ObjCTypes.ProtocolPtrTy); |
| 3139 | |
| 3140 | refsArray.finishAndAddTo(values); |
| 3141 | values.fillPlaceholderWithInt(countSlot, ObjCTypes.LongTy, count); |
| 3142 | |
| 3143 | StringRef section; |
Saleem Abdulrasool | 3c628af | 2016-10-25 21:43:28 +0000 | [diff] [blame] | 3144 | if (CGM.getTriple().isOSBinFormatMachO()) |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3145 | section = "__OBJC,__cat_cls_meth,regular,no_dead_strip"; |
Saleem Abdulrasool | 3c628af | 2016-10-25 21:43:28 +0000 | [diff] [blame] | 3146 | |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 3147 | llvm::GlobalVariable *GV = |
Zachary Turner | 41a9ee9 | 2017-10-11 23:54:34 +0000 | [diff] [blame] | 3148 | CreateMetadataVar(name, values, section, CGM.getPointerAlign(), false); |
Owen Anderson | ade90fd | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 3149 | return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.ProtocolListPtrTy); |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 3150 | } |
| 3151 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3152 | static void |
Bill Wendling | cb5b5ff | 2012-02-07 09:25:09 +0000 | [diff] [blame] | 3153 | PushProtocolProperties(llvm::SmallPtrSet<const IdentifierInfo*,16> &PropertySet, |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3154 | SmallVectorImpl<const ObjCPropertyDecl *> &Properties, |
Aaron Ballman | dc4bea4 | 2014-03-13 18:47:37 +0000 | [diff] [blame] | 3155 | const ObjCProtocolDecl *Proto, |
Manman Ren | ad0e791 | 2016-01-29 19:22:54 +0000 | [diff] [blame] | 3156 | bool IsClassProperty) { |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3157 | for (const auto *P : Proto->protocols()) |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3158 | PushProtocolProperties(PropertySet, Properties, P, IsClassProperty); |
Manman Ren | ad0e791 | 2016-01-29 19:22:54 +0000 | [diff] [blame] | 3159 | |
| 3160 | for (const auto *PD : Proto->properties()) { |
| 3161 | if (IsClassProperty != PD->isClassProperty()) |
| 3162 | continue; |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 3163 | if (!PropertySet.insert(PD->getIdentifier()).second) |
Fariborz Jahanian | 751c1e7 | 2009-12-12 21:26:21 +0000 | [diff] [blame] | 3164 | continue; |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3165 | Properties.push_back(PD); |
Fariborz Jahanian | 751c1e7 | 2009-12-12 21:26:21 +0000 | [diff] [blame] | 3166 | } |
| 3167 | } |
| 3168 | |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 3169 | /* |
Daniel Dunbar | 80a840b | 2008-08-23 00:19:03 +0000 | [diff] [blame] | 3170 | struct _objc_property { |
Bill Wendling | a515b58 | 2012-02-09 22:16:49 +0000 | [diff] [blame] | 3171 | const char * const name; |
| 3172 | const char * const attributes; |
Daniel Dunbar | 80a840b | 2008-08-23 00:19:03 +0000 | [diff] [blame] | 3173 | }; |
| 3174 | |
| 3175 | struct _objc_property_list { |
Bill Wendling | a515b58 | 2012-02-09 22:16:49 +0000 | [diff] [blame] | 3176 | uint32_t entsize; // sizeof (struct _objc_property) |
| 3177 | uint32_t prop_count; |
| 3178 | struct _objc_property[prop_count]; |
Daniel Dunbar | 80a840b | 2008-08-23 00:19:03 +0000 | [diff] [blame] | 3179 | }; |
| 3180 | */ |
Zachary Turner | 41a9ee9 | 2017-10-11 23:54:34 +0000 | [diff] [blame] | 3181 | llvm::Constant *CGObjCCommonMac::EmitPropertyList(Twine Name, |
| 3182 | const Decl *Container, |
| 3183 | const ObjCContainerDecl *OCD, |
| 3184 | const ObjCCommonTypesHelper &ObjCTypes, |
| 3185 | bool IsClassProperty) { |
Manman Ren | 01b705e | 2016-04-19 19:05:03 +0000 | [diff] [blame] | 3186 | if (IsClassProperty) { |
| 3187 | // Make this entry NULL for OS X with deployment target < 10.11, for iOS |
| 3188 | // with deployment target < 9.0. |
| 3189 | const llvm::Triple &Triple = CGM.getTarget().getTriple(); |
| 3190 | if ((Triple.isMacOSX() && Triple.isMacOSXVersionLT(10, 11)) || |
| 3191 | (Triple.isiOS() && Triple.isOSVersionLT(9))) |
| 3192 | return llvm::Constant::getNullValue(ObjCTypes.PropertyListPtrTy); |
| 3193 | } |
| 3194 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3195 | SmallVector<const ObjCPropertyDecl *, 16> Properties; |
Fariborz Jahanian | 751c1e7 | 2009-12-12 21:26:21 +0000 | [diff] [blame] | 3196 | llvm::SmallPtrSet<const IdentifierInfo*, 16> PropertySet; |
Nico Weber | 08c9333 | 2015-12-03 17:44:51 +0000 | [diff] [blame] | 3197 | |
Nico Weber | 08c9333 | 2015-12-03 17:44:51 +0000 | [diff] [blame] | 3198 | if (const ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(OCD)) |
| 3199 | for (const ObjCCategoryDecl *ClassExt : OID->known_extensions()) |
Manman Ren | ad0e791 | 2016-01-29 19:22:54 +0000 | [diff] [blame] | 3200 | for (auto *PD : ClassExt->properties()) { |
| 3201 | if (IsClassProperty != PD->isClassProperty()) |
| 3202 | continue; |
Nico Weber | 08c9333 | 2015-12-03 17:44:51 +0000 | [diff] [blame] | 3203 | PropertySet.insert(PD->getIdentifier()); |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3204 | Properties.push_back(PD); |
Nico Weber | 08c9333 | 2015-12-03 17:44:51 +0000 | [diff] [blame] | 3205 | } |
Manman Ren | ad0e791 | 2016-01-29 19:22:54 +0000 | [diff] [blame] | 3206 | |
| 3207 | for (const auto *PD : OCD->properties()) { |
| 3208 | if (IsClassProperty != PD->isClassProperty()) |
| 3209 | continue; |
Nico Weber | 08c9333 | 2015-12-03 17:44:51 +0000 | [diff] [blame] | 3210 | // Don't emit duplicate metadata for properties that were already in a |
| 3211 | // class extension. |
| 3212 | if (!PropertySet.insert(PD->getIdentifier()).second) |
| 3213 | continue; |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3214 | Properties.push_back(PD); |
Daniel Dunbar | 80a840b | 2008-08-23 00:19:03 +0000 | [diff] [blame] | 3215 | } |
Nico Weber | 08c9333 | 2015-12-03 17:44:51 +0000 | [diff] [blame] | 3216 | |
Fariborz Jahanian | 7966aff | 2010-06-22 16:33:55 +0000 | [diff] [blame] | 3217 | if (const ObjCInterfaceDecl *OID = dyn_cast<ObjCInterfaceDecl>(OCD)) { |
Aaron Ballman | a9f49e3 | 2014-03-13 20:55:22 +0000 | [diff] [blame] | 3218 | for (const auto *P : OID->all_referenced_protocols()) |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3219 | PushProtocolProperties(PropertySet, Properties, P, IsClassProperty); |
Fariborz Jahanian | 7966aff | 2010-06-22 16:33:55 +0000 | [diff] [blame] | 3220 | } |
| 3221 | else if (const ObjCCategoryDecl *CD = dyn_cast<ObjCCategoryDecl>(OCD)) { |
Aaron Ballman | 19a4176 | 2014-03-14 12:55:57 +0000 | [diff] [blame] | 3222 | for (const auto *P : CD->protocols()) |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3223 | PushProtocolProperties(PropertySet, Properties, P, IsClassProperty); |
Fariborz Jahanian | 7966aff | 2010-06-22 16:33:55 +0000 | [diff] [blame] | 3224 | } |
Daniel Dunbar | 80a840b | 2008-08-23 00:19:03 +0000 | [diff] [blame] | 3225 | |
| 3226 | // Return null for empty list. |
| 3227 | if (Properties.empty()) |
Owen Anderson | 0b75f23 | 2009-07-31 20:28:54 +0000 | [diff] [blame] | 3228 | return llvm::Constant::getNullValue(ObjCTypes.PropertyListPtrTy); |
Daniel Dunbar | 80a840b | 2008-08-23 00:19:03 +0000 | [diff] [blame] | 3229 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3230 | unsigned propertySize = |
Micah Villmow | dd31ca1 | 2012-10-08 16:25:52 +0000 | [diff] [blame] | 3231 | CGM.getDataLayout().getTypeAllocSize(ObjCTypes.PropertyTy); |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3232 | |
| 3233 | ConstantInitBuilder builder(CGM); |
| 3234 | auto values = builder.beginStruct(); |
| 3235 | values.addInt(ObjCTypes.IntTy, propertySize); |
| 3236 | values.addInt(ObjCTypes.IntTy, Properties.size()); |
| 3237 | auto propertiesArray = values.beginArray(ObjCTypes.PropertyTy); |
| 3238 | for (auto PD : Properties) { |
| 3239 | auto property = propertiesArray.beginStruct(ObjCTypes.PropertyTy); |
| 3240 | property.add(GetPropertyName(PD->getIdentifier())); |
| 3241 | property.add(GetPropertyTypeString(PD, Container)); |
| 3242 | property.finishAndAddTo(propertiesArray); |
| 3243 | } |
| 3244 | propertiesArray.finishAndAddTo(values); |
Daniel Dunbar | 80a840b | 2008-08-23 00:19:03 +0000 | [diff] [blame] | 3245 | |
Saleem Abdulrasool | 3c628af | 2016-10-25 21:43:28 +0000 | [diff] [blame] | 3246 | StringRef Section; |
| 3247 | if (CGM.getTriple().isOSBinFormatMachO()) |
| 3248 | Section = (ObjCABI == 2) ? "__DATA, __objc_const" |
| 3249 | : "__OBJC,__property,regular,no_dead_strip"; |
| 3250 | |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 3251 | llvm::GlobalVariable *GV = |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3252 | CreateMetadataVar(Name, values, Section, CGM.getPointerAlign(), true); |
Owen Anderson | ade90fd | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 3253 | return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.PropertyListPtrTy); |
Daniel Dunbar | 80a840b | 2008-08-23 00:19:03 +0000 | [diff] [blame] | 3254 | } |
| 3255 | |
Zachary Turner | 41a9ee9 | 2017-10-11 23:54:34 +0000 | [diff] [blame] | 3256 | llvm::Constant * |
| 3257 | CGObjCCommonMac::EmitProtocolMethodTypes(Twine Name, |
| 3258 | ArrayRef<llvm::Constant*> MethodTypes, |
| 3259 | const ObjCCommonTypesHelper &ObjCTypes) { |
Bob Wilson | 5f4e3a7 | 2011-11-30 01:57:58 +0000 | [diff] [blame] | 3260 | // Return null for empty list. |
| 3261 | if (MethodTypes.empty()) |
| 3262 | return llvm::Constant::getNullValue(ObjCTypes.Int8PtrPtrTy); |
| 3263 | |
| 3264 | llvm::ArrayType *AT = llvm::ArrayType::get(ObjCTypes.Int8PtrTy, |
| 3265 | MethodTypes.size()); |
| 3266 | llvm::Constant *Init = llvm::ConstantArray::get(AT, MethodTypes); |
| 3267 | |
Saleem Abdulrasool | 3c628af | 2016-10-25 21:43:28 +0000 | [diff] [blame] | 3268 | StringRef Section; |
| 3269 | if (CGM.getTriple().isOSBinFormatMachO() && ObjCABI == 2) |
| 3270 | Section = "__DATA, __objc_const"; |
| 3271 | |
| 3272 | llvm::GlobalVariable *GV = |
| 3273 | CreateMetadataVar(Name, Init, Section, CGM.getPointerAlign(), true); |
Bob Wilson | 5f4e3a7 | 2011-11-30 01:57:58 +0000 | [diff] [blame] | 3274 | return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.Int8PtrPtrTy); |
| 3275 | } |
| 3276 | |
Daniel Dunbar | 80a840b | 2008-08-23 00:19:03 +0000 | [diff] [blame] | 3277 | /* |
Daniel Dunbar | 938a77f | 2008-08-22 20:34:54 +0000 | [diff] [blame] | 3278 | struct _objc_category { |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 3279 | char *category_name; |
| 3280 | char *class_name; |
| 3281 | struct _objc_method_list *instance_methods; |
| 3282 | struct _objc_method_list *class_methods; |
| 3283 | struct _objc_protocol_list *protocols; |
| 3284 | uint32_t size; // <rdar://4585769> |
| 3285 | struct _objc_property_list *instance_properties; |
Manman Ren | 96df0b3 | 2016-01-29 23:45:01 +0000 | [diff] [blame] | 3286 | struct _objc_property_list *class_properties; |
Daniel Dunbar | 938a77f | 2008-08-22 20:34:54 +0000 | [diff] [blame] | 3287 | }; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 3288 | */ |
Daniel Dunbar | 9299250 | 2008-08-15 22:20:32 +0000 | [diff] [blame] | 3289 | void CGObjCMac::GenerateCategory(const ObjCCategoryImplDecl *OCD) { |
Micah Villmow | dd31ca1 | 2012-10-08 16:25:52 +0000 | [diff] [blame] | 3290 | unsigned Size = CGM.getDataLayout().getTypeAllocSize(ObjCTypes.CategoryTy); |
Daniel Dunbar | 938a77f | 2008-08-22 20:34:54 +0000 | [diff] [blame] | 3291 | |
Mike Stump | 18bb928 | 2009-05-16 07:57:57 +0000 | [diff] [blame] | 3292 | // FIXME: This is poor design, the OCD should have a pointer to the category |
| 3293 | // decl. Additionally, note that Category can be null for the @implementation |
| 3294 | // w/o an @interface case. Sema should just create one for us as it does for |
| 3295 | // @implementation so everyone else can live life under a clear blue sky. |
Daniel Dunbar | 938a77f | 2008-08-22 20:34:54 +0000 | [diff] [blame] | 3296 | const ObjCInterfaceDecl *Interface = OCD->getClassInterface(); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 3297 | const ObjCCategoryDecl *Category = |
Daniel Dunbar | 28e76ca | 2008-08-26 23:03:11 +0000 | [diff] [blame] | 3298 | Interface->FindCategoryDeclaration(OCD->getIdentifier()); |
Daniel Dunbar | 349e6fb | 2009-10-18 20:48:59 +0000 | [diff] [blame] | 3299 | |
Dylan Noblesmith | 2c1dd27 | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 3300 | SmallString<256> ExtName; |
Daniel Dunbar | 349e6fb | 2009-10-18 20:48:59 +0000 | [diff] [blame] | 3301 | llvm::raw_svector_ostream(ExtName) << Interface->getName() << '_' |
| 3302 | << OCD->getName(); |
Daniel Dunbar | 938a77f | 2008-08-22 20:34:54 +0000 | [diff] [blame] | 3303 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3304 | ConstantInitBuilder Builder(CGM); |
| 3305 | auto Values = Builder.beginStruct(ObjCTypes.CategoryTy); |
Aaron Ballman | f26acce | 2014-03-13 19:50:17 +0000 | [diff] [blame] | 3306 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3307 | enum { |
| 3308 | InstanceMethods, |
| 3309 | ClassMethods, |
| 3310 | NumMethodLists |
| 3311 | }; |
| 3312 | SmallVector<const ObjCMethodDecl *, 16> Methods[NumMethodLists]; |
| 3313 | for (const auto *MD : OCD->methods()) { |
| 3314 | Methods[unsigned(MD->isClassMethod())].push_back(MD); |
| 3315 | } |
Daniel Dunbar | 3c76cb5 | 2008-08-26 21:51:14 +0000 | [diff] [blame] | 3316 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3317 | Values.add(GetClassName(OCD->getName())); |
| 3318 | Values.add(GetClassName(Interface->getObjCRuntimeNameAsString())); |
Fariborz Jahanian | e55f866 | 2009-04-29 20:40:05 +0000 | [diff] [blame] | 3319 | LazySymbols.insert(Interface->getIdentifier()); |
Saleem Abdulrasool | d48b0a3 | 2016-10-24 20:47:58 +0000 | [diff] [blame] | 3320 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3321 | Values.add(emitMethodList(ExtName, MethodListType::CategoryInstanceMethods, |
| 3322 | Methods[InstanceMethods])); |
| 3323 | Values.add(emitMethodList(ExtName, MethodListType::CategoryClassMethods, |
| 3324 | Methods[ClassMethods])); |
Daniel Dunbar | eb1f9a2 | 2008-08-27 02:31:56 +0000 | [diff] [blame] | 3325 | if (Category) { |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3326 | Values.add( |
Rafael Espindola | 8b27bdb | 2014-11-06 13:30:38 +0000 | [diff] [blame] | 3327 | EmitProtocolList("OBJC_CATEGORY_PROTOCOLS_" + ExtName.str(), |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3328 | Category->protocol_begin(), Category->protocol_end())); |
Daniel Dunbar | eb1f9a2 | 2008-08-27 02:31:56 +0000 | [diff] [blame] | 3329 | } else { |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3330 | Values.addNullPointer(ObjCTypes.ProtocolListPtrTy); |
Daniel Dunbar | eb1f9a2 | 2008-08-27 02:31:56 +0000 | [diff] [blame] | 3331 | } |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3332 | Values.addInt(ObjCTypes.IntTy, Size); |
Daniel Dunbar | 28e76ca | 2008-08-26 23:03:11 +0000 | [diff] [blame] | 3333 | |
| 3334 | // If there is no category @interface then there can be no properties. |
| 3335 | if (Category) { |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3336 | Values.add(EmitPropertyList("\01l_OBJC_$_PROP_LIST_" + ExtName.str(), |
| 3337 | OCD, Category, ObjCTypes, false)); |
| 3338 | Values.add(EmitPropertyList("\01l_OBJC_$_CLASS_PROP_LIST_" + ExtName.str(), |
| 3339 | OCD, Category, ObjCTypes, true)); |
Daniel Dunbar | 28e76ca | 2008-08-26 23:03:11 +0000 | [diff] [blame] | 3340 | } else { |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3341 | Values.addNullPointer(ObjCTypes.PropertyListPtrTy); |
| 3342 | Values.addNullPointer(ObjCTypes.PropertyListPtrTy); |
Daniel Dunbar | 28e76ca | 2008-08-26 23:03:11 +0000 | [diff] [blame] | 3343 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 3344 | |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 3345 | llvm::GlobalVariable *GV = |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3346 | CreateMetadataVar("OBJC_CATEGORY_" + ExtName.str(), Values, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 3347 | "__OBJC,__category,regular,no_dead_strip", |
| 3348 | CGM.getPointerAlign(), true); |
Daniel Dunbar | 938a77f | 2008-08-22 20:34:54 +0000 | [diff] [blame] | 3349 | DefinedCategories.push_back(GV); |
Justin Lebar | 5e83dfe | 2016-10-21 21:45:01 +0000 | [diff] [blame] | 3350 | DefinedCategoryNames.insert(llvm::CachedHashString(ExtName)); |
Fariborz Jahanian | c057794 | 2011-04-22 22:02:28 +0000 | [diff] [blame] | 3351 | // method definition entries must be clear for next implementation. |
| 3352 | MethodDefinitions.clear(); |
Daniel Dunbar | 303e2c2 | 2008-08-11 02:45:11 +0000 | [diff] [blame] | 3353 | } |
| 3354 | |
John McCall | ef19dbb | 2012-10-17 04:53:23 +0000 | [diff] [blame] | 3355 | enum FragileClassFlags { |
John McCall | 460ce58 | 2015-10-22 18:38:17 +0000 | [diff] [blame] | 3356 | /// Apparently: is not a meta-class. |
John McCall | ef19dbb | 2012-10-17 04:53:23 +0000 | [diff] [blame] | 3357 | FragileABI_Class_Factory = 0x00001, |
John McCall | 460ce58 | 2015-10-22 18:38:17 +0000 | [diff] [blame] | 3358 | |
| 3359 | /// Is a meta-class. |
John McCall | ef19dbb | 2012-10-17 04:53:23 +0000 | [diff] [blame] | 3360 | FragileABI_Class_Meta = 0x00002, |
John McCall | 460ce58 | 2015-10-22 18:38:17 +0000 | [diff] [blame] | 3361 | |
| 3362 | /// Has a non-trivial constructor or destructor. |
John McCall | ef19dbb | 2012-10-17 04:53:23 +0000 | [diff] [blame] | 3363 | FragileABI_Class_HasCXXStructors = 0x02000, |
John McCall | 460ce58 | 2015-10-22 18:38:17 +0000 | [diff] [blame] | 3364 | |
| 3365 | /// Has hidden visibility. |
John McCall | 09ec1ec | 2015-10-21 22:06:03 +0000 | [diff] [blame] | 3366 | FragileABI_Class_Hidden = 0x20000, |
John McCall | 460ce58 | 2015-10-22 18:38:17 +0000 | [diff] [blame] | 3367 | |
| 3368 | /// Class implementation was compiled under ARC. |
| 3369 | FragileABI_Class_CompiledByARC = 0x04000000, |
| 3370 | |
| 3371 | /// Class implementation was compiled under MRC and has MRC weak ivars. |
| 3372 | /// Exclusive with CompiledByARC. |
| 3373 | FragileABI_Class_HasMRCWeakIvars = 0x08000000, |
John McCall | ef19dbb | 2012-10-17 04:53:23 +0000 | [diff] [blame] | 3374 | }; |
| 3375 | |
| 3376 | enum NonFragileClassFlags { |
| 3377 | /// Is a meta-class. |
| 3378 | NonFragileABI_Class_Meta = 0x00001, |
| 3379 | |
| 3380 | /// Is a root class. |
| 3381 | NonFragileABI_Class_Root = 0x00002, |
| 3382 | |
John McCall | 460ce58 | 2015-10-22 18:38:17 +0000 | [diff] [blame] | 3383 | /// Has a non-trivial constructor or destructor. |
John McCall | ef19dbb | 2012-10-17 04:53:23 +0000 | [diff] [blame] | 3384 | NonFragileABI_Class_HasCXXStructors = 0x00004, |
| 3385 | |
| 3386 | /// Has hidden visibility. |
| 3387 | NonFragileABI_Class_Hidden = 0x00010, |
| 3388 | |
| 3389 | /// Has the exception attribute. |
| 3390 | NonFragileABI_Class_Exception = 0x00020, |
| 3391 | |
| 3392 | /// (Obsolete) ARC-specific: this class has a .release_ivars method |
| 3393 | NonFragileABI_Class_HasIvarReleaser = 0x00040, |
| 3394 | |
| 3395 | /// Class implementation was compiled under ARC. |
John McCall | 0d54a17 | 2012-10-17 04:53:31 +0000 | [diff] [blame] | 3396 | NonFragileABI_Class_CompiledByARC = 0x00080, |
| 3397 | |
| 3398 | /// Class has non-trivial destructors, but zero-initialization is okay. |
John McCall | 460ce58 | 2015-10-22 18:38:17 +0000 | [diff] [blame] | 3399 | NonFragileABI_Class_HasCXXDestructorOnly = 0x00100, |
| 3400 | |
| 3401 | /// Class implementation was compiled under MRC and has MRC weak ivars. |
| 3402 | /// Exclusive with CompiledByARC. |
| 3403 | NonFragileABI_Class_HasMRCWeakIvars = 0x00200, |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3404 | }; |
| 3405 | |
John McCall | 460ce58 | 2015-10-22 18:38:17 +0000 | [diff] [blame] | 3406 | static bool hasWeakMember(QualType type) { |
| 3407 | if (type.getObjCLifetime() == Qualifiers::OCL_Weak) { |
| 3408 | return true; |
| 3409 | } |
| 3410 | |
| 3411 | if (auto recType = type->getAs<RecordType>()) { |
| 3412 | for (auto field : recType->getDecl()->fields()) { |
| 3413 | if (hasWeakMember(field->getType())) |
| 3414 | return true; |
| 3415 | } |
| 3416 | } |
| 3417 | |
| 3418 | return false; |
| 3419 | } |
| 3420 | |
| 3421 | /// For compatibility, we only want to set the "HasMRCWeakIvars" flag |
| 3422 | /// (and actually fill in a layout string) if we really do have any |
| 3423 | /// __weak ivars. |
| 3424 | static bool hasMRCWeakIvars(CodeGenModule &CGM, |
| 3425 | const ObjCImplementationDecl *ID) { |
| 3426 | if (!CGM.getLangOpts().ObjCWeak) return false; |
| 3427 | assert(CGM.getLangOpts().getGC() == LangOptions::NonGC); |
| 3428 | |
| 3429 | for (const ObjCIvarDecl *ivar = |
| 3430 | ID->getClassInterface()->all_declared_ivar_begin(); |
| 3431 | ivar; ivar = ivar->getNextIvar()) { |
| 3432 | if (hasWeakMember(ivar->getType())) |
| 3433 | return true; |
| 3434 | } |
| 3435 | |
| 3436 | return false; |
| 3437 | } |
| 3438 | |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3439 | /* |
| 3440 | struct _objc_class { |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 3441 | Class isa; |
| 3442 | Class super_class; |
| 3443 | const char *name; |
| 3444 | long version; |
| 3445 | long info; |
| 3446 | long instance_size; |
| 3447 | struct _objc_ivar_list *ivars; |
| 3448 | struct _objc_method_list *methods; |
| 3449 | struct _objc_cache *cache; |
| 3450 | struct _objc_protocol_list *protocols; |
| 3451 | // Objective-C 1.0 extensions (<rdr://4585769>) |
| 3452 | const char *ivar_layout; |
| 3453 | struct _objc_class_ext *ext; |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3454 | }; |
| 3455 | |
| 3456 | See EmitClassExtension(); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 3457 | */ |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3458 | void CGObjCMac::GenerateClass(const ObjCImplementationDecl *ID) { |
Akira Hatanaka | 0c19446 | 2018-04-03 22:50:16 +0000 | [diff] [blame] | 3459 | IdentifierInfo *RuntimeName = |
| 3460 | &CGM.getContext().Idents.get(ID->getObjCRuntimeNameAsString()); |
| 3461 | DefinedSymbols.insert(RuntimeName); |
Daniel Dunbar | c61d0e9 | 2008-08-25 06:02:07 +0000 | [diff] [blame] | 3462 | |
Chris Lattner | 86d7d91 | 2008-11-24 03:54:41 +0000 | [diff] [blame] | 3463 | std::string ClassName = ID->getNameAsString(); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3464 | // FIXME: Gross |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 3465 | ObjCInterfaceDecl *Interface = |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3466 | const_cast<ObjCInterfaceDecl*>(ID->getClassInterface()); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 3467 | llvm::Constant *Protocols = |
Rafael Espindola | 8b27bdb | 2014-11-06 13:30:38 +0000 | [diff] [blame] | 3468 | EmitProtocolList("OBJC_CLASS_PROTOCOLS_" + ID->getName(), |
| 3469 | Interface->all_referenced_protocol_begin(), |
| 3470 | Interface->all_referenced_protocol_end()); |
John McCall | ef19dbb | 2012-10-17 04:53:23 +0000 | [diff] [blame] | 3471 | unsigned Flags = FragileABI_Class_Factory; |
John McCall | 0d54a17 | 2012-10-17 04:53:31 +0000 | [diff] [blame] | 3472 | if (ID->hasNonZeroConstructors() || ID->hasDestructors()) |
John McCall | ef19dbb | 2012-10-17 04:53:23 +0000 | [diff] [blame] | 3473 | Flags |= FragileABI_Class_HasCXXStructors; |
John McCall | 09ec1ec | 2015-10-21 22:06:03 +0000 | [diff] [blame] | 3474 | |
John McCall | 460ce58 | 2015-10-22 18:38:17 +0000 | [diff] [blame] | 3475 | bool hasMRCWeak = false; |
| 3476 | |
John McCall | 09ec1ec | 2015-10-21 22:06:03 +0000 | [diff] [blame] | 3477 | if (CGM.getLangOpts().ObjCAutoRefCount) |
| 3478 | Flags |= FragileABI_Class_CompiledByARC; |
John McCall | 460ce58 | 2015-10-22 18:38:17 +0000 | [diff] [blame] | 3479 | else if ((hasMRCWeak = hasMRCWeakIvars(CGM, ID))) |
| 3480 | Flags |= FragileABI_Class_HasMRCWeakIvars; |
John McCall | 09ec1ec | 2015-10-21 22:06:03 +0000 | [diff] [blame] | 3481 | |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 3482 | CharUnits Size = |
| 3483 | CGM.getContext().getASTObjCImplementationLayout(ID).getSize(); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3484 | |
| 3485 | // FIXME: Set CXX-structors flag. |
John McCall | 457a04e | 2010-10-22 21:05:15 +0000 | [diff] [blame] | 3486 | if (ID->getClassInterface()->getVisibility() == HiddenVisibility) |
John McCall | ef19dbb | 2012-10-17 04:53:23 +0000 | [diff] [blame] | 3487 | Flags |= FragileABI_Class_Hidden; |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3488 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3489 | enum { |
| 3490 | InstanceMethods, |
| 3491 | ClassMethods, |
| 3492 | NumMethodLists |
| 3493 | }; |
| 3494 | SmallVector<const ObjCMethodDecl *, 16> Methods[NumMethodLists]; |
| 3495 | for (const auto *MD : ID->methods()) { |
| 3496 | Methods[unsigned(MD->isClassMethod())].push_back(MD); |
| 3497 | } |
Daniel Dunbar | 3c76cb5 | 2008-08-26 21:51:14 +0000 | [diff] [blame] | 3498 | |
Aaron Ballman | d85eff4 | 2014-03-14 15:02:45 +0000 | [diff] [blame] | 3499 | for (const auto *PID : ID->property_impls()) { |
Daniel Dunbar | 3c76cb5 | 2008-08-26 21:51:14 +0000 | [diff] [blame] | 3500 | if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) { |
| 3501 | ObjCPropertyDecl *PD = PID->getPropertyDecl(); |
| 3502 | |
| 3503 | if (ObjCMethodDecl *MD = PD->getGetterMethodDecl()) |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3504 | if (GetMethodDefinition(MD)) |
| 3505 | Methods[InstanceMethods].push_back(MD); |
Daniel Dunbar | 3c76cb5 | 2008-08-26 21:51:14 +0000 | [diff] [blame] | 3506 | if (ObjCMethodDecl *MD = PD->getSetterMethodDecl()) |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3507 | if (GetMethodDefinition(MD)) |
| 3508 | Methods[InstanceMethods].push_back(MD); |
Daniel Dunbar | 3c76cb5 | 2008-08-26 21:51:14 +0000 | [diff] [blame] | 3509 | } |
| 3510 | } |
| 3511 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3512 | ConstantInitBuilder builder(CGM); |
| 3513 | auto values = builder.beginStruct(ObjCTypes.ClassTy); |
| 3514 | values.add(EmitMetaClass(ID, Protocols, Methods[ClassMethods])); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3515 | if (ObjCInterfaceDecl *Super = Interface->getSuperClass()) { |
Daniel Dunbar | c61d0e9 | 2008-08-25 06:02:07 +0000 | [diff] [blame] | 3516 | // Record a reference to the super class. |
| 3517 | LazySymbols.insert(Super->getIdentifier()); |
| 3518 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3519 | values.addBitCast(GetClassName(Super->getObjCRuntimeNameAsString()), |
| 3520 | ObjCTypes.ClassPtrTy); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3521 | } else { |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3522 | values.addNullPointer(ObjCTypes.ClassPtrTy); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3523 | } |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3524 | values.add(GetClassName(ID->getObjCRuntimeNameAsString())); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3525 | // Version is always 0. |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3526 | values.addInt(ObjCTypes.LongTy, 0); |
| 3527 | values.addInt(ObjCTypes.LongTy, Flags); |
| 3528 | values.addInt(ObjCTypes.LongTy, Size.getQuantity()); |
| 3529 | values.add(EmitIvarList(ID, false)); |
| 3530 | values.add(emitMethodList(ID->getName(), MethodListType::InstanceMethods, |
| 3531 | Methods[InstanceMethods])); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3532 | // cache is always NULL. |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3533 | values.addNullPointer(ObjCTypes.CachePtrTy); |
| 3534 | values.add(Protocols); |
| 3535 | values.add(BuildStrongIvarLayout(ID, CharUnits::Zero(), Size)); |
| 3536 | values.add(EmitClassExtension(ID, Size, hasMRCWeak, |
| 3537 | /*isMetaclass*/ false)); |
| 3538 | |
Rafael Espindola | 8b27bdb | 2014-11-06 13:30:38 +0000 | [diff] [blame] | 3539 | std::string Name("OBJC_CLASS_"); |
Fariborz Jahanian | eb80c98 | 2009-11-12 20:14:24 +0000 | [diff] [blame] | 3540 | Name += ClassName; |
| 3541 | const char *Section = "__OBJC,__class,regular,no_dead_strip"; |
| 3542 | // Check for a forward reference. |
Rafael Espindola | 554256c | 2014-02-26 22:25:45 +0000 | [diff] [blame] | 3543 | llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name, true); |
Fariborz Jahanian | eb80c98 | 2009-11-12 20:14:24 +0000 | [diff] [blame] | 3544 | if (GV) { |
| 3545 | assert(GV->getType()->getElementType() == ObjCTypes.ClassTy && |
| 3546 | "Forward metaclass reference has incorrect type."); |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3547 | values.finishAndSetAsInitializer(GV); |
Fariborz Jahanian | eb80c98 | 2009-11-12 20:14:24 +0000 | [diff] [blame] | 3548 | GV->setSection(Section); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 3549 | GV->setAlignment(CGM.getPointerAlign().getQuantity()); |
Rafael Espindola | 060062a | 2014-03-06 22:15:10 +0000 | [diff] [blame] | 3550 | CGM.addCompilerUsedGlobal(GV); |
Rafael Espindola | 21039aa | 2014-02-27 16:26:32 +0000 | [diff] [blame] | 3551 | } else |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3552 | GV = CreateMetadataVar(Name, values, Section, CGM.getPointerAlign(), true); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3553 | DefinedClasses.push_back(GV); |
Fariborz Jahanian | f322f2f | 2014-03-11 00:25:05 +0000 | [diff] [blame] | 3554 | ImplementedClasses.push_back(Interface); |
Fariborz Jahanian | c057794 | 2011-04-22 22:02:28 +0000 | [diff] [blame] | 3555 | // method definition entries must be clear for next implementation. |
| 3556 | MethodDefinitions.clear(); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3557 | } |
| 3558 | |
| 3559 | llvm::Constant *CGObjCMac::EmitMetaClass(const ObjCImplementationDecl *ID, |
| 3560 | llvm::Constant *Protocols, |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3561 | ArrayRef<const ObjCMethodDecl*> Methods) { |
John McCall | ef19dbb | 2012-10-17 04:53:23 +0000 | [diff] [blame] | 3562 | unsigned Flags = FragileABI_Class_Meta; |
Micah Villmow | dd31ca1 | 2012-10-08 16:25:52 +0000 | [diff] [blame] | 3563 | unsigned Size = CGM.getDataLayout().getTypeAllocSize(ObjCTypes.ClassTy); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3564 | |
John McCall | 457a04e | 2010-10-22 21:05:15 +0000 | [diff] [blame] | 3565 | if (ID->getClassInterface()->getVisibility() == HiddenVisibility) |
John McCall | ef19dbb | 2012-10-17 04:53:23 +0000 | [diff] [blame] | 3566 | Flags |= FragileABI_Class_Hidden; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 3567 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3568 | ConstantInitBuilder builder(CGM); |
| 3569 | auto values = builder.beginStruct(ObjCTypes.ClassTy); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3570 | // The isa for the metaclass is the root of the hierarchy. |
| 3571 | const ObjCInterfaceDecl *Root = ID->getClassInterface(); |
| 3572 | while (const ObjCInterfaceDecl *Super = Root->getSuperClass()) |
| 3573 | Root = Super; |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3574 | values.addBitCast(GetClassName(Root->getObjCRuntimeNameAsString()), |
| 3575 | ObjCTypes.ClassPtrTy); |
Daniel Dunbar | 938a77f | 2008-08-22 20:34:54 +0000 | [diff] [blame] | 3576 | // The super class for the metaclass is emitted as the name of the |
| 3577 | // super class. The runtime fixes this up to point to the |
| 3578 | // *metaclass* for the super class. |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3579 | if (ObjCInterfaceDecl *Super = ID->getClassInterface()->getSuperClass()) { |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3580 | values.addBitCast(GetClassName(Super->getObjCRuntimeNameAsString()), |
| 3581 | ObjCTypes.ClassPtrTy); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3582 | } else { |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3583 | values.addNullPointer(ObjCTypes.ClassPtrTy); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3584 | } |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3585 | values.add(GetClassName(ID->getObjCRuntimeNameAsString())); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3586 | // Version is always 0. |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3587 | values.addInt(ObjCTypes.LongTy, 0); |
| 3588 | values.addInt(ObjCTypes.LongTy, Flags); |
| 3589 | values.addInt(ObjCTypes.LongTy, Size); |
| 3590 | values.add(EmitIvarList(ID, true)); |
| 3591 | values.add(emitMethodList(ID->getName(), MethodListType::ClassMethods, |
| 3592 | Methods)); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3593 | // cache is always NULL. |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3594 | values.addNullPointer(ObjCTypes.CachePtrTy); |
| 3595 | values.add(Protocols); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3596 | // ivar_layout for metaclass is always NULL. |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3597 | values.addNullPointer(ObjCTypes.Int8PtrTy); |
Manman Ren | ad0e791 | 2016-01-29 19:22:54 +0000 | [diff] [blame] | 3598 | // The class extension is used to store class properties for metaclasses. |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3599 | values.add(EmitClassExtension(ID, CharUnits::Zero(), false/*hasMRCWeak*/, |
| 3600 | /*isMetaclass*/true)); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3601 | |
Rafael Espindola | 8b27bdb | 2014-11-06 13:30:38 +0000 | [diff] [blame] | 3602 | std::string Name("OBJC_METACLASS_"); |
Benjamin Kramer | 1bbcbd0 | 2012-07-31 11:45:39 +0000 | [diff] [blame] | 3603 | Name += ID->getName(); |
Daniel Dunbar | ca8531a | 2008-08-25 08:19:24 +0000 | [diff] [blame] | 3604 | |
| 3605 | // Check for a forward reference. |
Rafael Espindola | 554256c | 2014-02-26 22:25:45 +0000 | [diff] [blame] | 3606 | llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name, true); |
Daniel Dunbar | ca8531a | 2008-08-25 08:19:24 +0000 | [diff] [blame] | 3607 | if (GV) { |
| 3608 | assert(GV->getType()->getElementType() == ObjCTypes.ClassTy && |
| 3609 | "Forward metaclass reference has incorrect type."); |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3610 | values.finishAndSetAsInitializer(GV); |
Daniel Dunbar | ca8531a | 2008-08-25 08:19:24 +0000 | [diff] [blame] | 3611 | } else { |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3612 | GV = values.finishAndCreateGlobal(Name, CGM.getPointerAlign(), |
| 3613 | /*constant*/ false, |
| 3614 | llvm::GlobalValue::PrivateLinkage); |
Daniel Dunbar | ca8531a | 2008-08-25 08:19:24 +0000 | [diff] [blame] | 3615 | } |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3616 | GV->setSection("__OBJC,__meta_class,regular,no_dead_strip"); |
Rafael Espindola | 060062a | 2014-03-06 22:15:10 +0000 | [diff] [blame] | 3617 | CGM.addCompilerUsedGlobal(GV); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3618 | |
| 3619 | return GV; |
| 3620 | } |
| 3621 | |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 3622 | llvm::Constant *CGObjCMac::EmitMetaClassRef(const ObjCInterfaceDecl *ID) { |
Rafael Espindola | 8b27bdb | 2014-11-06 13:30:38 +0000 | [diff] [blame] | 3623 | std::string Name = "OBJC_METACLASS_" + ID->getNameAsString(); |
Daniel Dunbar | ca8531a | 2008-08-25 08:19:24 +0000 | [diff] [blame] | 3624 | |
Mike Stump | 18bb928 | 2009-05-16 07:57:57 +0000 | [diff] [blame] | 3625 | // FIXME: Should we look these up somewhere other than the module. Its a bit |
| 3626 | // silly since we only generate these while processing an implementation, so |
| 3627 | // exactly one pointer would work if know when we entered/exitted an |
| 3628 | // implementation block. |
Daniel Dunbar | ca8531a | 2008-08-25 08:19:24 +0000 | [diff] [blame] | 3629 | |
| 3630 | // Check for an existing forward reference. |
Fariborz Jahanian | 475831b | 2009-01-07 20:11:22 +0000 | [diff] [blame] | 3631 | // Previously, metaclass with internal linkage may have been defined. |
| 3632 | // pass 'true' as 2nd argument so it is returned. |
Rafael Espindola | 21039aa | 2014-02-27 16:26:32 +0000 | [diff] [blame] | 3633 | llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name, true); |
| 3634 | if (!GV) |
| 3635 | GV = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassTy, false, |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 3636 | llvm::GlobalValue::PrivateLinkage, nullptr, |
| 3637 | Name); |
Rafael Espindola | 21039aa | 2014-02-27 16:26:32 +0000 | [diff] [blame] | 3638 | |
| 3639 | assert(GV->getType()->getElementType() == ObjCTypes.ClassTy && |
| 3640 | "Forward metaclass reference has incorrect type."); |
Rafael Espindola | 21039aa | 2014-02-27 16:26:32 +0000 | [diff] [blame] | 3641 | return GV; |
Daniel Dunbar | ca8531a | 2008-08-25 08:19:24 +0000 | [diff] [blame] | 3642 | } |
| 3643 | |
Fariborz Jahanian | eb80c98 | 2009-11-12 20:14:24 +0000 | [diff] [blame] | 3644 | llvm::Value *CGObjCMac::EmitSuperClassRef(const ObjCInterfaceDecl *ID) { |
Rafael Espindola | 8b27bdb | 2014-11-06 13:30:38 +0000 | [diff] [blame] | 3645 | std::string Name = "OBJC_CLASS_" + ID->getNameAsString(); |
Rafael Espindola | 21039aa | 2014-02-27 16:26:32 +0000 | [diff] [blame] | 3646 | llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name, true); |
| 3647 | |
| 3648 | if (!GV) |
| 3649 | GV = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassTy, false, |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 3650 | llvm::GlobalValue::PrivateLinkage, nullptr, |
| 3651 | Name); |
Rafael Espindola | 21039aa | 2014-02-27 16:26:32 +0000 | [diff] [blame] | 3652 | |
| 3653 | assert(GV->getType()->getElementType() == ObjCTypes.ClassTy && |
| 3654 | "Forward class metadata reference has incorrect type."); |
Rafael Espindola | 21039aa | 2014-02-27 16:26:32 +0000 | [diff] [blame] | 3655 | return GV; |
Fariborz Jahanian | eb80c98 | 2009-11-12 20:14:24 +0000 | [diff] [blame] | 3656 | } |
| 3657 | |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3658 | /* |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 3659 | Emit a "class extension", which in this specific context means extra |
| 3660 | data that doesn't fit in the normal fragile-ABI class structure, and |
| 3661 | has nothing to do with the language concept of a class extension. |
| 3662 | |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3663 | struct objc_class_ext { |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 3664 | uint32_t size; |
| 3665 | const char *weak_ivar_layout; |
| 3666 | struct _objc_property_list *properties; |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3667 | }; |
| 3668 | */ |
| 3669 | llvm::Constant * |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 3670 | CGObjCMac::EmitClassExtension(const ObjCImplementationDecl *ID, |
Manman Ren | ad0e791 | 2016-01-29 19:22:54 +0000 | [diff] [blame] | 3671 | CharUnits InstanceSize, bool hasMRCWeakIvars, |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3672 | bool isMetaclass) { |
| 3673 | // Weak ivar layout. |
| 3674 | llvm::Constant *layout; |
| 3675 | if (isMetaclass) { |
| 3676 | layout = llvm::ConstantPointerNull::get(CGM.Int8PtrTy); |
| 3677 | } else { |
| 3678 | layout = BuildWeakIvarLayout(ID, CharUnits::Zero(), InstanceSize, |
| 3679 | hasMRCWeakIvars); |
| 3680 | } |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3681 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3682 | // Properties. |
| 3683 | llvm::Constant *propertyList = |
| 3684 | EmitPropertyList((isMetaclass ? Twine("\01l_OBJC_$_CLASS_PROP_LIST_") |
| 3685 | : Twine("\01l_OBJC_$_PROP_LIST_")) |
| 3686 | + ID->getName(), |
| 3687 | ID, ID->getClassInterface(), ObjCTypes, isMetaclass); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3688 | |
| 3689 | // Return null if no extension bits are used. |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3690 | if (layout->isNullValue() && propertyList->isNullValue()) { |
Owen Anderson | 0b75f23 | 2009-07-31 20:28:54 +0000 | [diff] [blame] | 3691 | return llvm::Constant::getNullValue(ObjCTypes.ClassExtensionPtrTy); |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3692 | } |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3693 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3694 | uint64_t size = |
| 3695 | CGM.getDataLayout().getTypeAllocSize(ObjCTypes.ClassExtensionTy); |
| 3696 | |
| 3697 | ConstantInitBuilder builder(CGM); |
| 3698 | auto values = builder.beginStruct(ObjCTypes.ClassExtensionTy); |
| 3699 | values.addInt(ObjCTypes.IntTy, size); |
| 3700 | values.add(layout); |
| 3701 | values.add(propertyList); |
| 3702 | |
| 3703 | return CreateMetadataVar("OBJC_CLASSEXT_" + ID->getName(), values, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 3704 | "__OBJC,__class_ext,regular,no_dead_strip", |
| 3705 | CGM.getPointerAlign(), true); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3706 | } |
| 3707 | |
| 3708 | /* |
| 3709 | struct objc_ivar { |
Bill Wendling | f1a3fca | 2012-02-22 09:30:11 +0000 | [diff] [blame] | 3710 | char *ivar_name; |
| 3711 | char *ivar_type; |
| 3712 | int ivar_offset; |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3713 | }; |
| 3714 | |
| 3715 | struct objc_ivar_list { |
Bill Wendling | f1a3fca | 2012-02-22 09:30:11 +0000 | [diff] [blame] | 3716 | int ivar_count; |
| 3717 | struct objc_ivar list[count]; |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3718 | }; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 3719 | */ |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3720 | llvm::Constant *CGObjCMac::EmitIvarList(const ObjCImplementationDecl *ID, |
Fariborz Jahanian | b042a59 | 2009-01-28 19:12:34 +0000 | [diff] [blame] | 3721 | bool ForClass) { |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3722 | // When emitting the root class GCC emits ivar entries for the |
| 3723 | // actual class structure. It is not clear if we need to follow this |
| 3724 | // behavior; for now lets try and get away with not doing it. If so, |
| 3725 | // the cleanest solution would be to make up an ObjCInterfaceDecl |
| 3726 | // for the class. |
| 3727 | if (ForClass) |
Owen Anderson | 0b75f23 | 2009-07-31 20:28:54 +0000 | [diff] [blame] | 3728 | return llvm::Constant::getNullValue(ObjCTypes.IvarListPtrTy); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 3729 | |
Jordy Rose | a91768e | 2011-07-22 02:08:32 +0000 | [diff] [blame] | 3730 | const ObjCInterfaceDecl *OID = ID->getClassInterface(); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 3731 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3732 | ConstantInitBuilder builder(CGM); |
| 3733 | auto ivarList = builder.beginStruct(); |
| 3734 | auto countSlot = ivarList.addPlaceholder(); |
| 3735 | auto ivars = ivarList.beginArray(ObjCTypes.IvarTy); |
| 3736 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 3737 | for (const ObjCIvarDecl *IVD = OID->all_declared_ivar_begin(); |
Fariborz Jahanian | b26d578 | 2011-06-28 18:05:25 +0000 | [diff] [blame] | 3738 | IVD; IVD = IVD->getNextIvar()) { |
Fariborz Jahanian | 7c80959 | 2009-06-04 01:19:09 +0000 | [diff] [blame] | 3739 | // Ignore unnamed bit-fields. |
| 3740 | if (!IVD->getDeclName()) |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 3741 | continue; |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3742 | |
| 3743 | auto ivar = ivars.beginStruct(ObjCTypes.IvarTy); |
| 3744 | ivar.add(GetMethodVarName(IVD->getIdentifier())); |
| 3745 | ivar.add(GetMethodVarType(IVD)); |
| 3746 | ivar.addInt(ObjCTypes.IntTy, ComputeIvarBaseOffset(CGM, OID, IVD)); |
| 3747 | ivar.finishAndAddTo(ivars); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3748 | } |
| 3749 | |
| 3750 | // Return null for empty list. |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3751 | auto count = ivars.size(); |
| 3752 | if (count == 0) { |
| 3753 | ivars.abandon(); |
| 3754 | ivarList.abandon(); |
Owen Anderson | 0b75f23 | 2009-07-31 20:28:54 +0000 | [diff] [blame] | 3755 | return llvm::Constant::getNullValue(ObjCTypes.IvarListPtrTy); |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3756 | } |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3757 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3758 | ivars.finishAndAddTo(ivarList); |
| 3759 | ivarList.fillPlaceholderWithInt(countSlot, ObjCTypes.IntTy, count); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3760 | |
Daniel Dunbar | c2d4b62 | 2009-03-09 21:49:58 +0000 | [diff] [blame] | 3761 | llvm::GlobalVariable *GV; |
| 3762 | if (ForClass) |
Rafael Espindola | 8b27bdb | 2014-11-06 13:30:38 +0000 | [diff] [blame] | 3763 | GV = |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3764 | CreateMetadataVar("OBJC_CLASS_VARIABLES_" + ID->getName(), ivarList, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 3765 | "__OBJC,__class_vars,regular,no_dead_strip", |
| 3766 | CGM.getPointerAlign(), true); |
Daniel Dunbar | c2d4b62 | 2009-03-09 21:49:58 +0000 | [diff] [blame] | 3767 | else |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3768 | GV = CreateMetadataVar("OBJC_INSTANCE_VARIABLES_" + ID->getName(), ivarList, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 3769 | "__OBJC,__instance_vars,regular,no_dead_strip", |
| 3770 | CGM.getPointerAlign(), true); |
Owen Anderson | ade90fd | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 3771 | return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.IvarListPtrTy); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3772 | } |
| 3773 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3774 | /// Build a struct objc_method_description constant for the given method. |
| 3775 | /// |
| 3776 | /// struct objc_method_description { |
| 3777 | /// SEL method_name; |
| 3778 | /// char *method_types; |
| 3779 | /// }; |
| 3780 | void CGObjCMac::emitMethodDescriptionConstant(ConstantArrayBuilder &builder, |
| 3781 | const ObjCMethodDecl *MD) { |
| 3782 | auto description = builder.beginStruct(ObjCTypes.MethodDescriptionTy); |
| 3783 | description.addBitCast(GetMethodVarName(MD->getSelector()), |
| 3784 | ObjCTypes.SelectorPtrTy); |
| 3785 | description.add(GetMethodVarType(MD)); |
| 3786 | description.finishAndAddTo(builder); |
Daniel Dunbar | 3c76cb5 | 2008-08-26 21:51:14 +0000 | [diff] [blame] | 3787 | } |
| 3788 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3789 | /// Build a struct objc_method constant for the given method. |
| 3790 | /// |
| 3791 | /// struct objc_method { |
| 3792 | /// SEL method_name; |
| 3793 | /// char *method_types; |
| 3794 | /// void *method; |
| 3795 | /// }; |
| 3796 | void CGObjCMac::emitMethodConstant(ConstantArrayBuilder &builder, |
| 3797 | const ObjCMethodDecl *MD) { |
| 3798 | llvm::Function *fn = GetMethodDefinition(MD); |
| 3799 | assert(fn && "no definition registered for method"); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3800 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3801 | auto method = builder.beginStruct(ObjCTypes.MethodTy); |
| 3802 | method.addBitCast(GetMethodVarName(MD->getSelector()), |
| 3803 | ObjCTypes.SelectorPtrTy); |
| 3804 | method.add(GetMethodVarType(MD)); |
| 3805 | method.addBitCast(fn, ObjCTypes.Int8PtrTy); |
| 3806 | method.finishAndAddTo(builder); |
| 3807 | } |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 3808 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3809 | /// Build a struct objc_method_list or struct objc_method_description_list, |
| 3810 | /// as appropriate. |
| 3811 | /// |
| 3812 | /// struct objc_method_list { |
| 3813 | /// struct objc_method_list *obsolete; |
| 3814 | /// int count; |
| 3815 | /// struct objc_method methods_list[count]; |
| 3816 | /// }; |
| 3817 | /// |
| 3818 | /// struct objc_method_description_list { |
| 3819 | /// int count; |
| 3820 | /// struct objc_method_description list[count]; |
| 3821 | /// }; |
Zachary Turner | 41a9ee9 | 2017-10-11 23:54:34 +0000 | [diff] [blame] | 3822 | llvm::Constant *CGObjCMac::emitMethodList(Twine name, MethodListType MLT, |
| 3823 | ArrayRef<const ObjCMethodDecl *> methods) { |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3824 | StringRef prefix; |
| 3825 | StringRef section; |
| 3826 | bool forProtocol = false; |
Saleem Abdulrasool | d48b0a3 | 2016-10-24 20:47:58 +0000 | [diff] [blame] | 3827 | switch (MLT) { |
| 3828 | case MethodListType::CategoryInstanceMethods: |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3829 | prefix = "OBJC_CATEGORY_INSTANCE_METHODS_"; |
| 3830 | section = "__OBJC,__cat_inst_meth,regular,no_dead_strip"; |
| 3831 | forProtocol = false; |
Saleem Abdulrasool | d48b0a3 | 2016-10-24 20:47:58 +0000 | [diff] [blame] | 3832 | break; |
| 3833 | case MethodListType::CategoryClassMethods: |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3834 | prefix = "OBJC_CATEGORY_CLASS_METHODS_"; |
| 3835 | section = "__OBJC,__cat_cls_meth,regular,no_dead_strip"; |
| 3836 | forProtocol = false; |
Saleem Abdulrasool | d48b0a3 | 2016-10-24 20:47:58 +0000 | [diff] [blame] | 3837 | break; |
| 3838 | case MethodListType::InstanceMethods: |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3839 | prefix = "OBJC_INSTANCE_METHODS_"; |
| 3840 | section = "__OBJC,__inst_meth,regular,no_dead_strip"; |
| 3841 | forProtocol = false; |
Saleem Abdulrasool | d48b0a3 | 2016-10-24 20:47:58 +0000 | [diff] [blame] | 3842 | break; |
| 3843 | case MethodListType::ClassMethods: |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3844 | prefix = "OBJC_CLASS_METHODS_"; |
| 3845 | section = "__OBJC,__cls_meth,regular,no_dead_strip"; |
| 3846 | forProtocol = false; |
Saleem Abdulrasool | d48b0a3 | 2016-10-24 20:47:58 +0000 | [diff] [blame] | 3847 | break; |
Saleem Abdulrasool | d48b0a3 | 2016-10-24 20:47:58 +0000 | [diff] [blame] | 3848 | case MethodListType::ProtocolInstanceMethods: |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3849 | prefix = "OBJC_PROTOCOL_INSTANCE_METHODS_"; |
| 3850 | section = "__OBJC,__cat_inst_meth,regular,no_dead_strip"; |
| 3851 | forProtocol = true; |
| 3852 | break; |
Saleem Abdulrasool | d48b0a3 | 2016-10-24 20:47:58 +0000 | [diff] [blame] | 3853 | case MethodListType::ProtocolClassMethods: |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3854 | prefix = "OBJC_PROTOCOL_CLASS_METHODS_"; |
| 3855 | section = "__OBJC,__cat_cls_meth,regular,no_dead_strip"; |
| 3856 | forProtocol = true; |
| 3857 | break; |
Saleem Abdulrasool | d48b0a3 | 2016-10-24 20:47:58 +0000 | [diff] [blame] | 3858 | case MethodListType::OptionalProtocolInstanceMethods: |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3859 | prefix = "OBJC_PROTOCOL_INSTANCE_METHODS_OPT_"; |
| 3860 | section = "__OBJC,__cat_inst_meth,regular,no_dead_strip"; |
| 3861 | forProtocol = true; |
| 3862 | break; |
Saleem Abdulrasool | d48b0a3 | 2016-10-24 20:47:58 +0000 | [diff] [blame] | 3863 | case MethodListType::OptionalProtocolClassMethods: |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3864 | prefix = "OBJC_PROTOCOL_CLASS_METHODS_OPT_"; |
| 3865 | section = "__OBJC,__cat_cls_meth,regular,no_dead_strip"; |
| 3866 | forProtocol = true; |
| 3867 | break; |
Saleem Abdulrasool | d48b0a3 | 2016-10-24 20:47:58 +0000 | [diff] [blame] | 3868 | } |
| 3869 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3870 | // Return null for empty list. |
| 3871 | if (methods.empty()) |
| 3872 | return llvm::Constant::getNullValue(forProtocol |
| 3873 | ? ObjCTypes.MethodDescriptionListPtrTy |
| 3874 | : ObjCTypes.MethodListPtrTy); |
| 3875 | |
| 3876 | // For protocols, this is an objc_method_description_list, which has |
| 3877 | // a slightly different structure. |
| 3878 | if (forProtocol) { |
| 3879 | ConstantInitBuilder builder(CGM); |
| 3880 | auto values = builder.beginStruct(); |
| 3881 | values.addInt(ObjCTypes.IntTy, methods.size()); |
| 3882 | auto methodArray = values.beginArray(ObjCTypes.MethodDescriptionTy); |
| 3883 | for (auto MD : methods) { |
| 3884 | emitMethodDescriptionConstant(methodArray, MD); |
| 3885 | } |
| 3886 | methodArray.finishAndAddTo(values); |
| 3887 | |
Zachary Turner | 41a9ee9 | 2017-10-11 23:54:34 +0000 | [diff] [blame] | 3888 | llvm::GlobalVariable *GV = CreateMetadataVar(prefix + name, values, section, |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3889 | CGM.getPointerAlign(), true); |
| 3890 | return llvm::ConstantExpr::getBitCast(GV, |
| 3891 | ObjCTypes.MethodDescriptionListPtrTy); |
| 3892 | } |
| 3893 | |
| 3894 | // Otherwise, it's an objc_method_list. |
| 3895 | ConstantInitBuilder builder(CGM); |
| 3896 | auto values = builder.beginStruct(); |
| 3897 | values.addNullPointer(ObjCTypes.Int8PtrTy); |
| 3898 | values.addInt(ObjCTypes.IntTy, methods.size()); |
| 3899 | auto methodArray = values.beginArray(ObjCTypes.MethodTy); |
| 3900 | for (auto MD : methods) { |
| 3901 | emitMethodConstant(methodArray, MD); |
| 3902 | } |
| 3903 | methodArray.finishAndAddTo(values); |
| 3904 | |
Zachary Turner | 41a9ee9 | 2017-10-11 23:54:34 +0000 | [diff] [blame] | 3905 | llvm::GlobalVariable *GV = CreateMetadataVar(prefix + name, values, section, |
Saleem Abdulrasool | d48b0a3 | 2016-10-24 20:47:58 +0000 | [diff] [blame] | 3906 | CGM.getPointerAlign(), true); |
Chris Lattner | e64d7ba | 2011-06-20 04:01:35 +0000 | [diff] [blame] | 3907 | return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.MethodListPtrTy); |
Daniel Dunbar | a94ecd2 | 2008-08-16 03:19:19 +0000 | [diff] [blame] | 3908 | } |
| 3909 | |
Fariborz Jahanian | 99113fd | 2009-01-26 21:38:32 +0000 | [diff] [blame] | 3910 | llvm::Function *CGObjCCommonMac::GenerateMethod(const ObjCMethodDecl *OMD, |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 3911 | const ObjCContainerDecl *CD) { |
Dylan Noblesmith | 2c1dd27 | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 3912 | SmallString<256> Name; |
Fariborz Jahanian | 0196a1c | 2009-01-10 21:06:09 +0000 | [diff] [blame] | 3913 | GetNameForMethod(OMD, CD, Name); |
Daniel Dunbar | a94ecd2 | 2008-08-16 03:19:19 +0000 | [diff] [blame] | 3914 | |
Daniel Dunbar | bf8c24a | 2009-02-02 23:23:47 +0000 | [diff] [blame] | 3915 | CodeGenTypes &Types = CGM.getTypes(); |
Chris Lattner | 2192fe5 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 3916 | llvm::FunctionType *MethodTy = |
John McCall | a729c62 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 3917 | Types.GetFunctionType(Types.arrangeObjCMethodDeclaration(OMD)); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 3918 | llvm::Function *Method = |
Daniel Dunbar | 7a95ca3 | 2008-09-10 04:01:49 +0000 | [diff] [blame] | 3919 | llvm::Function::Create(MethodTy, |
Daniel Dunbar | a94ecd2 | 2008-08-16 03:19:19 +0000 | [diff] [blame] | 3920 | llvm::GlobalValue::InternalLinkage, |
Daniel Dunbar | d238681 | 2009-10-19 01:21:19 +0000 | [diff] [blame] | 3921 | Name.str(), |
Daniel Dunbar | a94ecd2 | 2008-08-16 03:19:19 +0000 | [diff] [blame] | 3922 | &CGM.getModule()); |
Daniel Dunbar | 3c76cb5 | 2008-08-26 21:51:14 +0000 | [diff] [blame] | 3923 | MethodDefinitions.insert(std::make_pair(OMD, Method)); |
Daniel Dunbar | a94ecd2 | 2008-08-16 03:19:19 +0000 | [diff] [blame] | 3924 | |
Daniel Dunbar | a94ecd2 | 2008-08-16 03:19:19 +0000 | [diff] [blame] | 3925 | return Method; |
Daniel Dunbar | 303e2c2 | 2008-08-11 02:45:11 +0000 | [diff] [blame] | 3926 | } |
| 3927 | |
Zachary Turner | 41a9ee9 | 2017-10-11 23:54:34 +0000 | [diff] [blame] | 3928 | llvm::GlobalVariable *CGObjCCommonMac::CreateMetadataVar(Twine Name, |
| 3929 | ConstantStructBuilder &Init, |
| 3930 | StringRef Section, |
| 3931 | CharUnits Align, |
| 3932 | bool AddToUsed) { |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 3933 | llvm::GlobalVariable *GV = |
| 3934 | Init.finishAndCreateGlobal(Name, Align, /*constant*/ false, |
| 3935 | llvm::GlobalValue::PrivateLinkage); |
| 3936 | if (!Section.empty()) |
| 3937 | GV->setSection(Section); |
| 3938 | if (AddToUsed) |
| 3939 | CGM.addCompilerUsedGlobal(GV); |
| 3940 | return GV; |
| 3941 | } |
| 3942 | |
Zachary Turner | 41a9ee9 | 2017-10-11 23:54:34 +0000 | [diff] [blame] | 3943 | llvm::GlobalVariable *CGObjCCommonMac::CreateMetadataVar(Twine Name, |
Alp Toker | 541d507 | 2014-06-07 23:30:53 +0000 | [diff] [blame] | 3944 | llvm::Constant *Init, |
| 3945 | StringRef Section, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 3946 | CharUnits Align, |
Alp Toker | 541d507 | 2014-06-07 23:30:53 +0000 | [diff] [blame] | 3947 | bool AddToUsed) { |
Chris Lattner | 2192fe5 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 3948 | llvm::Type *Ty = Init->getType(); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 3949 | llvm::GlobalVariable *GV = |
Owen Anderson | c10c8d3 | 2009-07-08 19:05:04 +0000 | [diff] [blame] | 3950 | new llvm::GlobalVariable(CGM.getModule(), Ty, false, |
Rafael Espindola | 5179a4e | 2014-02-27 19:01:11 +0000 | [diff] [blame] | 3951 | llvm::GlobalValue::PrivateLinkage, Init, Name); |
Alp Toker | 541d507 | 2014-06-07 23:30:53 +0000 | [diff] [blame] | 3952 | if (!Section.empty()) |
Daniel Dunbar | 30c6536 | 2009-03-09 20:09:19 +0000 | [diff] [blame] | 3953 | GV->setSection(Section); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 3954 | GV->setAlignment(Align.getQuantity()); |
Daniel Dunbar | 463cc8a | 2009-03-09 20:50:13 +0000 | [diff] [blame] | 3955 | if (AddToUsed) |
Rafael Espindola | 060062a | 2014-03-06 22:15:10 +0000 | [diff] [blame] | 3956 | CGM.addCompilerUsedGlobal(GV); |
Daniel Dunbar | 30c6536 | 2009-03-09 20:09:19 +0000 | [diff] [blame] | 3957 | return GV; |
| 3958 | } |
| 3959 | |
Saleem Abdulrasool | 271106c | 2016-09-16 23:41:13 +0000 | [diff] [blame] | 3960 | llvm::GlobalVariable * |
Saleem Abdulrasool | 82f6add | 2016-09-20 18:38:54 +0000 | [diff] [blame] | 3961 | CGObjCCommonMac::CreateCStringLiteral(StringRef Name, ObjCLabelType Type, |
| 3962 | bool ForceNonFragileABI, |
| 3963 | bool NullTerminate) { |
Saleem Abdulrasool | 271106c | 2016-09-16 23:41:13 +0000 | [diff] [blame] | 3964 | StringRef Label; |
| 3965 | switch (Type) { |
| 3966 | case ObjCLabelType::ClassName: Label = "OBJC_CLASS_NAME_"; break; |
| 3967 | case ObjCLabelType::MethodVarName: Label = "OBJC_METH_VAR_NAME_"; break; |
| 3968 | case ObjCLabelType::MethodVarType: Label = "OBJC_METH_VAR_TYPE_"; break; |
| 3969 | case ObjCLabelType::PropertyName: Label = "OBJC_PROP_NAME_ATTR_"; break; |
| 3970 | } |
| 3971 | |
Saleem Abdulrasool | 82f6add | 2016-09-20 18:38:54 +0000 | [diff] [blame] | 3972 | bool NonFragile = ForceNonFragileABI || isNonFragileABI(); |
| 3973 | |
Saleem Abdulrasool | 271106c | 2016-09-16 23:41:13 +0000 | [diff] [blame] | 3974 | StringRef Section; |
| 3975 | switch (Type) { |
| 3976 | case ObjCLabelType::ClassName: |
Saleem Abdulrasool | 82f6add | 2016-09-20 18:38:54 +0000 | [diff] [blame] | 3977 | Section = NonFragile ? "__TEXT,__objc_classname,cstring_literals" |
| 3978 | : "__TEXT,__cstring,cstring_literals"; |
Saleem Abdulrasool | 271106c | 2016-09-16 23:41:13 +0000 | [diff] [blame] | 3979 | break; |
| 3980 | case ObjCLabelType::MethodVarName: |
Saleem Abdulrasool | 82f6add | 2016-09-20 18:38:54 +0000 | [diff] [blame] | 3981 | Section = NonFragile ? "__TEXT,__objc_methname,cstring_literals" |
| 3982 | : "__TEXT,__cstring,cstring_literals"; |
Saleem Abdulrasool | 271106c | 2016-09-16 23:41:13 +0000 | [diff] [blame] | 3983 | break; |
| 3984 | case ObjCLabelType::MethodVarType: |
Saleem Abdulrasool | 82f6add | 2016-09-20 18:38:54 +0000 | [diff] [blame] | 3985 | Section = NonFragile ? "__TEXT,__objc_methtype,cstring_literals" |
| 3986 | : "__TEXT,__cstring,cstring_literals"; |
Saleem Abdulrasool | 271106c | 2016-09-16 23:41:13 +0000 | [diff] [blame] | 3987 | break; |
| 3988 | case ObjCLabelType::PropertyName: |
| 3989 | Section = "__TEXT,__cstring,cstring_literals"; |
| 3990 | break; |
| 3991 | } |
| 3992 | |
Saleem Abdulrasool | 82f6add | 2016-09-20 18:38:54 +0000 | [diff] [blame] | 3993 | llvm::Constant *Value = |
| 3994 | llvm::ConstantDataArray::getString(VMContext, Name, NullTerminate); |
Saleem Abdulrasool | 271106c | 2016-09-16 23:41:13 +0000 | [diff] [blame] | 3995 | llvm::GlobalVariable *GV = |
Saleem Abdulrasool | 0c54dc8 | 2016-09-18 16:12:04 +0000 | [diff] [blame] | 3996 | new llvm::GlobalVariable(CGM.getModule(), Value->getType(), |
| 3997 | /*isConstant=*/true, |
Saleem Abdulrasool | 271106c | 2016-09-16 23:41:13 +0000 | [diff] [blame] | 3998 | llvm::GlobalValue::PrivateLinkage, Value, Label); |
Saleem Abdulrasool | 3f30751 | 2016-09-18 16:12:14 +0000 | [diff] [blame] | 3999 | if (CGM.getTriple().isOSBinFormatMachO()) |
| 4000 | GV->setSection(Section); |
| 4001 | GV->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global); |
Saleem Abdulrasool | 271106c | 2016-09-16 23:41:13 +0000 | [diff] [blame] | 4002 | GV->setAlignment(CharUnits::One().getQuantity()); |
| 4003 | CGM.addCompilerUsedGlobal(GV); |
| 4004 | |
| 4005 | return GV; |
| 4006 | } |
| 4007 | |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4008 | llvm::Function *CGObjCMac::ModuleInitFunction() { |
Daniel Dunbar | 3ad5348 | 2008-08-11 21:35:06 +0000 | [diff] [blame] | 4009 | // Abuse this interface function as a place to finalize. |
| 4010 | FinishModule(); |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 4011 | return nullptr; |
Daniel Dunbar | 303e2c2 | 2008-08-11 02:45:11 +0000 | [diff] [blame] | 4012 | } |
| 4013 | |
Chris Lattner | d480892 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 4014 | llvm::Constant *CGObjCMac::GetPropertyGetFunction() { |
Chris Lattner | ce8754e | 2009-04-22 02:44:54 +0000 | [diff] [blame] | 4015 | return ObjCTypes.getGetPropertyFn(); |
Daniel Dunbar | a91c3e0 | 2008-09-24 03:38:44 +0000 | [diff] [blame] | 4016 | } |
| 4017 | |
Chris Lattner | d480892 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 4018 | llvm::Constant *CGObjCMac::GetPropertySetFunction() { |
Chris Lattner | ce8754e | 2009-04-22 02:44:54 +0000 | [diff] [blame] | 4019 | return ObjCTypes.getSetPropertyFn(); |
Daniel Dunbar | a91c3e0 | 2008-09-24 03:38:44 +0000 | [diff] [blame] | 4020 | } |
| 4021 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 4022 | llvm::Constant *CGObjCMac::GetOptimizedPropertySetFunction(bool atomic, |
Ted Kremenek | e65b086 | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 4023 | bool copy) { |
| 4024 | return ObjCTypes.getOptimizedSetPropertyFn(atomic, copy); |
| 4025 | } |
| 4026 | |
David Chisnall | 168b80f | 2010-12-26 22:13:16 +0000 | [diff] [blame] | 4027 | llvm::Constant *CGObjCMac::GetGetStructFunction() { |
| 4028 | return ObjCTypes.getCopyStructFn(); |
| 4029 | } |
Eugene Zelenko | 0a4f3f4 | 2016-02-10 19:11:58 +0000 | [diff] [blame] | 4030 | |
David Chisnall | 168b80f | 2010-12-26 22:13:16 +0000 | [diff] [blame] | 4031 | llvm::Constant *CGObjCMac::GetSetStructFunction() { |
Fariborz Jahanian | 5a8c203 | 2010-04-12 18:18:10 +0000 | [diff] [blame] | 4032 | return ObjCTypes.getCopyStructFn(); |
| 4033 | } |
| 4034 | |
David Chisnall | 0d75e06 | 2012-12-17 18:54:24 +0000 | [diff] [blame] | 4035 | llvm::Constant *CGObjCMac::GetCppAtomicObjectGetFunction() { |
| 4036 | return ObjCTypes.getCppAtomicObjectFunction(); |
| 4037 | } |
Eugene Zelenko | 0a4f3f4 | 2016-02-10 19:11:58 +0000 | [diff] [blame] | 4038 | |
David Chisnall | 0d75e06 | 2012-12-17 18:54:24 +0000 | [diff] [blame] | 4039 | llvm::Constant *CGObjCMac::GetCppAtomicObjectSetFunction() { |
Fariborz Jahanian | 1e1b549 | 2012-01-06 18:07:23 +0000 | [diff] [blame] | 4040 | return ObjCTypes.getCppAtomicObjectFunction(); |
| 4041 | } |
| 4042 | |
Chris Lattner | d480892 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 4043 | llvm::Constant *CGObjCMac::EnumerationMutationFunction() { |
Chris Lattner | ce8754e | 2009-04-22 02:44:54 +0000 | [diff] [blame] | 4044 | return ObjCTypes.getEnumerationMutationFn(); |
Anders Carlsson | 3f35a26 | 2008-08-31 04:05:03 +0000 | [diff] [blame] | 4045 | } |
| 4046 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4047 | void CGObjCMac::EmitTryStmt(CodeGenFunction &CGF, const ObjCAtTryStmt &S) { |
| 4048 | return EmitTryOrSynchronizedStmt(CGF, S); |
| 4049 | } |
| 4050 | |
| 4051 | void CGObjCMac::EmitSynchronizedStmt(CodeGenFunction &CGF, |
| 4052 | const ObjCAtSynchronizedStmt &S) { |
| 4053 | return EmitTryOrSynchronizedStmt(CGF, S); |
| 4054 | } |
| 4055 | |
John McCall | 65bea08 | 2010-07-21 06:59:36 +0000 | [diff] [blame] | 4056 | namespace { |
David Blaikie | 7e70d68 | 2015-08-18 22:40:54 +0000 | [diff] [blame] | 4057 | struct PerformFragileFinally final : EHScopeStack::Cleanup { |
John McCall | 65bea08 | 2010-07-21 06:59:36 +0000 | [diff] [blame] | 4058 | const Stmt &S; |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 4059 | Address SyncArgSlot; |
| 4060 | Address CallTryExitVar; |
| 4061 | Address ExceptionData; |
John McCall | 65bea08 | 2010-07-21 06:59:36 +0000 | [diff] [blame] | 4062 | ObjCTypesHelper &ObjCTypes; |
| 4063 | PerformFragileFinally(const Stmt *S, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 4064 | Address SyncArgSlot, |
| 4065 | Address CallTryExitVar, |
| 4066 | Address ExceptionData, |
John McCall | 65bea08 | 2010-07-21 06:59:36 +0000 | [diff] [blame] | 4067 | ObjCTypesHelper *ObjCTypes) |
John McCall | 2dd7d44 | 2010-08-04 05:59:32 +0000 | [diff] [blame] | 4068 | : S(*S), SyncArgSlot(SyncArgSlot), CallTryExitVar(CallTryExitVar), |
John McCall | 65bea08 | 2010-07-21 06:59:36 +0000 | [diff] [blame] | 4069 | ExceptionData(ExceptionData), ObjCTypes(*ObjCTypes) {} |
| 4070 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 4071 | void Emit(CodeGenFunction &CGF, Flags flags) override { |
John McCall | 65bea08 | 2010-07-21 06:59:36 +0000 | [diff] [blame] | 4072 | // Check whether we need to call objc_exception_try_exit. |
| 4073 | // In optimized code, this branch will always be folded. |
| 4074 | llvm::BasicBlock *FinallyCallExit = |
| 4075 | CGF.createBasicBlock("finally.call_exit"); |
| 4076 | llvm::BasicBlock *FinallyNoCallExit = |
| 4077 | CGF.createBasicBlock("finally.no_call_exit"); |
| 4078 | CGF.Builder.CreateCondBr(CGF.Builder.CreateLoad(CallTryExitVar), |
| 4079 | FinallyCallExit, FinallyNoCallExit); |
| 4080 | |
| 4081 | CGF.EmitBlock(FinallyCallExit); |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 4082 | CGF.EmitNounwindRuntimeCall(ObjCTypes.getExceptionTryExitFn(), |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 4083 | ExceptionData.getPointer()); |
John McCall | 65bea08 | 2010-07-21 06:59:36 +0000 | [diff] [blame] | 4084 | |
| 4085 | CGF.EmitBlock(FinallyNoCallExit); |
| 4086 | |
| 4087 | if (isa<ObjCAtTryStmt>(S)) { |
| 4088 | if (const ObjCAtFinallyStmt* FinallyStmt = |
John McCall | cebe0ca | 2010-08-11 00:16:14 +0000 | [diff] [blame] | 4089 | cast<ObjCAtTryStmt>(S).getFinallyStmt()) { |
John McCall | 638d4f5 | 2013-04-03 00:56:07 +0000 | [diff] [blame] | 4090 | // Don't try to do the @finally if this is an EH cleanup. |
| 4091 | if (flags.isForEHCleanup()) return; |
| 4092 | |
John McCall | cebe0ca | 2010-08-11 00:16:14 +0000 | [diff] [blame] | 4093 | // Save the current cleanup destination in case there's |
| 4094 | // control flow inside the finally statement. |
| 4095 | llvm::Value *CurCleanupDest = |
| 4096 | CGF.Builder.CreateLoad(CGF.getNormalCleanupDestSlot()); |
| 4097 | |
John McCall | 65bea08 | 2010-07-21 06:59:36 +0000 | [diff] [blame] | 4098 | CGF.EmitStmt(FinallyStmt->getFinallyBody()); |
| 4099 | |
John McCall | cebe0ca | 2010-08-11 00:16:14 +0000 | [diff] [blame] | 4100 | if (CGF.HaveInsertPoint()) { |
| 4101 | CGF.Builder.CreateStore(CurCleanupDest, |
| 4102 | CGF.getNormalCleanupDestSlot()); |
| 4103 | } else { |
| 4104 | // Currently, the end of the cleanup must always exist. |
| 4105 | CGF.EnsureInsertPoint(); |
| 4106 | } |
| 4107 | } |
John McCall | 65bea08 | 2010-07-21 06:59:36 +0000 | [diff] [blame] | 4108 | } else { |
| 4109 | // Emit objc_sync_exit(expr); as finally's sole statement for |
| 4110 | // @synchronized. |
John McCall | 2dd7d44 | 2010-08-04 05:59:32 +0000 | [diff] [blame] | 4111 | llvm::Value *SyncArg = CGF.Builder.CreateLoad(SyncArgSlot); |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 4112 | CGF.EmitNounwindRuntimeCall(ObjCTypes.getSyncExitFn(), SyncArg); |
John McCall | 65bea08 | 2010-07-21 06:59:36 +0000 | [diff] [blame] | 4113 | } |
| 4114 | } |
| 4115 | }; |
John McCall | 42227ed | 2010-07-31 23:20:56 +0000 | [diff] [blame] | 4116 | |
| 4117 | class FragileHazards { |
| 4118 | CodeGenFunction &CGF; |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 4119 | SmallVector<llvm::Value*, 20> Locals; |
John McCall | 42227ed | 2010-07-31 23:20:56 +0000 | [diff] [blame] | 4120 | llvm::DenseSet<llvm::BasicBlock*> BlocksBeforeTry; |
| 4121 | |
| 4122 | llvm::InlineAsm *ReadHazard; |
| 4123 | llvm::InlineAsm *WriteHazard; |
| 4124 | |
| 4125 | llvm::FunctionType *GetAsmFnType(); |
| 4126 | |
| 4127 | void collectLocals(); |
| 4128 | void emitReadHazard(CGBuilderTy &Builder); |
| 4129 | |
| 4130 | public: |
| 4131 | FragileHazards(CodeGenFunction &CGF); |
John McCall | 2dd7d44 | 2010-08-04 05:59:32 +0000 | [diff] [blame] | 4132 | |
John McCall | 42227ed | 2010-07-31 23:20:56 +0000 | [diff] [blame] | 4133 | void emitWriteHazard(); |
John McCall | 2dd7d44 | 2010-08-04 05:59:32 +0000 | [diff] [blame] | 4134 | void emitHazardsInNewBlocks(); |
John McCall | 42227ed | 2010-07-31 23:20:56 +0000 | [diff] [blame] | 4135 | }; |
Eugene Zelenko | 0a4f3f4 | 2016-02-10 19:11:58 +0000 | [diff] [blame] | 4136 | } // end anonymous namespace |
John McCall | 42227ed | 2010-07-31 23:20:56 +0000 | [diff] [blame] | 4137 | |
| 4138 | /// Create the fragile-ABI read and write hazards based on the current |
| 4139 | /// state of the function, which is presumed to be immediately prior |
| 4140 | /// to a @try block. These hazards are used to maintain correct |
| 4141 | /// semantics in the face of optimization and the fragile ABI's |
| 4142 | /// cavalier use of setjmp/longjmp. |
| 4143 | FragileHazards::FragileHazards(CodeGenFunction &CGF) : CGF(CGF) { |
| 4144 | collectLocals(); |
| 4145 | |
| 4146 | if (Locals.empty()) return; |
| 4147 | |
| 4148 | // Collect all the blocks in the function. |
| 4149 | for (llvm::Function::iterator |
| 4150 | I = CGF.CurFn->begin(), E = CGF.CurFn->end(); I != E; ++I) |
| 4151 | BlocksBeforeTry.insert(&*I); |
| 4152 | |
| 4153 | llvm::FunctionType *AsmFnTy = GetAsmFnType(); |
| 4154 | |
| 4155 | // Create a read hazard for the allocas. This inhibits dead-store |
| 4156 | // optimizations and forces the values to memory. This hazard is |
| 4157 | // inserted before any 'throwing' calls in the protected scope to |
| 4158 | // reflect the possibility that the variables might be read from the |
| 4159 | // catch block if the call throws. |
| 4160 | { |
| 4161 | std::string Constraint; |
| 4162 | for (unsigned I = 0, E = Locals.size(); I != E; ++I) { |
| 4163 | if (I) Constraint += ','; |
| 4164 | Constraint += "*m"; |
| 4165 | } |
| 4166 | |
| 4167 | ReadHazard = llvm::InlineAsm::get(AsmFnTy, "", Constraint, true, false); |
| 4168 | } |
| 4169 | |
| 4170 | // Create a write hazard for the allocas. This inhibits folding |
| 4171 | // loads across the hazard. This hazard is inserted at the |
| 4172 | // beginning of the catch path to reflect the possibility that the |
| 4173 | // variables might have been written within the protected scope. |
| 4174 | { |
| 4175 | std::string Constraint; |
| 4176 | for (unsigned I = 0, E = Locals.size(); I != E; ++I) { |
| 4177 | if (I) Constraint += ','; |
| 4178 | Constraint += "=*m"; |
| 4179 | } |
| 4180 | |
| 4181 | WriteHazard = llvm::InlineAsm::get(AsmFnTy, "", Constraint, true, false); |
| 4182 | } |
| 4183 | } |
| 4184 | |
| 4185 | /// Emit a write hazard at the current location. |
| 4186 | void FragileHazards::emitWriteHazard() { |
| 4187 | if (Locals.empty()) return; |
| 4188 | |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 4189 | CGF.EmitNounwindRuntimeCall(WriteHazard, Locals); |
John McCall | 42227ed | 2010-07-31 23:20:56 +0000 | [diff] [blame] | 4190 | } |
| 4191 | |
John McCall | 42227ed | 2010-07-31 23:20:56 +0000 | [diff] [blame] | 4192 | void FragileHazards::emitReadHazard(CGBuilderTy &Builder) { |
| 4193 | assert(!Locals.empty()); |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 4194 | llvm::CallInst *call = Builder.CreateCall(ReadHazard, Locals); |
| 4195 | call->setDoesNotThrow(); |
| 4196 | call->setCallingConv(CGF.getRuntimeCC()); |
John McCall | 42227ed | 2010-07-31 23:20:56 +0000 | [diff] [blame] | 4197 | } |
| 4198 | |
| 4199 | /// Emit read hazards in all the protected blocks, i.e. all the blocks |
| 4200 | /// which have been inserted since the beginning of the try. |
John McCall | 2dd7d44 | 2010-08-04 05:59:32 +0000 | [diff] [blame] | 4201 | void FragileHazards::emitHazardsInNewBlocks() { |
John McCall | 42227ed | 2010-07-31 23:20:56 +0000 | [diff] [blame] | 4202 | if (Locals.empty()) return; |
| 4203 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 4204 | CGBuilderTy Builder(CGF, CGF.getLLVMContext()); |
John McCall | 42227ed | 2010-07-31 23:20:56 +0000 | [diff] [blame] | 4205 | |
| 4206 | // Iterate through all blocks, skipping those prior to the try. |
| 4207 | for (llvm::Function::iterator |
| 4208 | FI = CGF.CurFn->begin(), FE = CGF.CurFn->end(); FI != FE; ++FI) { |
| 4209 | llvm::BasicBlock &BB = *FI; |
| 4210 | if (BlocksBeforeTry.count(&BB)) continue; |
| 4211 | |
| 4212 | // Walk through all the calls in the block. |
| 4213 | for (llvm::BasicBlock::iterator |
| 4214 | BI = BB.begin(), BE = BB.end(); BI != BE; ++BI) { |
| 4215 | llvm::Instruction &I = *BI; |
| 4216 | |
| 4217 | // Ignore instructions that aren't non-intrinsic calls. |
| 4218 | // These are the only calls that can possibly call longjmp. |
| 4219 | if (!isa<llvm::CallInst>(I) && !isa<llvm::InvokeInst>(I)) continue; |
| 4220 | if (isa<llvm::IntrinsicInst>(I)) |
| 4221 | continue; |
| 4222 | |
| 4223 | // Ignore call sites marked nounwind. This may be questionable, |
| 4224 | // since 'nounwind' doesn't necessarily mean 'does not call longjmp'. |
| 4225 | llvm::CallSite CS(&I); |
| 4226 | if (CS.doesNotThrow()) continue; |
| 4227 | |
John McCall | 2dd7d44 | 2010-08-04 05:59:32 +0000 | [diff] [blame] | 4228 | // Insert a read hazard before the call. This will ensure that |
| 4229 | // any writes to the locals are performed before making the |
| 4230 | // call. If the call throws, then this is sufficient to |
| 4231 | // guarantee correctness as long as it doesn't also write to any |
| 4232 | // locals. |
John McCall | 42227ed | 2010-07-31 23:20:56 +0000 | [diff] [blame] | 4233 | Builder.SetInsertPoint(&BB, BI); |
| 4234 | emitReadHazard(Builder); |
| 4235 | } |
| 4236 | } |
| 4237 | } |
| 4238 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 4239 | static void addIfPresent(llvm::DenseSet<llvm::Value*> &S, Address V) { |
| 4240 | if (V.isValid()) S.insert(V.getPointer()); |
| 4241 | } |
| 4242 | |
John McCall | 42227ed | 2010-07-31 23:20:56 +0000 | [diff] [blame] | 4243 | void FragileHazards::collectLocals() { |
| 4244 | // Compute a set of allocas to ignore. |
| 4245 | llvm::DenseSet<llvm::Value*> AllocasToIgnore; |
| 4246 | addIfPresent(AllocasToIgnore, CGF.ReturnValue); |
| 4247 | addIfPresent(AllocasToIgnore, CGF.NormalCleanupDest); |
John McCall | 42227ed | 2010-07-31 23:20:56 +0000 | [diff] [blame] | 4248 | |
| 4249 | // Collect all the allocas currently in the function. This is |
| 4250 | // probably way too aggressive. |
| 4251 | llvm::BasicBlock &Entry = CGF.CurFn->getEntryBlock(); |
| 4252 | for (llvm::BasicBlock::iterator |
| 4253 | I = Entry.begin(), E = Entry.end(); I != E; ++I) |
| 4254 | if (isa<llvm::AllocaInst>(*I) && !AllocasToIgnore.count(&*I)) |
| 4255 | Locals.push_back(&*I); |
| 4256 | } |
| 4257 | |
| 4258 | llvm::FunctionType *FragileHazards::GetAsmFnType() { |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 4259 | SmallVector<llvm::Type *, 16> tys(Locals.size()); |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 4260 | for (unsigned i = 0, e = Locals.size(); i != e; ++i) |
| 4261 | tys[i] = Locals[i]->getType(); |
| 4262 | return llvm::FunctionType::get(CGF.VoidTy, tys, false); |
John McCall | 65bea08 | 2010-07-21 06:59:36 +0000 | [diff] [blame] | 4263 | } |
| 4264 | |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4265 | /* |
Daniel Dunbar | d3dcb4f8 | 2008-09-28 01:03:14 +0000 | [diff] [blame] | 4266 | |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4267 | Objective-C setjmp-longjmp (sjlj) Exception Handling |
| 4268 | -- |
Daniel Dunbar | d3dcb4f8 | 2008-09-28 01:03:14 +0000 | [diff] [blame] | 4269 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4270 | A catch buffer is a setjmp buffer plus: |
| 4271 | - a pointer to the exception that was caught |
| 4272 | - a pointer to the previous exception data buffer |
| 4273 | - two pointers of reserved storage |
| 4274 | Therefore catch buffers form a stack, with a pointer to the top |
| 4275 | of the stack kept in thread-local storage. |
| 4276 | |
| 4277 | objc_exception_try_enter pushes a catch buffer onto the EH stack. |
| 4278 | objc_exception_try_exit pops the given catch buffer, which is |
| 4279 | required to be the top of the EH stack. |
| 4280 | objc_exception_throw pops the top of the EH stack, writes the |
| 4281 | thrown exception into the appropriate field, and longjmps |
| 4282 | to the setjmp buffer. It crashes the process (with a printf |
| 4283 | and an abort()) if there are no catch buffers on the stack. |
| 4284 | objc_exception_extract just reads the exception pointer out of the |
| 4285 | catch buffer. |
| 4286 | |
| 4287 | There's no reason an implementation couldn't use a light-weight |
| 4288 | setjmp here --- something like __builtin_setjmp, but API-compatible |
| 4289 | with the heavyweight setjmp. This will be more important if we ever |
| 4290 | want to implement correct ObjC/C++ exception interactions for the |
| 4291 | fragile ABI. |
| 4292 | |
| 4293 | Note that for this use of setjmp/longjmp to be correct, we may need |
| 4294 | to mark some local variables volatile: if a non-volatile local |
| 4295 | variable is modified between the setjmp and the longjmp, it has |
| 4296 | indeterminate value. For the purposes of LLVM IR, it may be |
| 4297 | sufficient to make loads and stores within the @try (to variables |
| 4298 | declared outside the @try) volatile. This is necessary for |
| 4299 | optimized correctness, but is not currently being done; this is |
| 4300 | being tracked as rdar://problem/8160285 |
| 4301 | |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4302 | The basic framework for a @try-catch-finally is as follows: |
| 4303 | { |
Daniel Dunbar | d3dcb4f8 | 2008-09-28 01:03:14 +0000 | [diff] [blame] | 4304 | objc_exception_data d; |
| 4305 | id _rethrow = null; |
Anders Carlsson | da0e456 | 2009-02-07 21:26:04 +0000 | [diff] [blame] | 4306 | bool _call_try_exit = true; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4307 | |
Daniel Dunbar | d3dcb4f8 | 2008-09-28 01:03:14 +0000 | [diff] [blame] | 4308 | objc_exception_try_enter(&d); |
| 4309 | if (!setjmp(d.jmp_buf)) { |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4310 | ... try body ... |
Daniel Dunbar | d3dcb4f8 | 2008-09-28 01:03:14 +0000 | [diff] [blame] | 4311 | } else { |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4312 | // exception path |
| 4313 | id _caught = objc_exception_extract(&d); |
| 4314 | |
| 4315 | // enter new try scope for handlers |
| 4316 | if (!setjmp(d.jmp_buf)) { |
| 4317 | ... match exception and execute catch blocks ... |
| 4318 | |
| 4319 | // fell off end, rethrow. |
| 4320 | _rethrow = _caught; |
| 4321 | ... jump-through-finally to finally_rethrow ... |
| 4322 | } else { |
| 4323 | // exception in catch block |
| 4324 | _rethrow = objc_exception_extract(&d); |
| 4325 | _call_try_exit = false; |
| 4326 | ... jump-through-finally to finally_rethrow ... |
| 4327 | } |
Daniel Dunbar | d3dcb4f8 | 2008-09-28 01:03:14 +0000 | [diff] [blame] | 4328 | } |
Daniel Dunbar | 2efd538 | 2008-09-30 01:06:03 +0000 | [diff] [blame] | 4329 | ... jump-through-finally to finally_end ... |
Daniel Dunbar | d3dcb4f8 | 2008-09-28 01:03:14 +0000 | [diff] [blame] | 4330 | |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4331 | finally: |
Anders Carlsson | da0e456 | 2009-02-07 21:26:04 +0000 | [diff] [blame] | 4332 | if (_call_try_exit) |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4333 | objc_exception_try_exit(&d); |
Anders Carlsson | da0e456 | 2009-02-07 21:26:04 +0000 | [diff] [blame] | 4334 | |
Daniel Dunbar | d3dcb4f8 | 2008-09-28 01:03:14 +0000 | [diff] [blame] | 4335 | ... finally block .... |
Daniel Dunbar | 2efd538 | 2008-09-30 01:06:03 +0000 | [diff] [blame] | 4336 | ... dispatch to finally destination ... |
| 4337 | |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4338 | finally_rethrow: |
Daniel Dunbar | 2efd538 | 2008-09-30 01:06:03 +0000 | [diff] [blame] | 4339 | objc_exception_throw(_rethrow); |
| 4340 | |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4341 | finally_end: |
| 4342 | } |
Daniel Dunbar | d3dcb4f8 | 2008-09-28 01:03:14 +0000 | [diff] [blame] | 4343 | |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4344 | This framework differs slightly from the one gcc uses, in that gcc |
| 4345 | uses _rethrow to determine if objc_exception_try_exit should be called |
| 4346 | and if the object should be rethrown. This breaks in the face of |
| 4347 | throwing nil and introduces unnecessary branches. |
Daniel Dunbar | d3dcb4f8 | 2008-09-28 01:03:14 +0000 | [diff] [blame] | 4348 | |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4349 | We specialize this framework for a few particular circumstances: |
Daniel Dunbar | d3dcb4f8 | 2008-09-28 01:03:14 +0000 | [diff] [blame] | 4350 | |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4351 | - If there are no catch blocks, then we avoid emitting the second |
| 4352 | exception handling context. |
Daniel Dunbar | d3dcb4f8 | 2008-09-28 01:03:14 +0000 | [diff] [blame] | 4353 | |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4354 | - If there is a catch-all catch block (i.e. @catch(...) or @catch(id |
| 4355 | e)) we avoid emitting the code to rethrow an uncaught exception. |
Daniel Dunbar | d3dcb4f8 | 2008-09-28 01:03:14 +0000 | [diff] [blame] | 4356 | |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4357 | - FIXME: If there is no @finally block we can do a few more |
| 4358 | simplifications. |
Daniel Dunbar | d3dcb4f8 | 2008-09-28 01:03:14 +0000 | [diff] [blame] | 4359 | |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4360 | Rethrows and Jumps-Through-Finally |
| 4361 | -- |
Daniel Dunbar | d3dcb4f8 | 2008-09-28 01:03:14 +0000 | [diff] [blame] | 4362 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4363 | '@throw;' is supported by pushing the currently-caught exception |
| 4364 | onto ObjCEHStack while the @catch blocks are emitted. |
Daniel Dunbar | d3dcb4f8 | 2008-09-28 01:03:14 +0000 | [diff] [blame] | 4365 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4366 | Branches through the @finally block are handled with an ordinary |
| 4367 | normal cleanup. We do not register an EH cleanup; fragile-ABI ObjC |
| 4368 | exceptions are not compatible with C++ exceptions, and this is |
| 4369 | hardly the only place where this will go wrong. |
Daniel Dunbar | 2efd538 | 2008-09-30 01:06:03 +0000 | [diff] [blame] | 4370 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4371 | @synchronized(expr) { stmt; } is emitted as if it were: |
| 4372 | id synch_value = expr; |
| 4373 | objc_sync_enter(synch_value); |
| 4374 | @try { stmt; } @finally { objc_sync_exit(synch_value); } |
Daniel Dunbar | d3dcb4f8 | 2008-09-28 01:03:14 +0000 | [diff] [blame] | 4375 | */ |
| 4376 | |
Fariborz Jahanian | c2ad6dc | 2008-11-21 00:49:24 +0000 | [diff] [blame] | 4377 | void CGObjCMac::EmitTryOrSynchronizedStmt(CodeGen::CodeGenFunction &CGF, |
| 4378 | const Stmt &S) { |
| 4379 | bool isTry = isa<ObjCAtTryStmt>(S); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4380 | |
| 4381 | // A destination for the fall-through edges of the catch handlers to |
| 4382 | // jump to. |
| 4383 | CodeGenFunction::JumpDest FinallyEnd = |
| 4384 | CGF.getJumpDestInCurrentScope("finally.end"); |
| 4385 | |
| 4386 | // A destination for the rethrow edge of the catch handlers to jump |
| 4387 | // to. |
| 4388 | CodeGenFunction::JumpDest FinallyRethrow = |
| 4389 | CGF.getJumpDestInCurrentScope("finally.rethrow"); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4390 | |
Daniel Dunbar | 94ceb61 | 2009-02-24 01:43:46 +0000 | [diff] [blame] | 4391 | // For @synchronized, call objc_sync_enter(sync.expr). The |
| 4392 | // evaluation of the expression must occur before we enter the |
John McCall | 2dd7d44 | 2010-08-04 05:59:32 +0000 | [diff] [blame] | 4393 | // @synchronized. We can't avoid a temp here because we need the |
| 4394 | // value to be preserved. If the backend ever does liveness |
| 4395 | // correctly after setjmp, this will be unnecessary. |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 4396 | Address SyncArgSlot = Address::invalid(); |
Daniel Dunbar | 94ceb61 | 2009-02-24 01:43:46 +0000 | [diff] [blame] | 4397 | if (!isTry) { |
John McCall | 2dd7d44 | 2010-08-04 05:59:32 +0000 | [diff] [blame] | 4398 | llvm::Value *SyncArg = |
Daniel Dunbar | 94ceb61 | 2009-02-24 01:43:46 +0000 | [diff] [blame] | 4399 | CGF.EmitScalarExpr(cast<ObjCAtSynchronizedStmt>(S).getSynchExpr()); |
| 4400 | SyncArg = CGF.Builder.CreateBitCast(SyncArg, ObjCTypes.ObjectPtrTy); |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 4401 | CGF.EmitNounwindRuntimeCall(ObjCTypes.getSyncEnterFn(), SyncArg); |
John McCall | 2dd7d44 | 2010-08-04 05:59:32 +0000 | [diff] [blame] | 4402 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 4403 | SyncArgSlot = CGF.CreateTempAlloca(SyncArg->getType(), |
| 4404 | CGF.getPointerAlign(), "sync.arg"); |
John McCall | 2dd7d44 | 2010-08-04 05:59:32 +0000 | [diff] [blame] | 4405 | CGF.Builder.CreateStore(SyncArg, SyncArgSlot); |
Daniel Dunbar | 94ceb61 | 2009-02-24 01:43:46 +0000 | [diff] [blame] | 4406 | } |
Daniel Dunbar | 2efd538 | 2008-09-30 01:06:03 +0000 | [diff] [blame] | 4407 | |
John McCall | 2dd7d44 | 2010-08-04 05:59:32 +0000 | [diff] [blame] | 4408 | // Allocate memory for the setjmp buffer. This needs to be kept |
| 4409 | // live throughout the try and catch blocks. |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 4410 | Address ExceptionData = CGF.CreateTempAlloca(ObjCTypes.ExceptionDataTy, |
| 4411 | CGF.getPointerAlign(), |
| 4412 | "exceptiondata.ptr"); |
John McCall | 2dd7d44 | 2010-08-04 05:59:32 +0000 | [diff] [blame] | 4413 | |
John McCall | 42227ed | 2010-07-31 23:20:56 +0000 | [diff] [blame] | 4414 | // Create the fragile hazards. Note that this will not capture any |
| 4415 | // of the allocas required for exception processing, but will |
| 4416 | // capture the current basic block (which extends all the way to the |
| 4417 | // setjmp call) as "before the @try". |
| 4418 | FragileHazards Hazards(CGF); |
| 4419 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4420 | // Create a flag indicating whether the cleanup needs to call |
| 4421 | // objc_exception_try_exit. This is true except when |
| 4422 | // - no catches match and we're branching through the cleanup |
| 4423 | // just to rethrow the exception, or |
| 4424 | // - a catch matched and we're falling out of the catch handler. |
John McCall | 2dd7d44 | 2010-08-04 05:59:32 +0000 | [diff] [blame] | 4425 | // The setjmp-safety rule here is that we should always store to this |
| 4426 | // variable in a place that dominates the branch through the cleanup |
| 4427 | // without passing through any setjmps. |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 4428 | Address CallTryExitVar = CGF.CreateTempAlloca(CGF.Builder.getInt1Ty(), |
| 4429 | CharUnits::One(), |
| 4430 | "_call_try_exit"); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4431 | |
John McCall | 9916e3f | 2010-10-04 23:42:51 +0000 | [diff] [blame] | 4432 | // A slot containing the exception to rethrow. Only needed when we |
| 4433 | // have both a @catch and a @finally. |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 4434 | Address PropagatingExnVar = Address::invalid(); |
John McCall | 9916e3f | 2010-10-04 23:42:51 +0000 | [diff] [blame] | 4435 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4436 | // Push a normal cleanup to leave the try scope. |
John McCall | 638d4f5 | 2013-04-03 00:56:07 +0000 | [diff] [blame] | 4437 | CGF.EHStack.pushCleanup<PerformFragileFinally>(NormalAndEHCleanup, &S, |
John McCall | 2dd7d44 | 2010-08-04 05:59:32 +0000 | [diff] [blame] | 4438 | SyncArgSlot, |
John McCall | cda666c | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 4439 | CallTryExitVar, |
| 4440 | ExceptionData, |
| 4441 | &ObjCTypes); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4442 | |
| 4443 | // Enter a try block: |
| 4444 | // - Call objc_exception_try_enter to push ExceptionData on top of |
| 4445 | // the EH stack. |
Nico Weber | 6307cf0 | 2015-02-26 20:43:00 +0000 | [diff] [blame] | 4446 | CGF.EmitNounwindRuntimeCall(ObjCTypes.getExceptionTryEnterFn(), |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 4447 | ExceptionData.getPointer()); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4448 | |
| 4449 | // - Call setjmp on the exception data buffer. |
| 4450 | llvm::Constant *Zero = llvm::ConstantInt::get(CGF.Builder.getInt32Ty(), 0); |
| 4451 | llvm::Value *GEPIndexes[] = { Zero, Zero, Zero }; |
David Blaikie | 6b2a830 | 2015-04-03 17:47:16 +0000 | [diff] [blame] | 4452 | llvm::Value *SetJmpBuffer = CGF.Builder.CreateGEP( |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 4453 | ObjCTypes.ExceptionDataTy, ExceptionData.getPointer(), GEPIndexes, |
| 4454 | "setjmp_buffer"); |
Nico Weber | 6307cf0 | 2015-02-26 20:43:00 +0000 | [diff] [blame] | 4455 | llvm::CallInst *SetJmpResult = CGF.EmitNounwindRuntimeCall( |
| 4456 | ObjCTypes.getSetJmpFn(), SetJmpBuffer, "setjmp_result"); |
Bill Wendling | bd26cf9 | 2011-12-19 23:53:28 +0000 | [diff] [blame] | 4457 | SetJmpResult->setCanReturnTwice(); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4458 | |
| 4459 | // If setjmp returned 0, enter the protected block; otherwise, |
| 4460 | // branch to the handler. |
Daniel Dunbar | 75283ff | 2008-11-11 02:29:29 +0000 | [diff] [blame] | 4461 | llvm::BasicBlock *TryBlock = CGF.createBasicBlock("try"); |
| 4462 | llvm::BasicBlock *TryHandler = CGF.createBasicBlock("try.handler"); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4463 | llvm::Value *DidCatch = |
John McCall | cebe0ca | 2010-08-11 00:16:14 +0000 | [diff] [blame] | 4464 | CGF.Builder.CreateIsNotNull(SetJmpResult, "did_catch_exception"); |
| 4465 | CGF.Builder.CreateCondBr(DidCatch, TryHandler, TryBlock); |
Anders Carlsson | 4f1c7c3 | 2008-09-09 17:59:25 +0000 | [diff] [blame] | 4466 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4467 | // Emit the protected block. |
Anders Carlsson | 4f1c7c3 | 2008-09-09 17:59:25 +0000 | [diff] [blame] | 4468 | CGF.EmitBlock(TryBlock); |
John McCall | 2dd7d44 | 2010-08-04 05:59:32 +0000 | [diff] [blame] | 4469 | CGF.Builder.CreateStore(CGF.Builder.getTrue(), CallTryExitVar); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4470 | CGF.EmitStmt(isTry ? cast<ObjCAtTryStmt>(S).getTryBody() |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4471 | : cast<ObjCAtSynchronizedStmt>(S).getSynchBody()); |
John McCall | 2dd7d44 | 2010-08-04 05:59:32 +0000 | [diff] [blame] | 4472 | |
| 4473 | CGBuilderTy::InsertPoint TryFallthroughIP = CGF.Builder.saveAndClearIP(); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4474 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4475 | // Emit the exception handler block. |
Daniel Dunbar | 7f08678 | 2008-09-27 23:30:04 +0000 | [diff] [blame] | 4476 | CGF.EmitBlock(TryHandler); |
Daniel Dunbar | b22ff59 | 2008-09-27 07:03:52 +0000 | [diff] [blame] | 4477 | |
John McCall | 42227ed | 2010-07-31 23:20:56 +0000 | [diff] [blame] | 4478 | // Don't optimize loads of the in-scope locals across this point. |
| 4479 | Hazards.emitWriteHazard(); |
| 4480 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4481 | // For a @synchronized (or a @try with no catches), just branch |
| 4482 | // through the cleanup to the rethrow block. |
| 4483 | if (!isTry || !cast<ObjCAtTryStmt>(S).getNumCatchStmts()) { |
| 4484 | // Tell the cleanup not to re-pop the exit. |
John McCall | 2dd7d44 | 2010-08-04 05:59:32 +0000 | [diff] [blame] | 4485 | CGF.Builder.CreateStore(CGF.Builder.getFalse(), CallTryExitVar); |
Anders Carlsson | bfee7e9 | 2009-02-09 20:38:58 +0000 | [diff] [blame] | 4486 | CGF.EmitBranchThroughCleanup(FinallyRethrow); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4487 | |
| 4488 | // Otherwise, we have to match against the caught exceptions. |
| 4489 | } else { |
John McCall | 2dd7d44 | 2010-08-04 05:59:32 +0000 | [diff] [blame] | 4490 | // Retrieve the exception object. We may emit multiple blocks but |
| 4491 | // nothing can cross this so the value is already in SSA form. |
| 4492 | llvm::CallInst *Caught = |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 4493 | CGF.EmitNounwindRuntimeCall(ObjCTypes.getExceptionExtractFn(), |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 4494 | ExceptionData.getPointer(), "caught"); |
John McCall | 2dd7d44 | 2010-08-04 05:59:32 +0000 | [diff] [blame] | 4495 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4496 | // Push the exception to rethrow onto the EH value stack for the |
| 4497 | // benefit of any @throws in the handlers. |
| 4498 | CGF.ObjCEHValueStack.push_back(Caught); |
| 4499 | |
Douglas Gregor | 96c7949 | 2010-04-23 22:50:49 +0000 | [diff] [blame] | 4500 | const ObjCAtTryStmt* AtTryStmt = cast<ObjCAtTryStmt>(&S); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4501 | |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 4502 | bool HasFinally = (AtTryStmt->getFinallyStmt() != nullptr); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4503 | |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 4504 | llvm::BasicBlock *CatchBlock = nullptr; |
| 4505 | llvm::BasicBlock *CatchHandler = nullptr; |
John McCall | 2dd7d44 | 2010-08-04 05:59:32 +0000 | [diff] [blame] | 4506 | if (HasFinally) { |
John McCall | 9916e3f | 2010-10-04 23:42:51 +0000 | [diff] [blame] | 4507 | // Save the currently-propagating exception before |
| 4508 | // objc_exception_try_enter clears the exception slot. |
| 4509 | PropagatingExnVar = CGF.CreateTempAlloca(Caught->getType(), |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 4510 | CGF.getPointerAlign(), |
John McCall | 9916e3f | 2010-10-04 23:42:51 +0000 | [diff] [blame] | 4511 | "propagating_exception"); |
| 4512 | CGF.Builder.CreateStore(Caught, PropagatingExnVar); |
| 4513 | |
John McCall | 2dd7d44 | 2010-08-04 05:59:32 +0000 | [diff] [blame] | 4514 | // Enter a new exception try block (in case a @catch block |
| 4515 | // throws an exception). |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 4516 | CGF.EmitNounwindRuntimeCall(ObjCTypes.getExceptionTryEnterFn(), |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 4517 | ExceptionData.getPointer()); |
Anders Carlsson | 4f1c7c3 | 2008-09-09 17:59:25 +0000 | [diff] [blame] | 4518 | |
John McCall | 2dd7d44 | 2010-08-04 05:59:32 +0000 | [diff] [blame] | 4519 | llvm::CallInst *SetJmpResult = |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 4520 | CGF.EmitNounwindRuntimeCall(ObjCTypes.getSetJmpFn(), |
| 4521 | SetJmpBuffer, "setjmp.result"); |
Bill Wendling | bd26cf9 | 2011-12-19 23:53:28 +0000 | [diff] [blame] | 4522 | SetJmpResult->setCanReturnTwice(); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4523 | |
John McCall | 2dd7d44 | 2010-08-04 05:59:32 +0000 | [diff] [blame] | 4524 | llvm::Value *Threw = |
| 4525 | CGF.Builder.CreateIsNotNull(SetJmpResult, "did_catch_exception"); |
| 4526 | |
| 4527 | CatchBlock = CGF.createBasicBlock("catch"); |
| 4528 | CatchHandler = CGF.createBasicBlock("catch_for_catch"); |
| 4529 | CGF.Builder.CreateCondBr(Threw, CatchHandler, CatchBlock); |
| 4530 | |
| 4531 | CGF.EmitBlock(CatchBlock); |
| 4532 | } |
| 4533 | |
| 4534 | CGF.Builder.CreateStore(CGF.Builder.getInt1(HasFinally), CallTryExitVar); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4535 | |
Daniel Dunbar | b22ff59 | 2008-09-27 07:03:52 +0000 | [diff] [blame] | 4536 | // Handle catch list. As a special case we check if everything is |
| 4537 | // matched and avoid generating code for falling off the end if |
| 4538 | // so. |
| 4539 | bool AllMatched = false; |
Douglas Gregor | 96c7949 | 2010-04-23 22:50:49 +0000 | [diff] [blame] | 4540 | for (unsigned I = 0, N = AtTryStmt->getNumCatchStmts(); I != N; ++I) { |
| 4541 | const ObjCAtCatchStmt *CatchStmt = AtTryStmt->getCatchStmt(I); |
Anders Carlsson | 4f1c7c3 | 2008-09-09 17:59:25 +0000 | [diff] [blame] | 4542 | |
Douglas Gregor | 46a572b | 2010-04-26 16:46:50 +0000 | [diff] [blame] | 4543 | const VarDecl *CatchParam = CatchStmt->getCatchParamDecl(); |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 4544 | const ObjCObjectPointerType *OPT = nullptr; |
Daniel Dunbar | 523208f | 2008-09-27 07:36:24 +0000 | [diff] [blame] | 4545 | |
Anders Carlsson | 4f1c7c3 | 2008-09-09 17:59:25 +0000 | [diff] [blame] | 4546 | // catch(...) always matches. |
Daniel Dunbar | b22ff59 | 2008-09-27 07:03:52 +0000 | [diff] [blame] | 4547 | if (!CatchParam) { |
| 4548 | AllMatched = true; |
| 4549 | } else { |
John McCall | 9dd450b | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 4550 | OPT = CatchParam->getType()->getAs<ObjCObjectPointerType>(); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4551 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4552 | // catch(id e) always matches under this ABI, since only |
| 4553 | // ObjC exceptions end up here in the first place. |
Daniel Dunbar | 86919f4 | 2008-09-27 22:21:14 +0000 | [diff] [blame] | 4554 | // FIXME: For the time being we also match id<X>; this should |
| 4555 | // be rejected by Sema instead. |
Eli Friedman | 55179ca | 2009-07-11 00:57:02 +0000 | [diff] [blame] | 4556 | if (OPT && (OPT->isObjCIdType() || OPT->isObjCQualifiedIdType())) |
Daniel Dunbar | b22ff59 | 2008-09-27 07:03:52 +0000 | [diff] [blame] | 4557 | AllMatched = true; |
Anders Carlsson | 4f1c7c3 | 2008-09-09 17:59:25 +0000 | [diff] [blame] | 4558 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4559 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4560 | // If this is a catch-all, we don't need to test anything. |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4561 | if (AllMatched) { |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4562 | CodeGenFunction::RunCleanupsScope CatchVarCleanups(CGF); |
| 4563 | |
Anders Carlsson | 9396a89 | 2008-09-11 09:15:33 +0000 | [diff] [blame] | 4564 | if (CatchParam) { |
John McCall | 1c9c3fd | 2010-10-15 04:57:14 +0000 | [diff] [blame] | 4565 | CGF.EmitAutoVarDecl(*CatchParam); |
Daniel Dunbar | 5c7e393 | 2008-11-11 23:11:34 +0000 | [diff] [blame] | 4566 | assert(CGF.HaveInsertPoint() && "DeclStmt destroyed insert point?"); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4567 | |
| 4568 | // These types work out because ConvertType(id) == i8*. |
John McCall | 17f0275 | 2015-10-30 00:56:02 +0000 | [diff] [blame] | 4569 | EmitInitOfCatchParam(CGF, Caught, CatchParam); |
Anders Carlsson | 9396a89 | 2008-09-11 09:15:33 +0000 | [diff] [blame] | 4570 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4571 | |
Anders Carlsson | 9396a89 | 2008-09-11 09:15:33 +0000 | [diff] [blame] | 4572 | CGF.EmitStmt(CatchStmt->getCatchBody()); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4573 | |
| 4574 | // The scope of the catch variable ends right here. |
| 4575 | CatchVarCleanups.ForceCleanup(); |
| 4576 | |
Anders Carlsson | bfee7e9 | 2009-02-09 20:38:58 +0000 | [diff] [blame] | 4577 | CGF.EmitBranchThroughCleanup(FinallyEnd); |
Anders Carlsson | 4f1c7c3 | 2008-09-09 17:59:25 +0000 | [diff] [blame] | 4578 | break; |
| 4579 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4580 | |
Steve Naroff | 7cae42b | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4581 | assert(OPT && "Unexpected non-object pointer type in @catch"); |
John McCall | 96fa484 | 2010-05-17 21:00:27 +0000 | [diff] [blame] | 4582 | const ObjCObjectType *ObjTy = OPT->getObjectType(); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4583 | |
| 4584 | // FIXME: @catch (Class c) ? |
John McCall | 96fa484 | 2010-05-17 21:00:27 +0000 | [diff] [blame] | 4585 | ObjCInterfaceDecl *IDecl = ObjTy->getInterface(); |
| 4586 | assert(IDecl && "Catch parameter must have Objective-C type!"); |
Anders Carlsson | 4f1c7c3 | 2008-09-09 17:59:25 +0000 | [diff] [blame] | 4587 | |
| 4588 | // Check if the @catch block matches the exception object. |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 4589 | llvm::Value *Class = EmitClassRef(CGF, IDecl); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4590 | |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 4591 | llvm::Value *matchArgs[] = { Class, Caught }; |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4592 | llvm::CallInst *Match = |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 4593 | CGF.EmitNounwindRuntimeCall(ObjCTypes.getExceptionMatchFn(), |
| 4594 | matchArgs, "match"); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4595 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4596 | llvm::BasicBlock *MatchedBlock = CGF.createBasicBlock("match"); |
| 4597 | llvm::BasicBlock *NextCatchBlock = CGF.createBasicBlock("catch.next"); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4598 | |
| 4599 | CGF.Builder.CreateCondBr(CGF.Builder.CreateIsNotNull(Match, "matched"), |
Daniel Dunbar | 7f08678 | 2008-09-27 23:30:04 +0000 | [diff] [blame] | 4600 | MatchedBlock, NextCatchBlock); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4601 | |
Anders Carlsson | 4f1c7c3 | 2008-09-09 17:59:25 +0000 | [diff] [blame] | 4602 | // Emit the @catch block. |
| 4603 | CGF.EmitBlock(MatchedBlock); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4604 | |
| 4605 | // Collect any cleanups for the catch variable. The scope lasts until |
| 4606 | // the end of the catch body. |
John McCall | 2dd7d44 | 2010-08-04 05:59:32 +0000 | [diff] [blame] | 4607 | CodeGenFunction::RunCleanupsScope CatchVarCleanups(CGF); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4608 | |
John McCall | 1c9c3fd | 2010-10-15 04:57:14 +0000 | [diff] [blame] | 4609 | CGF.EmitAutoVarDecl(*CatchParam); |
Daniel Dunbar | 5c7e393 | 2008-11-11 23:11:34 +0000 | [diff] [blame] | 4610 | assert(CGF.HaveInsertPoint() && "DeclStmt destroyed insert point?"); |
Daniel Dunbar | d3dcb4f8 | 2008-09-28 01:03:14 +0000 | [diff] [blame] | 4611 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4612 | // Initialize the catch variable. |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4613 | llvm::Value *Tmp = |
| 4614 | CGF.Builder.CreateBitCast(Caught, |
Benjamin Kramer | 76399eb | 2011-09-27 21:06:10 +0000 | [diff] [blame] | 4615 | CGF.ConvertType(CatchParam->getType())); |
John McCall | 17f0275 | 2015-10-30 00:56:02 +0000 | [diff] [blame] | 4616 | EmitInitOfCatchParam(CGF, Tmp, CatchParam); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4617 | |
Anders Carlsson | 9396a89 | 2008-09-11 09:15:33 +0000 | [diff] [blame] | 4618 | CGF.EmitStmt(CatchStmt->getCatchBody()); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4619 | |
| 4620 | // We're done with the catch variable. |
| 4621 | CatchVarCleanups.ForceCleanup(); |
| 4622 | |
Anders Carlsson | bfee7e9 | 2009-02-09 20:38:58 +0000 | [diff] [blame] | 4623 | CGF.EmitBranchThroughCleanup(FinallyEnd); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4624 | |
Anders Carlsson | 4f1c7c3 | 2008-09-09 17:59:25 +0000 | [diff] [blame] | 4625 | CGF.EmitBlock(NextCatchBlock); |
| 4626 | } |
| 4627 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4628 | CGF.ObjCEHValueStack.pop_back(); |
| 4629 | |
John McCall | 2dd7d44 | 2010-08-04 05:59:32 +0000 | [diff] [blame] | 4630 | // If nothing wanted anything to do with the caught exception, |
| 4631 | // kill the extract call. |
| 4632 | if (Caught->use_empty()) |
| 4633 | Caught->eraseFromParent(); |
| 4634 | |
| 4635 | if (!AllMatched) |
| 4636 | CGF.EmitBranchThroughCleanup(FinallyRethrow); |
| 4637 | |
| 4638 | if (HasFinally) { |
| 4639 | // Emit the exception handler for the @catch blocks. |
| 4640 | CGF.EmitBlock(CatchHandler); |
| 4641 | |
| 4642 | // In theory we might now need a write hazard, but actually it's |
| 4643 | // unnecessary because there's no local-accessing code between |
| 4644 | // the try's write hazard and here. |
| 4645 | //Hazards.emitWriteHazard(); |
| 4646 | |
John McCall | 9916e3f | 2010-10-04 23:42:51 +0000 | [diff] [blame] | 4647 | // Extract the new exception and save it to the |
| 4648 | // propagating-exception slot. |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 4649 | assert(PropagatingExnVar.isValid()); |
John McCall | 9916e3f | 2010-10-04 23:42:51 +0000 | [diff] [blame] | 4650 | llvm::CallInst *NewCaught = |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 4651 | CGF.EmitNounwindRuntimeCall(ObjCTypes.getExceptionExtractFn(), |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 4652 | ExceptionData.getPointer(), "caught"); |
John McCall | 9916e3f | 2010-10-04 23:42:51 +0000 | [diff] [blame] | 4653 | CGF.Builder.CreateStore(NewCaught, PropagatingExnVar); |
| 4654 | |
John McCall | 2dd7d44 | 2010-08-04 05:59:32 +0000 | [diff] [blame] | 4655 | // Don't pop the catch handler; the throw already did. |
| 4656 | CGF.Builder.CreateStore(CGF.Builder.getFalse(), CallTryExitVar); |
Anders Carlsson | bfee7e9 | 2009-02-09 20:38:58 +0000 | [diff] [blame] | 4657 | CGF.EmitBranchThroughCleanup(FinallyRethrow); |
Daniel Dunbar | b22ff59 | 2008-09-27 07:03:52 +0000 | [diff] [blame] | 4658 | } |
Anders Carlsson | 4f1c7c3 | 2008-09-09 17:59:25 +0000 | [diff] [blame] | 4659 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4660 | |
John McCall | 42227ed | 2010-07-31 23:20:56 +0000 | [diff] [blame] | 4661 | // Insert read hazards as required in the new blocks. |
John McCall | 2dd7d44 | 2010-08-04 05:59:32 +0000 | [diff] [blame] | 4662 | Hazards.emitHazardsInNewBlocks(); |
John McCall | 42227ed | 2010-07-31 23:20:56 +0000 | [diff] [blame] | 4663 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4664 | // Pop the cleanup. |
John McCall | 2dd7d44 | 2010-08-04 05:59:32 +0000 | [diff] [blame] | 4665 | CGF.Builder.restoreIP(TryFallthroughIP); |
| 4666 | if (CGF.HaveInsertPoint()) |
| 4667 | CGF.Builder.CreateStore(CGF.Builder.getTrue(), CallTryExitVar); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4668 | CGF.PopCleanupBlock(); |
John McCall | 2dd7d44 | 2010-08-04 05:59:32 +0000 | [diff] [blame] | 4669 | CGF.EmitBlock(FinallyEnd.getBlock(), true); |
Anders Carlsson | bfee7e9 | 2009-02-09 20:38:58 +0000 | [diff] [blame] | 4670 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4671 | // Emit the rethrow block. |
John McCall | 42227ed | 2010-07-31 23:20:56 +0000 | [diff] [blame] | 4672 | CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveAndClearIP(); |
John McCall | ad5d61e | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 4673 | CGF.EmitBlock(FinallyRethrow.getBlock(), true); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4674 | if (CGF.HaveInsertPoint()) { |
John McCall | 9916e3f | 2010-10-04 23:42:51 +0000 | [diff] [blame] | 4675 | // If we have a propagating-exception variable, check it. |
| 4676 | llvm::Value *PropagatingExn; |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 4677 | if (PropagatingExnVar.isValid()) { |
John McCall | 9916e3f | 2010-10-04 23:42:51 +0000 | [diff] [blame] | 4678 | PropagatingExn = CGF.Builder.CreateLoad(PropagatingExnVar); |
John McCall | 2dd7d44 | 2010-08-04 05:59:32 +0000 | [diff] [blame] | 4679 | |
John McCall | 9916e3f | 2010-10-04 23:42:51 +0000 | [diff] [blame] | 4680 | // Otherwise, just look in the buffer for the exception to throw. |
| 4681 | } else { |
| 4682 | llvm::CallInst *Caught = |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 4683 | CGF.EmitNounwindRuntimeCall(ObjCTypes.getExceptionExtractFn(), |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 4684 | ExceptionData.getPointer()); |
John McCall | 9916e3f | 2010-10-04 23:42:51 +0000 | [diff] [blame] | 4685 | PropagatingExn = Caught; |
| 4686 | } |
| 4687 | |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 4688 | CGF.EmitNounwindRuntimeCall(ObjCTypes.getExceptionThrowFn(), |
| 4689 | PropagatingExn); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4690 | CGF.Builder.CreateUnreachable(); |
Fariborz Jahanian | e2caaaa | 2008-11-21 19:21:53 +0000 | [diff] [blame] | 4691 | } |
Anders Carlsson | 4f1c7c3 | 2008-09-09 17:59:25 +0000 | [diff] [blame] | 4692 | |
John McCall | 42227ed | 2010-07-31 23:20:56 +0000 | [diff] [blame] | 4693 | CGF.Builder.restoreIP(SavedIP); |
Anders Carlsson | 1963b0c | 2008-09-09 10:04:29 +0000 | [diff] [blame] | 4694 | } |
| 4695 | |
| 4696 | void CGObjCMac::EmitThrowStmt(CodeGen::CodeGenFunction &CGF, |
Fariborz Jahanian | 1eab052 | 2013-01-10 19:02:56 +0000 | [diff] [blame] | 4697 | const ObjCAtThrowStmt &S, |
| 4698 | bool ClearInsertionPoint) { |
Anders Carlsson | e005aa1 | 2008-09-09 16:16:55 +0000 | [diff] [blame] | 4699 | llvm::Value *ExceptionAsObject; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4700 | |
Anders Carlsson | e005aa1 | 2008-09-09 16:16:55 +0000 | [diff] [blame] | 4701 | if (const Expr *ThrowExpr = S.getThrowExpr()) { |
John McCall | 248512a | 2011-10-01 10:32:24 +0000 | [diff] [blame] | 4702 | llvm::Value *Exception = CGF.EmitObjCThrowOperand(ThrowExpr); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4703 | ExceptionAsObject = |
Benjamin Kramer | 76399eb | 2011-09-27 21:06:10 +0000 | [diff] [blame] | 4704 | CGF.Builder.CreateBitCast(Exception, ObjCTypes.ObjectPtrTy); |
Anders Carlsson | e005aa1 | 2008-09-09 16:16:55 +0000 | [diff] [blame] | 4705 | } else { |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4706 | assert((!CGF.ObjCEHValueStack.empty() && CGF.ObjCEHValueStack.back()) && |
Daniel Dunbar | d3dcb4f8 | 2008-09-28 01:03:14 +0000 | [diff] [blame] | 4707 | "Unexpected rethrow outside @catch block."); |
Anders Carlsson | bf8a1be | 2009-02-07 21:37:21 +0000 | [diff] [blame] | 4708 | ExceptionAsObject = CGF.ObjCEHValueStack.back(); |
Anders Carlsson | e005aa1 | 2008-09-09 16:16:55 +0000 | [diff] [blame] | 4709 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4710 | |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 4711 | CGF.EmitRuntimeCall(ObjCTypes.getExceptionThrowFn(), ExceptionAsObject) |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 4712 | ->setDoesNotReturn(); |
Anders Carlsson | 4f1c7c3 | 2008-09-09 17:59:25 +0000 | [diff] [blame] | 4713 | CGF.Builder.CreateUnreachable(); |
Daniel Dunbar | 5c7e393 | 2008-11-11 23:11:34 +0000 | [diff] [blame] | 4714 | |
| 4715 | // Clear the insertion point to indicate we are in unreachable code. |
Fariborz Jahanian | 1eab052 | 2013-01-10 19:02:56 +0000 | [diff] [blame] | 4716 | if (ClearInsertionPoint) |
| 4717 | CGF.Builder.ClearInsertionPoint(); |
Anders Carlsson | 1963b0c | 2008-09-09 10:04:29 +0000 | [diff] [blame] | 4718 | } |
| 4719 | |
Fariborz Jahanian | 83f45b55 | 2008-11-18 22:37:34 +0000 | [diff] [blame] | 4720 | /// EmitObjCWeakRead - Code gen for loading value of a __weak |
Fariborz Jahanian | f5125d1 | 2008-11-18 21:45:40 +0000 | [diff] [blame] | 4721 | /// object: objc_read_weak (id *src) |
| 4722 | /// |
Fariborz Jahanian | 83f45b55 | 2008-11-18 22:37:34 +0000 | [diff] [blame] | 4723 | llvm::Value * CGObjCMac::EmitObjCWeakRead(CodeGen::CodeGenFunction &CGF, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 4724 | Address AddrWeakObj) { |
| 4725 | llvm::Type* DestTy = AddrWeakObj.getElementType(); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4726 | AddrWeakObj = CGF.Builder.CreateBitCast(AddrWeakObj, |
| 4727 | ObjCTypes.PtrObjectPtrTy); |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 4728 | llvm::Value *read_weak = |
| 4729 | CGF.EmitNounwindRuntimeCall(ObjCTypes.getGcReadWeakFn(), |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 4730 | AddrWeakObj.getPointer(), "weakread"); |
Eli Friedman | a374b68 | 2009-03-07 03:57:15 +0000 | [diff] [blame] | 4731 | read_weak = CGF.Builder.CreateBitCast(read_weak, DestTy); |
Fariborz Jahanian | f5125d1 | 2008-11-18 21:45:40 +0000 | [diff] [blame] | 4732 | return read_weak; |
| 4733 | } |
| 4734 | |
Fariborz Jahanian | 83f45b55 | 2008-11-18 22:37:34 +0000 | [diff] [blame] | 4735 | /// EmitObjCWeakAssign - Code gen for assigning to a __weak object. |
| 4736 | /// objc_assign_weak (id src, id *dst) |
| 4737 | /// |
| 4738 | void CGObjCMac::EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 4739 | llvm::Value *src, Address dst) { |
Chris Lattner | 2192fe5 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 4740 | llvm::Type * SrcTy = src->getType(); |
Fariborz Jahanian | aedcfa4 | 2009-03-23 19:10:40 +0000 | [diff] [blame] | 4741 | if (!isa<llvm::PointerType>(SrcTy)) { |
Micah Villmow | dd31ca1 | 2012-10-08 16:25:52 +0000 | [diff] [blame] | 4742 | unsigned Size = CGM.getDataLayout().getTypeAllocSize(SrcTy); |
Fariborz Jahanian | aedcfa4 | 2009-03-23 19:10:40 +0000 | [diff] [blame] | 4743 | assert(Size <= 8 && "does not support size > 8"); |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 4744 | src = (Size == 4) ? CGF.Builder.CreateBitCast(src, CGM.Int32Ty) |
| 4745 | : CGF.Builder.CreateBitCast(src, CGM.Int64Ty); |
Fariborz Jahanian | 1b074a3 | 2009-03-13 00:42:52 +0000 | [diff] [blame] | 4746 | src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy); |
| 4747 | } |
Fariborz Jahanian | 50a1270 | 2008-11-19 17:34:06 +0000 | [diff] [blame] | 4748 | src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy); |
| 4749 | dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 4750 | llvm::Value *args[] = { src, dst.getPointer() }; |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 4751 | CGF.EmitNounwindRuntimeCall(ObjCTypes.getGcAssignWeakFn(), |
| 4752 | args, "weakassign"); |
Fariborz Jahanian | 83f45b55 | 2008-11-18 22:37:34 +0000 | [diff] [blame] | 4753 | } |
| 4754 | |
Fariborz Jahanian | d7db964 | 2008-11-19 00:59:10 +0000 | [diff] [blame] | 4755 | /// EmitObjCGlobalAssign - Code gen for assigning to a __strong object. |
| 4756 | /// objc_assign_global (id src, id *dst) |
| 4757 | /// |
| 4758 | void CGObjCMac::EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 4759 | llvm::Value *src, Address dst, |
Fariborz Jahanian | 217af24 | 2010-07-20 20:30:03 +0000 | [diff] [blame] | 4760 | bool threadlocal) { |
Chris Lattner | 2192fe5 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 4761 | llvm::Type * SrcTy = src->getType(); |
Fariborz Jahanian | aedcfa4 | 2009-03-23 19:10:40 +0000 | [diff] [blame] | 4762 | if (!isa<llvm::PointerType>(SrcTy)) { |
Micah Villmow | dd31ca1 | 2012-10-08 16:25:52 +0000 | [diff] [blame] | 4763 | unsigned Size = CGM.getDataLayout().getTypeAllocSize(SrcTy); |
Fariborz Jahanian | aedcfa4 | 2009-03-23 19:10:40 +0000 | [diff] [blame] | 4764 | assert(Size <= 8 && "does not support size > 8"); |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 4765 | src = (Size == 4) ? CGF.Builder.CreateBitCast(src, CGM.Int32Ty) |
| 4766 | : CGF.Builder.CreateBitCast(src, CGM.Int64Ty); |
Fariborz Jahanian | 1b074a3 | 2009-03-13 00:42:52 +0000 | [diff] [blame] | 4767 | src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy); |
| 4768 | } |
Fariborz Jahanian | 50a1270 | 2008-11-19 17:34:06 +0000 | [diff] [blame] | 4769 | src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy); |
| 4770 | dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 4771 | llvm::Value *args[] = { src, dst.getPointer() }; |
Fariborz Jahanian | 217af24 | 2010-07-20 20:30:03 +0000 | [diff] [blame] | 4772 | if (!threadlocal) |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 4773 | CGF.EmitNounwindRuntimeCall(ObjCTypes.getGcAssignGlobalFn(), |
| 4774 | args, "globalassign"); |
Fariborz Jahanian | 217af24 | 2010-07-20 20:30:03 +0000 | [diff] [blame] | 4775 | else |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 4776 | CGF.EmitNounwindRuntimeCall(ObjCTypes.getGcAssignThreadLocalFn(), |
| 4777 | args, "threadlocalassign"); |
Fariborz Jahanian | d7db964 | 2008-11-19 00:59:10 +0000 | [diff] [blame] | 4778 | } |
| 4779 | |
Fariborz Jahanian | e881b53 | 2008-11-20 19:23:36 +0000 | [diff] [blame] | 4780 | /// EmitObjCIvarAssign - Code gen for assigning to a __strong object. |
Fariborz Jahanian | 7a95d72 | 2009-09-24 22:25:38 +0000 | [diff] [blame] | 4781 | /// objc_assign_ivar (id src, id *dst, ptrdiff_t ivaroffset) |
Fariborz Jahanian | e881b53 | 2008-11-20 19:23:36 +0000 | [diff] [blame] | 4782 | /// |
| 4783 | void CGObjCMac::EmitObjCIvarAssign(CodeGen::CodeGenFunction &CGF, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 4784 | llvm::Value *src, Address dst, |
Fariborz Jahanian | 7a95d72 | 2009-09-24 22:25:38 +0000 | [diff] [blame] | 4785 | llvm::Value *ivarOffset) { |
| 4786 | assert(ivarOffset && "EmitObjCIvarAssign - ivarOffset is NULL"); |
Chris Lattner | 2192fe5 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 4787 | llvm::Type * SrcTy = src->getType(); |
Fariborz Jahanian | aedcfa4 | 2009-03-23 19:10:40 +0000 | [diff] [blame] | 4788 | if (!isa<llvm::PointerType>(SrcTy)) { |
Micah Villmow | dd31ca1 | 2012-10-08 16:25:52 +0000 | [diff] [blame] | 4789 | unsigned Size = CGM.getDataLayout().getTypeAllocSize(SrcTy); |
Fariborz Jahanian | aedcfa4 | 2009-03-23 19:10:40 +0000 | [diff] [blame] | 4790 | assert(Size <= 8 && "does not support size > 8"); |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 4791 | src = (Size == 4) ? CGF.Builder.CreateBitCast(src, CGM.Int32Ty) |
| 4792 | : CGF.Builder.CreateBitCast(src, CGM.Int64Ty); |
Fariborz Jahanian | 1b074a3 | 2009-03-13 00:42:52 +0000 | [diff] [blame] | 4793 | src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy); |
| 4794 | } |
Fariborz Jahanian | e881b53 | 2008-11-20 19:23:36 +0000 | [diff] [blame] | 4795 | src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy); |
| 4796 | dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 4797 | llvm::Value *args[] = { src, dst.getPointer(), ivarOffset }; |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 4798 | CGF.EmitNounwindRuntimeCall(ObjCTypes.getGcAssignIvarFn(), args); |
Fariborz Jahanian | e881b53 | 2008-11-20 19:23:36 +0000 | [diff] [blame] | 4799 | } |
| 4800 | |
Fariborz Jahanian | d7db964 | 2008-11-19 00:59:10 +0000 | [diff] [blame] | 4801 | /// EmitObjCStrongCastAssign - Code gen for assigning to a __strong cast object. |
| 4802 | /// objc_assign_strongCast (id src, id *dst) |
| 4803 | /// |
| 4804 | void CGObjCMac::EmitObjCStrongCastAssign(CodeGen::CodeGenFunction &CGF, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 4805 | llvm::Value *src, Address dst) { |
Chris Lattner | 2192fe5 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 4806 | llvm::Type * SrcTy = src->getType(); |
Fariborz Jahanian | aedcfa4 | 2009-03-23 19:10:40 +0000 | [diff] [blame] | 4807 | if (!isa<llvm::PointerType>(SrcTy)) { |
Micah Villmow | dd31ca1 | 2012-10-08 16:25:52 +0000 | [diff] [blame] | 4808 | unsigned Size = CGM.getDataLayout().getTypeAllocSize(SrcTy); |
Fariborz Jahanian | aedcfa4 | 2009-03-23 19:10:40 +0000 | [diff] [blame] | 4809 | assert(Size <= 8 && "does not support size > 8"); |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 4810 | src = (Size == 4) ? CGF.Builder.CreateBitCast(src, CGM.Int32Ty) |
| 4811 | : CGF.Builder.CreateBitCast(src, CGM.Int64Ty); |
Fariborz Jahanian | 1b074a3 | 2009-03-13 00:42:52 +0000 | [diff] [blame] | 4812 | src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy); |
| 4813 | } |
Fariborz Jahanian | 50a1270 | 2008-11-19 17:34:06 +0000 | [diff] [blame] | 4814 | src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy); |
| 4815 | dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 4816 | llvm::Value *args[] = { src, dst.getPointer() }; |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 4817 | CGF.EmitNounwindRuntimeCall(ObjCTypes.getGcAssignStrongCastFn(), |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 4818 | args, "strongassign"); |
Fariborz Jahanian | d7db964 | 2008-11-19 00:59:10 +0000 | [diff] [blame] | 4819 | } |
| 4820 | |
Fariborz Jahanian | 5f21d2f | 2009-07-08 01:18:33 +0000 | [diff] [blame] | 4821 | void CGObjCMac::EmitGCMemmoveCollectable(CodeGen::CodeGenFunction &CGF, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 4822 | Address DestPtr, |
| 4823 | Address SrcPtr, |
Fariborz Jahanian | 021510e | 2010-06-15 22:44:06 +0000 | [diff] [blame] | 4824 | llvm::Value *size) { |
Fariborz Jahanian | 5f21d2f | 2009-07-08 01:18:33 +0000 | [diff] [blame] | 4825 | SrcPtr = CGF.Builder.CreateBitCast(SrcPtr, ObjCTypes.Int8PtrTy); |
| 4826 | DestPtr = CGF.Builder.CreateBitCast(DestPtr, ObjCTypes.Int8PtrTy); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 4827 | llvm::Value *args[] = { DestPtr.getPointer(), SrcPtr.getPointer(), size }; |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 4828 | CGF.EmitNounwindRuntimeCall(ObjCTypes.GcMemmoveCollectableFn(), args); |
Fariborz Jahanian | 5f21d2f | 2009-07-08 01:18:33 +0000 | [diff] [blame] | 4829 | } |
| 4830 | |
Fariborz Jahanian | 9f84b78 | 2009-02-02 20:02:29 +0000 | [diff] [blame] | 4831 | /// EmitObjCValueForIvar - Code Gen for ivar reference. |
| 4832 | /// |
Fariborz Jahanian | 712bfa6 | 2009-02-03 19:03:09 +0000 | [diff] [blame] | 4833 | LValue CGObjCMac::EmitObjCValueForIvar(CodeGen::CodeGenFunction &CGF, |
| 4834 | QualType ObjectTy, |
| 4835 | llvm::Value *BaseValue, |
| 4836 | const ObjCIvarDecl *Ivar, |
Fariborz Jahanian | 712bfa6 | 2009-02-03 19:03:09 +0000 | [diff] [blame] | 4837 | unsigned CVRQualifiers) { |
John McCall | 8b07ec2 | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 4838 | const ObjCInterfaceDecl *ID = |
| 4839 | ObjectTy->getAs<ObjCObjectType>()->getInterface(); |
Daniel Dunbar | 9fd114d | 2009-04-22 07:32:20 +0000 | [diff] [blame] | 4840 | return EmitValueForIvarAtOffset(CGF, ID, BaseValue, Ivar, CVRQualifiers, |
| 4841 | EmitIvarOffset(CGF, ID, Ivar)); |
Fariborz Jahanian | 9f84b78 | 2009-02-02 20:02:29 +0000 | [diff] [blame] | 4842 | } |
| 4843 | |
Fariborz Jahanian | 21fc74c | 2009-02-10 19:02:04 +0000 | [diff] [blame] | 4844 | llvm::Value *CGObjCMac::EmitIvarOffset(CodeGen::CodeGenFunction &CGF, |
Daniel Dunbar | 722f424 | 2009-04-22 05:08:15 +0000 | [diff] [blame] | 4845 | const ObjCInterfaceDecl *Interface, |
Fariborz Jahanian | 21fc74c | 2009-02-10 19:02:04 +0000 | [diff] [blame] | 4846 | const ObjCIvarDecl *Ivar) { |
Eli Friedman | 8cbca20 | 2012-11-06 22:15:52 +0000 | [diff] [blame] | 4847 | uint64_t Offset = ComputeIvarBaseOffset(CGM, Interface, Ivar); |
| 4848 | return llvm::ConstantInt::get( |
| 4849 | CGM.getTypes().ConvertType(CGM.getContext().LongTy), |
| 4850 | Offset); |
Fariborz Jahanian | 21fc74c | 2009-02-10 19:02:04 +0000 | [diff] [blame] | 4851 | } |
| 4852 | |
Daniel Dunbar | 3ad5348 | 2008-08-11 21:35:06 +0000 | [diff] [blame] | 4853 | /* *** Private Interface *** */ |
| 4854 | |
Saleem Abdulrasool | 13d73d5 | 2017-06-03 16:18:09 +0000 | [diff] [blame] | 4855 | std::string CGObjCCommonMac::GetSectionName(StringRef Section, |
| 4856 | StringRef MachOAttributes) { |
| 4857 | switch (CGM.getTriple().getObjectFormat()) { |
| 4858 | default: |
| 4859 | llvm_unreachable("unexpected object file format"); |
| 4860 | case llvm::Triple::MachO: { |
| 4861 | if (MachOAttributes.empty()) |
| 4862 | return ("__DATA," + Section).str(); |
| 4863 | return ("__DATA," + Section + "," + MachOAttributes).str(); |
| 4864 | } |
| 4865 | case llvm::Triple::ELF: |
| 4866 | assert(Section.substr(0, 2) == "__" && |
| 4867 | "expected the name to begin with __"); |
| 4868 | return Section.substr(2).str(); |
| 4869 | case llvm::Triple::COFF: |
| 4870 | assert(Section.substr(0, 2) == "__" && |
| 4871 | "expected the name to begin with __"); |
| 4872 | return ("." + Section.substr(2) + "$B").str(); |
| 4873 | } |
| 4874 | } |
| 4875 | |
Daniel Dunbar | 3ad5348 | 2008-08-11 21:35:06 +0000 | [diff] [blame] | 4876 | /// EmitImageInfo - Emit the image info marker used to encode some module |
| 4877 | /// level information. |
| 4878 | /// |
| 4879 | /// See: <rdr://4810609&4810587&4810587> |
| 4880 | /// struct IMAGE_INFO { |
| 4881 | /// unsigned version; |
| 4882 | /// unsigned flags; |
| 4883 | /// }; |
| 4884 | enum ImageInfoFlags { |
Fariborz Jahanian | 39c17a8 | 2014-01-14 22:01:08 +0000 | [diff] [blame] | 4885 | eImageInfo_FixAndContinue = (1 << 0), // This flag is no longer set by clang. |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4886 | eImageInfo_GarbageCollected = (1 << 1), |
| 4887 | eImageInfo_GCOnly = (1 << 2), |
Fariborz Jahanian | 39c17a8 | 2014-01-14 22:01:08 +0000 | [diff] [blame] | 4888 | eImageInfo_OptimizedByDyld = (1 << 3), // This flag is set by the dyld shared cache. |
Daniel Dunbar | 75e909f | 2009-04-20 07:11:47 +0000 | [diff] [blame] | 4889 | |
Daniel Dunbar | 5e63927 | 2010-04-25 20:39:01 +0000 | [diff] [blame] | 4890 | // A flag indicating that the module has no instances of a @synthesize of a |
| 4891 | // superclass variable. <rdar://problem/6803242> |
Fariborz Jahanian | 39c17a8 | 2014-01-14 22:01:08 +0000 | [diff] [blame] | 4892 | eImageInfo_CorrectedSynthesize = (1 << 4), // This flag is no longer set by clang. |
Manman Ren | 96df0b3 | 2016-01-29 23:45:01 +0000 | [diff] [blame] | 4893 | eImageInfo_ImageIsSimulated = (1 << 5), |
| 4894 | eImageInfo_ClassProperties = (1 << 6) |
Daniel Dunbar | 3ad5348 | 2008-08-11 21:35:06 +0000 | [diff] [blame] | 4895 | }; |
| 4896 | |
Daniel Dunbar | 5e63927 | 2010-04-25 20:39:01 +0000 | [diff] [blame] | 4897 | void CGObjCCommonMac::EmitImageInfo() { |
Daniel Dunbar | 3ad5348 | 2008-08-11 21:35:06 +0000 | [diff] [blame] | 4898 | unsigned version = 0; // Version is unused? |
Saleem Abdulrasool | 13d73d5 | 2017-06-03 16:18:09 +0000 | [diff] [blame] | 4899 | std::string Section = |
| 4900 | (ObjCABI == 1) |
| 4901 | ? "__OBJC,__image_info,regular" |
| 4902 | : GetSectionName("__objc_imageinfo", "regular,no_dead_strip"); |
Daniel Dunbar | 3ad5348 | 2008-08-11 21:35:06 +0000 | [diff] [blame] | 4903 | |
Bill Wendling | b6f795e | 2012-02-16 01:13:30 +0000 | [diff] [blame] | 4904 | // Generate module-level named metadata to convey this information to the |
| 4905 | // linker and code-gen. |
| 4906 | llvm::Module &Mod = CGM.getModule(); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4907 | |
Bill Wendling | b6f795e | 2012-02-16 01:13:30 +0000 | [diff] [blame] | 4908 | // Add the ObjC ABI version to the module flags. |
| 4909 | Mod.addModuleFlag(llvm::Module::Error, "Objective-C Version", ObjCABI); |
| 4910 | Mod.addModuleFlag(llvm::Module::Error, "Objective-C Image Info Version", |
| 4911 | version); |
| 4912 | Mod.addModuleFlag(llvm::Module::Error, "Objective-C Image Info Section", |
Saleem Abdulrasool | 13d73d5 | 2017-06-03 16:18:09 +0000 | [diff] [blame] | 4913 | llvm::MDString::get(VMContext, Section)); |
Daniel Dunbar | 3ad5348 | 2008-08-11 21:35:06 +0000 | [diff] [blame] | 4914 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4915 | if (CGM.getLangOpts().getGC() == LangOptions::NonGC) { |
Bill Wendling | b6f795e | 2012-02-16 01:13:30 +0000 | [diff] [blame] | 4916 | // Non-GC overrides those files which specify GC. |
| 4917 | Mod.addModuleFlag(llvm::Module::Override, |
| 4918 | "Objective-C Garbage Collection", (uint32_t)0); |
| 4919 | } else { |
| 4920 | // Add the ObjC garbage collection value. |
| 4921 | Mod.addModuleFlag(llvm::Module::Error, |
| 4922 | "Objective-C Garbage Collection", |
| 4923 | eImageInfo_GarbageCollected); |
Daniel Dunbar | c2d4b62 | 2009-03-09 21:49:58 +0000 | [diff] [blame] | 4924 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4925 | if (CGM.getLangOpts().getGC() == LangOptions::GCOnly) { |
Bill Wendling | b6f795e | 2012-02-16 01:13:30 +0000 | [diff] [blame] | 4926 | // Add the ObjC GC Only value. |
| 4927 | Mod.addModuleFlag(llvm::Module::Error, "Objective-C GC Only", |
| 4928 | eImageInfo_GCOnly); |
| 4929 | |
| 4930 | // Require that GC be specified and set to eImageInfo_GarbageCollected. |
Duncan P. N. Exon Smith | fb49491 | 2014-12-09 18:39:32 +0000 | [diff] [blame] | 4931 | llvm::Metadata *Ops[2] = { |
| 4932 | llvm::MDString::get(VMContext, "Objective-C Garbage Collection"), |
| 4933 | llvm::ConstantAsMetadata::get(llvm::ConstantInt::get( |
| 4934 | llvm::Type::getInt32Ty(VMContext), eImageInfo_GarbageCollected))}; |
Bill Wendling | b6f795e | 2012-02-16 01:13:30 +0000 | [diff] [blame] | 4935 | Mod.addModuleFlag(llvm::Module::Require, "Objective-C GC Only", |
| 4936 | llvm::MDNode::get(VMContext, Ops)); |
| 4937 | } |
| 4938 | } |
Bill Wendling | 1e60a2c | 2012-04-24 11:04:57 +0000 | [diff] [blame] | 4939 | |
| 4940 | // Indicate whether we're compiling this to run on a simulator. |
Alex Lorenz | 6cdef0e | 2017-12-07 19:04:10 +0000 | [diff] [blame] | 4941 | if (CGM.getTarget().getTriple().isSimulatorEnvironment()) |
Bill Wendling | 1e60a2c | 2012-04-24 11:04:57 +0000 | [diff] [blame] | 4942 | Mod.addModuleFlag(llvm::Module::Error, "Objective-C Is Simulated", |
| 4943 | eImageInfo_ImageIsSimulated); |
Manman Ren | 96df0b3 | 2016-01-29 23:45:01 +0000 | [diff] [blame] | 4944 | |
| 4945 | // Indicate whether we are generating class properties. |
| 4946 | Mod.addModuleFlag(llvm::Module::Error, "Objective-C Class Properties", |
| 4947 | eImageInfo_ClassProperties); |
Daniel Dunbar | 3ad5348 | 2008-08-11 21:35:06 +0000 | [diff] [blame] | 4948 | } |
| 4949 | |
Daniel Dunbar | 7bd00bd | 2008-08-12 06:48:42 +0000 | [diff] [blame] | 4950 | // struct objc_module { |
| 4951 | // unsigned long version; |
| 4952 | // unsigned long size; |
| 4953 | // const char *name; |
| 4954 | // Symtab symtab; |
| 4955 | // }; |
| 4956 | |
| 4957 | // FIXME: Get from somewhere |
| 4958 | static const int ModuleVersion = 7; |
| 4959 | |
| 4960 | void CGObjCMac::EmitModuleInfo() { |
Micah Villmow | dd31ca1 | 2012-10-08 16:25:52 +0000 | [diff] [blame] | 4961 | uint64_t Size = CGM.getDataLayout().getTypeAllocSize(ObjCTypes.ModuleTy); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 4962 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 4963 | ConstantInitBuilder builder(CGM); |
| 4964 | auto values = builder.beginStruct(ObjCTypes.ModuleTy); |
| 4965 | values.addInt(ObjCTypes.LongTy, ModuleVersion); |
| 4966 | values.addInt(ObjCTypes.LongTy, Size); |
| 4967 | // This used to be the filename, now it is unused. <rdr://4327263> |
| 4968 | values.add(GetClassName(StringRef(""))); |
| 4969 | values.add(EmitModuleSymbols()); |
| 4970 | CreateMetadataVar("OBJC_MODULES", values, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 4971 | "__OBJC,__module_info,regular,no_dead_strip", |
| 4972 | CGM.getPointerAlign(), true); |
Daniel Dunbar | 7bd00bd | 2008-08-12 06:48:42 +0000 | [diff] [blame] | 4973 | } |
| 4974 | |
| 4975 | llvm::Constant *CGObjCMac::EmitModuleSymbols() { |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 4976 | unsigned NumClasses = DefinedClasses.size(); |
| 4977 | unsigned NumCategories = DefinedCategories.size(); |
| 4978 | |
Daniel Dunbar | c61d0e9 | 2008-08-25 06:02:07 +0000 | [diff] [blame] | 4979 | // Return null if no symbols were defined. |
| 4980 | if (!NumClasses && !NumCategories) |
Owen Anderson | 0b75f23 | 2009-07-31 20:28:54 +0000 | [diff] [blame] | 4981 | return llvm::Constant::getNullValue(ObjCTypes.SymtabPtrTy); |
Daniel Dunbar | c61d0e9 | 2008-08-25 06:02:07 +0000 | [diff] [blame] | 4982 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 4983 | ConstantInitBuilder builder(CGM); |
| 4984 | auto values = builder.beginStruct(); |
| 4985 | values.addInt(ObjCTypes.LongTy, 0); |
| 4986 | values.addNullPointer(ObjCTypes.SelectorPtrTy); |
| 4987 | values.addInt(ObjCTypes.ShortTy, NumClasses); |
| 4988 | values.addInt(ObjCTypes.ShortTy, NumCategories); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 4989 | |
Daniel Dunbar | 938a77f | 2008-08-22 20:34:54 +0000 | [diff] [blame] | 4990 | // The runtime expects exactly the list of defined classes followed |
| 4991 | // by the list of defined categories, in a single array. |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 4992 | auto array = values.beginArray(ObjCTypes.Int8PtrTy); |
Fariborz Jahanian | f322f2f | 2014-03-11 00:25:05 +0000 | [diff] [blame] | 4993 | for (unsigned i=0; i<NumClasses; i++) { |
| 4994 | const ObjCInterfaceDecl *ID = ImplementedClasses[i]; |
| 4995 | assert(ID); |
| 4996 | if (ObjCImplementationDecl *IMP = ID->getImplementation()) |
| 4997 | // We are implementing a weak imported interface. Give it external linkage |
| 4998 | if (ID->isWeakImported() && !IMP->isWeakImported()) |
| 4999 | DefinedClasses[i]->setLinkage(llvm::GlobalVariable::ExternalLinkage); |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 5000 | |
| 5001 | array.addBitCast(DefinedClasses[i], ObjCTypes.Int8PtrTy); |
Fariborz Jahanian | f322f2f | 2014-03-11 00:25:05 +0000 | [diff] [blame] | 5002 | } |
Daniel Dunbar | 938a77f | 2008-08-22 20:34:54 +0000 | [diff] [blame] | 5003 | for (unsigned i=0; i<NumCategories; i++) |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 5004 | array.addBitCast(DefinedCategories[i], ObjCTypes.Int8PtrTy); |
Daniel Dunbar | 938a77f | 2008-08-22 20:34:54 +0000 | [diff] [blame] | 5005 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 5006 | array.finishAndAddTo(values); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 5007 | |
Rafael Espindola | 8b27bdb | 2014-11-06 13:30:38 +0000 | [diff] [blame] | 5008 | llvm::GlobalVariable *GV = CreateMetadataVar( |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 5009 | "OBJC_SYMBOLS", values, "__OBJC,__symbols,regular,no_dead_strip", |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 5010 | CGM.getPointerAlign(), true); |
Owen Anderson | ade90fd | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 5011 | return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.SymtabPtrTy); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 5012 | } |
| 5013 | |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 5014 | llvm::Value *CGObjCMac::EmitClassRefFromId(CodeGenFunction &CGF, |
| 5015 | IdentifierInfo *II) { |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5016 | LazySymbols.insert(II); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 5017 | |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5018 | llvm::GlobalVariable *&Entry = ClassReferences[II]; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 5019 | |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 5020 | if (!Entry) { |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5021 | llvm::Constant *Casted = |
Fariborz Jahanian | 451b92a | 2014-07-16 16:16:04 +0000 | [diff] [blame] | 5022 | llvm::ConstantExpr::getBitCast(GetClassName(II->getName()), |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5023 | ObjCTypes.ClassPtrTy); |
Rafael Espindola | 8b27bdb | 2014-11-06 13:30:38 +0000 | [diff] [blame] | 5024 | Entry = CreateMetadataVar( |
| 5025 | "OBJC_CLASS_REFERENCES_", Casted, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 5026 | "__OBJC,__cls_refs,literal_pointers,no_dead_strip", |
| 5027 | CGM.getPointerAlign(), true); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 5028 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 5029 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 5030 | return CGF.Builder.CreateAlignedLoad(Entry, CGF.getPointerAlign()); |
Daniel Dunbar | 7bd00bd | 2008-08-12 06:48:42 +0000 | [diff] [blame] | 5031 | } |
| 5032 | |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 5033 | llvm::Value *CGObjCMac::EmitClassRef(CodeGenFunction &CGF, |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5034 | const ObjCInterfaceDecl *ID) { |
Douglas Gregor | 24ae22c | 2016-04-01 23:23:52 +0000 | [diff] [blame] | 5035 | // If the class has the objc_runtime_visible attribute, we need to |
| 5036 | // use the Objective-C runtime to get the class. |
| 5037 | if (ID->hasAttr<ObjCRuntimeVisibleAttr>()) |
| 5038 | return EmitClassRefViaRuntime(CGF, ID, ObjCTypes); |
| 5039 | |
Akira Hatanaka | 0c19446 | 2018-04-03 22:50:16 +0000 | [diff] [blame] | 5040 | IdentifierInfo *RuntimeName = |
| 5041 | &CGM.getContext().Idents.get(ID->getObjCRuntimeNameAsString()); |
| 5042 | return EmitClassRefFromId(CGF, RuntimeName); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5043 | } |
| 5044 | |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 5045 | llvm::Value *CGObjCMac::EmitNSAutoreleasePoolClassRef(CodeGenFunction &CGF) { |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5046 | IdentifierInfo *II = &CGM.getContext().Idents.get("NSAutoreleasePool"); |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 5047 | return EmitClassRefFromId(CGF, II); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 5048 | } |
| 5049 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 5050 | llvm::Value *CGObjCMac::EmitSelector(CodeGenFunction &CGF, Selector Sel) { |
| 5051 | return CGF.Builder.CreateLoad(EmitSelectorAddr(CGF, Sel)); |
| 5052 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5053 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 5054 | Address CGObjCMac::EmitSelectorAddr(CodeGenFunction &CGF, Selector Sel) { |
| 5055 | CharUnits Align = CGF.getPointerAlign(); |
| 5056 | |
| 5057 | llvm::GlobalVariable *&Entry = SelectorReferences[Sel]; |
Daniel Dunbar | cb515c8 | 2008-08-12 03:39:23 +0000 | [diff] [blame] | 5058 | if (!Entry) { |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5059 | llvm::Constant *Casted = |
Owen Anderson | ade90fd | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 5060 | llvm::ConstantExpr::getBitCast(GetMethodVarName(Sel), |
Daniel Dunbar | cb515c8 | 2008-08-12 03:39:23 +0000 | [diff] [blame] | 5061 | ObjCTypes.SelectorPtrTy); |
Rafael Espindola | 8b27bdb | 2014-11-06 13:30:38 +0000 | [diff] [blame] | 5062 | Entry = CreateMetadataVar( |
| 5063 | "OBJC_SELECTOR_REFERENCES_", Casted, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 5064 | "__OBJC,__message_refs,literal_pointers,no_dead_strip", Align, true); |
Michael Gottesman | 5c20596 | 2013-02-05 23:08:45 +0000 | [diff] [blame] | 5065 | Entry->setExternallyInitialized(true); |
Daniel Dunbar | cb515c8 | 2008-08-12 03:39:23 +0000 | [diff] [blame] | 5066 | } |
| 5067 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 5068 | return Address(Entry, Align); |
Daniel Dunbar | cb515c8 | 2008-08-12 03:39:23 +0000 | [diff] [blame] | 5069 | } |
| 5070 | |
Fariborz Jahanian | 451b92a | 2014-07-16 16:16:04 +0000 | [diff] [blame] | 5071 | llvm::Constant *CGObjCCommonMac::GetClassName(StringRef RuntimeName) { |
| 5072 | llvm::GlobalVariable *&Entry = ClassNames[RuntimeName]; |
| 5073 | if (!Entry) |
Saleem Abdulrasool | 271106c | 2016-09-16 23:41:13 +0000 | [diff] [blame] | 5074 | Entry = CreateCStringLiteral(RuntimeName, ObjCLabelType::ClassName); |
Fariborz Jahanian | 451b92a | 2014-07-16 16:16:04 +0000 | [diff] [blame] | 5075 | return getConstantGEP(VMContext, Entry, 0, 0); |
Daniel Dunbar | 7bd00bd | 2008-08-12 06:48:42 +0000 | [diff] [blame] | 5076 | } |
| 5077 | |
Argyrios Kyrtzidis | 13257c5 | 2010-08-09 10:54:20 +0000 | [diff] [blame] | 5078 | llvm::Function *CGObjCCommonMac::GetMethodDefinition(const ObjCMethodDecl *MD) { |
| 5079 | llvm::DenseMap<const ObjCMethodDecl*, llvm::Function*>::iterator |
| 5080 | I = MethodDefinitions.find(MD); |
| 5081 | if (I != MethodDefinitions.end()) |
| 5082 | return I->second; |
| 5083 | |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 5084 | return nullptr; |
Argyrios Kyrtzidis | 13257c5 | 2010-08-09 10:54:20 +0000 | [diff] [blame] | 5085 | } |
| 5086 | |
Fariborz Jahanian | 01dff42 | 2009-03-05 19:17:31 +0000 | [diff] [blame] | 5087 | /// GetIvarLayoutName - Returns a unique constant for the given |
| 5088 | /// ivar layout bitmap. |
| 5089 | llvm::Constant *CGObjCCommonMac::GetIvarLayoutName(IdentifierInfo *Ident, |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5090 | const ObjCCommonTypesHelper &ObjCTypes) { |
Owen Anderson | 0b75f23 | 2009-07-31 20:28:54 +0000 | [diff] [blame] | 5091 | return llvm::Constant::getNullValue(ObjCTypes.Int8PtrTy); |
Fariborz Jahanian | 01dff42 | 2009-03-05 19:17:31 +0000 | [diff] [blame] | 5092 | } |
| 5093 | |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 5094 | void IvarLayoutBuilder::visitRecord(const RecordType *RT, |
| 5095 | CharUnits offset) { |
Daniel Dunbar | 15bd888 | 2009-05-03 14:10:34 +0000 | [diff] [blame] | 5096 | const RecordDecl *RD = RT->getDecl(); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5097 | |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 5098 | // If this is a union, remember that we had one, because it might mess |
| 5099 | // up the ordering of layout entries. |
| 5100 | if (RD->isUnion()) |
| 5101 | IsDisordered = true; |
| 5102 | |
| 5103 | const ASTRecordLayout *recLayout = nullptr; |
| 5104 | visitAggregate(RD->field_begin(), RD->field_end(), offset, |
| 5105 | [&](const FieldDecl *field) -> CharUnits { |
| 5106 | if (!recLayout) |
| 5107 | recLayout = &CGM.getContext().getASTRecordLayout(RD); |
| 5108 | auto offsetInBits = recLayout->getFieldOffset(field->getFieldIndex()); |
| 5109 | return CGM.getContext().toCharUnitsFromBits(offsetInBits); |
| 5110 | }); |
Daniel Dunbar | 15bd888 | 2009-05-03 14:10:34 +0000 | [diff] [blame] | 5111 | } |
| 5112 | |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 5113 | template <class Iterator, class GetOffsetFn> |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 5114 | void IvarLayoutBuilder::visitAggregate(Iterator begin, Iterator end, |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 5115 | CharUnits aggregateOffset, |
| 5116 | const GetOffsetFn &getOffset) { |
| 5117 | for (; begin != end; ++begin) { |
| 5118 | auto field = *begin; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5119 | |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 5120 | // Skip over bitfields. |
| 5121 | if (field->isBitField()) { |
| 5122 | continue; |
| 5123 | } |
| 5124 | |
| 5125 | // Compute the offset of the field within the aggregate. |
| 5126 | CharUnits fieldOffset = aggregateOffset + getOffset(field); |
| 5127 | |
| 5128 | visitField(field, fieldOffset); |
| 5129 | } |
| 5130 | } |
| 5131 | |
| 5132 | /// Collect layout information for the given fields into IvarsInfo. |
| 5133 | void IvarLayoutBuilder::visitField(const FieldDecl *field, |
| 5134 | CharUnits fieldOffset) { |
| 5135 | QualType fieldType = field->getType(); |
| 5136 | |
| 5137 | // Drill down into arrays. |
| 5138 | uint64_t numElts = 1; |
Volodymyr Sapsai | 636ed47 | 2017-10-27 00:56:23 +0000 | [diff] [blame] | 5139 | if (auto arrayType = CGM.getContext().getAsIncompleteArrayType(fieldType)) { |
| 5140 | numElts = 0; |
| 5141 | fieldType = arrayType->getElementType(); |
| 5142 | } |
| 5143 | // Unlike incomplete arrays, constant arrays can be nested. |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 5144 | while (auto arrayType = CGM.getContext().getAsConstantArrayType(fieldType)) { |
| 5145 | numElts *= arrayType->getSize().getZExtValue(); |
| 5146 | fieldType = arrayType->getElementType(); |
| 5147 | } |
| 5148 | |
| 5149 | assert(!fieldType->isArrayType() && "ivar of non-constant array type?"); |
| 5150 | |
| 5151 | // If we ended up with a zero-sized array, we've done what we can do within |
| 5152 | // the limits of this layout encoding. |
| 5153 | if (numElts == 0) return; |
| 5154 | |
| 5155 | // Recurse if the base element type is a record type. |
| 5156 | if (auto recType = fieldType->getAs<RecordType>()) { |
| 5157 | size_t oldEnd = IvarsInfo.size(); |
| 5158 | |
| 5159 | visitRecord(recType, fieldOffset); |
| 5160 | |
| 5161 | // If we have an array, replicate the first entry's layout information. |
| 5162 | auto numEltEntries = IvarsInfo.size() - oldEnd; |
| 5163 | if (numElts != 1 && numEltEntries != 0) { |
| 5164 | CharUnits eltSize = CGM.getContext().getTypeSizeInChars(recType); |
| 5165 | for (uint64_t eltIndex = 1; eltIndex != numElts; ++eltIndex) { |
| 5166 | // Copy the last numEltEntries onto the end of the array, adjusting |
| 5167 | // each for the element size. |
| 5168 | for (size_t i = 0; i != numEltEntries; ++i) { |
| 5169 | auto firstEntry = IvarsInfo[oldEnd + i]; |
| 5170 | IvarsInfo.push_back(IvarInfo(firstEntry.Offset + eltIndex * eltSize, |
| 5171 | firstEntry.SizeInWords)); |
| 5172 | } |
| 5173 | } |
| 5174 | } |
| 5175 | |
Fariborz Jahanian | 524bb20 | 2009-03-10 16:22:08 +0000 | [diff] [blame] | 5176 | return; |
Fariborz Jahanian | 3b0f886 | 2009-03-11 00:07:04 +0000 | [diff] [blame] | 5177 | } |
Daniel Dunbar | 15bd888 | 2009-05-03 14:10:34 +0000 | [diff] [blame] | 5178 | |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 5179 | // Classify the element type. |
| 5180 | Qualifiers::GC GCAttr = GetGCAttrTypeForType(CGM.getContext(), fieldType); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5181 | |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 5182 | // If it matches what we're looking for, add an entry. |
| 5183 | if ((ForStrongLayout && GCAttr == Qualifiers::Strong) |
| 5184 | || (!ForStrongLayout && GCAttr == Qualifiers::Weak)) { |
| 5185 | assert(CGM.getContext().getTypeSizeInChars(fieldType) |
| 5186 | == CGM.getPointerSize()); |
| 5187 | IvarsInfo.push_back(IvarInfo(fieldOffset, numElts)); |
| 5188 | } |
Fariborz Jahanian | c559f3f | 2009-03-05 22:39:55 +0000 | [diff] [blame] | 5189 | } |
| 5190 | |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 5191 | /// buildBitmap - This routine does the horsework of taking the offsets of |
| 5192 | /// strong/weak references and creating a bitmap. The bitmap is also |
| 5193 | /// returned in the given buffer, suitable for being passed to \c dump(). |
| 5194 | llvm::Constant *IvarLayoutBuilder::buildBitmap(CGObjCCommonMac &CGObjC, |
| 5195 | llvm::SmallVectorImpl<unsigned char> &buffer) { |
| 5196 | // The bitmap is a series of skip/scan instructions, aligned to word |
| 5197 | // boundaries. The skip is performed first. |
| 5198 | const unsigned char MaxNibble = 0xF; |
| 5199 | const unsigned char SkipMask = 0xF0, SkipShift = 4; |
| 5200 | const unsigned char ScanMask = 0x0F, ScanShift = 0; |
Rafael Espindola | 8b27bdb | 2014-11-06 13:30:38 +0000 | [diff] [blame] | 5201 | |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 5202 | assert(!IvarsInfo.empty() && "generating bitmap for no data"); |
| 5203 | |
| 5204 | // Sort the ivar info on byte position in case we encounterred a |
| 5205 | // union nested in the ivar list. |
| 5206 | if (IsDisordered) { |
| 5207 | // This isn't a stable sort, but our algorithm should handle it fine. |
| 5208 | llvm::array_pod_sort(IvarsInfo.begin(), IvarsInfo.end()); |
| 5209 | } else { |
Craig Topper | a346705 | 2016-01-03 19:43:20 +0000 | [diff] [blame] | 5210 | assert(std::is_sorted(IvarsInfo.begin(), IvarsInfo.end())); |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 5211 | } |
| 5212 | assert(IvarsInfo.back().Offset < InstanceEnd); |
| 5213 | |
| 5214 | assert(buffer.empty()); |
| 5215 | |
| 5216 | // Skip the next N words. |
| 5217 | auto skip = [&](unsigned numWords) { |
| 5218 | assert(numWords > 0); |
| 5219 | |
| 5220 | // Try to merge into the previous byte. Since scans happen second, we |
| 5221 | // can't do this if it includes a scan. |
| 5222 | if (!buffer.empty() && !(buffer.back() & ScanMask)) { |
| 5223 | unsigned lastSkip = buffer.back() >> SkipShift; |
| 5224 | if (lastSkip < MaxNibble) { |
| 5225 | unsigned claimed = std::min(MaxNibble - lastSkip, numWords); |
| 5226 | numWords -= claimed; |
| 5227 | lastSkip += claimed; |
| 5228 | buffer.back() = (lastSkip << SkipShift); |
| 5229 | } |
| 5230 | } |
| 5231 | |
| 5232 | while (numWords >= MaxNibble) { |
| 5233 | buffer.push_back(MaxNibble << SkipShift); |
| 5234 | numWords -= MaxNibble; |
| 5235 | } |
| 5236 | if (numWords) { |
| 5237 | buffer.push_back(numWords << SkipShift); |
| 5238 | } |
| 5239 | }; |
| 5240 | |
| 5241 | // Scan the next N words. |
| 5242 | auto scan = [&](unsigned numWords) { |
| 5243 | assert(numWords > 0); |
| 5244 | |
| 5245 | // Try to merge into the previous byte. Since scans happen second, we can |
| 5246 | // do this even if it includes a skip. |
| 5247 | if (!buffer.empty()) { |
| 5248 | unsigned lastScan = (buffer.back() & ScanMask) >> ScanShift; |
| 5249 | if (lastScan < MaxNibble) { |
| 5250 | unsigned claimed = std::min(MaxNibble - lastScan, numWords); |
| 5251 | numWords -= claimed; |
| 5252 | lastScan += claimed; |
| 5253 | buffer.back() = (buffer.back() & SkipMask) | (lastScan << ScanShift); |
| 5254 | } |
| 5255 | } |
| 5256 | |
| 5257 | while (numWords >= MaxNibble) { |
| 5258 | buffer.push_back(MaxNibble << ScanShift); |
| 5259 | numWords -= MaxNibble; |
| 5260 | } |
| 5261 | if (numWords) { |
| 5262 | buffer.push_back(numWords << ScanShift); |
| 5263 | } |
| 5264 | }; |
| 5265 | |
| 5266 | // One past the end of the last scan. |
| 5267 | unsigned endOfLastScanInWords = 0; |
| 5268 | const CharUnits WordSize = CGM.getPointerSize(); |
| 5269 | |
| 5270 | // Consider all the scan requests. |
| 5271 | for (auto &request : IvarsInfo) { |
| 5272 | CharUnits beginOfScan = request.Offset - InstanceBegin; |
| 5273 | |
| 5274 | // Ignore scan requests that don't start at an even multiple of the |
| 5275 | // word size. We can't encode them. |
| 5276 | if ((beginOfScan % WordSize) != 0) continue; |
| 5277 | |
| 5278 | // Ignore scan requests that start before the instance start. |
| 5279 | // This assumes that scans never span that boundary. The boundary |
| 5280 | // isn't the true start of the ivars, because in the fragile-ARC case |
| 5281 | // it's rounded up to word alignment, but the test above should leave |
| 5282 | // us ignoring that possibility. |
| 5283 | if (beginOfScan.isNegative()) { |
| 5284 | assert(request.Offset + request.SizeInWords * WordSize <= InstanceBegin); |
| 5285 | continue; |
| 5286 | } |
| 5287 | |
| 5288 | unsigned beginOfScanInWords = beginOfScan / WordSize; |
| 5289 | unsigned endOfScanInWords = beginOfScanInWords + request.SizeInWords; |
| 5290 | |
| 5291 | // If the scan starts some number of words after the last one ended, |
| 5292 | // skip forward. |
| 5293 | if (beginOfScanInWords > endOfLastScanInWords) { |
| 5294 | skip(beginOfScanInWords - endOfLastScanInWords); |
| 5295 | |
| 5296 | // Otherwise, start scanning where the last left off. |
| 5297 | } else { |
| 5298 | beginOfScanInWords = endOfLastScanInWords; |
| 5299 | |
| 5300 | // If that leaves us with nothing to scan, ignore this request. |
| 5301 | if (beginOfScanInWords >= endOfScanInWords) continue; |
| 5302 | } |
| 5303 | |
| 5304 | // Scan to the end of the request. |
| 5305 | assert(beginOfScanInWords < endOfScanInWords); |
| 5306 | scan(endOfScanInWords - beginOfScanInWords); |
| 5307 | endOfLastScanInWords = endOfScanInWords; |
| 5308 | } |
| 5309 | |
John McCall | f5ea072 | 2015-10-29 23:36:14 +0000 | [diff] [blame] | 5310 | if (buffer.empty()) |
| 5311 | return llvm::ConstantPointerNull::get(CGM.Int8PtrTy); |
| 5312 | |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 5313 | // For GC layouts, emit a skip to the end of the allocation so that we |
| 5314 | // have precise information about the entire thing. This isn't useful |
| 5315 | // or necessary for the ARC-style layout strings. |
| 5316 | if (CGM.getLangOpts().getGC() != LangOptions::NonGC) { |
| 5317 | unsigned lastOffsetInWords = |
| 5318 | (InstanceEnd - InstanceBegin + WordSize - CharUnits::One()) / WordSize; |
| 5319 | if (lastOffsetInWords > endOfLastScanInWords) { |
| 5320 | skip(lastOffsetInWords - endOfLastScanInWords); |
| 5321 | } |
| 5322 | } |
| 5323 | |
| 5324 | // Null terminate the string. |
| 5325 | buffer.push_back(0); |
| 5326 | |
Saleem Abdulrasool | 271106c | 2016-09-16 23:41:13 +0000 | [diff] [blame] | 5327 | auto *Entry = CGObjC.CreateCStringLiteral( |
| 5328 | reinterpret_cast<char *>(buffer.data()), ObjCLabelType::ClassName); |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 5329 | return getConstantGEP(CGM.getLLVMContext(), Entry, 0, 0); |
Fariborz Jahanian | 9659f6b | 2010-08-04 23:55:24 +0000 | [diff] [blame] | 5330 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5331 | |
Fariborz Jahanian | 9659f6b | 2010-08-04 23:55:24 +0000 | [diff] [blame] | 5332 | /// BuildIvarLayout - Builds ivar layout bitmap for the class |
| 5333 | /// implementation for the __strong or __weak case. |
| 5334 | /// The layout map displays which words in ivar list must be skipped |
| 5335 | /// and which must be scanned by GC (see below). String is built of bytes. |
| 5336 | /// Each byte is divided up in two nibbles (4-bit each). Left nibble is count |
| 5337 | /// of words to skip and right nibble is count of words to scan. So, each |
| 5338 | /// nibble represents up to 15 workds to skip or scan. Skipping the rest is |
| 5339 | /// represented by a 0x00 byte which also ends the string. |
| 5340 | /// 1. when ForStrongLayout is true, following ivars are scanned: |
| 5341 | /// - id, Class |
| 5342 | /// - object * |
| 5343 | /// - __strong anything |
| 5344 | /// |
| 5345 | /// 2. When ForStrongLayout is false, following ivars are scanned: |
| 5346 | /// - __weak anything |
| 5347 | /// |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 5348 | llvm::Constant * |
| 5349 | CGObjCCommonMac::BuildIvarLayout(const ObjCImplementationDecl *OMD, |
| 5350 | CharUnits beginOffset, CharUnits endOffset, |
John McCall | 460ce58 | 2015-10-22 18:38:17 +0000 | [diff] [blame] | 5351 | bool ForStrongLayout, bool HasMRCWeakIvars) { |
| 5352 | // If this is MRC, and we're either building a strong layout or there |
| 5353 | // are no weak ivars, bail out early. |
Chris Lattner | ece0409 | 2012-02-07 00:39:47 +0000 | [diff] [blame] | 5354 | llvm::Type *PtrTy = CGM.Int8PtrTy; |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 5355 | if (CGM.getLangOpts().getGC() == LangOptions::NonGC && |
John McCall | 460ce58 | 2015-10-22 18:38:17 +0000 | [diff] [blame] | 5356 | !CGM.getLangOpts().ObjCAutoRefCount && |
| 5357 | (ForStrongLayout || !HasMRCWeakIvars)) |
Fariborz Jahanian | 9659f6b | 2010-08-04 23:55:24 +0000 | [diff] [blame] | 5358 | return llvm::Constant::getNullValue(PtrTy); |
| 5359 | |
Jordy Rose | a91768e | 2011-07-22 02:08:32 +0000 | [diff] [blame] | 5360 | const ObjCInterfaceDecl *OI = OMD->getClassInterface(); |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 5361 | SmallVector<const ObjCIvarDecl*, 32> ivars; |
| 5362 | |
| 5363 | // GC layout strings include the complete object layout, possibly |
| 5364 | // inaccurately in the non-fragile ABI; the runtime knows how to fix this |
| 5365 | // up. |
| 5366 | // |
| 5367 | // ARC layout strings only include the class's ivars. In non-fragile |
John McCall | f5ea072 | 2015-10-29 23:36:14 +0000 | [diff] [blame] | 5368 | // runtimes, that means starting at InstanceStart, rounded up to word |
| 5369 | // alignment. In fragile runtimes, there's no InstanceStart, so it means |
John McCall | d80218f | 2015-11-19 02:27:55 +0000 | [diff] [blame] | 5370 | // starting at the offset of the first ivar, rounded up to word alignment. |
John McCall | 460ce58 | 2015-10-22 18:38:17 +0000 | [diff] [blame] | 5371 | // |
| 5372 | // MRC weak layout strings follow the ARC style. |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 5373 | CharUnits baseOffset; |
John McCall | 460ce58 | 2015-10-22 18:38:17 +0000 | [diff] [blame] | 5374 | if (CGM.getLangOpts().getGC() == LangOptions::NonGC) { |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 5375 | for (const ObjCIvarDecl *IVD = OI->all_declared_ivar_begin(); |
Fariborz Jahanian | b26d578 | 2011-06-28 18:05:25 +0000 | [diff] [blame] | 5376 | IVD; IVD = IVD->getNextIvar()) |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 5377 | ivars.push_back(IVD); |
| 5378 | |
| 5379 | if (isNonFragileABI()) { |
| 5380 | baseOffset = beginOffset; // InstanceStart |
John McCall | d80218f | 2015-11-19 02:27:55 +0000 | [diff] [blame] | 5381 | } else if (!ivars.empty()) { |
| 5382 | baseOffset = |
| 5383 | CharUnits::fromQuantity(ComputeIvarBaseOffset(CGM, OMD, ivars[0])); |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 5384 | } else { |
| 5385 | baseOffset = CharUnits::Zero(); |
| 5386 | } |
John McCall | f5ea072 | 2015-10-29 23:36:14 +0000 | [diff] [blame] | 5387 | |
Rui Ueyama | 83aa979 | 2016-01-14 21:00:27 +0000 | [diff] [blame] | 5388 | baseOffset = baseOffset.alignTo(CGM.getPointerAlign()); |
Fariborz Jahanian | b26d578 | 2011-06-28 18:05:25 +0000 | [diff] [blame] | 5389 | } |
| 5390 | else { |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 5391 | CGM.getContext().DeepCollectObjCIvars(OI, true, ivars); |
Fariborz Jahanian | 9659f6b | 2010-08-04 23:55:24 +0000 | [diff] [blame] | 5392 | |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 5393 | baseOffset = CharUnits::Zero(); |
Fariborz Jahanian | b26d578 | 2011-06-28 18:05:25 +0000 | [diff] [blame] | 5394 | } |
Fariborz Jahanian | 9659f6b | 2010-08-04 23:55:24 +0000 | [diff] [blame] | 5395 | |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 5396 | if (ivars.empty()) |
Fariborz Jahanian | 9659f6b | 2010-08-04 23:55:24 +0000 | [diff] [blame] | 5397 | return llvm::Constant::getNullValue(PtrTy); |
| 5398 | |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 5399 | IvarLayoutBuilder builder(CGM, baseOffset, endOffset, ForStrongLayout); |
Fariborz Jahanian | 9659f6b | 2010-08-04 23:55:24 +0000 | [diff] [blame] | 5400 | |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 5401 | builder.visitAggregate(ivars.begin(), ivars.end(), CharUnits::Zero(), |
| 5402 | [&](const ObjCIvarDecl *ivar) -> CharUnits { |
| 5403 | return CharUnits::fromQuantity(ComputeIvarBaseOffset(CGM, OMD, ivar)); |
| 5404 | }); |
| 5405 | |
| 5406 | if (!builder.hasBitmapData()) |
Fariborz Jahanian | 9659f6b | 2010-08-04 23:55:24 +0000 | [diff] [blame] | 5407 | return llvm::Constant::getNullValue(PtrTy); |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 5408 | |
| 5409 | llvm::SmallVector<unsigned char, 4> buffer; |
| 5410 | llvm::Constant *C = builder.buildBitmap(*this, buffer); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 5411 | |
John McCall | f5ea072 | 2015-10-29 23:36:14 +0000 | [diff] [blame] | 5412 | if (CGM.getLangOpts().ObjCGCBitmapPrint && !buffer.empty()) { |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5413 | printf("\n%s ivar layout for class '%s': ", |
Fariborz Jahanian | 80c9ce2 | 2009-04-20 22:03:45 +0000 | [diff] [blame] | 5414 | ForStrongLayout ? "strong" : "weak", |
Ben Langmuir | e013bdc | 2014-07-11 00:43:47 +0000 | [diff] [blame] | 5415 | OMD->getClassInterface()->getName().str().c_str()); |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 5416 | builder.dump(buffer); |
Fariborz Jahanian | 80c9ce2 | 2009-04-20 22:03:45 +0000 | [diff] [blame] | 5417 | } |
Fariborz Jahanian | 9659f6b | 2010-08-04 23:55:24 +0000 | [diff] [blame] | 5418 | return C; |
Fariborz Jahanian | c559f3f | 2009-03-05 22:39:55 +0000 | [diff] [blame] | 5419 | } |
| 5420 | |
Fariborz Jahanian | 0b1ccdc | 2009-01-21 23:34:32 +0000 | [diff] [blame] | 5421 | llvm::Constant *CGObjCCommonMac::GetMethodVarName(Selector Sel) { |
Daniel Dunbar | cb515c8 | 2008-08-12 03:39:23 +0000 | [diff] [blame] | 5422 | llvm::GlobalVariable *&Entry = MethodVarNames[Sel]; |
Chris Lattner | 3def9ae | 2012-02-06 22:16:34 +0000 | [diff] [blame] | 5423 | // FIXME: Avoid std::string in "Sel.getAsString()" |
Daniel Dunbar | c2d4b62 | 2009-03-09 21:49:58 +0000 | [diff] [blame] | 5424 | if (!Entry) |
Saleem Abdulrasool | 271106c | 2016-09-16 23:41:13 +0000 | [diff] [blame] | 5425 | Entry = CreateCStringLiteral(Sel.getAsString(), ObjCLabelType::MethodVarName); |
Owen Anderson | 170229f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 5426 | return getConstantGEP(VMContext, Entry, 0, 0); |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 5427 | } |
| 5428 | |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 5429 | // FIXME: Merge into a single cstring creation function. |
Fariborz Jahanian | 0b1ccdc | 2009-01-21 23:34:32 +0000 | [diff] [blame] | 5430 | llvm::Constant *CGObjCCommonMac::GetMethodVarName(IdentifierInfo *ID) { |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 5431 | return GetMethodVarName(CGM.getContext().Selectors.getNullarySelector(ID)); |
| 5432 | } |
| 5433 | |
Daniel Dunbar | f5c1846 | 2009-04-20 06:54:31 +0000 | [diff] [blame] | 5434 | llvm::Constant *CGObjCCommonMac::GetMethodVarType(const FieldDecl *Field) { |
Devang Patel | 4b6e4bb | 2009-03-04 18:21:39 +0000 | [diff] [blame] | 5435 | std::string TypeStr; |
| 5436 | CGM.getContext().getObjCEncodingForType(Field->getType(), TypeStr, Field); |
| 5437 | |
| 5438 | llvm::GlobalVariable *&Entry = MethodVarTypes[TypeStr]; |
Daniel Dunbar | c2d4b62 | 2009-03-09 21:49:58 +0000 | [diff] [blame] | 5439 | if (!Entry) |
Saleem Abdulrasool | 271106c | 2016-09-16 23:41:13 +0000 | [diff] [blame] | 5440 | Entry = CreateCStringLiteral(TypeStr, ObjCLabelType::MethodVarType); |
Owen Anderson | 170229f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 5441 | return getConstantGEP(VMContext, Entry, 0, 0); |
Daniel Dunbar | cb515c8 | 2008-08-12 03:39:23 +0000 | [diff] [blame] | 5442 | } |
| 5443 | |
Bob Wilson | 5f4e3a7 | 2011-11-30 01:57:58 +0000 | [diff] [blame] | 5444 | llvm::Constant *CGObjCCommonMac::GetMethodVarType(const ObjCMethodDecl *D, |
| 5445 | bool Extended) { |
John McCall | 843dfcc | 2016-11-29 21:57:00 +0000 | [diff] [blame] | 5446 | std::string TypeStr = |
| 5447 | CGM.getContext().getObjCEncodingForMethodDecl(D, Extended); |
Devang Patel | 4b6e4bb | 2009-03-04 18:21:39 +0000 | [diff] [blame] | 5448 | |
| 5449 | llvm::GlobalVariable *&Entry = MethodVarTypes[TypeStr]; |
Daniel Dunbar | 3241fae | 2009-04-14 23:14:47 +0000 | [diff] [blame] | 5450 | if (!Entry) |
Saleem Abdulrasool | 271106c | 2016-09-16 23:41:13 +0000 | [diff] [blame] | 5451 | Entry = CreateCStringLiteral(TypeStr, ObjCLabelType::MethodVarType); |
Owen Anderson | 170229f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 5452 | return getConstantGEP(VMContext, Entry, 0, 0); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 5453 | } |
| 5454 | |
Daniel Dunbar | 80a840b | 2008-08-23 00:19:03 +0000 | [diff] [blame] | 5455 | // FIXME: Merge into a single cstring creation function. |
Fariborz Jahanian | 0b1ccdc | 2009-01-21 23:34:32 +0000 | [diff] [blame] | 5456 | llvm::Constant *CGObjCCommonMac::GetPropertyName(IdentifierInfo *Ident) { |
Daniel Dunbar | 80a840b | 2008-08-23 00:19:03 +0000 | [diff] [blame] | 5457 | llvm::GlobalVariable *&Entry = PropertyNames[Ident]; |
Daniel Dunbar | c2d4b62 | 2009-03-09 21:49:58 +0000 | [diff] [blame] | 5458 | if (!Entry) |
Saleem Abdulrasool | 271106c | 2016-09-16 23:41:13 +0000 | [diff] [blame] | 5459 | Entry = CreateCStringLiteral(Ident->getName(), ObjCLabelType::PropertyName); |
Owen Anderson | 170229f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 5460 | return getConstantGEP(VMContext, Entry, 0, 0); |
Daniel Dunbar | 80a840b | 2008-08-23 00:19:03 +0000 | [diff] [blame] | 5461 | } |
| 5462 | |
| 5463 | // FIXME: Merge into a single cstring creation function. |
Daniel Dunbar | 4932b36 | 2008-08-28 04:38:10 +0000 | [diff] [blame] | 5464 | // FIXME: This Decl should be more precise. |
Daniel Dunbar | c2d4b62 | 2009-03-09 21:49:58 +0000 | [diff] [blame] | 5465 | llvm::Constant * |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5466 | CGObjCCommonMac::GetPropertyTypeString(const ObjCPropertyDecl *PD, |
| 5467 | const Decl *Container) { |
John McCall | 843dfcc | 2016-11-29 21:57:00 +0000 | [diff] [blame] | 5468 | std::string TypeStr = |
| 5469 | CGM.getContext().getObjCEncodingForPropertyDecl(PD, Container); |
Daniel Dunbar | 80a840b | 2008-08-23 00:19:03 +0000 | [diff] [blame] | 5470 | return GetPropertyName(&CGM.getContext().Idents.get(TypeStr)); |
| 5471 | } |
| 5472 | |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5473 | void CGObjCCommonMac::GetNameForMethod(const ObjCMethodDecl *D, |
Fariborz Jahanian | 0b1ccdc | 2009-01-21 23:34:32 +0000 | [diff] [blame] | 5474 | const ObjCContainerDecl *CD, |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 5475 | SmallVectorImpl<char> &Name) { |
Daniel Dunbar | d238681 | 2009-10-19 01:21:19 +0000 | [diff] [blame] | 5476 | llvm::raw_svector_ostream OS(Name); |
Fariborz Jahanian | 0196a1c | 2009-01-10 21:06:09 +0000 | [diff] [blame] | 5477 | assert (CD && "Missing container decl in GetNameForMethod"); |
Daniel Dunbar | d238681 | 2009-10-19 01:21:19 +0000 | [diff] [blame] | 5478 | OS << '\01' << (D->isInstanceMethod() ? '-' : '+') |
| 5479 | << '[' << CD->getName(); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5480 | if (const ObjCCategoryImplDecl *CID = |
Daniel Dunbar | d238681 | 2009-10-19 01:21:19 +0000 | [diff] [blame] | 5481 | dyn_cast<ObjCCategoryImplDecl>(D->getDeclContext())) |
Benjamin Kramer | 2f56992 | 2012-02-07 11:57:45 +0000 | [diff] [blame] | 5482 | OS << '(' << *CID << ')'; |
Daniel Dunbar | d238681 | 2009-10-19 01:21:19 +0000 | [diff] [blame] | 5483 | OS << ' ' << D->getSelector().getAsString() << ']'; |
Daniel Dunbar | a94ecd2 | 2008-08-16 03:19:19 +0000 | [diff] [blame] | 5484 | } |
| 5485 | |
Daniel Dunbar | 3ad5348 | 2008-08-11 21:35:06 +0000 | [diff] [blame] | 5486 | void CGObjCMac::FinishModule() { |
Daniel Dunbar | 7bd00bd | 2008-08-12 06:48:42 +0000 | [diff] [blame] | 5487 | EmitModuleInfo(); |
| 5488 | |
Daniel Dunbar | c475d42 | 2008-10-29 22:36:39 +0000 | [diff] [blame] | 5489 | // Emit the dummy bodies for any protocols which were referenced but |
| 5490 | // never defined. |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 5491 | for (auto &entry : Protocols) { |
| 5492 | llvm::GlobalVariable *global = entry.second; |
| 5493 | if (global->hasInitializer()) |
Daniel Dunbar | c475d42 | 2008-10-29 22:36:39 +0000 | [diff] [blame] | 5494 | continue; |
Daniel Dunbar | 7bd00bd | 2008-08-12 06:48:42 +0000 | [diff] [blame] | 5495 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 5496 | ConstantInitBuilder builder(CGM); |
| 5497 | auto values = builder.beginStruct(ObjCTypes.ProtocolTy); |
| 5498 | values.addNullPointer(ObjCTypes.ProtocolExtensionPtrTy); |
| 5499 | values.add(GetClassName(entry.first->getName())); |
| 5500 | values.addNullPointer(ObjCTypes.ProtocolListPtrTy); |
| 5501 | values.addNullPointer(ObjCTypes.MethodDescriptionListPtrTy); |
| 5502 | values.addNullPointer(ObjCTypes.MethodDescriptionListPtrTy); |
| 5503 | values.finishAndSetAsInitializer(global); |
| 5504 | CGM.addCompilerUsedGlobal(global); |
Daniel Dunbar | c475d42 | 2008-10-29 22:36:39 +0000 | [diff] [blame] | 5505 | } |
| 5506 | |
Daniel Dunbar | c61d0e9 | 2008-08-25 06:02:07 +0000 | [diff] [blame] | 5507 | // Add assembler directives to add lazy undefined symbol references |
| 5508 | // for classes which are referenced but not defined. This is |
| 5509 | // important for correct linker interaction. |
Daniel Dunbar | d027a92 | 2009-09-07 00:20:42 +0000 | [diff] [blame] | 5510 | // |
| 5511 | // FIXME: It would be nice if we had an LLVM construct for this. |
Saleem Abdulrasool | 62c07eb | 2016-09-12 21:15:23 +0000 | [diff] [blame] | 5512 | if ((!LazySymbols.empty() || !DefinedSymbols.empty()) && |
| 5513 | CGM.getTriple().isOSBinFormatMachO()) { |
Dylan Noblesmith | 2c1dd27 | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 5514 | SmallString<256> Asm; |
Daniel Dunbar | d027a92 | 2009-09-07 00:20:42 +0000 | [diff] [blame] | 5515 | Asm += CGM.getModule().getModuleInlineAsm(); |
| 5516 | if (!Asm.empty() && Asm.back() != '\n') |
| 5517 | Asm += '\n'; |
Daniel Dunbar | c61d0e9 | 2008-08-25 06:02:07 +0000 | [diff] [blame] | 5518 | |
Daniel Dunbar | d027a92 | 2009-09-07 00:20:42 +0000 | [diff] [blame] | 5519 | llvm::raw_svector_ostream OS(Asm); |
Saleem Abdulrasool | 39217d4 | 2016-09-16 14:24:26 +0000 | [diff] [blame] | 5520 | for (const auto *Sym : DefinedSymbols) |
Saleem Abdulrasool | 62c07eb | 2016-09-12 21:15:23 +0000 | [diff] [blame] | 5521 | OS << "\t.objc_class_name_" << Sym->getName() << "=0\n" |
| 5522 | << "\t.globl .objc_class_name_" << Sym->getName() << "\n"; |
Saleem Abdulrasool | 39217d4 | 2016-09-16 14:24:26 +0000 | [diff] [blame] | 5523 | for (const auto *Sym : LazySymbols) |
Saleem Abdulrasool | 62c07eb | 2016-09-12 21:15:23 +0000 | [diff] [blame] | 5524 | OS << "\t.lazy_reference .objc_class_name_" << Sym->getName() << "\n"; |
| 5525 | for (const auto &Category : DefinedCategoryNames) |
| 5526 | OS << "\t.objc_category_name_" << Category << "=0\n" |
| 5527 | << "\t.globl .objc_category_name_" << Category << "\n"; |
Fariborz Jahanian | 9adb2e6 | 2010-06-21 22:05:18 +0000 | [diff] [blame] | 5528 | |
Daniel Dunbar | d027a92 | 2009-09-07 00:20:42 +0000 | [diff] [blame] | 5529 | CGM.getModule().setModuleInlineAsm(OS.str()); |
Daniel Dunbar | c61d0e9 | 2008-08-25 06:02:07 +0000 | [diff] [blame] | 5530 | } |
Daniel Dunbar | 3ad5348 | 2008-08-11 21:35:06 +0000 | [diff] [blame] | 5531 | } |
| 5532 | |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5533 | CGObjCNonFragileABIMac::CGObjCNonFragileABIMac(CodeGen::CodeGenModule &cgm) |
Saleem Abdulrasool | 4f515a6 | 2016-07-13 02:58:44 +0000 | [diff] [blame] | 5534 | : CGObjCCommonMac(cgm), ObjCTypes(cgm), ObjCEmptyCacheVar(nullptr), |
| 5535 | ObjCEmptyVtableVar(nullptr) { |
Fariborz Jahanian | 279eda6 | 2009-01-21 22:04:16 +0000 | [diff] [blame] | 5536 | ObjCABI = 2; |
| 5537 | } |
| 5538 | |
Daniel Dunbar | 3ad5348 | 2008-08-11 21:35:06 +0000 | [diff] [blame] | 5539 | /* *** */ |
| 5540 | |
Fariborz Jahanian | 279eda6 | 2009-01-21 22:04:16 +0000 | [diff] [blame] | 5541 | ObjCCommonTypesHelper::ObjCCommonTypesHelper(CodeGen::CodeGenModule &cgm) |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 5542 | : VMContext(cgm.getLLVMContext()), CGM(cgm), ExternalProtocolPtrTy(nullptr) |
Douglas Gregor | a95f9aa | 2012-01-17 23:38:32 +0000 | [diff] [blame] | 5543 | { |
Daniel Dunbar | 7bd00bd | 2008-08-12 06:48:42 +0000 | [diff] [blame] | 5544 | CodeGen::CodeGenTypes &Types = CGM.getTypes(); |
| 5545 | ASTContext &Ctx = CGM.getContext(); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5546 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 5547 | ShortTy = cast<llvm::IntegerType>(Types.ConvertType(Ctx.ShortTy)); |
| 5548 | IntTy = CGM.IntTy; |
| 5549 | LongTy = cast<llvm::IntegerType>(Types.ConvertType(Ctx.LongTy)); |
Chris Lattner | ece0409 | 2012-02-07 00:39:47 +0000 | [diff] [blame] | 5550 | Int8PtrTy = CGM.Int8PtrTy; |
| 5551 | Int8PtrPtrTy = CGM.Int8PtrPtrTy; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5552 | |
Tim Northover | 238b508 | 2014-03-29 13:42:40 +0000 | [diff] [blame] | 5553 | // arm64 targets use "int" ivar offset variables. All others, |
| 5554 | // including OS X x86_64 and Windows x86_64, use "long" ivar offsets. |
Tim Northover | 40956e6 | 2014-07-23 12:32:58 +0000 | [diff] [blame] | 5555 | if (CGM.getTarget().getTriple().getArch() == llvm::Triple::aarch64) |
Tim Northover | 238b508 | 2014-03-29 13:42:40 +0000 | [diff] [blame] | 5556 | IvarOffsetVarTy = IntTy; |
| 5557 | else |
| 5558 | IvarOffsetVarTy = LongTy; |
| 5559 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 5560 | ObjectPtrTy = |
| 5561 | cast<llvm::PointerType>(Types.ConvertType(Ctx.getObjCIdType())); |
| 5562 | PtrObjectPtrTy = |
| 5563 | llvm::PointerType::getUnqual(ObjectPtrTy); |
| 5564 | SelectorPtrTy = |
| 5565 | cast<llvm::PointerType>(Types.ConvertType(Ctx.getObjCSelType())); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5566 | |
Fariborz Jahanian | 279eda6 | 2009-01-21 22:04:16 +0000 | [diff] [blame] | 5567 | // I'm not sure I like this. The implicit coordination is a bit |
| 5568 | // gross. We should solve this in a reasonable fashion because this |
| 5569 | // is a pretty common task (match some runtime data structure with |
| 5570 | // an LLVM data structure). |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5571 | |
Fariborz Jahanian | 279eda6 | 2009-01-21 22:04:16 +0000 | [diff] [blame] | 5572 | // FIXME: This is leaked. |
| 5573 | // FIXME: Merge with rewriter code? |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5574 | |
Fariborz Jahanian | 279eda6 | 2009-01-21 22:04:16 +0000 | [diff] [blame] | 5575 | // struct _objc_super { |
| 5576 | // id self; |
| 5577 | // Class cls; |
| 5578 | // } |
Abramo Bagnara | 6150c88 | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 5579 | RecordDecl *RD = RecordDecl::Create(Ctx, TTK_Struct, |
Daniel Dunbar | 0c00537 | 2010-04-29 16:29:11 +0000 | [diff] [blame] | 5580 | Ctx.getTranslationUnitDecl(), |
Abramo Bagnara | 29c2d46 | 2011-03-09 14:09:51 +0000 | [diff] [blame] | 5581 | SourceLocation(), SourceLocation(), |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5582 | &Ctx.Idents.get("_objc_super")); |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 5583 | RD->addDecl(FieldDecl::Create(Ctx, RD, SourceLocation(), SourceLocation(), |
| 5584 | nullptr, Ctx.getObjCIdType(), nullptr, nullptr, |
| 5585 | false, ICIS_NoInit)); |
| 5586 | RD->addDecl(FieldDecl::Create(Ctx, RD, SourceLocation(), SourceLocation(), |
| 5587 | nullptr, Ctx.getObjCClassType(), nullptr, |
| 5588 | nullptr, false, ICIS_NoInit)); |
Douglas Gregor | d505812 | 2010-02-11 01:19:42 +0000 | [diff] [blame] | 5589 | RD->completeDefinition(); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5590 | |
Fariborz Jahanian | 279eda6 | 2009-01-21 22:04:16 +0000 | [diff] [blame] | 5591 | SuperCTy = Ctx.getTagDeclType(RD); |
| 5592 | SuperPtrCTy = Ctx.getPointerType(SuperCTy); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5593 | |
Fariborz Jahanian | 279eda6 | 2009-01-21 22:04:16 +0000 | [diff] [blame] | 5594 | SuperTy = cast<llvm::StructType>(Types.ConvertType(SuperCTy)); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5595 | SuperPtrTy = llvm::PointerType::getUnqual(SuperTy); |
| 5596 | |
Fariborz Jahanian | b15a3d5 | 2009-01-22 23:02:58 +0000 | [diff] [blame] | 5597 | // struct _prop_t { |
| 5598 | // char *name; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5599 | // char *attributes; |
Fariborz Jahanian | b15a3d5 | 2009-01-22 23:02:58 +0000 | [diff] [blame] | 5600 | // } |
Serge Guelton | 1d99327 | 2017-05-09 19:31:30 +0000 | [diff] [blame] | 5601 | PropertyTy = llvm::StructType::create("struct._prop_t", Int8PtrTy, Int8PtrTy); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5602 | |
Fariborz Jahanian | b15a3d5 | 2009-01-22 23:02:58 +0000 | [diff] [blame] | 5603 | // struct _prop_list_t { |
Fariborz Jahanian | 0232c05 | 2009-01-23 01:46:23 +0000 | [diff] [blame] | 5604 | // uint32_t entsize; // sizeof(struct _prop_t) |
Fariborz Jahanian | b15a3d5 | 2009-01-22 23:02:58 +0000 | [diff] [blame] | 5605 | // uint32_t count_of_properties; |
Fariborz Jahanian | 0232c05 | 2009-01-23 01:46:23 +0000 | [diff] [blame] | 5606 | // struct _prop_t prop_list[count_of_properties]; |
Fariborz Jahanian | b15a3d5 | 2009-01-22 23:02:58 +0000 | [diff] [blame] | 5607 | // } |
Serge Guelton | 1d99327 | 2017-05-09 19:31:30 +0000 | [diff] [blame] | 5608 | PropertyListTy = llvm::StructType::create( |
| 5609 | "struct._prop_list_t", IntTy, IntTy, llvm::ArrayType::get(PropertyTy, 0)); |
Fariborz Jahanian | b15a3d5 | 2009-01-22 23:02:58 +0000 | [diff] [blame] | 5610 | // struct _prop_list_t * |
Owen Anderson | 9793f0e | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 5611 | PropertyListPtrTy = llvm::PointerType::getUnqual(PropertyListTy); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5612 | |
Fariborz Jahanian | b15a3d5 | 2009-01-22 23:02:58 +0000 | [diff] [blame] | 5613 | // struct _objc_method { |
| 5614 | // SEL _cmd; |
| 5615 | // char *method_type; |
| 5616 | // char *_imp; |
| 5617 | // } |
Serge Guelton | 1d99327 | 2017-05-09 19:31:30 +0000 | [diff] [blame] | 5618 | MethodTy = llvm::StructType::create("struct._objc_method", SelectorPtrTy, |
| 5619 | Int8PtrTy, Int8PtrTy); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5620 | |
Fariborz Jahanian | 0232c05 | 2009-01-23 01:46:23 +0000 | [diff] [blame] | 5621 | // struct _objc_cache * |
Chris Lattner | 5ec04a5 | 2011-08-12 17:43:31 +0000 | [diff] [blame] | 5622 | CacheTy = llvm::StructType::create(VMContext, "struct._objc_cache"); |
Owen Anderson | 9793f0e | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 5623 | CachePtrTy = llvm::PointerType::getUnqual(CacheTy); |
Fariborz Jahanian | 279eda6 | 2009-01-21 22:04:16 +0000 | [diff] [blame] | 5624 | } |
Daniel Dunbar | 7bd00bd | 2008-08-12 06:48:42 +0000 | [diff] [blame] | 5625 | |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5626 | ObjCTypesHelper::ObjCTypesHelper(CodeGen::CodeGenModule &cgm) |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5627 | : ObjCCommonTypesHelper(cgm) { |
Fariborz Jahanian | 4b4c826 | 2009-01-21 00:39:53 +0000 | [diff] [blame] | 5628 | // struct _objc_method_description { |
| 5629 | // SEL name; |
| 5630 | // char *types; |
| 5631 | // } |
Serge Guelton | 1d99327 | 2017-05-09 19:31:30 +0000 | [diff] [blame] | 5632 | MethodDescriptionTy = llvm::StructType::create( |
| 5633 | "struct._objc_method_description", SelectorPtrTy, Int8PtrTy); |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 5634 | |
Fariborz Jahanian | 4b4c826 | 2009-01-21 00:39:53 +0000 | [diff] [blame] | 5635 | // struct _objc_method_description_list { |
| 5636 | // int count; |
| 5637 | // struct _objc_method_description[1]; |
| 5638 | // } |
Serge Guelton | 1d99327 | 2017-05-09 19:31:30 +0000 | [diff] [blame] | 5639 | MethodDescriptionListTy = |
| 5640 | llvm::StructType::create("struct._objc_method_description_list", IntTy, |
| 5641 | llvm::ArrayType::get(MethodDescriptionTy, 0)); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5642 | |
Fariborz Jahanian | 4b4c826 | 2009-01-21 00:39:53 +0000 | [diff] [blame] | 5643 | // struct _objc_method_description_list * |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5644 | MethodDescriptionListPtrTy = |
Owen Anderson | 9793f0e | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 5645 | llvm::PointerType::getUnqual(MethodDescriptionListTy); |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 5646 | |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 5647 | // Protocol description structures |
| 5648 | |
Fariborz Jahanian | 4b4c826 | 2009-01-21 00:39:53 +0000 | [diff] [blame] | 5649 | // struct _objc_protocol_extension { |
| 5650 | // uint32_t size; // sizeof(struct _objc_protocol_extension) |
| 5651 | // struct _objc_method_description_list *optional_instance_methods; |
| 5652 | // struct _objc_method_description_list *optional_class_methods; |
| 5653 | // struct _objc_property_list *instance_properties; |
Bob Wilson | 5f4e3a7 | 2011-11-30 01:57:58 +0000 | [diff] [blame] | 5654 | // const char ** extendedMethodTypes; |
Manman Ren | ce7bff5 | 2016-01-29 23:46:55 +0000 | [diff] [blame] | 5655 | // struct _objc_property_list *class_properties; |
Fariborz Jahanian | 4b4c826 | 2009-01-21 00:39:53 +0000 | [diff] [blame] | 5656 | // } |
Serge Guelton | 1d99327 | 2017-05-09 19:31:30 +0000 | [diff] [blame] | 5657 | ProtocolExtensionTy = llvm::StructType::create( |
| 5658 | "struct._objc_protocol_extension", IntTy, MethodDescriptionListPtrTy, |
| 5659 | MethodDescriptionListPtrTy, PropertyListPtrTy, Int8PtrPtrTy, |
| 5660 | PropertyListPtrTy); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5661 | |
Fariborz Jahanian | 4b4c826 | 2009-01-21 00:39:53 +0000 | [diff] [blame] | 5662 | // struct _objc_protocol_extension * |
Owen Anderson | 9793f0e | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 5663 | ProtocolExtensionPtrTy = llvm::PointerType::getUnqual(ProtocolExtensionTy); |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 5664 | |
Daniel Dunbar | c475d42 | 2008-10-29 22:36:39 +0000 | [diff] [blame] | 5665 | // Handle recursive construction of Protocol and ProtocolList types |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 5666 | |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 5667 | ProtocolTy = |
Chris Lattner | 5ec04a5 | 2011-08-12 17:43:31 +0000 | [diff] [blame] | 5668 | llvm::StructType::create(VMContext, "struct._objc_protocol"); |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 5669 | |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 5670 | ProtocolListTy = |
Chris Lattner | 5ec04a5 | 2011-08-12 17:43:31 +0000 | [diff] [blame] | 5671 | llvm::StructType::create(VMContext, "struct._objc_protocol_list"); |
Serge Guelton | 1d99327 | 2017-05-09 19:31:30 +0000 | [diff] [blame] | 5672 | ProtocolListTy->setBody(llvm::PointerType::getUnqual(ProtocolListTy), LongTy, |
| 5673 | llvm::ArrayType::get(ProtocolTy, 0)); |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 5674 | |
Fariborz Jahanian | 4b4c826 | 2009-01-21 00:39:53 +0000 | [diff] [blame] | 5675 | // struct _objc_protocol { |
| 5676 | // struct _objc_protocol_extension *isa; |
| 5677 | // char *protocol_name; |
| 5678 | // struct _objc_protocol **_objc_protocol_list; |
| 5679 | // struct _objc_method_description_list *instance_methods; |
| 5680 | // struct _objc_method_description_list *class_methods; |
| 5681 | // } |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 5682 | ProtocolTy->setBody(ProtocolExtensionPtrTy, Int8PtrTy, |
| 5683 | llvm::PointerType::getUnqual(ProtocolListTy), |
Serge Guelton | 1d99327 | 2017-05-09 19:31:30 +0000 | [diff] [blame] | 5684 | MethodDescriptionListPtrTy, MethodDescriptionListPtrTy); |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 5685 | |
Fariborz Jahanian | 4b4c826 | 2009-01-21 00:39:53 +0000 | [diff] [blame] | 5686 | // struct _objc_protocol_list * |
Owen Anderson | 9793f0e | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 5687 | ProtocolListPtrTy = llvm::PointerType::getUnqual(ProtocolListTy); |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 5688 | |
Owen Anderson | 9793f0e | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 5689 | ProtocolPtrTy = llvm::PointerType::getUnqual(ProtocolTy); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 5690 | |
| 5691 | // Class description structures |
| 5692 | |
Fariborz Jahanian | 4b4c826 | 2009-01-21 00:39:53 +0000 | [diff] [blame] | 5693 | // struct _objc_ivar { |
| 5694 | // char *ivar_name; |
| 5695 | // char *ivar_type; |
| 5696 | // int ivar_offset; |
| 5697 | // } |
Serge Guelton | 1d99327 | 2017-05-09 19:31:30 +0000 | [diff] [blame] | 5698 | IvarTy = llvm::StructType::create("struct._objc_ivar", Int8PtrTy, Int8PtrTy, |
| 5699 | IntTy); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 5700 | |
Fariborz Jahanian | 4b4c826 | 2009-01-21 00:39:53 +0000 | [diff] [blame] | 5701 | // struct _objc_ivar_list * |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 5702 | IvarListTy = |
Chris Lattner | 5ec04a5 | 2011-08-12 17:43:31 +0000 | [diff] [blame] | 5703 | llvm::StructType::create(VMContext, "struct._objc_ivar_list"); |
Owen Anderson | 9793f0e | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 5704 | IvarListPtrTy = llvm::PointerType::getUnqual(IvarListTy); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 5705 | |
Fariborz Jahanian | 4b4c826 | 2009-01-21 00:39:53 +0000 | [diff] [blame] | 5706 | // struct _objc_method_list * |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 5707 | MethodListTy = |
Chris Lattner | 5ec04a5 | 2011-08-12 17:43:31 +0000 | [diff] [blame] | 5708 | llvm::StructType::create(VMContext, "struct._objc_method_list"); |
Owen Anderson | 9793f0e | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 5709 | MethodListPtrTy = llvm::PointerType::getUnqual(MethodListTy); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 5710 | |
Fariborz Jahanian | 4b4c826 | 2009-01-21 00:39:53 +0000 | [diff] [blame] | 5711 | // struct _objc_class_extension * |
Serge Guelton | 1d99327 | 2017-05-09 19:31:30 +0000 | [diff] [blame] | 5712 | ClassExtensionTy = llvm::StructType::create( |
| 5713 | "struct._objc_class_extension", IntTy, Int8PtrTy, PropertyListPtrTy); |
Owen Anderson | 9793f0e | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 5714 | ClassExtensionPtrTy = llvm::PointerType::getUnqual(ClassExtensionTy); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 5715 | |
Chris Lattner | 5ec04a5 | 2011-08-12 17:43:31 +0000 | [diff] [blame] | 5716 | ClassTy = llvm::StructType::create(VMContext, "struct._objc_class"); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 5717 | |
Fariborz Jahanian | 4b4c826 | 2009-01-21 00:39:53 +0000 | [diff] [blame] | 5718 | // struct _objc_class { |
| 5719 | // Class isa; |
| 5720 | // Class super_class; |
| 5721 | // char *name; |
| 5722 | // long version; |
| 5723 | // long info; |
| 5724 | // long instance_size; |
| 5725 | // struct _objc_ivar_list *ivars; |
| 5726 | // struct _objc_method_list *methods; |
| 5727 | // struct _objc_cache *cache; |
| 5728 | // struct _objc_protocol_list *protocols; |
| 5729 | // char *ivar_layout; |
| 5730 | // struct _objc_class_ext *ext; |
| 5731 | // }; |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 5732 | ClassTy->setBody(llvm::PointerType::getUnqual(ClassTy), |
Serge Guelton | 1d99327 | 2017-05-09 19:31:30 +0000 | [diff] [blame] | 5733 | llvm::PointerType::getUnqual(ClassTy), Int8PtrTy, LongTy, |
| 5734 | LongTy, LongTy, IvarListPtrTy, MethodListPtrTy, CachePtrTy, |
| 5735 | ProtocolListPtrTy, Int8PtrTy, ClassExtensionPtrTy); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5736 | |
Owen Anderson | 9793f0e | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 5737 | ClassPtrTy = llvm::PointerType::getUnqual(ClassTy); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 5738 | |
Fariborz Jahanian | 4b4c826 | 2009-01-21 00:39:53 +0000 | [diff] [blame] | 5739 | // struct _objc_category { |
| 5740 | // char *category_name; |
| 5741 | // char *class_name; |
| 5742 | // struct _objc_method_list *instance_method; |
| 5743 | // struct _objc_method_list *class_method; |
Manman Ren | b373677 | 2016-01-25 22:37:47 +0000 | [diff] [blame] | 5744 | // struct _objc_protocol_list *protocols; |
Fariborz Jahanian | 4b4c826 | 2009-01-21 00:39:53 +0000 | [diff] [blame] | 5745 | // uint32_t size; // sizeof(struct _objc_category) |
| 5746 | // struct _objc_property_list *instance_properties;// category's @property |
Manman Ren | 96df0b3 | 2016-01-29 23:45:01 +0000 | [diff] [blame] | 5747 | // struct _objc_property_list *class_properties; |
Fariborz Jahanian | 4b4c826 | 2009-01-21 00:39:53 +0000 | [diff] [blame] | 5748 | // } |
Serge Guelton | 1d99327 | 2017-05-09 19:31:30 +0000 | [diff] [blame] | 5749 | CategoryTy = llvm::StructType::create( |
| 5750 | "struct._objc_category", Int8PtrTy, Int8PtrTy, MethodListPtrTy, |
| 5751 | MethodListPtrTy, ProtocolListPtrTy, IntTy, PropertyListPtrTy, |
| 5752 | PropertyListPtrTy); |
Daniel Dunbar | 938a77f | 2008-08-22 20:34:54 +0000 | [diff] [blame] | 5753 | |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 5754 | // Global metadata structures |
| 5755 | |
Fariborz Jahanian | 4b4c826 | 2009-01-21 00:39:53 +0000 | [diff] [blame] | 5756 | // struct _objc_symtab { |
| 5757 | // long sel_ref_cnt; |
| 5758 | // SEL *refs; |
| 5759 | // short cls_def_cnt; |
| 5760 | // short cat_def_cnt; |
| 5761 | // char *defs[cls_def_cnt + cat_def_cnt]; |
| 5762 | // } |
Serge Guelton | 1d99327 | 2017-05-09 19:31:30 +0000 | [diff] [blame] | 5763 | SymtabTy = llvm::StructType::create("struct._objc_symtab", LongTy, |
| 5764 | SelectorPtrTy, ShortTy, ShortTy, |
| 5765 | llvm::ArrayType::get(Int8PtrTy, 0)); |
Owen Anderson | 9793f0e | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 5766 | SymtabPtrTy = llvm::PointerType::getUnqual(SymtabTy); |
Daniel Dunbar | 22d82ed | 2008-08-21 04:36:09 +0000 | [diff] [blame] | 5767 | |
Fariborz Jahanian | eee54df | 2009-01-22 00:37:21 +0000 | [diff] [blame] | 5768 | // struct _objc_module { |
| 5769 | // long version; |
| 5770 | // long size; // sizeof(struct _objc_module) |
| 5771 | // char *name; |
| 5772 | // struct _objc_symtab* symtab; |
| 5773 | // } |
Serge Guelton | 1d99327 | 2017-05-09 19:31:30 +0000 | [diff] [blame] | 5774 | ModuleTy = llvm::StructType::create("struct._objc_module", LongTy, LongTy, |
| 5775 | Int8PtrTy, SymtabPtrTy); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5776 | |
Mike Stump | 18bb928 | 2009-05-16 07:57:57 +0000 | [diff] [blame] | 5777 | // FIXME: This is the size of the setjmp buffer and should be target |
| 5778 | // specific. 18 is what's used on 32-bit X86. |
Anders Carlsson | 9ff2248 | 2008-09-09 10:10:21 +0000 | [diff] [blame] | 5779 | uint64_t SetJmpBufferSize = 18; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5780 | |
Anders Carlsson | 9ff2248 | 2008-09-09 10:10:21 +0000 | [diff] [blame] | 5781 | // Exceptions |
Chris Lattner | ece0409 | 2012-02-07 00:39:47 +0000 | [diff] [blame] | 5782 | llvm::Type *StackPtrTy = llvm::ArrayType::get(CGM.Int8PtrTy, 4); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5783 | |
Serge Guelton | 1d99327 | 2017-05-09 19:31:30 +0000 | [diff] [blame] | 5784 | ExceptionDataTy = llvm::StructType::create( |
| 5785 | "struct._objc_exception_data", |
| 5786 | llvm::ArrayType::get(CGM.Int32Ty, SetJmpBufferSize), StackPtrTy); |
Daniel Dunbar | 8b8683f | 2008-08-12 00:12:39 +0000 | [diff] [blame] | 5787 | } |
| 5788 | |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5789 | ObjCNonFragileABITypesHelper::ObjCNonFragileABITypesHelper(CodeGen::CodeGenModule &cgm) |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5790 | : ObjCCommonTypesHelper(cgm) { |
Fariborz Jahanian | b15a3d5 | 2009-01-22 23:02:58 +0000 | [diff] [blame] | 5791 | // struct _method_list_t { |
| 5792 | // uint32_t entsize; // sizeof(struct _objc_method) |
| 5793 | // uint32_t method_count; |
| 5794 | // struct _objc_method method_list[method_count]; |
| 5795 | // } |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 5796 | MethodListnfABITy = |
Serge Guelton | 1d99327 | 2017-05-09 19:31:30 +0000 | [diff] [blame] | 5797 | llvm::StructType::create("struct.__method_list_t", IntTy, IntTy, |
| 5798 | llvm::ArrayType::get(MethodTy, 0)); |
Fariborz Jahanian | 0232c05 | 2009-01-23 01:46:23 +0000 | [diff] [blame] | 5799 | // struct method_list_t * |
Owen Anderson | 9793f0e | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 5800 | MethodListnfABIPtrTy = llvm::PointerType::getUnqual(MethodListnfABITy); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5801 | |
Fariborz Jahanian | b15a3d5 | 2009-01-22 23:02:58 +0000 | [diff] [blame] | 5802 | // struct _protocol_t { |
| 5803 | // id isa; // NULL |
| 5804 | // const char * const protocol_name; |
Fariborz Jahanian | 0232c05 | 2009-01-23 01:46:23 +0000 | [diff] [blame] | 5805 | // const struct _protocol_list_t * protocol_list; // super protocols |
Fariborz Jahanian | b15a3d5 | 2009-01-22 23:02:58 +0000 | [diff] [blame] | 5806 | // const struct method_list_t * const instance_methods; |
| 5807 | // const struct method_list_t * const class_methods; |
| 5808 | // const struct method_list_t *optionalInstanceMethods; |
| 5809 | // const struct method_list_t *optionalClassMethods; |
Fariborz Jahanian | 0232c05 | 2009-01-23 01:46:23 +0000 | [diff] [blame] | 5810 | // const struct _prop_list_t * properties; |
Fariborz Jahanian | b15a3d5 | 2009-01-22 23:02:58 +0000 | [diff] [blame] | 5811 | // const uint32_t size; // sizeof(struct _protocol_t) |
| 5812 | // const uint32_t flags; // = 0 |
Bob Wilson | 5f4e3a7 | 2011-11-30 01:57:58 +0000 | [diff] [blame] | 5813 | // const char ** extendedMethodTypes; |
Fariborz Jahanian | 6a9c46b | 2015-03-31 22:22:40 +0000 | [diff] [blame] | 5814 | // const char *demangledName; |
Manman Ren | ce7bff5 | 2016-01-29 23:46:55 +0000 | [diff] [blame] | 5815 | // const struct _prop_list_t * class_properties; |
Fariborz Jahanian | b15a3d5 | 2009-01-22 23:02:58 +0000 | [diff] [blame] | 5816 | // } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5817 | |
Fariborz Jahanian | 0232c05 | 2009-01-23 01:46:23 +0000 | [diff] [blame] | 5818 | // Holder for struct _protocol_list_t * |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 5819 | ProtocolListnfABITy = |
Chris Lattner | 5ec04a5 | 2011-08-12 17:43:31 +0000 | [diff] [blame] | 5820 | llvm::StructType::create(VMContext, "struct._objc_protocol_list"); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5821 | |
Serge Guelton | 1d99327 | 2017-05-09 19:31:30 +0000 | [diff] [blame] | 5822 | ProtocolnfABITy = llvm::StructType::create( |
| 5823 | "struct._protocol_t", ObjectPtrTy, Int8PtrTy, |
| 5824 | llvm::PointerType::getUnqual(ProtocolListnfABITy), MethodListnfABIPtrTy, |
| 5825 | MethodListnfABIPtrTy, MethodListnfABIPtrTy, MethodListnfABIPtrTy, |
| 5826 | PropertyListPtrTy, IntTy, IntTy, Int8PtrPtrTy, Int8PtrTy, |
| 5827 | PropertyListPtrTy); |
Daniel Dunbar | 8de90f0 | 2009-02-15 07:36:20 +0000 | [diff] [blame] | 5828 | |
| 5829 | // struct _protocol_t* |
Owen Anderson | 9793f0e | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 5830 | ProtocolnfABIPtrTy = llvm::PointerType::getUnqual(ProtocolnfABITy); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5831 | |
Fariborz Jahanian | 56b3b77 | 2009-01-29 19:24:30 +0000 | [diff] [blame] | 5832 | // struct _protocol_list_t { |
Fariborz Jahanian | 0232c05 | 2009-01-23 01:46:23 +0000 | [diff] [blame] | 5833 | // long protocol_count; // Note, this is 32/64 bit |
Daniel Dunbar | 8de90f0 | 2009-02-15 07:36:20 +0000 | [diff] [blame] | 5834 | // struct _protocol_t *[protocol_count]; |
Fariborz Jahanian | b15a3d5 | 2009-01-22 23:02:58 +0000 | [diff] [blame] | 5835 | // } |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 5836 | ProtocolListnfABITy->setBody(LongTy, |
Serge Guelton | 1d99327 | 2017-05-09 19:31:30 +0000 | [diff] [blame] | 5837 | llvm::ArrayType::get(ProtocolnfABIPtrTy, 0)); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5838 | |
Fariborz Jahanian | 0232c05 | 2009-01-23 01:46:23 +0000 | [diff] [blame] | 5839 | // struct _objc_protocol_list* |
Owen Anderson | 9793f0e | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 5840 | ProtocolListnfABIPtrTy = llvm::PointerType::getUnqual(ProtocolListnfABITy); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5841 | |
Fariborz Jahanian | b15a3d5 | 2009-01-22 23:02:58 +0000 | [diff] [blame] | 5842 | // struct _ivar_t { |
Tim Northover | 238b508 | 2014-03-29 13:42:40 +0000 | [diff] [blame] | 5843 | // unsigned [long] int *offset; // pointer to ivar offset location |
Fariborz Jahanian | b15a3d5 | 2009-01-22 23:02:58 +0000 | [diff] [blame] | 5844 | // char *name; |
| 5845 | // char *type; |
| 5846 | // uint32_t alignment; |
| 5847 | // uint32_t size; |
| 5848 | // } |
Tim Northover | 238b508 | 2014-03-29 13:42:40 +0000 | [diff] [blame] | 5849 | IvarnfABITy = llvm::StructType::create( |
| 5850 | "struct._ivar_t", llvm::PointerType::getUnqual(IvarOffsetVarTy), |
Serge Guelton | 1d99327 | 2017-05-09 19:31:30 +0000 | [diff] [blame] | 5851 | Int8PtrTy, Int8PtrTy, IntTy, IntTy); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5852 | |
Fariborz Jahanian | b15a3d5 | 2009-01-22 23:02:58 +0000 | [diff] [blame] | 5853 | // struct _ivar_list_t { |
| 5854 | // uint32 entsize; // sizeof(struct _ivar_t) |
| 5855 | // uint32 count; |
| 5856 | // struct _iver_t list[count]; |
| 5857 | // } |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 5858 | IvarListnfABITy = |
Serge Guelton | 1d99327 | 2017-05-09 19:31:30 +0000 | [diff] [blame] | 5859 | llvm::StructType::create("struct._ivar_list_t", IntTy, IntTy, |
| 5860 | llvm::ArrayType::get(IvarnfABITy, 0)); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5861 | |
Owen Anderson | 9793f0e | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 5862 | IvarListnfABIPtrTy = llvm::PointerType::getUnqual(IvarListnfABITy); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5863 | |
Fariborz Jahanian | 0232c05 | 2009-01-23 01:46:23 +0000 | [diff] [blame] | 5864 | // struct _class_ro_t { |
Fariborz Jahanian | b15a3d5 | 2009-01-22 23:02:58 +0000 | [diff] [blame] | 5865 | // uint32_t const flags; |
| 5866 | // uint32_t const instanceStart; |
| 5867 | // uint32_t const instanceSize; |
| 5868 | // uint32_t const reserved; // only when building for 64bit targets |
| 5869 | // const uint8_t * const ivarLayout; |
| 5870 | // const char *const name; |
| 5871 | // const struct _method_list_t * const baseMethods; |
| 5872 | // const struct _objc_protocol_list *const baseProtocols; |
| 5873 | // const struct _ivar_list_t *const ivars; |
| 5874 | // const uint8_t * const weakIvarLayout; |
| 5875 | // const struct _prop_list_t * const properties; |
| 5876 | // } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5877 | |
Fariborz Jahanian | 0232c05 | 2009-01-23 01:46:23 +0000 | [diff] [blame] | 5878 | // FIXME. Add 'reserved' field in 64bit abi mode! |
Serge Guelton | 1d99327 | 2017-05-09 19:31:30 +0000 | [diff] [blame] | 5879 | ClassRonfABITy = llvm::StructType::create( |
| 5880 | "struct._class_ro_t", IntTy, IntTy, IntTy, Int8PtrTy, Int8PtrTy, |
| 5881 | MethodListnfABIPtrTy, ProtocolListnfABIPtrTy, IvarListnfABIPtrTy, |
| 5882 | Int8PtrTy, PropertyListPtrTy); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5883 | |
Fariborz Jahanian | 0232c05 | 2009-01-23 01:46:23 +0000 | [diff] [blame] | 5884 | // ImpnfABITy - LLVM for id (*)(id, SEL, ...) |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 5885 | llvm::Type *params[] = { ObjectPtrTy, SelectorPtrTy }; |
John McCall | 9dc0db2 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 5886 | ImpnfABITy = llvm::FunctionType::get(ObjectPtrTy, params, false) |
| 5887 | ->getPointerTo(); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5888 | |
Fariborz Jahanian | 0232c05 | 2009-01-23 01:46:23 +0000 | [diff] [blame] | 5889 | // struct _class_t { |
| 5890 | // struct _class_t *isa; |
| 5891 | // struct _class_t * const superclass; |
| 5892 | // void *cache; |
| 5893 | // IMP *vtable; |
| 5894 | // struct class_ro_t *ro; |
| 5895 | // } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5896 | |
Chris Lattner | 5ec04a5 | 2011-08-12 17:43:31 +0000 | [diff] [blame] | 5897 | ClassnfABITy = llvm::StructType::create(VMContext, "struct._class_t"); |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 5898 | ClassnfABITy->setBody(llvm::PointerType::getUnqual(ClassnfABITy), |
Serge Guelton | 1d99327 | 2017-05-09 19:31:30 +0000 | [diff] [blame] | 5899 | llvm::PointerType::getUnqual(ClassnfABITy), CachePtrTy, |
Chris Lattner | a5f58b0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 5900 | llvm::PointerType::getUnqual(ImpnfABITy), |
Serge Guelton | 1d99327 | 2017-05-09 19:31:30 +0000 | [diff] [blame] | 5901 | llvm::PointerType::getUnqual(ClassRonfABITy)); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5902 | |
Fariborz Jahanian | 7139404 | 2009-01-23 23:53:38 +0000 | [diff] [blame] | 5903 | // LLVM for struct _class_t * |
Owen Anderson | 9793f0e | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 5904 | ClassnfABIPtrTy = llvm::PointerType::getUnqual(ClassnfABITy); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5905 | |
Fariborz Jahanian | 0232c05 | 2009-01-23 01:46:23 +0000 | [diff] [blame] | 5906 | // struct _category_t { |
| 5907 | // const char * const name; |
| 5908 | // struct _class_t *const cls; |
| 5909 | // const struct _method_list_t * const instance_methods; |
| 5910 | // const struct _method_list_t * const class_methods; |
| 5911 | // const struct _protocol_list_t * const protocols; |
| 5912 | // const struct _prop_list_t * const properties; |
Manman Ren | 96df0b3 | 2016-01-29 23:45:01 +0000 | [diff] [blame] | 5913 | // const struct _prop_list_t * const class_properties; |
Manman Ren | 42ff390 | 2016-02-24 17:49:50 +0000 | [diff] [blame] | 5914 | // const uint32_t size; |
Fariborz Jahanian | 5a63e4c | 2009-01-23 17:41:22 +0000 | [diff] [blame] | 5915 | // } |
Serge Guelton | 1d99327 | 2017-05-09 19:31:30 +0000 | [diff] [blame] | 5916 | CategorynfABITy = llvm::StructType::create( |
| 5917 | "struct._category_t", Int8PtrTy, ClassnfABIPtrTy, MethodListnfABIPtrTy, |
| 5918 | MethodListnfABIPtrTy, ProtocolListnfABIPtrTy, PropertyListPtrTy, |
| 5919 | PropertyListPtrTy, IntTy); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5920 | |
Fariborz Jahanian | 82c72e1 | 2009-02-03 23:49:23 +0000 | [diff] [blame] | 5921 | // New types for nonfragile abi messaging. |
Fariborz Jahanian | e4dc35d | 2009-02-04 20:42:28 +0000 | [diff] [blame] | 5922 | CodeGen::CodeGenTypes &Types = CGM.getTypes(); |
| 5923 | ASTContext &Ctx = CGM.getContext(); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5924 | |
Fariborz Jahanian | 82c72e1 | 2009-02-03 23:49:23 +0000 | [diff] [blame] | 5925 | // MessageRefTy - LLVM for: |
| 5926 | // struct _message_ref_t { |
| 5927 | // IMP messenger; |
| 5928 | // SEL name; |
| 5929 | // }; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5930 | |
Fariborz Jahanian | e4dc35d | 2009-02-04 20:42:28 +0000 | [diff] [blame] | 5931 | // First the clang type for struct _message_ref_t |
Abramo Bagnara | 6150c88 | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 5932 | RecordDecl *RD = RecordDecl::Create(Ctx, TTK_Struct, |
Daniel Dunbar | 0c00537 | 2010-04-29 16:29:11 +0000 | [diff] [blame] | 5933 | Ctx.getTranslationUnitDecl(), |
Abramo Bagnara | 29c2d46 | 2011-03-09 14:09:51 +0000 | [diff] [blame] | 5934 | SourceLocation(), SourceLocation(), |
Fariborz Jahanian | e4dc35d | 2009-02-04 20:42:28 +0000 | [diff] [blame] | 5935 | &Ctx.Idents.get("_message_ref_t")); |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 5936 | RD->addDecl(FieldDecl::Create(Ctx, RD, SourceLocation(), SourceLocation(), |
| 5937 | nullptr, Ctx.VoidPtrTy, nullptr, nullptr, false, |
Richard Smith | 2b01318 | 2012-06-10 03:12:00 +0000 | [diff] [blame] | 5938 | ICIS_NoInit)); |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 5939 | RD->addDecl(FieldDecl::Create(Ctx, RD, SourceLocation(), SourceLocation(), |
| 5940 | nullptr, Ctx.getObjCSelType(), nullptr, nullptr, |
| 5941 | false, ICIS_NoInit)); |
Douglas Gregor | d505812 | 2010-02-11 01:19:42 +0000 | [diff] [blame] | 5942 | RD->completeDefinition(); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5943 | |
Fariborz Jahanian | e4dc35d | 2009-02-04 20:42:28 +0000 | [diff] [blame] | 5944 | MessageRefCTy = Ctx.getTagDeclType(RD); |
| 5945 | MessageRefCPtrTy = Ctx.getPointerType(MessageRefCTy); |
| 5946 | MessageRefTy = cast<llvm::StructType>(Types.ConvertType(MessageRefCTy)); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5947 | |
Fariborz Jahanian | 82c72e1 | 2009-02-03 23:49:23 +0000 | [diff] [blame] | 5948 | // MessageRefPtrTy - LLVM for struct _message_ref_t* |
Owen Anderson | 9793f0e | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 5949 | MessageRefPtrTy = llvm::PointerType::getUnqual(MessageRefTy); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5950 | |
Fariborz Jahanian | 82c72e1 | 2009-02-03 23:49:23 +0000 | [diff] [blame] | 5951 | // SuperMessageRefTy - LLVM for: |
| 5952 | // struct _super_message_ref_t { |
| 5953 | // SUPER_IMP messenger; |
| 5954 | // SEL name; |
| 5955 | // }; |
Serge Guelton | 1d99327 | 2017-05-09 19:31:30 +0000 | [diff] [blame] | 5956 | SuperMessageRefTy = llvm::StructType::create("struct._super_message_ref_t", |
| 5957 | ImpnfABITy, SelectorPtrTy); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5958 | |
Fariborz Jahanian | 82c72e1 | 2009-02-03 23:49:23 +0000 | [diff] [blame] | 5959 | // SuperMessageRefPtrTy - LLVM for struct _super_message_ref_t* |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5960 | SuperMessageRefPtrTy = llvm::PointerType::getUnqual(SuperMessageRefTy); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 5961 | |
Daniel Dunbar | b1559a4 | 2009-03-01 04:46:24 +0000 | [diff] [blame] | 5962 | |
| 5963 | // struct objc_typeinfo { |
| 5964 | // const void** vtable; // objc_ehtype_vtable + 2 |
| 5965 | // const char* name; // c++ typeinfo string |
| 5966 | // Class cls; |
| 5967 | // }; |
Serge Guelton | 1d99327 | 2017-05-09 19:31:30 +0000 | [diff] [blame] | 5968 | EHTypeTy = llvm::StructType::create("struct._objc_typeinfo", |
| 5969 | llvm::PointerType::getUnqual(Int8PtrTy), |
| 5970 | Int8PtrTy, ClassnfABIPtrTy); |
Owen Anderson | 9793f0e | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 5971 | EHTypePtrTy = llvm::PointerType::getUnqual(EHTypeTy); |
Daniel Dunbar | 8b8683f | 2008-08-12 00:12:39 +0000 | [diff] [blame] | 5972 | } |
| 5973 | |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5974 | llvm::Function *CGObjCNonFragileABIMac::ModuleInitFunction() { |
Fariborz Jahanian | 7139404 | 2009-01-23 23:53:38 +0000 | [diff] [blame] | 5975 | FinishNonFragileABIModule(); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5976 | |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 5977 | return nullptr; |
Fariborz Jahanian | 7139404 | 2009-01-23 23:53:38 +0000 | [diff] [blame] | 5978 | } |
| 5979 | |
Saleem Abdulrasool | 1e6c406 | 2016-05-16 05:06:49 +0000 | [diff] [blame] | 5980 | void CGObjCNonFragileABIMac::AddModuleClassList( |
| 5981 | ArrayRef<llvm::GlobalValue *> Container, StringRef SymbolName, |
| 5982 | StringRef SectionName) { |
Daniel Dunbar | 19573e7 | 2009-05-15 21:48:48 +0000 | [diff] [blame] | 5983 | unsigned NumClasses = Container.size(); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5984 | |
Daniel Dunbar | 19573e7 | 2009-05-15 21:48:48 +0000 | [diff] [blame] | 5985 | if (!NumClasses) |
| 5986 | return; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5987 | |
Chris Lattner | 3def9ae | 2012-02-06 22:16:34 +0000 | [diff] [blame] | 5988 | SmallVector<llvm::Constant*, 8> Symbols(NumClasses); |
Daniel Dunbar | 19573e7 | 2009-05-15 21:48:48 +0000 | [diff] [blame] | 5989 | for (unsigned i=0; i<NumClasses; i++) |
Owen Anderson | ade90fd | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 5990 | Symbols[i] = llvm::ConstantExpr::getBitCast(Container[i], |
Daniel Dunbar | 19573e7 | 2009-05-15 21:48:48 +0000 | [diff] [blame] | 5991 | ObjCTypes.Int8PtrTy); |
Chris Lattner | 3def9ae | 2012-02-06 22:16:34 +0000 | [diff] [blame] | 5992 | llvm::Constant *Init = |
Owen Anderson | 9793f0e | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 5993 | llvm::ConstantArray::get(llvm::ArrayType::get(ObjCTypes.Int8PtrTy, |
Chris Lattner | 3def9ae | 2012-02-06 22:16:34 +0000 | [diff] [blame] | 5994 | Symbols.size()), |
Daniel Dunbar | 19573e7 | 2009-05-15 21:48:48 +0000 | [diff] [blame] | 5995 | Symbols); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 5996 | |
Daniel Dunbar | 19573e7 | 2009-05-15 21:48:48 +0000 | [diff] [blame] | 5997 | llvm::GlobalVariable *GV = |
Owen Anderson | c10c8d3 | 2009-07-08 19:05:04 +0000 | [diff] [blame] | 5998 | new llvm::GlobalVariable(CGM.getModule(), Init->getType(), false, |
Rafael Espindola | 5179a4e | 2014-02-27 19:01:11 +0000 | [diff] [blame] | 5999 | llvm::GlobalValue::PrivateLinkage, |
Daniel Dunbar | 19573e7 | 2009-05-15 21:48:48 +0000 | [diff] [blame] | 6000 | Init, |
Owen Anderson | c10c8d3 | 2009-07-08 19:05:04 +0000 | [diff] [blame] | 6001 | SymbolName); |
Micah Villmow | dd31ca1 | 2012-10-08 16:25:52 +0000 | [diff] [blame] | 6002 | GV->setAlignment(CGM.getDataLayout().getABITypeAlignment(Init->getType())); |
Daniel Dunbar | 19573e7 | 2009-05-15 21:48:48 +0000 | [diff] [blame] | 6003 | GV->setSection(SectionName); |
Rafael Espindola | 060062a | 2014-03-06 22:15:10 +0000 | [diff] [blame] | 6004 | CGM.addCompilerUsedGlobal(GV); |
Daniel Dunbar | 19573e7 | 2009-05-15 21:48:48 +0000 | [diff] [blame] | 6005 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6006 | |
Fariborz Jahanian | 7139404 | 2009-01-23 23:53:38 +0000 | [diff] [blame] | 6007 | void CGObjCNonFragileABIMac::FinishNonFragileABIModule() { |
| 6008 | // nonfragile abi has no module definition. |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6009 | |
Daniel Dunbar | 19573e7 | 2009-05-15 21:48:48 +0000 | [diff] [blame] | 6010 | // Build list of all implemented class addresses in array |
Fariborz Jahanian | 279abd3 | 2009-01-30 20:55:31 +0000 | [diff] [blame] | 6011 | // L_OBJC_LABEL_CLASS_$. |
Fariborz Jahanian | f322f2f | 2014-03-11 00:25:05 +0000 | [diff] [blame] | 6012 | |
| 6013 | for (unsigned i=0, NumClasses=ImplementedClasses.size(); i<NumClasses; i++) { |
| 6014 | const ObjCInterfaceDecl *ID = ImplementedClasses[i]; |
| 6015 | assert(ID); |
| 6016 | if (ObjCImplementationDecl *IMP = ID->getImplementation()) |
| 6017 | // We are implementing a weak imported interface. Give it external linkage |
Fariborz Jahanian | bc94c94 | 2014-07-15 17:14:34 +0000 | [diff] [blame] | 6018 | if (ID->isWeakImported() && !IMP->isWeakImported()) { |
Fariborz Jahanian | f322f2f | 2014-03-11 00:25:05 +0000 | [diff] [blame] | 6019 | DefinedClasses[i]->setLinkage(llvm::GlobalVariable::ExternalLinkage); |
Fariborz Jahanian | bc94c94 | 2014-07-15 17:14:34 +0000 | [diff] [blame] | 6020 | DefinedMetaClasses[i]->setLinkage(llvm::GlobalVariable::ExternalLinkage); |
| 6021 | } |
Fariborz Jahanian | f322f2f | 2014-03-11 00:25:05 +0000 | [diff] [blame] | 6022 | } |
Rafael Espindola | 8b27bdb | 2014-11-06 13:30:38 +0000 | [diff] [blame] | 6023 | |
| 6024 | AddModuleClassList(DefinedClasses, "OBJC_LABEL_CLASS_$", |
Saleem Abdulrasool | 13d73d5 | 2017-06-03 16:18:09 +0000 | [diff] [blame] | 6025 | GetSectionName("__objc_classlist", |
| 6026 | "regular,no_dead_strip")); |
Rafael Espindola | 554256c | 2014-02-26 22:25:45 +0000 | [diff] [blame] | 6027 | |
Rafael Espindola | 8b27bdb | 2014-11-06 13:30:38 +0000 | [diff] [blame] | 6028 | AddModuleClassList(DefinedNonLazyClasses, "OBJC_LABEL_NONLAZY_CLASS_$", |
Saleem Abdulrasool | 13d73d5 | 2017-06-03 16:18:09 +0000 | [diff] [blame] | 6029 | GetSectionName("__objc_nlclslist", |
| 6030 | "regular,no_dead_strip")); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6031 | |
Fariborz Jahanian | 279abd3 | 2009-01-30 20:55:31 +0000 | [diff] [blame] | 6032 | // Build list of all implemented category addresses in array |
| 6033 | // L_OBJC_LABEL_CATEGORY_$. |
Rafael Espindola | 8b27bdb | 2014-11-06 13:30:38 +0000 | [diff] [blame] | 6034 | AddModuleClassList(DefinedCategories, "OBJC_LABEL_CATEGORY_$", |
Saleem Abdulrasool | 13d73d5 | 2017-06-03 16:18:09 +0000 | [diff] [blame] | 6035 | GetSectionName("__objc_catlist", |
| 6036 | "regular,no_dead_strip")); |
Rafael Espindola | 8b27bdb | 2014-11-06 13:30:38 +0000 | [diff] [blame] | 6037 | AddModuleClassList(DefinedNonLazyCategories, "OBJC_LABEL_NONLAZY_CATEGORY_$", |
Saleem Abdulrasool | 13d73d5 | 2017-06-03 16:18:09 +0000 | [diff] [blame] | 6038 | GetSectionName("__objc_nlcatlist", |
| 6039 | "regular,no_dead_strip")); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6040 | |
Daniel Dunbar | 5e63927 | 2010-04-25 20:39:01 +0000 | [diff] [blame] | 6041 | EmitImageInfo(); |
Fariborz Jahanian | 7139404 | 2009-01-23 23:53:38 +0000 | [diff] [blame] | 6042 | } |
| 6043 | |
John McCall | 9e8bb00 | 2011-05-14 03:10:52 +0000 | [diff] [blame] | 6044 | /// isVTableDispatchedSelector - Returns true if SEL is not in the list of |
| 6045 | /// VTableDispatchMethods; false otherwise. What this means is that |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6046 | /// except for the 19 selectors in the list, we generate 32bit-style |
Fariborz Jahanian | 5d5ed2d | 2009-05-11 19:25:47 +0000 | [diff] [blame] | 6047 | /// message dispatch call for all the rest. |
John McCall | 9e8bb00 | 2011-05-14 03:10:52 +0000 | [diff] [blame] | 6048 | bool CGObjCNonFragileABIMac::isVTableDispatchedSelector(Selector Sel) { |
| 6049 | // At various points we've experimented with using vtable-based |
| 6050 | // dispatch for all methods. |
Daniel Dunbar | fca18c1b4 | 2010-04-24 17:56:46 +0000 | [diff] [blame] | 6051 | switch (CGM.getCodeGenOpts().getObjCDispatchMethod()) { |
Daniel Dunbar | fca18c1b4 | 2010-04-24 17:56:46 +0000 | [diff] [blame] | 6052 | case CodeGenOptions::Legacy: |
Fariborz Jahanian | dfb3983 | 2010-04-19 17:53:30 +0000 | [diff] [blame] | 6053 | return false; |
John McCall | 9e8bb00 | 2011-05-14 03:10:52 +0000 | [diff] [blame] | 6054 | case CodeGenOptions::NonLegacy: |
| 6055 | return true; |
Daniel Dunbar | fca18c1b4 | 2010-04-24 17:56:46 +0000 | [diff] [blame] | 6056 | case CodeGenOptions::Mixed: |
| 6057 | break; |
| 6058 | } |
| 6059 | |
| 6060 | // If so, see whether this selector is in the white-list of things which must |
| 6061 | // use the new dispatch convention. We lazily build a dense set for this. |
John McCall | 9e8bb00 | 2011-05-14 03:10:52 +0000 | [diff] [blame] | 6062 | if (VTableDispatchMethods.empty()) { |
| 6063 | VTableDispatchMethods.insert(GetNullarySelector("alloc")); |
| 6064 | VTableDispatchMethods.insert(GetNullarySelector("class")); |
| 6065 | VTableDispatchMethods.insert(GetNullarySelector("self")); |
| 6066 | VTableDispatchMethods.insert(GetNullarySelector("isFlipped")); |
| 6067 | VTableDispatchMethods.insert(GetNullarySelector("length")); |
| 6068 | VTableDispatchMethods.insert(GetNullarySelector("count")); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6069 | |
John McCall | 9e8bb00 | 2011-05-14 03:10:52 +0000 | [diff] [blame] | 6070 | // These are vtable-based if GC is disabled. |
| 6071 | // Optimistically use vtable dispatch for hybrid compiles. |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 6072 | if (CGM.getLangOpts().getGC() != LangOptions::GCOnly) { |
John McCall | 9e8bb00 | 2011-05-14 03:10:52 +0000 | [diff] [blame] | 6073 | VTableDispatchMethods.insert(GetNullarySelector("retain")); |
| 6074 | VTableDispatchMethods.insert(GetNullarySelector("release")); |
| 6075 | VTableDispatchMethods.insert(GetNullarySelector("autorelease")); |
| 6076 | } |
| 6077 | |
| 6078 | VTableDispatchMethods.insert(GetUnarySelector("allocWithZone")); |
| 6079 | VTableDispatchMethods.insert(GetUnarySelector("isKindOfClass")); |
| 6080 | VTableDispatchMethods.insert(GetUnarySelector("respondsToSelector")); |
| 6081 | VTableDispatchMethods.insert(GetUnarySelector("objectForKey")); |
| 6082 | VTableDispatchMethods.insert(GetUnarySelector("objectAtIndex")); |
| 6083 | VTableDispatchMethods.insert(GetUnarySelector("isEqualToString")); |
| 6084 | VTableDispatchMethods.insert(GetUnarySelector("isEqual")); |
| 6085 | |
| 6086 | // These are vtable-based if GC is enabled. |
| 6087 | // Optimistically use vtable dispatch for hybrid compiles. |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 6088 | if (CGM.getLangOpts().getGC() != LangOptions::NonGC) { |
John McCall | 9e8bb00 | 2011-05-14 03:10:52 +0000 | [diff] [blame] | 6089 | VTableDispatchMethods.insert(GetNullarySelector("hash")); |
| 6090 | VTableDispatchMethods.insert(GetUnarySelector("addObject")); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 6091 | |
John McCall | 9e8bb00 | 2011-05-14 03:10:52 +0000 | [diff] [blame] | 6092 | // "countByEnumeratingWithState:objects:count" |
| 6093 | IdentifierInfo *KeyIdents[] = { |
| 6094 | &CGM.getContext().Idents.get("countByEnumeratingWithState"), |
| 6095 | &CGM.getContext().Idents.get("objects"), |
| 6096 | &CGM.getContext().Idents.get("count") |
| 6097 | }; |
| 6098 | VTableDispatchMethods.insert( |
| 6099 | CGM.getContext().Selectors.getSelector(3, KeyIdents)); |
| 6100 | } |
Fariborz Jahanian | 5d5ed2d | 2009-05-11 19:25:47 +0000 | [diff] [blame] | 6101 | } |
Daniel Dunbar | fca18c1b4 | 2010-04-24 17:56:46 +0000 | [diff] [blame] | 6102 | |
John McCall | 9e8bb00 | 2011-05-14 03:10:52 +0000 | [diff] [blame] | 6103 | return VTableDispatchMethods.count(Sel); |
Fariborz Jahanian | 5d5ed2d | 2009-05-11 19:25:47 +0000 | [diff] [blame] | 6104 | } |
| 6105 | |
Fariborz Jahanian | 9e3ad52 | 2009-01-24 20:21:50 +0000 | [diff] [blame] | 6106 | /// BuildClassRoTInitializer - generate meta-data for: |
| 6107 | /// struct _class_ro_t { |
| 6108 | /// uint32_t const flags; |
| 6109 | /// uint32_t const instanceStart; |
| 6110 | /// uint32_t const instanceSize; |
| 6111 | /// uint32_t const reserved; // only when building for 64bit targets |
| 6112 | /// const uint8_t * const ivarLayout; |
| 6113 | /// const char *const name; |
| 6114 | /// const struct _method_list_t * const baseMethods; |
Fariborz Jahanian | 56b3b77 | 2009-01-29 19:24:30 +0000 | [diff] [blame] | 6115 | /// const struct _protocol_list_t *const baseProtocols; |
Fariborz Jahanian | 9e3ad52 | 2009-01-24 20:21:50 +0000 | [diff] [blame] | 6116 | /// const struct _ivar_list_t *const ivars; |
| 6117 | /// const uint8_t * const weakIvarLayout; |
| 6118 | /// const struct _prop_list_t * const properties; |
| 6119 | /// } |
| 6120 | /// |
| 6121 | llvm::GlobalVariable * CGObjCNonFragileABIMac::BuildClassRoTInitializer( |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6122 | unsigned flags, |
| 6123 | unsigned InstanceStart, |
| 6124 | unsigned InstanceSize, |
| 6125 | const ObjCImplementationDecl *ID) { |
Fariborz Jahanian | 451b92a | 2014-07-16 16:16:04 +0000 | [diff] [blame] | 6126 | std::string ClassName = ID->getObjCRuntimeNameAsString(); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 6127 | |
John McCall | 3fd13f06 | 2015-10-21 18:06:47 +0000 | [diff] [blame] | 6128 | CharUnits beginInstance = CharUnits::fromQuantity(InstanceStart); |
| 6129 | CharUnits endInstance = CharUnits::fromQuantity(InstanceSize); |
| 6130 | |
John McCall | 460ce58 | 2015-10-22 18:38:17 +0000 | [diff] [blame] | 6131 | bool hasMRCWeak = false; |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 6132 | if (CGM.getLangOpts().ObjCAutoRefCount) |
John McCall | ef19dbb | 2012-10-17 04:53:23 +0000 | [diff] [blame] | 6133 | flags |= NonFragileABI_Class_CompiledByARC; |
John McCall | 460ce58 | 2015-10-22 18:38:17 +0000 | [diff] [blame] | 6134 | else if ((hasMRCWeak = hasMRCWeakIvars(CGM, ID))) |
| 6135 | flags |= NonFragileABI_Class_HasMRCWeakIvars; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 6136 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6137 | ConstantInitBuilder builder(CGM); |
| 6138 | auto values = builder.beginStruct(ObjCTypes.ClassRonfABITy); |
| 6139 | |
| 6140 | values.addInt(ObjCTypes.IntTy, flags); |
| 6141 | values.addInt(ObjCTypes.IntTy, InstanceStart); |
| 6142 | values.addInt(ObjCTypes.IntTy, InstanceSize); |
| 6143 | values.add((flags & NonFragileABI_Class_Meta) |
| 6144 | ? GetIvarLayoutName(nullptr, ObjCTypes) |
| 6145 | : BuildStrongIvarLayout(ID, beginInstance, endInstance)); |
| 6146 | values.add(GetClassName(ID->getObjCRuntimeNameAsString())); |
| 6147 | |
Fariborz Jahanian | 99113fd | 2009-01-26 21:38:32 +0000 | [diff] [blame] | 6148 | // const struct _method_list_t * const baseMethods; |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6149 | SmallVector<const ObjCMethodDecl*, 16> methods; |
John McCall | ef19dbb | 2012-10-17 04:53:23 +0000 | [diff] [blame] | 6150 | if (flags & NonFragileABI_Class_Meta) { |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6151 | for (const auto *MD : ID->class_methods()) |
| 6152 | methods.push_back(MD); |
Fariborz Jahanian | 99113fd | 2009-01-26 21:38:32 +0000 | [diff] [blame] | 6153 | } else { |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6154 | for (const auto *MD : ID->instance_methods()) |
| 6155 | methods.push_back(MD); |
Aaron Ballman | f26acce | 2014-03-13 19:50:17 +0000 | [diff] [blame] | 6156 | |
Aaron Ballman | d85eff4 | 2014-03-14 15:02:45 +0000 | [diff] [blame] | 6157 | for (const auto *PID : ID->property_impls()) { |
Fariborz Jahanian | d27a820 | 2009-01-28 22:46:49 +0000 | [diff] [blame] | 6158 | if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize){ |
| 6159 | ObjCPropertyDecl *PD = PID->getPropertyDecl(); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6160 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6161 | if (auto MD = PD->getGetterMethodDecl()) |
| 6162 | if (GetMethodDefinition(MD)) |
| 6163 | methods.push_back(MD); |
| 6164 | if (auto MD = PD->getSetterMethodDecl()) |
| 6165 | if (GetMethodDefinition(MD)) |
| 6166 | methods.push_back(MD); |
Fariborz Jahanian | d27a820 | 2009-01-28 22:46:49 +0000 | [diff] [blame] | 6167 | } |
| 6168 | } |
Fariborz Jahanian | 99113fd | 2009-01-26 21:38:32 +0000 | [diff] [blame] | 6169 | } |
Saleem Abdulrasool | d48b0a3 | 2016-10-24 20:47:58 +0000 | [diff] [blame] | 6170 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6171 | values.add(emitMethodList(ID->getObjCRuntimeNameAsString(), |
| 6172 | (flags & NonFragileABI_Class_Meta) |
| 6173 | ? MethodListType::ClassMethods |
| 6174 | : MethodListType::InstanceMethods, |
| 6175 | methods)); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6176 | |
Fariborz Jahanian | 56b3b77 | 2009-01-29 19:24:30 +0000 | [diff] [blame] | 6177 | const ObjCInterfaceDecl *OID = ID->getClassInterface(); |
| 6178 | assert(OID && "CGObjCNonFragileABIMac::BuildClassRoTInitializer"); |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6179 | values.add(EmitProtocolList("\01l_OBJC_CLASS_PROTOCOLS_$_" |
Fariborz Jahanian | 451b92a | 2014-07-16 16:16:04 +0000 | [diff] [blame] | 6180 | + OID->getObjCRuntimeNameAsString(), |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6181 | OID->all_referenced_protocol_begin(), |
| 6182 | OID->all_referenced_protocol_end())); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6183 | |
John McCall | ef19dbb | 2012-10-17 04:53:23 +0000 | [diff] [blame] | 6184 | if (flags & NonFragileABI_Class_Meta) { |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6185 | values.addNullPointer(ObjCTypes.IvarListnfABIPtrTy); |
| 6186 | values.add(GetIvarLayoutName(nullptr, ObjCTypes)); |
| 6187 | values.add(EmitPropertyList( |
Manman Ren | ad0e791 | 2016-01-29 19:22:54 +0000 | [diff] [blame] | 6188 | "\01l_OBJC_$_CLASS_PROP_LIST_" + ID->getObjCRuntimeNameAsString(), |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6189 | ID, ID->getClassInterface(), ObjCTypes, true)); |
John McCall | ef19dbb | 2012-10-17 04:53:23 +0000 | [diff] [blame] | 6190 | } else { |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6191 | values.add(EmitIvarList(ID)); |
| 6192 | values.add(BuildWeakIvarLayout(ID, beginInstance, endInstance, hasMRCWeak)); |
| 6193 | values.add(EmitPropertyList( |
Manman Ren | ad0e791 | 2016-01-29 19:22:54 +0000 | [diff] [blame] | 6194 | "\01l_OBJC_$_PROP_LIST_" + ID->getObjCRuntimeNameAsString(), |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6195 | ID, ID->getClassInterface(), ObjCTypes, false)); |
John McCall | ef19dbb | 2012-10-17 04:53:23 +0000 | [diff] [blame] | 6196 | } |
Saleem Abdulrasool | 3c628af | 2016-10-25 21:43:28 +0000 | [diff] [blame] | 6197 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6198 | llvm::SmallString<64> roLabel; |
| 6199 | llvm::raw_svector_ostream(roLabel) |
Saleem Abdulrasool | 3c628af | 2016-10-25 21:43:28 +0000 | [diff] [blame] | 6200 | << ((flags & NonFragileABI_Class_Meta) ? "\01l_OBJC_METACLASS_RO_$_" |
| 6201 | : "\01l_OBJC_CLASS_RO_$_") |
| 6202 | << ClassName; |
| 6203 | |
Fariborz Jahanian | 9e3ad52 | 2009-01-24 20:21:50 +0000 | [diff] [blame] | 6204 | llvm::GlobalVariable *CLASS_RO_GV = |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6205 | values.finishAndCreateGlobal(roLabel, CGM.getPointerAlign(), |
| 6206 | /*constant*/ false, |
| 6207 | llvm::GlobalValue::PrivateLinkage); |
Saleem Abdulrasool | 3c628af | 2016-10-25 21:43:28 +0000 | [diff] [blame] | 6208 | if (CGM.getTriple().isOSBinFormatMachO()) |
| 6209 | CLASS_RO_GV->setSection("__DATA, __objc_const"); |
Fariborz Jahanian | 9e3ad52 | 2009-01-24 20:21:50 +0000 | [diff] [blame] | 6210 | return CLASS_RO_GV; |
| 6211 | } |
| 6212 | |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 6213 | /// Build the metaclass object for a class. |
| 6214 | /// |
Fariborz Jahanian | 9e3ad52 | 2009-01-24 20:21:50 +0000 | [diff] [blame] | 6215 | /// struct _class_t { |
| 6216 | /// struct _class_t *isa; |
| 6217 | /// struct _class_t * const superclass; |
| 6218 | /// void *cache; |
| 6219 | /// IMP *vtable; |
| 6220 | /// struct class_ro_t *ro; |
| 6221 | /// } |
| 6222 | /// |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 6223 | llvm::GlobalVariable * |
| 6224 | CGObjCNonFragileABIMac::BuildClassObject(const ObjCInterfaceDecl *CI, |
| 6225 | bool isMetaclass, |
| 6226 | llvm::Constant *IsAGV, |
| 6227 | llvm::Constant *SuperClassGV, |
| 6228 | llvm::Constant *ClassRoGV, |
| 6229 | bool HiddenVisibility) { |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6230 | ConstantInitBuilder builder(CGM); |
| 6231 | auto values = builder.beginStruct(ObjCTypes.ClassnfABITy); |
| 6232 | values.add(IsAGV); |
| 6233 | if (SuperClassGV) { |
| 6234 | values.add(SuperClassGV); |
| 6235 | } else { |
| 6236 | values.addNullPointer(ObjCTypes.ClassnfABIPtrTy); |
| 6237 | } |
| 6238 | values.add(ObjCEmptyCacheVar); |
| 6239 | values.add(ObjCEmptyVtableVar); |
| 6240 | values.add(ClassRoGV); |
| 6241 | |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 6242 | llvm::GlobalVariable *GV = |
| 6243 | cast<llvm::GlobalVariable>(GetClassGlobal(CI, isMetaclass, ForDefinition)); |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6244 | values.finishAndSetAsInitializer(GV); |
| 6245 | |
Saleem Abdulrasool | 3c628af | 2016-10-25 21:43:28 +0000 | [diff] [blame] | 6246 | if (CGM.getTriple().isOSBinFormatMachO()) |
| 6247 | GV->setSection("__DATA, __objc_data"); |
Fariborz Jahanian | c22f236 | 2009-01-31 02:43:27 +0000 | [diff] [blame] | 6248 | GV->setAlignment( |
Saleem Abdulrasool | 3c628af | 2016-10-25 21:43:28 +0000 | [diff] [blame] | 6249 | CGM.getDataLayout().getABITypeAlignment(ObjCTypes.ClassnfABITy)); |
Saleem Abdulrasool | 7093e21 | 2016-07-17 22:27:44 +0000 | [diff] [blame] | 6250 | if (!CGM.getTriple().isOSBinFormatCOFF()) |
| 6251 | if (HiddenVisibility) |
| 6252 | GV->setVisibility(llvm::GlobalValue::HiddenVisibility); |
Fariborz Jahanian | 4723fb7 | 2009-01-24 21:21:53 +0000 | [diff] [blame] | 6253 | return GV; |
Fariborz Jahanian | 9e3ad52 | 2009-01-24 20:21:50 +0000 | [diff] [blame] | 6254 | } |
| 6255 | |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6256 | bool |
Fariborz Jahanian | a6bed83 | 2009-05-21 01:03:45 +0000 | [diff] [blame] | 6257 | CGObjCNonFragileABIMac::ImplementationIsNonLazy(const ObjCImplDecl *OD) const { |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 6258 | return OD->getClassMethod(GetNullarySelector("load")) != nullptr; |
Daniel Dunbar | 9a017d7 | 2009-05-15 22:33:15 +0000 | [diff] [blame] | 6259 | } |
| 6260 | |
Daniel Dunbar | 96120237 | 2009-05-03 12:57:56 +0000 | [diff] [blame] | 6261 | void CGObjCNonFragileABIMac::GetClassSizeInfo(const ObjCImplementationDecl *OID, |
Daniel Dunbar | 554fd79 | 2009-04-19 23:41:48 +0000 | [diff] [blame] | 6262 | uint32_t &InstanceStart, |
| 6263 | uint32_t &InstanceSize) { |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6264 | const ASTRecordLayout &RL = |
Daniel Dunbar | 9252ee1 | 2009-05-04 21:26:30 +0000 | [diff] [blame] | 6265 | CGM.getContext().getASTObjCImplementationLayout(OID); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6266 | |
Daniel Dunbar | 9b042e0 | 2009-05-04 23:23:09 +0000 | [diff] [blame] | 6267 | // InstanceSize is really instance end. |
Ken Dyck | d5090c1 | 2011-02-11 02:20:09 +0000 | [diff] [blame] | 6268 | InstanceSize = RL.getDataSize().getQuantity(); |
Daniel Dunbar | 9b042e0 | 2009-05-04 23:23:09 +0000 | [diff] [blame] | 6269 | |
| 6270 | // If there are no fields, the start is the same as the end. |
| 6271 | if (!RL.getFieldCount()) |
| 6272 | InstanceStart = InstanceSize; |
| 6273 | else |
Ken Dyck | c5ca876 | 2011-04-14 00:43:09 +0000 | [diff] [blame] | 6274 | InstanceStart = RL.getFieldOffset(0) / CGM.getContext().getCharWidth(); |
Daniel Dunbar | 554fd79 | 2009-04-19 23:41:48 +0000 | [diff] [blame] | 6275 | } |
| 6276 | |
Saleem Abdulrasool | 7093e21 | 2016-07-17 22:27:44 +0000 | [diff] [blame] | 6277 | static llvm::GlobalValue::DLLStorageClassTypes getStorage(CodeGenModule &CGM, |
| 6278 | StringRef Name) { |
| 6279 | IdentifierInfo &II = CGM.getContext().Idents.get(Name); |
| 6280 | TranslationUnitDecl *TUDecl = CGM.getContext().getTranslationUnitDecl(); |
| 6281 | DeclContext *DC = TranslationUnitDecl::castToDeclContext(TUDecl); |
| 6282 | |
| 6283 | const VarDecl *VD = nullptr; |
| 6284 | for (const auto &Result : DC->lookup(&II)) |
| 6285 | if ((VD = dyn_cast<VarDecl>(Result))) |
| 6286 | break; |
| 6287 | |
| 6288 | if (!VD) |
| 6289 | return llvm::GlobalValue::DLLImportStorageClass; |
| 6290 | if (VD->hasAttr<DLLExportAttr>()) |
| 6291 | return llvm::GlobalValue::DLLExportStorageClass; |
| 6292 | if (VD->hasAttr<DLLImportAttr>()) |
| 6293 | return llvm::GlobalValue::DLLImportStorageClass; |
| 6294 | return llvm::GlobalValue::DefaultStorageClass; |
| 6295 | } |
| 6296 | |
Fariborz Jahanian | 7139404 | 2009-01-23 23:53:38 +0000 | [diff] [blame] | 6297 | void CGObjCNonFragileABIMac::GenerateClass(const ObjCImplementationDecl *ID) { |
Fariborz Jahanian | 7139404 | 2009-01-23 23:53:38 +0000 | [diff] [blame] | 6298 | if (!ObjCEmptyCacheVar) { |
Saleem Abdulrasool | 7093e21 | 2016-07-17 22:27:44 +0000 | [diff] [blame] | 6299 | ObjCEmptyCacheVar = |
| 6300 | new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.CacheTy, false, |
| 6301 | llvm::GlobalValue::ExternalLinkage, nullptr, |
| 6302 | "_objc_empty_cache"); |
| 6303 | if (CGM.getTriple().isOSBinFormatCOFF()) |
| 6304 | ObjCEmptyCacheVar->setDLLStorageClass(getStorage(CGM, "_objc_empty_cache")); |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 6305 | |
Saleem Abdulrasool | 4f515a6 | 2016-07-13 02:58:44 +0000 | [diff] [blame] | 6306 | // Only OS X with deployment version <10.9 use the empty vtable symbol |
Fariborz Jahanian | 42d4955 | 2013-10-24 17:40:28 +0000 | [diff] [blame] | 6307 | const llvm::Triple &Triple = CGM.getTarget().getTriple(); |
Saleem Abdulrasool | 4f515a6 | 2016-07-13 02:58:44 +0000 | [diff] [blame] | 6308 | if (Triple.isMacOSX() && Triple.isMacOSXVersionLT(10, 9)) |
Saleem Abdulrasool | 7093e21 | 2016-07-17 22:27:44 +0000 | [diff] [blame] | 6309 | ObjCEmptyVtableVar = |
| 6310 | new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ImpnfABITy, false, |
| 6311 | llvm::GlobalValue::ExternalLinkage, nullptr, |
| 6312 | "_objc_empty_vtable"); |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6313 | else |
| 6314 | ObjCEmptyVtableVar = |
| 6315 | llvm::ConstantPointerNull::get(ObjCTypes.ImpnfABITy->getPointerTo()); |
Fariborz Jahanian | 7139404 | 2009-01-23 23:53:38 +0000 | [diff] [blame] | 6316 | } |
Saleem Abdulrasool | bc2d999 | 2016-07-16 22:42:04 +0000 | [diff] [blame] | 6317 | |
Daniel Dunbar | e3f5cfc | 2009-04-20 20:18:54 +0000 | [diff] [blame] | 6318 | // FIXME: Is this correct (that meta class size is never computed)? |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6319 | uint32_t InstanceStart = |
Micah Villmow | dd31ca1 | 2012-10-08 16:25:52 +0000 | [diff] [blame] | 6320 | CGM.getDataLayout().getTypeAllocSize(ObjCTypes.ClassnfABITy); |
Fariborz Jahanian | 9e3ad52 | 2009-01-24 20:21:50 +0000 | [diff] [blame] | 6321 | uint32_t InstanceSize = InstanceStart; |
John McCall | ef19dbb | 2012-10-17 04:53:23 +0000 | [diff] [blame] | 6322 | uint32_t flags = NonFragileABI_Class_Meta; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6323 | |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 6324 | llvm::Constant *SuperClassGV, *IsAGV; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6325 | |
Saleem Abdulrasool | bc2d999 | 2016-07-16 22:42:04 +0000 | [diff] [blame] | 6326 | const auto *CI = ID->getClassInterface(); |
| 6327 | assert(CI && "CGObjCNonFragileABIMac::GenerateClass - class is 0"); |
| 6328 | |
John McCall | 0d54a17 | 2012-10-17 04:53:31 +0000 | [diff] [blame] | 6329 | // Build the flags for the metaclass. |
Saleem Abdulrasool | 7093e21 | 2016-07-17 22:27:44 +0000 | [diff] [blame] | 6330 | bool classIsHidden = (CGM.getTriple().isOSBinFormatCOFF()) |
| 6331 | ? !CI->hasAttr<DLLExportAttr>() |
| 6332 | : CI->getVisibility() == HiddenVisibility; |
Fariborz Jahanian | 8220825 | 2009-01-31 00:59:10 +0000 | [diff] [blame] | 6333 | if (classIsHidden) |
John McCall | ef19dbb | 2012-10-17 04:53:23 +0000 | [diff] [blame] | 6334 | flags |= NonFragileABI_Class_Hidden; |
John McCall | 0d54a17 | 2012-10-17 04:53:31 +0000 | [diff] [blame] | 6335 | |
| 6336 | // FIXME: why is this flag set on the metaclass? |
| 6337 | // ObjC metaclasses have no fields and don't really get constructed. |
| 6338 | if (ID->hasNonZeroConstructors() || ID->hasDestructors()) { |
John McCall | ef19dbb | 2012-10-17 04:53:23 +0000 | [diff] [blame] | 6339 | flags |= NonFragileABI_Class_HasCXXStructors; |
John McCall | 0d54a17 | 2012-10-17 04:53:31 +0000 | [diff] [blame] | 6340 | if (!ID->hasNonZeroConstructors()) |
Saleem Abdulrasool | 7093e21 | 2016-07-17 22:27:44 +0000 | [diff] [blame] | 6341 | flags |= NonFragileABI_Class_HasCXXDestructorOnly; |
John McCall | 0d54a17 | 2012-10-17 04:53:31 +0000 | [diff] [blame] | 6342 | } |
| 6343 | |
Saleem Abdulrasool | bc2d999 | 2016-07-16 22:42:04 +0000 | [diff] [blame] | 6344 | if (!CI->getSuperClass()) { |
Fariborz Jahanian | 9e3ad52 | 2009-01-24 20:21:50 +0000 | [diff] [blame] | 6345 | // class is root |
John McCall | ef19dbb | 2012-10-17 04:53:23 +0000 | [diff] [blame] | 6346 | flags |= NonFragileABI_Class_Root; |
Saleem Abdulrasool | bc2d999 | 2016-07-16 22:42:04 +0000 | [diff] [blame] | 6347 | |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 6348 | SuperClassGV = GetClassGlobal(CI, /*metaclass*/ false, NotForDefinition); |
| 6349 | IsAGV = GetClassGlobal(CI, /*metaclass*/ true, NotForDefinition); |
Fariborz Jahanian | 9e3ad52 | 2009-01-24 20:21:50 +0000 | [diff] [blame] | 6350 | } else { |
Fariborz Jahanian | 4723fb7 | 2009-01-24 21:21:53 +0000 | [diff] [blame] | 6351 | // Has a root. Current class is not a root. |
Fariborz Jahanian | 03b300b | 2009-02-26 18:23:47 +0000 | [diff] [blame] | 6352 | const ObjCInterfaceDecl *Root = ID->getClassInterface(); |
| 6353 | while (const ObjCInterfaceDecl *Super = Root->getSuperClass()) |
| 6354 | Root = Super; |
Saleem Abdulrasool | bc2d999 | 2016-07-16 22:42:04 +0000 | [diff] [blame] | 6355 | |
| 6356 | const auto *Super = CI->getSuperClass(); |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 6357 | IsAGV = GetClassGlobal(Root, /*metaclass*/ true, NotForDefinition); |
| 6358 | SuperClassGV = GetClassGlobal(Super, /*metaclass*/ true, NotForDefinition); |
Fariborz Jahanian | 9e3ad52 | 2009-01-24 20:21:50 +0000 | [diff] [blame] | 6359 | } |
Saleem Abdulrasool | bc2d999 | 2016-07-16 22:42:04 +0000 | [diff] [blame] | 6360 | |
| 6361 | llvm::GlobalVariable *CLASS_RO_GV = |
| 6362 | BuildClassRoTInitializer(flags, InstanceStart, InstanceSize, ID); |
| 6363 | |
Saleem Abdulrasool | bc2d999 | 2016-07-16 22:42:04 +0000 | [diff] [blame] | 6364 | llvm::GlobalVariable *MetaTClass = |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 6365 | BuildClassObject(CI, /*metaclass*/ true, |
| 6366 | IsAGV, SuperClassGV, CLASS_RO_GV, classIsHidden); |
Rafael Espindola | b735004 | 2018-03-01 00:35:47 +0000 | [diff] [blame] | 6367 | CGM.setGVProperties(MetaTClass, CI); |
Fariborz Jahanian | 6726055 | 2009-11-17 21:37:35 +0000 | [diff] [blame] | 6368 | DefinedMetaClasses.push_back(MetaTClass); |
Daniel Dunbar | 15894b7 | 2009-04-07 05:48:37 +0000 | [diff] [blame] | 6369 | |
Fariborz Jahanian | 4723fb7 | 2009-01-24 21:21:53 +0000 | [diff] [blame] | 6370 | // Metadata for the class |
John McCall | ef19dbb | 2012-10-17 04:53:23 +0000 | [diff] [blame] | 6371 | flags = 0; |
Fariborz Jahanian | 8220825 | 2009-01-31 00:59:10 +0000 | [diff] [blame] | 6372 | if (classIsHidden) |
John McCall | ef19dbb | 2012-10-17 04:53:23 +0000 | [diff] [blame] | 6373 | flags |= NonFragileABI_Class_Hidden; |
John McCall | 0d54a17 | 2012-10-17 04:53:31 +0000 | [diff] [blame] | 6374 | |
| 6375 | if (ID->hasNonZeroConstructors() || ID->hasDestructors()) { |
John McCall | ef19dbb | 2012-10-17 04:53:23 +0000 | [diff] [blame] | 6376 | flags |= NonFragileABI_Class_HasCXXStructors; |
Daniel Dunbar | 8f28d01 | 2009-04-08 04:21:03 +0000 | [diff] [blame] | 6377 | |
John McCall | 0d54a17 | 2012-10-17 04:53:31 +0000 | [diff] [blame] | 6378 | // Set a flag to enable a runtime optimization when a class has |
| 6379 | // fields that require destruction but which don't require |
| 6380 | // anything except zero-initialization during construction. This |
| 6381 | // is most notably true of __strong and __weak types, but you can |
| 6382 | // also imagine there being C++ types with non-trivial default |
| 6383 | // constructors that merely set all fields to null. |
| 6384 | if (!ID->hasNonZeroConstructors()) |
| 6385 | flags |= NonFragileABI_Class_HasCXXDestructorOnly; |
| 6386 | } |
| 6387 | |
Saleem Abdulrasool | bc2d999 | 2016-07-16 22:42:04 +0000 | [diff] [blame] | 6388 | if (hasObjCExceptionAttribute(CGM.getContext(), CI)) |
John McCall | ef19dbb | 2012-10-17 04:53:23 +0000 | [diff] [blame] | 6389 | flags |= NonFragileABI_Class_Exception; |
Daniel Dunbar | 8f28d01 | 2009-04-08 04:21:03 +0000 | [diff] [blame] | 6390 | |
Saleem Abdulrasool | bc2d999 | 2016-07-16 22:42:04 +0000 | [diff] [blame] | 6391 | if (!CI->getSuperClass()) { |
John McCall | ef19dbb | 2012-10-17 04:53:23 +0000 | [diff] [blame] | 6392 | flags |= NonFragileABI_Class_Root; |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 6393 | SuperClassGV = nullptr; |
Chris Lattner | b433b27 | 2009-04-19 06:02:28 +0000 | [diff] [blame] | 6394 | } else { |
Fariborz Jahanian | 4723fb7 | 2009-01-24 21:21:53 +0000 | [diff] [blame] | 6395 | // Has a root. Current class is not a root. |
Saleem Abdulrasool | bc2d999 | 2016-07-16 22:42:04 +0000 | [diff] [blame] | 6396 | const auto *Super = CI->getSuperClass(); |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 6397 | SuperClassGV = GetClassGlobal(Super, /*metaclass*/ false, NotForDefinition); |
Fariborz Jahanian | 4723fb7 | 2009-01-24 21:21:53 +0000 | [diff] [blame] | 6398 | } |
Saleem Abdulrasool | bc2d999 | 2016-07-16 22:42:04 +0000 | [diff] [blame] | 6399 | |
Daniel Dunbar | 96120237 | 2009-05-03 12:57:56 +0000 | [diff] [blame] | 6400 | GetClassSizeInfo(ID, InstanceStart, InstanceSize); |
Saleem Abdulrasool | bc2d999 | 2016-07-16 22:42:04 +0000 | [diff] [blame] | 6401 | CLASS_RO_GV = |
| 6402 | BuildClassRoTInitializer(flags, InstanceStart, InstanceSize, ID); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6403 | |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6404 | llvm::GlobalVariable *ClassMD = |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 6405 | BuildClassObject(CI, /*metaclass*/ false, |
| 6406 | MetaTClass, SuperClassGV, CLASS_RO_GV, classIsHidden); |
Rafael Espindola | b735004 | 2018-03-01 00:35:47 +0000 | [diff] [blame] | 6407 | CGM.setGVProperties(ClassMD, CI); |
Fariborz Jahanian | 279abd3 | 2009-01-30 20:55:31 +0000 | [diff] [blame] | 6408 | DefinedClasses.push_back(ClassMD); |
Saleem Abdulrasool | bc2d999 | 2016-07-16 22:42:04 +0000 | [diff] [blame] | 6409 | ImplementedClasses.push_back(CI); |
Daniel Dunbar | 8f28d01 | 2009-04-08 04:21:03 +0000 | [diff] [blame] | 6410 | |
Daniel Dunbar | 9a017d7 | 2009-05-15 22:33:15 +0000 | [diff] [blame] | 6411 | // Determine if this class is also "non-lazy". |
| 6412 | if (ImplementationIsNonLazy(ID)) |
| 6413 | DefinedNonLazyClasses.push_back(ClassMD); |
| 6414 | |
Daniel Dunbar | 8f28d01 | 2009-04-08 04:21:03 +0000 | [diff] [blame] | 6415 | // Force the definition of the EHType if necessary. |
John McCall | ef19dbb | 2012-10-17 04:53:23 +0000 | [diff] [blame] | 6416 | if (flags & NonFragileABI_Class_Exception) |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 6417 | (void) GetInterfaceEHType(CI, ForDefinition); |
Fariborz Jahanian | c057794 | 2011-04-22 22:02:28 +0000 | [diff] [blame] | 6418 | // Make sure method definition entries are all clear for next implementation. |
| 6419 | MethodDefinitions.clear(); |
Fariborz Jahanian | 7139404 | 2009-01-23 23:53:38 +0000 | [diff] [blame] | 6420 | } |
| 6421 | |
Fariborz Jahanian | 097feda | 2009-01-30 18:58:59 +0000 | [diff] [blame] | 6422 | /// GenerateProtocolRef - This routine is called to generate code for |
| 6423 | /// a protocol reference expression; as in: |
| 6424 | /// @code |
| 6425 | /// @protocol(Proto1); |
| 6426 | /// @endcode |
| 6427 | /// It generates a weak reference to l_OBJC_PROTOCOL_REFERENCE_$_Proto1 |
| 6428 | /// which will hold address of the protocol meta-data. |
| 6429 | /// |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 6430 | llvm::Value *CGObjCNonFragileABIMac::GenerateProtocolRef(CodeGenFunction &CGF, |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6431 | const ObjCProtocolDecl *PD) { |
| 6432 | |
Fariborz Jahanian | 464423d | 2009-04-10 18:47:34 +0000 | [diff] [blame] | 6433 | // This routine is called for @protocol only. So, we must build definition |
| 6434 | // of protocol's meta-data (not a reference to it!) |
| 6435 | // |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6436 | llvm::Constant *Init = |
| 6437 | llvm::ConstantExpr::getBitCast(GetOrEmitProtocol(PD), |
Douglas Gregor | 020de32 | 2012-01-17 18:36:30 +0000 | [diff] [blame] | 6438 | ObjCTypes.getExternalProtocolPtrTy()); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6439 | |
Fariborz Jahanian | 097feda | 2009-01-30 18:58:59 +0000 | [diff] [blame] | 6440 | std::string ProtocolName("\01l_OBJC_PROTOCOL_REFERENCE_$_"); |
Fariborz Jahanian | 451b92a | 2014-07-16 16:16:04 +0000 | [diff] [blame] | 6441 | ProtocolName += PD->getObjCRuntimeNameAsString(); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6442 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 6443 | CharUnits Align = CGF.getPointerAlign(); |
| 6444 | |
Fariborz Jahanian | 097feda | 2009-01-30 18:58:59 +0000 | [diff] [blame] | 6445 | llvm::GlobalVariable *PTGV = CGM.getModule().getGlobalVariable(ProtocolName); |
| 6446 | if (PTGV) |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 6447 | return CGF.Builder.CreateAlignedLoad(PTGV, Align); |
Saleem Abdulrasool | 9f83f3b | 2017-06-29 00:54:44 +0000 | [diff] [blame] | 6448 | PTGV = new llvm::GlobalVariable(CGM.getModule(), Init->getType(), false, |
| 6449 | llvm::GlobalValue::WeakAnyLinkage, Init, |
| 6450 | ProtocolName); |
Saleem Abdulrasool | 13d73d5 | 2017-06-03 16:18:09 +0000 | [diff] [blame] | 6451 | PTGV->setSection(GetSectionName("__objc_protorefs", |
| 6452 | "coalesced,no_dead_strip")); |
Rafael Espindola | 70efc5b | 2014-03-06 18:54:12 +0000 | [diff] [blame] | 6453 | PTGV->setVisibility(llvm::GlobalValue::HiddenVisibility); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 6454 | PTGV->setAlignment(Align.getQuantity()); |
Saleem Abdulrasool | 9f83f3b | 2017-06-29 00:54:44 +0000 | [diff] [blame] | 6455 | if (!CGM.getTriple().isOSBinFormatMachO()) |
| 6456 | PTGV->setComdat(CGM.getModule().getOrInsertComdat(ProtocolName)); |
Saleem Abdulrasool | be2b5cb | 2018-01-23 19:35:51 +0000 | [diff] [blame] | 6457 | CGM.addUsedGlobal(PTGV); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 6458 | return CGF.Builder.CreateAlignedLoad(PTGV, Align); |
Fariborz Jahanian | 097feda | 2009-01-30 18:58:59 +0000 | [diff] [blame] | 6459 | } |
| 6460 | |
Fariborz Jahanian | 0c8d060 | 2009-01-26 18:32:24 +0000 | [diff] [blame] | 6461 | /// GenerateCategory - Build metadata for a category implementation. |
| 6462 | /// struct _category_t { |
| 6463 | /// const char * const name; |
| 6464 | /// struct _class_t *const cls; |
| 6465 | /// const struct _method_list_t * const instance_methods; |
| 6466 | /// const struct _method_list_t * const class_methods; |
| 6467 | /// const struct _protocol_list_t * const protocols; |
| 6468 | /// const struct _prop_list_t * const properties; |
Manman Ren | 96df0b3 | 2016-01-29 23:45:01 +0000 | [diff] [blame] | 6469 | /// const struct _prop_list_t * const class_properties; |
Manman Ren | 42ff390 | 2016-02-24 17:49:50 +0000 | [diff] [blame] | 6470 | /// const uint32_t size; |
Fariborz Jahanian | 0c8d060 | 2009-01-26 18:32:24 +0000 | [diff] [blame] | 6471 | /// } |
| 6472 | /// |
Daniel Dunbar | 9a017d7 | 2009-05-15 22:33:15 +0000 | [diff] [blame] | 6473 | void CGObjCNonFragileABIMac::GenerateCategory(const ObjCCategoryImplDecl *OCD) { |
Fariborz Jahanian | 0c8d060 | 2009-01-26 18:32:24 +0000 | [diff] [blame] | 6474 | const ObjCInterfaceDecl *Interface = OCD->getClassInterface(); |
Fariborz Jahanian | 2612e14 | 2009-01-26 22:58:07 +0000 | [diff] [blame] | 6475 | const char *Prefix = "\01l_OBJC_$_CATEGORY_"; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 6476 | |
Fariborz Jahanian | 451b92a | 2014-07-16 16:16:04 +0000 | [diff] [blame] | 6477 | llvm::SmallString<64> ExtCatName(Prefix); |
| 6478 | ExtCatName += Interface->getObjCRuntimeNameAsString(); |
| 6479 | ExtCatName += "_$_"; |
| 6480 | ExtCatName += OCD->getNameAsString(); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 6481 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6482 | ConstantInitBuilder builder(CGM); |
| 6483 | auto values = builder.beginStruct(ObjCTypes.CategorynfABITy); |
| 6484 | values.add(GetClassName(OCD->getIdentifier()->getName())); |
Fariborz Jahanian | 0c8d060 | 2009-01-26 18:32:24 +0000 | [diff] [blame] | 6485 | // meta-class entry symbol |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 6486 | values.add(GetClassGlobal(Interface, /*metaclass*/ false, NotForDefinition)); |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6487 | std::string listName = |
Saleem Abdulrasool | 209150a | 2016-10-24 21:25:57 +0000 | [diff] [blame] | 6488 | (Interface->getObjCRuntimeNameAsString() + "_$_" + OCD->getName()).str(); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6489 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6490 | SmallVector<const ObjCMethodDecl *, 16> instanceMethods; |
| 6491 | SmallVector<const ObjCMethodDecl *, 8> classMethods; |
| 6492 | for (const auto *MD : OCD->methods()) { |
| 6493 | if (MD->isInstanceMethod()) { |
| 6494 | instanceMethods.push_back(MD); |
| 6495 | } else { |
| 6496 | classMethods.push_back(MD); |
| 6497 | } |
| 6498 | } |
Fariborz Jahanian | 2612e14 | 2009-01-26 22:58:07 +0000 | [diff] [blame] | 6499 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6500 | values.add(emitMethodList(listName, MethodListType::CategoryInstanceMethods, |
| 6501 | instanceMethods)); |
| 6502 | values.add(emitMethodList(listName, MethodListType::CategoryClassMethods, |
| 6503 | classMethods)); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6504 | |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6505 | const ObjCCategoryDecl *Category = |
Fariborz Jahanian | 066347e | 2009-01-28 22:18:42 +0000 | [diff] [blame] | 6506 | Interface->FindCategoryDeclaration(OCD->getIdentifier()); |
Fariborz Jahanian | d8fc105 | 2009-02-13 17:52:22 +0000 | [diff] [blame] | 6507 | if (Category) { |
Dylan Noblesmith | 2c1dd27 | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 6508 | SmallString<256> ExtName; |
Fariborz Jahanian | 451b92a | 2014-07-16 16:16:04 +0000 | [diff] [blame] | 6509 | llvm::raw_svector_ostream(ExtName) << Interface->getObjCRuntimeNameAsString() << "_$_" |
Daniel Dunbar | 349e6fb | 2009-10-18 20:48:59 +0000 | [diff] [blame] | 6510 | << OCD->getName(); |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6511 | values.add(EmitProtocolList("\01l_OBJC_CATEGORY_PROTOCOLS_$_" |
Fariborz Jahanian | 451b92a | 2014-07-16 16:16:04 +0000 | [diff] [blame] | 6512 | + Interface->getObjCRuntimeNameAsString() + "_$_" |
| 6513 | + Category->getName(), |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6514 | Category->protocol_begin(), |
| 6515 | Category->protocol_end())); |
| 6516 | values.add(EmitPropertyList("\01l_OBJC_$_PROP_LIST_" + ExtName.str(), |
| 6517 | OCD, Category, ObjCTypes, false)); |
| 6518 | values.add(EmitPropertyList("\01l_OBJC_$_CLASS_PROP_LIST_" + ExtName.str(), |
| 6519 | OCD, Category, ObjCTypes, true)); |
Mike Stump | 658fe02 | 2009-07-30 22:28:39 +0000 | [diff] [blame] | 6520 | } else { |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6521 | values.addNullPointer(ObjCTypes.ProtocolListnfABIPtrTy); |
| 6522 | values.addNullPointer(ObjCTypes.PropertyListPtrTy); |
| 6523 | values.addNullPointer(ObjCTypes.PropertyListPtrTy); |
Fariborz Jahanian | d8fc105 | 2009-02-13 17:52:22 +0000 | [diff] [blame] | 6524 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6525 | |
Manman Ren | 42ff390 | 2016-02-24 17:49:50 +0000 | [diff] [blame] | 6526 | unsigned Size = CGM.getDataLayout().getTypeAllocSize(ObjCTypes.CategorynfABITy); |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6527 | values.addInt(ObjCTypes.IntTy, Size); |
Manman Ren | 42ff390 | 2016-02-24 17:49:50 +0000 | [diff] [blame] | 6528 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6529 | llvm::GlobalVariable *GCATV = |
| 6530 | values.finishAndCreateGlobal(ExtCatName.str(), CGM.getPointerAlign(), |
| 6531 | /*constant*/ false, |
| 6532 | llvm::GlobalValue::PrivateLinkage); |
Saleem Abdulrasool | 3c628af | 2016-10-25 21:43:28 +0000 | [diff] [blame] | 6533 | if (CGM.getTriple().isOSBinFormatMachO()) |
| 6534 | GCATV->setSection("__DATA, __objc_const"); |
Rafael Espindola | 060062a | 2014-03-06 22:15:10 +0000 | [diff] [blame] | 6535 | CGM.addCompilerUsedGlobal(GCATV); |
Fariborz Jahanian | 0c8d060 | 2009-01-26 18:32:24 +0000 | [diff] [blame] | 6536 | DefinedCategories.push_back(GCATV); |
Daniel Dunbar | 9a017d7 | 2009-05-15 22:33:15 +0000 | [diff] [blame] | 6537 | |
| 6538 | // Determine if this category is also "non-lazy". |
| 6539 | if (ImplementationIsNonLazy(OCD)) |
| 6540 | DefinedNonLazyCategories.push_back(GCATV); |
Fariborz Jahanian | c057794 | 2011-04-22 22:02:28 +0000 | [diff] [blame] | 6541 | // method definition entries must be clear for next implementation. |
| 6542 | MethodDefinitions.clear(); |
Fariborz Jahanian | 0c8d060 | 2009-01-26 18:32:24 +0000 | [diff] [blame] | 6543 | } |
Fariborz Jahanian | 99113fd | 2009-01-26 21:38:32 +0000 | [diff] [blame] | 6544 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6545 | /// emitMethodConstant - Return a struct objc_method constant. If |
| 6546 | /// forProtocol is true, the implementation will be null; otherwise, |
| 6547 | /// the method must have a definition registered with the runtime. |
| 6548 | /// |
| 6549 | /// struct _objc_method { |
| 6550 | /// SEL _cmd; |
| 6551 | /// char *method_type; |
| 6552 | /// char *_imp; |
| 6553 | /// } |
| 6554 | void CGObjCNonFragileABIMac::emitMethodConstant(ConstantArrayBuilder &builder, |
| 6555 | const ObjCMethodDecl *MD, |
| 6556 | bool forProtocol) { |
| 6557 | auto method = builder.beginStruct(ObjCTypes.MethodTy); |
| 6558 | method.addBitCast(GetMethodVarName(MD->getSelector()), |
| 6559 | ObjCTypes.SelectorPtrTy); |
| 6560 | method.add(GetMethodVarType(MD)); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6561 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6562 | if (forProtocol) { |
| 6563 | // Protocol methods have no implementation. So, this entry is always NULL. |
| 6564 | method.addNullPointer(ObjCTypes.Int8PtrTy); |
| 6565 | } else { |
| 6566 | llvm::Function *fn = GetMethodDefinition(MD); |
| 6567 | assert(fn && "no definition for method?"); |
| 6568 | method.addBitCast(fn, ObjCTypes.Int8PtrTy); |
| 6569 | } |
| 6570 | |
| 6571 | method.finishAndAddTo(builder); |
Fariborz Jahanian | 99113fd | 2009-01-26 21:38:32 +0000 | [diff] [blame] | 6572 | } |
| 6573 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6574 | /// Build meta-data for method declarations. |
| 6575 | /// |
Fariborz Jahanian | 99113fd | 2009-01-26 21:38:32 +0000 | [diff] [blame] | 6576 | /// struct _method_list_t { |
| 6577 | /// uint32_t entsize; // sizeof(struct _objc_method) |
| 6578 | /// uint32_t method_count; |
| 6579 | /// struct _objc_method method_list[method_count]; |
| 6580 | /// } |
| 6581 | /// |
Zachary Turner | 41a9ee9 | 2017-10-11 23:54:34 +0000 | [diff] [blame] | 6582 | llvm::Constant * |
| 6583 | CGObjCNonFragileABIMac::emitMethodList(Twine name, MethodListType kind, |
| 6584 | ArrayRef<const ObjCMethodDecl *> methods) { |
Fariborz Jahanian | 99113fd | 2009-01-26 21:38:32 +0000 | [diff] [blame] | 6585 | // Return null for empty list. |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6586 | if (methods.empty()) |
Owen Anderson | 0b75f23 | 2009-07-31 20:28:54 +0000 | [diff] [blame] | 6587 | return llvm::Constant::getNullValue(ObjCTypes.MethodListnfABIPtrTy); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6588 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6589 | StringRef prefix; |
| 6590 | bool forProtocol; |
| 6591 | switch (kind) { |
Saleem Abdulrasool | d48b0a3 | 2016-10-24 20:47:58 +0000 | [diff] [blame] | 6592 | case MethodListType::CategoryInstanceMethods: |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6593 | prefix = "\01l_OBJC_$_CATEGORY_INSTANCE_METHODS_"; |
| 6594 | forProtocol = false; |
Saleem Abdulrasool | d48b0a3 | 2016-10-24 20:47:58 +0000 | [diff] [blame] | 6595 | break; |
| 6596 | case MethodListType::CategoryClassMethods: |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6597 | prefix = "\01l_OBJC_$_CATEGORY_CLASS_METHODS_"; |
| 6598 | forProtocol = false; |
Saleem Abdulrasool | d48b0a3 | 2016-10-24 20:47:58 +0000 | [diff] [blame] | 6599 | break; |
| 6600 | case MethodListType::InstanceMethods: |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6601 | prefix = "\01l_OBJC_$_INSTANCE_METHODS_"; |
| 6602 | forProtocol = false; |
Saleem Abdulrasool | d48b0a3 | 2016-10-24 20:47:58 +0000 | [diff] [blame] | 6603 | break; |
| 6604 | case MethodListType::ClassMethods: |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6605 | prefix = "\01l_OBJC_$_CLASS_METHODS_"; |
| 6606 | forProtocol = false; |
Saleem Abdulrasool | d48b0a3 | 2016-10-24 20:47:58 +0000 | [diff] [blame] | 6607 | break; |
| 6608 | |
| 6609 | case MethodListType::ProtocolInstanceMethods: |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6610 | prefix = "\01l_OBJC_$_PROTOCOL_INSTANCE_METHODS_"; |
| 6611 | forProtocol = true; |
Saleem Abdulrasool | d48b0a3 | 2016-10-24 20:47:58 +0000 | [diff] [blame] | 6612 | break; |
| 6613 | case MethodListType::ProtocolClassMethods: |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6614 | prefix = "\01l_OBJC_$_PROTOCOL_CLASS_METHODS_"; |
| 6615 | forProtocol = true; |
Saleem Abdulrasool | d48b0a3 | 2016-10-24 20:47:58 +0000 | [diff] [blame] | 6616 | break; |
| 6617 | case MethodListType::OptionalProtocolInstanceMethods: |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6618 | prefix = "\01l_OBJC_$_PROTOCOL_INSTANCE_METHODS_OPT_"; |
| 6619 | forProtocol = true; |
Saleem Abdulrasool | d48b0a3 | 2016-10-24 20:47:58 +0000 | [diff] [blame] | 6620 | break; |
| 6621 | case MethodListType::OptionalProtocolClassMethods: |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6622 | prefix = "\01l_OBJC_$_PROTOCOL_CLASS_METHODS_OPT_"; |
| 6623 | forProtocol = true; |
Saleem Abdulrasool | d48b0a3 | 2016-10-24 20:47:58 +0000 | [diff] [blame] | 6624 | break; |
| 6625 | } |
| 6626 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6627 | ConstantInitBuilder builder(CGM); |
| 6628 | auto values = builder.beginStruct(); |
| 6629 | |
| 6630 | // sizeof(struct _objc_method) |
| 6631 | unsigned Size = CGM.getDataLayout().getTypeAllocSize(ObjCTypes.MethodTy); |
| 6632 | values.addInt(ObjCTypes.IntTy, Size); |
| 6633 | // method_count |
| 6634 | values.addInt(ObjCTypes.IntTy, methods.size()); |
| 6635 | auto methodArray = values.beginArray(ObjCTypes.MethodTy); |
| 6636 | for (auto MD : methods) { |
| 6637 | emitMethodConstant(methodArray, MD, forProtocol); |
| 6638 | } |
| 6639 | methodArray.finishAndAddTo(values); |
| 6640 | |
Zachary Turner | 41a9ee9 | 2017-10-11 23:54:34 +0000 | [diff] [blame] | 6641 | auto *GV = values.finishAndCreateGlobal(prefix + name, CGM.getPointerAlign(), |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6642 | /*constant*/ false, |
| 6643 | llvm::GlobalValue::PrivateLinkage); |
Saleem Abdulrasool | 3c628af | 2016-10-25 21:43:28 +0000 | [diff] [blame] | 6644 | if (CGM.getTriple().isOSBinFormatMachO()) |
| 6645 | GV->setSection("__DATA, __objc_const"); |
Rafael Espindola | 060062a | 2014-03-06 22:15:10 +0000 | [diff] [blame] | 6646 | CGM.addCompilerUsedGlobal(GV); |
Chris Lattner | e64d7ba | 2011-06-20 04:01:35 +0000 | [diff] [blame] | 6647 | return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.MethodListnfABIPtrTy); |
Fariborz Jahanian | 99113fd | 2009-01-26 21:38:32 +0000 | [diff] [blame] | 6648 | } |
Fariborz Jahanian | 7415caa | 2009-01-27 19:38:51 +0000 | [diff] [blame] | 6649 | |
Fariborz Jahanian | 4e7ae06 | 2009-02-10 20:21:06 +0000 | [diff] [blame] | 6650 | /// ObjCIvarOffsetVariable - Returns the ivar offset variable for |
| 6651 | /// the given ivar. |
Daniel Dunbar | 8c7f981 | 2010-04-02 21:14:02 +0000 | [diff] [blame] | 6652 | llvm::GlobalVariable * |
| 6653 | CGObjCNonFragileABIMac::ObjCIvarOffsetVariable(const ObjCInterfaceDecl *ID, |
| 6654 | const ObjCIvarDecl *Ivar) { |
| 6655 | const ObjCInterfaceDecl *Container = Ivar->getContainingInterface(); |
Fariborz Jahanian | 451b92a | 2014-07-16 16:16:04 +0000 | [diff] [blame] | 6656 | llvm::SmallString<64> Name("OBJC_IVAR_$_"); |
| 6657 | Name += Container->getObjCRuntimeNameAsString(); |
| 6658 | Name += "."; |
| 6659 | Name += Ivar->getName(); |
Saleem Abdulrasool | 7093e21 | 2016-07-17 22:27:44 +0000 | [diff] [blame] | 6660 | llvm::GlobalVariable *IvarOffsetGV = CGM.getModule().getGlobalVariable(Name); |
| 6661 | if (!IvarOffsetGV) { |
| 6662 | IvarOffsetGV = |
| 6663 | new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.IvarOffsetVarTy, |
| 6664 | false, llvm::GlobalValue::ExternalLinkage, |
| 6665 | nullptr, Name.str()); |
| 6666 | if (CGM.getTriple().isOSBinFormatCOFF()) { |
| 6667 | bool IsPrivateOrPackage = |
| 6668 | Ivar->getAccessControl() == ObjCIvarDecl::Private || |
| 6669 | Ivar->getAccessControl() == ObjCIvarDecl::Package; |
| 6670 | |
Saleem Abdulrasool | ad75c7d | 2017-10-25 03:58:15 +0000 | [diff] [blame] | 6671 | const ObjCInterfaceDecl *ContainingID = Ivar->getContainingInterface(); |
| 6672 | |
| 6673 | if (ContainingID->hasAttr<DLLImportAttr>()) |
| 6674 | IvarOffsetGV |
| 6675 | ->setDLLStorageClass(llvm::GlobalValue::DLLImportStorageClass); |
| 6676 | else if (ContainingID->hasAttr<DLLExportAttr>() && !IsPrivateOrPackage) |
| 6677 | IvarOffsetGV |
| 6678 | ->setDLLStorageClass(llvm::GlobalValue::DLLExportStorageClass); |
Saleem Abdulrasool | 7093e21 | 2016-07-17 22:27:44 +0000 | [diff] [blame] | 6679 | } |
| 6680 | } |
Fariborz Jahanian | 4e7ae06 | 2009-02-10 20:21:06 +0000 | [diff] [blame] | 6681 | return IvarOffsetGV; |
| 6682 | } |
| 6683 | |
Daniel Dunbar | 8c7f981 | 2010-04-02 21:14:02 +0000 | [diff] [blame] | 6684 | llvm::Constant * |
| 6685 | CGObjCNonFragileABIMac::EmitIvarOffsetVar(const ObjCInterfaceDecl *ID, |
| 6686 | const ObjCIvarDecl *Ivar, |
Eli Friedman | 8cbca20 | 2012-11-06 22:15:52 +0000 | [diff] [blame] | 6687 | unsigned long int Offset) { |
Daniel Dunbar | bf90b33 | 2009-04-19 00:44:02 +0000 | [diff] [blame] | 6688 | llvm::GlobalVariable *IvarOffsetGV = ObjCIvarOffsetVariable(ID, Ivar); |
Tim Northover | 238b508 | 2014-03-29 13:42:40 +0000 | [diff] [blame] | 6689 | IvarOffsetGV->setInitializer( |
| 6690 | llvm::ConstantInt::get(ObjCTypes.IvarOffsetVarTy, Offset)); |
Fariborz Jahanian | c22f236 | 2009-01-31 02:43:27 +0000 | [diff] [blame] | 6691 | IvarOffsetGV->setAlignment( |
Tim Northover | 238b508 | 2014-03-29 13:42:40 +0000 | [diff] [blame] | 6692 | CGM.getDataLayout().getABITypeAlignment(ObjCTypes.IvarOffsetVarTy)); |
Daniel Dunbar | bf90b33 | 2009-04-19 00:44:02 +0000 | [diff] [blame] | 6693 | |
Saleem Abdulrasool | 7093e21 | 2016-07-17 22:27:44 +0000 | [diff] [blame] | 6694 | if (!CGM.getTriple().isOSBinFormatCOFF()) { |
| 6695 | // FIXME: This matches gcc, but shouldn't the visibility be set on the use |
| 6696 | // as well (i.e., in ObjCIvarOffsetVariable). |
| 6697 | if (Ivar->getAccessControl() == ObjCIvarDecl::Private || |
| 6698 | Ivar->getAccessControl() == ObjCIvarDecl::Package || |
| 6699 | ID->getVisibility() == HiddenVisibility) |
| 6700 | IvarOffsetGV->setVisibility(llvm::GlobalValue::HiddenVisibility); |
| 6701 | else |
| 6702 | IvarOffsetGV->setVisibility(llvm::GlobalValue::DefaultVisibility); |
| 6703 | } |
| 6704 | |
Saleem Abdulrasool | 3c628af | 2016-10-25 21:43:28 +0000 | [diff] [blame] | 6705 | if (CGM.getTriple().isOSBinFormatMachO()) |
| 6706 | IvarOffsetGV->setSection("__DATA, __objc_ivar"); |
Fariborz Jahanian | c88a70d | 2009-02-03 00:09:52 +0000 | [diff] [blame] | 6707 | return IvarOffsetGV; |
Fariborz Jahanian | 40a4bcd | 2009-01-28 01:05:23 +0000 | [diff] [blame] | 6708 | } |
| 6709 | |
Fariborz Jahanian | 7415caa | 2009-01-27 19:38:51 +0000 | [diff] [blame] | 6710 | /// EmitIvarList - Emit the ivar list for the given |
Daniel Dunbar | 508a7dd | 2009-04-18 08:51:00 +0000 | [diff] [blame] | 6711 | /// implementation. The return value has type |
Fariborz Jahanian | 7415caa | 2009-01-27 19:38:51 +0000 | [diff] [blame] | 6712 | /// IvarListnfABIPtrTy. |
| 6713 | /// struct _ivar_t { |
Tim Northover | 238b508 | 2014-03-29 13:42:40 +0000 | [diff] [blame] | 6714 | /// unsigned [long] int *offset; // pointer to ivar offset location |
Fariborz Jahanian | 7415caa | 2009-01-27 19:38:51 +0000 | [diff] [blame] | 6715 | /// char *name; |
| 6716 | /// char *type; |
| 6717 | /// uint32_t alignment; |
| 6718 | /// uint32_t size; |
| 6719 | /// } |
| 6720 | /// struct _ivar_list_t { |
| 6721 | /// uint32 entsize; // sizeof(struct _ivar_t) |
| 6722 | /// uint32 count; |
| 6723 | /// struct _iver_t list[count]; |
| 6724 | /// } |
| 6725 | /// |
Daniel Dunbar | f5c1846 | 2009-04-20 06:54:31 +0000 | [diff] [blame] | 6726 | |
Fariborz Jahanian | 7415caa | 2009-01-27 19:38:51 +0000 | [diff] [blame] | 6727 | llvm::Constant *CGObjCNonFragileABIMac::EmitIvarList( |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6728 | const ObjCImplementationDecl *ID) { |
| 6729 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6730 | ConstantInitBuilder builder(CGM); |
| 6731 | auto ivarList = builder.beginStruct(); |
| 6732 | ivarList.addInt(ObjCTypes.IntTy, |
| 6733 | CGM.getDataLayout().getTypeAllocSize(ObjCTypes.IvarnfABITy)); |
| 6734 | auto ivarCountSlot = ivarList.addPlaceholder(); |
| 6735 | auto ivars = ivarList.beginArray(ObjCTypes.IvarnfABITy); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6736 | |
Jordy Rose | a91768e | 2011-07-22 02:08:32 +0000 | [diff] [blame] | 6737 | const ObjCInterfaceDecl *OID = ID->getClassInterface(); |
Fariborz Jahanian | 7415caa | 2009-01-27 19:38:51 +0000 | [diff] [blame] | 6738 | assert(OID && "CGObjCNonFragileABIMac::EmitIvarList - null interface"); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6739 | |
Fariborz Jahanian | 40a4bcd | 2009-01-28 01:05:23 +0000 | [diff] [blame] | 6740 | // FIXME. Consolidate this with similar code in GenerateClass. |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6741 | |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 6742 | for (const ObjCIvarDecl *IVD = OID->all_declared_ivar_begin(); |
Fariborz Jahanian | b26d578 | 2011-06-28 18:05:25 +0000 | [diff] [blame] | 6743 | IVD; IVD = IVD->getNextIvar()) { |
Fariborz Jahanian | 7c80959 | 2009-06-04 01:19:09 +0000 | [diff] [blame] | 6744 | // Ignore unnamed bit-fields. |
| 6745 | if (!IVD->getDeclName()) |
| 6746 | continue; |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6747 | |
| 6748 | auto ivar = ivars.beginStruct(ObjCTypes.IvarnfABITy); |
| 6749 | ivar.add(EmitIvarOffsetVar(ID->getClassInterface(), IVD, |
| 6750 | ComputeIvarBaseOffset(CGM, ID, IVD))); |
| 6751 | ivar.add(GetMethodVarName(IVD->getIdentifier())); |
| 6752 | ivar.add(GetMethodVarType(IVD)); |
Chris Lattner | 2192fe5 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 6753 | llvm::Type *FieldTy = |
Daniel Dunbar | 725dc2c | 2009-04-22 08:22:17 +0000 | [diff] [blame] | 6754 | CGM.getTypes().ConvertTypeForMem(IVD->getType()); |
Micah Villmow | dd31ca1 | 2012-10-08 16:25:52 +0000 | [diff] [blame] | 6755 | unsigned Size = CGM.getDataLayout().getTypeAllocSize(FieldTy); |
Fariborz Jahanian | 7415caa | 2009-01-27 19:38:51 +0000 | [diff] [blame] | 6756 | unsigned Align = CGM.getContext().getPreferredTypeAlign( |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6757 | IVD->getType().getTypePtr()) >> 3; |
Fariborz Jahanian | 7415caa | 2009-01-27 19:38:51 +0000 | [diff] [blame] | 6758 | Align = llvm::Log2_32(Align); |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6759 | ivar.addInt(ObjCTypes.IntTy, Align); |
Daniel Dunbar | ae03226 | 2009-04-20 00:33:43 +0000 | [diff] [blame] | 6760 | // NOTE. Size of a bitfield does not match gcc's, because of the |
| 6761 | // way bitfields are treated special in each. But I am told that |
| 6762 | // 'size' for bitfield ivars is ignored by the runtime so it does |
| 6763 | // not matter. If it matters, there is enough info to get the |
| 6764 | // bitfield right! |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6765 | ivar.addInt(ObjCTypes.IntTy, Size); |
| 6766 | ivar.finishAndAddTo(ivars); |
Fariborz Jahanian | 7415caa | 2009-01-27 19:38:51 +0000 | [diff] [blame] | 6767 | } |
| 6768 | // Return null for empty list. |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6769 | if (ivars.empty()) { |
| 6770 | ivars.abandon(); |
| 6771 | ivarList.abandon(); |
Owen Anderson | 0b75f23 | 2009-07-31 20:28:54 +0000 | [diff] [blame] | 6772 | return llvm::Constant::getNullValue(ObjCTypes.IvarListnfABIPtrTy); |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6773 | } |
Chris Lattner | e64d7ba | 2011-06-20 04:01:35 +0000 | [diff] [blame] | 6774 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6775 | auto ivarCount = ivars.size(); |
| 6776 | ivars.finishAndAddTo(ivarList); |
| 6777 | ivarList.fillPlaceholderWithInt(ivarCountSlot, ObjCTypes.IntTy, ivarCount); |
| 6778 | |
Fariborz Jahanian | 7415caa | 2009-01-27 19:38:51 +0000 | [diff] [blame] | 6779 | const char *Prefix = "\01l_OBJC_$_INSTANCE_VARIABLES_"; |
| 6780 | llvm::GlobalVariable *GV = |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6781 | ivarList.finishAndCreateGlobal(Prefix + OID->getObjCRuntimeNameAsString(), |
| 6782 | CGM.getPointerAlign(), /*constant*/ false, |
| 6783 | llvm::GlobalValue::PrivateLinkage); |
Saleem Abdulrasool | 3c628af | 2016-10-25 21:43:28 +0000 | [diff] [blame] | 6784 | if (CGM.getTriple().isOSBinFormatMachO()) |
| 6785 | GV->setSection("__DATA, __objc_const"); |
Rafael Espindola | 060062a | 2014-03-06 22:15:10 +0000 | [diff] [blame] | 6786 | CGM.addCompilerUsedGlobal(GV); |
Owen Anderson | ade90fd | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 6787 | return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.IvarListnfABIPtrTy); |
Fariborz Jahanian | 56b3b77 | 2009-01-29 19:24:30 +0000 | [diff] [blame] | 6788 | } |
| 6789 | |
| 6790 | llvm::Constant *CGObjCNonFragileABIMac::GetOrEmitProtocolRef( |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6791 | const ObjCProtocolDecl *PD) { |
Fariborz Jahanian | 56b3b77 | 2009-01-29 19:24:30 +0000 | [diff] [blame] | 6792 | llvm::GlobalVariable *&Entry = Protocols[PD->getIdentifier()]; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6793 | |
Saleem Abdulrasool | 9ccc7ad | 2016-10-25 14:50:44 +0000 | [diff] [blame] | 6794 | if (!Entry) { |
Fariborz Jahanian | 56b3b77 | 2009-01-29 19:24:30 +0000 | [diff] [blame] | 6795 | // We use the initializer as a marker of whether this is a forward |
| 6796 | // reference or not. At module finalization we add the empty |
| 6797 | // contents for protocols which were referenced but never defined. |
Saleem Abdulrasool | 9ccc7ad | 2016-10-25 14:50:44 +0000 | [diff] [blame] | 6798 | llvm::SmallString<64> Protocol; |
| 6799 | llvm::raw_svector_ostream(Protocol) << "\01l_OBJC_PROTOCOL_$_" |
| 6800 | << PD->getObjCRuntimeNameAsString(); |
| 6801 | |
| 6802 | Entry = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ProtocolnfABITy, |
| 6803 | false, llvm::GlobalValue::ExternalLinkage, |
| 6804 | nullptr, Protocol); |
| 6805 | if (!CGM.getTriple().isOSBinFormatMachO()) |
| 6806 | Entry->setComdat(CGM.getModule().getOrInsertComdat(Protocol)); |
| 6807 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6808 | |
Fariborz Jahanian | 56b3b77 | 2009-01-29 19:24:30 +0000 | [diff] [blame] | 6809 | return Entry; |
| 6810 | } |
| 6811 | |
| 6812 | /// GetOrEmitProtocol - Generate the protocol meta-data: |
| 6813 | /// @code |
| 6814 | /// struct _protocol_t { |
| 6815 | /// id isa; // NULL |
| 6816 | /// const char * const protocol_name; |
| 6817 | /// const struct _protocol_list_t * protocol_list; // super protocols |
| 6818 | /// const struct method_list_t * const instance_methods; |
| 6819 | /// const struct method_list_t * const class_methods; |
| 6820 | /// const struct method_list_t *optionalInstanceMethods; |
| 6821 | /// const struct method_list_t *optionalClassMethods; |
| 6822 | /// const struct _prop_list_t * properties; |
| 6823 | /// const uint32_t size; // sizeof(struct _protocol_t) |
| 6824 | /// const uint32_t flags; // = 0 |
Bob Wilson | 5f4e3a7 | 2011-11-30 01:57:58 +0000 | [diff] [blame] | 6825 | /// const char ** extendedMethodTypes; |
Fariborz Jahanian | 6a9c46b | 2015-03-31 22:22:40 +0000 | [diff] [blame] | 6826 | /// const char *demangledName; |
Manman Ren | ce7bff5 | 2016-01-29 23:46:55 +0000 | [diff] [blame] | 6827 | /// const struct _prop_list_t * class_properties; |
Fariborz Jahanian | 56b3b77 | 2009-01-29 19:24:30 +0000 | [diff] [blame] | 6828 | /// } |
| 6829 | /// @endcode |
| 6830 | /// |
| 6831 | |
| 6832 | llvm::Constant *CGObjCNonFragileABIMac::GetOrEmitProtocol( |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6833 | const ObjCProtocolDecl *PD) { |
John McCall | f9582a7 | 2012-03-30 21:29:05 +0000 | [diff] [blame] | 6834 | llvm::GlobalVariable *Entry = Protocols[PD->getIdentifier()]; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6835 | |
Fariborz Jahanian | 56b3b77 | 2009-01-29 19:24:30 +0000 | [diff] [blame] | 6836 | // Early exit if a defining object has already been generated. |
| 6837 | if (Entry && Entry->hasInitializer()) |
| 6838 | return Entry; |
| 6839 | |
Douglas Gregor | a715bff | 2012-01-01 19:51:50 +0000 | [diff] [blame] | 6840 | // Use the protocol definition, if there is one. |
Alex Lorenz | b111da1 | 2018-08-17 22:18:08 +0000 | [diff] [blame] | 6841 | assert(PD->hasDefinition() && |
| 6842 | "emitting protocol metadata without definition"); |
| 6843 | PD = PD->getDefinition(); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 6844 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6845 | auto methodLists = ProtocolMethodLists::get(PD); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6846 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6847 | ConstantInitBuilder builder(CGM); |
| 6848 | auto values = builder.beginStruct(ObjCTypes.ProtocolnfABITy); |
Douglas Gregor | a9d8493 | 2011-05-27 01:19:52 +0000 | [diff] [blame] | 6849 | |
Fariborz Jahanian | 56b3b77 | 2009-01-29 19:24:30 +0000 | [diff] [blame] | 6850 | // isa is NULL |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6851 | values.addNullPointer(ObjCTypes.ObjectPtrTy); |
| 6852 | values.add(GetClassName(PD->getObjCRuntimeNameAsString())); |
| 6853 | values.add(EmitProtocolList("\01l_OBJC_$_PROTOCOL_REFS_" |
| 6854 | + PD->getObjCRuntimeNameAsString(), |
Daniel Dunbar | 349e6fb | 2009-10-18 20:48:59 +0000 | [diff] [blame] | 6855 | PD->protocol_begin(), |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6856 | PD->protocol_end())); |
| 6857 | values.add(methodLists.emitMethodList(this, PD, |
| 6858 | ProtocolMethodLists::RequiredInstanceMethods)); |
| 6859 | values.add(methodLists.emitMethodList(this, PD, |
| 6860 | ProtocolMethodLists::RequiredClassMethods)); |
| 6861 | values.add(methodLists.emitMethodList(this, PD, |
| 6862 | ProtocolMethodLists::OptionalInstanceMethods)); |
| 6863 | values.add(methodLists.emitMethodList(this, PD, |
| 6864 | ProtocolMethodLists::OptionalClassMethods)); |
| 6865 | values.add(EmitPropertyList( |
| 6866 | "\01l_OBJC_$_PROP_LIST_" + PD->getObjCRuntimeNameAsString(), |
| 6867 | nullptr, PD, ObjCTypes, false)); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6868 | uint32_t Size = |
Micah Villmow | dd31ca1 | 2012-10-08 16:25:52 +0000 | [diff] [blame] | 6869 | CGM.getDataLayout().getTypeAllocSize(ObjCTypes.ProtocolnfABITy); |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6870 | values.addInt(ObjCTypes.IntTy, Size); |
| 6871 | values.addInt(ObjCTypes.IntTy, 0); |
| 6872 | values.add(EmitProtocolMethodTypes("\01l_OBJC_$_PROTOCOL_METHOD_TYPES_" |
Fariborz Jahanian | 451b92a | 2014-07-16 16:16:04 +0000 | [diff] [blame] | 6873 | + PD->getObjCRuntimeNameAsString(), |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6874 | methodLists.emitExtendedTypesArray(this), |
| 6875 | ObjCTypes)); |
| 6876 | |
Fariborz Jahanian | 6a9c46b | 2015-03-31 22:22:40 +0000 | [diff] [blame] | 6877 | // const char *demangledName; |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6878 | values.addNullPointer(ObjCTypes.Int8PtrTy); |
Manman Ren | ce7bff5 | 2016-01-29 23:46:55 +0000 | [diff] [blame] | 6879 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6880 | values.add(EmitPropertyList( |
Manman Ren | ce7bff5 | 2016-01-29 23:46:55 +0000 | [diff] [blame] | 6881 | "\01l_OBJC_$_CLASS_PROP_LIST_" + PD->getObjCRuntimeNameAsString(), |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6882 | nullptr, PD, ObjCTypes, true)); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 6883 | |
Fariborz Jahanian | 56b3b77 | 2009-01-29 19:24:30 +0000 | [diff] [blame] | 6884 | if (Entry) { |
Rafael Espindola | 2461509 | 2014-09-12 20:14:20 +0000 | [diff] [blame] | 6885 | // Already created, fix the linkage and update the initializer. |
| 6886 | Entry->setLinkage(llvm::GlobalValue::WeakAnyLinkage); |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6887 | values.finishAndSetAsInitializer(Entry); |
Fariborz Jahanian | 56b3b77 | 2009-01-29 19:24:30 +0000 | [diff] [blame] | 6888 | } else { |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6889 | llvm::SmallString<64> symbolName; |
| 6890 | llvm::raw_svector_ostream(symbolName) |
| 6891 | << "\01l_OBJC_PROTOCOL_$_" << PD->getObjCRuntimeNameAsString(); |
Saleem Abdulrasool | 9ccc7ad | 2016-10-25 14:50:44 +0000 | [diff] [blame] | 6892 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6893 | Entry = values.finishAndCreateGlobal(symbolName, CGM.getPointerAlign(), |
| 6894 | /*constant*/ false, |
| 6895 | llvm::GlobalValue::WeakAnyLinkage); |
Saleem Abdulrasool | 9ccc7ad | 2016-10-25 14:50:44 +0000 | [diff] [blame] | 6896 | if (!CGM.getTriple().isOSBinFormatMachO()) |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6897 | Entry->setComdat(CGM.getModule().getOrInsertComdat(symbolName)); |
John McCall | f9582a7 | 2012-03-30 21:29:05 +0000 | [diff] [blame] | 6898 | |
| 6899 | Protocols[PD->getIdentifier()] = Entry; |
Fariborz Jahanian | 56b3b77 | 2009-01-29 19:24:30 +0000 | [diff] [blame] | 6900 | } |
Rafael Espindola | 70efc5b | 2014-03-06 18:54:12 +0000 | [diff] [blame] | 6901 | Entry->setVisibility(llvm::GlobalValue::HiddenVisibility); |
Saleem Abdulrasool | be2b5cb | 2018-01-23 19:35:51 +0000 | [diff] [blame] | 6902 | CGM.addUsedGlobal(Entry); |
Chris Lattner | f56501c | 2009-07-17 23:57:13 +0000 | [diff] [blame] | 6903 | |
Fariborz Jahanian | 61cd4b5 | 2009-01-29 20:10:59 +0000 | [diff] [blame] | 6904 | // Use this protocol meta-data to build protocol list table in section |
| 6905 | // __DATA, __objc_protolist |
Saleem Abdulrasool | 9ccc7ad | 2016-10-25 14:50:44 +0000 | [diff] [blame] | 6906 | llvm::SmallString<64> ProtocolRef; |
| 6907 | llvm::raw_svector_ostream(ProtocolRef) << "\01l_OBJC_LABEL_PROTOCOL_$_" |
| 6908 | << PD->getObjCRuntimeNameAsString(); |
| 6909 | |
Daniel Dunbar | 349e6fb | 2009-10-18 20:48:59 +0000 | [diff] [blame] | 6910 | llvm::GlobalVariable *PTGV = |
| 6911 | new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ProtocolnfABIPtrTy, |
Rafael Espindola | 70efc5b | 2014-03-06 18:54:12 +0000 | [diff] [blame] | 6912 | false, llvm::GlobalValue::WeakAnyLinkage, Entry, |
Saleem Abdulrasool | 9ccc7ad | 2016-10-25 14:50:44 +0000 | [diff] [blame] | 6913 | ProtocolRef); |
| 6914 | if (!CGM.getTriple().isOSBinFormatMachO()) |
| 6915 | PTGV->setComdat(CGM.getModule().getOrInsertComdat(ProtocolRef)); |
Fariborz Jahanian | c22f236 | 2009-01-31 02:43:27 +0000 | [diff] [blame] | 6916 | PTGV->setAlignment( |
Micah Villmow | dd31ca1 | 2012-10-08 16:25:52 +0000 | [diff] [blame] | 6917 | CGM.getDataLayout().getABITypeAlignment(ObjCTypes.ProtocolnfABIPtrTy)); |
Saleem Abdulrasool | 13d73d5 | 2017-06-03 16:18:09 +0000 | [diff] [blame] | 6918 | PTGV->setSection(GetSectionName("__objc_protolist", |
| 6919 | "coalesced,no_dead_strip")); |
Rafael Espindola | 70efc5b | 2014-03-06 18:54:12 +0000 | [diff] [blame] | 6920 | PTGV->setVisibility(llvm::GlobalValue::HiddenVisibility); |
Saleem Abdulrasool | be2b5cb | 2018-01-23 19:35:51 +0000 | [diff] [blame] | 6921 | CGM.addUsedGlobal(PTGV); |
Fariborz Jahanian | 56b3b77 | 2009-01-29 19:24:30 +0000 | [diff] [blame] | 6922 | return Entry; |
| 6923 | } |
| 6924 | |
| 6925 | /// EmitProtocolList - Generate protocol list meta-data: |
| 6926 | /// @code |
| 6927 | /// struct _protocol_list_t { |
| 6928 | /// long protocol_count; // Note, this is 32/64 bit |
| 6929 | /// struct _protocol_t[protocol_count]; |
| 6930 | /// } |
| 6931 | /// @endcode |
| 6932 | /// |
Zachary Turner | 41a9ee9 | 2017-10-11 23:54:34 +0000 | [diff] [blame] | 6933 | llvm::Constant * |
| 6934 | CGObjCNonFragileABIMac::EmitProtocolList(Twine Name, |
| 6935 | ObjCProtocolDecl::protocol_iterator begin, |
| 6936 | ObjCProtocolDecl::protocol_iterator end) { |
Dmitri Gribenko | f857950 | 2013-01-12 19:30:44 +0000 | [diff] [blame] | 6937 | SmallVector<llvm::Constant *, 16> ProtocolRefs; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6938 | |
Fariborz Jahanian | 56b3b77 | 2009-01-29 19:24:30 +0000 | [diff] [blame] | 6939 | // Just return null for empty protocol lists |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6940 | if (begin == end) |
Owen Anderson | 0b75f23 | 2009-07-31 20:28:54 +0000 | [diff] [blame] | 6941 | return llvm::Constant::getNullValue(ObjCTypes.ProtocolListnfABIPtrTy); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6942 | |
Daniel Dunbar | 8de90f0 | 2009-02-15 07:36:20 +0000 | [diff] [blame] | 6943 | // FIXME: We shouldn't need to do this lookup here, should we? |
Dylan Noblesmith | 2c1dd27 | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 6944 | SmallString<256> TmpName; |
Daniel Dunbar | 349e6fb | 2009-10-18 20:48:59 +0000 | [diff] [blame] | 6945 | Name.toVector(TmpName); |
| 6946 | llvm::GlobalVariable *GV = |
| 6947 | CGM.getModule().getGlobalVariable(TmpName.str(), true); |
Fariborz Jahanian | 56b3b77 | 2009-01-29 19:24:30 +0000 | [diff] [blame] | 6948 | if (GV) |
Daniel Dunbar | 349e6fb | 2009-10-18 20:48:59 +0000 | [diff] [blame] | 6949 | return llvm::ConstantExpr::getBitCast(GV, ObjCTypes.ProtocolListnfABIPtrTy); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6950 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6951 | ConstantInitBuilder builder(CGM); |
| 6952 | auto values = builder.beginStruct(); |
| 6953 | auto countSlot = values.addPlaceholder(); |
| 6954 | |
| 6955 | // A null-terminated array of protocols. |
| 6956 | auto array = values.beginArray(ObjCTypes.ProtocolnfABIPtrTy); |
Daniel Dunbar | 8de90f0 | 2009-02-15 07:36:20 +0000 | [diff] [blame] | 6957 | for (; begin != end; ++begin) |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6958 | array.add(GetProtocolRef(*begin)); // Implemented??? |
| 6959 | auto count = array.size(); |
| 6960 | array.addNullPointer(ObjCTypes.ProtocolnfABIPtrTy); |
Daniel Dunbar | 8de90f0 | 2009-02-15 07:36:20 +0000 | [diff] [blame] | 6961 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6962 | array.finishAndAddTo(values); |
| 6963 | values.fillPlaceholderWithInt(countSlot, ObjCTypes.LongTy, count); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6964 | |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 6965 | GV = values.finishAndCreateGlobal(Name, CGM.getPointerAlign(), |
| 6966 | /*constant*/ false, |
| 6967 | llvm::GlobalValue::PrivateLinkage); |
Saleem Abdulrasool | 3c628af | 2016-10-25 21:43:28 +0000 | [diff] [blame] | 6968 | if (CGM.getTriple().isOSBinFormatMachO()) |
| 6969 | GV->setSection("__DATA, __objc_const"); |
Rafael Espindola | 060062a | 2014-03-06 22:15:10 +0000 | [diff] [blame] | 6970 | CGM.addCompilerUsedGlobal(GV); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6971 | return llvm::ConstantExpr::getBitCast(GV, |
Daniel Dunbar | 8de90f0 | 2009-02-15 07:36:20 +0000 | [diff] [blame] | 6972 | ObjCTypes.ProtocolListnfABIPtrTy); |
Fariborz Jahanian | 56b3b77 | 2009-01-29 19:24:30 +0000 | [diff] [blame] | 6973 | } |
| 6974 | |
Fariborz Jahanian | c88a70d | 2009-02-03 00:09:52 +0000 | [diff] [blame] | 6975 | /// EmitObjCValueForIvar - Code Gen for nonfragile ivar reference. |
| 6976 | /// This code gen. amounts to generating code for: |
| 6977 | /// @code |
| 6978 | /// (type *)((char *)base + _OBJC_IVAR_$_.ivar; |
| 6979 | /// @encode |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6980 | /// |
Fariborz Jahanian | 712bfa6 | 2009-02-03 19:03:09 +0000 | [diff] [blame] | 6981 | LValue CGObjCNonFragileABIMac::EmitObjCValueForIvar( |
John McCall | 96fa484 | 2010-05-17 21:00:27 +0000 | [diff] [blame] | 6982 | CodeGen::CodeGenFunction &CGF, |
| 6983 | QualType ObjectTy, |
| 6984 | llvm::Value *BaseValue, |
| 6985 | const ObjCIvarDecl *Ivar, |
| 6986 | unsigned CVRQualifiers) { |
| 6987 | ObjCInterfaceDecl *ID = ObjectTy->getAs<ObjCObjectType>()->getInterface(); |
Fariborz Jahanian | caabf1b | 2012-02-20 22:42:22 +0000 | [diff] [blame] | 6988 | llvm::Value *Offset = EmitIvarOffset(CGF, ID, Ivar); |
Daniel Dunbar | 9fd114d | 2009-04-22 07:32:20 +0000 | [diff] [blame] | 6989 | return EmitValueForIvarAtOffset(CGF, ID, BaseValue, Ivar, CVRQualifiers, |
Fariborz Jahanian | caabf1b | 2012-02-20 22:42:22 +0000 | [diff] [blame] | 6990 | Offset); |
Fariborz Jahanian | c88a70d | 2009-02-03 00:09:52 +0000 | [diff] [blame] | 6991 | } |
| 6992 | |
Fariborz Jahanian | 21fc74c | 2009-02-10 19:02:04 +0000 | [diff] [blame] | 6993 | llvm::Value *CGObjCNonFragileABIMac::EmitIvarOffset( |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 6994 | CodeGen::CodeGenFunction &CGF, |
| 6995 | const ObjCInterfaceDecl *Interface, |
| 6996 | const ObjCIvarDecl *Ivar) { |
Tim Northover | 238b508 | 2014-03-29 13:42:40 +0000 | [diff] [blame] | 6997 | llvm::Value *IvarOffsetValue = ObjCIvarOffsetVariable(Interface, Ivar); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 6998 | IvarOffsetValue = CGF.Builder.CreateAlignedLoad(IvarOffsetValue, |
| 6999 | CGF.getSizeAlign(), "ivar"); |
Tim Northover | 238b508 | 2014-03-29 13:42:40 +0000 | [diff] [blame] | 7000 | if (IsIvarOffsetKnownIdempotent(CGF, Ivar)) |
| 7001 | cast<llvm::LoadInst>(IvarOffsetValue) |
| 7002 | ->setMetadata(CGM.getModule().getMDKindID("invariant.load"), |
Craig Topper | 5fc8fc2 | 2014-08-27 06:28:36 +0000 | [diff] [blame] | 7003 | llvm::MDNode::get(VMContext, None)); |
Tim Northover | 238b508 | 2014-03-29 13:42:40 +0000 | [diff] [blame] | 7004 | |
| 7005 | // This could be 32bit int or 64bit integer depending on the architecture. |
| 7006 | // Cast it to 64bit integer value, if it is a 32bit integer ivar offset value |
Alexander Kornienko | 2a8c18d | 2018-04-06 15:14:32 +0000 | [diff] [blame] | 7007 | // as this is what caller always expects. |
Tim Northover | 238b508 | 2014-03-29 13:42:40 +0000 | [diff] [blame] | 7008 | if (ObjCTypes.IvarOffsetVarTy == ObjCTypes.IntTy) |
| 7009 | IvarOffsetValue = CGF.Builder.CreateIntCast( |
| 7010 | IvarOffsetValue, ObjCTypes.LongTy, true, "ivar.conv"); |
| 7011 | return IvarOffsetValue; |
Fariborz Jahanian | 21fc74c | 2009-02-10 19:02:04 +0000 | [diff] [blame] | 7012 | } |
| 7013 | |
John McCall | 234eac8 | 2011-05-13 23:16:18 +0000 | [diff] [blame] | 7014 | static void appendSelectorForMessageRefTable(std::string &buffer, |
| 7015 | Selector selector) { |
| 7016 | if (selector.isUnarySelector()) { |
| 7017 | buffer += selector.getNameForSlot(0); |
| 7018 | return; |
| 7019 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 7020 | |
John McCall | 234eac8 | 2011-05-13 23:16:18 +0000 | [diff] [blame] | 7021 | for (unsigned i = 0, e = selector.getNumArgs(); i != e; ++i) { |
| 7022 | buffer += selector.getNameForSlot(i); |
| 7023 | buffer += '_'; |
| 7024 | } |
| 7025 | } |
| 7026 | |
Eric Christopher | d160c50 | 2016-01-29 01:35:53 +0000 | [diff] [blame] | 7027 | /// Emit a "vtable" message send. We emit a weak hidden-visibility |
John McCall | 9e8bb00 | 2011-05-14 03:10:52 +0000 | [diff] [blame] | 7028 | /// struct, initially containing the selector pointer and a pointer to |
| 7029 | /// a "fixup" variant of the appropriate objc_msgSend. To call, we |
| 7030 | /// load and call the function pointer, passing the address of the |
| 7031 | /// struct as the second parameter. The runtime determines whether |
| 7032 | /// the selector is currently emitted using vtable dispatch; if so, it |
| 7033 | /// substitutes a stub function which simply tail-calls through the |
| 7034 | /// appropriate vtable slot, and if not, it substitues a stub function |
| 7035 | /// which tail-calls objc_msgSend. Both stubs adjust the selector |
| 7036 | /// argument to correctly point to the selector. |
| 7037 | RValue |
| 7038 | CGObjCNonFragileABIMac::EmitVTableMessageSend(CodeGenFunction &CGF, |
| 7039 | ReturnValueSlot returnSlot, |
| 7040 | QualType resultType, |
| 7041 | Selector selector, |
| 7042 | llvm::Value *arg0, |
| 7043 | QualType arg0Type, |
| 7044 | bool isSuper, |
| 7045 | const CallArgList &formalArgs, |
| 7046 | const ObjCMethodDecl *method) { |
John McCall | 234eac8 | 2011-05-13 23:16:18 +0000 | [diff] [blame] | 7047 | // Compute the actual arguments. |
| 7048 | CallArgList args; |
| 7049 | |
John McCall | 9e8bb00 | 2011-05-14 03:10:52 +0000 | [diff] [blame] | 7050 | // First argument: the receiver / super-call structure. |
John McCall | 234eac8 | 2011-05-13 23:16:18 +0000 | [diff] [blame] | 7051 | if (!isSuper) |
John McCall | 9e8bb00 | 2011-05-14 03:10:52 +0000 | [diff] [blame] | 7052 | arg0 = CGF.Builder.CreateBitCast(arg0, ObjCTypes.ObjectPtrTy); |
| 7053 | args.add(RValue::get(arg0), arg0Type); |
John McCall | 234eac8 | 2011-05-13 23:16:18 +0000 | [diff] [blame] | 7054 | |
John McCall | 9e8bb00 | 2011-05-14 03:10:52 +0000 | [diff] [blame] | 7055 | // Second argument: a pointer to the message ref structure. Leave |
| 7056 | // the actual argument value blank for now. |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 7057 | args.add(RValue::get(nullptr), ObjCTypes.MessageRefCPtrTy); |
John McCall | 234eac8 | 2011-05-13 23:16:18 +0000 | [diff] [blame] | 7058 | |
| 7059 | args.insert(args.end(), formalArgs.begin(), formalArgs.end()); |
| 7060 | |
John McCall | a729c62 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 7061 | MessageSendInfo MSI = getMessageSendInfo(method, resultType, args); |
John McCall | 234eac8 | 2011-05-13 23:16:18 +0000 | [diff] [blame] | 7062 | |
John McCall | 5880fb8 | 2011-05-14 21:12:11 +0000 | [diff] [blame] | 7063 | NullReturnState nullReturn; |
| 7064 | |
John McCall | 9e8bb00 | 2011-05-14 03:10:52 +0000 | [diff] [blame] | 7065 | // Find the function to call and the mangled name for the message |
| 7066 | // ref structure. Using a different mangled name wouldn't actually |
| 7067 | // be a problem; it would just be a waste. |
| 7068 | // |
| 7069 | // The runtime currently never uses vtable dispatch for anything |
| 7070 | // except normal, non-super message-sends. |
| 7071 | // FIXME: don't use this for that. |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 7072 | llvm::Constant *fn = nullptr; |
John McCall | 234eac8 | 2011-05-13 23:16:18 +0000 | [diff] [blame] | 7073 | std::string messageRefName("\01l_"); |
Tim Northover | e77cc39 | 2014-03-29 13:28:05 +0000 | [diff] [blame] | 7074 | if (CGM.ReturnSlotInterferesWithArgs(MSI.CallInfo)) { |
John McCall | 234eac8 | 2011-05-13 23:16:18 +0000 | [diff] [blame] | 7075 | if (isSuper) { |
| 7076 | fn = ObjCTypes.getMessageSendSuper2StretFixupFn(); |
| 7077 | messageRefName += "objc_msgSendSuper2_stret_fixup"; |
Chris Lattner | 396639d | 2010-08-18 16:09:06 +0000 | [diff] [blame] | 7078 | } else { |
John McCall | 5880fb8 | 2011-05-14 21:12:11 +0000 | [diff] [blame] | 7079 | nullReturn.init(CGF, arg0); |
John McCall | 234eac8 | 2011-05-13 23:16:18 +0000 | [diff] [blame] | 7080 | fn = ObjCTypes.getMessageSendStretFixupFn(); |
| 7081 | messageRefName += "objc_msgSend_stret_fixup"; |
Chris Lattner | 396639d | 2010-08-18 16:09:06 +0000 | [diff] [blame] | 7082 | } |
John McCall | 234eac8 | 2011-05-13 23:16:18 +0000 | [diff] [blame] | 7083 | } else if (!isSuper && CGM.ReturnTypeUsesFPRet(resultType)) { |
| 7084 | fn = ObjCTypes.getMessageSendFpretFixupFn(); |
| 7085 | messageRefName += "objc_msgSend_fpret_fixup"; |
Mike Stump | 658fe02 | 2009-07-30 22:28:39 +0000 | [diff] [blame] | 7086 | } else { |
John McCall | 234eac8 | 2011-05-13 23:16:18 +0000 | [diff] [blame] | 7087 | if (isSuper) { |
| 7088 | fn = ObjCTypes.getMessageSendSuper2FixupFn(); |
| 7089 | messageRefName += "objc_msgSendSuper2_fixup"; |
Chris Lattner | 396639d | 2010-08-18 16:09:06 +0000 | [diff] [blame] | 7090 | } else { |
John McCall | 234eac8 | 2011-05-13 23:16:18 +0000 | [diff] [blame] | 7091 | fn = ObjCTypes.getMessageSendFixupFn(); |
| 7092 | messageRefName += "objc_msgSend_fixup"; |
Chris Lattner | 396639d | 2010-08-18 16:09:06 +0000 | [diff] [blame] | 7093 | } |
Fariborz Jahanian | e4dc35d | 2009-02-04 20:42:28 +0000 | [diff] [blame] | 7094 | } |
John McCall | 234eac8 | 2011-05-13 23:16:18 +0000 | [diff] [blame] | 7095 | assert(fn && "CGObjCNonFragileABIMac::EmitMessageSend"); |
| 7096 | messageRefName += '_'; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 7097 | |
John McCall | 234eac8 | 2011-05-13 23:16:18 +0000 | [diff] [blame] | 7098 | // Append the selector name, except use underscores anywhere we |
| 7099 | // would have used colons. |
| 7100 | appendSelectorForMessageRefTable(messageRefName, selector); |
| 7101 | |
| 7102 | llvm::GlobalVariable *messageRef |
| 7103 | = CGM.getModule().getGlobalVariable(messageRefName); |
| 7104 | if (!messageRef) { |
John McCall | 9e8bb00 | 2011-05-14 03:10:52 +0000 | [diff] [blame] | 7105 | // Build the message ref structure. |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 7106 | ConstantInitBuilder builder(CGM); |
| 7107 | auto values = builder.beginStruct(); |
| 7108 | values.add(fn); |
| 7109 | values.add(GetMethodVarName(selector)); |
| 7110 | messageRef = values.finishAndCreateGlobal(messageRefName, |
| 7111 | CharUnits::fromQuantity(16), |
| 7112 | /*constant*/ false, |
| 7113 | llvm::GlobalValue::WeakAnyLinkage); |
Rafael Espindola | 70efc5b | 2014-03-06 18:54:12 +0000 | [diff] [blame] | 7114 | messageRef->setVisibility(llvm::GlobalValue::HiddenVisibility); |
Saleem Abdulrasool | 13d73d5 | 2017-06-03 16:18:09 +0000 | [diff] [blame] | 7115 | messageRef->setSection(GetSectionName("__objc_msgrefs", "coalesced")); |
John McCall | 234eac8 | 2011-05-13 23:16:18 +0000 | [diff] [blame] | 7116 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 7117 | |
Fariborz Jahanian | c93fa98 | 2012-01-30 23:39:30 +0000 | [diff] [blame] | 7118 | bool requiresnullCheck = false; |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 7119 | if (CGM.getLangOpts().ObjCAutoRefCount && method) |
David Majnemer | 59f7792 | 2016-06-24 04:05:48 +0000 | [diff] [blame] | 7120 | for (const auto *ParamDecl : method->parameters()) { |
Fariborz Jahanian | c93fa98 | 2012-01-30 23:39:30 +0000 | [diff] [blame] | 7121 | if (ParamDecl->hasAttr<NSConsumedAttr>()) { |
| 7122 | if (!nullReturn.NullBB) |
| 7123 | nullReturn.init(CGF, arg0); |
| 7124 | requiresnullCheck = true; |
| 7125 | break; |
| 7126 | } |
| 7127 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 7128 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7129 | Address mref = |
| 7130 | Address(CGF.Builder.CreateBitCast(messageRef, ObjCTypes.MessageRefPtrTy), |
| 7131 | CGF.getPointerAlign()); |
John McCall | 234eac8 | 2011-05-13 23:16:18 +0000 | [diff] [blame] | 7132 | |
John McCall | 9e8bb00 | 2011-05-14 03:10:52 +0000 | [diff] [blame] | 7133 | // Update the message ref argument. |
Yaxun Liu | 5b330e8 | 2018-03-15 15:25:19 +0000 | [diff] [blame] | 7134 | args[1].setRValue(RValue::get(mref.getPointer())); |
John McCall | 234eac8 | 2011-05-13 23:16:18 +0000 | [diff] [blame] | 7135 | |
| 7136 | // Load the function to call from the message ref table. |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7137 | Address calleeAddr = |
| 7138 | CGF.Builder.CreateStructGEP(mref, 0, CharUnits::Zero()); |
John McCall | b92ab1a | 2016-10-26 23:46:34 +0000 | [diff] [blame] | 7139 | llvm::Value *calleePtr = CGF.Builder.CreateLoad(calleeAddr, "msgSend_fn"); |
John McCall | 234eac8 | 2011-05-13 23:16:18 +0000 | [diff] [blame] | 7140 | |
John McCall | b92ab1a | 2016-10-26 23:46:34 +0000 | [diff] [blame] | 7141 | calleePtr = CGF.Builder.CreateBitCast(calleePtr, MSI.MessengerType); |
| 7142 | CGCallee callee(CGCalleeInfo(), calleePtr); |
John McCall | 234eac8 | 2011-05-13 23:16:18 +0000 | [diff] [blame] | 7143 | |
John McCall | a729c62 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 7144 | RValue result = CGF.EmitCall(MSI.CallInfo, callee, returnSlot, args); |
Kuba Mracek | bce5cea | 2017-06-30 16:28:15 +0000 | [diff] [blame] | 7145 | return nullReturn.complete(CGF, returnSlot, result, resultType, formalArgs, |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 7146 | requiresnullCheck ? method : nullptr); |
Fariborz Jahanian | 3d9296e | 2009-02-04 00:22:57 +0000 | [diff] [blame] | 7147 | } |
| 7148 | |
| 7149 | /// Generate code for a message send expression in the nonfragile abi. |
Daniel Dunbar | aff9fca | 2009-09-17 04:01:22 +0000 | [diff] [blame] | 7150 | CodeGen::RValue |
| 7151 | CGObjCNonFragileABIMac::GenerateMessageSend(CodeGen::CodeGenFunction &CGF, |
John McCall | 78a1511 | 2010-05-22 01:48:05 +0000 | [diff] [blame] | 7152 | ReturnValueSlot Return, |
Daniel Dunbar | aff9fca | 2009-09-17 04:01:22 +0000 | [diff] [blame] | 7153 | QualType ResultType, |
| 7154 | Selector Sel, |
| 7155 | llvm::Value *Receiver, |
Daniel Dunbar | aff9fca | 2009-09-17 04:01:22 +0000 | [diff] [blame] | 7156 | const CallArgList &CallArgs, |
David Chisnall | 01aa467 | 2010-04-28 19:33:36 +0000 | [diff] [blame] | 7157 | const ObjCInterfaceDecl *Class, |
Daniel Dunbar | aff9fca | 2009-09-17 04:01:22 +0000 | [diff] [blame] | 7158 | const ObjCMethodDecl *Method) { |
John McCall | 9e8bb00 | 2011-05-14 03:10:52 +0000 | [diff] [blame] | 7159 | return isVTableDispatchedSelector(Sel) |
| 7160 | ? EmitVTableMessageSend(CGF, Return, ResultType, Sel, |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 7161 | Receiver, CGF.getContext().getObjCIdType(), |
John McCall | 9e8bb00 | 2011-05-14 03:10:52 +0000 | [diff] [blame] | 7162 | false, CallArgs, Method) |
| 7163 | : EmitMessageSend(CGF, Return, ResultType, |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 7164 | EmitSelector(CGF, Sel), |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 7165 | Receiver, CGF.getContext().getObjCIdType(), |
John McCall | 1e3157b | 2015-09-10 22:27:50 +0000 | [diff] [blame] | 7166 | false, CallArgs, Method, Class, ObjCTypes); |
Fariborz Jahanian | 3d9296e | 2009-02-04 00:22:57 +0000 | [diff] [blame] | 7167 | } |
| 7168 | |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 7169 | llvm::Constant * |
| 7170 | CGObjCNonFragileABIMac::GetClassGlobal(const ObjCInterfaceDecl *ID, |
| 7171 | bool metaclass, |
| 7172 | ForDefinition_t isForDefinition) { |
| 7173 | auto prefix = |
| 7174 | (metaclass ? getMetaclassSymbolPrefix() : getClassSymbolPrefix()); |
| 7175 | return GetClassGlobal((prefix + ID->getObjCRuntimeNameAsString()).str(), |
| 7176 | isForDefinition, |
| 7177 | ID->isWeakImported(), |
| 7178 | !isForDefinition |
| 7179 | && CGM.getTriple().isOSBinFormatCOFF() |
| 7180 | && ID->hasAttr<DLLImportAttr>()); |
| 7181 | } |
| 7182 | |
| 7183 | llvm::Constant * |
| 7184 | CGObjCNonFragileABIMac::GetClassGlobal(StringRef Name, |
| 7185 | ForDefinition_t IsForDefinition, |
| 7186 | bool Weak, bool DLLImport) { |
Rafael Espindola | 554256c | 2014-02-26 22:25:45 +0000 | [diff] [blame] | 7187 | llvm::GlobalValue::LinkageTypes L = |
| 7188 | Weak ? llvm::GlobalValue::ExternalWeakLinkage |
| 7189 | : llvm::GlobalValue::ExternalLinkage; |
| 7190 | |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 7191 | llvm::GlobalVariable *GV = CGM.getModule().getGlobalVariable(Name); |
Erik Pilkington | 92d8a29 | 2018-10-12 17:22:10 +0000 | [diff] [blame] | 7192 | if (!GV || GV->getType() != ObjCTypes.ClassnfABITy->getPointerTo()) { |
| 7193 | auto *NewGV = new llvm::GlobalVariable(ObjCTypes.ClassnfABITy, false, L, |
| 7194 | nullptr, Name); |
Daniel Dunbar | c6928bb | 2009-03-01 04:40:10 +0000 | [diff] [blame] | 7195 | |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 7196 | if (DLLImport) |
Erik Pilkington | 92d8a29 | 2018-10-12 17:22:10 +0000 | [diff] [blame] | 7197 | NewGV->setDLLStorageClass(llvm::GlobalValue::DLLImportStorageClass); |
| 7198 | |
| 7199 | if (GV) { |
| 7200 | GV->replaceAllUsesWith( |
| 7201 | llvm::ConstantExpr::getBitCast(NewGV, GV->getType())); |
| 7202 | GV->eraseFromParent(); |
| 7203 | } |
| 7204 | GV = NewGV; |
| 7205 | CGM.getModule().getGlobalList().push_back(GV); |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 7206 | } |
| 7207 | |
Rafael Espindola | 554256c | 2014-02-26 22:25:45 +0000 | [diff] [blame] | 7208 | assert(GV->getLinkage() == L); |
Daniel Dunbar | c6928bb | 2009-03-01 04:40:10 +0000 | [diff] [blame] | 7209 | return GV; |
| 7210 | } |
| 7211 | |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 7212 | llvm::Value * |
| 7213 | CGObjCNonFragileABIMac::EmitClassRefFromId(CodeGenFunction &CGF, |
| 7214 | IdentifierInfo *II, |
| 7215 | const ObjCInterfaceDecl *ID) { |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7216 | CharUnits Align = CGF.getPointerAlign(); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 7217 | llvm::GlobalVariable *&Entry = ClassReferences[II]; |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 7218 | |
Fariborz Jahanian | 33f66e6 | 2009-02-05 20:41:40 +0000 | [diff] [blame] | 7219 | if (!Entry) { |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 7220 | llvm::Constant *ClassGV; |
| 7221 | if (ID) { |
| 7222 | ClassGV = GetClassGlobal(ID, /*metaclass*/ false, NotForDefinition); |
| 7223 | } else { |
| 7224 | ClassGV = GetClassGlobal((getClassSymbolPrefix() + II->getName()).str(), |
| 7225 | NotForDefinition); |
| 7226 | } |
| 7227 | |
Rafael Espindola | 8b27bdb | 2014-11-06 13:30:38 +0000 | [diff] [blame] | 7228 | Entry = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassnfABIPtrTy, |
| 7229 | false, llvm::GlobalValue::PrivateLinkage, |
| 7230 | ClassGV, "OBJC_CLASSLIST_REFERENCES_$_"); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7231 | Entry->setAlignment(Align.getQuantity()); |
Saleem Abdulrasool | 13d73d5 | 2017-06-03 16:18:09 +0000 | [diff] [blame] | 7232 | Entry->setSection(GetSectionName("__objc_classrefs", |
| 7233 | "regular,no_dead_strip")); |
Rafael Espindola | 060062a | 2014-03-06 22:15:10 +0000 | [diff] [blame] | 7234 | CGM.addCompilerUsedGlobal(Entry); |
Daniel Dunbar | 508a7dd | 2009-04-18 08:51:00 +0000 | [diff] [blame] | 7235 | } |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7236 | return CGF.Builder.CreateAlignedLoad(Entry, Align); |
Daniel Dunbar | 508a7dd | 2009-04-18 08:51:00 +0000 | [diff] [blame] | 7237 | } |
Fariborz Jahanian | 33f66e6 | 2009-02-05 20:41:40 +0000 | [diff] [blame] | 7238 | |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 7239 | llvm::Value *CGObjCNonFragileABIMac::EmitClassRef(CodeGenFunction &CGF, |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 7240 | const ObjCInterfaceDecl *ID) { |
Douglas Gregor | 24ae22c | 2016-04-01 23:23:52 +0000 | [diff] [blame] | 7241 | // If the class has the objc_runtime_visible attribute, we need to |
| 7242 | // use the Objective-C runtime to get the class. |
| 7243 | if (ID->hasAttr<ObjCRuntimeVisibleAttr>()) |
| 7244 | return EmitClassRefViaRuntime(CGF, ID, ObjCTypes); |
| 7245 | |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 7246 | return EmitClassRefFromId(CGF, ID->getIdentifier(), ID); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 7247 | } |
| 7248 | |
| 7249 | llvm::Value *CGObjCNonFragileABIMac::EmitNSAutoreleasePoolClassRef( |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 7250 | CodeGenFunction &CGF) { |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 7251 | IdentifierInfo *II = &CGM.getContext().Idents.get("NSAutoreleasePool"); |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 7252 | return EmitClassRefFromId(CGF, II, nullptr); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 7253 | } |
| 7254 | |
Daniel Dunbar | 508a7dd | 2009-04-18 08:51:00 +0000 | [diff] [blame] | 7255 | llvm::Value * |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 7256 | CGObjCNonFragileABIMac::EmitSuperClassRef(CodeGenFunction &CGF, |
Daniel Dunbar | 508a7dd | 2009-04-18 08:51:00 +0000 | [diff] [blame] | 7257 | const ObjCInterfaceDecl *ID) { |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7258 | CharUnits Align = CGF.getPointerAlign(); |
Daniel Dunbar | 508a7dd | 2009-04-18 08:51:00 +0000 | [diff] [blame] | 7259 | llvm::GlobalVariable *&Entry = SuperClassReferences[ID->getIdentifier()]; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 7260 | |
Daniel Dunbar | 508a7dd | 2009-04-18 08:51:00 +0000 | [diff] [blame] | 7261 | if (!Entry) { |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 7262 | auto ClassGV = GetClassGlobal(ID, /*metaclass*/ false, NotForDefinition); |
Rafael Espindola | 8b27bdb | 2014-11-06 13:30:38 +0000 | [diff] [blame] | 7263 | Entry = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassnfABIPtrTy, |
| 7264 | false, llvm::GlobalValue::PrivateLinkage, |
| 7265 | ClassGV, "OBJC_CLASSLIST_SUP_REFS_$_"); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7266 | Entry->setAlignment(Align.getQuantity()); |
Saleem Abdulrasool | 13d73d5 | 2017-06-03 16:18:09 +0000 | [diff] [blame] | 7267 | Entry->setSection(GetSectionName("__objc_superrefs", |
| 7268 | "regular,no_dead_strip")); |
Rafael Espindola | 060062a | 2014-03-06 22:15:10 +0000 | [diff] [blame] | 7269 | CGM.addCompilerUsedGlobal(Entry); |
Fariborz Jahanian | 33f66e6 | 2009-02-05 20:41:40 +0000 | [diff] [blame] | 7270 | } |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7271 | return CGF.Builder.CreateAlignedLoad(Entry, Align); |
Fariborz Jahanian | 33f66e6 | 2009-02-05 20:41:40 +0000 | [diff] [blame] | 7272 | } |
| 7273 | |
Fariborz Jahanian | 6b7cd6e | 2009-02-06 20:09:23 +0000 | [diff] [blame] | 7274 | /// EmitMetaClassRef - Return a Value * of the address of _class_t |
| 7275 | /// meta-data |
| 7276 | /// |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 7277 | llvm::Value *CGObjCNonFragileABIMac::EmitMetaClassRef(CodeGenFunction &CGF, |
Fariborz Jahanian | 0b3bc24 | 2014-06-10 17:08:04 +0000 | [diff] [blame] | 7278 | const ObjCInterfaceDecl *ID, |
| 7279 | bool Weak) { |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7280 | CharUnits Align = CGF.getPointerAlign(); |
Fariborz Jahanian | 6b7cd6e | 2009-02-06 20:09:23 +0000 | [diff] [blame] | 7281 | llvm::GlobalVariable * &Entry = MetaClassReferences[ID->getIdentifier()]; |
Rafael Espindola | 21039aa | 2014-02-27 16:26:32 +0000 | [diff] [blame] | 7282 | if (!Entry) { |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 7283 | auto MetaClassGV = GetClassGlobal(ID, /*metaclass*/ true, NotForDefinition); |
Rafael Espindola | 8b27bdb | 2014-11-06 13:30:38 +0000 | [diff] [blame] | 7284 | |
Rafael Espindola | 21039aa | 2014-02-27 16:26:32 +0000 | [diff] [blame] | 7285 | Entry = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.ClassnfABIPtrTy, |
Rafael Espindola | 5179a4e | 2014-02-27 19:01:11 +0000 | [diff] [blame] | 7286 | false, llvm::GlobalValue::PrivateLinkage, |
Rafael Espindola | 8b27bdb | 2014-11-06 13:30:38 +0000 | [diff] [blame] | 7287 | MetaClassGV, "OBJC_CLASSLIST_SUP_REFS_$_"); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7288 | Entry->setAlignment(Align.getQuantity()); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 7289 | |
Saleem Abdulrasool | 13d73d5 | 2017-06-03 16:18:09 +0000 | [diff] [blame] | 7290 | Entry->setSection(GetSectionName("__objc_superrefs", |
| 7291 | "regular,no_dead_strip")); |
Rafael Espindola | 060062a | 2014-03-06 22:15:10 +0000 | [diff] [blame] | 7292 | CGM.addCompilerUsedGlobal(Entry); |
Rafael Espindola | 21039aa | 2014-02-27 16:26:32 +0000 | [diff] [blame] | 7293 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 7294 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7295 | return CGF.Builder.CreateAlignedLoad(Entry, Align); |
Fariborz Jahanian | 6b7cd6e | 2009-02-06 20:09:23 +0000 | [diff] [blame] | 7296 | } |
| 7297 | |
Fariborz Jahanian | 33f66e6 | 2009-02-05 20:41:40 +0000 | [diff] [blame] | 7298 | /// GetClass - Return a reference to the class for the given interface |
| 7299 | /// decl. |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 7300 | llvm::Value *CGObjCNonFragileABIMac::GetClass(CodeGenFunction &CGF, |
Fariborz Jahanian | 33f66e6 | 2009-02-05 20:41:40 +0000 | [diff] [blame] | 7301 | const ObjCInterfaceDecl *ID) { |
Douglas Gregor | 20b2ebd | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 7302 | if (ID->isWeakImported()) { |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 7303 | auto ClassGV = GetClassGlobal(ID, /*metaclass*/ false, NotForDefinition); |
Nick Lewycky | 9a44164 | 2014-02-27 00:36:00 +0000 | [diff] [blame] | 7304 | (void)ClassGV; |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 7305 | assert(!isa<llvm::GlobalVariable>(ClassGV) || |
| 7306 | cast<llvm::GlobalVariable>(ClassGV)->hasExternalWeakLinkage()); |
Fariborz Jahanian | 95ace55 | 2009-11-17 22:42:00 +0000 | [diff] [blame] | 7307 | } |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 7308 | |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 7309 | return EmitClassRef(CGF, ID); |
Fariborz Jahanian | 33f66e6 | 2009-02-05 20:41:40 +0000 | [diff] [blame] | 7310 | } |
| 7311 | |
Fariborz Jahanian | 6b7cd6e | 2009-02-06 20:09:23 +0000 | [diff] [blame] | 7312 | /// Generates a message send where the super is the receiver. This is |
| 7313 | /// a message send to self with special delivery semantics indicating |
| 7314 | /// which class's method should be called. |
| 7315 | CodeGen::RValue |
| 7316 | CGObjCNonFragileABIMac::GenerateMessageSendSuper(CodeGen::CodeGenFunction &CGF, |
John McCall | 78a1511 | 2010-05-22 01:48:05 +0000 | [diff] [blame] | 7317 | ReturnValueSlot Return, |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 7318 | QualType ResultType, |
| 7319 | Selector Sel, |
| 7320 | const ObjCInterfaceDecl *Class, |
| 7321 | bool isCategoryImpl, |
| 7322 | llvm::Value *Receiver, |
| 7323 | bool IsClassMessage, |
Daniel Dunbar | aff9fca | 2009-09-17 04:01:22 +0000 | [diff] [blame] | 7324 | const CodeGen::CallArgList &CallArgs, |
| 7325 | const ObjCMethodDecl *Method) { |
Fariborz Jahanian | 6b7cd6e | 2009-02-06 20:09:23 +0000 | [diff] [blame] | 7326 | // ... |
| 7327 | // Create and init a super structure; this is a (receiver, class) |
| 7328 | // pair we will pass to objc_msgSendSuper. |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7329 | Address ObjCSuper = |
| 7330 | CGF.CreateTempAlloca(ObjCTypes.SuperTy, CGF.getPointerAlign(), |
| 7331 | "objc_super"); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 7332 | |
Fariborz Jahanian | 6b7cd6e | 2009-02-06 20:09:23 +0000 | [diff] [blame] | 7333 | llvm::Value *ReceiverAsObject = |
| 7334 | CGF.Builder.CreateBitCast(Receiver, ObjCTypes.ObjectPtrTy); |
David Blaikie | 1ed728c | 2015-04-05 22:45:47 +0000 | [diff] [blame] | 7335 | CGF.Builder.CreateStore( |
| 7336 | ReceiverAsObject, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7337 | CGF.Builder.CreateStructGEP(ObjCSuper, 0, CharUnits::Zero())); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 7338 | |
Fariborz Jahanian | 6b7cd6e | 2009-02-06 20:09:23 +0000 | [diff] [blame] | 7339 | // If this is a class message the metaclass is passed as the target. |
Fariborz Jahanian | bac73ac | 2009-02-28 20:07:56 +0000 | [diff] [blame] | 7340 | llvm::Value *Target; |
Fariborz Jahanian | 27678b0 | 2012-10-10 23:11:18 +0000 | [diff] [blame] | 7341 | if (IsClassMessage) |
Fariborz Jahanian | 85b99da | 2014-08-28 17:05:17 +0000 | [diff] [blame] | 7342 | Target = EmitMetaClassRef(CGF, Class, Class->isWeakImported()); |
Fariborz Jahanian | 27678b0 | 2012-10-10 23:11:18 +0000 | [diff] [blame] | 7343 | else |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 7344 | Target = EmitSuperClassRef(CGF, Class); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 7345 | |
Mike Stump | 18bb928 | 2009-05-16 07:57:57 +0000 | [diff] [blame] | 7346 | // FIXME: We shouldn't need to do this cast, rectify the ASTContext and |
| 7347 | // ObjCTypes types. |
Chris Lattner | 2192fe5 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 7348 | llvm::Type *ClassTy = |
Fariborz Jahanian | 6b7cd6e | 2009-02-06 20:09:23 +0000 | [diff] [blame] | 7349 | CGM.getTypes().ConvertType(CGF.getContext().getObjCClassType()); |
| 7350 | Target = CGF.Builder.CreateBitCast(Target, ClassTy); |
David Blaikie | 1ed728c | 2015-04-05 22:45:47 +0000 | [diff] [blame] | 7351 | CGF.Builder.CreateStore( |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7352 | Target, CGF.Builder.CreateStructGEP(ObjCSuper, 1, CGF.getPointerSize())); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 7353 | |
John McCall | 9e8bb00 | 2011-05-14 03:10:52 +0000 | [diff] [blame] | 7354 | return (isVTableDispatchedSelector(Sel)) |
| 7355 | ? EmitVTableMessageSend(CGF, Return, ResultType, Sel, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7356 | ObjCSuper.getPointer(), ObjCTypes.SuperPtrCTy, |
John McCall | 9e8bb00 | 2011-05-14 03:10:52 +0000 | [diff] [blame] | 7357 | true, CallArgs, Method) |
| 7358 | : EmitMessageSend(CGF, Return, ResultType, |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 7359 | EmitSelector(CGF, Sel), |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7360 | ObjCSuper.getPointer(), ObjCTypes.SuperPtrCTy, |
John McCall | 1e3157b | 2015-09-10 22:27:50 +0000 | [diff] [blame] | 7361 | true, CallArgs, Method, Class, ObjCTypes); |
Fariborz Jahanian | 6b7cd6e | 2009-02-06 20:09:23 +0000 | [diff] [blame] | 7362 | } |
Fariborz Jahanian | 74b7722 | 2009-02-11 20:51:17 +0000 | [diff] [blame] | 7363 | |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 7364 | llvm::Value *CGObjCNonFragileABIMac::EmitSelector(CodeGenFunction &CGF, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7365 | Selector Sel) { |
| 7366 | Address Addr = EmitSelectorAddr(CGF, Sel); |
| 7367 | |
| 7368 | llvm::LoadInst* LI = CGF.Builder.CreateLoad(Addr); |
Fangrui Song | 6907ce2 | 2018-07-30 19:24:48 +0000 | [diff] [blame] | 7369 | LI->setMetadata(CGM.getModule().getMDKindID("invariant.load"), |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7370 | llvm::MDNode::get(VMContext, None)); |
| 7371 | return LI; |
| 7372 | } |
| 7373 | |
| 7374 | Address CGObjCNonFragileABIMac::EmitSelectorAddr(CodeGenFunction &CGF, |
| 7375 | Selector Sel) { |
Fariborz Jahanian | 74b7722 | 2009-02-11 20:51:17 +0000 | [diff] [blame] | 7376 | llvm::GlobalVariable *&Entry = SelectorReferences[Sel]; |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 7377 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7378 | CharUnits Align = CGF.getPointerAlign(); |
Fariborz Jahanian | 74b7722 | 2009-02-11 20:51:17 +0000 | [diff] [blame] | 7379 | if (!Entry) { |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 7380 | llvm::Constant *Casted = |
| 7381 | llvm::ConstantExpr::getBitCast(GetMethodVarName(Sel), |
| 7382 | ObjCTypes.SelectorPtrTy); |
Rafael Espindola | 8b27bdb | 2014-11-06 13:30:38 +0000 | [diff] [blame] | 7383 | Entry = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.SelectorPtrTy, |
| 7384 | false, llvm::GlobalValue::PrivateLinkage, |
| 7385 | Casted, "OBJC_SELECTOR_REFERENCES_"); |
Michael Gottesman | 5c20596 | 2013-02-05 23:08:45 +0000 | [diff] [blame] | 7386 | Entry->setExternallyInitialized(true); |
Saleem Abdulrasool | 13d73d5 | 2017-06-03 16:18:09 +0000 | [diff] [blame] | 7387 | Entry->setSection(GetSectionName("__objc_selrefs", |
| 7388 | "literal_pointers,no_dead_strip")); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7389 | Entry->setAlignment(Align.getQuantity()); |
Rafael Espindola | 060062a | 2014-03-06 22:15:10 +0000 | [diff] [blame] | 7390 | CGM.addCompilerUsedGlobal(Entry); |
Fariborz Jahanian | 74b7722 | 2009-02-11 20:51:17 +0000 | [diff] [blame] | 7391 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 7392 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7393 | return Address(Entry, Align); |
Fariborz Jahanian | 74b7722 | 2009-02-11 20:51:17 +0000 | [diff] [blame] | 7394 | } |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7395 | |
Fariborz Jahanian | 0629295 | 2009-02-16 22:52:32 +0000 | [diff] [blame] | 7396 | /// EmitObjCIvarAssign - Code gen for assigning to a __strong object. |
Fariborz Jahanian | 7a95d72 | 2009-09-24 22:25:38 +0000 | [diff] [blame] | 7397 | /// objc_assign_ivar (id src, id *dst, ptrdiff_t) |
Fariborz Jahanian | 0629295 | 2009-02-16 22:52:32 +0000 | [diff] [blame] | 7398 | /// |
| 7399 | void CGObjCNonFragileABIMac::EmitObjCIvarAssign(CodeGen::CodeGenFunction &CGF, |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 7400 | llvm::Value *src, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7401 | Address dst, |
Fariborz Jahanian | 7a95d72 | 2009-09-24 22:25:38 +0000 | [diff] [blame] | 7402 | llvm::Value *ivarOffset) { |
Chris Lattner | 2192fe5 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 7403 | llvm::Type * SrcTy = src->getType(); |
Fariborz Jahanian | aedcfa4 | 2009-03-23 19:10:40 +0000 | [diff] [blame] | 7404 | if (!isa<llvm::PointerType>(SrcTy)) { |
Micah Villmow | dd31ca1 | 2012-10-08 16:25:52 +0000 | [diff] [blame] | 7405 | unsigned Size = CGM.getDataLayout().getTypeAllocSize(SrcTy); |
Fariborz Jahanian | aedcfa4 | 2009-03-23 19:10:40 +0000 | [diff] [blame] | 7406 | assert(Size <= 8 && "does not support size > 8"); |
| 7407 | src = (Size == 4 ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy) |
| 7408 | : CGF.Builder.CreateBitCast(src, ObjCTypes.LongTy)); |
Fariborz Jahanian | 1b074a3 | 2009-03-13 00:42:52 +0000 | [diff] [blame] | 7409 | src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy); |
| 7410 | } |
Fariborz Jahanian | 0629295 | 2009-02-16 22:52:32 +0000 | [diff] [blame] | 7411 | src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy); |
| 7412 | dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7413 | llvm::Value *args[] = { src, dst.getPointer(), ivarOffset }; |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 7414 | CGF.EmitNounwindRuntimeCall(ObjCTypes.getGcAssignIvarFn(), args); |
Fariborz Jahanian | 0629295 | 2009-02-16 22:52:32 +0000 | [diff] [blame] | 7415 | } |
| 7416 | |
| 7417 | /// EmitObjCStrongCastAssign - Code gen for assigning to a __strong cast object. |
| 7418 | /// objc_assign_strongCast (id src, id *dst) |
| 7419 | /// |
| 7420 | void CGObjCNonFragileABIMac::EmitObjCStrongCastAssign( |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 7421 | CodeGen::CodeGenFunction &CGF, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7422 | llvm::Value *src, Address dst) { |
Chris Lattner | 2192fe5 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 7423 | llvm::Type * SrcTy = src->getType(); |
Fariborz Jahanian | aedcfa4 | 2009-03-23 19:10:40 +0000 | [diff] [blame] | 7424 | if (!isa<llvm::PointerType>(SrcTy)) { |
Micah Villmow | dd31ca1 | 2012-10-08 16:25:52 +0000 | [diff] [blame] | 7425 | unsigned Size = CGM.getDataLayout().getTypeAllocSize(SrcTy); |
Fariborz Jahanian | aedcfa4 | 2009-03-23 19:10:40 +0000 | [diff] [blame] | 7426 | assert(Size <= 8 && "does not support size > 8"); |
| 7427 | src = (Size == 4 ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy) |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 7428 | : CGF.Builder.CreateBitCast(src, ObjCTypes.LongTy)); |
Fariborz Jahanian | 1b074a3 | 2009-03-13 00:42:52 +0000 | [diff] [blame] | 7429 | src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy); |
| 7430 | } |
Fariborz Jahanian | 0629295 | 2009-02-16 22:52:32 +0000 | [diff] [blame] | 7431 | src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy); |
| 7432 | dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7433 | llvm::Value *args[] = { src, dst.getPointer() }; |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 7434 | CGF.EmitNounwindRuntimeCall(ObjCTypes.getGcAssignStrongCastFn(), |
| 7435 | args, "weakassign"); |
Fariborz Jahanian | 0629295 | 2009-02-16 22:52:32 +0000 | [diff] [blame] | 7436 | } |
| 7437 | |
Fariborz Jahanian | 5f21d2f | 2009-07-08 01:18:33 +0000 | [diff] [blame] | 7438 | void CGObjCNonFragileABIMac::EmitGCMemmoveCollectable( |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 7439 | CodeGen::CodeGenFunction &CGF, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7440 | Address DestPtr, |
| 7441 | Address SrcPtr, |
Fariborz Jahanian | 021510e | 2010-06-15 22:44:06 +0000 | [diff] [blame] | 7442 | llvm::Value *Size) { |
Fariborz Jahanian | 5f21d2f | 2009-07-08 01:18:33 +0000 | [diff] [blame] | 7443 | SrcPtr = CGF.Builder.CreateBitCast(SrcPtr, ObjCTypes.Int8PtrTy); |
| 7444 | DestPtr = CGF.Builder.CreateBitCast(DestPtr, ObjCTypes.Int8PtrTy); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7445 | llvm::Value *args[] = { DestPtr.getPointer(), SrcPtr.getPointer(), Size }; |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 7446 | CGF.EmitNounwindRuntimeCall(ObjCTypes.GcMemmoveCollectableFn(), args); |
Fariborz Jahanian | 5f21d2f | 2009-07-08 01:18:33 +0000 | [diff] [blame] | 7447 | } |
| 7448 | |
Fariborz Jahanian | 0629295 | 2009-02-16 22:52:32 +0000 | [diff] [blame] | 7449 | /// EmitObjCWeakRead - Code gen for loading value of a __weak |
| 7450 | /// object: objc_read_weak (id *src) |
| 7451 | /// |
| 7452 | llvm::Value * CGObjCNonFragileABIMac::EmitObjCWeakRead( |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 7453 | CodeGen::CodeGenFunction &CGF, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7454 | Address AddrWeakObj) { |
| 7455 | llvm::Type *DestTy = AddrWeakObj.getElementType(); |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 7456 | AddrWeakObj = CGF.Builder.CreateBitCast(AddrWeakObj, ObjCTypes.PtrObjectPtrTy); |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 7457 | llvm::Value *read_weak = |
| 7458 | CGF.EmitNounwindRuntimeCall(ObjCTypes.getGcReadWeakFn(), |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7459 | AddrWeakObj.getPointer(), "weakread"); |
Eli Friedman | a374b68 | 2009-03-07 03:57:15 +0000 | [diff] [blame] | 7460 | read_weak = CGF.Builder.CreateBitCast(read_weak, DestTy); |
Fariborz Jahanian | 0629295 | 2009-02-16 22:52:32 +0000 | [diff] [blame] | 7461 | return read_weak; |
| 7462 | } |
| 7463 | |
| 7464 | /// EmitObjCWeakAssign - Code gen for assigning to a __weak object. |
| 7465 | /// objc_assign_weak (id src, id *dst) |
| 7466 | /// |
| 7467 | void CGObjCNonFragileABIMac::EmitObjCWeakAssign(CodeGen::CodeGenFunction &CGF, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7468 | llvm::Value *src, Address dst) { |
Chris Lattner | 2192fe5 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 7469 | llvm::Type * SrcTy = src->getType(); |
Fariborz Jahanian | aedcfa4 | 2009-03-23 19:10:40 +0000 | [diff] [blame] | 7470 | if (!isa<llvm::PointerType>(SrcTy)) { |
Micah Villmow | dd31ca1 | 2012-10-08 16:25:52 +0000 | [diff] [blame] | 7471 | unsigned Size = CGM.getDataLayout().getTypeAllocSize(SrcTy); |
Fariborz Jahanian | aedcfa4 | 2009-03-23 19:10:40 +0000 | [diff] [blame] | 7472 | assert(Size <= 8 && "does not support size > 8"); |
| 7473 | src = (Size == 4 ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy) |
| 7474 | : CGF.Builder.CreateBitCast(src, ObjCTypes.LongTy)); |
Fariborz Jahanian | 1b074a3 | 2009-03-13 00:42:52 +0000 | [diff] [blame] | 7475 | src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy); |
| 7476 | } |
Fariborz Jahanian | 0629295 | 2009-02-16 22:52:32 +0000 | [diff] [blame] | 7477 | src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy); |
| 7478 | dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7479 | llvm::Value *args[] = { src, dst.getPointer() }; |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 7480 | CGF.EmitNounwindRuntimeCall(ObjCTypes.getGcAssignWeakFn(), |
| 7481 | args, "weakassign"); |
Fariborz Jahanian | 0629295 | 2009-02-16 22:52:32 +0000 | [diff] [blame] | 7482 | } |
| 7483 | |
| 7484 | /// EmitObjCGlobalAssign - Code gen for assigning to a __strong object. |
| 7485 | /// objc_assign_global (id src, id *dst) |
| 7486 | /// |
| 7487 | void CGObjCNonFragileABIMac::EmitObjCGlobalAssign(CodeGen::CodeGenFunction &CGF, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7488 | llvm::Value *src, Address dst, |
Fariborz Jahanian | 217af24 | 2010-07-20 20:30:03 +0000 | [diff] [blame] | 7489 | bool threadlocal) { |
Chris Lattner | 2192fe5 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 7490 | llvm::Type * SrcTy = src->getType(); |
Fariborz Jahanian | aedcfa4 | 2009-03-23 19:10:40 +0000 | [diff] [blame] | 7491 | if (!isa<llvm::PointerType>(SrcTy)) { |
Micah Villmow | dd31ca1 | 2012-10-08 16:25:52 +0000 | [diff] [blame] | 7492 | unsigned Size = CGM.getDataLayout().getTypeAllocSize(SrcTy); |
Fariborz Jahanian | aedcfa4 | 2009-03-23 19:10:40 +0000 | [diff] [blame] | 7493 | assert(Size <= 8 && "does not support size > 8"); |
| 7494 | src = (Size == 4 ? CGF.Builder.CreateBitCast(src, ObjCTypes.IntTy) |
| 7495 | : CGF.Builder.CreateBitCast(src, ObjCTypes.LongTy)); |
Fariborz Jahanian | 1b074a3 | 2009-03-13 00:42:52 +0000 | [diff] [blame] | 7496 | src = CGF.Builder.CreateIntToPtr(src, ObjCTypes.Int8PtrTy); |
| 7497 | } |
Fariborz Jahanian | 0629295 | 2009-02-16 22:52:32 +0000 | [diff] [blame] | 7498 | src = CGF.Builder.CreateBitCast(src, ObjCTypes.ObjectPtrTy); |
| 7499 | dst = CGF.Builder.CreateBitCast(dst, ObjCTypes.PtrObjectPtrTy); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 7500 | llvm::Value *args[] = { src, dst.getPointer() }; |
Fariborz Jahanian | 217af24 | 2010-07-20 20:30:03 +0000 | [diff] [blame] | 7501 | if (!threadlocal) |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 7502 | CGF.EmitNounwindRuntimeCall(ObjCTypes.getGcAssignGlobalFn(), |
| 7503 | args, "globalassign"); |
Fariborz Jahanian | 217af24 | 2010-07-20 20:30:03 +0000 | [diff] [blame] | 7504 | else |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 7505 | CGF.EmitNounwindRuntimeCall(ObjCTypes.getGcAssignThreadLocalFn(), |
| 7506 | args, "threadlocalassign"); |
Fariborz Jahanian | 0629295 | 2009-02-16 22:52:32 +0000 | [diff] [blame] | 7507 | } |
Fariborz Jahanian | 74b7722 | 2009-02-11 20:51:17 +0000 | [diff] [blame] | 7508 | |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 7509 | void |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 7510 | CGObjCNonFragileABIMac::EmitSynchronizedStmt(CodeGen::CodeGenFunction &CGF, |
| 7511 | const ObjCAtSynchronizedStmt &S) { |
David Chisnall | 3e57560 | 2011-03-25 17:46:35 +0000 | [diff] [blame] | 7512 | EmitAtSynchronizedStmt(CGF, S, |
| 7513 | cast<llvm::Function>(ObjCTypes.getSyncEnterFn()), |
| 7514 | cast<llvm::Function>(ObjCTypes.getSyncExitFn())); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 7515 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 7516 | |
John McCall | 2ca705e | 2010-07-24 00:37:23 +0000 | [diff] [blame] | 7517 | llvm::Constant * |
Fariborz Jahanian | 831f0fc | 2011-06-23 19:00:08 +0000 | [diff] [blame] | 7518 | CGObjCNonFragileABIMac::GetEHType(QualType T) { |
John McCall | 2ca705e | 2010-07-24 00:37:23 +0000 | [diff] [blame] | 7519 | // There's a particular fixed type info for 'id'. |
Saleem Abdulrasool | e5f3eae | 2016-07-17 22:27:38 +0000 | [diff] [blame] | 7520 | if (T->isObjCIdType() || T->isObjCQualifiedIdType()) { |
| 7521 | auto *IDEHType = CGM.getModule().getGlobalVariable("OBJC_EHTYPE_id"); |
Saleem Abdulrasool | 7093e21 | 2016-07-17 22:27:44 +0000 | [diff] [blame] | 7522 | if (!IDEHType) { |
John McCall | 2ca705e | 2010-07-24 00:37:23 +0000 | [diff] [blame] | 7523 | IDEHType = |
Saleem Abdulrasool | e5f3eae | 2016-07-17 22:27:38 +0000 | [diff] [blame] | 7524 | new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.EHTypeTy, false, |
| 7525 | llvm::GlobalValue::ExternalLinkage, nullptr, |
| 7526 | "OBJC_EHTYPE_id"); |
Saleem Abdulrasool | 7093e21 | 2016-07-17 22:27:44 +0000 | [diff] [blame] | 7527 | if (CGM.getTriple().isOSBinFormatCOFF()) |
| 7528 | IDEHType->setDLLStorageClass(getStorage(CGM, "OBJC_EHTYPE_id")); |
| 7529 | } |
John McCall | 2ca705e | 2010-07-24 00:37:23 +0000 | [diff] [blame] | 7530 | return IDEHType; |
| 7531 | } |
| 7532 | |
| 7533 | // All other types should be Objective-C interface pointer types. |
Saleem Abdulrasool | e5f3eae | 2016-07-17 22:27:38 +0000 | [diff] [blame] | 7534 | const ObjCObjectPointerType *PT = T->getAs<ObjCObjectPointerType>(); |
John McCall | 2ca705e | 2010-07-24 00:37:23 +0000 | [diff] [blame] | 7535 | assert(PT && "Invalid @catch type."); |
Saleem Abdulrasool | e5f3eae | 2016-07-17 22:27:38 +0000 | [diff] [blame] | 7536 | |
John McCall | 2ca705e | 2010-07-24 00:37:23 +0000 | [diff] [blame] | 7537 | const ObjCInterfaceType *IT = PT->getInterfaceType(); |
| 7538 | assert(IT && "Invalid @catch type."); |
Saleem Abdulrasool | e5f3eae | 2016-07-17 22:27:38 +0000 | [diff] [blame] | 7539 | |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 7540 | return GetInterfaceEHType(IT->getDecl(), NotForDefinition); |
Saleem Abdulrasool | e5f3eae | 2016-07-17 22:27:38 +0000 | [diff] [blame] | 7541 | } |
John McCall | 2ca705e | 2010-07-24 00:37:23 +0000 | [diff] [blame] | 7542 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 7543 | void CGObjCNonFragileABIMac::EmitTryStmt(CodeGen::CodeGenFunction &CGF, |
| 7544 | const ObjCAtTryStmt &S) { |
David Chisnall | 3e57560 | 2011-03-25 17:46:35 +0000 | [diff] [blame] | 7545 | EmitTryCatchStmt(CGF, S, |
| 7546 | cast<llvm::Function>(ObjCTypes.getObjCBeginCatchFn()), |
| 7547 | cast<llvm::Function>(ObjCTypes.getObjCEndCatchFn()), |
| 7548 | cast<llvm::Function>(ObjCTypes.getExceptionRethrowFn())); |
Daniel Dunbar | 0b0dcd9 | 2009-02-24 07:47:38 +0000 | [diff] [blame] | 7549 | } |
| 7550 | |
Anders Carlsson | 9ab53d1 | 2009-02-16 22:59:18 +0000 | [diff] [blame] | 7551 | /// EmitThrowStmt - Generate code for a throw statement. |
| 7552 | void CGObjCNonFragileABIMac::EmitThrowStmt(CodeGen::CodeGenFunction &CGF, |
Fariborz Jahanian | 1eab052 | 2013-01-10 19:02:56 +0000 | [diff] [blame] | 7553 | const ObjCAtThrowStmt &S, |
| 7554 | bool ClearInsertionPoint) { |
Anders Carlsson | 9ab53d1 | 2009-02-16 22:59:18 +0000 | [diff] [blame] | 7555 | if (const Expr *ThrowExpr = S.getThrowExpr()) { |
John McCall | 248512a | 2011-10-01 10:32:24 +0000 | [diff] [blame] | 7556 | llvm::Value *Exception = CGF.EmitObjCThrowOperand(ThrowExpr); |
Benjamin Kramer | 76399eb | 2011-09-27 21:06:10 +0000 | [diff] [blame] | 7557 | Exception = CGF.Builder.CreateBitCast(Exception, ObjCTypes.ObjectPtrTy); |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 7558 | CGF.EmitRuntimeCallOrInvoke(ObjCTypes.getExceptionThrowFn(), Exception) |
John McCall | 17afe45 | 2010-10-16 08:21:07 +0000 | [diff] [blame] | 7559 | .setDoesNotReturn(); |
Anders Carlsson | 9ab53d1 | 2009-02-16 22:59:18 +0000 | [diff] [blame] | 7560 | } else { |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 7561 | CGF.EmitRuntimeCallOrInvoke(ObjCTypes.getExceptionRethrowFn()) |
John McCall | 17afe45 | 2010-10-16 08:21:07 +0000 | [diff] [blame] | 7562 | .setDoesNotReturn(); |
Anders Carlsson | 9ab53d1 | 2009-02-16 22:59:18 +0000 | [diff] [blame] | 7563 | } |
| 7564 | |
John McCall | 17afe45 | 2010-10-16 08:21:07 +0000 | [diff] [blame] | 7565 | CGF.Builder.CreateUnreachable(); |
Fariborz Jahanian | 1eab052 | 2013-01-10 19:02:56 +0000 | [diff] [blame] | 7566 | if (ClearInsertionPoint) |
| 7567 | CGF.Builder.ClearInsertionPoint(); |
Anders Carlsson | 9ab53d1 | 2009-02-16 22:59:18 +0000 | [diff] [blame] | 7568 | } |
Daniel Dunbar | b1559a4 | 2009-03-01 04:46:24 +0000 | [diff] [blame] | 7569 | |
John McCall | 2ca705e | 2010-07-24 00:37:23 +0000 | [diff] [blame] | 7570 | llvm::Constant * |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 7571 | CGObjCNonFragileABIMac::GetInterfaceEHType(const ObjCInterfaceDecl *ID, |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 7572 | ForDefinition_t IsForDefinition) { |
Daniel Dunbar | b1559a4 | 2009-03-01 04:46:24 +0000 | [diff] [blame] | 7573 | llvm::GlobalVariable * &Entry = EHTypeReferences[ID->getIdentifier()]; |
Saleem Abdulrasool | e5f3eae | 2016-07-17 22:27:38 +0000 | [diff] [blame] | 7574 | StringRef ClassName = ID->getObjCRuntimeNameAsString(); |
Daniel Dunbar | b1559a4 | 2009-03-01 04:46:24 +0000 | [diff] [blame] | 7575 | |
Daniel Dunbar | 8f28d01 | 2009-04-08 04:21:03 +0000 | [diff] [blame] | 7576 | // If we don't need a definition, return the entry if found or check |
| 7577 | // if we use an external reference. |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 7578 | if (!IsForDefinition) { |
Daniel Dunbar | 8f28d01 | 2009-04-08 04:21:03 +0000 | [diff] [blame] | 7579 | if (Entry) |
| 7580 | return Entry; |
Daniel Dunbar | d7beeea | 2009-04-07 06:43:45 +0000 | [diff] [blame] | 7581 | |
Daniel Dunbar | 8f28d01 | 2009-04-08 04:21:03 +0000 | [diff] [blame] | 7582 | // If this type (or a super class) has the __objc_exception__ |
| 7583 | // attribute, emit an external reference. |
Saleem Abdulrasool | 7093e21 | 2016-07-17 22:27:44 +0000 | [diff] [blame] | 7584 | if (hasObjCExceptionAttribute(CGM.getContext(), ID)) { |
| 7585 | std::string EHTypeName = ("OBJC_EHTYPE_$_" + ClassName).str(); |
| 7586 | Entry = new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.EHTypeTy, |
| 7587 | false, llvm::GlobalValue::ExternalLinkage, |
| 7588 | nullptr, EHTypeName); |
Rafael Espindola | b735004 | 2018-03-01 00:35:47 +0000 | [diff] [blame] | 7589 | CGM.setGVProperties(Entry, ID); |
Saleem Abdulrasool | 7093e21 | 2016-07-17 22:27:44 +0000 | [diff] [blame] | 7590 | return Entry; |
| 7591 | } |
Daniel Dunbar | 8f28d01 | 2009-04-08 04:21:03 +0000 | [diff] [blame] | 7592 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 7593 | |
Saleem Abdulrasool | e5f3eae | 2016-07-17 22:27:38 +0000 | [diff] [blame] | 7594 | // Otherwise we need to either make a new entry or fill in the initializer. |
Daniel Dunbar | 8f28d01 | 2009-04-08 04:21:03 +0000 | [diff] [blame] | 7595 | assert((!Entry || !Entry->hasInitializer()) && "Duplicate EHType definition"); |
Saleem Abdulrasool | e5f3eae | 2016-07-17 22:27:38 +0000 | [diff] [blame] | 7596 | |
Daniel Dunbar | b1559a4 | 2009-03-01 04:46:24 +0000 | [diff] [blame] | 7597 | std::string VTableName = "objc_ehtype_vtable"; |
Saleem Abdulrasool | e5f3eae | 2016-07-17 22:27:38 +0000 | [diff] [blame] | 7598 | auto *VTableGV = CGM.getModule().getGlobalVariable(VTableName); |
Saleem Abdulrasool | 7093e21 | 2016-07-17 22:27:44 +0000 | [diff] [blame] | 7599 | if (!VTableGV) { |
Saleem Abdulrasool | e5f3eae | 2016-07-17 22:27:38 +0000 | [diff] [blame] | 7600 | VTableGV = |
| 7601 | new llvm::GlobalVariable(CGM.getModule(), ObjCTypes.Int8PtrTy, false, |
| 7602 | llvm::GlobalValue::ExternalLinkage, nullptr, |
| 7603 | VTableName); |
Saleem Abdulrasool | 7093e21 | 2016-07-17 22:27:44 +0000 | [diff] [blame] | 7604 | if (CGM.getTriple().isOSBinFormatCOFF()) |
| 7605 | VTableGV->setDLLStorageClass(getStorage(CGM, VTableName)); |
| 7606 | } |
Daniel Dunbar | b1559a4 | 2009-03-01 04:46:24 +0000 | [diff] [blame] | 7607 | |
Chris Lattner | ece0409 | 2012-02-07 00:39:47 +0000 | [diff] [blame] | 7608 | llvm::Value *VTableIdx = llvm::ConstantInt::get(CGM.Int32Ty, 2); |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 7609 | ConstantInitBuilder builder(CGM); |
| 7610 | auto values = builder.beginStruct(ObjCTypes.EHTypeTy); |
Ahmed Bougacha | 5d0199a | 2017-11-17 19:46:47 +0000 | [diff] [blame] | 7611 | values.add( |
| 7612 | llvm::ConstantExpr::getInBoundsGetElementPtr(VTableGV->getValueType(), |
| 7613 | VTableGV, VTableIdx)); |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 7614 | values.add(GetClassName(ClassName)); |
| 7615 | values.add(GetClassGlobal(ID, /*metaclass*/ false, NotForDefinition)); |
Daniel Dunbar | b1559a4 | 2009-03-01 04:46:24 +0000 | [diff] [blame] | 7616 | |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 7617 | llvm::GlobalValue::LinkageTypes L = IsForDefinition |
Rafael Espindola | 554256c | 2014-02-26 22:25:45 +0000 | [diff] [blame] | 7618 | ? llvm::GlobalValue::ExternalLinkage |
| 7619 | : llvm::GlobalValue::WeakAnyLinkage; |
Daniel Dunbar | 8f28d01 | 2009-04-08 04:21:03 +0000 | [diff] [blame] | 7620 | if (Entry) { |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 7621 | values.finishAndSetAsInitializer(Entry); |
| 7622 | Entry->setAlignment(CGM.getPointerAlign().getQuantity()); |
Daniel Dunbar | 8f28d01 | 2009-04-08 04:21:03 +0000 | [diff] [blame] | 7623 | } else { |
John McCall | 176f892 | 2016-11-30 02:39:18 +0000 | [diff] [blame] | 7624 | Entry = values.finishAndCreateGlobal("OBJC_EHTYPE_$_" + ClassName, |
| 7625 | CGM.getPointerAlign(), |
| 7626 | /*constant*/ false, |
| 7627 | L); |
Rafael Espindola | b735004 | 2018-03-01 00:35:47 +0000 | [diff] [blame] | 7628 | if (hasObjCExceptionAttribute(CGM.getContext(), ID)) |
| 7629 | CGM.setGVProperties(Entry, ID); |
Daniel Dunbar | 8f28d01 | 2009-04-08 04:21:03 +0000 | [diff] [blame] | 7630 | } |
Rafael Espindola | 554256c | 2014-02-26 22:25:45 +0000 | [diff] [blame] | 7631 | assert(Entry->getLinkage() == L); |
Daniel Dunbar | 8f28d01 | 2009-04-08 04:21:03 +0000 | [diff] [blame] | 7632 | |
Saleem Abdulrasool | 7093e21 | 2016-07-17 22:27:44 +0000 | [diff] [blame] | 7633 | if (!CGM.getTriple().isOSBinFormatCOFF()) |
| 7634 | if (ID->getVisibility() == HiddenVisibility) |
| 7635 | Entry->setVisibility(llvm::GlobalValue::HiddenVisibility); |
Saleem Abdulrasool | e5f3eae | 2016-07-17 22:27:38 +0000 | [diff] [blame] | 7636 | |
John McCall | dba63a7 | 2016-11-30 23:54:50 +0000 | [diff] [blame] | 7637 | if (IsForDefinition) |
Saleem Abdulrasool | 3c628af | 2016-10-25 21:43:28 +0000 | [diff] [blame] | 7638 | if (CGM.getTriple().isOSBinFormatMachO()) |
| 7639 | Entry->setSection("__DATA,__objc_const"); |
Daniel Dunbar | b1559a4 | 2009-03-01 04:46:24 +0000 | [diff] [blame] | 7640 | |
| 7641 | return Entry; |
| 7642 | } |
Daniel Dunbar | 59e476b | 2009-08-03 17:06:42 +0000 | [diff] [blame] | 7643 | |
Daniel Dunbar | 8b8683f | 2008-08-12 00:12:39 +0000 | [diff] [blame] | 7644 | /* *** */ |
| 7645 | |
Daniel Dunbar | b036db8 | 2008-08-13 03:21:16 +0000 | [diff] [blame] | 7646 | CodeGen::CGObjCRuntime * |
| 7647 | CodeGen::CreateMacObjCRuntime(CodeGen::CodeGenModule &CGM) { |
John McCall | 5fb5df9 | 2012-06-20 06:18:46 +0000 | [diff] [blame] | 7648 | switch (CGM.getLangOpts().ObjCRuntime.getKind()) { |
| 7649 | case ObjCRuntime::FragileMacOSX: |
Daniel Dunbar | 303e2c2 | 2008-08-11 02:45:11 +0000 | [diff] [blame] | 7650 | return new CGObjCMac(CGM); |
John McCall | 5fb5df9 | 2012-06-20 06:18:46 +0000 | [diff] [blame] | 7651 | |
| 7652 | case ObjCRuntime::MacOSX: |
| 7653 | case ObjCRuntime::iOS: |
Tim Northover | 756447a | 2015-10-30 16:30:36 +0000 | [diff] [blame] | 7654 | case ObjCRuntime::WatchOS: |
John McCall | 5fb5df9 | 2012-06-20 06:18:46 +0000 | [diff] [blame] | 7655 | return new CGObjCNonFragileABIMac(CGM); |
| 7656 | |
David Chisnall | b601c96 | 2012-07-03 20:49:52 +0000 | [diff] [blame] | 7657 | case ObjCRuntime::GNUstep: |
| 7658 | case ObjCRuntime::GCC: |
John McCall | 775086e | 2012-07-12 02:07:58 +0000 | [diff] [blame] | 7659 | case ObjCRuntime::ObjFW: |
John McCall | 5fb5df9 | 2012-06-20 06:18:46 +0000 | [diff] [blame] | 7660 | llvm_unreachable("these runtimes are not Mac runtimes"); |
| 7661 | } |
| 7662 | llvm_unreachable("bad runtime"); |
Daniel Dunbar | 303e2c2 | 2008-08-11 02:45:11 +0000 | [diff] [blame] | 7663 | } |