Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 1 | //===--- CodeGenModule.h - Per-Module state for LLVM CodeGen ----*- C++ -*-===// |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 10 | // This is the internal per-translation-unit state used for llvm translation. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Chris Lattner | ef52a2f | 2008-02-29 17:10:38 +0000 | [diff] [blame] | 14 | #ifndef CLANG_CODEGEN_CODEGENMODULE_H |
| 15 | #define CLANG_CODEGEN_CODEGENMODULE_H |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 16 | |
Peter Collingbourne | 1411047 | 2011-01-13 18:57:25 +0000 | [diff] [blame] | 17 | #include "clang/Basic/ABI.h" |
Daniel Dunbar | 04d4078 | 2009-04-14 06:00:08 +0000 | [diff] [blame] | 18 | #include "clang/Basic/LangOptions.h" |
Dan Gohman | 4f8d123 | 2008-05-22 00:50:06 +0000 | [diff] [blame] | 19 | #include "clang/AST/Attr.h" |
Anders Carlsson | 2a131fb | 2009-05-05 04:44:02 +0000 | [diff] [blame] | 20 | #include "clang/AST/DeclCXX.h" |
Anders Carlsson | 0ff8baf | 2009-09-11 00:07:24 +0000 | [diff] [blame] | 21 | #include "clang/AST/DeclObjC.h" |
Peter Collingbourne | fd05ca0 | 2011-06-14 04:02:39 +0000 | [diff] [blame] | 22 | #include "clang/AST/GlobalDecl.h" |
Peter Collingbourne | 1411047 | 2011-01-13 18:57:25 +0000 | [diff] [blame] | 23 | #include "clang/AST/Mangle.h" |
Anders Carlsson | 461e326 | 2010-04-08 16:30:25 +0000 | [diff] [blame] | 24 | #include "CGVTables.h" |
Chris Lattner | bd36064 | 2009-03-26 05:00:52 +0000 | [diff] [blame] | 25 | #include "CodeGenTypes.h" |
Owen Anderson | 6924382 | 2009-07-13 04:10:07 +0000 | [diff] [blame] | 26 | #include "llvm/Module.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 27 | #include "llvm/ADT/DenseMap.h" |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 28 | #include "llvm/ADT/StringMap.h" |
Douglas Gregor | 6ec3668 | 2009-02-18 23:53:56 +0000 | [diff] [blame] | 29 | #include "llvm/ADT/StringSet.h" |
Rafael Espindola | 6a83670 | 2010-03-04 18:17:24 +0000 | [diff] [blame] | 30 | #include "llvm/ADT/SmallPtrSet.h" |
Chris Lattner | 35f38a2 | 2009-03-31 22:37:52 +0000 | [diff] [blame] | 31 | #include "llvm/Support/ValueHandle.h" |
Anders Carlsson | b723f75 | 2009-01-04 02:08:04 +0000 | [diff] [blame] | 32 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 33 | namespace llvm { |
| 34 | class Module; |
| 35 | class Constant; |
John McCall | bc8d40d | 2011-06-24 21:55:10 +0000 | [diff] [blame] | 36 | class ConstantInt; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 37 | class Function; |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 38 | class GlobalValue; |
Devang Patel | 7a4718e | 2007-10-31 20:01:01 +0000 | [diff] [blame] | 39 | class TargetData; |
Eli Friedman | ff4a2d9 | 2008-06-01 15:54:49 +0000 | [diff] [blame] | 40 | class FunctionType; |
Benjamin Kramer | f21efe9 | 2009-08-11 17:46:57 +0000 | [diff] [blame] | 41 | class LLVMContext; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | namespace clang { |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 45 | class TargetCodeGenInfo; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 46 | class ASTContext; |
| 47 | class FunctionDecl; |
Daniel Dunbar | 90db882 | 2008-08-25 06:18:57 +0000 | [diff] [blame] | 48 | class IdentifierInfo; |
Chris Lattner | 391d77a | 2008-03-30 23:03:07 +0000 | [diff] [blame] | 49 | class ObjCMethodDecl; |
Anton Korobeynikov | 20ff310 | 2008-06-01 14:13:53 +0000 | [diff] [blame] | 50 | class ObjCImplementationDecl; |
| 51 | class ObjCCategoryImplDecl; |
| 52 | class ObjCProtocolDecl; |
Chris Lattner | eaf2bb8 | 2009-02-24 22:18:39 +0000 | [diff] [blame] | 53 | class ObjCEncodeExpr; |
Anders Carlsson | d5cab54 | 2009-02-12 17:55:02 +0000 | [diff] [blame] | 54 | class BlockExpr; |
Ken Dyck | 687cc4a | 2010-01-26 13:48:07 +0000 | [diff] [blame] | 55 | class CharUnits; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 56 | class Decl; |
Oliver Hunt | 2824723 | 2007-12-02 00:11:25 +0000 | [diff] [blame] | 57 | class Expr; |
Chris Lattner | 2c8569d | 2007-12-02 07:19:18 +0000 | [diff] [blame] | 58 | class Stmt; |
Daniel Dunbar | 1e04976 | 2008-08-10 20:25:57 +0000 | [diff] [blame] | 59 | class StringLiteral; |
Nate Begeman | 1a1d92a | 2008-04-20 20:38:08 +0000 | [diff] [blame] | 60 | class NamedDecl; |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 61 | class ValueDecl; |
Chris Lattner | 2b9d2ca | 2007-12-18 08:16:44 +0000 | [diff] [blame] | 62 | class VarDecl; |
Sebastian Redl | 43af76e | 2009-03-07 12:16:37 +0000 | [diff] [blame] | 63 | class LangOptions; |
Chandler Carruth | 2811ccf | 2009-11-12 17:24:48 +0000 | [diff] [blame] | 64 | class CodeGenOptions; |
Chris Lattner | fb97b03 | 2007-12-02 01:40:18 +0000 | [diff] [blame] | 65 | class Diagnostic; |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 66 | class AnnotateAttr; |
Anders Carlsson | 27ae536 | 2009-04-17 01:58:57 +0000 | [diff] [blame] | 67 | class CXXDestructorDecl; |
Peter Collingbourne | 1411047 | 2011-01-13 18:57:25 +0000 | [diff] [blame] | 68 | class MangleBuffer; |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 69 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 70 | namespace CodeGen { |
| 71 | |
John McCall | d26bc76 | 2011-03-09 04:27:21 +0000 | [diff] [blame] | 72 | class CallArgList; |
Lauro Ramos Venancio | 8137335 | 2008-02-26 21:41:45 +0000 | [diff] [blame] | 73 | class CodeGenFunction; |
Dan Gohman | 3d5aff5 | 2010-10-14 23:06:10 +0000 | [diff] [blame] | 74 | class CodeGenTBAA; |
John McCall | 4c40d98 | 2010-08-31 07:33:07 +0000 | [diff] [blame] | 75 | class CGCXXABI; |
Sanjiv Gupta | e8b9f5b | 2008-05-08 08:54:20 +0000 | [diff] [blame] | 76 | class CGDebugInfo; |
Daniel Dunbar | af2f62c | 2008-08-13 00:59:25 +0000 | [diff] [blame] | 77 | class CGObjCRuntime; |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 78 | class BlockFieldFlags; |
John McCall | d26bc76 | 2011-03-09 04:27:21 +0000 | [diff] [blame] | 79 | class FunctionArgList; |
Anders Carlsson | 4a6835e | 2009-09-10 23:38:47 +0000 | [diff] [blame] | 80 | |
Chris Lattner | ec2830d | 2010-06-27 06:32:58 +0000 | [diff] [blame] | 81 | struct OrderGlobalInits { |
Fariborz Jahanian | e0b691a | 2010-06-21 21:27:42 +0000 | [diff] [blame] | 82 | unsigned int priority; |
| 83 | unsigned int lex_order; |
| 84 | OrderGlobalInits(unsigned int p, unsigned int l) |
Chris Lattner | ec2830d | 2010-06-27 06:32:58 +0000 | [diff] [blame] | 85 | : priority(p), lex_order(l) {} |
| 86 | |
| 87 | bool operator==(const OrderGlobalInits &RHS) const { |
| 88 | return priority == RHS.priority && |
| 89 | lex_order == RHS.lex_order; |
Fariborz Jahanian | f489688 | 2010-06-22 00:23:08 +0000 | [diff] [blame] | 90 | } |
| 91 | |
Chris Lattner | ec2830d | 2010-06-27 06:32:58 +0000 | [diff] [blame] | 92 | bool operator<(const OrderGlobalInits &RHS) const { |
| 93 | if (priority < RHS.priority) |
Fariborz Jahanian | f489688 | 2010-06-22 00:23:08 +0000 | [diff] [blame] | 94 | return true; |
| 95 | |
Chris Lattner | ec2830d | 2010-06-27 06:32:58 +0000 | [diff] [blame] | 96 | return priority == RHS.priority && lex_order < RHS.lex_order; |
Fariborz Jahanian | f489688 | 2010-06-22 00:23:08 +0000 | [diff] [blame] | 97 | } |
Chris Lattner | ec2830d | 2010-06-27 06:32:58 +0000 | [diff] [blame] | 98 | }; |
John McCall | 5936e33 | 2011-02-15 09:22:45 +0000 | [diff] [blame] | 99 | |
| 100 | struct CodeGenTypeCache { |
John McCall | 0774cb8 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 101 | /// void |
Chris Lattner | 9cbe4f0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 102 | llvm::Type *VoidTy; |
John McCall | 0774cb8 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 103 | |
John McCall | 5936e33 | 2011-02-15 09:22:45 +0000 | [diff] [blame] | 104 | /// i8, i32, and i64 |
Chris Lattner | 9cbe4f0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 105 | llvm::IntegerType *Int8Ty, *Int32Ty, *Int64Ty; |
John McCall | 5936e33 | 2011-02-15 09:22:45 +0000 | [diff] [blame] | 106 | |
| 107 | /// int |
Chris Lattner | 9cbe4f0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 108 | llvm::IntegerType *IntTy; |
John McCall | 5936e33 | 2011-02-15 09:22:45 +0000 | [diff] [blame] | 109 | |
John McCall | 0774cb8 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 110 | /// intptr_t, size_t, and ptrdiff_t, which we assume are the same size. |
John McCall | 5936e33 | 2011-02-15 09:22:45 +0000 | [diff] [blame] | 111 | union { |
Chris Lattner | 9cbe4f0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 112 | llvm::IntegerType *IntPtrTy; |
| 113 | llvm::IntegerType *SizeTy; |
| 114 | llvm::IntegerType *PtrDiffTy; |
John McCall | 5936e33 | 2011-02-15 09:22:45 +0000 | [diff] [blame] | 115 | }; |
| 116 | |
| 117 | /// void* in address space 0 |
| 118 | union { |
Chris Lattner | 9cbe4f0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 119 | llvm::PointerType *VoidPtrTy; |
| 120 | llvm::PointerType *Int8PtrTy; |
John McCall | 5936e33 | 2011-02-15 09:22:45 +0000 | [diff] [blame] | 121 | }; |
| 122 | |
| 123 | /// void** in address space 0 |
| 124 | union { |
Chris Lattner | 9cbe4f0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 125 | llvm::PointerType *VoidPtrPtrTy; |
| 126 | llvm::PointerType *Int8PtrPtrTy; |
John McCall | 5936e33 | 2011-02-15 09:22:45 +0000 | [diff] [blame] | 127 | }; |
| 128 | |
John McCall | 3469585 | 2011-02-22 06:44:22 +0000 | [diff] [blame] | 129 | /// The width of a pointer into the generic address space. |
John McCall | 5936e33 | 2011-02-15 09:22:45 +0000 | [diff] [blame] | 130 | unsigned char PointerWidthInBits; |
John McCall | 3469585 | 2011-02-22 06:44:22 +0000 | [diff] [blame] | 131 | |
| 132 | /// The alignment of a pointer into the generic address space. |
| 133 | unsigned char PointerAlignInBytes; |
John McCall | 5936e33 | 2011-02-15 09:22:45 +0000 | [diff] [blame] | 134 | }; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 135 | |
| 136 | struct RREntrypoints { |
| 137 | RREntrypoints() { memset(this, 0, sizeof(*this)); } |
| 138 | /// void objc_autoreleasePoolPop(void*); |
| 139 | llvm::Constant *objc_autoreleasePoolPop; |
| 140 | |
| 141 | /// void *objc_autoreleasePoolPush(void); |
| 142 | llvm::Constant *objc_autoreleasePoolPush; |
| 143 | }; |
| 144 | |
| 145 | struct ARCEntrypoints { |
| 146 | ARCEntrypoints() { memset(this, 0, sizeof(*this)); } |
| 147 | |
| 148 | /// id objc_autorelease(id); |
| 149 | llvm::Constant *objc_autorelease; |
| 150 | |
| 151 | /// id objc_autoreleaseReturnValue(id); |
| 152 | llvm::Constant *objc_autoreleaseReturnValue; |
| 153 | |
| 154 | /// void objc_copyWeak(id *dest, id *src); |
| 155 | llvm::Constant *objc_copyWeak; |
| 156 | |
| 157 | /// void objc_destroyWeak(id*); |
| 158 | llvm::Constant *objc_destroyWeak; |
| 159 | |
| 160 | /// id objc_initWeak(id*, id); |
| 161 | llvm::Constant *objc_initWeak; |
| 162 | |
| 163 | /// id objc_loadWeak(id*); |
| 164 | llvm::Constant *objc_loadWeak; |
| 165 | |
| 166 | /// id objc_loadWeakRetained(id*); |
| 167 | llvm::Constant *objc_loadWeakRetained; |
| 168 | |
| 169 | /// void objc_moveWeak(id *dest, id *src); |
| 170 | llvm::Constant *objc_moveWeak; |
| 171 | |
| 172 | /// id objc_retain(id); |
| 173 | llvm::Constant *objc_retain; |
| 174 | |
| 175 | /// id objc_retainAutorelease(id); |
| 176 | llvm::Constant *objc_retainAutorelease; |
| 177 | |
| 178 | /// id objc_retainAutoreleaseReturnValue(id); |
| 179 | llvm::Constant *objc_retainAutoreleaseReturnValue; |
| 180 | |
| 181 | /// id objc_retainAutoreleasedReturnValue(id); |
| 182 | llvm::Constant *objc_retainAutoreleasedReturnValue; |
| 183 | |
| 184 | /// id objc_retainBlock(id); |
| 185 | llvm::Constant *objc_retainBlock; |
| 186 | |
| 187 | /// void objc_release(id); |
| 188 | llvm::Constant *objc_release; |
| 189 | |
| 190 | /// id objc_storeStrong(id*, id); |
| 191 | llvm::Constant *objc_storeStrong; |
| 192 | |
| 193 | /// id objc_storeWeak(id*, id); |
| 194 | llvm::Constant *objc_storeWeak; |
| 195 | |
| 196 | /// A void(void) inline asm to use to mark that the return value of |
| 197 | /// a call will be immediately retain. |
| 198 | llvm::InlineAsm *retainAutoreleasedReturnValueMarker; |
| 199 | }; |
Fariborz Jahanian | e0b691a | 2010-06-21 21:27:42 +0000 | [diff] [blame] | 200 | |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 201 | /// CodeGenModule - This class organizes the cross-function state that is used |
| 202 | /// while generating LLVM code. |
John McCall | 5936e33 | 2011-02-15 09:22:45 +0000 | [diff] [blame] | 203 | class CodeGenModule : public CodeGenTypeCache { |
Anders Carlsson | 8a219ce | 2009-02-24 04:21:31 +0000 | [diff] [blame] | 204 | CodeGenModule(const CodeGenModule&); // DO NOT IMPLEMENT |
| 205 | void operator=(const CodeGenModule&); // DO NOT IMPLEMENT |
| 206 | |
Chris Lattner | ca0017a | 2009-09-12 22:45:21 +0000 | [diff] [blame] | 207 | typedef std::vector<std::pair<llvm::Constant*, int> > CtorList; |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 208 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 209 | ASTContext &Context; |
Chris Lattner | 45e8cbd | 2007-11-28 05:34:05 +0000 | [diff] [blame] | 210 | const LangOptions &Features; |
Chandler Carruth | 2811ccf | 2009-11-12 17:24:48 +0000 | [diff] [blame] | 211 | const CodeGenOptions &CodeGenOpts; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 212 | llvm::Module &TheModule; |
Devang Patel | 7a4718e | 2007-10-31 20:01:01 +0000 | [diff] [blame] | 213 | const llvm::TargetData &TheTargetData; |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 214 | mutable const TargetCodeGenInfo *TheTargetCodeGenInfo; |
Chris Lattner | fb97b03 | 2007-12-02 01:40:18 +0000 | [diff] [blame] | 215 | Diagnostic &Diags; |
John McCall | f16aa10 | 2010-08-22 21:01:12 +0000 | [diff] [blame] | 216 | CGCXXABI &ABI; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 217 | CodeGenTypes Types; |
Dan Gohman | 3d5aff5 | 2010-10-14 23:06:10 +0000 | [diff] [blame] | 218 | CodeGenTBAA *TBAA; |
Anders Carlsson | b540491 | 2009-10-07 01:06:45 +0000 | [diff] [blame] | 219 | |
Anders Carlsson | af44035 | 2010-03-23 04:11:45 +0000 | [diff] [blame] | 220 | /// VTables - Holds information about C++ vtables. |
| 221 | CodeGenVTables VTables; |
Douglas Gregor | e17ad2f | 2010-04-08 16:07:47 +0000 | [diff] [blame] | 222 | friend class CodeGenVTables; |
| 223 | |
Peter Collingbourne | e926523 | 2011-07-27 20:29:46 +0000 | [diff] [blame] | 224 | CGObjCRuntime* ObjCRuntime; |
Ted Kremenek | 815c78f | 2008-08-05 18:50:11 +0000 | [diff] [blame] | 225 | CGDebugInfo* DebugInfo; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 226 | ARCEntrypoints *ARCData; |
| 227 | RREntrypoints *RRData; |
Daniel Dunbar | 9986eab | 2008-07-30 16:32:24 +0000 | [diff] [blame] | 228 | |
Rafael Espindola | 6a83670 | 2010-03-04 18:17:24 +0000 | [diff] [blame] | 229 | // WeakRefReferences - A set of references that have only been seen via |
| 230 | // a weakref so far. This is used to remove the weak of the reference if we ever |
| 231 | // see a direct reference or a definition. |
| 232 | llvm::SmallPtrSet<llvm::GlobalValue*, 10> WeakRefReferences; |
| 233 | |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 234 | /// DeferredDecls - This contains all the decls which have definitions but |
| 235 | /// which are deferred for emission and therefore should only be output if |
| 236 | /// they are actually used. If a decl is in this, then it is known to have |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 237 | /// not been referenced yet. |
| 238 | llvm::StringMap<GlobalDecl> DeferredDecls; |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 239 | |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 240 | /// DeferredDeclsToEmit - This is a list of deferred decls which we have seen |
| 241 | /// that *are* actually referenced. These get code generated when the module |
| 242 | /// is done. |
Anders Carlsson | 2a131fb | 2009-05-05 04:44:02 +0000 | [diff] [blame] | 243 | std::vector<GlobalDecl> DeferredDeclsToEmit; |
Daniel Dunbar | 03f5ad9 | 2009-04-15 22:08:45 +0000 | [diff] [blame] | 244 | |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 245 | /// LLVMUsed - List of global values which are required to be |
| 246 | /// present in the object file; bitcast to i8*. This is used for |
| 247 | /// forcing visibility of symbols which may otherwise be optimized |
| 248 | /// out. |
Chris Lattner | 35f38a2 | 2009-03-31 22:37:52 +0000 | [diff] [blame] | 249 | std::vector<llvm::WeakVH> LLVMUsed; |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 250 | |
| 251 | /// GlobalCtors - Store the list of global constructors and their respective |
| 252 | /// priorities to be emitted when the translation unit is complete. |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 253 | CtorList GlobalCtors; |
| 254 | |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 255 | /// GlobalDtors - Store the list of global destructors and their respective |
| 256 | /// priorities to be emitted when the translation unit is complete. |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 257 | CtorList GlobalDtors; |
| 258 | |
Anders Carlsson | 793a990 | 2010-06-22 16:05:32 +0000 | [diff] [blame] | 259 | /// MangledDeclNames - A map of canonical GlobalDecls to their mangled names. |
Chris Lattner | 686775d | 2011-07-20 06:58:45 +0000 | [diff] [blame] | 260 | llvm::DenseMap<GlobalDecl, StringRef> MangledDeclNames; |
Anders Carlsson | 793a990 | 2010-06-22 16:05:32 +0000 | [diff] [blame] | 261 | llvm::BumpPtrAllocator MangledNamesAllocator; |
| 262 | |
Nate Begeman | 532485c | 2008-04-18 23:43:57 +0000 | [diff] [blame] | 263 | std::vector<llvm::Constant*> Annotations; |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 264 | |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 265 | llvm::StringMap<llvm::Constant*> CFConstantStringMap; |
John McCall | a5e19c6 | 2011-08-04 01:03:22 +0000 | [diff] [blame] | 266 | llvm::StringMap<llvm::GlobalVariable*> ConstantStringMap; |
Fariborz Jahanian | 65ad5a4 | 2010-04-18 21:01:23 +0000 | [diff] [blame] | 267 | llvm::DenseMap<const Decl*, llvm::Value*> StaticLocalDeclMap; |
Daniel Dunbar | 3e9df99 | 2008-08-23 18:37:06 +0000 | [diff] [blame] | 268 | |
Daniel Dunbar | efb0fa9 | 2010-03-20 04:15:41 +0000 | [diff] [blame] | 269 | /// CXXGlobalInits - Global variables with initializers that need to run |
Anders Carlsson | 89ed31d | 2009-08-08 23:24:23 +0000 | [diff] [blame] | 270 | /// before main. |
Eli Friedman | 6c6bda3 | 2010-01-08 00:50:11 +0000 | [diff] [blame] | 271 | std::vector<llvm::Constant*> CXXGlobalInits; |
John McCall | bf40cb5 | 2010-07-15 23:40:35 +0000 | [diff] [blame] | 272 | |
| 273 | /// When a C++ decl with an initializer is deferred, null is |
| 274 | /// appended to CXXGlobalInits, and the index of that null is placed |
| 275 | /// here so that the initializer will be performed in the correct |
| 276 | /// order. |
| 277 | llvm::DenseMap<const Decl*, unsigned> DelayedCXXInitPosition; |
Fariborz Jahanian | 9f967c5 | 2010-06-21 18:45:05 +0000 | [diff] [blame] | 278 | |
| 279 | /// - Global variables with initializers whose order of initialization |
| 280 | /// is set by init_priority attribute. |
Fariborz Jahanian | e0b691a | 2010-06-21 21:27:42 +0000 | [diff] [blame] | 281 | |
Chris Lattner | 686775d | 2011-07-20 06:58:45 +0000 | [diff] [blame] | 282 | SmallVector<std::pair<OrderGlobalInits, llvm::Function*>, 8> |
Fariborz Jahanian | 9f967c5 | 2010-06-21 18:45:05 +0000 | [diff] [blame] | 283 | PrioritizedCXXGlobalInits; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 284 | |
Daniel Dunbar | efb0fa9 | 2010-03-20 04:15:41 +0000 | [diff] [blame] | 285 | /// CXXGlobalDtors - Global destructor functions and arguments that need to |
| 286 | /// run on termination. |
Chris Lattner | 810112e | 2010-06-19 05:52:45 +0000 | [diff] [blame] | 287 | std::vector<std::pair<llvm::WeakVH,llvm::Constant*> > CXXGlobalDtors; |
Daniel Dunbar | efb0fa9 | 2010-03-20 04:15:41 +0000 | [diff] [blame] | 288 | |
Douglas Gregor | 45c4ea7 | 2011-08-09 15:54:21 +0000 | [diff] [blame] | 289 | /// @name Cache for Objective-C runtime types |
| 290 | /// @{ |
| 291 | |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 292 | /// CFConstantStringClassRef - Cached reference to the class for constant |
| 293 | /// strings. This value has type int * but is actually an Obj-C class pointer. |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 294 | llvm::Constant *CFConstantStringClassRef; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 295 | |
Fariborz Jahanian | 4c73307 | 2010-10-19 17:19:29 +0000 | [diff] [blame] | 296 | /// ConstantStringClassRef - Cached reference to the class for constant |
Fariborz Jahanian | 2bb5dda | 2010-04-23 17:41:07 +0000 | [diff] [blame] | 297 | /// strings. This value has type int * but is actually an Obj-C class pointer. |
Fariborz Jahanian | 4c73307 | 2010-10-19 17:19:29 +0000 | [diff] [blame] | 298 | llvm::Constant *ConstantStringClassRef; |
Fariborz Jahanian | 2bb5dda | 2010-04-23 17:41:07 +0000 | [diff] [blame] | 299 | |
Douglas Gregor | 45c4ea7 | 2011-08-09 15:54:21 +0000 | [diff] [blame] | 300 | /// \brief The LLVM type corresponding to NSConstantString. |
| 301 | llvm::StructType *NSConstantStringType; |
| 302 | |
Douglas Gregor | 0815b57 | 2011-08-09 17:23:49 +0000 | [diff] [blame] | 303 | /// \brief The type used to describe the state of a fast enumeration in |
| 304 | /// Objective-C's for..in loop. |
| 305 | QualType ObjCFastEnumerationStateType; |
| 306 | |
Douglas Gregor | 45c4ea7 | 2011-08-09 15:54:21 +0000 | [diff] [blame] | 307 | /// @} |
| 308 | |
David Chisnall | 0d13f6f | 2010-01-23 02:40:42 +0000 | [diff] [blame] | 309 | /// Lazily create the Objective-C runtime |
| 310 | void createObjCRuntime(); |
| 311 | |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 312 | llvm::LLVMContext &VMContext; |
Daniel Dunbar | 673431a | 2010-07-16 00:00:15 +0000 | [diff] [blame] | 313 | |
| 314 | /// @name Cache for Blocks Runtime Globals |
| 315 | /// @{ |
| 316 | |
Daniel Dunbar | 754b9fb | 2010-07-16 00:00:19 +0000 | [diff] [blame] | 317 | const VarDecl *NSConcreteGlobalBlockDecl; |
| 318 | const VarDecl *NSConcreteStackBlockDecl; |
Daniel Dunbar | 673431a | 2010-07-16 00:00:15 +0000 | [diff] [blame] | 319 | llvm::Constant *NSConcreteGlobalBlock; |
| 320 | llvm::Constant *NSConcreteStackBlock; |
Daniel Dunbar | 754b9fb | 2010-07-16 00:00:19 +0000 | [diff] [blame] | 321 | |
| 322 | const FunctionDecl *BlockObjectAssignDecl; |
| 323 | const FunctionDecl *BlockObjectDisposeDecl; |
Daniel Dunbar | 673431a | 2010-07-16 00:00:15 +0000 | [diff] [blame] | 324 | llvm::Constant *BlockObjectAssign; |
| 325 | llvm::Constant *BlockObjectDispose; |
| 326 | |
Chris Lattner | 9cbe4f0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 327 | llvm::Type *BlockDescriptorType; |
| 328 | llvm::Type *GenericBlockLiteralType; |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 329 | |
| 330 | struct { |
| 331 | int GlobalUniqueCount; |
| 332 | } Block; |
| 333 | |
Daniel Dunbar | 673431a | 2010-07-16 00:00:15 +0000 | [diff] [blame] | 334 | /// @} |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 335 | public: |
Chandler Carruth | 2811ccf | 2009-11-12 17:24:48 +0000 | [diff] [blame] | 336 | CodeGenModule(ASTContext &C, const CodeGenOptions &CodeGenOpts, |
John McCall | 468ec6c | 2010-03-04 04:29:44 +0000 | [diff] [blame] | 337 | llvm::Module &M, const llvm::TargetData &TD, Diagnostic &Diags); |
Ted Kremenek | 815c78f | 2008-08-05 18:50:11 +0000 | [diff] [blame] | 338 | |
Chris Lattner | 2b94fe3 | 2008-03-01 08:45:05 +0000 | [diff] [blame] | 339 | ~CodeGenModule(); |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 340 | |
Ted Kremenek | 815c78f | 2008-08-05 18:50:11 +0000 | [diff] [blame] | 341 | /// Release - Finalize LLVM code generation. |
| 342 | void Release(); |
Daniel Dunbar | 208ff5e | 2008-08-11 18:12:00 +0000 | [diff] [blame] | 343 | |
| 344 | /// getObjCRuntime() - Return a reference to the configured |
| 345 | /// Objective-C runtime. |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 346 | CGObjCRuntime &getObjCRuntime() { |
Peter Collingbourne | e926523 | 2011-07-27 20:29:46 +0000 | [diff] [blame] | 347 | if (!ObjCRuntime) createObjCRuntime(); |
| 348 | return *ObjCRuntime; |
Daniel Dunbar | 208ff5e | 2008-08-11 18:12:00 +0000 | [diff] [blame] | 349 | } |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 350 | |
Daniel Dunbar | 208ff5e | 2008-08-11 18:12:00 +0000 | [diff] [blame] | 351 | /// hasObjCRuntime() - Return true iff an Objective-C runtime has |
| 352 | /// been configured. |
Peter Collingbourne | e926523 | 2011-07-27 20:29:46 +0000 | [diff] [blame] | 353 | bool hasObjCRuntime() { return !!ObjCRuntime; } |
Daniel Dunbar | 208ff5e | 2008-08-11 18:12:00 +0000 | [diff] [blame] | 354 | |
John McCall | f16aa10 | 2010-08-22 21:01:12 +0000 | [diff] [blame] | 355 | /// getCXXABI() - Return a reference to the configured C++ ABI. |
| 356 | CGCXXABI &getCXXABI() { return ABI; } |
Charles Davis | 3a811f1 | 2010-05-25 19:52:27 +0000 | [diff] [blame] | 357 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 358 | ARCEntrypoints &getARCEntrypoints() const { |
| 359 | assert(getLangOptions().ObjCAutoRefCount && ARCData != 0); |
| 360 | return *ARCData; |
| 361 | } |
| 362 | |
| 363 | RREntrypoints &getRREntrypoints() const { |
| 364 | assert(RRData != 0); |
| 365 | return *RRData; |
| 366 | } |
| 367 | |
Fariborz Jahanian | 63326a5 | 2010-04-19 18:15:02 +0000 | [diff] [blame] | 368 | llvm::Value *getStaticLocalDeclAddress(const VarDecl *VD) { |
Fariborz Jahanian | 65ad5a4 | 2010-04-18 21:01:23 +0000 | [diff] [blame] | 369 | return StaticLocalDeclMap[VD]; |
| 370 | } |
Fariborz Jahanian | 63326a5 | 2010-04-19 18:15:02 +0000 | [diff] [blame] | 371 | void setStaticLocalDeclAddress(const VarDecl *D, |
Fariborz Jahanian | 65ad5a4 | 2010-04-18 21:01:23 +0000 | [diff] [blame] | 372 | llvm::GlobalVariable *GV) { |
| 373 | StaticLocalDeclMap[D] = GV; |
| 374 | } |
| 375 | |
Devang Patel | aa11289 | 2011-03-07 18:45:56 +0000 | [diff] [blame] | 376 | CGDebugInfo *getModuleDebugInfo() { return DebugInfo; } |
Devang Patel | 5de7a0e | 2011-03-07 18:29:53 +0000 | [diff] [blame] | 377 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 378 | ASTContext &getContext() const { return Context; } |
Chandler Carruth | 2811ccf | 2009-11-12 17:24:48 +0000 | [diff] [blame] | 379 | const CodeGenOptions &getCodeGenOpts() const { return CodeGenOpts; } |
Chris Lattner | 45e8cbd | 2007-11-28 05:34:05 +0000 | [diff] [blame] | 380 | const LangOptions &getLangOptions() const { return Features; } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 381 | llvm::Module &getModule() const { return TheModule; } |
| 382 | CodeGenTypes &getTypes() { return Types; } |
Anders Carlsson | af44035 | 2010-03-23 04:11:45 +0000 | [diff] [blame] | 383 | CodeGenVTables &getVTables() { return VTables; } |
Chris Lattner | fb97b03 | 2007-12-02 01:40:18 +0000 | [diff] [blame] | 384 | Diagnostic &getDiags() const { return Diags; } |
Chris Lattner | 8f92528 | 2008-01-03 06:36:51 +0000 | [diff] [blame] | 385 | const llvm::TargetData &getTargetData() const { return TheTargetData; } |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 386 | const TargetInfo &getTarget() const { return Context.Target; } |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 387 | llvm::LLVMContext &getLLVMContext() { return VMContext; } |
Chris Lattner | ea04432 | 2010-07-29 02:01:43 +0000 | [diff] [blame] | 388 | const TargetCodeGenInfo &getTargetCodeGenInfo(); |
John McCall | 6374c33 | 2010-03-06 00:35:14 +0000 | [diff] [blame] | 389 | bool isTargetDarwin() const; |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 390 | |
John McCall | bc7fbf0 | 2011-02-26 08:07:02 +0000 | [diff] [blame] | 391 | bool shouldUseTBAA() const { return TBAA != 0; } |
| 392 | |
Dan Gohman | 3d5aff5 | 2010-10-14 23:06:10 +0000 | [diff] [blame] | 393 | llvm::MDNode *getTBAAInfo(QualType QTy); |
| 394 | |
| 395 | static void DecorateInstruction(llvm::Instruction *Inst, |
| 396 | llvm::MDNode *TBAAInfo); |
| 397 | |
John McCall | bc8d40d | 2011-06-24 21:55:10 +0000 | [diff] [blame] | 398 | /// getSize - Emit the given number of characters as a value of type size_t. |
| 399 | llvm::ConstantInt *getSize(CharUnits numChars); |
| 400 | |
Daniel Dunbar | 04d4078 | 2009-04-14 06:00:08 +0000 | [diff] [blame] | 401 | /// setGlobalVisibility - Set the visibility for the given LLVM |
| 402 | /// GlobalValue. |
Anders Carlsson | 0ffeaad | 2011-01-29 19:39:23 +0000 | [diff] [blame] | 403 | void setGlobalVisibility(llvm::GlobalValue *GV, const NamedDecl *D) const; |
Daniel Dunbar | 04d4078 | 2009-04-14 06:00:08 +0000 | [diff] [blame] | 404 | |
Anders Carlsson | fa2e99f | 2011-01-29 20:24:48 +0000 | [diff] [blame] | 405 | /// TypeVisibilityKind - The kind of global variable that is passed to |
| 406 | /// setTypeVisibility |
| 407 | enum TypeVisibilityKind { |
| 408 | TVK_ForVTT, |
| 409 | TVK_ForVTable, |
John McCall | bda0d6b | 2011-03-27 09:00:25 +0000 | [diff] [blame] | 410 | TVK_ForConstructionVTable, |
Anders Carlsson | fa2e99f | 2011-01-29 20:24:48 +0000 | [diff] [blame] | 411 | TVK_ForRTTI, |
| 412 | TVK_ForRTTIName |
| 413 | }; |
| 414 | |
John McCall | cbfe502 | 2010-08-04 08:34:44 +0000 | [diff] [blame] | 415 | /// setTypeVisibility - Set the visibility for the given global |
| 416 | /// value which holds information about a type. |
| 417 | void setTypeVisibility(llvm::GlobalValue *GV, const CXXRecordDecl *D, |
Anders Carlsson | fa2e99f | 2011-01-29 20:24:48 +0000 | [diff] [blame] | 418 | TypeVisibilityKind TVK) const; |
John McCall | cbfe502 | 2010-08-04 08:34:44 +0000 | [diff] [blame] | 419 | |
Anders Carlsson | c7e98fa | 2011-01-29 20:59:35 +0000 | [diff] [blame] | 420 | static llvm::GlobalValue::VisibilityTypes GetLLVMVisibility(Visibility V) { |
| 421 | switch (V) { |
| 422 | case DefaultVisibility: return llvm::GlobalValue::DefaultVisibility; |
| 423 | case HiddenVisibility: return llvm::GlobalValue::HiddenVisibility; |
| 424 | case ProtectedVisibility: return llvm::GlobalValue::ProtectedVisibility; |
| 425 | } |
| 426 | llvm_unreachable("unknown visibility!"); |
| 427 | return llvm::GlobalValue::DefaultVisibility; |
| 428 | } |
| 429 | |
John McCall | d46f985 | 2010-02-19 01:32:20 +0000 | [diff] [blame] | 430 | llvm::Constant *GetAddrOfGlobal(GlobalDecl GD) { |
| 431 | if (isa<CXXConstructorDecl>(GD.getDecl())) |
| 432 | return GetAddrOfCXXConstructor(cast<CXXConstructorDecl>(GD.getDecl()), |
| 433 | GD.getCtorType()); |
| 434 | else if (isa<CXXDestructorDecl>(GD.getDecl())) |
| 435 | return GetAddrOfCXXDestructor(cast<CXXDestructorDecl>(GD.getDecl()), |
| 436 | GD.getDtorType()); |
| 437 | else if (isa<FunctionDecl>(GD.getDecl())) |
| 438 | return GetAddrOfFunction(GD); |
| 439 | else |
| 440 | return GetAddrOfGlobalVar(cast<VarDecl>(GD.getDecl())); |
| 441 | } |
| 442 | |
Anders Carlsson | 3bd6202 | 2011-01-29 18:20:20 +0000 | [diff] [blame] | 443 | /// CreateOrReplaceCXXRuntimeVariable - Will return a global variable of the given |
| 444 | /// type. If a variable with a different type already exists then a new |
| 445 | /// variable with the right type will be created and all uses of the old |
| 446 | /// variable will be replaced with a bitcast to the new variable. |
| 447 | llvm::GlobalVariable * |
Chris Lattner | 686775d | 2011-07-20 06:58:45 +0000 | [diff] [blame] | 448 | CreateOrReplaceCXXRuntimeVariable(StringRef Name, llvm::Type *Ty, |
Anders Carlsson | 3bd6202 | 2011-01-29 18:20:20 +0000 | [diff] [blame] | 449 | llvm::GlobalValue::LinkageTypes Linkage); |
| 450 | |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 451 | /// GetAddrOfGlobalVar - Return the llvm::Constant for the address of the |
Chris Lattner | 570585c | 2009-03-21 09:16:30 +0000 | [diff] [blame] | 452 | /// given global variable. If Ty is non-null and if the global doesn't exist, |
| 453 | /// then it will be greated with the specified type instead of whatever the |
| 454 | /// normal requested type would be. |
| 455 | llvm::Constant *GetAddrOfGlobalVar(const VarDecl *D, |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 456 | llvm::Type *Ty = 0); |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 457 | |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 458 | |
Chris Lattner | 3480950 | 2009-03-21 08:53:37 +0000 | [diff] [blame] | 459 | /// GetAddrOfFunction - Return the address of the given function. If Ty is |
| 460 | /// non-null, then this function will use the specified type if it has to |
| 461 | /// create it. |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 462 | llvm::Constant *GetAddrOfFunction(GlobalDecl GD, |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 463 | llvm::Type *Ty = 0, |
Anders Carlsson | 1faa89f | 2011-02-05 04:35:53 +0000 | [diff] [blame] | 464 | bool ForVTable = false); |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 465 | |
Anders Carlsson | 1d7088d | 2009-12-17 07:09:17 +0000 | [diff] [blame] | 466 | /// GetAddrOfRTTIDescriptor - Get the address of the RTTI descriptor |
| 467 | /// for the given type. |
John McCall | 9dffe6f | 2010-04-30 01:15:21 +0000 | [diff] [blame] | 468 | llvm::Constant *GetAddrOfRTTIDescriptor(QualType Ty, bool ForEH = false); |
Anders Carlsson | 31b7f52 | 2009-12-11 02:46:30 +0000 | [diff] [blame] | 469 | |
Anders Carlsson | 19879c9 | 2010-03-23 17:17:29 +0000 | [diff] [blame] | 470 | /// GetAddrOfThunk - Get the address of the thunk for the given global decl. |
Anders Carlsson | 84c49e4 | 2011-02-06 17:15:43 +0000 | [diff] [blame] | 471 | llvm::Constant *GetAddrOfThunk(GlobalDecl GD, const ThunkInfo &Thunk); |
Anders Carlsson | 19879c9 | 2010-03-23 17:17:29 +0000 | [diff] [blame] | 472 | |
Rafael Espindola | 6a83670 | 2010-03-04 18:17:24 +0000 | [diff] [blame] | 473 | /// GetWeakRefReference - Get a reference to the target of VD. |
| 474 | llvm::Constant *GetWeakRefReference(const ValueDecl *VD); |
| 475 | |
Anders Carlsson | bb7e17b | 2010-01-31 01:36:53 +0000 | [diff] [blame] | 476 | /// GetNonVirtualBaseClassOffset - Returns the offset from a derived class to |
Anders Carlsson | e04d45e | 2010-04-24 21:27:51 +0000 | [diff] [blame] | 477 | /// a class. Returns null if the offset is 0. |
Anders Carlsson | a04efdf | 2010-04-24 21:23:59 +0000 | [diff] [blame] | 478 | llvm::Constant * |
| 479 | GetNonVirtualBaseClassOffset(const CXXRecordDecl *ClassDecl, |
John McCall | f871d0c | 2010-08-07 06:22:56 +0000 | [diff] [blame] | 480 | CastExpr::path_const_iterator PathBegin, |
| 481 | CastExpr::path_const_iterator PathEnd); |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 482 | |
John McCall | f0c11f7 | 2011-03-31 08:03:29 +0000 | [diff] [blame] | 483 | /// A pair of helper functions for a __block variable. |
| 484 | class ByrefHelpers : public llvm::FoldingSetNode { |
| 485 | public: |
| 486 | llvm::Constant *CopyHelper; |
| 487 | llvm::Constant *DisposeHelper; |
| 488 | |
| 489 | /// The alignment of the field. This is important because |
| 490 | /// different offsets to the field within the byref struct need to |
| 491 | /// have different helper functions. |
| 492 | CharUnits Alignment; |
| 493 | |
| 494 | ByrefHelpers(CharUnits alignment) : Alignment(alignment) {} |
| 495 | virtual ~ByrefHelpers(); |
| 496 | |
| 497 | void Profile(llvm::FoldingSetNodeID &id) const { |
| 498 | id.AddInteger(Alignment.getQuantity()); |
| 499 | profileImpl(id); |
| 500 | } |
| 501 | virtual void profileImpl(llvm::FoldingSetNodeID &id) const = 0; |
| 502 | |
| 503 | virtual bool needsCopy() const { return true; } |
| 504 | virtual void emitCopy(CodeGenFunction &CGF, |
| 505 | llvm::Value *dest, llvm::Value *src) = 0; |
| 506 | |
| 507 | virtual bool needsDispose() const { return true; } |
| 508 | virtual void emitDispose(CodeGenFunction &CGF, llvm::Value *field) = 0; |
| 509 | }; |
| 510 | |
| 511 | llvm::FoldingSet<ByrefHelpers> ByrefHelpersCache; |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 512 | |
John McCall | 8178df3 | 2011-02-22 22:38:33 +0000 | [diff] [blame] | 513 | /// getUniqueBlockCount - Fetches the global unique block count. |
| 514 | int getUniqueBlockCount() { return ++Block.GlobalUniqueCount; } |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 515 | |
| 516 | /// getBlockDescriptorType - Fetches the type of a generic block |
| 517 | /// descriptor. |
Chris Lattner | 9cbe4f0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 518 | llvm::Type *getBlockDescriptorType(); |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 519 | |
| 520 | /// getGenericBlockLiteralType - The type of a generic block literal. |
Chris Lattner | 9cbe4f0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 521 | llvm::Type *getGenericBlockLiteralType(); |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 522 | |
| 523 | /// GetAddrOfGlobalBlock - Gets the address of a block which |
| 524 | /// requires no captures. |
| 525 | llvm::Constant *GetAddrOfGlobalBlock(const BlockExpr *BE, const char *); |
Anders Carlsson | a04efdf | 2010-04-24 21:23:59 +0000 | [diff] [blame] | 526 | |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 527 | /// GetStringForStringLiteral - Return the appropriate bytes for a string |
| 528 | /// literal, properly padded to match the literal type. If only the address of |
| 529 | /// a constant is needed consider using GetAddrOfConstantStringLiteral. |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 530 | std::string GetStringForStringLiteral(const StringLiteral *E); |
| 531 | |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 532 | /// GetAddrOfConstantCFString - Return a pointer to a constant CFString object |
| 533 | /// for the given string. |
Steve Naroff | 8d4141f | 2009-04-01 13:55:36 +0000 | [diff] [blame] | 534 | llvm::Constant *GetAddrOfConstantCFString(const StringLiteral *Literal); |
Fariborz Jahanian | 33e982b | 2010-04-22 20:26:39 +0000 | [diff] [blame] | 535 | |
Fariborz Jahanian | 4c73307 | 2010-10-19 17:19:29 +0000 | [diff] [blame] | 536 | /// GetAddrOfConstantString - Return a pointer to a constant NSString object |
| 537 | /// for the given string. Or a user defined String object as defined via |
| 538 | /// -fconstant-string-class=class_name option. |
| 539 | llvm::Constant *GetAddrOfConstantString(const StringLiteral *Literal); |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 540 | |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 541 | /// GetAddrOfConstantStringFromLiteral - Return a pointer to a constant array |
| 542 | /// for the given string literal. |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 543 | llvm::Constant *GetAddrOfConstantStringFromLiteral(const StringLiteral *S); |
Daniel Dunbar | 1e04976 | 2008-08-10 20:25:57 +0000 | [diff] [blame] | 544 | |
Chris Lattner | eaf2bb8 | 2009-02-24 22:18:39 +0000 | [diff] [blame] | 545 | /// GetAddrOfConstantStringFromObjCEncode - Return a pointer to a constant |
| 546 | /// array for the given ObjCEncodeExpr node. |
| 547 | llvm::Constant *GetAddrOfConstantStringFromObjCEncode(const ObjCEncodeExpr *); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 548 | |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 549 | /// GetAddrOfConstantString - Returns a pointer to a character array |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 550 | /// containing the literal. This contents are exactly that of the given |
| 551 | /// string, i.e. it will not be null terminated automatically; see |
| 552 | /// GetAddrOfConstantCString. Note that whether the result is actually a |
| 553 | /// pointer to an LLVM constant depends on Feature.WriteableStrings. |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 554 | /// |
| 555 | /// The result has pointer to array type. |
Daniel Dunbar | 5fabf9d | 2008-10-17 21:56:50 +0000 | [diff] [blame] | 556 | /// |
| 557 | /// \param GlobalName If provided, the name to use for the global |
| 558 | /// (if one is created). |
Chris Lattner | 686775d | 2011-07-20 06:58:45 +0000 | [diff] [blame] | 559 | llvm::Constant *GetAddrOfConstantString(StringRef Str, |
John McCall | a5e19c6 | 2011-08-04 01:03:22 +0000 | [diff] [blame] | 560 | const char *GlobalName=0, |
| 561 | unsigned Alignment=1); |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 562 | |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 563 | /// GetAddrOfConstantCString - Returns a pointer to a character array |
| 564 | /// containing the literal and a terminating '\0' character. The result has |
| 565 | /// pointer to array type. |
Daniel Dunbar | 5fabf9d | 2008-10-17 21:56:50 +0000 | [diff] [blame] | 566 | /// |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 567 | /// \param GlobalName If provided, the name to use for the global (if one is |
| 568 | /// created). |
Daniel Dunbar | 5fabf9d | 2008-10-17 21:56:50 +0000 | [diff] [blame] | 569 | llvm::Constant *GetAddrOfConstantCString(const std::string &str, |
John McCall | a5e19c6 | 2011-08-04 01:03:22 +0000 | [diff] [blame] | 570 | const char *GlobalName=0, |
| 571 | unsigned Alignment=1); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 572 | |
Douglas Gregor | 0815b57 | 2011-08-09 17:23:49 +0000 | [diff] [blame] | 573 | /// \brief Retrieve the record type that describes the state of an |
| 574 | /// Objective-C fast enumeration loop (for..in). |
| 575 | QualType getObjCFastEnumerationStateType(); |
| 576 | |
Anders Carlsson | 363c184 | 2009-04-16 23:57:24 +0000 | [diff] [blame] | 577 | /// GetAddrOfCXXConstructor - Return the address of the constructor of the |
| 578 | /// given type. |
John McCall | 1f6f961 | 2011-03-09 08:12:35 +0000 | [diff] [blame] | 579 | llvm::GlobalValue *GetAddrOfCXXConstructor(const CXXConstructorDecl *ctor, |
| 580 | CXXCtorType ctorType, |
| 581 | const CGFunctionInfo *fnInfo = 0); |
Anders Carlsson | 27ae536 | 2009-04-17 01:58:57 +0000 | [diff] [blame] | 582 | |
| 583 | /// GetAddrOfCXXDestructor - Return the address of the constructor of the |
| 584 | /// given type. |
John McCall | 1f6f961 | 2011-03-09 08:12:35 +0000 | [diff] [blame] | 585 | llvm::GlobalValue *GetAddrOfCXXDestructor(const CXXDestructorDecl *dtor, |
| 586 | CXXDtorType dtorType, |
| 587 | const CGFunctionInfo *fnInfo = 0); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 588 | |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 589 | /// getBuiltinLibFunction - Given a builtin id for a function like |
| 590 | /// "__builtin_fabsf", return a Function* for "fabsf". |
Daniel Dunbar | 34771b5 | 2009-09-14 04:33:21 +0000 | [diff] [blame] | 591 | llvm::Value *getBuiltinLibFunction(const FunctionDecl *FD, |
| 592 | unsigned BuiltinID); |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 593 | |
Chris Lattner | 2d3ba4f | 2011-07-23 17:14:25 +0000 | [diff] [blame] | 594 | llvm::Function *getIntrinsic(unsigned IID, ArrayRef<llvm::Type*> Tys = |
| 595 | ArrayRef<llvm::Type*>()); |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 596 | |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 597 | /// EmitTopLevelDecl - Emit code for a single top level declaration. |
| 598 | void EmitTopLevelDecl(Decl *D); |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 599 | |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 600 | /// AddUsedGlobal - Add a global which should be forced to be |
| 601 | /// present in the object file; these are emitted to the llvm.used |
| 602 | /// metadata global. |
| 603 | void AddUsedGlobal(llvm::GlobalValue *GV); |
| 604 | |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 605 | void AddAnnotation(llvm::Constant *C) { Annotations.push_back(C); } |
| 606 | |
Daniel Dunbar | efb0fa9 | 2010-03-20 04:15:41 +0000 | [diff] [blame] | 607 | /// AddCXXDtorEntry - Add a destructor and object to add to the C++ global |
| 608 | /// destructor function. |
Chris Lattner | 810112e | 2010-06-19 05:52:45 +0000 | [diff] [blame] | 609 | void AddCXXDtorEntry(llvm::Constant *DtorFn, llvm::Constant *Object) { |
| 610 | CXXGlobalDtors.push_back(std::make_pair(DtorFn, Object)); |
| 611 | } |
Daniel Dunbar | efb0fa9 | 2010-03-20 04:15:41 +0000 | [diff] [blame] | 612 | |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 613 | /// CreateRuntimeFunction - Create a new runtime function with the specified |
| 614 | /// type and name. |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 615 | llvm::Constant *CreateRuntimeFunction(llvm::FunctionType *Ty, |
Chris Lattner | 686775d | 2011-07-20 06:58:45 +0000 | [diff] [blame] | 616 | StringRef Name, |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 617 | llvm::Attributes ExtraAttrs = |
| 618 | llvm::Attribute::None); |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 619 | /// CreateRuntimeVariable - Create a new runtime global variable with the |
| 620 | /// specified type and name. |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 621 | llvm::Constant *CreateRuntimeVariable(llvm::Type *Ty, |
Chris Lattner | 686775d | 2011-07-20 06:58:45 +0000 | [diff] [blame] | 622 | StringRef Name); |
Daniel Dunbar | f1968f2 | 2008-10-01 00:49:24 +0000 | [diff] [blame] | 623 | |
Daniel Dunbar | 673431a | 2010-07-16 00:00:15 +0000 | [diff] [blame] | 624 | ///@name Custom Blocks Runtime Interfaces |
| 625 | ///@{ |
| 626 | |
| 627 | llvm::Constant *getNSConcreteGlobalBlock(); |
| 628 | llvm::Constant *getNSConcreteStackBlock(); |
| 629 | llvm::Constant *getBlockObjectAssign(); |
| 630 | llvm::Constant *getBlockObjectDispose(); |
| 631 | |
| 632 | ///@} |
| 633 | |
Devang Patel | e80d567 | 2011-03-23 16:29:39 +0000 | [diff] [blame] | 634 | // UpdateCompleteType - Make sure that this type is translated. |
| 635 | void UpdateCompletedType(const TagDecl *TD); |
Daniel Dunbar | d60f2fb | 2009-02-17 18:43:32 +0000 | [diff] [blame] | 636 | |
John McCall | 5808ce4 | 2011-02-03 08:15:49 +0000 | [diff] [blame] | 637 | llvm::Constant *getMemberPointerConstant(const UnaryOperator *e); |
| 638 | |
Daniel Dunbar | d60f2fb | 2009-02-17 18:43:32 +0000 | [diff] [blame] | 639 | /// EmitConstantExpr - Try to emit the given expression as a |
| 640 | /// constant; returns 0 if the expression cannot be emitted as a |
| 641 | /// constant. |
Anders Carlsson | e9352cc | 2009-04-08 04:48:15 +0000 | [diff] [blame] | 642 | llvm::Constant *EmitConstantExpr(const Expr *E, QualType DestType, |
| 643 | CodeGenFunction *CGF = 0); |
Daniel Dunbar | d60f2fb | 2009-02-17 18:43:32 +0000 | [diff] [blame] | 644 | |
Eli Friedman | 0f59312 | 2009-04-13 21:47:26 +0000 | [diff] [blame] | 645 | /// EmitNullConstant - Return the result of value-initializing the given |
| 646 | /// type, i.e. a null expression of the given type. This is usually, |
| 647 | /// but not always, an LLVM null constant. |
| 648 | llvm::Constant *EmitNullConstant(QualType T); |
| 649 | |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 650 | llvm::Constant *EmitAnnotateAttr(llvm::GlobalValue *GV, |
| 651 | const AnnotateAttr *AA, unsigned LineNo); |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 652 | |
John McCall | 3209669 | 2011-03-18 02:56:14 +0000 | [diff] [blame] | 653 | /// Error - Emit a general error that something can't be done. |
Chris Lattner | 686775d | 2011-07-20 06:58:45 +0000 | [diff] [blame] | 654 | void Error(SourceLocation loc, StringRef error); |
John McCall | 3209669 | 2011-03-18 02:56:14 +0000 | [diff] [blame] | 655 | |
Daniel Dunbar | 488e993 | 2008-08-16 00:56:44 +0000 | [diff] [blame] | 656 | /// ErrorUnsupported - Print out an error that codegen doesn't support the |
Daniel Dunbar | 90df4b6 | 2008-09-04 03:43:08 +0000 | [diff] [blame] | 657 | /// specified stmt yet. |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 658 | /// \param OmitOnError - If true, then this error should only be emitted if no |
| 659 | /// other errors have been reported. |
| 660 | void ErrorUnsupported(const Stmt *S, const char *Type, |
Daniel Dunbar | 90df4b6 | 2008-09-04 03:43:08 +0000 | [diff] [blame] | 661 | bool OmitOnError=false); |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 662 | |
Daniel Dunbar | 488e993 | 2008-08-16 00:56:44 +0000 | [diff] [blame] | 663 | /// ErrorUnsupported - Print out an error that codegen doesn't support the |
Chris Lattner | c6fdc34 | 2008-01-12 07:05:38 +0000 | [diff] [blame] | 664 | /// specified decl yet. |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 665 | /// \param OmitOnError - If true, then this error should only be emitted if no |
| 666 | /// other errors have been reported. |
Daniel Dunbar | 90df4b6 | 2008-09-04 03:43:08 +0000 | [diff] [blame] | 667 | void ErrorUnsupported(const Decl *D, const char *Type, |
| 668 | bool OmitOnError=false); |
Dan Gohman | 4f8d123 | 2008-05-22 00:50:06 +0000 | [diff] [blame] | 669 | |
Daniel Dunbar | 0e4f40e | 2009-04-17 00:48:04 +0000 | [diff] [blame] | 670 | /// SetInternalFunctionAttributes - Set the attributes on the LLVM |
| 671 | /// function for the given decl and function info. This applies |
| 672 | /// attributes necessary for handling the ABI as well as user |
| 673 | /// specified attributes like section. |
| 674 | void SetInternalFunctionAttributes(const Decl *D, llvm::Function *F, |
| 675 | const CGFunctionInfo &FI); |
Daniel Dunbar | f80519b | 2008-09-04 23:41:35 +0000 | [diff] [blame] | 676 | |
Daniel Dunbar | 7dbd819 | 2009-04-14 07:08:30 +0000 | [diff] [blame] | 677 | /// SetLLVMFunctionAttributes - Set the LLVM function attributes |
| 678 | /// (sext, zext, etc). |
| 679 | void SetLLVMFunctionAttributes(const Decl *D, |
| 680 | const CGFunctionInfo &Info, |
| 681 | llvm::Function *F); |
Daniel Dunbar | b768807 | 2008-09-10 00:41:16 +0000 | [diff] [blame] | 682 | |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 683 | /// SetLLVMFunctionAttributesForDefinition - Set the LLVM function attributes |
| 684 | /// which only apply to a function definintion. |
| 685 | void SetLLVMFunctionAttributesForDefinition(const Decl *D, llvm::Function *F); |
| 686 | |
Daniel Dunbar | dacf9dd | 2010-07-14 23:39:36 +0000 | [diff] [blame] | 687 | /// ReturnTypeUsesSRet - Return true iff the given type uses 'sret' when used |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 688 | /// as a return type. |
Daniel Dunbar | dacf9dd | 2010-07-14 23:39:36 +0000 | [diff] [blame] | 689 | bool ReturnTypeUsesSRet(const CGFunctionInfo &FI); |
| 690 | |
| 691 | /// ReturnTypeUsesSret - Return true iff the given type uses 'fpret' when used |
| 692 | /// as a return type. |
| 693 | bool ReturnTypeUsesFPRet(QualType ResultType); |
Daniel Dunbar | b768807 | 2008-09-10 00:41:16 +0000 | [diff] [blame] | 694 | |
Daniel Dunbar | ca6408c | 2009-09-12 00:59:20 +0000 | [diff] [blame] | 695 | /// ConstructAttributeList - Get the LLVM attributes and calling convention to |
| 696 | /// use for a particular function type. |
| 697 | /// |
| 698 | /// \param Info - The function type information. |
| 699 | /// \param TargetDecl - The decl these attributes are being constructed |
| 700 | /// for. If supplied the attributes applied to this decl may contribute to the |
| 701 | /// function attributes and calling convention. |
| 702 | /// \param PAL [out] - On return, the attribute list to use. |
| 703 | /// \param CallingConv [out] - On return, the LLVM calling convention to use. |
Daniel Dunbar | 88b5396 | 2009-02-02 22:03:45 +0000 | [diff] [blame] | 704 | void ConstructAttributeList(const CGFunctionInfo &Info, |
| 705 | const Decl *TargetDecl, |
Daniel Dunbar | ca6408c | 2009-09-12 00:59:20 +0000 | [diff] [blame] | 706 | AttributeListType &PAL, |
| 707 | unsigned &CallingConv); |
Daniel Dunbar | b768807 | 2008-09-10 00:41:16 +0000 | [diff] [blame] | 708 | |
Chris Lattner | 686775d | 2011-07-20 06:58:45 +0000 | [diff] [blame] | 709 | StringRef getMangledName(GlobalDecl GD); |
Peter Collingbourne | 1411047 | 2011-01-13 18:57:25 +0000 | [diff] [blame] | 710 | void getBlockMangledName(GlobalDecl GD, MangleBuffer &Buffer, |
| 711 | const BlockDecl *BD); |
Douglas Gregor | b6c8c8b | 2009-04-21 17:11:58 +0000 | [diff] [blame] | 712 | |
| 713 | void EmitTentativeDefinition(const VarDecl *D); |
Mike Stump | f121677 | 2009-07-31 18:25:34 +0000 | [diff] [blame] | 714 | |
Douglas Gregor | 6fb745b | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 715 | void EmitVTable(CXXRecordDecl *Class, bool DefinitionRequired); |
| 716 | |
John McCall | d46f985 | 2010-02-19 01:32:20 +0000 | [diff] [blame] | 717 | llvm::GlobalVariable::LinkageTypes |
| 718 | getFunctionLinkage(const FunctionDecl *FD); |
| 719 | |
John McCall | 8b24233 | 2010-05-25 04:30:21 +0000 | [diff] [blame] | 720 | void setFunctionLinkage(const FunctionDecl *FD, llvm::GlobalValue *V) { |
| 721 | V->setLinkage(getFunctionLinkage(FD)); |
| 722 | } |
| 723 | |
Anders Carlsson | 046c294 | 2010-04-17 20:15:18 +0000 | [diff] [blame] | 724 | /// getVTableLinkage - Return the appropriate linkage for the vtable, VTT, |
Douglas Gregor | 4b0f21c | 2010-01-06 20:27:16 +0000 | [diff] [blame] | 725 | /// and type information of the given class. |
Anders Carlsson | 3a717f7 | 2011-01-24 02:04:33 +0000 | [diff] [blame] | 726 | llvm::GlobalVariable::LinkageTypes getVTableLinkage(const CXXRecordDecl *RD); |
Ken Dyck | 687cc4a | 2010-01-26 13:48:07 +0000 | [diff] [blame] | 727 | |
| 728 | /// GetTargetTypeStoreSize - Return the store size, in character units, of |
| 729 | /// the given LLVM type. |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 730 | CharUnits GetTargetTypeStoreSize(llvm::Type *Ty) const; |
Fariborz Jahanian | 354e712 | 2010-10-27 16:21:54 +0000 | [diff] [blame] | 731 | |
| 732 | /// GetLLVMLinkageVarDefinition - Returns LLVM linkage for a global |
| 733 | /// variable. |
| 734 | llvm::GlobalValue::LinkageTypes |
| 735 | GetLLVMLinkageVarDefinition(const VarDecl *D, |
| 736 | llvm::GlobalVariable *GV); |
| 737 | |
Anders Carlsson | 046c294 | 2010-04-17 20:15:18 +0000 | [diff] [blame] | 738 | std::vector<const CXXRecordDecl*> DeferredVTables; |
Rafael Espindola | bbf58bb | 2010-03-10 02:19:29 +0000 | [diff] [blame] | 739 | |
Chris Lattner | 9cd4fe4 | 2007-12-02 07:09:19 +0000 | [diff] [blame] | 740 | private: |
Chris Lattner | 686775d | 2011-07-20 06:58:45 +0000 | [diff] [blame] | 741 | llvm::GlobalValue *GetGlobalValue(StringRef Ref); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 742 | |
Chris Lattner | 686775d | 2011-07-20 06:58:45 +0000 | [diff] [blame] | 743 | llvm::Constant *GetOrCreateLLVMFunction(StringRef MangledName, |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 744 | llvm::Type *Ty, |
Anders Carlsson | 1faa89f | 2011-02-05 04:35:53 +0000 | [diff] [blame] | 745 | GlobalDecl D, |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 746 | bool ForVTable, |
| 747 | llvm::Attributes ExtraAttrs = |
| 748 | llvm::Attribute::None); |
Chris Lattner | 686775d | 2011-07-20 06:58:45 +0000 | [diff] [blame] | 749 | llvm::Constant *GetOrCreateLLVMGlobal(StringRef MangledName, |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 750 | llvm::PointerType *PTy, |
Rafael Espindola | c532b50 | 2011-01-18 21:07:57 +0000 | [diff] [blame] | 751 | const VarDecl *D, |
| 752 | bool UnnamedAddr = false); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 753 | |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 754 | /// SetCommonAttributes - Set attributes which are common to any |
| 755 | /// form of a global definition (alias, Objective-C method, |
| 756 | /// function, global variable). |
Daniel Dunbar | 7dbd819 | 2009-04-14 07:08:30 +0000 | [diff] [blame] | 757 | /// |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 758 | /// NOTE: This should only be called for definitions. |
| 759 | void SetCommonAttributes(const Decl *D, llvm::GlobalValue *GV); |
Daniel Dunbar | f80519b | 2008-09-04 23:41:35 +0000 | [diff] [blame] | 760 | |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 761 | /// SetFunctionDefinitionAttributes - Set attributes for a global definition. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 762 | void SetFunctionDefinitionAttributes(const FunctionDecl *D, |
Eli Friedman | c6c14d1 | 2009-05-26 01:22:57 +0000 | [diff] [blame] | 763 | llvm::GlobalValue *GV); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 764 | |
Daniel Dunbar | 7dbd819 | 2009-04-14 07:08:30 +0000 | [diff] [blame] | 765 | /// SetFunctionAttributes - Set function attributes for a function |
| 766 | /// declaration. |
Anders Carlsson | b2bcf1c | 2010-02-06 02:44:09 +0000 | [diff] [blame] | 767 | void SetFunctionAttributes(GlobalDecl GD, |
Eli Friedman | c6c14d1 | 2009-05-26 01:22:57 +0000 | [diff] [blame] | 768 | llvm::Function *F, |
| 769 | bool IsIncompleteFunction); |
Nuno Lopes | d4cbda6 | 2008-06-08 15:45:52 +0000 | [diff] [blame] | 770 | |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 771 | /// EmitGlobal - Emit code for a singal global function or var decl. Forward |
| 772 | /// declarations are emitted lazily. |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 773 | void EmitGlobal(GlobalDecl D); |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 774 | |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 775 | void EmitGlobalDefinition(GlobalDecl D); |
Daniel Dunbar | d5d3180 | 2009-02-19 07:15:39 +0000 | [diff] [blame] | 776 | |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 777 | void EmitGlobalFunctionDefinition(GlobalDecl GD); |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 778 | void EmitGlobalVarDefinition(const VarDecl *D); |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 779 | void EmitAliasDefinition(GlobalDecl GD); |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 780 | void EmitObjCPropertyImplementations(const ObjCImplementationDecl *D); |
Fariborz Jahanian | 109dfc6 | 2010-04-28 21:28:56 +0000 | [diff] [blame] | 781 | void EmitObjCIvarInitializations(ObjCImplementationDecl *D); |
Fariborz Jahanian | 354e712 | 2010-10-27 16:21:54 +0000 | [diff] [blame] | 782 | |
Anders Carlsson | 95d4e5d | 2009-04-15 15:55:24 +0000 | [diff] [blame] | 783 | // C++ related functions. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 784 | |
John McCall | d46f985 | 2010-02-19 01:32:20 +0000 | [diff] [blame] | 785 | bool TryEmitDefinitionAsAlias(GlobalDecl Alias, GlobalDecl Target); |
John McCall | c0bf462 | 2010-02-23 00:48:20 +0000 | [diff] [blame] | 786 | bool TryEmitBaseDestructorAsAlias(const CXXDestructorDecl *D); |
John McCall | d46f985 | 2010-02-19 01:32:20 +0000 | [diff] [blame] | 787 | |
Anders Carlsson | 984e068 | 2009-04-01 00:58:25 +0000 | [diff] [blame] | 788 | void EmitNamespace(const NamespaceDecl *D); |
Anders Carlsson | 91e20dd | 2009-04-02 05:55:18 +0000 | [diff] [blame] | 789 | void EmitLinkageSpec(const LinkageSpecDecl *D); |
Anders Carlsson | 95d4e5d | 2009-04-15 15:55:24 +0000 | [diff] [blame] | 790 | |
| 791 | /// EmitCXXConstructors - Emit constructors (base, complete) from a |
| 792 | /// C++ constructor Decl. |
| 793 | void EmitCXXConstructors(const CXXConstructorDecl *D); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 794 | |
Anders Carlsson | 95d4e5d | 2009-04-15 15:55:24 +0000 | [diff] [blame] | 795 | /// EmitCXXConstructor - Emit a single constructor with the given type from |
| 796 | /// a C++ constructor Decl. |
| 797 | void EmitCXXConstructor(const CXXConstructorDecl *D, CXXCtorType Type); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 798 | |
| 799 | /// EmitCXXDestructors - Emit destructors (base, complete) from a |
Anders Carlsson | 27ae536 | 2009-04-17 01:58:57 +0000 | [diff] [blame] | 800 | /// C++ destructor Decl. |
| 801 | void EmitCXXDestructors(const CXXDestructorDecl *D); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 802 | |
Anders Carlsson | 27ae536 | 2009-04-17 01:58:57 +0000 | [diff] [blame] | 803 | /// EmitCXXDestructor - Emit a single destructor with the given type from |
| 804 | /// a C++ destructor Decl. |
| 805 | void EmitCXXDestructor(const CXXDestructorDecl *D, CXXDtorType Type); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 806 | |
Daniel Dunbar | efb0fa9 | 2010-03-20 04:15:41 +0000 | [diff] [blame] | 807 | /// EmitCXXGlobalInitFunc - Emit the function that initializes C++ globals. |
Anders Carlsson | 89ed31d | 2009-08-08 23:24:23 +0000 | [diff] [blame] | 808 | void EmitCXXGlobalInitFunc(); |
Eli Friedman | 6c6bda3 | 2010-01-08 00:50:11 +0000 | [diff] [blame] | 809 | |
Daniel Dunbar | efb0fa9 | 2010-03-20 04:15:41 +0000 | [diff] [blame] | 810 | /// EmitCXXGlobalDtorFunc - Emit the function that destroys C++ globals. |
| 811 | void EmitCXXGlobalDtorFunc(); |
| 812 | |
John McCall | 3030eb8 | 2010-11-06 09:44:32 +0000 | [diff] [blame] | 813 | void EmitCXXGlobalVarDeclInitFunc(const VarDecl *D, |
| 814 | llvm::GlobalVariable *Addr); |
Eli Friedman | 6c6bda3 | 2010-01-08 00:50:11 +0000 | [diff] [blame] | 815 | |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 816 | // FIXME: Hardcoding priority here is gross. |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 817 | void AddGlobalCtor(llvm::Function *Ctor, int Priority=65535); |
| 818 | void AddGlobalDtor(llvm::Function *Dtor, int Priority=65535); |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 819 | |
Mike Stump | ecc90e9 | 2009-02-13 19:12:34 +0000 | [diff] [blame] | 820 | /// EmitCtorList - Generates a global array of functions and priorities using |
| 821 | /// the given list and name. This array will have appending linkage and is |
| 822 | /// suitable for use as a LLVM constructor or destructor array. |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 823 | void EmitCtorList(const CtorList &Fns, const char *GlobalName); |
| 824 | |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 825 | void EmitAnnotations(void); |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 826 | |
Rafael Espindola | d1a5c31 | 2010-03-27 02:52:14 +0000 | [diff] [blame] | 827 | /// EmitFundamentalRTTIDescriptor - Emit the RTTI descriptors for the |
| 828 | /// given type. |
| 829 | void EmitFundamentalRTTIDescriptor(QualType Type); |
| 830 | |
| 831 | /// EmitFundamentalRTTIDescriptors - Emit the RTTI descriptors for the |
| 832 | /// builtin types. |
| 833 | void EmitFundamentalRTTIDescriptors(); |
| 834 | |
Daniel Dunbar | 4274581 | 2009-03-09 23:53:08 +0000 | [diff] [blame] | 835 | /// EmitDeferred - Emit any needed decls for which code generation |
| 836 | /// was deferred. |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 837 | void EmitDeferred(void); |
| 838 | |
Daniel Dunbar | 4274581 | 2009-03-09 23:53:08 +0000 | [diff] [blame] | 839 | /// EmitLLVMUsed - Emit the llvm.used metadata used to force |
| 840 | /// references to global which may otherwise be optimized out. |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 841 | void EmitLLVMUsed(void); |
Daniel Dunbar | f1968f2 | 2008-10-01 00:49:24 +0000 | [diff] [blame] | 842 | |
John McCall | 744016d | 2010-07-06 23:57:41 +0000 | [diff] [blame] | 843 | void EmitDeclMetadata(); |
| 844 | |
Nick Lewycky | 3dc0541 | 2011-05-05 00:08:20 +0000 | [diff] [blame] | 845 | /// EmitCoverageFile - Emit the llvm.gcov metadata used to tell LLVM where |
Nick Lewycky | 5ea4f44 | 2011-05-04 20:46:58 +0000 | [diff] [blame] | 846 | /// to emit the .gcno and .gcda files in a way that persists in .bc files. |
Nick Lewycky | 3dc0541 | 2011-05-05 00:08:20 +0000 | [diff] [blame] | 847 | void EmitCoverageFile(); |
Nick Lewycky | 5ea4f44 | 2011-05-04 20:46:58 +0000 | [diff] [blame] | 848 | |
Daniel Dunbar | 4274581 | 2009-03-09 23:53:08 +0000 | [diff] [blame] | 849 | /// MayDeferGeneration - Determine if the given decl can be emitted |
| 850 | /// lazily; this is only relevant for definitions. The given decl |
| 851 | /// must be either a function or var decl. |
Daniel Dunbar | 73241df | 2009-02-13 21:18:01 +0000 | [diff] [blame] | 852 | bool MayDeferGeneration(const ValueDecl *D); |
John McCall | b259383 | 2010-09-16 06:16:50 +0000 | [diff] [blame] | 853 | |
| 854 | /// SimplifyPersonality - Check whether we can use a "simpler", more |
| 855 | /// core exceptions personality function. |
| 856 | void SimplifyPersonality(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 857 | }; |
| 858 | } // end namespace CodeGen |
| 859 | } // end namespace clang |
| 860 | |
| 861 | #endif |