Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===--- CodeGenModule.cpp - Emit LLVM Code from ASTs for a Module --------===// |
| 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 | // |
| 10 | // This coordinates the per-module state used while generating code. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "CodeGenModule.h" |
Chris Lattner | bd36064 | 2009-03-26 05:00:52 +0000 | [diff] [blame] | 15 | #include "CGDebugInfo.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 16 | #include "CodeGenFunction.h" |
Dan Gohman | 3d5aff5 | 2010-10-14 23:06:10 +0000 | [diff] [blame] | 17 | #include "CodeGenTBAA.h" |
Daniel Dunbar | 0dbe227 | 2008-09-08 21:33:45 +0000 | [diff] [blame] | 18 | #include "CGCall.h" |
Peter Collingbourne | 6c0aa5f | 2011-10-06 18:29:37 +0000 | [diff] [blame] | 19 | #include "CGCUDARuntime.h" |
John McCall | 4c40d98 | 2010-08-31 07:33:07 +0000 | [diff] [blame] | 20 | #include "CGCXXABI.h" |
Daniel Dunbar | af2f62c | 2008-08-13 00:59:25 +0000 | [diff] [blame] | 21 | #include "CGObjCRuntime.h" |
Peter Collingbourne | 8c25fc5 | 2011-09-19 21:14:35 +0000 | [diff] [blame] | 22 | #include "CGOpenCLRuntime.h" |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 23 | #include "TargetInfo.h" |
Chandler Carruth | 06057ce | 2010-06-15 23:19:56 +0000 | [diff] [blame] | 24 | #include "clang/Frontend/CodeGenOptions.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 25 | #include "clang/AST/ASTContext.h" |
Ken Dyck | 687cc4a | 2010-01-26 13:48:07 +0000 | [diff] [blame] | 26 | #include "clang/AST/CharUnits.h" |
Daniel Dunbar | c4a1dea | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 27 | #include "clang/AST/DeclObjC.h" |
Chris Lattner | 21ef7ae | 2008-11-04 16:51:42 +0000 | [diff] [blame] | 28 | #include "clang/AST/DeclCXX.h" |
Douglas Gregor | af89689 | 2010-06-21 18:41:26 +0000 | [diff] [blame] | 29 | #include "clang/AST/DeclTemplate.h" |
Peter Collingbourne | 1411047 | 2011-01-13 18:57:25 +0000 | [diff] [blame] | 30 | #include "clang/AST/Mangle.h" |
Anders Carlsson | 1a5e0d7 | 2009-11-30 23:41:22 +0000 | [diff] [blame] | 31 | #include "clang/AST/RecordLayout.h" |
Rafael Espindola | a411d2f | 2011-10-26 20:41:06 +0000 | [diff] [blame] | 32 | #include "clang/AST/RecursiveASTVisitor.h" |
Rafael Espindola | bcf6b98 | 2011-12-19 14:41:01 +0000 | [diff] [blame] | 33 | #include "clang/Basic/Builtins.h" |
Chris Lattner | 2c8569d | 2007-12-02 07:19:18 +0000 | [diff] [blame] | 34 | #include "clang/Basic/Diagnostic.h" |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 35 | #include "clang/Basic/SourceManager.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 36 | #include "clang/Basic/TargetInfo.h" |
Steve Naroff | e9b7d8a | 2009-04-01 15:50:34 +0000 | [diff] [blame] | 37 | #include "clang/Basic/ConvertUTF.h" |
Nate Begeman | ec9426c | 2008-03-09 03:09:36 +0000 | [diff] [blame] | 38 | #include "llvm/CallingConv.h" |
Chris Lattner | bef20ac | 2007-08-31 04:31:45 +0000 | [diff] [blame] | 39 | #include "llvm/Module.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 40 | #include "llvm/Intrinsics.h" |
Chris Lattner | d5b8902 | 2009-12-28 21:44:41 +0000 | [diff] [blame] | 41 | #include "llvm/LLVMContext.h" |
John McCall | 6374c33 | 2010-03-06 00:35:14 +0000 | [diff] [blame] | 42 | #include "llvm/ADT/Triple.h" |
Rafael Espindola | c4850c2 | 2011-02-10 23:59:36 +0000 | [diff] [blame] | 43 | #include "llvm/Target/Mangler.h" |
Anton Korobeynikov | 20ff310 | 2008-06-01 14:13:53 +0000 | [diff] [blame] | 44 | #include "llvm/Target/TargetData.h" |
Gabor Greif | 6ba728d | 2010-04-10 02:56:12 +0000 | [diff] [blame] | 45 | #include "llvm/Support/CallSite.h" |
Chris Lattner | 78f7ece | 2009-11-07 09:22:46 +0000 | [diff] [blame] | 46 | #include "llvm/Support/ErrorHandling.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 47 | using namespace clang; |
| 48 | using namespace CodeGen; |
| 49 | |
Julien Lerouge | 77f68bb | 2011-09-09 22:41:49 +0000 | [diff] [blame] | 50 | static const char AnnotationSection[] = "llvm.metadata"; |
| 51 | |
John McCall | f16aa10 | 2010-08-22 21:01:12 +0000 | [diff] [blame] | 52 | static CGCXXABI &createCXXABI(CodeGenModule &CGM) { |
Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 53 | switch (CGM.getContext().getTargetInfo().getCXXABI()) { |
John McCall | f16aa10 | 2010-08-22 21:01:12 +0000 | [diff] [blame] | 54 | case CXXABI_ARM: return *CreateARMCXXABI(CGM); |
| 55 | case CXXABI_Itanium: return *CreateItaniumCXXABI(CGM); |
| 56 | case CXXABI_Microsoft: return *CreateMicrosoftCXXABI(CGM); |
| 57 | } |
| 58 | |
| 59 | llvm_unreachable("invalid C++ ABI kind"); |
| 60 | return *CreateItaniumCXXABI(CGM); |
| 61 | } |
| 62 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 63 | |
Chandler Carruth | 2811ccf | 2009-11-12 17:24:48 +0000 | [diff] [blame] | 64 | CodeGenModule::CodeGenModule(ASTContext &C, const CodeGenOptions &CGO, |
John McCall | 468ec6c | 2010-03-04 04:29:44 +0000 | [diff] [blame] | 65 | llvm::Module &M, const llvm::TargetData &TD, |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 66 | DiagnosticsEngine &diags) |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 67 | : Context(C), Features(C.getLangOptions()), CodeGenOpts(CGO), TheModule(M), |
John McCall | 468ec6c | 2010-03-04 04:29:44 +0000 | [diff] [blame] | 68 | TheTargetData(TD), TheTargetCodeGenInfo(0), Diags(diags), |
John McCall | f16aa10 | 2010-08-22 21:01:12 +0000 | [diff] [blame] | 69 | ABI(createCXXABI(*this)), |
Daniel Dunbar | 08d4792 | 2011-06-21 18:54:39 +0000 | [diff] [blame] | 70 | Types(C, M, TD, getTargetCodeGenInfo().getABIInfo(), ABI, CGO), |
Dan Gohman | 3d5aff5 | 2010-10-14 23:06:10 +0000 | [diff] [blame] | 71 | TBAA(0), |
Peter Collingbourne | 6c0aa5f | 2011-10-06 18:29:37 +0000 | [diff] [blame] | 72 | VTables(*this), ObjCRuntime(0), OpenCLRuntime(0), CUDARuntime(0), |
| 73 | DebugInfo(0), ARCData(0), RRData(0), CFConstantStringClassRef(0), |
| 74 | ConstantStringClassRef(0), NSConstantStringType(0), |
Daniel Dunbar | 673431a | 2010-07-16 00:00:15 +0000 | [diff] [blame] | 75 | VMContext(M.getContext()), |
| 76 | NSConcreteGlobalBlock(0), NSConcreteStackBlock(0), |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 77 | BlockObjectAssign(0), BlockObjectDispose(0), |
| 78 | BlockDescriptorType(0), GenericBlockLiteralType(0) { |
David Chisnall | 60be607 | 2011-03-22 21:21:24 +0000 | [diff] [blame] | 79 | if (Features.ObjC1) |
Peter Collingbourne | 8c25fc5 | 2011-09-19 21:14:35 +0000 | [diff] [blame] | 80 | createObjCRuntime(); |
| 81 | if (Features.OpenCL) |
| 82 | createOpenCLRuntime(); |
Peter Collingbourne | 6c0aa5f | 2011-10-06 18:29:37 +0000 | [diff] [blame] | 83 | if (Features.CUDA) |
| 84 | createCUDARuntime(); |
Sanjiv Gupta | e8b9f5b | 2008-05-08 08:54:20 +0000 | [diff] [blame] | 85 | |
Dan Gohman | 3d5aff5 | 2010-10-14 23:06:10 +0000 | [diff] [blame] | 86 | // Enable TBAA unless it's suppressed. |
| 87 | if (!CodeGenOpts.RelaxedAliasing && CodeGenOpts.OptimizationLevel > 0) |
Dan Gohman | 0b5c4fc | 2010-10-15 20:23:12 +0000 | [diff] [blame] | 88 | TBAA = new CodeGenTBAA(Context, VMContext, getLangOptions(), |
| 89 | ABI.getMangleContext()); |
Dan Gohman | 3d5aff5 | 2010-10-14 23:06:10 +0000 | [diff] [blame] | 90 | |
Nick Lewycky | e8ba8d7 | 2011-04-21 23:44:07 +0000 | [diff] [blame] | 91 | // If debug info or coverage generation is enabled, create the CGDebugInfo |
| 92 | // object. |
| 93 | if (CodeGenOpts.DebugInfo || CodeGenOpts.EmitGcovArcs || |
| 94 | CodeGenOpts.EmitGcovNotes) |
| 95 | DebugInfo = new CGDebugInfo(*this); |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 96 | |
| 97 | Block.GlobalUniqueCount = 0; |
John McCall | 5936e33 | 2011-02-15 09:22:45 +0000 | [diff] [blame] | 98 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 99 | if (C.getLangOptions().ObjCAutoRefCount) |
| 100 | ARCData = new ARCEntrypoints(); |
| 101 | RRData = new RREntrypoints(); |
| 102 | |
John McCall | 5936e33 | 2011-02-15 09:22:45 +0000 | [diff] [blame] | 103 | // Initialize the type cache. |
| 104 | llvm::LLVMContext &LLVMContext = M.getContext(); |
John McCall | 0774cb8 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 105 | VoidTy = llvm::Type::getVoidTy(LLVMContext); |
| 106 | Int8Ty = llvm::Type::getInt8Ty(LLVMContext); |
| 107 | Int32Ty = llvm::Type::getInt32Ty(LLVMContext); |
| 108 | Int64Ty = llvm::Type::getInt64Ty(LLVMContext); |
Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 109 | PointerWidthInBits = C.getTargetInfo().getPointerWidth(0); |
John McCall | 3469585 | 2011-02-22 06:44:22 +0000 | [diff] [blame] | 110 | PointerAlignInBytes = |
Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 111 | C.toCharUnitsFromBits(C.getTargetInfo().getPointerAlign(0)).getQuantity(); |
| 112 | IntTy = llvm::IntegerType::get(LLVMContext, C.getTargetInfo().getIntWidth()); |
John McCall | 5936e33 | 2011-02-15 09:22:45 +0000 | [diff] [blame] | 113 | IntPtrTy = llvm::IntegerType::get(LLVMContext, PointerWidthInBits); |
| 114 | Int8PtrTy = Int8Ty->getPointerTo(0); |
| 115 | Int8PtrPtrTy = Int8PtrTy->getPointerTo(0); |
Chris Lattner | 2b94fe3 | 2008-03-01 08:45:05 +0000 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | CodeGenModule::~CodeGenModule() { |
Peter Collingbourne | e926523 | 2011-07-27 20:29:46 +0000 | [diff] [blame] | 119 | delete ObjCRuntime; |
Peter Collingbourne | 8c25fc5 | 2011-09-19 21:14:35 +0000 | [diff] [blame] | 120 | delete OpenCLRuntime; |
Peter Collingbourne | 6c0aa5f | 2011-10-06 18:29:37 +0000 | [diff] [blame] | 121 | delete CUDARuntime; |
Ted Kremenek | 0628b72 | 2011-10-08 05:28:26 +0000 | [diff] [blame] | 122 | delete TheTargetCodeGenInfo; |
John McCall | f16aa10 | 2010-08-22 21:01:12 +0000 | [diff] [blame] | 123 | delete &ABI; |
Dan Gohman | 4376c85 | 2010-10-15 18:04:46 +0000 | [diff] [blame] | 124 | delete TBAA; |
Ted Kremenek | 815c78f | 2008-08-05 18:50:11 +0000 | [diff] [blame] | 125 | delete DebugInfo; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 126 | delete ARCData; |
| 127 | delete RRData; |
Ted Kremenek | 815c78f | 2008-08-05 18:50:11 +0000 | [diff] [blame] | 128 | } |
| 129 | |
David Chisnall | 0d13f6f | 2010-01-23 02:40:42 +0000 | [diff] [blame] | 130 | void CodeGenModule::createObjCRuntime() { |
| 131 | if (!Features.NeXTRuntime) |
Peter Collingbourne | e926523 | 2011-07-27 20:29:46 +0000 | [diff] [blame] | 132 | ObjCRuntime = CreateGNUObjCRuntime(*this); |
David Chisnall | 0d13f6f | 2010-01-23 02:40:42 +0000 | [diff] [blame] | 133 | else |
Peter Collingbourne | e926523 | 2011-07-27 20:29:46 +0000 | [diff] [blame] | 134 | ObjCRuntime = CreateMacObjCRuntime(*this); |
David Chisnall | 0d13f6f | 2010-01-23 02:40:42 +0000 | [diff] [blame] | 135 | } |
| 136 | |
Peter Collingbourne | 8c25fc5 | 2011-09-19 21:14:35 +0000 | [diff] [blame] | 137 | void CodeGenModule::createOpenCLRuntime() { |
| 138 | OpenCLRuntime = new CGOpenCLRuntime(*this); |
| 139 | } |
| 140 | |
Peter Collingbourne | 6c0aa5f | 2011-10-06 18:29:37 +0000 | [diff] [blame] | 141 | void CodeGenModule::createCUDARuntime() { |
| 142 | CUDARuntime = CreateNVCUDARuntime(*this); |
| 143 | } |
| 144 | |
Ted Kremenek | 815c78f | 2008-08-05 18:50:11 +0000 | [diff] [blame] | 145 | void CodeGenModule::Release() { |
Chris Lattner | 82227ff | 2009-03-22 21:21:57 +0000 | [diff] [blame] | 146 | EmitDeferred(); |
Eli Friedman | 6c6bda3 | 2010-01-08 00:50:11 +0000 | [diff] [blame] | 147 | EmitCXXGlobalInitFunc(); |
Daniel Dunbar | efb0fa9 | 2010-03-20 04:15:41 +0000 | [diff] [blame] | 148 | EmitCXXGlobalDtorFunc(); |
Peter Collingbourne | e926523 | 2011-07-27 20:29:46 +0000 | [diff] [blame] | 149 | if (ObjCRuntime) |
| 150 | if (llvm::Function *ObjCInitFunction = ObjCRuntime->ModuleInitFunction()) |
Daniel Dunbar | 208ff5e | 2008-08-11 18:12:00 +0000 | [diff] [blame] | 151 | AddGlobalCtor(ObjCInitFunction); |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 152 | EmitCtorList(GlobalCtors, "llvm.global_ctors"); |
| 153 | EmitCtorList(GlobalDtors, "llvm.global_dtors"); |
Julien Lerouge | 77f68bb | 2011-09-09 22:41:49 +0000 | [diff] [blame] | 154 | EmitGlobalAnnotations(); |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 155 | EmitLLVMUsed(); |
John McCall | 744016d | 2010-07-06 23:57:41 +0000 | [diff] [blame] | 156 | |
John McCall | b259383 | 2010-09-16 06:16:50 +0000 | [diff] [blame] | 157 | SimplifyPersonality(); |
| 158 | |
John McCall | 744016d | 2010-07-06 23:57:41 +0000 | [diff] [blame] | 159 | if (getCodeGenOpts().EmitDeclMetadata) |
| 160 | EmitDeclMetadata(); |
Nick Lewycky | 5ea4f44 | 2011-05-04 20:46:58 +0000 | [diff] [blame] | 161 | |
| 162 | if (getCodeGenOpts().EmitGcovArcs || getCodeGenOpts().EmitGcovNotes) |
Nick Lewycky | 3dc0541 | 2011-05-05 00:08:20 +0000 | [diff] [blame] | 163 | EmitCoverageFile(); |
Devang Patel | f391dbe | 2011-08-16 20:58:22 +0000 | [diff] [blame] | 164 | |
| 165 | if (DebugInfo) |
| 166 | DebugInfo->finalize(); |
Daniel Dunbar | f1968f2 | 2008-10-01 00:49:24 +0000 | [diff] [blame] | 167 | } |
| 168 | |
Devang Patel | e80d567 | 2011-03-23 16:29:39 +0000 | [diff] [blame] | 169 | void CodeGenModule::UpdateCompletedType(const TagDecl *TD) { |
| 170 | // Make sure that this type is translated. |
| 171 | Types.UpdateCompletedType(TD); |
| 172 | if (DebugInfo) |
| 173 | DebugInfo->UpdateCompletedType(TD); |
| 174 | } |
| 175 | |
Dan Gohman | 3d5aff5 | 2010-10-14 23:06:10 +0000 | [diff] [blame] | 176 | llvm::MDNode *CodeGenModule::getTBAAInfo(QualType QTy) { |
| 177 | if (!TBAA) |
| 178 | return 0; |
| 179 | return TBAA->getTBAAInfo(QTy); |
| 180 | } |
| 181 | |
| 182 | void CodeGenModule::DecorateInstruction(llvm::Instruction *Inst, |
| 183 | llvm::MDNode *TBAAInfo) { |
| 184 | Inst->setMetadata(llvm::LLVMContext::MD_tbaa, TBAAInfo); |
| 185 | } |
| 186 | |
John McCall | 6374c33 | 2010-03-06 00:35:14 +0000 | [diff] [blame] | 187 | bool CodeGenModule::isTargetDarwin() const { |
Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 188 | return getContext().getTargetInfo().getTriple().isOSDarwin(); |
John McCall | 6374c33 | 2010-03-06 00:35:14 +0000 | [diff] [blame] | 189 | } |
| 190 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 191 | void CodeGenModule::Error(SourceLocation loc, StringRef error) { |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 192 | unsigned diagID = getDiags().getCustomDiagID(DiagnosticsEngine::Error, error); |
John McCall | 3209669 | 2011-03-18 02:56:14 +0000 | [diff] [blame] | 193 | getDiags().Report(Context.getFullLoc(loc), diagID); |
| 194 | } |
| 195 | |
Daniel Dunbar | 488e993 | 2008-08-16 00:56:44 +0000 | [diff] [blame] | 196 | /// ErrorUnsupported - Print out an error that codegen doesn't support the |
Chris Lattner | 2c8569d | 2007-12-02 07:19:18 +0000 | [diff] [blame] | 197 | /// specified stmt yet. |
Daniel Dunbar | 90df4b6 | 2008-09-04 03:43:08 +0000 | [diff] [blame] | 198 | void CodeGenModule::ErrorUnsupported(const Stmt *S, const char *Type, |
| 199 | bool OmitOnError) { |
| 200 | if (OmitOnError && getDiags().hasErrorOccurred()) |
| 201 | return; |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 202 | unsigned DiagID = getDiags().getCustomDiagID(DiagnosticsEngine::Error, |
Daniel Dunbar | 56b8001 | 2009-02-06 19:18:03 +0000 | [diff] [blame] | 203 | "cannot compile this %0 yet"); |
Chris Lattner | 2c8569d | 2007-12-02 07:19:18 +0000 | [diff] [blame] | 204 | std::string Msg = Type; |
Chris Lattner | 0a14eee | 2008-11-18 07:04:44 +0000 | [diff] [blame] | 205 | getDiags().Report(Context.getFullLoc(S->getLocStart()), DiagID) |
| 206 | << Msg << S->getSourceRange(); |
Chris Lattner | 2c8569d | 2007-12-02 07:19:18 +0000 | [diff] [blame] | 207 | } |
Chris Lattner | 58c3f9e | 2007-12-02 06:27:33 +0000 | [diff] [blame] | 208 | |
Daniel Dunbar | 488e993 | 2008-08-16 00:56:44 +0000 | [diff] [blame] | 209 | /// ErrorUnsupported - Print out an error that codegen doesn't support the |
Chris Lattner | c6fdc34 | 2008-01-12 07:05:38 +0000 | [diff] [blame] | 210 | /// specified decl yet. |
Daniel Dunbar | 90df4b6 | 2008-09-04 03:43:08 +0000 | [diff] [blame] | 211 | void CodeGenModule::ErrorUnsupported(const Decl *D, const char *Type, |
| 212 | bool OmitOnError) { |
| 213 | if (OmitOnError && getDiags().hasErrorOccurred()) |
| 214 | return; |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 215 | unsigned DiagID = getDiags().getCustomDiagID(DiagnosticsEngine::Error, |
Daniel Dunbar | 56b8001 | 2009-02-06 19:18:03 +0000 | [diff] [blame] | 216 | "cannot compile this %0 yet"); |
Chris Lattner | c6fdc34 | 2008-01-12 07:05:38 +0000 | [diff] [blame] | 217 | std::string Msg = Type; |
Chris Lattner | 0a14eee | 2008-11-18 07:04:44 +0000 | [diff] [blame] | 218 | getDiags().Report(Context.getFullLoc(D->getLocation()), DiagID) << Msg; |
Chris Lattner | c6fdc34 | 2008-01-12 07:05:38 +0000 | [diff] [blame] | 219 | } |
| 220 | |
John McCall | bc8d40d | 2011-06-24 21:55:10 +0000 | [diff] [blame] | 221 | llvm::ConstantInt *CodeGenModule::getSize(CharUnits size) { |
| 222 | return llvm::ConstantInt::get(SizeTy, size.getQuantity()); |
| 223 | } |
| 224 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 225 | void CodeGenModule::setGlobalVisibility(llvm::GlobalValue *GV, |
Anders Carlsson | 0ffeaad | 2011-01-29 19:39:23 +0000 | [diff] [blame] | 226 | const NamedDecl *D) const { |
Daniel Dunbar | 04d4078 | 2009-04-14 06:00:08 +0000 | [diff] [blame] | 227 | // Internal definitions always have default visibility. |
Chris Lattner | df102fc | 2009-04-14 05:27:13 +0000 | [diff] [blame] | 228 | if (GV->hasLocalLinkage()) { |
Daniel Dunbar | 7e714cd | 2009-04-10 20:26:50 +0000 | [diff] [blame] | 229 | GV->setVisibility(llvm::GlobalValue::DefaultVisibility); |
Daniel Dunbar | 6ab187a | 2009-04-07 05:48:37 +0000 | [diff] [blame] | 230 | return; |
Daniel Dunbar | 7e714cd | 2009-04-10 20:26:50 +0000 | [diff] [blame] | 231 | } |
Daniel Dunbar | 6ab187a | 2009-04-07 05:48:37 +0000 | [diff] [blame] | 232 | |
John McCall | af14603 | 2010-10-30 11:50:40 +0000 | [diff] [blame] | 233 | // Set visibility for definitions. |
| 234 | NamedDecl::LinkageInfo LV = D->getLinkageAndVisibility(); |
Fariborz Jahanian | c7c9058 | 2011-06-16 20:14:50 +0000 | [diff] [blame] | 235 | if (LV.visibilityExplicit() || !GV->hasAvailableExternallyLinkage()) |
| 236 | GV->setVisibility(GetLLVMVisibility(LV.visibility())); |
Dan Gohman | 4f8d123 | 2008-05-22 00:50:06 +0000 | [diff] [blame] | 237 | } |
| 238 | |
John McCall | cbfe502 | 2010-08-04 08:34:44 +0000 | [diff] [blame] | 239 | /// Set the symbol visibility of type information (vtable and RTTI) |
| 240 | /// associated with the given type. |
| 241 | void CodeGenModule::setTypeVisibility(llvm::GlobalValue *GV, |
| 242 | const CXXRecordDecl *RD, |
Anders Carlsson | fa2e99f | 2011-01-29 20:24:48 +0000 | [diff] [blame] | 243 | TypeVisibilityKind TVK) const { |
Anders Carlsson | 0ffeaad | 2011-01-29 19:39:23 +0000 | [diff] [blame] | 244 | setGlobalVisibility(GV, RD); |
John McCall | cbfe502 | 2010-08-04 08:34:44 +0000 | [diff] [blame] | 245 | |
John McCall | 279b5eb | 2010-08-12 23:36:15 +0000 | [diff] [blame] | 246 | if (!CodeGenOpts.HiddenWeakVTables) |
| 247 | return; |
| 248 | |
Anders Carlsson | 9a86a13 | 2011-01-29 20:36:11 +0000 | [diff] [blame] | 249 | // We never want to drop the visibility for RTTI names. |
| 250 | if (TVK == TVK_ForRTTIName) |
| 251 | return; |
| 252 | |
John McCall | cbfe502 | 2010-08-04 08:34:44 +0000 | [diff] [blame] | 253 | // We want to drop the visibility to hidden for weak type symbols. |
| 254 | // This isn't possible if there might be unresolved references |
| 255 | // elsewhere that rely on this symbol being visible. |
| 256 | |
John McCall | 7a53690 | 2010-08-05 20:39:18 +0000 | [diff] [blame] | 257 | // This should be kept roughly in sync with setThunkVisibility |
| 258 | // in CGVTables.cpp. |
| 259 | |
John McCall | cbfe502 | 2010-08-04 08:34:44 +0000 | [diff] [blame] | 260 | // Preconditions. |
Anders Carlsson | f502d93 | 2011-01-24 00:46:19 +0000 | [diff] [blame] | 261 | if (GV->getLinkage() != llvm::GlobalVariable::LinkOnceODRLinkage || |
John McCall | cbfe502 | 2010-08-04 08:34:44 +0000 | [diff] [blame] | 262 | GV->getVisibility() != llvm::GlobalVariable::DefaultVisibility) |
| 263 | return; |
| 264 | |
| 265 | // Don't override an explicit visibility attribute. |
Douglas Gregor | 4421d2b | 2011-03-26 12:10:19 +0000 | [diff] [blame] | 266 | if (RD->getExplicitVisibility()) |
John McCall | cbfe502 | 2010-08-04 08:34:44 +0000 | [diff] [blame] | 267 | return; |
| 268 | |
| 269 | switch (RD->getTemplateSpecializationKind()) { |
| 270 | // We have to disable the optimization if this is an EI definition |
| 271 | // because there might be EI declarations in other shared objects. |
| 272 | case TSK_ExplicitInstantiationDefinition: |
| 273 | case TSK_ExplicitInstantiationDeclaration: |
| 274 | return; |
| 275 | |
John McCall | 7a53690 | 2010-08-05 20:39:18 +0000 | [diff] [blame] | 276 | // Every use of a non-template class's type information has to emit it. |
John McCall | cbfe502 | 2010-08-04 08:34:44 +0000 | [diff] [blame] | 277 | case TSK_Undeclared: |
| 278 | break; |
| 279 | |
John McCall | 7a53690 | 2010-08-05 20:39:18 +0000 | [diff] [blame] | 280 | // In theory, implicit instantiations can ignore the possibility of |
| 281 | // an explicit instantiation declaration because there necessarily |
| 282 | // must be an EI definition somewhere with default visibility. In |
| 283 | // practice, it's possible to have an explicit instantiation for |
| 284 | // an arbitrary template class, and linkers aren't necessarily able |
| 285 | // to deal with mixed-visibility symbols. |
| 286 | case TSK_ExplicitSpecialization: |
John McCall | cbfe502 | 2010-08-04 08:34:44 +0000 | [diff] [blame] | 287 | case TSK_ImplicitInstantiation: |
John McCall | 279b5eb | 2010-08-12 23:36:15 +0000 | [diff] [blame] | 288 | if (!CodeGenOpts.HiddenWeakTemplateVTables) |
John McCall | 7a53690 | 2010-08-05 20:39:18 +0000 | [diff] [blame] | 289 | return; |
John McCall | cbfe502 | 2010-08-04 08:34:44 +0000 | [diff] [blame] | 290 | break; |
| 291 | } |
| 292 | |
| 293 | // If there's a key function, there may be translation units |
| 294 | // that don't have the key function's definition. But ignore |
| 295 | // this if we're emitting RTTI under -fno-rtti. |
Anders Carlsson | fa2e99f | 2011-01-29 20:24:48 +0000 | [diff] [blame] | 296 | if (!(TVK != TVK_ForRTTI) || Features.RTTI) { |
John McCall | cbfe502 | 2010-08-04 08:34:44 +0000 | [diff] [blame] | 297 | if (Context.getKeyFunction(RD)) |
| 298 | return; |
Anders Carlsson | fa2e99f | 2011-01-29 20:24:48 +0000 | [diff] [blame] | 299 | } |
John McCall | cbfe502 | 2010-08-04 08:34:44 +0000 | [diff] [blame] | 300 | |
| 301 | // Otherwise, drop the visibility to hidden. |
| 302 | GV->setVisibility(llvm::GlobalValue::HiddenVisibility); |
Rafael Espindola | b1c65ff | 2011-01-11 21:44:37 +0000 | [diff] [blame] | 303 | GV->setUnnamedAddr(true); |
John McCall | cbfe502 | 2010-08-04 08:34:44 +0000 | [diff] [blame] | 304 | } |
| 305 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 306 | StringRef CodeGenModule::getMangledName(GlobalDecl GD) { |
Anders Carlsson | 793a990 | 2010-06-22 16:05:32 +0000 | [diff] [blame] | 307 | const NamedDecl *ND = cast<NamedDecl>(GD.getDecl()); |
| 308 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 309 | StringRef &Str = MangledDeclNames[GD.getCanonicalDecl()]; |
Anders Carlsson | 793a990 | 2010-06-22 16:05:32 +0000 | [diff] [blame] | 310 | if (!Str.empty()) |
| 311 | return Str; |
| 312 | |
John McCall | 4c40d98 | 2010-08-31 07:33:07 +0000 | [diff] [blame] | 313 | if (!getCXXABI().getMangleContext().shouldMangleDeclName(ND)) { |
Anders Carlsson | 793a990 | 2010-06-22 16:05:32 +0000 | [diff] [blame] | 314 | IdentifierInfo *II = ND->getIdentifier(); |
| 315 | assert(II && "Attempt to mangle unnamed decl."); |
| 316 | |
| 317 | Str = II->getName(); |
| 318 | return Str; |
| 319 | } |
| 320 | |
| 321 | llvm::SmallString<256> Buffer; |
Rafael Espindola | c4850c2 | 2011-02-10 23:59:36 +0000 | [diff] [blame] | 322 | llvm::raw_svector_ostream Out(Buffer); |
Anders Carlsson | 793a990 | 2010-06-22 16:05:32 +0000 | [diff] [blame] | 323 | if (const CXXConstructorDecl *D = dyn_cast<CXXConstructorDecl>(ND)) |
Rafael Espindola | c4850c2 | 2011-02-10 23:59:36 +0000 | [diff] [blame] | 324 | getCXXABI().getMangleContext().mangleCXXCtor(D, GD.getCtorType(), Out); |
Anders Carlsson | 793a990 | 2010-06-22 16:05:32 +0000 | [diff] [blame] | 325 | else if (const CXXDestructorDecl *D = dyn_cast<CXXDestructorDecl>(ND)) |
Rafael Espindola | c4850c2 | 2011-02-10 23:59:36 +0000 | [diff] [blame] | 326 | getCXXABI().getMangleContext().mangleCXXDtor(D, GD.getDtorType(), Out); |
Anders Carlsson | 793a990 | 2010-06-22 16:05:32 +0000 | [diff] [blame] | 327 | else if (const BlockDecl *BD = dyn_cast<BlockDecl>(ND)) |
Rafael Espindola | c4850c2 | 2011-02-10 23:59:36 +0000 | [diff] [blame] | 328 | getCXXABI().getMangleContext().mangleBlock(BD, Out); |
Anders Carlsson | 793a990 | 2010-06-22 16:05:32 +0000 | [diff] [blame] | 329 | else |
Rafael Espindola | c4850c2 | 2011-02-10 23:59:36 +0000 | [diff] [blame] | 330 | getCXXABI().getMangleContext().mangleName(ND, Out); |
Anders Carlsson | 793a990 | 2010-06-22 16:05:32 +0000 | [diff] [blame] | 331 | |
| 332 | // Allocate space for the mangled name. |
Rafael Espindola | c4850c2 | 2011-02-10 23:59:36 +0000 | [diff] [blame] | 333 | Out.flush(); |
Anders Carlsson | 793a990 | 2010-06-22 16:05:32 +0000 | [diff] [blame] | 334 | size_t Length = Buffer.size(); |
| 335 | char *Name = MangledNamesAllocator.Allocate<char>(Length); |
| 336 | std::copy(Buffer.begin(), Buffer.end(), Name); |
| 337 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 338 | Str = StringRef(Name, Length); |
Anders Carlsson | 793a990 | 2010-06-22 16:05:32 +0000 | [diff] [blame] | 339 | |
| 340 | return Str; |
| 341 | } |
| 342 | |
Peter Collingbourne | 1411047 | 2011-01-13 18:57:25 +0000 | [diff] [blame] | 343 | void CodeGenModule::getBlockMangledName(GlobalDecl GD, MangleBuffer &Buffer, |
| 344 | const BlockDecl *BD) { |
| 345 | MangleContext &MangleCtx = getCXXABI().getMangleContext(); |
| 346 | const Decl *D = GD.getDecl(); |
Rafael Espindola | c4850c2 | 2011-02-10 23:59:36 +0000 | [diff] [blame] | 347 | llvm::raw_svector_ostream Out(Buffer.getBuffer()); |
Peter Collingbourne | 1411047 | 2011-01-13 18:57:25 +0000 | [diff] [blame] | 348 | if (D == 0) |
Rafael Espindola | c4850c2 | 2011-02-10 23:59:36 +0000 | [diff] [blame] | 349 | MangleCtx.mangleGlobalBlock(BD, Out); |
Peter Collingbourne | 1411047 | 2011-01-13 18:57:25 +0000 | [diff] [blame] | 350 | else if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(D)) |
Rafael Espindola | c4850c2 | 2011-02-10 23:59:36 +0000 | [diff] [blame] | 351 | MangleCtx.mangleCtorBlock(CD, GD.getCtorType(), BD, Out); |
Peter Collingbourne | 1411047 | 2011-01-13 18:57:25 +0000 | [diff] [blame] | 352 | else if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(D)) |
Rafael Espindola | c4850c2 | 2011-02-10 23:59:36 +0000 | [diff] [blame] | 353 | MangleCtx.mangleDtorBlock(DD, GD.getDtorType(), BD, Out); |
Peter Collingbourne | 1411047 | 2011-01-13 18:57:25 +0000 | [diff] [blame] | 354 | else |
Rafael Espindola | c4850c2 | 2011-02-10 23:59:36 +0000 | [diff] [blame] | 355 | MangleCtx.mangleBlock(cast<DeclContext>(D), BD, Out); |
Anders Carlsson | 9a8822b | 2010-06-09 02:36:32 +0000 | [diff] [blame] | 356 | } |
| 357 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 358 | llvm::GlobalValue *CodeGenModule::GetGlobalValue(StringRef Name) { |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 359 | return getModule().getNamedValue(Name); |
Douglas Gregor | 5f2bfd4 | 2009-02-13 00:10:09 +0000 | [diff] [blame] | 360 | } |
| 361 | |
Chris Lattner | 6d39760 | 2008-03-14 17:18:18 +0000 | [diff] [blame] | 362 | /// AddGlobalCtor - Add a function to the list that will be called before |
| 363 | /// main() runs. |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 364 | void CodeGenModule::AddGlobalCtor(llvm::Function * Ctor, int Priority) { |
Daniel Dunbar | 4998888 | 2009-01-13 02:25:00 +0000 | [diff] [blame] | 365 | // FIXME: Type coercion of void()* types. |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 366 | GlobalCtors.push_back(std::make_pair(Ctor, Priority)); |
Chris Lattner | 6d39760 | 2008-03-14 17:18:18 +0000 | [diff] [blame] | 367 | } |
| 368 | |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 369 | /// AddGlobalDtor - Add a function to the list that will be called |
| 370 | /// when the module is unloaded. |
| 371 | void CodeGenModule::AddGlobalDtor(llvm::Function * Dtor, int Priority) { |
Daniel Dunbar | 4998888 | 2009-01-13 02:25:00 +0000 | [diff] [blame] | 372 | // FIXME: Type coercion of void()* types. |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 373 | GlobalDtors.push_back(std::make_pair(Dtor, Priority)); |
| 374 | } |
| 375 | |
| 376 | void CodeGenModule::EmitCtorList(const CtorList &Fns, const char *GlobalName) { |
| 377 | // Ctor function type is void()*. |
John McCall | 0774cb8 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 378 | llvm::FunctionType* CtorFTy = llvm::FunctionType::get(VoidTy, false); |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 379 | llvm::Type *CtorPFTy = llvm::PointerType::getUnqual(CtorFTy); |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 380 | |
| 381 | // Get the type of a ctor entry, { i32, void ()* }. |
Chris Lattner | c5cbb90 | 2011-06-20 04:01:35 +0000 | [diff] [blame] | 382 | llvm::StructType *CtorStructTy = |
Chris Lattner | 7650d95 | 2011-06-18 22:49:11 +0000 | [diff] [blame] | 383 | llvm::StructType::get(llvm::Type::getInt32Ty(VMContext), |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 384 | llvm::PointerType::getUnqual(CtorFTy), NULL); |
Chris Lattner | 6d39760 | 2008-03-14 17:18:18 +0000 | [diff] [blame] | 385 | |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 386 | // Construct the constructor and destructor arrays. |
| 387 | std::vector<llvm::Constant*> Ctors; |
| 388 | for (CtorList::const_iterator I = Fns.begin(), E = Fns.end(); I != E; ++I) { |
| 389 | std::vector<llvm::Constant*> S; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 390 | S.push_back(llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), |
Owen Anderson | 0032b27 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 391 | I->second, false)); |
Owen Anderson | 3c4972d | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 392 | S.push_back(llvm::ConstantExpr::getBitCast(I->first, CtorPFTy)); |
Owen Anderson | 08e2524 | 2009-07-27 22:29:56 +0000 | [diff] [blame] | 393 | Ctors.push_back(llvm::ConstantStruct::get(CtorStructTy, S)); |
Chris Lattner | 6d39760 | 2008-03-14 17:18:18 +0000 | [diff] [blame] | 394 | } |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 395 | |
| 396 | if (!Ctors.empty()) { |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 397 | llvm::ArrayType *AT = llvm::ArrayType::get(CtorStructTy, Ctors.size()); |
Owen Anderson | 1c431b3 | 2009-07-08 19:05:04 +0000 | [diff] [blame] | 398 | new llvm::GlobalVariable(TheModule, AT, false, |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 399 | llvm::GlobalValue::AppendingLinkage, |
Owen Anderson | 7db6d83 | 2009-07-28 18:33:04 +0000 | [diff] [blame] | 400 | llvm::ConstantArray::get(AT, Ctors), |
Owen Anderson | 1c431b3 | 2009-07-08 19:05:04 +0000 | [diff] [blame] | 401 | GlobalName); |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 402 | } |
Chris Lattner | 6d39760 | 2008-03-14 17:18:18 +0000 | [diff] [blame] | 403 | } |
| 404 | |
John McCall | d46f985 | 2010-02-19 01:32:20 +0000 | [diff] [blame] | 405 | llvm::GlobalValue::LinkageTypes |
| 406 | CodeGenModule::getFunctionLinkage(const FunctionDecl *D) { |
Argyrios Kyrtzidis | 90e99a8 | 2010-07-29 18:15:58 +0000 | [diff] [blame] | 407 | GVALinkage Linkage = getContext().GetGVALinkageForFunction(D); |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 408 | |
Chris Lattner | f8153065 | 2010-06-30 16:58:07 +0000 | [diff] [blame] | 409 | if (Linkage == GVA_Internal) |
John McCall | d46f985 | 2010-02-19 01:32:20 +0000 | [diff] [blame] | 410 | return llvm::Function::InternalLinkage; |
Chris Lattner | f8153065 | 2010-06-30 16:58:07 +0000 | [diff] [blame] | 411 | |
| 412 | if (D->hasAttr<DLLExportAttr>()) |
John McCall | d46f985 | 2010-02-19 01:32:20 +0000 | [diff] [blame] | 413 | return llvm::Function::DLLExportLinkage; |
Chris Lattner | f8153065 | 2010-06-30 16:58:07 +0000 | [diff] [blame] | 414 | |
| 415 | if (D->hasAttr<WeakAttr>()) |
John McCall | d46f985 | 2010-02-19 01:32:20 +0000 | [diff] [blame] | 416 | return llvm::Function::WeakAnyLinkage; |
Chris Lattner | f8153065 | 2010-06-30 16:58:07 +0000 | [diff] [blame] | 417 | |
| 418 | // In C99 mode, 'inline' functions are guaranteed to have a strong |
| 419 | // definition somewhere else, so we can use available_externally linkage. |
| 420 | if (Linkage == GVA_C99Inline) |
Fariborz Jahanian | fd0f89d | 2011-02-04 00:08:13 +0000 | [diff] [blame] | 421 | return llvm::Function::AvailableExternallyLinkage; |
John McCall | 5584d91 | 2011-09-19 18:05:26 +0000 | [diff] [blame] | 422 | |
| 423 | // Note that Apple's kernel linker doesn't support symbol |
| 424 | // coalescing, so we need to avoid linkonce and weak linkages there. |
| 425 | // Normally, this means we just map to internal, but for explicit |
| 426 | // instantiations we'll map to external. |
| 427 | |
Chris Lattner | f8153065 | 2010-06-30 16:58:07 +0000 | [diff] [blame] | 428 | // In C++, the compiler has to emit a definition in every translation unit |
| 429 | // that references the function. We should use linkonce_odr because |
| 430 | // a) if all references in this translation unit are optimized away, we |
| 431 | // don't need to codegen it. b) if the function persists, it needs to be |
| 432 | // merged with other definitions. c) C++ has the ODR, so we know the |
| 433 | // definition is dependable. |
| 434 | if (Linkage == GVA_CXXInline || Linkage == GVA_TemplateInstantiation) |
Fariborz Jahanian | 142f9e9 | 2011-02-04 00:01:24 +0000 | [diff] [blame] | 435 | return !Context.getLangOptions().AppleKext |
| 436 | ? llvm::Function::LinkOnceODRLinkage |
| 437 | : llvm::Function::InternalLinkage; |
Chris Lattner | f8153065 | 2010-06-30 16:58:07 +0000 | [diff] [blame] | 438 | |
| 439 | // An explicit instantiation of a template has weak linkage, since |
| 440 | // explicit instantiations can occur in multiple translation units |
| 441 | // and must all be equivalent. However, we are not allowed to |
| 442 | // throw away these explicit instantiations. |
| 443 | if (Linkage == GVA_ExplicitTemplateInstantiation) |
Fariborz Jahanian | 142f9e9 | 2011-02-04 00:01:24 +0000 | [diff] [blame] | 444 | return !Context.getLangOptions().AppleKext |
| 445 | ? llvm::Function::WeakODRLinkage |
John McCall | 5584d91 | 2011-09-19 18:05:26 +0000 | [diff] [blame] | 446 | : llvm::Function::ExternalLinkage; |
Chris Lattner | f8153065 | 2010-06-30 16:58:07 +0000 | [diff] [blame] | 447 | |
| 448 | // Otherwise, we have strong external linkage. |
| 449 | assert(Linkage == GVA_StrongExternal); |
| 450 | return llvm::Function::ExternalLinkage; |
John McCall | d46f985 | 2010-02-19 01:32:20 +0000 | [diff] [blame] | 451 | } |
Nuno Lopes | d4cbda6 | 2008-06-08 15:45:52 +0000 | [diff] [blame] | 452 | |
John McCall | d46f985 | 2010-02-19 01:32:20 +0000 | [diff] [blame] | 453 | |
| 454 | /// SetFunctionDefinitionAttributes - Set attributes for a global. |
| 455 | /// |
| 456 | /// FIXME: This is currently only done for aliases and functions, but not for |
| 457 | /// variables (these details are set in EmitGlobalVarDefinition for variables). |
| 458 | void CodeGenModule::SetFunctionDefinitionAttributes(const FunctionDecl *D, |
| 459 | llvm::GlobalValue *GV) { |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 460 | SetCommonAttributes(D, GV); |
Nuno Lopes | d4cbda6 | 2008-06-08 15:45:52 +0000 | [diff] [blame] | 461 | } |
| 462 | |
Daniel Dunbar | 7dbd819 | 2009-04-14 07:08:30 +0000 | [diff] [blame] | 463 | void CodeGenModule::SetLLVMFunctionAttributes(const Decl *D, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 464 | const CGFunctionInfo &Info, |
Daniel Dunbar | 7dbd819 | 2009-04-14 07:08:30 +0000 | [diff] [blame] | 465 | llvm::Function *F) { |
Daniel Dunbar | ca6408c | 2009-09-12 00:59:20 +0000 | [diff] [blame] | 466 | unsigned CallingConv; |
Devang Patel | 761d7f7 | 2008-09-25 21:02:23 +0000 | [diff] [blame] | 467 | AttributeListType AttributeList; |
Daniel Dunbar | ca6408c | 2009-09-12 00:59:20 +0000 | [diff] [blame] | 468 | ConstructAttributeList(Info, D, AttributeList, CallingConv); |
Devang Patel | 761d7f7 | 2008-09-25 21:02:23 +0000 | [diff] [blame] | 469 | F->setAttributes(llvm::AttrListPtr::get(AttributeList.begin(), |
Daniel Dunbar | ca6408c | 2009-09-12 00:59:20 +0000 | [diff] [blame] | 470 | AttributeList.size())); |
| 471 | F->setCallingConv(static_cast<llvm::CallingConv::ID>(CallingConv)); |
Daniel Dunbar | f80519b | 2008-09-04 23:41:35 +0000 | [diff] [blame] | 472 | } |
| 473 | |
John McCall | d1e40d5 | 2011-10-02 01:16:38 +0000 | [diff] [blame] | 474 | /// Determines whether the language options require us to model |
| 475 | /// unwind exceptions. We treat -fexceptions as mandating this |
| 476 | /// except under the fragile ObjC ABI with only ObjC exceptions |
| 477 | /// enabled. This means, for example, that C with -fexceptions |
| 478 | /// enables this. |
| 479 | static bool hasUnwindExceptions(const LangOptions &Features) { |
| 480 | // If exceptions are completely disabled, obviously this is false. |
| 481 | if (!Features.Exceptions) return false; |
| 482 | |
| 483 | // If C++ exceptions are enabled, this is true. |
| 484 | if (Features.CXXExceptions) return true; |
| 485 | |
| 486 | // If ObjC exceptions are enabled, this depends on the ABI. |
| 487 | if (Features.ObjCExceptions) { |
| 488 | if (!Features.ObjCNonFragileABI) return false; |
| 489 | } |
| 490 | |
| 491 | return true; |
| 492 | } |
| 493 | |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 494 | void CodeGenModule::SetLLVMFunctionAttributesForDefinition(const Decl *D, |
| 495 | llvm::Function *F) { |
Rafael Espindola | abca5a1 | 2011-05-25 03:44:55 +0000 | [diff] [blame] | 496 | if (CodeGenOpts.UnwindTables) |
| 497 | F->setHasUWTable(); |
| 498 | |
John McCall | d1e40d5 | 2011-10-02 01:16:38 +0000 | [diff] [blame] | 499 | if (!hasUnwindExceptions(Features)) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 500 | F->addFnAttr(llvm::Attribute::NoUnwind); |
Daniel Dunbar | af668b0 | 2008-10-28 00:17:57 +0000 | [diff] [blame] | 501 | |
Eli Friedman | 2873aee | 2011-08-22 23:55:33 +0000 | [diff] [blame] | 502 | if (D->hasAttr<NakedAttr>()) { |
| 503 | // Naked implies noinline: we should not be inlining such functions. |
Daniel Dunbar | dd0cb22 | 2010-09-29 18:20:25 +0000 | [diff] [blame] | 504 | F->addFnAttr(llvm::Attribute::Naked); |
Eli Friedman | 2873aee | 2011-08-22 23:55:33 +0000 | [diff] [blame] | 505 | F->addFnAttr(llvm::Attribute::NoInline); |
| 506 | } |
Daniel Dunbar | dd0cb22 | 2010-09-29 18:20:25 +0000 | [diff] [blame] | 507 | |
Mike Stump | 1feade8 | 2009-08-26 22:31:08 +0000 | [diff] [blame] | 508 | if (D->hasAttr<NoInlineAttr>()) |
Anders Carlsson | 81ebbde | 2009-02-19 19:22:11 +0000 | [diff] [blame] | 509 | F->addFnAttr(llvm::Attribute::NoInline); |
Mike Stump | f55314d | 2009-10-05 21:58:44 +0000 | [diff] [blame] | 510 | |
Eli Friedman | 2873aee | 2011-08-22 23:55:33 +0000 | [diff] [blame] | 511 | // (noinline wins over always_inline, and we can't specify both in IR) |
| 512 | if (D->hasAttr<AlwaysInlineAttr>() && |
| 513 | !F->hasFnAttr(llvm::Attribute::NoInline)) |
| 514 | F->addFnAttr(llvm::Attribute::AlwaysInline); |
| 515 | |
Rafael Espindola | c5f657f | 2011-01-11 00:26:26 +0000 | [diff] [blame] | 516 | if (isa<CXXConstructorDecl>(D) || isa<CXXDestructorDecl>(D)) |
| 517 | F->setUnnamedAddr(true); |
| 518 | |
Douglas Gregor | e289d81 | 2011-09-13 17:21:33 +0000 | [diff] [blame] | 519 | if (Features.getStackProtector() == LangOptions::SSPOn) |
Anders Carlsson | fd01535 | 2009-11-16 16:56:03 +0000 | [diff] [blame] | 520 | F->addFnAttr(llvm::Attribute::StackProtect); |
Douglas Gregor | e289d81 | 2011-09-13 17:21:33 +0000 | [diff] [blame] | 521 | else if (Features.getStackProtector() == LangOptions::SSPReq) |
Anders Carlsson | fd01535 | 2009-11-16 16:56:03 +0000 | [diff] [blame] | 522 | F->addFnAttr(llvm::Attribute::StackProtectReq); |
| 523 | |
Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 524 | unsigned alignment = D->getMaxAlignment() / Context.getCharWidth(); |
| 525 | if (alignment) |
| 526 | F->setAlignment(alignment); |
| 527 | |
Mike Stump | fb51ddf | 2009-10-05 22:49:20 +0000 | [diff] [blame] | 528 | // C++ ABI requires 2-byte alignment for member functions. |
Mike Stump | bd6dbd1 | 2009-10-05 23:08:21 +0000 | [diff] [blame] | 529 | if (F->getAlignment() < 2 && isa<CXXMethodDecl>(D)) |
| 530 | F->setAlignment(2); |
Daniel Dunbar | f80519b | 2008-09-04 23:41:35 +0000 | [diff] [blame] | 531 | } |
| 532 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 533 | void CodeGenModule::SetCommonAttributes(const Decl *D, |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 534 | llvm::GlobalValue *GV) { |
Anders Carlsson | 934176f | 2011-01-29 19:41:00 +0000 | [diff] [blame] | 535 | if (const NamedDecl *ND = dyn_cast<NamedDecl>(D)) |
| 536 | setGlobalVisibility(GV, ND); |
John McCall | 1fb0caa | 2010-10-22 21:05:15 +0000 | [diff] [blame] | 537 | else |
| 538 | GV->setVisibility(llvm::GlobalValue::DefaultVisibility); |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 539 | |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 540 | if (D->hasAttr<UsedAttr>()) |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 541 | AddUsedGlobal(GV); |
| 542 | |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 543 | if (const SectionAttr *SA = D->getAttr<SectionAttr>()) |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 544 | GV->setSection(SA->getName()); |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 545 | |
| 546 | getTargetCodeGenInfo().SetTargetAttributes(D, GV, *this); |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 547 | } |
| 548 | |
Daniel Dunbar | 0e4f40e | 2009-04-17 00:48:04 +0000 | [diff] [blame] | 549 | void CodeGenModule::SetInternalFunctionAttributes(const Decl *D, |
| 550 | llvm::Function *F, |
| 551 | const CGFunctionInfo &FI) { |
| 552 | SetLLVMFunctionAttributes(D, FI, F); |
| 553 | SetLLVMFunctionAttributesForDefinition(D, F); |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 554 | |
| 555 | F->setLinkage(llvm::Function::InternalLinkage); |
| 556 | |
Daniel Dunbar | 0e4f40e | 2009-04-17 00:48:04 +0000 | [diff] [blame] | 557 | SetCommonAttributes(D, F); |
Daniel Dunbar | f80519b | 2008-09-04 23:41:35 +0000 | [diff] [blame] | 558 | } |
| 559 | |
Anders Carlsson | b2bcf1c | 2010-02-06 02:44:09 +0000 | [diff] [blame] | 560 | void CodeGenModule::SetFunctionAttributes(GlobalDecl GD, |
Eli Friedman | c6c14d1 | 2009-05-26 01:22:57 +0000 | [diff] [blame] | 561 | llvm::Function *F, |
| 562 | bool IsIncompleteFunction) { |
Peter Collingbourne | 0ac2cf4 | 2011-04-06 12:29:04 +0000 | [diff] [blame] | 563 | if (unsigned IID = F->getIntrinsicID()) { |
| 564 | // If this is an intrinsic function, set the function's attributes |
| 565 | // to the intrinsic's attributes. |
| 566 | F->setAttributes(llvm::Intrinsic::getAttributes((llvm::Intrinsic::ID)IID)); |
| 567 | return; |
| 568 | } |
| 569 | |
Anders Carlsson | b2bcf1c | 2010-02-06 02:44:09 +0000 | [diff] [blame] | 570 | const FunctionDecl *FD = cast<FunctionDecl>(GD.getDecl()); |
| 571 | |
Eli Friedman | c6c14d1 | 2009-05-26 01:22:57 +0000 | [diff] [blame] | 572 | if (!IsIncompleteFunction) |
Anders Carlsson | b2bcf1c | 2010-02-06 02:44:09 +0000 | [diff] [blame] | 573 | SetLLVMFunctionAttributes(FD, getTypes().getFunctionInfo(GD), F); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 574 | |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 575 | // Only a few attributes are set on declarations; these may later be |
| 576 | // overridden by a definition. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 577 | |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 578 | if (FD->hasAttr<DLLImportAttr>()) { |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 579 | F->setLinkage(llvm::Function::DLLImportLinkage); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 580 | } else if (FD->hasAttr<WeakAttr>() || |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 581 | FD->isWeakImported()) { |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 582 | // "extern_weak" is overloaded in LLVM; we probably should have |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 583 | // separate linkage types for this. |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 584 | F->setLinkage(llvm::Function::ExternalWeakLinkage); |
| 585 | } else { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 586 | F->setLinkage(llvm::Function::ExternalLinkage); |
John McCall | af14603 | 2010-10-30 11:50:40 +0000 | [diff] [blame] | 587 | |
| 588 | NamedDecl::LinkageInfo LV = FD->getLinkageAndVisibility(); |
| 589 | if (LV.linkage() == ExternalLinkage && LV.visibilityExplicit()) { |
| 590 | F->setVisibility(GetLLVMVisibility(LV.visibility())); |
| 591 | } |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 592 | } |
| 593 | |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 594 | if (const SectionAttr *SA = FD->getAttr<SectionAttr>()) |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 595 | F->setSection(SA->getName()); |
Daniel Dunbar | 219df66 | 2008-09-08 23:44:31 +0000 | [diff] [blame] | 596 | } |
| 597 | |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 598 | void CodeGenModule::AddUsedGlobal(llvm::GlobalValue *GV) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 599 | assert(!GV->isDeclaration() && |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 600 | "Only globals with definition can force usage."); |
Chris Lattner | 35f38a2 | 2009-03-31 22:37:52 +0000 | [diff] [blame] | 601 | LLVMUsed.push_back(GV); |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 602 | } |
| 603 | |
| 604 | void CodeGenModule::EmitLLVMUsed() { |
| 605 | // Don't create llvm.used if there is no need. |
Chris Lattner | ad64e02 | 2009-07-17 23:57:13 +0000 | [diff] [blame] | 606 | if (LLVMUsed.empty()) |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 607 | return; |
| 608 | |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 609 | llvm::Type *i8PTy = llvm::Type::getInt8PtrTy(VMContext); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 610 | |
Chris Lattner | 35f38a2 | 2009-03-31 22:37:52 +0000 | [diff] [blame] | 611 | // Convert LLVMUsed to what ConstantArray needs. |
| 612 | std::vector<llvm::Constant*> UsedArray; |
| 613 | UsedArray.resize(LLVMUsed.size()); |
| 614 | for (unsigned i = 0, e = LLVMUsed.size(); i != e; ++i) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 615 | UsedArray[i] = |
| 616 | llvm::ConstantExpr::getBitCast(cast<llvm::Constant>(&*LLVMUsed[i]), |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 617 | i8PTy); |
Chris Lattner | 35f38a2 | 2009-03-31 22:37:52 +0000 | [diff] [blame] | 618 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 619 | |
Fariborz Jahanian | c38e9af | 2009-06-23 21:47:46 +0000 | [diff] [blame] | 620 | if (UsedArray.empty()) |
| 621 | return; |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 622 | llvm::ArrayType *ATy = llvm::ArrayType::get(i8PTy, UsedArray.size()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 623 | |
| 624 | llvm::GlobalVariable *GV = |
| 625 | new llvm::GlobalVariable(getModule(), ATy, false, |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 626 | llvm::GlobalValue::AppendingLinkage, |
Owen Anderson | 7db6d83 | 2009-07-28 18:33:04 +0000 | [diff] [blame] | 627 | llvm::ConstantArray::get(ATy, UsedArray), |
Owen Anderson | 1c431b3 | 2009-07-08 19:05:04 +0000 | [diff] [blame] | 628 | "llvm.used"); |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 629 | |
| 630 | GV->setSection("llvm.metadata"); |
| 631 | } |
| 632 | |
| 633 | void CodeGenModule::EmitDeferred() { |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 634 | // Emit code for any potentially referenced deferred decls. Since a |
| 635 | // previously unused static decl may become used during the generation of code |
Nick Lewycky | dce67a7 | 2011-07-18 05:26:13 +0000 | [diff] [blame] | 636 | // for a static function, iterate until no changes are made. |
Rafael Espindola | bbf58bb | 2010-03-10 02:19:29 +0000 | [diff] [blame] | 637 | |
Anders Carlsson | 046c294 | 2010-04-17 20:15:18 +0000 | [diff] [blame] | 638 | while (!DeferredDeclsToEmit.empty() || !DeferredVTables.empty()) { |
| 639 | if (!DeferredVTables.empty()) { |
| 640 | const CXXRecordDecl *RD = DeferredVTables.back(); |
| 641 | DeferredVTables.pop_back(); |
| 642 | getVTables().GenerateClassData(getVTableLinkage(RD), RD); |
Rafael Espindola | bbf58bb | 2010-03-10 02:19:29 +0000 | [diff] [blame] | 643 | continue; |
| 644 | } |
| 645 | |
Anders Carlsson | 2a131fb | 2009-05-05 04:44:02 +0000 | [diff] [blame] | 646 | GlobalDecl D = DeferredDeclsToEmit.back(); |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 647 | DeferredDeclsToEmit.pop_back(); |
| 648 | |
John McCall | c76702c | 2010-05-27 01:45:30 +0000 | [diff] [blame] | 649 | // Check to see if we've already emitted this. This is necessary |
| 650 | // for a couple of reasons: first, decls can end up in the |
| 651 | // deferred-decls queue multiple times, and second, decls can end |
| 652 | // up with definitions in unusual ways (e.g. by an extern inline |
| 653 | // function acquiring a strong function redefinition). Just |
| 654 | // ignore these cases. |
| 655 | // |
| 656 | // TODO: That said, looking this up multiple times is very wasteful. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 657 | StringRef Name = getMangledName(D); |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 658 | llvm::GlobalValue *CGRef = GetGlobalValue(Name); |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 659 | assert(CGRef && "Deferred decl wasn't referenced?"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 660 | |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 661 | if (!CGRef->isDeclaration()) |
| 662 | continue; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 663 | |
John McCall | c76702c | 2010-05-27 01:45:30 +0000 | [diff] [blame] | 664 | // GlobalAlias::isDeclaration() defers to the aliasee, but for our |
| 665 | // purposes an alias counts as a definition. |
| 666 | if (isa<llvm::GlobalAlias>(CGRef)) |
| 667 | continue; |
| 668 | |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 669 | // Otherwise, emit the definition and move on to the next one. |
| 670 | EmitGlobalDefinition(D); |
| 671 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 672 | } |
| 673 | |
Julien Lerouge | 77f68bb | 2011-09-09 22:41:49 +0000 | [diff] [blame] | 674 | void CodeGenModule::EmitGlobalAnnotations() { |
| 675 | if (Annotations.empty()) |
| 676 | return; |
| 677 | |
| 678 | // Create a new global variable for the ConstantStruct in the Module. |
| 679 | llvm::Constant *Array = llvm::ConstantArray::get(llvm::ArrayType::get( |
| 680 | Annotations[0]->getType(), Annotations.size()), Annotations); |
| 681 | llvm::GlobalValue *gv = new llvm::GlobalVariable(getModule(), |
| 682 | Array->getType(), false, llvm::GlobalValue::AppendingLinkage, Array, |
| 683 | "llvm.global.annotations"); |
| 684 | gv->setSection(AnnotationSection); |
| 685 | } |
| 686 | |
| 687 | llvm::Constant *CodeGenModule::EmitAnnotationString(llvm::StringRef Str) { |
| 688 | llvm::StringMap<llvm::Constant*>::iterator i = AnnotationStrings.find(Str); |
| 689 | if (i != AnnotationStrings.end()) |
| 690 | return i->second; |
| 691 | |
| 692 | // Not found yet, create a new global. |
| 693 | llvm::Constant *s = llvm::ConstantArray::get(getLLVMContext(), Str, true); |
| 694 | llvm::GlobalValue *gv = new llvm::GlobalVariable(getModule(), s->getType(), |
| 695 | true, llvm::GlobalValue::PrivateLinkage, s, ".str"); |
| 696 | gv->setSection(AnnotationSection); |
| 697 | gv->setUnnamedAddr(true); |
| 698 | AnnotationStrings[Str] = gv; |
| 699 | return gv; |
| 700 | } |
| 701 | |
| 702 | llvm::Constant *CodeGenModule::EmitAnnotationUnit(SourceLocation Loc) { |
| 703 | SourceManager &SM = getContext().getSourceManager(); |
| 704 | PresumedLoc PLoc = SM.getPresumedLoc(Loc); |
| 705 | if (PLoc.isValid()) |
| 706 | return EmitAnnotationString(PLoc.getFilename()); |
| 707 | return EmitAnnotationString(SM.getBufferName(Loc)); |
| 708 | } |
| 709 | |
| 710 | llvm::Constant *CodeGenModule::EmitAnnotationLineNo(SourceLocation L) { |
| 711 | SourceManager &SM = getContext().getSourceManager(); |
| 712 | PresumedLoc PLoc = SM.getPresumedLoc(L); |
| 713 | unsigned LineNo = PLoc.isValid() ? PLoc.getLine() : |
| 714 | SM.getExpansionLineNumber(L); |
| 715 | return llvm::ConstantInt::get(Int32Ty, LineNo); |
| 716 | } |
| 717 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 718 | llvm::Constant *CodeGenModule::EmitAnnotateAttr(llvm::GlobalValue *GV, |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 719 | const AnnotateAttr *AA, |
Julien Lerouge | 77f68bb | 2011-09-09 22:41:49 +0000 | [diff] [blame] | 720 | SourceLocation L) { |
| 721 | // Get the globals for file name, annotation, and the line number. |
| 722 | llvm::Constant *AnnoGV = EmitAnnotationString(AA->getAnnotation()), |
| 723 | *UnitGV = EmitAnnotationUnit(L), |
| 724 | *LineNoCst = EmitAnnotationLineNo(L); |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 725 | |
Daniel Dunbar | 57d5cee | 2009-04-14 22:41:13 +0000 | [diff] [blame] | 726 | // Create the ConstantStruct for the global annotation. |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 727 | llvm::Constant *Fields[4] = { |
Julien Lerouge | 77f68bb | 2011-09-09 22:41:49 +0000 | [diff] [blame] | 728 | llvm::ConstantExpr::getBitCast(GV, Int8PtrTy), |
| 729 | llvm::ConstantExpr::getBitCast(AnnoGV, Int8PtrTy), |
| 730 | llvm::ConstantExpr::getBitCast(UnitGV, Int8PtrTy), |
| 731 | LineNoCst |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 732 | }; |
Chris Lattner | c5cbb90 | 2011-06-20 04:01:35 +0000 | [diff] [blame] | 733 | return llvm::ConstantStruct::getAnon(Fields); |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 734 | } |
| 735 | |
Julien Lerouge | 77f68bb | 2011-09-09 22:41:49 +0000 | [diff] [blame] | 736 | void CodeGenModule::AddGlobalAnnotations(const ValueDecl *D, |
| 737 | llvm::GlobalValue *GV) { |
| 738 | assert(D->hasAttr<AnnotateAttr>() && "no annotate attribute"); |
| 739 | // Get the struct elements for these annotations. |
| 740 | for (specific_attr_iterator<AnnotateAttr> |
| 741 | ai = D->specific_attr_begin<AnnotateAttr>(), |
| 742 | ae = D->specific_attr_end<AnnotateAttr>(); ai != ae; ++ai) |
| 743 | Annotations.push_back(EmitAnnotateAttr(GV, *ai, D->getLocation())); |
| 744 | } |
| 745 | |
Argyrios Kyrtzidis | a6d6af3 | 2010-07-27 22:37:14 +0000 | [diff] [blame] | 746 | bool CodeGenModule::MayDeferGeneration(const ValueDecl *Global) { |
Argyrios Kyrtzidis | 90e99a8 | 2010-07-29 18:15:58 +0000 | [diff] [blame] | 747 | // Never defer when EmitAllDecls is specified. |
| 748 | if (Features.EmitAllDecls) |
Daniel Dunbar | 73241df | 2009-02-13 21:18:01 +0000 | [diff] [blame] | 749 | return false; |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 750 | |
Argyrios Kyrtzidis | 4ac7c0b | 2010-07-29 20:08:05 +0000 | [diff] [blame] | 751 | return !getContext().DeclMustBeEmitted(Global); |
Daniel Dunbar | 73241df | 2009-02-13 21:18:01 +0000 | [diff] [blame] | 752 | } |
| 753 | |
Rafael Espindola | 6a83670 | 2010-03-04 18:17:24 +0000 | [diff] [blame] | 754 | llvm::Constant *CodeGenModule::GetWeakRefReference(const ValueDecl *VD) { |
| 755 | const AliasAttr *AA = VD->getAttr<AliasAttr>(); |
| 756 | assert(AA && "No alias?"); |
| 757 | |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 758 | llvm::Type *DeclTy = getTypes().ConvertTypeForMem(VD->getType()); |
Rafael Espindola | 6a83670 | 2010-03-04 18:17:24 +0000 | [diff] [blame] | 759 | |
Rafael Espindola | 6a83670 | 2010-03-04 18:17:24 +0000 | [diff] [blame] | 760 | // See if there is already something with the target's name in the module. |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 761 | llvm::GlobalValue *Entry = GetGlobalValue(AA->getAliasee()); |
Rafael Espindola | 6a83670 | 2010-03-04 18:17:24 +0000 | [diff] [blame] | 762 | |
| 763 | llvm::Constant *Aliasee; |
| 764 | if (isa<llvm::FunctionType>(DeclTy)) |
Anders Carlsson | 1faa89f | 2011-02-05 04:35:53 +0000 | [diff] [blame] | 765 | Aliasee = GetOrCreateLLVMFunction(AA->getAliasee(), DeclTy, GlobalDecl(), |
| 766 | /*ForVTable=*/false); |
Rafael Espindola | 6a83670 | 2010-03-04 18:17:24 +0000 | [diff] [blame] | 767 | else |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 768 | Aliasee = GetOrCreateLLVMGlobal(AA->getAliasee(), |
Rafael Espindola | 6a83670 | 2010-03-04 18:17:24 +0000 | [diff] [blame] | 769 | llvm::PointerType::getUnqual(DeclTy), 0); |
| 770 | if (!Entry) { |
| 771 | llvm::GlobalValue* F = cast<llvm::GlobalValue>(Aliasee); |
| 772 | F->setLinkage(llvm::Function::ExternalWeakLinkage); |
| 773 | WeakRefReferences.insert(F); |
| 774 | } |
| 775 | |
| 776 | return Aliasee; |
| 777 | } |
| 778 | |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 779 | void CodeGenModule::EmitGlobal(GlobalDecl GD) { |
Anders Carlsson | 4a6835e | 2009-09-10 23:38:47 +0000 | [diff] [blame] | 780 | const ValueDecl *Global = cast<ValueDecl>(GD.getDecl()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 781 | |
Rafael Espindola | 6a83670 | 2010-03-04 18:17:24 +0000 | [diff] [blame] | 782 | // Weak references don't produce any output by themselves. |
| 783 | if (Global->hasAttr<WeakRefAttr>()) |
| 784 | return; |
| 785 | |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 786 | // If this is an alias definition (which otherwise looks like a declaration) |
| 787 | // emit it now. |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 788 | if (Global->hasAttr<AliasAttr>()) |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 789 | return EmitAliasDefinition(GD); |
Daniel Dunbar | 219df66 | 2008-09-08 23:44:31 +0000 | [diff] [blame] | 790 | |
Peter Collingbourne | d51e43a | 2011-10-06 18:29:46 +0000 | [diff] [blame] | 791 | // If this is CUDA, be selective about which declarations we emit. |
| 792 | if (Features.CUDA) { |
| 793 | if (CodeGenOpts.CUDAIsDevice) { |
| 794 | if (!Global->hasAttr<CUDADeviceAttr>() && |
| 795 | !Global->hasAttr<CUDAGlobalAttr>() && |
| 796 | !Global->hasAttr<CUDAConstantAttr>() && |
| 797 | !Global->hasAttr<CUDASharedAttr>()) |
| 798 | return; |
| 799 | } else { |
| 800 | if (!Global->hasAttr<CUDAHostAttr>() && ( |
| 801 | Global->hasAttr<CUDADeviceAttr>() || |
| 802 | Global->hasAttr<CUDAConstantAttr>() || |
| 803 | Global->hasAttr<CUDASharedAttr>())) |
| 804 | return; |
| 805 | } |
| 806 | } |
| 807 | |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 808 | // Ignore declarations, they will be emitted on their first use. |
Daniel Dunbar | 5e1e1f9 | 2009-03-19 08:27:24 +0000 | [diff] [blame] | 809 | if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(Global)) { |
Daniel Dunbar | 73241df | 2009-02-13 21:18:01 +0000 | [diff] [blame] | 810 | // Forward declarations are emitted lazily on first use. |
Nick Lewycky | dce67a7 | 2011-07-18 05:26:13 +0000 | [diff] [blame] | 811 | if (!FD->doesThisDeclarationHaveABody()) { |
| 812 | if (!FD->doesDeclarationForceExternallyVisibleDefinition()) |
| 813 | return; |
| 814 | |
| 815 | const FunctionDecl *InlineDefinition = 0; |
| 816 | FD->getBody(InlineDefinition); |
| 817 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 818 | StringRef MangledName = getMangledName(GD); |
Nick Lewycky | dce67a7 | 2011-07-18 05:26:13 +0000 | [diff] [blame] | 819 | llvm::StringMap<GlobalDecl>::iterator DDI = |
| 820 | DeferredDecls.find(MangledName); |
| 821 | if (DDI != DeferredDecls.end()) |
| 822 | DeferredDecls.erase(DDI); |
| 823 | EmitGlobalDefinition(InlineDefinition); |
Daniel Dunbar | 73241df | 2009-02-13 21:18:01 +0000 | [diff] [blame] | 824 | return; |
Nick Lewycky | dce67a7 | 2011-07-18 05:26:13 +0000 | [diff] [blame] | 825 | } |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 826 | } else { |
| 827 | const VarDecl *VD = cast<VarDecl>(Global); |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 828 | assert(VD->isFileVarDecl() && "Cannot emit local var decl as global."); |
| 829 | |
Douglas Gregor | a9a55c0 | 2010-02-06 05:15:45 +0000 | [diff] [blame] | 830 | if (VD->isThisDeclarationADefinition() != VarDecl::Definition) |
Douglas Gregor | b6c8c8b | 2009-04-21 17:11:58 +0000 | [diff] [blame] | 831 | return; |
Nate Begeman | 4c13b7a | 2008-04-20 06:29:50 +0000 | [diff] [blame] | 832 | } |
| 833 | |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 834 | // Defer code generation when possible if this is a static definition, inline |
| 835 | // function etc. These we only want to emit if they are used. |
Chris Lattner | 4357a82 | 2010-04-13 17:39:09 +0000 | [diff] [blame] | 836 | if (!MayDeferGeneration(Global)) { |
| 837 | // Emit the definition if it can't be deferred. |
| 838 | EmitGlobalDefinition(GD); |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 839 | return; |
| 840 | } |
John McCall | bf40cb5 | 2010-07-15 23:40:35 +0000 | [diff] [blame] | 841 | |
| 842 | // If we're deferring emission of a C++ variable with an |
| 843 | // initializer, remember the order in which it appeared in the file. |
| 844 | if (getLangOptions().CPlusPlus && isa<VarDecl>(Global) && |
| 845 | cast<VarDecl>(Global)->hasInit()) { |
| 846 | DelayedCXXInitPosition[Global] = CXXGlobalInits.size(); |
| 847 | CXXGlobalInits.push_back(0); |
| 848 | } |
Chris Lattner | 4357a82 | 2010-04-13 17:39:09 +0000 | [diff] [blame] | 849 | |
| 850 | // If the value has already been used, add it directly to the |
| 851 | // DeferredDeclsToEmit list. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 852 | StringRef MangledName = getMangledName(GD); |
Chris Lattner | 4357a82 | 2010-04-13 17:39:09 +0000 | [diff] [blame] | 853 | if (GetGlobalValue(MangledName)) |
| 854 | DeferredDeclsToEmit.push_back(GD); |
| 855 | else { |
| 856 | // Otherwise, remember that we saw a deferred decl with this name. The |
| 857 | // first use of the mangled name will cause it to move into |
| 858 | // DeferredDeclsToEmit. |
| 859 | DeferredDecls[MangledName] = GD; |
| 860 | } |
Nate Begeman | 4c13b7a | 2008-04-20 06:29:50 +0000 | [diff] [blame] | 861 | } |
| 862 | |
Rafael Espindola | a411d2f | 2011-10-26 20:41:06 +0000 | [diff] [blame] | 863 | namespace { |
| 864 | struct FunctionIsDirectlyRecursive : |
| 865 | public RecursiveASTVisitor<FunctionIsDirectlyRecursive> { |
| 866 | const StringRef Name; |
Rafael Espindola | bcf6b98 | 2011-12-19 14:41:01 +0000 | [diff] [blame] | 867 | const Builtin::Context &BI; |
Rafael Espindola | a411d2f | 2011-10-26 20:41:06 +0000 | [diff] [blame] | 868 | bool Result; |
Rafael Espindola | bcf6b98 | 2011-12-19 14:41:01 +0000 | [diff] [blame] | 869 | FunctionIsDirectlyRecursive(StringRef N, const Builtin::Context &C) : |
| 870 | Name(N), BI(C), Result(false) { |
Rafael Espindola | a411d2f | 2011-10-26 20:41:06 +0000 | [diff] [blame] | 871 | } |
| 872 | typedef RecursiveASTVisitor<FunctionIsDirectlyRecursive> Base; |
| 873 | |
| 874 | bool TraverseCallExpr(CallExpr *E) { |
Rafael Espindola | bcf6b98 | 2011-12-19 14:41:01 +0000 | [diff] [blame] | 875 | const FunctionDecl *FD = E->getDirectCallee(); |
| 876 | if (!FD) |
Rafael Espindola | a411d2f | 2011-10-26 20:41:06 +0000 | [diff] [blame] | 877 | return true; |
Rafael Espindola | bcf6b98 | 2011-12-19 14:41:01 +0000 | [diff] [blame] | 878 | AsmLabelAttr *Attr = FD->getAttr<AsmLabelAttr>(); |
| 879 | if (Attr && Name == Attr->getLabel()) { |
| 880 | Result = true; |
| 881 | return false; |
| 882 | } |
| 883 | unsigned BuiltinID = FD->getBuiltinID(); |
| 884 | if (!BuiltinID) |
Rafael Espindola | a411d2f | 2011-10-26 20:41:06 +0000 | [diff] [blame] | 885 | return true; |
Rafael Espindola | bcf6b98 | 2011-12-19 14:41:01 +0000 | [diff] [blame] | 886 | const char *BuiltinName = BI.GetName(BuiltinID) + strlen("__builtin_"); |
| 887 | if (Name == BuiltinName) { |
Rafael Espindola | a411d2f | 2011-10-26 20:41:06 +0000 | [diff] [blame] | 888 | Result = true; |
| 889 | return false; |
| 890 | } |
| 891 | return true; |
| 892 | } |
| 893 | }; |
| 894 | } |
| 895 | |
Rafael Espindola | bcf6b98 | 2011-12-19 14:41:01 +0000 | [diff] [blame] | 896 | // isTriviallyRecursive - Check if this function calls another |
| 897 | // decl that, because of the asm attribute or the other decl being a builtin, |
| 898 | // ends up pointing to itself. |
Rafael Espindola | a411d2f | 2011-10-26 20:41:06 +0000 | [diff] [blame] | 899 | bool |
Rafael Espindola | bcf6b98 | 2011-12-19 14:41:01 +0000 | [diff] [blame] | 900 | CodeGenModule::isTriviallyRecursive(const FunctionDecl *FD) { |
| 901 | StringRef Name; |
| 902 | if (getCXXABI().getMangleContext().shouldMangleDeclName(FD)) { |
| 903 | // asm labels are a special king of mangling we have to support. |
| 904 | AsmLabelAttr *Attr = FD->getAttr<AsmLabelAttr>(); |
| 905 | if (!Attr) |
| 906 | return false; |
| 907 | Name = Attr->getLabel(); |
| 908 | } else { |
| 909 | Name = FD->getName(); |
| 910 | } |
Rafael Espindola | a411d2f | 2011-10-26 20:41:06 +0000 | [diff] [blame] | 911 | |
Rafael Espindola | bcf6b98 | 2011-12-19 14:41:01 +0000 | [diff] [blame] | 912 | FunctionIsDirectlyRecursive Walker(Name, Context.BuiltinInfo); |
| 913 | Walker.TraverseFunctionDecl(const_cast<FunctionDecl*>(FD)); |
Rafael Espindola | a411d2f | 2011-10-26 20:41:06 +0000 | [diff] [blame] | 914 | return Walker.Result; |
| 915 | } |
| 916 | |
| 917 | bool |
| 918 | CodeGenModule::shouldEmitFunction(const FunctionDecl *F) { |
| 919 | if (getFunctionLinkage(F) != llvm::Function::AvailableExternallyLinkage) |
| 920 | return true; |
Rafael Espindola | cc4889f | 2011-10-28 20:43:56 +0000 | [diff] [blame] | 921 | if (CodeGenOpts.OptimizationLevel == 0 && |
| 922 | !F->hasAttr<AlwaysInlineAttr>()) |
Rafael Espindola | a411d2f | 2011-10-26 20:41:06 +0000 | [diff] [blame] | 923 | return false; |
| 924 | // PR9614. Avoid cases where the source code is lying to us. An available |
| 925 | // externally function should have an equivalent function somewhere else, |
| 926 | // but a function that calls itself is clearly not equivalent to the real |
| 927 | // implementation. |
| 928 | // This happens in glibc's btowc and in some configure checks. |
Rafael Espindola | bcf6b98 | 2011-12-19 14:41:01 +0000 | [diff] [blame] | 929 | return !isTriviallyRecursive(F); |
Rafael Espindola | a411d2f | 2011-10-26 20:41:06 +0000 | [diff] [blame] | 930 | } |
| 931 | |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 932 | void CodeGenModule::EmitGlobalDefinition(GlobalDecl GD) { |
Anders Carlsson | 4a6835e | 2009-09-10 23:38:47 +0000 | [diff] [blame] | 933 | const ValueDecl *D = cast<ValueDecl>(GD.getDecl()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 934 | |
Dan Gohman | cb421fa | 2010-04-19 16:39:44 +0000 | [diff] [blame] | 935 | PrettyStackTraceDecl CrashInfo(const_cast<ValueDecl *>(D), D->getLocation(), |
Anders Carlsson | 8e2efcc | 2009-10-27 14:32:27 +0000 | [diff] [blame] | 936 | Context.getSourceManager(), |
| 937 | "Generating code for declaration"); |
| 938 | |
Douglas Gregor | 44eac33 | 2010-07-13 06:02:28 +0000 | [diff] [blame] | 939 | if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) { |
| 940 | // At -O0, don't generate IR for functions with available_externally |
| 941 | // linkage. |
Rafael Espindola | a411d2f | 2011-10-26 20:41:06 +0000 | [diff] [blame] | 942 | if (!shouldEmitFunction(Function)) |
Douglas Gregor | 44eac33 | 2010-07-13 06:02:28 +0000 | [diff] [blame] | 943 | return; |
Anders Carlsson | 7270ee4 | 2010-03-23 04:31:31 +0000 | [diff] [blame] | 944 | |
Douglas Gregor | 44eac33 | 2010-07-13 06:02:28 +0000 | [diff] [blame] | 945 | if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { |
Eli Friedman | 7dcdf5b | 2011-05-06 17:27:27 +0000 | [diff] [blame] | 946 | // Make sure to emit the definition(s) before we emit the thunks. |
| 947 | // This is necessary for the generation of certain thunks. |
| 948 | if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(Method)) |
| 949 | EmitCXXConstructor(CD, GD.getCtorType()); |
| 950 | else if (const CXXDestructorDecl *DD =dyn_cast<CXXDestructorDecl>(Method)) |
| 951 | EmitCXXDestructor(DD, GD.getDtorType()); |
| 952 | else |
| 953 | EmitGlobalFunctionDefinition(GD); |
| 954 | |
Douglas Gregor | 44eac33 | 2010-07-13 06:02:28 +0000 | [diff] [blame] | 955 | if (Method->isVirtual()) |
| 956 | getVTables().EmitThunks(GD); |
| 957 | |
Eli Friedman | 7dcdf5b | 2011-05-06 17:27:27 +0000 | [diff] [blame] | 958 | return; |
Douglas Gregor | 44eac33 | 2010-07-13 06:02:28 +0000 | [diff] [blame] | 959 | } |
Chris Lattner | b5e8156 | 2010-04-13 17:57:11 +0000 | [diff] [blame] | 960 | |
Chris Lattner | b5e8156 | 2010-04-13 17:57:11 +0000 | [diff] [blame] | 961 | return EmitGlobalFunctionDefinition(GD); |
Douglas Gregor | 44eac33 | 2010-07-13 06:02:28 +0000 | [diff] [blame] | 962 | } |
Chris Lattner | b5e8156 | 2010-04-13 17:57:11 +0000 | [diff] [blame] | 963 | |
| 964 | if (const VarDecl *VD = dyn_cast<VarDecl>(D)) |
| 965 | return EmitGlobalVarDefinition(VD); |
Chris Lattner | 4357a82 | 2010-04-13 17:39:09 +0000 | [diff] [blame] | 966 | |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 967 | llvm_unreachable("Invalid argument to EmitGlobalDefinition()"); |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 968 | } |
| 969 | |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 970 | /// GetOrCreateLLVMFunction - If the specified mangled name is not in the |
| 971 | /// module, create and return an llvm Function with the specified type. If there |
| 972 | /// is something in the module with the specified name, return it potentially |
| 973 | /// bitcasted to the right type. |
| 974 | /// |
| 975 | /// If D is non-null, it specifies a decl that correspond to this. This is used |
| 976 | /// to set the attributes on the function when it is first created. |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 977 | llvm::Constant * |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 978 | CodeGenModule::GetOrCreateLLVMFunction(StringRef MangledName, |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 979 | llvm::Type *Ty, |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 980 | GlobalDecl D, bool ForVTable, |
| 981 | llvm::Attributes ExtraAttrs) { |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 982 | // Lookup the entry, lazily creating it if necessary. |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 983 | llvm::GlobalValue *Entry = GetGlobalValue(MangledName); |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 984 | if (Entry) { |
Rafael Espindola | 6a83670 | 2010-03-04 18:17:24 +0000 | [diff] [blame] | 985 | if (WeakRefReferences.count(Entry)) { |
| 986 | const FunctionDecl *FD = cast_or_null<FunctionDecl>(D.getDecl()); |
| 987 | if (FD && !FD->hasAttr<WeakAttr>()) |
Anders Carlsson | 7270ee4 | 2010-03-23 04:31:31 +0000 | [diff] [blame] | 988 | Entry->setLinkage(llvm::Function::ExternalLinkage); |
Rafael Espindola | 6a83670 | 2010-03-04 18:17:24 +0000 | [diff] [blame] | 989 | |
| 990 | WeakRefReferences.erase(Entry); |
| 991 | } |
| 992 | |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 993 | if (Entry->getType()->getElementType() == Ty) |
| 994 | return Entry; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 995 | |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 996 | // Make sure the result is of the correct type. |
Chris Lattner | 9cbe4f0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 997 | return llvm::ConstantExpr::getBitCast(Entry, Ty->getPointerTo()); |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 998 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 999 | |
Eli Friedman | 654ad40 | 2009-11-09 05:07:37 +0000 | [diff] [blame] | 1000 | // This function doesn't have a complete type (for example, the return |
| 1001 | // type is an incomplete struct). Use a fake type instead, and make |
| 1002 | // sure not to try to set attributes. |
| 1003 | bool IsIncompleteFunction = false; |
John McCall | 784f211 | 2010-04-28 00:00:30 +0000 | [diff] [blame] | 1004 | |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1005 | llvm::FunctionType *FTy; |
John McCall | 784f211 | 2010-04-28 00:00:30 +0000 | [diff] [blame] | 1006 | if (isa<llvm::FunctionType>(Ty)) { |
| 1007 | FTy = cast<llvm::FunctionType>(Ty); |
| 1008 | } else { |
John McCall | 0774cb8 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 1009 | FTy = llvm::FunctionType::get(VoidTy, false); |
Eli Friedman | 654ad40 | 2009-11-09 05:07:37 +0000 | [diff] [blame] | 1010 | IsIncompleteFunction = true; |
| 1011 | } |
Chris Lattner | bcaedae | 2010-06-30 19:14:05 +0000 | [diff] [blame] | 1012 | |
John McCall | 784f211 | 2010-04-28 00:00:30 +0000 | [diff] [blame] | 1013 | llvm::Function *F = llvm::Function::Create(FTy, |
Eli Friedman | 654ad40 | 2009-11-09 05:07:37 +0000 | [diff] [blame] | 1014 | llvm::Function::ExternalLinkage, |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 1015 | MangledName, &getModule()); |
| 1016 | assert(F->getName() == MangledName && "name was uniqued!"); |
Eli Friedman | 654ad40 | 2009-11-09 05:07:37 +0000 | [diff] [blame] | 1017 | if (D.getDecl()) |
Anders Carlsson | b2bcf1c | 2010-02-06 02:44:09 +0000 | [diff] [blame] | 1018 | SetFunctionAttributes(D, F, IsIncompleteFunction); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1019 | if (ExtraAttrs != llvm::Attribute::None) |
| 1020 | F->addFnAttr(ExtraAttrs); |
Eli Friedman | 654ad40 | 2009-11-09 05:07:37 +0000 | [diff] [blame] | 1021 | |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 1022 | // This is the first use or definition of a mangled name. If there is a |
| 1023 | // deferred decl with this name, remember that we need to emit it at the end |
| 1024 | // of the file. |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 1025 | llvm::StringMap<GlobalDecl>::iterator DDI = DeferredDecls.find(MangledName); |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 1026 | if (DDI != DeferredDecls.end()) { |
| 1027 | // Move the potentially referenced deferred decl to the DeferredDeclsToEmit |
| 1028 | // list, and remove it from DeferredDecls (since we don't need it anymore). |
| 1029 | DeferredDeclsToEmit.push_back(DDI->second); |
| 1030 | DeferredDecls.erase(DDI); |
John McCall | bfdcdc8 | 2010-12-15 04:00:32 +0000 | [diff] [blame] | 1031 | |
| 1032 | // Otherwise, there are cases we have to worry about where we're |
| 1033 | // using a declaration for which we must emit a definition but where |
| 1034 | // we might not find a top-level definition: |
| 1035 | // - member functions defined inline in their classes |
| 1036 | // - friend functions defined inline in some class |
| 1037 | // - special member functions with implicit definitions |
| 1038 | // If we ever change our AST traversal to walk into class methods, |
| 1039 | // this will be unnecessary. |
Anders Carlsson | 1faa89f | 2011-02-05 04:35:53 +0000 | [diff] [blame] | 1040 | // |
| 1041 | // We also don't emit a definition for a function if it's going to be an entry |
| 1042 | // in a vtable, unless it's already marked as used. |
Rafael Espindola | 01de7a4 | 2011-02-03 06:30:58 +0000 | [diff] [blame] | 1043 | } else if (getLangOptions().CPlusPlus && D.getDecl()) { |
John McCall | bfdcdc8 | 2010-12-15 04:00:32 +0000 | [diff] [blame] | 1044 | // Look for a declaration that's lexically in a record. |
| 1045 | const FunctionDecl *FD = cast<FunctionDecl>(D.getDecl()); |
| 1046 | do { |
| 1047 | if (isa<CXXRecordDecl>(FD->getLexicalDeclContext())) { |
Anders Carlsson | 1faa89f | 2011-02-05 04:35:53 +0000 | [diff] [blame] | 1048 | if (FD->isImplicit() && !ForVTable) { |
John McCall | bfdcdc8 | 2010-12-15 04:00:32 +0000 | [diff] [blame] | 1049 | assert(FD->isUsed() && "Sema didn't mark implicit function as used!"); |
Douglas Gregor | a29bf41 | 2011-02-09 02:03:05 +0000 | [diff] [blame] | 1050 | DeferredDeclsToEmit.push_back(D.getWithDecl(FD)); |
John McCall | bfdcdc8 | 2010-12-15 04:00:32 +0000 | [diff] [blame] | 1051 | break; |
Sean Hunt | 10620eb | 2011-05-06 20:44:56 +0000 | [diff] [blame] | 1052 | } else if (FD->doesThisDeclarationHaveABody()) { |
Douglas Gregor | a29bf41 | 2011-02-09 02:03:05 +0000 | [diff] [blame] | 1053 | DeferredDeclsToEmit.push_back(D.getWithDecl(FD)); |
John McCall | bfdcdc8 | 2010-12-15 04:00:32 +0000 | [diff] [blame] | 1054 | break; |
| 1055 | } |
Rafael Espindola | 7b9a5aa | 2010-03-02 21:28:26 +0000 | [diff] [blame] | 1056 | } |
John McCall | bfdcdc8 | 2010-12-15 04:00:32 +0000 | [diff] [blame] | 1057 | FD = FD->getPreviousDeclaration(); |
| 1058 | } while (FD); |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 1059 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1060 | |
John McCall | 784f211 | 2010-04-28 00:00:30 +0000 | [diff] [blame] | 1061 | // Make sure the result is of the requested type. |
| 1062 | if (!IsIncompleteFunction) { |
| 1063 | assert(F->getType()->getElementType() == Ty); |
| 1064 | return F; |
| 1065 | } |
| 1066 | |
Chris Lattner | 9cbe4f0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 1067 | llvm::Type *PTy = llvm::PointerType::getUnqual(Ty); |
John McCall | 784f211 | 2010-04-28 00:00:30 +0000 | [diff] [blame] | 1068 | return llvm::ConstantExpr::getBitCast(F, PTy); |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 1069 | } |
| 1070 | |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 1071 | /// GetAddrOfFunction - Return the address of the given function. If Ty is |
| 1072 | /// non-null, then this function will use the specified type if it has to |
| 1073 | /// create it (this occurs when we see a definition of the function). |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 1074 | llvm::Constant *CodeGenModule::GetAddrOfFunction(GlobalDecl GD, |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1075 | llvm::Type *Ty, |
Anders Carlsson | 1faa89f | 2011-02-05 04:35:53 +0000 | [diff] [blame] | 1076 | bool ForVTable) { |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 1077 | // If there was no specific requested type, just convert it now. |
| 1078 | if (!Ty) |
Anders Carlsson | 4a6835e | 2009-09-10 23:38:47 +0000 | [diff] [blame] | 1079 | Ty = getTypes().ConvertType(cast<ValueDecl>(GD.getDecl())->getType()); |
Chris Lattner | bcaedae | 2010-06-30 19:14:05 +0000 | [diff] [blame] | 1080 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1081 | StringRef MangledName = getMangledName(GD); |
Anders Carlsson | 1faa89f | 2011-02-05 04:35:53 +0000 | [diff] [blame] | 1082 | return GetOrCreateLLVMFunction(MangledName, Ty, GD, ForVTable); |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 1083 | } |
Eli Friedman | 77ba708 | 2008-05-30 19:50:47 +0000 | [diff] [blame] | 1084 | |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 1085 | /// CreateRuntimeFunction - Create a new runtime function with the specified |
| 1086 | /// type and name. |
| 1087 | llvm::Constant * |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1088 | CodeGenModule::CreateRuntimeFunction(llvm::FunctionType *FTy, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1089 | StringRef Name, |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1090 | llvm::Attributes ExtraAttrs) { |
| 1091 | return GetOrCreateLLVMFunction(Name, FTy, GlobalDecl(), /*ForVTable=*/false, |
| 1092 | ExtraAttrs); |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 1093 | } |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 1094 | |
Douglas Gregor | da55074 | 2011-05-07 22:06:45 +0000 | [diff] [blame] | 1095 | static bool DeclIsConstantGlobal(ASTContext &Context, const VarDecl *D, |
| 1096 | bool ConstantInit) { |
John McCall | 8878686 | 2010-02-08 21:46:50 +0000 | [diff] [blame] | 1097 | if (!D->getType().isConstant(Context) && !D->getType()->isReferenceType()) |
Eli Friedman | 20e098b | 2009-12-11 21:23:03 +0000 | [diff] [blame] | 1098 | return false; |
Douglas Gregor | da55074 | 2011-05-07 22:06:45 +0000 | [diff] [blame] | 1099 | |
| 1100 | if (Context.getLangOptions().CPlusPlus) { |
| 1101 | if (const RecordType *Record |
| 1102 | = Context.getBaseElementType(D->getType())->getAs<RecordType>()) |
Douglas Gregor | 2bb1101 | 2011-05-13 01:05:07 +0000 | [diff] [blame] | 1103 | return ConstantInit && |
| 1104 | cast<CXXRecordDecl>(Record->getDecl())->isPOD() && |
| 1105 | !cast<CXXRecordDecl>(Record->getDecl())->hasMutableFields(); |
Eli Friedman | 20e098b | 2009-12-11 21:23:03 +0000 | [diff] [blame] | 1106 | } |
Douglas Gregor | da55074 | 2011-05-07 22:06:45 +0000 | [diff] [blame] | 1107 | |
Eli Friedman | 20e098b | 2009-12-11 21:23:03 +0000 | [diff] [blame] | 1108 | return true; |
| 1109 | } |
| 1110 | |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 1111 | /// GetOrCreateLLVMGlobal - If the specified mangled name is not in the module, |
| 1112 | /// create and return an llvm GlobalVariable with the specified type. If there |
| 1113 | /// is something in the module with the specified name, return it potentially |
| 1114 | /// bitcasted to the right type. |
| 1115 | /// |
| 1116 | /// If D is non-null, it specifies a decl that correspond to this. This is used |
| 1117 | /// to set the attributes on the global when it is first created. |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 1118 | llvm::Constant * |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1119 | CodeGenModule::GetOrCreateLLVMGlobal(StringRef MangledName, |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1120 | llvm::PointerType *Ty, |
Rafael Espindola | c532b50 | 2011-01-18 21:07:57 +0000 | [diff] [blame] | 1121 | const VarDecl *D, |
| 1122 | bool UnnamedAddr) { |
Daniel Dunbar | 3c827a7 | 2008-08-05 23:31:02 +0000 | [diff] [blame] | 1123 | // Lookup the entry, lazily creating it if necessary. |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 1124 | llvm::GlobalValue *Entry = GetGlobalValue(MangledName); |
Chris Lattner | 99b5361 | 2009-03-21 08:03:33 +0000 | [diff] [blame] | 1125 | if (Entry) { |
Rafael Espindola | 6a83670 | 2010-03-04 18:17:24 +0000 | [diff] [blame] | 1126 | if (WeakRefReferences.count(Entry)) { |
| 1127 | if (D && !D->hasAttr<WeakAttr>()) |
Anders Carlsson | 7270ee4 | 2010-03-23 04:31:31 +0000 | [diff] [blame] | 1128 | Entry->setLinkage(llvm::Function::ExternalLinkage); |
Rafael Espindola | 6a83670 | 2010-03-04 18:17:24 +0000 | [diff] [blame] | 1129 | |
| 1130 | WeakRefReferences.erase(Entry); |
| 1131 | } |
| 1132 | |
Rafael Espindola | c532b50 | 2011-01-18 21:07:57 +0000 | [diff] [blame] | 1133 | if (UnnamedAddr) |
| 1134 | Entry->setUnnamedAddr(true); |
| 1135 | |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 1136 | if (Entry->getType() == Ty) |
Chris Lattner | 570585c | 2009-03-21 09:16:30 +0000 | [diff] [blame] | 1137 | return Entry; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1138 | |
Chris Lattner | 99b5361 | 2009-03-21 08:03:33 +0000 | [diff] [blame] | 1139 | // Make sure the result is of the correct type. |
Owen Anderson | 3c4972d | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 1140 | return llvm::ConstantExpr::getBitCast(Entry, Ty); |
Daniel Dunbar | 4998888 | 2009-01-13 02:25:00 +0000 | [diff] [blame] | 1141 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1142 | |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 1143 | // This is the first use or definition of a mangled name. If there is a |
| 1144 | // deferred decl with this name, remember that we need to emit it at the end |
| 1145 | // of the file. |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 1146 | llvm::StringMap<GlobalDecl>::iterator DDI = DeferredDecls.find(MangledName); |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 1147 | if (DDI != DeferredDecls.end()) { |
| 1148 | // Move the potentially referenced deferred decl to the DeferredDeclsToEmit |
| 1149 | // list, and remove it from DeferredDecls (since we don't need it anymore). |
| 1150 | DeferredDeclsToEmit.push_back(DDI->second); |
| 1151 | DeferredDecls.erase(DDI); |
| 1152 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1153 | |
| 1154 | llvm::GlobalVariable *GV = |
| 1155 | new llvm::GlobalVariable(getModule(), Ty->getElementType(), false, |
Chris Lattner | 99b5361 | 2009-03-21 08:03:33 +0000 | [diff] [blame] | 1156 | llvm::GlobalValue::ExternalLinkage, |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 1157 | 0, MangledName, 0, |
Eli Friedman | 56ebe50 | 2009-04-19 21:05:03 +0000 | [diff] [blame] | 1158 | false, Ty->getAddressSpace()); |
Chris Lattner | 99b5361 | 2009-03-21 08:03:33 +0000 | [diff] [blame] | 1159 | |
| 1160 | // Handle things which are present even on external declarations. |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 1161 | if (D) { |
Mike Stump | f5408fe | 2009-05-16 07:57:57 +0000 | [diff] [blame] | 1162 | // FIXME: This code is overly simple and should be merged with other global |
| 1163 | // handling. |
Douglas Gregor | da55074 | 2011-05-07 22:06:45 +0000 | [diff] [blame] | 1164 | GV->setConstant(DeclIsConstantGlobal(Context, D, false)); |
Chris Lattner | 99b5361 | 2009-03-21 08:03:33 +0000 | [diff] [blame] | 1165 | |
John McCall | 110e8e5 | 2010-10-29 22:22:43 +0000 | [diff] [blame] | 1166 | // Set linkage and visibility in case we never see a definition. |
John McCall | af14603 | 2010-10-30 11:50:40 +0000 | [diff] [blame] | 1167 | NamedDecl::LinkageInfo LV = D->getLinkageAndVisibility(); |
| 1168 | if (LV.linkage() != ExternalLinkage) { |
John McCall | 15e310a | 2011-02-19 02:53:41 +0000 | [diff] [blame] | 1169 | // Don't set internal linkage on declarations. |
John McCall | 110e8e5 | 2010-10-29 22:22:43 +0000 | [diff] [blame] | 1170 | } else { |
| 1171 | if (D->hasAttr<DLLImportAttr>()) |
| 1172 | GV->setLinkage(llvm::GlobalValue::DLLImportLinkage); |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 1173 | else if (D->hasAttr<WeakAttr>() || D->isWeakImported()) |
John McCall | 110e8e5 | 2010-10-29 22:22:43 +0000 | [diff] [blame] | 1174 | GV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage); |
Chris Lattner | 99b5361 | 2009-03-21 08:03:33 +0000 | [diff] [blame] | 1175 | |
John McCall | af14603 | 2010-10-30 11:50:40 +0000 | [diff] [blame] | 1176 | // Set visibility on a declaration only if it's explicit. |
| 1177 | if (LV.visibilityExplicit()) |
| 1178 | GV->setVisibility(GetLLVMVisibility(LV.visibility())); |
John McCall | 110e8e5 | 2010-10-29 22:22:43 +0000 | [diff] [blame] | 1179 | } |
Eli Friedman | 56ebe50 | 2009-04-19 21:05:03 +0000 | [diff] [blame] | 1180 | |
| 1181 | GV->setThreadLocal(D->isThreadSpecified()); |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 1182 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1183 | |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 1184 | return GV; |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 1185 | } |
| 1186 | |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 1187 | |
Anders Carlsson | 3bd6202 | 2011-01-29 18:20:20 +0000 | [diff] [blame] | 1188 | llvm::GlobalVariable * |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1189 | CodeGenModule::CreateOrReplaceCXXRuntimeVariable(StringRef Name, |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1190 | llvm::Type *Ty, |
Anders Carlsson | 3bd6202 | 2011-01-29 18:20:20 +0000 | [diff] [blame] | 1191 | llvm::GlobalValue::LinkageTypes Linkage) { |
| 1192 | llvm::GlobalVariable *GV = getModule().getNamedGlobal(Name); |
| 1193 | llvm::GlobalVariable *OldGV = 0; |
| 1194 | |
| 1195 | |
| 1196 | if (GV) { |
| 1197 | // Check if the variable has the right type. |
| 1198 | if (GV->getType()->getElementType() == Ty) |
| 1199 | return GV; |
| 1200 | |
| 1201 | // Because C++ name mangling, the only way we can end up with an already |
| 1202 | // existing global with the same name is if it has been declared extern "C". |
Anders Carlsson | 96eaf29 | 2011-01-29 18:25:07 +0000 | [diff] [blame] | 1203 | assert(GV->isDeclaration() && "Declaration has wrong type!"); |
Anders Carlsson | 3bd6202 | 2011-01-29 18:20:20 +0000 | [diff] [blame] | 1204 | OldGV = GV; |
| 1205 | } |
| 1206 | |
| 1207 | // Create a new variable. |
| 1208 | GV = new llvm::GlobalVariable(getModule(), Ty, /*isConstant=*/true, |
| 1209 | Linkage, 0, Name); |
| 1210 | |
| 1211 | if (OldGV) { |
| 1212 | // Replace occurrences of the old variable if needed. |
| 1213 | GV->takeName(OldGV); |
| 1214 | |
| 1215 | if (!OldGV->use_empty()) { |
| 1216 | llvm::Constant *NewPtrForOldDecl = |
| 1217 | llvm::ConstantExpr::getBitCast(GV, OldGV->getType()); |
| 1218 | OldGV->replaceAllUsesWith(NewPtrForOldDecl); |
| 1219 | } |
| 1220 | |
| 1221 | OldGV->eraseFromParent(); |
| 1222 | } |
| 1223 | |
| 1224 | return GV; |
| 1225 | } |
| 1226 | |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 1227 | /// GetAddrOfGlobalVar - Return the llvm::Constant for the address of the |
| 1228 | /// given global variable. If Ty is non-null and if the global doesn't exist, |
| 1229 | /// then it will be greated with the specified type instead of whatever the |
| 1230 | /// normal requested type would be. |
| 1231 | llvm::Constant *CodeGenModule::GetAddrOfGlobalVar(const VarDecl *D, |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1232 | llvm::Type *Ty) { |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 1233 | assert(D->hasGlobalStorage() && "Not a global variable"); |
| 1234 | QualType ASTTy = D->getType(); |
| 1235 | if (Ty == 0) |
| 1236 | Ty = getTypes().ConvertTypeForMem(ASTTy); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1237 | |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1238 | llvm::PointerType *PTy = |
Peter Collingbourne | 207f4d8 | 2011-03-18 22:38:29 +0000 | [diff] [blame] | 1239 | llvm::PointerType::get(Ty, getContext().getTargetAddressSpace(ASTTy)); |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 1240 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1241 | StringRef MangledName = getMangledName(D); |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 1242 | return GetOrCreateLLVMGlobal(MangledName, PTy, D); |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 1243 | } |
| 1244 | |
| 1245 | /// CreateRuntimeVariable - Create a new runtime global variable with the |
| 1246 | /// specified type and name. |
| 1247 | llvm::Constant * |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1248 | CodeGenModule::CreateRuntimeVariable(llvm::Type *Ty, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1249 | StringRef Name) { |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 1250 | return GetOrCreateLLVMGlobal(Name, llvm::PointerType::getUnqual(Ty), 0, |
Rafael Espindola | c532b50 | 2011-01-18 21:07:57 +0000 | [diff] [blame] | 1251 | true); |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 1252 | } |
| 1253 | |
Daniel Dunbar | 03f5ad9 | 2009-04-15 22:08:45 +0000 | [diff] [blame] | 1254 | void CodeGenModule::EmitTentativeDefinition(const VarDecl *D) { |
| 1255 | assert(!D->getInit() && "Cannot emit definite definitions here!"); |
| 1256 | |
Douglas Gregor | 7520bd1 | 2009-04-21 19:28:58 +0000 | [diff] [blame] | 1257 | if (MayDeferGeneration(D)) { |
| 1258 | // If we have not seen a reference to this variable yet, place it |
| 1259 | // into the deferred declarations table to be emitted if needed |
| 1260 | // later. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1261 | StringRef MangledName = getMangledName(D); |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 1262 | if (!GetGlobalValue(MangledName)) { |
Anders Carlsson | 555b4bb | 2009-09-10 23:43:36 +0000 | [diff] [blame] | 1263 | DeferredDecls[MangledName] = D; |
Daniel Dunbar | 03f5ad9 | 2009-04-15 22:08:45 +0000 | [diff] [blame] | 1264 | return; |
Douglas Gregor | 7520bd1 | 2009-04-21 19:28:58 +0000 | [diff] [blame] | 1265 | } |
| 1266 | } |
| 1267 | |
| 1268 | // The tentative definition is the only definition. |
Daniel Dunbar | 03f5ad9 | 2009-04-15 22:08:45 +0000 | [diff] [blame] | 1269 | EmitGlobalVarDefinition(D); |
| 1270 | } |
| 1271 | |
Douglas Gregor | 6fb745b | 2010-05-13 16:44:06 +0000 | [diff] [blame] | 1272 | void CodeGenModule::EmitVTable(CXXRecordDecl *Class, bool DefinitionRequired) { |
| 1273 | if (DefinitionRequired) |
| 1274 | getVTables().GenerateClassData(getVTableLinkage(Class), Class); |
| 1275 | } |
| 1276 | |
Douglas Gregor | 4b0f21c | 2010-01-06 20:27:16 +0000 | [diff] [blame] | 1277 | llvm::GlobalVariable::LinkageTypes |
Anders Carlsson | 046c294 | 2010-04-17 20:15:18 +0000 | [diff] [blame] | 1278 | CodeGenModule::getVTableLinkage(const CXXRecordDecl *RD) { |
Eli Friedman | cb5d2d0 | 2011-06-10 21:53:06 +0000 | [diff] [blame] | 1279 | if (RD->getLinkage() != ExternalLinkage) |
Douglas Gregor | dffb801 | 2010-01-06 22:00:56 +0000 | [diff] [blame] | 1280 | return llvm::GlobalVariable::InternalLinkage; |
| 1281 | |
| 1282 | if (const CXXMethodDecl *KeyFunction |
| 1283 | = RD->getASTContext().getKeyFunction(RD)) { |
| 1284 | // If this class has a key function, use that to determine the linkage of |
| 1285 | // the vtable. |
Douglas Gregor | 4b0f21c | 2010-01-06 20:27:16 +0000 | [diff] [blame] | 1286 | const FunctionDecl *Def = 0; |
Argyrios Kyrtzidis | 06a54a3 | 2010-07-07 11:31:19 +0000 | [diff] [blame] | 1287 | if (KeyFunction->hasBody(Def)) |
Douglas Gregor | 4b0f21c | 2010-01-06 20:27:16 +0000 | [diff] [blame] | 1288 | KeyFunction = cast<CXXMethodDecl>(Def); |
Douglas Gregor | dffb801 | 2010-01-06 22:00:56 +0000 | [diff] [blame] | 1289 | |
Douglas Gregor | 4b0f21c | 2010-01-06 20:27:16 +0000 | [diff] [blame] | 1290 | switch (KeyFunction->getTemplateSpecializationKind()) { |
| 1291 | case TSK_Undeclared: |
| 1292 | case TSK_ExplicitSpecialization: |
Anders Carlsson | 6d7f847 | 2011-01-30 20:45:54 +0000 | [diff] [blame] | 1293 | // When compiling with optimizations turned on, we emit all vtables, |
| 1294 | // even if the key function is not defined in the current translation |
| 1295 | // unit. If this is the case, use available_externally linkage. |
| 1296 | if (!Def && CodeGenOpts.OptimizationLevel) |
| 1297 | return llvm::GlobalVariable::AvailableExternallyLinkage; |
| 1298 | |
Douglas Gregor | 4b0f21c | 2010-01-06 20:27:16 +0000 | [diff] [blame] | 1299 | if (KeyFunction->isInlined()) |
Fariborz Jahanian | 142f9e9 | 2011-02-04 00:01:24 +0000 | [diff] [blame] | 1300 | return !Context.getLangOptions().AppleKext ? |
| 1301 | llvm::GlobalVariable::LinkOnceODRLinkage : |
| 1302 | llvm::Function::InternalLinkage; |
Douglas Gregor | 4b0f21c | 2010-01-06 20:27:16 +0000 | [diff] [blame] | 1303 | |
| 1304 | return llvm::GlobalVariable::ExternalLinkage; |
| 1305 | |
| 1306 | case TSK_ImplicitInstantiation: |
Fariborz Jahanian | 142f9e9 | 2011-02-04 00:01:24 +0000 | [diff] [blame] | 1307 | return !Context.getLangOptions().AppleKext ? |
| 1308 | llvm::GlobalVariable::LinkOnceODRLinkage : |
| 1309 | llvm::Function::InternalLinkage; |
Anders Carlsson | f502d93 | 2011-01-24 00:46:19 +0000 | [diff] [blame] | 1310 | |
Douglas Gregor | 4b0f21c | 2010-01-06 20:27:16 +0000 | [diff] [blame] | 1311 | case TSK_ExplicitInstantiationDefinition: |
Fariborz Jahanian | 142f9e9 | 2011-02-04 00:01:24 +0000 | [diff] [blame] | 1312 | return !Context.getLangOptions().AppleKext ? |
| 1313 | llvm::GlobalVariable::WeakODRLinkage : |
| 1314 | llvm::Function::InternalLinkage; |
Anders Carlsson | f502d93 | 2011-01-24 00:46:19 +0000 | [diff] [blame] | 1315 | |
Douglas Gregor | 4b0f21c | 2010-01-06 20:27:16 +0000 | [diff] [blame] | 1316 | case TSK_ExplicitInstantiationDeclaration: |
| 1317 | // FIXME: Use available_externally linkage. However, this currently |
| 1318 | // breaks LLVM's build due to undefined symbols. |
| 1319 | // return llvm::GlobalVariable::AvailableExternallyLinkage; |
Fariborz Jahanian | 142f9e9 | 2011-02-04 00:01:24 +0000 | [diff] [blame] | 1320 | return !Context.getLangOptions().AppleKext ? |
| 1321 | llvm::GlobalVariable::LinkOnceODRLinkage : |
| 1322 | llvm::Function::InternalLinkage; |
Douglas Gregor | 4b0f21c | 2010-01-06 20:27:16 +0000 | [diff] [blame] | 1323 | } |
Douglas Gregor | dffb801 | 2010-01-06 22:00:56 +0000 | [diff] [blame] | 1324 | } |
| 1325 | |
Fariborz Jahanian | 53bad4e | 2011-02-04 00:32:39 +0000 | [diff] [blame] | 1326 | if (Context.getLangOptions().AppleKext) |
| 1327 | return llvm::Function::InternalLinkage; |
| 1328 | |
Douglas Gregor | dffb801 | 2010-01-06 22:00:56 +0000 | [diff] [blame] | 1329 | switch (RD->getTemplateSpecializationKind()) { |
| 1330 | case TSK_Undeclared: |
| 1331 | case TSK_ExplicitSpecialization: |
| 1332 | case TSK_ImplicitInstantiation: |
Douglas Gregor | dffb801 | 2010-01-06 22:00:56 +0000 | [diff] [blame] | 1333 | // FIXME: Use available_externally linkage. However, this currently |
| 1334 | // breaks LLVM's build due to undefined symbols. |
| 1335 | // return llvm::GlobalVariable::AvailableExternallyLinkage; |
Fariborz Jahanian | 142f9e9 | 2011-02-04 00:01:24 +0000 | [diff] [blame] | 1336 | case TSK_ExplicitInstantiationDeclaration: |
Fariborz Jahanian | 53bad4e | 2011-02-04 00:32:39 +0000 | [diff] [blame] | 1337 | return llvm::GlobalVariable::LinkOnceODRLinkage; |
Fariborz Jahanian | 142f9e9 | 2011-02-04 00:01:24 +0000 | [diff] [blame] | 1338 | |
| 1339 | case TSK_ExplicitInstantiationDefinition: |
Fariborz Jahanian | 53bad4e | 2011-02-04 00:32:39 +0000 | [diff] [blame] | 1340 | return llvm::GlobalVariable::WeakODRLinkage; |
Douglas Gregor | 4b0f21c | 2010-01-06 20:27:16 +0000 | [diff] [blame] | 1341 | } |
| 1342 | |
| 1343 | // Silence GCC warning. |
Fariborz Jahanian | 53bad4e | 2011-02-04 00:32:39 +0000 | [diff] [blame] | 1344 | return llvm::GlobalVariable::LinkOnceODRLinkage; |
Douglas Gregor | 4b0f21c | 2010-01-06 20:27:16 +0000 | [diff] [blame] | 1345 | } |
| 1346 | |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1347 | CharUnits CodeGenModule::GetTargetTypeStoreSize(llvm::Type *Ty) const { |
Ken Dyck | 06f486e | 2011-01-18 02:01:14 +0000 | [diff] [blame] | 1348 | return Context.toCharUnitsFromBits( |
| 1349 | TheTargetData.getTypeStoreSizeInBits(Ty)); |
Ken Dyck | 687cc4a | 2010-01-26 13:48:07 +0000 | [diff] [blame] | 1350 | } |
| 1351 | |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 1352 | void CodeGenModule::EmitGlobalVarDefinition(const VarDecl *D) { |
Chris Lattner | 8f32f71 | 2007-07-14 00:23:28 +0000 | [diff] [blame] | 1353 | llvm::Constant *Init = 0; |
Eli Friedman | 77ba708 | 2008-05-30 19:50:47 +0000 | [diff] [blame] | 1354 | QualType ASTTy = D->getType(); |
Eli Friedman | 6c6bda3 | 2010-01-08 00:50:11 +0000 | [diff] [blame] | 1355 | bool NonConstInit = false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1356 | |
Sebastian Redl | 31310a2 | 2010-02-01 20:16:42 +0000 | [diff] [blame] | 1357 | const Expr *InitExpr = D->getAnyInitializer(); |
Anders Carlsson | 3bb9269 | 2010-01-26 17:43:42 +0000 | [diff] [blame] | 1358 | |
| 1359 | if (!InitExpr) { |
Eli Friedman | cd5f4aa | 2008-05-30 20:39:54 +0000 | [diff] [blame] | 1360 | // This is a tentative definition; tentative definitions are |
Daniel Dunbar | 03f5ad9 | 2009-04-15 22:08:45 +0000 | [diff] [blame] | 1361 | // implicitly initialized with { 0 }. |
| 1362 | // |
| 1363 | // Note that tentative definitions are only emitted at the end of |
| 1364 | // a translation unit, so they should never have incomplete |
| 1365 | // type. In addition, EmitTentativeDefinition makes sure that we |
| 1366 | // never attempt to emit a tentative definition if a real one |
| 1367 | // exists. A use may still exists, however, so we still may need |
| 1368 | // to do a RAUW. |
| 1369 | assert(!ASTTy->isIncompleteType() && "Unexpected incomplete type"); |
Anders Carlsson | b0d0ea0 | 2009-08-02 21:18:22 +0000 | [diff] [blame] | 1370 | Init = EmitNullConstant(D->getType()); |
Eli Friedman | 77ba708 | 2008-05-30 19:50:47 +0000 | [diff] [blame] | 1371 | } else { |
Douglas Gregor | c446d18 | 2010-05-05 20:15:55 +0000 | [diff] [blame] | 1372 | Init = EmitConstantExpr(InitExpr, D->getType()); |
Eli Friedman | 6e656f4 | 2009-02-20 01:18:21 +0000 | [diff] [blame] | 1373 | if (!Init) { |
Anders Carlsson | 3bb9269 | 2010-01-26 17:43:42 +0000 | [diff] [blame] | 1374 | QualType T = InitExpr->getType(); |
Douglas Gregor | c446d18 | 2010-05-05 20:15:55 +0000 | [diff] [blame] | 1375 | if (D->getType()->isReferenceType()) |
| 1376 | T = D->getType(); |
| 1377 | |
Anders Carlsson | 89ed31d | 2009-08-08 23:24:23 +0000 | [diff] [blame] | 1378 | if (getLangOptions().CPlusPlus) { |
Anders Carlsson | 89ed31d | 2009-08-08 23:24:23 +0000 | [diff] [blame] | 1379 | Init = EmitNullConstant(T); |
Eli Friedman | 6c6bda3 | 2010-01-08 00:50:11 +0000 | [diff] [blame] | 1380 | NonConstInit = true; |
Anders Carlsson | 89ed31d | 2009-08-08 23:24:23 +0000 | [diff] [blame] | 1381 | } else { |
| 1382 | ErrorUnsupported(D, "static initializer"); |
| 1383 | Init = llvm::UndefValue::get(getTypes().ConvertType(T)); |
| 1384 | } |
John McCall | bf40cb5 | 2010-07-15 23:40:35 +0000 | [diff] [blame] | 1385 | } else { |
| 1386 | // We don't need an initializer, so remove the entry for the delayed |
| 1387 | // initializer position (just in case this entry was delayed). |
| 1388 | if (getLangOptions().CPlusPlus) |
| 1389 | DelayedCXXInitPosition.erase(D); |
Eli Friedman | 6e656f4 | 2009-02-20 01:18:21 +0000 | [diff] [blame] | 1390 | } |
Eli Friedman | 77ba708 | 2008-05-30 19:50:47 +0000 | [diff] [blame] | 1391 | } |
Eli Friedman | 77ba708 | 2008-05-30 19:50:47 +0000 | [diff] [blame] | 1392 | |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1393 | llvm::Type* InitType = Init->getType(); |
Chris Lattner | 570585c | 2009-03-21 09:16:30 +0000 | [diff] [blame] | 1394 | llvm::Constant *Entry = GetAddrOfGlobalVar(D, InitType); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1395 | |
Chris Lattner | 570585c | 2009-03-21 09:16:30 +0000 | [diff] [blame] | 1396 | // Strip off a bitcast if we got one back. |
| 1397 | if (llvm::ConstantExpr *CE = dyn_cast<llvm::ConstantExpr>(Entry)) { |
Chris Lattner | 9d4a15f | 2009-07-16 16:48:25 +0000 | [diff] [blame] | 1398 | assert(CE->getOpcode() == llvm::Instruction::BitCast || |
| 1399 | // all zero index gep. |
| 1400 | CE->getOpcode() == llvm::Instruction::GetElementPtr); |
Chris Lattner | 570585c | 2009-03-21 09:16:30 +0000 | [diff] [blame] | 1401 | Entry = CE->getOperand(0); |
| 1402 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1403 | |
Chris Lattner | 570585c | 2009-03-21 09:16:30 +0000 | [diff] [blame] | 1404 | // Entry is now either a Function or GlobalVariable. |
| 1405 | llvm::GlobalVariable *GV = dyn_cast<llvm::GlobalVariable>(Entry); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1406 | |
Chris Lattner | 570585c | 2009-03-21 09:16:30 +0000 | [diff] [blame] | 1407 | // We have a definition after a declaration with the wrong type. |
| 1408 | // We must make a new GlobalVariable* and update everything that used OldGV |
| 1409 | // (a declaration or tentative definition) with the new GlobalVariable* |
| 1410 | // (which will be a definition). |
| 1411 | // |
| 1412 | // This happens if there is a prototype for a global (e.g. |
| 1413 | // "extern int x[];") and then a definition of a different type (e.g. |
| 1414 | // "int x[10];"). This also happens when an initializer has a different type |
| 1415 | // from the type of the global (this happens with unions). |
Chris Lattner | 570585c | 2009-03-21 09:16:30 +0000 | [diff] [blame] | 1416 | if (GV == 0 || |
| 1417 | GV->getType()->getElementType() != InitType || |
Peter Collingbourne | 207f4d8 | 2011-03-18 22:38:29 +0000 | [diff] [blame] | 1418 | GV->getType()->getAddressSpace() != |
| 1419 | getContext().getTargetAddressSpace(ASTTy)) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1420 | |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 1421 | // Move the old entry aside so that we'll create a new one. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1422 | Entry->setName(StringRef()); |
Daniel Dunbar | 232350d | 2009-02-19 05:36:41 +0000 | [diff] [blame] | 1423 | |
Chris Lattner | 570585c | 2009-03-21 09:16:30 +0000 | [diff] [blame] | 1424 | // Make a new global with the correct type, this is now guaranteed to work. |
| 1425 | GV = cast<llvm::GlobalVariable>(GetAddrOfGlobalVar(D, InitType)); |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 1426 | |
Eli Friedman | 77ba708 | 2008-05-30 19:50:47 +0000 | [diff] [blame] | 1427 | // Replace all uses of the old global with the new global |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1428 | llvm::Constant *NewPtrForOldDecl = |
Owen Anderson | 3c4972d | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 1429 | llvm::ConstantExpr::getBitCast(GV, Entry->getType()); |
Chris Lattner | 570585c | 2009-03-21 09:16:30 +0000 | [diff] [blame] | 1430 | Entry->replaceAllUsesWith(NewPtrForOldDecl); |
Eli Friedman | 77ba708 | 2008-05-30 19:50:47 +0000 | [diff] [blame] | 1431 | |
| 1432 | // Erase the old global, since it is no longer used. |
Chris Lattner | 570585c | 2009-03-21 09:16:30 +0000 | [diff] [blame] | 1433 | cast<llvm::GlobalValue>(Entry)->eraseFromParent(); |
Chris Lattner | 8f32f71 | 2007-07-14 00:23:28 +0000 | [diff] [blame] | 1434 | } |
Devang Patel | 8e53e72 | 2007-10-26 16:31:40 +0000 | [diff] [blame] | 1435 | |
Julien Lerouge | 77f68bb | 2011-09-09 22:41:49 +0000 | [diff] [blame] | 1436 | if (D->hasAttr<AnnotateAttr>()) |
| 1437 | AddGlobalAnnotations(D, GV); |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 1438 | |
Chris Lattner | 88a69ad | 2007-07-13 05:13:43 +0000 | [diff] [blame] | 1439 | GV->setInitializer(Init); |
Chris Lattner | e78b86f | 2009-08-05 05:20:29 +0000 | [diff] [blame] | 1440 | |
| 1441 | // If it is safe to mark the global 'constant', do so now. |
| 1442 | GV->setConstant(false); |
Douglas Gregor | da55074 | 2011-05-07 22:06:45 +0000 | [diff] [blame] | 1443 | if (!NonConstInit && DeclIsConstantGlobal(Context, D, true)) |
Chris Lattner | e78b86f | 2009-08-05 05:20:29 +0000 | [diff] [blame] | 1444 | GV->setConstant(true); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1445 | |
Ken Dyck | 8b752f1 | 2010-01-27 17:10:57 +0000 | [diff] [blame] | 1446 | GV->setAlignment(getContext().getDeclAlign(D).getQuantity()); |
Fariborz Jahanian | 354e712 | 2010-10-27 16:21:54 +0000 | [diff] [blame] | 1447 | |
Chris Lattner | 88a69ad | 2007-07-13 05:13:43 +0000 | [diff] [blame] | 1448 | // Set the llvm linkage type as appropriate. |
Fariborz Jahanian | 354e712 | 2010-10-27 16:21:54 +0000 | [diff] [blame] | 1449 | llvm::GlobalValue::LinkageTypes Linkage = |
| 1450 | GetLLVMLinkageVarDefinition(D, GV); |
| 1451 | GV->setLinkage(Linkage); |
| 1452 | if (Linkage == llvm::GlobalVariable::CommonLinkage) |
Chris Lattner | e78b86f | 2009-08-05 05:20:29 +0000 | [diff] [blame] | 1453 | // common vars aren't constant even if declared const. |
| 1454 | GV->setConstant(false); |
Daniel Dunbar | 7e714cd | 2009-04-10 20:26:50 +0000 | [diff] [blame] | 1455 | |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 1456 | SetCommonAttributes(D, GV); |
Daniel Dunbar | 04d4078 | 2009-04-14 06:00:08 +0000 | [diff] [blame] | 1457 | |
John McCall | 3030eb8 | 2010-11-06 09:44:32 +0000 | [diff] [blame] | 1458 | // Emit the initializer function if necessary. |
| 1459 | if (NonConstInit) |
| 1460 | EmitCXXGlobalVarDeclInitFunc(D, GV); |
| 1461 | |
Sanjiv Gupta | 686226b | 2008-06-05 08:59:10 +0000 | [diff] [blame] | 1462 | // Emit global variable debug information. |
Eric Christopher | 73fb350 | 2011-10-13 21:45:18 +0000 | [diff] [blame] | 1463 | if (CGDebugInfo *DI = getModuleDebugInfo()) |
Sanjiv Gupta | 686226b | 2008-06-05 08:59:10 +0000 | [diff] [blame] | 1464 | DI->EmitGlobalVariable(GV, D); |
Chris Lattner | 88a69ad | 2007-07-13 05:13:43 +0000 | [diff] [blame] | 1465 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1466 | |
Fariborz Jahanian | 354e712 | 2010-10-27 16:21:54 +0000 | [diff] [blame] | 1467 | llvm::GlobalValue::LinkageTypes |
| 1468 | CodeGenModule::GetLLVMLinkageVarDefinition(const VarDecl *D, |
| 1469 | llvm::GlobalVariable *GV) { |
| 1470 | GVALinkage Linkage = getContext().GetGVALinkageForVariable(D); |
| 1471 | if (Linkage == GVA_Internal) |
| 1472 | return llvm::Function::InternalLinkage; |
| 1473 | else if (D->hasAttr<DLLImportAttr>()) |
| 1474 | return llvm::Function::DLLImportLinkage; |
| 1475 | else if (D->hasAttr<DLLExportAttr>()) |
| 1476 | return llvm::Function::DLLExportLinkage; |
| 1477 | else if (D->hasAttr<WeakAttr>()) { |
| 1478 | if (GV->isConstant()) |
| 1479 | return llvm::GlobalVariable::WeakODRLinkage; |
| 1480 | else |
| 1481 | return llvm::GlobalVariable::WeakAnyLinkage; |
| 1482 | } else if (Linkage == GVA_TemplateInstantiation || |
| 1483 | Linkage == GVA_ExplicitTemplateInstantiation) |
John McCall | 99ace16 | 2011-04-12 01:46:54 +0000 | [diff] [blame] | 1484 | return llvm::GlobalVariable::WeakODRLinkage; |
Eric Christopher | a6cf1e7 | 2010-12-02 02:45:55 +0000 | [diff] [blame] | 1485 | else if (!getLangOptions().CPlusPlus && |
| 1486 | ((!CodeGenOpts.NoCommon && !D->getAttr<NoCommonAttr>()) || |
| 1487 | D->getAttr<CommonAttr>()) && |
Fariborz Jahanian | 354e712 | 2010-10-27 16:21:54 +0000 | [diff] [blame] | 1488 | !D->hasExternalStorage() && !D->getInit() && |
Fariborz Jahanian | ab27d6e | 2011-06-20 17:50:03 +0000 | [diff] [blame] | 1489 | !D->getAttr<SectionAttr>() && !D->isThreadSpecified() && |
| 1490 | !D->getAttr<WeakImportAttr>()) { |
Fariborz Jahanian | 354e712 | 2010-10-27 16:21:54 +0000 | [diff] [blame] | 1491 | // Thread local vars aren't considered common linkage. |
| 1492 | return llvm::GlobalVariable::CommonLinkage; |
| 1493 | } |
| 1494 | return llvm::GlobalVariable::ExternalLinkage; |
| 1495 | } |
| 1496 | |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 1497 | /// ReplaceUsesOfNonProtoTypeWithRealFunction - This function is called when we |
| 1498 | /// implement a function with no prototype, e.g. "int foo() {}". If there are |
| 1499 | /// existing call uses of the old function in the module, this adjusts them to |
| 1500 | /// call the new function directly. |
| 1501 | /// |
| 1502 | /// This is not just a cleanup: the always_inline pass requires direct calls to |
| 1503 | /// functions to be able to inline them. If there is a bitcast in the way, it |
| 1504 | /// won't inline them. Instcombine normally deletes these calls, but it isn't |
| 1505 | /// run at -O0. |
| 1506 | static void ReplaceUsesOfNonProtoTypeWithRealFunction(llvm::GlobalValue *Old, |
| 1507 | llvm::Function *NewFn) { |
| 1508 | // If we're redefining a global as a function, don't transform it. |
| 1509 | llvm::Function *OldFn = dyn_cast<llvm::Function>(Old); |
| 1510 | if (OldFn == 0) return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1511 | |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1512 | llvm::Type *NewRetTy = NewFn->getReturnType(); |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1513 | SmallVector<llvm::Value*, 4> ArgList; |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 1514 | |
| 1515 | for (llvm::Value::use_iterator UI = OldFn->use_begin(), E = OldFn->use_end(); |
Benjamin Kramer | dbf02bc | 2010-04-10 11:02:40 +0000 | [diff] [blame] | 1516 | UI != E; ) { |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 1517 | // TODO: Do invokes ever occur in C code? If so, we should handle them too. |
Benjamin Kramer | dbf02bc | 2010-04-10 11:02:40 +0000 | [diff] [blame] | 1518 | llvm::Value::use_iterator I = UI++; // Increment before the CI is erased. |
| 1519 | llvm::CallInst *CI = dyn_cast<llvm::CallInst>(*I); |
Gabor Greif | 8670cd3 | 2010-07-28 09:19:33 +0000 | [diff] [blame] | 1520 | if (!CI) continue; // FIXME: when we allow Invoke, just do CallSite CS(*I) |
Gabor Greif | 35db3b9 | 2010-04-10 03:45:50 +0000 | [diff] [blame] | 1521 | llvm::CallSite CS(CI); |
Benjamin Kramer | dbf02bc | 2010-04-10 11:02:40 +0000 | [diff] [blame] | 1522 | if (!CI || !CS.isCallee(I)) continue; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1523 | |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 1524 | // If the return types don't match exactly, and if the call isn't dead, then |
| 1525 | // we can't transform this call. |
| 1526 | if (CI->getType() != NewRetTy && !CI->use_empty()) |
| 1527 | continue; |
| 1528 | |
John McCall | 40f9c30 | 2011-08-03 00:43:55 +0000 | [diff] [blame] | 1529 | // Get the attribute list. |
| 1530 | llvm::SmallVector<llvm::AttributeWithIndex, 8> AttrVec; |
| 1531 | llvm::AttrListPtr AttrList = CI->getAttributes(); |
| 1532 | |
| 1533 | // Get any return attributes. |
| 1534 | llvm::Attributes RAttrs = AttrList.getRetAttributes(); |
| 1535 | |
| 1536 | // Add the return attributes. |
| 1537 | if (RAttrs) |
| 1538 | AttrVec.push_back(llvm::AttributeWithIndex::get(0, RAttrs)); |
| 1539 | |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 1540 | // If the function was passed too few arguments, don't transform. If extra |
| 1541 | // arguments were passed, we silently drop them. If any of the types |
| 1542 | // mismatch, we don't transform. |
| 1543 | unsigned ArgNo = 0; |
| 1544 | bool DontTransform = false; |
| 1545 | for (llvm::Function::arg_iterator AI = NewFn->arg_begin(), |
| 1546 | E = NewFn->arg_end(); AI != E; ++AI, ++ArgNo) { |
Gabor Greif | 35db3b9 | 2010-04-10 03:45:50 +0000 | [diff] [blame] | 1547 | if (CS.arg_size() == ArgNo || |
| 1548 | CS.getArgument(ArgNo)->getType() != AI->getType()) { |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 1549 | DontTransform = true; |
| 1550 | break; |
| 1551 | } |
John McCall | 40f9c30 | 2011-08-03 00:43:55 +0000 | [diff] [blame] | 1552 | |
| 1553 | // Add any parameter attributes. |
| 1554 | if (llvm::Attributes PAttrs = AttrList.getParamAttributes(ArgNo + 1)) |
| 1555 | AttrVec.push_back(llvm::AttributeWithIndex::get(ArgNo + 1, PAttrs)); |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 1556 | } |
| 1557 | if (DontTransform) |
| 1558 | continue; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1559 | |
John McCall | 40f9c30 | 2011-08-03 00:43:55 +0000 | [diff] [blame] | 1560 | if (llvm::Attributes FnAttrs = AttrList.getFnAttributes()) |
| 1561 | AttrVec.push_back(llvm::AttributeWithIndex::get(~0, FnAttrs)); |
| 1562 | |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 1563 | // Okay, we can transform this. Create the new call instruction and copy |
| 1564 | // over the required information. |
Gabor Greif | 6ba728d | 2010-04-10 02:56:12 +0000 | [diff] [blame] | 1565 | ArgList.append(CS.arg_begin(), CS.arg_begin() + ArgNo); |
Jay Foad | 4c7d9f1 | 2011-07-15 08:37:34 +0000 | [diff] [blame] | 1566 | llvm::CallInst *NewCall = llvm::CallInst::Create(NewFn, ArgList, "", CI); |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 1567 | ArgList.clear(); |
Benjamin Kramer | ffbb15e | 2009-10-05 13:47:21 +0000 | [diff] [blame] | 1568 | if (!NewCall->getType()->isVoidTy()) |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 1569 | NewCall->takeName(CI); |
John McCall | 40f9c30 | 2011-08-03 00:43:55 +0000 | [diff] [blame] | 1570 | NewCall->setAttributes(llvm::AttrListPtr::get(AttrVec.begin(), |
| 1571 | AttrVec.end())); |
Daniel Dunbar | ca6408c | 2009-09-12 00:59:20 +0000 | [diff] [blame] | 1572 | NewCall->setCallingConv(CI->getCallingConv()); |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 1573 | |
| 1574 | // Finally, remove the old call, replacing any uses with the new one. |
Chris Lattner | 00549fc | 2009-10-14 05:49:21 +0000 | [diff] [blame] | 1575 | if (!CI->use_empty()) |
| 1576 | CI->replaceAllUsesWith(NewCall); |
Devang Patel | 3b122bc | 2009-10-13 17:02:04 +0000 | [diff] [blame] | 1577 | |
Chris Lattner | c603463 | 2010-04-01 06:31:43 +0000 | [diff] [blame] | 1578 | // Copy debug location attached to CI. |
| 1579 | if (!CI->getDebugLoc().isUnknown()) |
| 1580 | NewCall->setDebugLoc(CI->getDebugLoc()); |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 1581 | CI->eraseFromParent(); |
| 1582 | } |
| 1583 | } |
| 1584 | |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 1585 | |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 1586 | void CodeGenModule::EmitGlobalFunctionDefinition(GlobalDecl GD) { |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 1587 | const FunctionDecl *D = cast<FunctionDecl>(GD.getDecl()); |
John McCall | d26bc76 | 2011-03-09 04:27:21 +0000 | [diff] [blame] | 1588 | |
John McCall | 1f6f961 | 2011-03-09 08:12:35 +0000 | [diff] [blame] | 1589 | // Compute the function info and LLVM type. |
John McCall | d26bc76 | 2011-03-09 04:27:21 +0000 | [diff] [blame] | 1590 | const CGFunctionInfo &FI = getTypes().getFunctionInfo(GD); |
John McCall | 1f6f961 | 2011-03-09 08:12:35 +0000 | [diff] [blame] | 1591 | bool variadic = false; |
| 1592 | if (const FunctionProtoType *fpt = D->getType()->getAs<FunctionProtoType>()) |
| 1593 | variadic = fpt->isVariadic(); |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1594 | llvm::FunctionType *Ty = getTypes().GetFunctionType(FI, variadic); |
John McCall | d26bc76 | 2011-03-09 04:27:21 +0000 | [diff] [blame] | 1595 | |
Chris Lattner | 9fa959d | 2009-05-12 20:58:15 +0000 | [diff] [blame] | 1596 | // Get or create the prototype for the function. |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 1597 | llvm::Constant *Entry = GetAddrOfFunction(GD, Ty); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1598 | |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 1599 | // Strip off a bitcast if we got one back. |
| 1600 | if (llvm::ConstantExpr *CE = dyn_cast<llvm::ConstantExpr>(Entry)) { |
| 1601 | assert(CE->getOpcode() == llvm::Instruction::BitCast); |
| 1602 | Entry = CE->getOperand(0); |
| 1603 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1604 | |
| 1605 | |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 1606 | if (cast<llvm::GlobalValue>(Entry)->getType()->getElementType() != Ty) { |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 1607 | llvm::GlobalValue *OldFn = cast<llvm::GlobalValue>(Entry); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1608 | |
Daniel Dunbar | 4274581 | 2009-03-09 23:53:08 +0000 | [diff] [blame] | 1609 | // If the types mismatch then we have to rewrite the definition. |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 1610 | assert(OldFn->isDeclaration() && |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 1611 | "Shouldn't replace non-declaration"); |
Chris Lattner | 3480950 | 2009-03-21 08:53:37 +0000 | [diff] [blame] | 1612 | |
Chris Lattner | 62b33ea | 2009-03-21 08:38:50 +0000 | [diff] [blame] | 1613 | // F is the Function* for the one with the wrong type, we must make a new |
| 1614 | // Function* and update everything that used F (a declaration) with the new |
| 1615 | // Function* (which will be a definition). |
| 1616 | // |
| 1617 | // This happens if there is a prototype for a function |
| 1618 | // (e.g. "int f()") and then a definition of a different type |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 1619 | // (e.g. "int f(int x)"). Move the old function aside so that it |
| 1620 | // doesn't interfere with GetAddrOfFunction. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1621 | OldFn->setName(StringRef()); |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 1622 | llvm::Function *NewFn = cast<llvm::Function>(GetAddrOfFunction(GD, Ty)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1623 | |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 1624 | // If this is an implementation of a function without a prototype, try to |
| 1625 | // replace any existing uses of the function (which may be calls) with uses |
| 1626 | // of the new function |
Chris Lattner | 9fa959d | 2009-05-12 20:58:15 +0000 | [diff] [blame] | 1627 | if (D->getType()->isFunctionNoProtoType()) { |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 1628 | ReplaceUsesOfNonProtoTypeWithRealFunction(OldFn, NewFn); |
Chris Lattner | 9fa959d | 2009-05-12 20:58:15 +0000 | [diff] [blame] | 1629 | OldFn->removeDeadConstantUsers(); |
| 1630 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1631 | |
Chris Lattner | 62b33ea | 2009-03-21 08:38:50 +0000 | [diff] [blame] | 1632 | // Replace uses of F with the Function we will endow with a body. |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 1633 | if (!Entry->use_empty()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1634 | llvm::Constant *NewPtrForOldDecl = |
Owen Anderson | 3c4972d | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 1635 | llvm::ConstantExpr::getBitCast(NewFn, Entry->getType()); |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 1636 | Entry->replaceAllUsesWith(NewPtrForOldDecl); |
| 1637 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1638 | |
Chris Lattner | 62b33ea | 2009-03-21 08:38:50 +0000 | [diff] [blame] | 1639 | // Ok, delete the old function now, which is dead. |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 1640 | OldFn->eraseFromParent(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1641 | |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 1642 | Entry = NewFn; |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 1643 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1644 | |
John McCall | 112c967 | 2010-11-02 21:04:24 +0000 | [diff] [blame] | 1645 | // We need to set linkage and visibility on the function before |
| 1646 | // generating code for it because various parts of IR generation |
| 1647 | // want to propagate this information down (e.g. to local static |
| 1648 | // declarations). |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 1649 | llvm::Function *Fn = cast<llvm::Function>(Entry); |
John McCall | 8b24233 | 2010-05-25 04:30:21 +0000 | [diff] [blame] | 1650 | setFunctionLinkage(D, Fn); |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 1651 | |
John McCall | 112c967 | 2010-11-02 21:04:24 +0000 | [diff] [blame] | 1652 | // FIXME: this is redundant with part of SetFunctionDefinitionAttributes |
Anders Carlsson | 0ffeaad | 2011-01-29 19:39:23 +0000 | [diff] [blame] | 1653 | setGlobalVisibility(Fn, D); |
John McCall | 112c967 | 2010-11-02 21:04:24 +0000 | [diff] [blame] | 1654 | |
John McCall | d26bc76 | 2011-03-09 04:27:21 +0000 | [diff] [blame] | 1655 | CodeGenFunction(*this).GenerateCode(D, Fn, FI); |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 1656 | |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 1657 | SetFunctionDefinitionAttributes(D, Fn); |
| 1658 | SetLLVMFunctionAttributesForDefinition(D, Fn); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1659 | |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 1660 | if (const ConstructorAttr *CA = D->getAttr<ConstructorAttr>()) |
Daniel Dunbar | 219df66 | 2008-09-08 23:44:31 +0000 | [diff] [blame] | 1661 | AddGlobalCtor(Fn, CA->getPriority()); |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 1662 | if (const DestructorAttr *DA = D->getAttr<DestructorAttr>()) |
Daniel Dunbar | 219df66 | 2008-09-08 23:44:31 +0000 | [diff] [blame] | 1663 | AddGlobalDtor(Fn, DA->getPriority()); |
Julien Lerouge | 77f68bb | 2011-09-09 22:41:49 +0000 | [diff] [blame] | 1664 | if (D->hasAttr<AnnotateAttr>()) |
| 1665 | AddGlobalAnnotations(D, Fn); |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 1666 | } |
| 1667 | |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 1668 | void CodeGenModule::EmitAliasDefinition(GlobalDecl GD) { |
| 1669 | const ValueDecl *D = cast<ValueDecl>(GD.getDecl()); |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 1670 | const AliasAttr *AA = D->getAttr<AliasAttr>(); |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 1671 | assert(AA && "Not an alias?"); |
| 1672 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1673 | StringRef MangledName = getMangledName(GD); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1674 | |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 1675 | // If there is a definition in the module, then it wins over the alias. |
| 1676 | // This is dubious, but allow it to be safe. Just ignore the alias. |
| 1677 | llvm::GlobalValue *Entry = GetGlobalValue(MangledName); |
| 1678 | if (Entry && !Entry->isDeclaration()) |
| 1679 | return; |
| 1680 | |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1681 | llvm::Type *DeclTy = getTypes().ConvertTypeForMem(D->getType()); |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 1682 | |
| 1683 | // Create a reference to the named value. This ensures that it is emitted |
| 1684 | // if a deferred decl. |
| 1685 | llvm::Constant *Aliasee; |
| 1686 | if (isa<llvm::FunctionType>(DeclTy)) |
Anders Carlsson | 1faa89f | 2011-02-05 04:35:53 +0000 | [diff] [blame] | 1687 | Aliasee = GetOrCreateLLVMFunction(AA->getAliasee(), DeclTy, GlobalDecl(), |
| 1688 | /*ForVTable=*/false); |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 1689 | else |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 1690 | Aliasee = GetOrCreateLLVMGlobal(AA->getAliasee(), |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 1691 | llvm::PointerType::getUnqual(DeclTy), 0); |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 1692 | |
| 1693 | // Create the new alias itself, but don't set a name yet. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1694 | llvm::GlobalValue *GA = |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 1695 | new llvm::GlobalAlias(Aliasee->getType(), |
| 1696 | llvm::Function::ExternalLinkage, |
| 1697 | "", Aliasee, &getModule()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1698 | |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 1699 | if (Entry) { |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 1700 | assert(Entry->isDeclaration()); |
| 1701 | |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 1702 | // If there is a declaration in the module, then we had an extern followed |
| 1703 | // by the alias, as in: |
| 1704 | // extern int test6(); |
| 1705 | // ... |
| 1706 | // int test6() __attribute__((alias("test7"))); |
| 1707 | // |
| 1708 | // Remove it and replace uses of it with the alias. |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 1709 | GA->takeName(Entry); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1710 | |
Owen Anderson | 3c4972d | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 1711 | Entry->replaceAllUsesWith(llvm::ConstantExpr::getBitCast(GA, |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 1712 | Entry->getType())); |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 1713 | Entry->eraseFromParent(); |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 1714 | } else { |
Anders Carlsson | 9a20d55 | 2010-06-22 16:16:50 +0000 | [diff] [blame] | 1715 | GA->setName(MangledName); |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 1716 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1717 | |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 1718 | // Set attributes which are particular to an alias; this is a |
| 1719 | // specialization of the attributes which may be set on a global |
| 1720 | // variable/function. |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 1721 | if (D->hasAttr<DLLExportAttr>()) { |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 1722 | if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
| 1723 | // The dllexport attribute is ignored for undefined symbols. |
Argyrios Kyrtzidis | 06a54a3 | 2010-07-07 11:31:19 +0000 | [diff] [blame] | 1724 | if (FD->hasBody()) |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 1725 | GA->setLinkage(llvm::Function::DLLExportLinkage); |
| 1726 | } else { |
| 1727 | GA->setLinkage(llvm::Function::DLLExportLinkage); |
| 1728 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1729 | } else if (D->hasAttr<WeakAttr>() || |
Rafael Espindola | 11e8ce7 | 2010-02-23 22:00:30 +0000 | [diff] [blame] | 1730 | D->hasAttr<WeakRefAttr>() || |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 1731 | D->isWeakImported()) { |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 1732 | GA->setLinkage(llvm::Function::WeakAnyLinkage); |
| 1733 | } |
| 1734 | |
| 1735 | SetCommonAttributes(D, GA); |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 1736 | } |
| 1737 | |
Benjamin Kramer | 8dd55a3 | 2011-07-14 17:45:50 +0000 | [diff] [blame] | 1738 | llvm::Function *CodeGenModule::getIntrinsic(unsigned IID, |
Chris Lattner | 2d3ba4f | 2011-07-23 17:14:25 +0000 | [diff] [blame] | 1739 | ArrayRef<llvm::Type*> Tys) { |
Jay Foad | df983a8 | 2011-07-12 14:06:48 +0000 | [diff] [blame] | 1740 | return llvm::Intrinsic::getDeclaration(&getModule(), (llvm::Intrinsic::ID)IID, |
Benjamin Kramer | 8dd55a3 | 2011-07-14 17:45:50 +0000 | [diff] [blame] | 1741 | Tys); |
Chris Lattner | 7acda7c | 2007-12-18 00:25:38 +0000 | [diff] [blame] | 1742 | } |
Chris Lattner | bef20ac | 2007-08-31 04:31:45 +0000 | [diff] [blame] | 1743 | |
Daniel Dunbar | 1d55291 | 2009-07-23 22:52:48 +0000 | [diff] [blame] | 1744 | static llvm::StringMapEntry<llvm::Constant*> & |
| 1745 | GetConstantCFStringEntry(llvm::StringMap<llvm::Constant*> &Map, |
| 1746 | const StringLiteral *Literal, |
Daniel Dunbar | 70ee975 | 2009-07-23 23:41:22 +0000 | [diff] [blame] | 1747 | bool TargetIsLSB, |
Daniel Dunbar | 1d55291 | 2009-07-23 22:52:48 +0000 | [diff] [blame] | 1748 | bool &IsUTF16, |
| 1749 | unsigned &StringLength) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1750 | StringRef String = Literal->getString(); |
Benjamin Kramer | 2f4eaef | 2010-08-17 12:54:38 +0000 | [diff] [blame] | 1751 | unsigned NumBytes = String.size(); |
Daniel Dunbar | 1d55291 | 2009-07-23 22:52:48 +0000 | [diff] [blame] | 1752 | |
Daniel Dunbar | f015b03 | 2009-09-22 10:03:52 +0000 | [diff] [blame] | 1753 | // Check for simple case. |
| 1754 | if (!Literal->containsNonAsciiOrNull()) { |
| 1755 | StringLength = NumBytes; |
Benjamin Kramer | 2f4eaef | 2010-08-17 12:54:38 +0000 | [diff] [blame] | 1756 | return Map.GetOrCreateValue(String); |
Daniel Dunbar | f015b03 | 2009-09-22 10:03:52 +0000 | [diff] [blame] | 1757 | } |
| 1758 | |
Daniel Dunbar | 1d55291 | 2009-07-23 22:52:48 +0000 | [diff] [blame] | 1759 | // Otherwise, convert the UTF8 literals into a byte string. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1760 | SmallVector<UTF16, 128> ToBuf(NumBytes); |
Benjamin Kramer | 2f4eaef | 2010-08-17 12:54:38 +0000 | [diff] [blame] | 1761 | const UTF8 *FromPtr = (UTF8 *)String.data(); |
Daniel Dunbar | 1d55291 | 2009-07-23 22:52:48 +0000 | [diff] [blame] | 1762 | UTF16 *ToPtr = &ToBuf[0]; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1763 | |
Fariborz Jahanian | e7ddfb9 | 2010-09-07 19:57:04 +0000 | [diff] [blame] | 1764 | (void)ConvertUTF8toUTF16(&FromPtr, FromPtr + NumBytes, |
| 1765 | &ToPtr, ToPtr + NumBytes, |
| 1766 | strictConversion); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1767 | |
Daniel Dunbar | 70ee975 | 2009-07-23 23:41:22 +0000 | [diff] [blame] | 1768 | // ConvertUTF8toUTF16 returns the length in ToPtr. |
Daniel Dunbar | 1d55291 | 2009-07-23 22:52:48 +0000 | [diff] [blame] | 1769 | StringLength = ToPtr - &ToBuf[0]; |
Daniel Dunbar | 70ee975 | 2009-07-23 23:41:22 +0000 | [diff] [blame] | 1770 | |
| 1771 | // Render the UTF-16 string into a byte array and convert to the target byte |
| 1772 | // order. |
| 1773 | // |
| 1774 | // FIXME: This isn't something we should need to do here. |
| 1775 | llvm::SmallString<128> AsBytes; |
| 1776 | AsBytes.reserve(StringLength * 2); |
| 1777 | for (unsigned i = 0; i != StringLength; ++i) { |
| 1778 | unsigned short Val = ToBuf[i]; |
| 1779 | if (TargetIsLSB) { |
| 1780 | AsBytes.push_back(Val & 0xFF); |
| 1781 | AsBytes.push_back(Val >> 8); |
| 1782 | } else { |
| 1783 | AsBytes.push_back(Val >> 8); |
| 1784 | AsBytes.push_back(Val & 0xFF); |
| 1785 | } |
| 1786 | } |
Daniel Dunbar | 434da48 | 2009-08-03 21:47:08 +0000 | [diff] [blame] | 1787 | // Append one extra null character, the second is automatically added by our |
| 1788 | // caller. |
| 1789 | AsBytes.push_back(0); |
Daniel Dunbar | 70ee975 | 2009-07-23 23:41:22 +0000 | [diff] [blame] | 1790 | |
Daniel Dunbar | 1d55291 | 2009-07-23 22:52:48 +0000 | [diff] [blame] | 1791 | IsUTF16 = true; |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1792 | return Map.GetOrCreateValue(StringRef(AsBytes.data(), AsBytes.size())); |
Daniel Dunbar | 1d55291 | 2009-07-23 22:52:48 +0000 | [diff] [blame] | 1793 | } |
| 1794 | |
Fariborz Jahanian | cf8e168 | 2011-05-13 18:13:10 +0000 | [diff] [blame] | 1795 | static llvm::StringMapEntry<llvm::Constant*> & |
| 1796 | GetConstantStringEntry(llvm::StringMap<llvm::Constant*> &Map, |
| 1797 | const StringLiteral *Literal, |
| 1798 | unsigned &StringLength) |
| 1799 | { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1800 | StringRef String = Literal->getString(); |
Fariborz Jahanian | cf8e168 | 2011-05-13 18:13:10 +0000 | [diff] [blame] | 1801 | StringLength = String.size(); |
| 1802 | return Map.GetOrCreateValue(String); |
| 1803 | } |
| 1804 | |
Daniel Dunbar | 1d55291 | 2009-07-23 22:52:48 +0000 | [diff] [blame] | 1805 | llvm::Constant * |
| 1806 | CodeGenModule::GetAddrOfConstantCFString(const StringLiteral *Literal) { |
| 1807 | unsigned StringLength = 0; |
| 1808 | bool isUTF16 = false; |
| 1809 | llvm::StringMapEntry<llvm::Constant*> &Entry = |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1810 | GetConstantCFStringEntry(CFConstantStringMap, Literal, |
Daniel Dunbar | 70ee975 | 2009-07-23 23:41:22 +0000 | [diff] [blame] | 1811 | getTargetData().isLittleEndian(), |
| 1812 | isUTF16, StringLength); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1813 | |
Daniel Dunbar | 1d55291 | 2009-07-23 22:52:48 +0000 | [diff] [blame] | 1814 | if (llvm::Constant *C = Entry.getValue()) |
| 1815 | return C; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1816 | |
Owen Anderson | 0032b27 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 1817 | llvm::Constant *Zero = |
| 1818 | llvm::Constant::getNullValue(llvm::Type::getInt32Ty(VMContext)); |
Daniel Dunbar | 3e9df99 | 2008-08-23 18:37:06 +0000 | [diff] [blame] | 1819 | llvm::Constant *Zeros[] = { Zero, Zero }; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1820 | |
Chris Lattner | 9d4a15f | 2009-07-16 16:48:25 +0000 | [diff] [blame] | 1821 | // If we don't already have it, get __CFConstantStringClassReference. |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 1822 | if (!CFConstantStringClassRef) { |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1823 | llvm::Type *Ty = getTypes().ConvertType(getContext().IntTy); |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 1824 | Ty = llvm::ArrayType::get(Ty, 0); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1825 | llvm::Constant *GV = CreateRuntimeVariable(Ty, |
Chris Lattner | 9d4a15f | 2009-07-16 16:48:25 +0000 | [diff] [blame] | 1826 | "__CFConstantStringClassReference"); |
Daniel Dunbar | 3e9df99 | 2008-08-23 18:37:06 +0000 | [diff] [blame] | 1827 | // Decay array -> ptr |
| 1828 | CFConstantStringClassRef = |
Jay Foad | a5c0434 | 2011-07-21 14:31:17 +0000 | [diff] [blame] | 1829 | llvm::ConstantExpr::getGetElementPtr(GV, Zeros); |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 1830 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1831 | |
Anders Carlsson | e3daa76 | 2008-11-15 18:54:24 +0000 | [diff] [blame] | 1832 | QualType CFTy = getContext().getCFConstantStringType(); |
Daniel Dunbar | 3e9df99 | 2008-08-23 18:37:06 +0000 | [diff] [blame] | 1833 | |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1834 | llvm::StructType *STy = |
Anders Carlsson | e3daa76 | 2008-11-15 18:54:24 +0000 | [diff] [blame] | 1835 | cast<llvm::StructType>(getTypes().ConvertType(CFTy)); |
| 1836 | |
Benjamin Kramer | 1d236ab | 2011-10-15 12:20:02 +0000 | [diff] [blame] | 1837 | llvm::Constant *Fields[4]; |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1838 | |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 1839 | // Class pointer. |
Anders Carlsson | 5add683 | 2009-08-16 05:55:31 +0000 | [diff] [blame] | 1840 | Fields[0] = CFConstantStringClassRef; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1841 | |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 1842 | // Flags. |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1843 | llvm::Type *Ty = getTypes().ConvertType(getContext().UnsignedIntTy); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1844 | Fields[1] = isUTF16 ? llvm::ConstantInt::get(Ty, 0x07d0) : |
Anders Carlsson | 5add683 | 2009-08-16 05:55:31 +0000 | [diff] [blame] | 1845 | llvm::ConstantInt::get(Ty, 0x07C8); |
| 1846 | |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 1847 | // String pointer. |
Owen Anderson | 0032b27 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 1848 | llvm::Constant *C = llvm::ConstantArray::get(VMContext, Entry.getKey().str()); |
Daniel Dunbar | a9668e0 | 2009-04-03 00:57:44 +0000 | [diff] [blame] | 1849 | |
Chris Lattner | 95b851e | 2009-07-16 05:03:48 +0000 | [diff] [blame] | 1850 | llvm::GlobalValue::LinkageTypes Linkage; |
Bill Wendling | 1bf7a3f | 2012-01-10 08:46:39 +0000 | [diff] [blame] | 1851 | if (isUTF16) |
Chris Lattner | 278b9f0 | 2009-10-14 05:55:45 +0000 | [diff] [blame] | 1852 | // FIXME: why do utf strings get "_" labels instead of "L" labels? |
Chris Lattner | 95b851e | 2009-07-16 05:03:48 +0000 | [diff] [blame] | 1853 | Linkage = llvm::GlobalValue::InternalLinkage; |
Bill Wendling | 1bf7a3f | 2012-01-10 08:46:39 +0000 | [diff] [blame] | 1854 | else |
Rafael Espindola | 584acf2 | 2011-03-14 17:55:00 +0000 | [diff] [blame] | 1855 | // FIXME: With OS X ld 123.2 (xcode 4) and LTO we would get a linker error |
| 1856 | // when using private linkage. It is not clear if this is a bug in ld |
| 1857 | // or a reasonable new restriction. |
Rafael Espindola | dc0f137 | 2011-03-14 21:08:19 +0000 | [diff] [blame] | 1858 | Linkage = llvm::GlobalValue::LinkerPrivateLinkage; |
Chris Lattner | 278b9f0 | 2009-10-14 05:55:45 +0000 | [diff] [blame] | 1859 | |
Bill Wendling | 1bf7a3f | 2012-01-10 08:46:39 +0000 | [diff] [blame] | 1860 | // Note: -fwritable-strings doesn't make the backing store strings of |
| 1861 | // CFStrings writable. (See <rdar://problem/10657500>) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1862 | llvm::GlobalVariable *GV = |
Bill Wendling | 1bf7a3f | 2012-01-10 08:46:39 +0000 | [diff] [blame] | 1863 | new llvm::GlobalVariable(getModule(), C->getType(), /*isConstant=*/true, |
| 1864 | Linkage, C, ".str"); |
Rafael Espindola | b266a1f | 2011-01-17 16:31:00 +0000 | [diff] [blame] | 1865 | GV->setUnnamedAddr(true); |
Daniel Dunbar | a9668e0 | 2009-04-03 00:57:44 +0000 | [diff] [blame] | 1866 | if (isUTF16) { |
Ken Dyck | 4da244c | 2010-01-26 18:46:23 +0000 | [diff] [blame] | 1867 | CharUnits Align = getContext().getTypeAlignInChars(getContext().ShortTy); |
| 1868 | GV->setAlignment(Align.getQuantity()); |
Daniel Dunbar | f7e903d | 2011-04-12 23:30:52 +0000 | [diff] [blame] | 1869 | } else { |
| 1870 | CharUnits Align = getContext().getTypeAlignInChars(getContext().CharTy); |
| 1871 | GV->setAlignment(Align.getQuantity()); |
Daniel Dunbar | a9668e0 | 2009-04-03 00:57:44 +0000 | [diff] [blame] | 1872 | } |
Jay Foad | a5c0434 | 2011-07-21 14:31:17 +0000 | [diff] [blame] | 1873 | Fields[2] = llvm::ConstantExpr::getGetElementPtr(GV, Zeros); |
Anders Carlsson | 5add683 | 2009-08-16 05:55:31 +0000 | [diff] [blame] | 1874 | |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 1875 | // String length. |
| 1876 | Ty = getTypes().ConvertType(getContext().LongTy); |
Anders Carlsson | 5add683 | 2009-08-16 05:55:31 +0000 | [diff] [blame] | 1877 | Fields[3] = llvm::ConstantInt::get(Ty, StringLength); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1878 | |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 1879 | // The struct. |
Owen Anderson | 08e2524 | 2009-07-27 22:29:56 +0000 | [diff] [blame] | 1880 | C = llvm::ConstantStruct::get(STy, Fields); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1881 | GV = new llvm::GlobalVariable(getModule(), C->getType(), true, |
| 1882 | llvm::GlobalVariable::PrivateLinkage, C, |
Chris Lattner | 95b851e | 2009-07-16 05:03:48 +0000 | [diff] [blame] | 1883 | "_unnamed_cfstring_"); |
Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 1884 | if (const char *Sect = getContext().getTargetInfo().getCFStringSection()) |
Daniel Dunbar | 8e5c2b8 | 2009-03-31 23:42:16 +0000 | [diff] [blame] | 1885 | GV->setSection(Sect); |
Daniel Dunbar | 1d55291 | 2009-07-23 22:52:48 +0000 | [diff] [blame] | 1886 | Entry.setValue(GV); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1887 | |
Anders Carlsson | 0c67829 | 2007-11-01 00:41:52 +0000 | [diff] [blame] | 1888 | return GV; |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 1889 | } |
Chris Lattner | 45e8cbd | 2007-11-28 05:34:05 +0000 | [diff] [blame] | 1890 | |
Douglas Gregor | 45c4ea7 | 2011-08-09 15:54:21 +0000 | [diff] [blame] | 1891 | static RecordDecl * |
| 1892 | CreateRecordDecl(const ASTContext &Ctx, RecordDecl::TagKind TK, |
| 1893 | DeclContext *DC, IdentifierInfo *Id) { |
| 1894 | SourceLocation Loc; |
| 1895 | if (Ctx.getLangOptions().CPlusPlus) |
| 1896 | return CXXRecordDecl::Create(Ctx, TK, DC, Loc, Loc, Id); |
| 1897 | else |
| 1898 | return RecordDecl::Create(Ctx, TK, DC, Loc, Loc, Id); |
| 1899 | } |
| 1900 | |
Fariborz Jahanian | 33e982b | 2010-04-22 20:26:39 +0000 | [diff] [blame] | 1901 | llvm::Constant * |
Fariborz Jahanian | 4c73307 | 2010-10-19 17:19:29 +0000 | [diff] [blame] | 1902 | CodeGenModule::GetAddrOfConstantString(const StringLiteral *Literal) { |
Fariborz Jahanian | 2bb5dda | 2010-04-23 17:41:07 +0000 | [diff] [blame] | 1903 | unsigned StringLength = 0; |
Fariborz Jahanian | 2bb5dda | 2010-04-23 17:41:07 +0000 | [diff] [blame] | 1904 | llvm::StringMapEntry<llvm::Constant*> &Entry = |
Fariborz Jahanian | cf8e168 | 2011-05-13 18:13:10 +0000 | [diff] [blame] | 1905 | GetConstantStringEntry(CFConstantStringMap, Literal, StringLength); |
Fariborz Jahanian | 2bb5dda | 2010-04-23 17:41:07 +0000 | [diff] [blame] | 1906 | |
| 1907 | if (llvm::Constant *C = Entry.getValue()) |
| 1908 | return C; |
| 1909 | |
| 1910 | llvm::Constant *Zero = |
| 1911 | llvm::Constant::getNullValue(llvm::Type::getInt32Ty(VMContext)); |
| 1912 | llvm::Constant *Zeros[] = { Zero, Zero }; |
| 1913 | |
Fariborz Jahanian | ec951e0 | 2010-04-23 22:33:39 +0000 | [diff] [blame] | 1914 | // If we don't already have it, get _NSConstantStringClassReference. |
Fariborz Jahanian | 4c73307 | 2010-10-19 17:19:29 +0000 | [diff] [blame] | 1915 | if (!ConstantStringClassRef) { |
| 1916 | std::string StringClass(getLangOptions().ObjCConstantStringClass); |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1917 | llvm::Type *Ty = getTypes().ConvertType(getContext().IntTy); |
Fariborz Jahanian | 4c73307 | 2010-10-19 17:19:29 +0000 | [diff] [blame] | 1918 | llvm::Constant *GV; |
Fariborz Jahanian | 6f40e22 | 2011-05-17 22:21:16 +0000 | [diff] [blame] | 1919 | if (Features.ObjCNonFragileABI) { |
Fariborz Jahanian | 25dba5d | 2011-05-17 22:46:11 +0000 | [diff] [blame] | 1920 | std::string str = |
| 1921 | StringClass.empty() ? "OBJC_CLASS_$_NSConstantString" |
| 1922 | : "OBJC_CLASS_$_" + StringClass; |
Fariborz Jahanian | 6f40e22 | 2011-05-17 22:21:16 +0000 | [diff] [blame] | 1923 | GV = getObjCRuntime().GetClassGlobal(str); |
| 1924 | // Make sure the result is of the correct type. |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1925 | llvm::Type *PTy = llvm::PointerType::getUnqual(Ty); |
Fariborz Jahanian | 6f40e22 | 2011-05-17 22:21:16 +0000 | [diff] [blame] | 1926 | ConstantStringClassRef = |
| 1927 | llvm::ConstantExpr::getBitCast(GV, PTy); |
| 1928 | } else { |
Fariborz Jahanian | 25dba5d | 2011-05-17 22:46:11 +0000 | [diff] [blame] | 1929 | std::string str = |
| 1930 | StringClass.empty() ? "_NSConstantStringClassReference" |
| 1931 | : "_" + StringClass + "ClassReference"; |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1932 | llvm::Type *PTy = llvm::ArrayType::get(Ty, 0); |
Fariborz Jahanian | 25dba5d | 2011-05-17 22:46:11 +0000 | [diff] [blame] | 1933 | GV = CreateRuntimeVariable(PTy, str); |
Fariborz Jahanian | 6f40e22 | 2011-05-17 22:21:16 +0000 | [diff] [blame] | 1934 | // Decay array -> ptr |
| 1935 | ConstantStringClassRef = |
Jay Foad | a5c0434 | 2011-07-21 14:31:17 +0000 | [diff] [blame] | 1936 | llvm::ConstantExpr::getGetElementPtr(GV, Zeros); |
Fariborz Jahanian | 4c73307 | 2010-10-19 17:19:29 +0000 | [diff] [blame] | 1937 | } |
Fariborz Jahanian | 2bb5dda | 2010-04-23 17:41:07 +0000 | [diff] [blame] | 1938 | } |
Douglas Gregor | 45c4ea7 | 2011-08-09 15:54:21 +0000 | [diff] [blame] | 1939 | |
| 1940 | if (!NSConstantStringType) { |
| 1941 | // Construct the type for a constant NSString. |
| 1942 | RecordDecl *D = CreateRecordDecl(Context, TTK_Struct, |
| 1943 | Context.getTranslationUnitDecl(), |
| 1944 | &Context.Idents.get("__builtin_NSString")); |
| 1945 | D->startDefinition(); |
| 1946 | |
| 1947 | QualType FieldTypes[3]; |
| 1948 | |
| 1949 | // const int *isa; |
| 1950 | FieldTypes[0] = Context.getPointerType(Context.IntTy.withConst()); |
| 1951 | // const char *str; |
| 1952 | FieldTypes[1] = Context.getPointerType(Context.CharTy.withConst()); |
| 1953 | // unsigned int length; |
| 1954 | FieldTypes[2] = Context.UnsignedIntTy; |
| 1955 | |
| 1956 | // Create fields |
| 1957 | for (unsigned i = 0; i < 3; ++i) { |
| 1958 | FieldDecl *Field = FieldDecl::Create(Context, D, |
| 1959 | SourceLocation(), |
| 1960 | SourceLocation(), 0, |
| 1961 | FieldTypes[i], /*TInfo=*/0, |
| 1962 | /*BitWidth=*/0, |
| 1963 | /*Mutable=*/false, |
| 1964 | /*HasInit=*/false); |
| 1965 | Field->setAccess(AS_public); |
| 1966 | D->addDecl(Field); |
| 1967 | } |
| 1968 | |
| 1969 | D->completeDefinition(); |
| 1970 | QualType NSTy = Context.getTagDeclType(D); |
| 1971 | NSConstantStringType = cast<llvm::StructType>(getTypes().ConvertType(NSTy)); |
| 1972 | } |
Fariborz Jahanian | 2bb5dda | 2010-04-23 17:41:07 +0000 | [diff] [blame] | 1973 | |
Benjamin Kramer | 1d236ab | 2011-10-15 12:20:02 +0000 | [diff] [blame] | 1974 | llvm::Constant *Fields[3]; |
Fariborz Jahanian | 2bb5dda | 2010-04-23 17:41:07 +0000 | [diff] [blame] | 1975 | |
| 1976 | // Class pointer. |
Fariborz Jahanian | 4c73307 | 2010-10-19 17:19:29 +0000 | [diff] [blame] | 1977 | Fields[0] = ConstantStringClassRef; |
Fariborz Jahanian | 2bb5dda | 2010-04-23 17:41:07 +0000 | [diff] [blame] | 1978 | |
| 1979 | // String pointer. |
| 1980 | llvm::Constant *C = llvm::ConstantArray::get(VMContext, Entry.getKey().str()); |
| 1981 | |
| 1982 | llvm::GlobalValue::LinkageTypes Linkage; |
| 1983 | bool isConstant; |
Fariborz Jahanian | cf8e168 | 2011-05-13 18:13:10 +0000 | [diff] [blame] | 1984 | Linkage = llvm::GlobalValue::PrivateLinkage; |
| 1985 | isConstant = !Features.WritableStrings; |
Fariborz Jahanian | 2bb5dda | 2010-04-23 17:41:07 +0000 | [diff] [blame] | 1986 | |
| 1987 | llvm::GlobalVariable *GV = |
| 1988 | new llvm::GlobalVariable(getModule(), C->getType(), isConstant, Linkage, C, |
| 1989 | ".str"); |
Rafael Espindola | 803d307 | 2011-01-17 22:11:21 +0000 | [diff] [blame] | 1990 | GV->setUnnamedAddr(true); |
Fariborz Jahanian | cf8e168 | 2011-05-13 18:13:10 +0000 | [diff] [blame] | 1991 | CharUnits Align = getContext().getTypeAlignInChars(getContext().CharTy); |
| 1992 | GV->setAlignment(Align.getQuantity()); |
Jay Foad | a5c0434 | 2011-07-21 14:31:17 +0000 | [diff] [blame] | 1993 | Fields[1] = llvm::ConstantExpr::getGetElementPtr(GV, Zeros); |
Fariborz Jahanian | 2bb5dda | 2010-04-23 17:41:07 +0000 | [diff] [blame] | 1994 | |
| 1995 | // String length. |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1996 | llvm::Type *Ty = getTypes().ConvertType(getContext().UnsignedIntTy); |
Fariborz Jahanian | 2bb5dda | 2010-04-23 17:41:07 +0000 | [diff] [blame] | 1997 | Fields[2] = llvm::ConstantInt::get(Ty, StringLength); |
| 1998 | |
| 1999 | // The struct. |
Douglas Gregor | 45c4ea7 | 2011-08-09 15:54:21 +0000 | [diff] [blame] | 2000 | C = llvm::ConstantStruct::get(NSConstantStringType, Fields); |
Fariborz Jahanian | 2bb5dda | 2010-04-23 17:41:07 +0000 | [diff] [blame] | 2001 | GV = new llvm::GlobalVariable(getModule(), C->getType(), true, |
| 2002 | llvm::GlobalVariable::PrivateLinkage, C, |
| 2003 | "_unnamed_nsstring_"); |
| 2004 | // FIXME. Fix section. |
Fariborz Jahanian | ec951e0 | 2010-04-23 22:33:39 +0000 | [diff] [blame] | 2005 | if (const char *Sect = |
| 2006 | Features.ObjCNonFragileABI |
Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 2007 | ? getContext().getTargetInfo().getNSStringNonFragileABISection() |
| 2008 | : getContext().getTargetInfo().getNSStringSection()) |
Fariborz Jahanian | 2bb5dda | 2010-04-23 17:41:07 +0000 | [diff] [blame] | 2009 | GV->setSection(Sect); |
| 2010 | Entry.setValue(GV); |
| 2011 | |
| 2012 | return GV; |
Fariborz Jahanian | 33e982b | 2010-04-22 20:26:39 +0000 | [diff] [blame] | 2013 | } |
| 2014 | |
Douglas Gregor | 0815b57 | 2011-08-09 17:23:49 +0000 | [diff] [blame] | 2015 | QualType CodeGenModule::getObjCFastEnumerationStateType() { |
| 2016 | if (ObjCFastEnumerationStateType.isNull()) { |
| 2017 | RecordDecl *D = CreateRecordDecl(Context, TTK_Struct, |
| 2018 | Context.getTranslationUnitDecl(), |
| 2019 | &Context.Idents.get("__objcFastEnumerationState")); |
| 2020 | D->startDefinition(); |
| 2021 | |
| 2022 | QualType FieldTypes[] = { |
| 2023 | Context.UnsignedLongTy, |
| 2024 | Context.getPointerType(Context.getObjCIdType()), |
| 2025 | Context.getPointerType(Context.UnsignedLongTy), |
| 2026 | Context.getConstantArrayType(Context.UnsignedLongTy, |
| 2027 | llvm::APInt(32, 5), ArrayType::Normal, 0) |
| 2028 | }; |
| 2029 | |
| 2030 | for (size_t i = 0; i < 4; ++i) { |
| 2031 | FieldDecl *Field = FieldDecl::Create(Context, |
| 2032 | D, |
| 2033 | SourceLocation(), |
| 2034 | SourceLocation(), 0, |
| 2035 | FieldTypes[i], /*TInfo=*/0, |
| 2036 | /*BitWidth=*/0, |
| 2037 | /*Mutable=*/false, |
| 2038 | /*HasInit=*/false); |
| 2039 | Field->setAccess(AS_public); |
| 2040 | D->addDecl(Field); |
| 2041 | } |
| 2042 | |
| 2043 | D->completeDefinition(); |
| 2044 | ObjCFastEnumerationStateType = Context.getTagDeclType(D); |
| 2045 | } |
| 2046 | |
| 2047 | return ObjCFastEnumerationStateType; |
| 2048 | } |
| 2049 | |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 2050 | /// GetStringForStringLiteral - Return the appropriate bytes for a |
Daniel Dunbar | 1e04976 | 2008-08-10 20:25:57 +0000 | [diff] [blame] | 2051 | /// string literal, properly padded to match the literal type. |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 2052 | std::string CodeGenModule::GetStringForStringLiteral(const StringLiteral *E) { |
Eli Friedman | 64f45a2 | 2011-11-01 02:23:42 +0000 | [diff] [blame] | 2053 | assert((E->isAscii() || E->isUTF8()) |
| 2054 | && "Use GetConstantArrayFromStringLiteral for wide strings"); |
Ken Dyck | 3b8037a | 2011-01-29 17:53:12 +0000 | [diff] [blame] | 2055 | const ASTContext &Context = getContext(); |
Daniel Dunbar | 1e04976 | 2008-08-10 20:25:57 +0000 | [diff] [blame] | 2056 | const ConstantArrayType *CAT = |
Ken Dyck | 3b8037a | 2011-01-29 17:53:12 +0000 | [diff] [blame] | 2057 | Context.getAsConstantArrayType(E->getType()); |
Daniel Dunbar | 1e04976 | 2008-08-10 20:25:57 +0000 | [diff] [blame] | 2058 | assert(CAT && "String isn't pointer or array!"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2059 | |
Chris Lattner | dbb1ecc | 2009-02-26 23:01:51 +0000 | [diff] [blame] | 2060 | // Resize the string to the right size. |
Daniel Dunbar | 1e04976 | 2008-08-10 20:25:57 +0000 | [diff] [blame] | 2061 | uint64_t RealLen = CAT->getSize().getZExtValue(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2062 | |
Benjamin Kramer | 2f4eaef | 2010-08-17 12:54:38 +0000 | [diff] [blame] | 2063 | std::string Str = E->getString().str(); |
Daniel Dunbar | 1e04976 | 2008-08-10 20:25:57 +0000 | [diff] [blame] | 2064 | Str.resize(RealLen, '\0'); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2065 | |
Daniel Dunbar | 1e04976 | 2008-08-10 20:25:57 +0000 | [diff] [blame] | 2066 | return Str; |
| 2067 | } |
| 2068 | |
Eli Friedman | 64f45a2 | 2011-11-01 02:23:42 +0000 | [diff] [blame] | 2069 | llvm::Constant * |
| 2070 | CodeGenModule::GetConstantArrayFromStringLiteral(const StringLiteral *E) { |
| 2071 | assert(!E->getType()->isPointerType() && "Strings are always arrays"); |
| 2072 | |
| 2073 | // Don't emit it as the address of the string, emit the string data itself |
| 2074 | // as an inline array. |
| 2075 | if (E->getCharByteWidth()==1) { |
| 2076 | return llvm::ConstantArray::get(VMContext, |
| 2077 | GetStringForStringLiteral(E), false); |
| 2078 | } else { |
| 2079 | llvm::ArrayType *AType = |
| 2080 | cast<llvm::ArrayType>(getTypes().ConvertType(E->getType())); |
| 2081 | llvm::Type *ElemTy = AType->getElementType(); |
| 2082 | unsigned NumElements = AType->getNumElements(); |
| 2083 | std::vector<llvm::Constant*> Elts; |
| 2084 | Elts.reserve(NumElements); |
| 2085 | |
| 2086 | for(unsigned i=0;i<E->getLength();++i) { |
| 2087 | unsigned value = E->getCodeUnit(i); |
| 2088 | llvm::Constant *C = llvm::ConstantInt::get(ElemTy,value,false); |
| 2089 | Elts.push_back(C); |
| 2090 | } |
| 2091 | for(unsigned i=E->getLength();i<NumElements;++i) { |
| 2092 | llvm::Constant *C = llvm::ConstantInt::get(ElemTy,0,false); |
| 2093 | Elts.push_back(C); |
| 2094 | } |
| 2095 | |
| 2096 | return llvm::ConstantArray::get(AType, Elts); |
| 2097 | } |
| 2098 | |
| 2099 | } |
| 2100 | |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 2101 | /// GetAddrOfConstantStringFromLiteral - Return a pointer to a |
| 2102 | /// constant array for the given string literal. |
| 2103 | llvm::Constant * |
| 2104 | CodeGenModule::GetAddrOfConstantStringFromLiteral(const StringLiteral *S) { |
| 2105 | // FIXME: This can be more efficient. |
Eli Friedman | 7eb79c1 | 2009-11-16 05:55:46 +0000 | [diff] [blame] | 2106 | // FIXME: We shouldn't need to bitcast the constant in the wide string case. |
John McCall | a5e19c6 | 2011-08-04 01:03:22 +0000 | [diff] [blame] | 2107 | CharUnits Align = getContext().getTypeAlignInChars(S->getType()); |
Eli Friedman | 64f45a2 | 2011-11-01 02:23:42 +0000 | [diff] [blame] | 2108 | if (S->isAscii() || S->isUTF8()) { |
| 2109 | return GetAddrOfConstantString(GetStringForStringLiteral(S), |
| 2110 | /* GlobalName */ 0, |
| 2111 | Align.getQuantity()); |
Eli Friedman | 7eb79c1 | 2009-11-16 05:55:46 +0000 | [diff] [blame] | 2112 | } |
Eli Friedman | 64f45a2 | 2011-11-01 02:23:42 +0000 | [diff] [blame] | 2113 | |
| 2114 | // FIXME: the following does not memoize wide strings |
| 2115 | llvm::Constant *C = GetConstantArrayFromStringLiteral(S); |
| 2116 | llvm::GlobalVariable *GV = |
| 2117 | new llvm::GlobalVariable(getModule(),C->getType(), |
| 2118 | !Features.WritableStrings, |
| 2119 | llvm::GlobalValue::PrivateLinkage, |
| 2120 | C,".str"); |
| 2121 | GV->setAlignment(Align.getQuantity()); |
| 2122 | GV->setUnnamedAddr(true); |
| 2123 | |
| 2124 | return GV; |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 2125 | } |
| 2126 | |
Chris Lattner | eaf2bb8 | 2009-02-24 22:18:39 +0000 | [diff] [blame] | 2127 | /// GetAddrOfConstantStringFromObjCEncode - Return a pointer to a constant |
| 2128 | /// array for the given ObjCEncodeExpr node. |
| 2129 | llvm::Constant * |
| 2130 | CodeGenModule::GetAddrOfConstantStringFromObjCEncode(const ObjCEncodeExpr *E) { |
| 2131 | std::string Str; |
| 2132 | getContext().getObjCEncodingForType(E->getEncodedType(), Str); |
Eli Friedman | a210f35 | 2009-03-07 20:17:55 +0000 | [diff] [blame] | 2133 | |
| 2134 | return GetAddrOfConstantCString(Str); |
Chris Lattner | eaf2bb8 | 2009-02-24 22:18:39 +0000 | [diff] [blame] | 2135 | } |
| 2136 | |
| 2137 | |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 2138 | /// GenerateWritableString -- Creates storage for a string literal. |
John McCall | a5e19c6 | 2011-08-04 01:03:22 +0000 | [diff] [blame] | 2139 | static llvm::GlobalVariable *GenerateStringLiteral(StringRef str, |
Chris Lattner | 45e8cbd | 2007-11-28 05:34:05 +0000 | [diff] [blame] | 2140 | bool constant, |
Daniel Dunbar | 5fabf9d | 2008-10-17 21:56:50 +0000 | [diff] [blame] | 2141 | CodeGenModule &CGM, |
John McCall | a5e19c6 | 2011-08-04 01:03:22 +0000 | [diff] [blame] | 2142 | const char *GlobalName, |
| 2143 | unsigned Alignment) { |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 2144 | // Create Constant for this string literal. Don't add a '\0'. |
Owen Anderson | 0032b27 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 2145 | llvm::Constant *C = |
| 2146 | llvm::ConstantArray::get(CGM.getLLVMContext(), str, false); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2147 | |
Chris Lattner | 45e8cbd | 2007-11-28 05:34:05 +0000 | [diff] [blame] | 2148 | // Create a global variable for this string |
Rafael Espindola | 1257bc6 | 2011-01-10 22:34:03 +0000 | [diff] [blame] | 2149 | llvm::GlobalVariable *GV = |
| 2150 | new llvm::GlobalVariable(CGM.getModule(), C->getType(), constant, |
| 2151 | llvm::GlobalValue::PrivateLinkage, |
| 2152 | C, GlobalName); |
John McCall | a5e19c6 | 2011-08-04 01:03:22 +0000 | [diff] [blame] | 2153 | GV->setAlignment(Alignment); |
Rafael Espindola | 1257bc6 | 2011-01-10 22:34:03 +0000 | [diff] [blame] | 2154 | GV->setUnnamedAddr(true); |
| 2155 | return GV; |
Chris Lattner | 45e8cbd | 2007-11-28 05:34:05 +0000 | [diff] [blame] | 2156 | } |
| 2157 | |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 2158 | /// GetAddrOfConstantString - Returns a pointer to a character array |
| 2159 | /// containing the literal. This contents are exactly that of the |
| 2160 | /// given string, i.e. it will not be null terminated automatically; |
| 2161 | /// see GetAddrOfConstantCString. Note that whether the result is |
| 2162 | /// actually a pointer to an LLVM constant depends on |
| 2163 | /// Feature.WriteableStrings. |
| 2164 | /// |
| 2165 | /// The result has pointer to array type. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2166 | llvm::Constant *CodeGenModule::GetAddrOfConstantString(StringRef Str, |
John McCall | a5e19c6 | 2011-08-04 01:03:22 +0000 | [diff] [blame] | 2167 | const char *GlobalName, |
| 2168 | unsigned Alignment) { |
Daniel Dunbar | 8e5c2b8 | 2009-03-31 23:42:16 +0000 | [diff] [blame] | 2169 | bool IsConstant = !Features.WritableStrings; |
| 2170 | |
| 2171 | // Get the default prefix if a name wasn't specified. |
| 2172 | if (!GlobalName) |
Chris Lattner | 95b851e | 2009-07-16 05:03:48 +0000 | [diff] [blame] | 2173 | GlobalName = ".str"; |
Daniel Dunbar | 8e5c2b8 | 2009-03-31 23:42:16 +0000 | [diff] [blame] | 2174 | |
| 2175 | // Don't share any string literals if strings aren't constant. |
| 2176 | if (!IsConstant) |
John McCall | a5e19c6 | 2011-08-04 01:03:22 +0000 | [diff] [blame] | 2177 | return GenerateStringLiteral(Str, false, *this, GlobalName, Alignment); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2178 | |
John McCall | a5e19c6 | 2011-08-04 01:03:22 +0000 | [diff] [blame] | 2179 | llvm::StringMapEntry<llvm::GlobalVariable *> &Entry = |
Benjamin Kramer | 9de4342 | 2011-03-05 13:45:23 +0000 | [diff] [blame] | 2180 | ConstantStringMap.GetOrCreateValue(Str); |
Chris Lattner | 45e8cbd | 2007-11-28 05:34:05 +0000 | [diff] [blame] | 2181 | |
John McCall | a5e19c6 | 2011-08-04 01:03:22 +0000 | [diff] [blame] | 2182 | if (llvm::GlobalVariable *GV = Entry.getValue()) { |
| 2183 | if (Alignment > GV->getAlignment()) { |
| 2184 | GV->setAlignment(Alignment); |
| 2185 | } |
| 2186 | return GV; |
| 2187 | } |
Chris Lattner | 45e8cbd | 2007-11-28 05:34:05 +0000 | [diff] [blame] | 2188 | |
| 2189 | // Create a global variable for this. |
John McCall | a5e19c6 | 2011-08-04 01:03:22 +0000 | [diff] [blame] | 2190 | llvm::GlobalVariable *GV = GenerateStringLiteral(Str, true, *this, GlobalName, Alignment); |
| 2191 | Entry.setValue(GV); |
| 2192 | return GV; |
Chris Lattner | 45e8cbd | 2007-11-28 05:34:05 +0000 | [diff] [blame] | 2193 | } |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 2194 | |
| 2195 | /// GetAddrOfConstantCString - Returns a pointer to a character |
Benjamin Kramer | 9de4342 | 2011-03-05 13:45:23 +0000 | [diff] [blame] | 2196 | /// array containing the literal and a terminating '\0' |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 2197 | /// character. The result has pointer to array type. |
Benjamin Kramer | 9de4342 | 2011-03-05 13:45:23 +0000 | [diff] [blame] | 2198 | llvm::Constant *CodeGenModule::GetAddrOfConstantCString(const std::string &Str, |
John McCall | a5e19c6 | 2011-08-04 01:03:22 +0000 | [diff] [blame] | 2199 | const char *GlobalName, |
| 2200 | unsigned Alignment) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2201 | StringRef StrWithNull(Str.c_str(), Str.size() + 1); |
John McCall | a5e19c6 | 2011-08-04 01:03:22 +0000 | [diff] [blame] | 2202 | return GetAddrOfConstantString(StrWithNull, GlobalName, Alignment); |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 2203 | } |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2204 | |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 2205 | /// EmitObjCPropertyImplementations - Emit information for synthesized |
| 2206 | /// properties for an implementation. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2207 | void CodeGenModule::EmitObjCPropertyImplementations(const |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 2208 | ObjCImplementationDecl *D) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2209 | for (ObjCImplementationDecl::propimpl_iterator |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2210 | i = D->propimpl_begin(), e = D->propimpl_end(); i != e; ++i) { |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 2211 | ObjCPropertyImplDecl *PID = *i; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2212 | |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 2213 | // Dynamic is just for type-checking. |
| 2214 | if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) { |
| 2215 | ObjCPropertyDecl *PD = PID->getPropertyDecl(); |
| 2216 | |
| 2217 | // Determine which methods need to be implemented, some may have |
| 2218 | // been overridden. Note that ::isSynthesized is not the method |
| 2219 | // we want, that just indicates if the decl came from a |
| 2220 | // property. What we want to know is if the method is defined in |
| 2221 | // this implementation. |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2222 | if (!D->getInstanceMethod(PD->getGetterName())) |
Fariborz Jahanian | fef30b5 | 2008-12-09 20:23:04 +0000 | [diff] [blame] | 2223 | CodeGenFunction(*this).GenerateObjCGetter( |
| 2224 | const_cast<ObjCImplementationDecl *>(D), PID); |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 2225 | if (!PD->isReadOnly() && |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2226 | !D->getInstanceMethod(PD->getSetterName())) |
Fariborz Jahanian | fef30b5 | 2008-12-09 20:23:04 +0000 | [diff] [blame] | 2227 | CodeGenFunction(*this).GenerateObjCSetter( |
| 2228 | const_cast<ObjCImplementationDecl *>(D), PID); |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 2229 | } |
| 2230 | } |
| 2231 | } |
| 2232 | |
John McCall | e81ac69 | 2011-03-22 07:05:39 +0000 | [diff] [blame] | 2233 | static bool needsDestructMethod(ObjCImplementationDecl *impl) { |
Jordy Rose | db8264e | 2011-07-22 02:08:32 +0000 | [diff] [blame] | 2234 | const ObjCInterfaceDecl *iface = impl->getClassInterface(); |
| 2235 | for (const ObjCIvarDecl *ivar = iface->all_declared_ivar_begin(); |
John McCall | e81ac69 | 2011-03-22 07:05:39 +0000 | [diff] [blame] | 2236 | ivar; ivar = ivar->getNextIvar()) |
| 2237 | if (ivar->getType().isDestructedType()) |
| 2238 | return true; |
| 2239 | |
| 2240 | return false; |
| 2241 | } |
| 2242 | |
Fariborz Jahanian | 109dfc6 | 2010-04-28 21:28:56 +0000 | [diff] [blame] | 2243 | /// EmitObjCIvarInitializations - Emit information for ivar initialization |
| 2244 | /// for an implementation. |
| 2245 | void CodeGenModule::EmitObjCIvarInitializations(ObjCImplementationDecl *D) { |
John McCall | e81ac69 | 2011-03-22 07:05:39 +0000 | [diff] [blame] | 2246 | // We might need a .cxx_destruct even if we don't have any ivar initializers. |
| 2247 | if (needsDestructMethod(D)) { |
| 2248 | IdentifierInfo *II = &getContext().Idents.get(".cxx_destruct"); |
| 2249 | Selector cxxSelector = getContext().Selectors.getSelector(0, &II); |
| 2250 | ObjCMethodDecl *DTORMethod = |
| 2251 | ObjCMethodDecl::Create(getContext(), D->getLocation(), D->getLocation(), |
Argyrios Kyrtzidis | 75cf3e8 | 2011-08-17 19:25:08 +0000 | [diff] [blame] | 2252 | cxxSelector, getContext().VoidTy, 0, D, |
| 2253 | /*isInstance=*/true, /*isVariadic=*/false, |
| 2254 | /*isSynthesized=*/true, /*isImplicitlyDeclared=*/true, |
| 2255 | /*isDefined=*/false, ObjCMethodDecl::Required); |
John McCall | e81ac69 | 2011-03-22 07:05:39 +0000 | [diff] [blame] | 2256 | D->addInstanceMethod(DTORMethod); |
| 2257 | CodeGenFunction(*this).GenerateObjCCtorDtorMethod(D, DTORMethod, false); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2258 | D->setHasCXXStructors(true); |
John McCall | e81ac69 | 2011-03-22 07:05:39 +0000 | [diff] [blame] | 2259 | } |
| 2260 | |
| 2261 | // If the implementation doesn't have any ivar initializers, we don't need |
| 2262 | // a .cxx_construct. |
David Chisnall | 827bbcc | 2011-03-17 14:19:08 +0000 | [diff] [blame] | 2263 | if (D->getNumIvarInitializers() == 0) |
Fariborz Jahanian | 109dfc6 | 2010-04-28 21:28:56 +0000 | [diff] [blame] | 2264 | return; |
Fariborz Jahanian | 109dfc6 | 2010-04-28 21:28:56 +0000 | [diff] [blame] | 2265 | |
John McCall | e81ac69 | 2011-03-22 07:05:39 +0000 | [diff] [blame] | 2266 | IdentifierInfo *II = &getContext().Idents.get(".cxx_construct"); |
| 2267 | Selector cxxSelector = getContext().Selectors.getSelector(0, &II); |
Fariborz Jahanian | 109dfc6 | 2010-04-28 21:28:56 +0000 | [diff] [blame] | 2268 | // The constructor returns 'self'. |
| 2269 | ObjCMethodDecl *CTORMethod = ObjCMethodDecl::Create(getContext(), |
| 2270 | D->getLocation(), |
Argyrios Kyrtzidis | 11d7716 | 2011-10-03 06:36:36 +0000 | [diff] [blame] | 2271 | D->getLocation(), |
Argyrios Kyrtzidis | 11d7716 | 2011-10-03 06:36:36 +0000 | [diff] [blame] | 2272 | cxxSelector, |
Fariborz Jahanian | 109dfc6 | 2010-04-28 21:28:56 +0000 | [diff] [blame] | 2273 | getContext().getObjCIdType(), 0, |
Argyrios Kyrtzidis | 75cf3e8 | 2011-08-17 19:25:08 +0000 | [diff] [blame] | 2274 | D, /*isInstance=*/true, |
| 2275 | /*isVariadic=*/false, |
| 2276 | /*isSynthesized=*/true, |
| 2277 | /*isImplicitlyDeclared=*/true, |
| 2278 | /*isDefined=*/false, |
Fariborz Jahanian | 109dfc6 | 2010-04-28 21:28:56 +0000 | [diff] [blame] | 2279 | ObjCMethodDecl::Required); |
| 2280 | D->addInstanceMethod(CTORMethod); |
| 2281 | CodeGenFunction(*this).GenerateObjCCtorDtorMethod(D, CTORMethod, true); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 2282 | D->setHasCXXStructors(true); |
Fariborz Jahanian | 109dfc6 | 2010-04-28 21:28:56 +0000 | [diff] [blame] | 2283 | } |
| 2284 | |
Anders Carlsson | 91e20dd | 2009-04-02 05:55:18 +0000 | [diff] [blame] | 2285 | /// EmitNamespace - Emit all declarations in a namespace. |
Anders Carlsson | 984e068 | 2009-04-01 00:58:25 +0000 | [diff] [blame] | 2286 | void CodeGenModule::EmitNamespace(const NamespaceDecl *ND) { |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2287 | for (RecordDecl::decl_iterator I = ND->decls_begin(), E = ND->decls_end(); |
Anders Carlsson | 984e068 | 2009-04-01 00:58:25 +0000 | [diff] [blame] | 2288 | I != E; ++I) |
| 2289 | EmitTopLevelDecl(*I); |
| 2290 | } |
| 2291 | |
Anders Carlsson | 91e20dd | 2009-04-02 05:55:18 +0000 | [diff] [blame] | 2292 | // EmitLinkageSpec - Emit all declarations in a linkage spec. |
| 2293 | void CodeGenModule::EmitLinkageSpec(const LinkageSpecDecl *LSD) { |
Eli Friedman | f976be8 | 2009-08-01 20:48:04 +0000 | [diff] [blame] | 2294 | if (LSD->getLanguage() != LinkageSpecDecl::lang_c && |
| 2295 | LSD->getLanguage() != LinkageSpecDecl::lang_cxx) { |
Anders Carlsson | 91e20dd | 2009-04-02 05:55:18 +0000 | [diff] [blame] | 2296 | ErrorUnsupported(LSD, "linkage spec"); |
| 2297 | return; |
| 2298 | } |
| 2299 | |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2300 | for (RecordDecl::decl_iterator I = LSD->decls_begin(), E = LSD->decls_end(); |
Anders Carlsson | 91e20dd | 2009-04-02 05:55:18 +0000 | [diff] [blame] | 2301 | I != E; ++I) |
| 2302 | EmitTopLevelDecl(*I); |
| 2303 | } |
| 2304 | |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2305 | /// EmitTopLevelDecl - Emit code for a single top level declaration. |
| 2306 | void CodeGenModule::EmitTopLevelDecl(Decl *D) { |
| 2307 | // If an error has occurred, stop code generation, but continue |
| 2308 | // parsing and semantic analysis (to ensure all warnings and errors |
| 2309 | // are emitted). |
| 2310 | if (Diags.hasErrorOccurred()) |
| 2311 | return; |
| 2312 | |
Douglas Gregor | 16e8be2 | 2009-06-29 17:30:29 +0000 | [diff] [blame] | 2313 | // Ignore dependent declarations. |
| 2314 | if (D->getDeclContext() && D->getDeclContext()->isDependentContext()) |
| 2315 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2316 | |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2317 | switch (D->getKind()) { |
Anders Carlsson | 293361a | 2009-08-25 13:14:46 +0000 | [diff] [blame] | 2318 | case Decl::CXXConversion: |
Anders Carlsson | 2b77ba8 | 2009-04-04 20:47:02 +0000 | [diff] [blame] | 2319 | case Decl::CXXMethod: |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2320 | case Decl::Function: |
Douglas Gregor | 16e8be2 | 2009-06-29 17:30:29 +0000 | [diff] [blame] | 2321 | // Skip function templates |
Francois Pichet | 8387e2a | 2011-04-22 22:18:13 +0000 | [diff] [blame] | 2322 | if (cast<FunctionDecl>(D)->getDescribedFunctionTemplate() || |
| 2323 | cast<FunctionDecl>(D)->isLateTemplateParsed()) |
Douglas Gregor | 16e8be2 | 2009-06-29 17:30:29 +0000 | [diff] [blame] | 2324 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2325 | |
Anders Carlsson | 555b4bb | 2009-09-10 23:43:36 +0000 | [diff] [blame] | 2326 | EmitGlobal(cast<FunctionDecl>(D)); |
| 2327 | break; |
| 2328 | |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2329 | case Decl::Var: |
Anders Carlsson | 555b4bb | 2009-09-10 23:43:36 +0000 | [diff] [blame] | 2330 | EmitGlobal(cast<VarDecl>(D)); |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2331 | break; |
| 2332 | |
John McCall | 26fbc72 | 2011-04-12 01:01:22 +0000 | [diff] [blame] | 2333 | // Indirect fields from global anonymous structs and unions can be |
| 2334 | // ignored; only the actual variable requires IR gen support. |
| 2335 | case Decl::IndirectField: |
| 2336 | break; |
| 2337 | |
Anders Carlsson | 95d4e5d | 2009-04-15 15:55:24 +0000 | [diff] [blame] | 2338 | // C++ Decls |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2339 | case Decl::Namespace: |
Anders Carlsson | 984e068 | 2009-04-01 00:58:25 +0000 | [diff] [blame] | 2340 | EmitNamespace(cast<NamespaceDecl>(D)); |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2341 | break; |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 2342 | // No code generation needed. |
John McCall | 9d0c661 | 2009-11-17 09:33:40 +0000 | [diff] [blame] | 2343 | case Decl::UsingShadow: |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 2344 | case Decl::Using: |
Douglas Gregor | dd9967a | 2009-09-02 23:49:23 +0000 | [diff] [blame] | 2345 | case Decl::UsingDirective: |
Douglas Gregor | 127102b | 2009-06-29 20:59:39 +0000 | [diff] [blame] | 2346 | case Decl::ClassTemplate: |
| 2347 | case Decl::FunctionTemplate: |
Richard Smith | 3e4c6c4 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 2348 | case Decl::TypeAliasTemplate: |
Anders Carlsson | 018837b | 2009-09-23 19:19:16 +0000 | [diff] [blame] | 2349 | case Decl::NamespaceAlias: |
Douglas Gregor | 6a576ab | 2011-06-05 05:04:23 +0000 | [diff] [blame] | 2350 | case Decl::Block: |
Douglas Gregor | 15de72c | 2011-12-02 23:23:56 +0000 | [diff] [blame] | 2351 | case Decl::Import: |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 2352 | break; |
Anders Carlsson | 95d4e5d | 2009-04-15 15:55:24 +0000 | [diff] [blame] | 2353 | case Decl::CXXConstructor: |
Anders Carlsson | 1fe598c | 2009-11-24 05:16:24 +0000 | [diff] [blame] | 2354 | // Skip function templates |
Francois Pichet | 8387e2a | 2011-04-22 22:18:13 +0000 | [diff] [blame] | 2355 | if (cast<FunctionDecl>(D)->getDescribedFunctionTemplate() || |
| 2356 | cast<FunctionDecl>(D)->isLateTemplateParsed()) |
Anders Carlsson | 1fe598c | 2009-11-24 05:16:24 +0000 | [diff] [blame] | 2357 | return; |
| 2358 | |
Anders Carlsson | 95d4e5d | 2009-04-15 15:55:24 +0000 | [diff] [blame] | 2359 | EmitCXXConstructors(cast<CXXConstructorDecl>(D)); |
| 2360 | break; |
Anders Carlsson | 27ae536 | 2009-04-17 01:58:57 +0000 | [diff] [blame] | 2361 | case Decl::CXXDestructor: |
Francois Pichet | 8387e2a | 2011-04-22 22:18:13 +0000 | [diff] [blame] | 2362 | if (cast<FunctionDecl>(D)->isLateTemplateParsed()) |
| 2363 | return; |
Anders Carlsson | 27ae536 | 2009-04-17 01:58:57 +0000 | [diff] [blame] | 2364 | EmitCXXDestructors(cast<CXXDestructorDecl>(D)); |
| 2365 | break; |
Anders Carlsson | 36674d2 | 2009-06-11 21:22:55 +0000 | [diff] [blame] | 2366 | |
| 2367 | case Decl::StaticAssert: |
| 2368 | // Nothing to do. |
| 2369 | break; |
| 2370 | |
Anders Carlsson | 95d4e5d | 2009-04-15 15:55:24 +0000 | [diff] [blame] | 2371 | // Objective-C Decls |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2372 | |
Fariborz Jahanian | 38e24c7 | 2009-03-18 22:33:24 +0000 | [diff] [blame] | 2373 | // Forward declarations, no (immediate) code generation. |
Chris Lattner | 285d0db | 2009-04-01 02:36:43 +0000 | [diff] [blame] | 2374 | case Decl::ObjCInterface: |
Chris Lattner | 285d0db | 2009-04-01 02:36:43 +0000 | [diff] [blame] | 2375 | break; |
Fariborz Jahanian | 000835d | 2010-08-23 18:51:39 +0000 | [diff] [blame] | 2376 | |
Chris Lattner | baf101d | 2011-04-09 07:11:53 +0000 | [diff] [blame] | 2377 | case Decl::ObjCCategory: { |
| 2378 | ObjCCategoryDecl *CD = cast<ObjCCategoryDecl>(D); |
| 2379 | if (CD->IsClassExtension() && CD->hasSynthBitfield()) |
| 2380 | Context.ResetObjCLayout(CD->getClassInterface()); |
| 2381 | break; |
| 2382 | } |
Chris Lattner | 285d0db | 2009-04-01 02:36:43 +0000 | [diff] [blame] | 2383 | |
Douglas Gregor | bd9482d | 2012-01-01 21:23:57 +0000 | [diff] [blame] | 2384 | case Decl::ObjCProtocol: { |
| 2385 | ObjCProtocolDecl *Proto = cast<ObjCProtocolDecl>(D); |
| 2386 | if (Proto->isThisDeclarationADefinition()) |
| 2387 | ObjCRuntime->GenerateProtocol(Proto); |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2388 | break; |
Douglas Gregor | bd9482d | 2012-01-01 21:23:57 +0000 | [diff] [blame] | 2389 | } |
| 2390 | |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2391 | case Decl::ObjCCategoryImpl: |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 2392 | // Categories have properties but don't support synthesize so we |
| 2393 | // can ignore them here. |
Peter Collingbourne | e926523 | 2011-07-27 20:29:46 +0000 | [diff] [blame] | 2394 | ObjCRuntime->GenerateCategory(cast<ObjCCategoryImplDecl>(D)); |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2395 | break; |
| 2396 | |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 2397 | case Decl::ObjCImplementation: { |
| 2398 | ObjCImplementationDecl *OMD = cast<ObjCImplementationDecl>(D); |
Fariborz Jahanian | 000835d | 2010-08-23 18:51:39 +0000 | [diff] [blame] | 2399 | if (Features.ObjCNonFragileABI2 && OMD->hasSynthBitfield()) |
| 2400 | Context.ResetObjCLayout(OMD->getClassInterface()); |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 2401 | EmitObjCPropertyImplementations(OMD); |
Fariborz Jahanian | 109dfc6 | 2010-04-28 21:28:56 +0000 | [diff] [blame] | 2402 | EmitObjCIvarInitializations(OMD); |
Peter Collingbourne | e926523 | 2011-07-27 20:29:46 +0000 | [diff] [blame] | 2403 | ObjCRuntime->GenerateClass(OMD); |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2404 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2405 | } |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2406 | case Decl::ObjCMethod: { |
| 2407 | ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(D); |
| 2408 | // If this is not a prototype, emit the body. |
Argyrios Kyrtzidis | 6fb0aee | 2009-06-30 02:35:26 +0000 | [diff] [blame] | 2409 | if (OMD->getBody()) |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2410 | CodeGenFunction(*this).GenerateObjCMethod(OMD); |
| 2411 | break; |
| 2412 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2413 | case Decl::ObjCCompatibleAlias: |
Fariborz Jahanian | 305c658 | 2009-01-08 01:10:55 +0000 | [diff] [blame] | 2414 | // compatibility-alias is a directive and has no code gen. |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2415 | break; |
| 2416 | |
Anders Carlsson | 91e20dd | 2009-04-02 05:55:18 +0000 | [diff] [blame] | 2417 | case Decl::LinkageSpec: |
| 2418 | EmitLinkageSpec(cast<LinkageSpecDecl>(D)); |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2419 | break; |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2420 | |
| 2421 | case Decl::FileScopeAsm: { |
| 2422 | FileScopeAsmDecl *AD = cast<FileScopeAsmDecl>(D); |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2423 | StringRef AsmString = AD->getAsmString()->getString(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2424 | |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2425 | const std::string &S = getModule().getModuleInlineAsm(); |
| 2426 | if (S.empty()) |
| 2427 | getModule().setModuleInlineAsm(AsmString); |
Chris Lattner | 9f5bff0 | 2011-07-23 20:04:25 +0000 | [diff] [blame] | 2428 | else if (*--S.end() == '\n') |
| 2429 | getModule().setModuleInlineAsm(S + AsmString.str()); |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2430 | else |
Benjamin Kramer | 8d04258 | 2009-12-11 13:33:18 +0000 | [diff] [blame] | 2431 | getModule().setModuleInlineAsm(S + '\n' + AsmString.str()); |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2432 | break; |
| 2433 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2434 | |
| 2435 | default: |
Mike Stump | f5408fe | 2009-05-16 07:57:57 +0000 | [diff] [blame] | 2436 | // Make sure we handled everything we should, every other kind is a |
| 2437 | // non-top-level decl. FIXME: Would be nice to have an isTopLevelDeclKind |
| 2438 | // function. Need to recode Decl::Kind to do that easily. |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2439 | assert(isa<TypeDecl>(D) && "Unsupported decl kind"); |
| 2440 | } |
| 2441 | } |
John McCall | 744016d | 2010-07-06 23:57:41 +0000 | [diff] [blame] | 2442 | |
| 2443 | /// Turns the given pointer into a constant. |
| 2444 | static llvm::Constant *GetPointerConstant(llvm::LLVMContext &Context, |
| 2445 | const void *Ptr) { |
| 2446 | uintptr_t PtrInt = reinterpret_cast<uintptr_t>(Ptr); |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 2447 | llvm::Type *i64 = llvm::Type::getInt64Ty(Context); |
John McCall | 744016d | 2010-07-06 23:57:41 +0000 | [diff] [blame] | 2448 | return llvm::ConstantInt::get(i64, PtrInt); |
| 2449 | } |
| 2450 | |
| 2451 | static void EmitGlobalDeclMetadata(CodeGenModule &CGM, |
| 2452 | llvm::NamedMDNode *&GlobalMetadata, |
| 2453 | GlobalDecl D, |
| 2454 | llvm::GlobalValue *Addr) { |
| 2455 | if (!GlobalMetadata) |
| 2456 | GlobalMetadata = |
| 2457 | CGM.getModule().getOrInsertNamedMetadata("clang.global.decl.ptrs"); |
| 2458 | |
| 2459 | // TODO: should we report variant information for ctors/dtors? |
| 2460 | llvm::Value *Ops[] = { |
| 2461 | Addr, |
| 2462 | GetPointerConstant(CGM.getLLVMContext(), D.getDecl()) |
| 2463 | }; |
Jay Foad | 6f14165 | 2011-04-21 19:59:12 +0000 | [diff] [blame] | 2464 | GlobalMetadata->addOperand(llvm::MDNode::get(CGM.getLLVMContext(), Ops)); |
John McCall | 744016d | 2010-07-06 23:57:41 +0000 | [diff] [blame] | 2465 | } |
| 2466 | |
| 2467 | /// Emits metadata nodes associating all the global values in the |
| 2468 | /// current module with the Decls they came from. This is useful for |
| 2469 | /// projects using IR gen as a subroutine. |
| 2470 | /// |
| 2471 | /// Since there's currently no way to associate an MDNode directly |
| 2472 | /// with an llvm::GlobalValue, we create a global named metadata |
| 2473 | /// with the name 'clang.global.decl.ptrs'. |
| 2474 | void CodeGenModule::EmitDeclMetadata() { |
| 2475 | llvm::NamedMDNode *GlobalMetadata = 0; |
| 2476 | |
| 2477 | // StaticLocalDeclMap |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2478 | for (llvm::DenseMap<GlobalDecl,StringRef>::iterator |
John McCall | 744016d | 2010-07-06 23:57:41 +0000 | [diff] [blame] | 2479 | I = MangledDeclNames.begin(), E = MangledDeclNames.end(); |
| 2480 | I != E; ++I) { |
| 2481 | llvm::GlobalValue *Addr = getModule().getNamedValue(I->second); |
| 2482 | EmitGlobalDeclMetadata(*this, GlobalMetadata, I->first, Addr); |
| 2483 | } |
| 2484 | } |
| 2485 | |
| 2486 | /// Emits metadata nodes for all the local variables in the current |
| 2487 | /// function. |
| 2488 | void CodeGenFunction::EmitDeclMetadata() { |
| 2489 | if (LocalDeclMap.empty()) return; |
| 2490 | |
| 2491 | llvm::LLVMContext &Context = getLLVMContext(); |
| 2492 | |
| 2493 | // Find the unique metadata ID for this name. |
| 2494 | unsigned DeclPtrKind = Context.getMDKindID("clang.decl.ptr"); |
| 2495 | |
| 2496 | llvm::NamedMDNode *GlobalMetadata = 0; |
| 2497 | |
| 2498 | for (llvm::DenseMap<const Decl*, llvm::Value*>::iterator |
| 2499 | I = LocalDeclMap.begin(), E = LocalDeclMap.end(); I != E; ++I) { |
| 2500 | const Decl *D = I->first; |
| 2501 | llvm::Value *Addr = I->second; |
| 2502 | |
| 2503 | if (llvm::AllocaInst *Alloca = dyn_cast<llvm::AllocaInst>(Addr)) { |
| 2504 | llvm::Value *DAddr = GetPointerConstant(getLLVMContext(), D); |
Jay Foad | 6f14165 | 2011-04-21 19:59:12 +0000 | [diff] [blame] | 2505 | Alloca->setMetadata(DeclPtrKind, llvm::MDNode::get(Context, DAddr)); |
John McCall | 744016d | 2010-07-06 23:57:41 +0000 | [diff] [blame] | 2506 | } else if (llvm::GlobalValue *GV = dyn_cast<llvm::GlobalValue>(Addr)) { |
| 2507 | GlobalDecl GD = GlobalDecl(cast<VarDecl>(D)); |
| 2508 | EmitGlobalDeclMetadata(CGM, GlobalMetadata, GD, GV); |
| 2509 | } |
| 2510 | } |
| 2511 | } |
Daniel Dunbar | 673431a | 2010-07-16 00:00:15 +0000 | [diff] [blame] | 2512 | |
Nick Lewycky | 3dc0541 | 2011-05-05 00:08:20 +0000 | [diff] [blame] | 2513 | void CodeGenModule::EmitCoverageFile() { |
| 2514 | if (!getCodeGenOpts().CoverageFile.empty()) { |
Nick Lewycky | 5ea4f44 | 2011-05-04 20:46:58 +0000 | [diff] [blame] | 2515 | if (llvm::NamedMDNode *CUNode = TheModule.getNamedMetadata("llvm.dbg.cu")) { |
| 2516 | llvm::NamedMDNode *GCov = TheModule.getOrInsertNamedMetadata("llvm.gcov"); |
| 2517 | llvm::LLVMContext &Ctx = TheModule.getContext(); |
Nick Lewycky | 3dc0541 | 2011-05-05 00:08:20 +0000 | [diff] [blame] | 2518 | llvm::MDString *CoverageFile = |
| 2519 | llvm::MDString::get(Ctx, getCodeGenOpts().CoverageFile); |
Nick Lewycky | 5ea4f44 | 2011-05-04 20:46:58 +0000 | [diff] [blame] | 2520 | for (int i = 0, e = CUNode->getNumOperands(); i != e; ++i) { |
| 2521 | llvm::MDNode *CU = CUNode->getOperand(i); |
Nick Lewycky | 3dc0541 | 2011-05-05 00:08:20 +0000 | [diff] [blame] | 2522 | llvm::Value *node[] = { CoverageFile, CU }; |
Nick Lewycky | 5ea4f44 | 2011-05-04 20:46:58 +0000 | [diff] [blame] | 2523 | llvm::MDNode *N = llvm::MDNode::get(Ctx, node); |
| 2524 | GCov->addOperand(N); |
| 2525 | } |
| 2526 | } |
| 2527 | } |
| 2528 | } |