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" |
Peter Collingbourne | 6c0aa5f | 2011-10-06 18:29:37 +0000 | [diff] [blame] | 15 | #include "CGCUDARuntime.h" |
John McCall | 4c40d98 | 2010-08-31 07:33:07 +0000 | [diff] [blame] | 16 | #include "CGCXXABI.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 17 | #include "CGCall.h" |
| 18 | #include "CGDebugInfo.h" |
Daniel Dunbar | af2f62c | 2008-08-13 00:59:25 +0000 | [diff] [blame] | 19 | #include "CGObjCRuntime.h" |
Peter Collingbourne | 8c25fc5 | 2011-09-19 21:14:35 +0000 | [diff] [blame] | 20 | #include "CGOpenCLRuntime.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 21 | #include "CodeGenFunction.h" |
| 22 | #include "CodeGenTBAA.h" |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 23 | #include "TargetInfo.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 24 | #include "clang/AST/ASTContext.h" |
Ken Dyck | 687cc4a | 2010-01-26 13:48:07 +0000 | [diff] [blame] | 25 | #include "clang/AST/CharUnits.h" |
Chris Lattner | 21ef7ae | 2008-11-04 16:51:42 +0000 | [diff] [blame] | 26 | #include "clang/AST/DeclCXX.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 27 | #include "clang/AST/DeclObjC.h" |
Douglas Gregor | af89689 | 2010-06-21 18:41:26 +0000 | [diff] [blame] | 28 | #include "clang/AST/DeclTemplate.h" |
Peter Collingbourne | 1411047 | 2011-01-13 18:57:25 +0000 | [diff] [blame] | 29 | #include "clang/AST/Mangle.h" |
Anders Carlsson | 1a5e0d7 | 2009-11-30 23:41:22 +0000 | [diff] [blame] | 30 | #include "clang/AST/RecordLayout.h" |
Rafael Espindola | a411d2f | 2011-10-26 20:41:06 +0000 | [diff] [blame] | 31 | #include "clang/AST/RecursiveASTVisitor.h" |
Rafael Espindola | bcf6b98 | 2011-12-19 14:41:01 +0000 | [diff] [blame] | 32 | #include "clang/Basic/Builtins.h" |
Jordan Rose | 3f6f51e | 2013-02-08 22:30:41 +0000 | [diff] [blame] | 33 | #include "clang/Basic/CharInfo.h" |
Chris Lattner | 2c8569d | 2007-12-02 07:19:18 +0000 | [diff] [blame] | 34 | #include "clang/Basic/Diagnostic.h" |
Douglas Gregor | b6cbe51 | 2013-01-14 17:21:00 +0000 | [diff] [blame] | 35 | #include "clang/Basic/Module.h" |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 36 | #include "clang/Basic/SourceManager.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 37 | #include "clang/Basic/TargetInfo.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 38 | #include "clang/Frontend/CodeGenOptions.h" |
Sebastian Redl | 19b1a6e | 2012-02-25 20:51:20 +0000 | [diff] [blame] | 39 | #include "llvm/ADT/APSInt.h" |
John McCall | 6374c33 | 2010-03-06 00:35:14 +0000 | [diff] [blame] | 40 | #include "llvm/ADT/Triple.h" |
Chandler Carruth | 3b844ba | 2013-01-02 11:45:17 +0000 | [diff] [blame] | 41 | #include "llvm/IR/CallingConv.h" |
| 42 | #include "llvm/IR/DataLayout.h" |
| 43 | #include "llvm/IR/Intrinsics.h" |
| 44 | #include "llvm/IR/LLVMContext.h" |
| 45 | #include "llvm/IR/Module.h" |
Gabor Greif | 6ba728d | 2010-04-10 02:56:12 +0000 | [diff] [blame] | 46 | #include "llvm/Support/CallSite.h" |
Dmitri Gribenko | cb5620c | 2013-01-30 12:06:08 +0000 | [diff] [blame] | 47 | #include "llvm/Support/ConvertUTF.h" |
Chris Lattner | 78f7ece | 2009-11-07 09:22:46 +0000 | [diff] [blame] | 48 | #include "llvm/Support/ErrorHandling.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 49 | #include "llvm/Target/Mangler.h" |
Dmitri Gribenko | cb5620c | 2013-01-30 12:06:08 +0000 | [diff] [blame] | 50 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 51 | using namespace clang; |
| 52 | using namespace CodeGen; |
| 53 | |
Julien Lerouge | 77f68bb | 2011-09-09 22:41:49 +0000 | [diff] [blame] | 54 | static const char AnnotationSection[] = "llvm.metadata"; |
| 55 | |
John McCall | f16aa10 | 2010-08-22 21:01:12 +0000 | [diff] [blame] | 56 | static CGCXXABI &createCXXABI(CodeGenModule &CGM) { |
John McCall | 64aa4b3 | 2013-04-16 22:48:15 +0000 | [diff] [blame] | 57 | switch (CGM.getTarget().getCXXABI().getKind()) { |
Tim Northover | c264e16 | 2013-01-31 12:13:10 +0000 | [diff] [blame] | 58 | case TargetCXXABI::GenericAArch64: |
John McCall | 96fcde0 | 2013-01-25 23:36:14 +0000 | [diff] [blame] | 59 | case TargetCXXABI::GenericARM: |
| 60 | case TargetCXXABI::iOS: |
| 61 | case TargetCXXABI::GenericItanium: |
| 62 | return *CreateItaniumCXXABI(CGM); |
| 63 | case TargetCXXABI::Microsoft: |
| 64 | return *CreateMicrosoftCXXABI(CGM); |
John McCall | f16aa10 | 2010-08-22 21:01:12 +0000 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | llvm_unreachable("invalid C++ ABI kind"); |
John McCall | f16aa10 | 2010-08-22 21:01:12 +0000 | [diff] [blame] | 68 | } |
| 69 | |
Chandler Carruth | 2811ccf | 2009-11-12 17:24:48 +0000 | [diff] [blame] | 70 | CodeGenModule::CodeGenModule(ASTContext &C, const CodeGenOptions &CGO, |
John McCall | 3abae09 | 2013-04-16 22:48:20 +0000 | [diff] [blame] | 71 | llvm::Module &M, const llvm::DataLayout &TD, |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 72 | DiagnosticsEngine &diags) |
Alexey Samsonov | 6a4c5dc | 2013-08-12 11:48:05 +0000 | [diff] [blame^] | 73 | : Context(C), LangOpts(C.getLangOpts()), CodeGenOpts(CGO), TheModule(M), |
| 74 | Diags(diags), TheDataLayout(TD), Target(C.getTargetInfo()), |
| 75 | ABI(createCXXABI(*this)), VMContext(M.getContext()), TBAA(0), |
| 76 | TheTargetCodeGenInfo(0), Types(*this), VTables(*this), ObjCRuntime(0), |
| 77 | OpenCLRuntime(0), CUDARuntime(0), DebugInfo(0), ARCData(0), |
| 78 | NoObjCARCExceptionsMetadata(0), RRData(0), CFConstantStringClassRef(0), |
| 79 | ConstantStringClassRef(0), NSConstantStringType(0), |
| 80 | NSConcreteGlobalBlock(0), NSConcreteStackBlock(0), BlockObjectAssign(0), |
| 81 | BlockObjectDispose(0), BlockDescriptorType(0), GenericBlockLiteralType(0), |
| 82 | LifetimeStartFn(0), LifetimeEndFn(0), |
| 83 | SanitizerBlacklist( |
| 84 | llvm::SpecialCaseList::createOrDie(CGO.SanitizerBlacklistFile)), |
| 85 | SanOpts(SanitizerBlacklist->isIn(M) ? SanitizerOptions::Disabled |
| 86 | : LangOpts.Sanitize) { |
Will Dietz | 4f45bc0 | 2013-01-18 11:30:38 +0000 | [diff] [blame] | 87 | |
Chris Lattner | 8b41868 | 2012-02-07 00:39:47 +0000 | [diff] [blame] | 88 | // Initialize the type cache. |
| 89 | llvm::LLVMContext &LLVMContext = M.getContext(); |
| 90 | VoidTy = llvm::Type::getVoidTy(LLVMContext); |
| 91 | Int8Ty = llvm::Type::getInt8Ty(LLVMContext); |
| 92 | Int16Ty = llvm::Type::getInt16Ty(LLVMContext); |
| 93 | Int32Ty = llvm::Type::getInt32Ty(LLVMContext); |
| 94 | Int64Ty = llvm::Type::getInt64Ty(LLVMContext); |
| 95 | FloatTy = llvm::Type::getFloatTy(LLVMContext); |
| 96 | DoubleTy = llvm::Type::getDoubleTy(LLVMContext); |
| 97 | PointerWidthInBits = C.getTargetInfo().getPointerWidth(0); |
| 98 | PointerAlignInBytes = |
| 99 | C.toCharUnitsFromBits(C.getTargetInfo().getPointerAlign(0)).getQuantity(); |
| 100 | IntTy = llvm::IntegerType::get(LLVMContext, C.getTargetInfo().getIntWidth()); |
| 101 | IntPtrTy = llvm::IntegerType::get(LLVMContext, PointerWidthInBits); |
| 102 | Int8PtrTy = Int8Ty->getPointerTo(0); |
| 103 | Int8PtrPtrTy = Int8PtrTy->getPointerTo(0); |
| 104 | |
John McCall | bd7370a | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 105 | RuntimeCC = getTargetCodeGenInfo().getABIInfo().getRuntimeCC(); |
| 106 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 107 | if (LangOpts.ObjC1) |
Peter Collingbourne | 8c25fc5 | 2011-09-19 21:14:35 +0000 | [diff] [blame] | 108 | createObjCRuntime(); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 109 | if (LangOpts.OpenCL) |
Peter Collingbourne | 8c25fc5 | 2011-09-19 21:14:35 +0000 | [diff] [blame] | 110 | createOpenCLRuntime(); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 111 | if (LangOpts.CUDA) |
Peter Collingbourne | 6c0aa5f | 2011-10-06 18:29:37 +0000 | [diff] [blame] | 112 | createCUDARuntime(); |
Sanjiv Gupta | e8b9f5b | 2008-05-08 08:54:20 +0000 | [diff] [blame] | 113 | |
Kostya Serebryany | c9fe605 | 2012-04-24 06:57:01 +0000 | [diff] [blame] | 114 | // Enable TBAA unless it's suppressed. ThreadSanitizer needs TBAA even at O0. |
Will Dietz | 4f45bc0 | 2013-01-18 11:30:38 +0000 | [diff] [blame] | 115 | if (SanOpts.Thread || |
Kostya Serebryany | c9fe605 | 2012-04-24 06:57:01 +0000 | [diff] [blame] | 116 | (!CodeGenOpts.RelaxedAliasing && CodeGenOpts.OptimizationLevel > 0)) |
| 117 | TBAA = new CodeGenTBAA(Context, VMContext, CodeGenOpts, getLangOpts(), |
Dan Gohman | 0b5c4fc | 2010-10-15 20:23:12 +0000 | [diff] [blame] | 118 | ABI.getMangleContext()); |
Dan Gohman | 3d5aff5 | 2010-10-14 23:06:10 +0000 | [diff] [blame] | 119 | |
Nick Lewycky | e8ba8d7 | 2011-04-21 23:44:07 +0000 | [diff] [blame] | 120 | // If debug info or coverage generation is enabled, create the CGDebugInfo |
| 121 | // object. |
Douglas Gregor | 4cdad31 | 2012-10-23 20:05:01 +0000 | [diff] [blame] | 122 | if (CodeGenOpts.getDebugInfo() != CodeGenOptions::NoDebugInfo || |
Alexey Samsonov | 3a70cd6 | 2012-04-27 07:24:20 +0000 | [diff] [blame] | 123 | CodeGenOpts.EmitGcovArcs || |
Nick Lewycky | e8ba8d7 | 2011-04-21 23:44:07 +0000 | [diff] [blame] | 124 | CodeGenOpts.EmitGcovNotes) |
| 125 | DebugInfo = new CGDebugInfo(*this); |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 126 | |
| 127 | Block.GlobalUniqueCount = 0; |
John McCall | 5936e33 | 2011-02-15 09:22:45 +0000 | [diff] [blame] | 128 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 129 | if (C.getLangOpts().ObjCAutoRefCount) |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 130 | ARCData = new ARCEntrypoints(); |
| 131 | RRData = new RREntrypoints(); |
Chris Lattner | 2b94fe3 | 2008-03-01 08:45:05 +0000 | [diff] [blame] | 132 | } |
| 133 | |
| 134 | CodeGenModule::~CodeGenModule() { |
Peter Collingbourne | e926523 | 2011-07-27 20:29:46 +0000 | [diff] [blame] | 135 | delete ObjCRuntime; |
Peter Collingbourne | 8c25fc5 | 2011-09-19 21:14:35 +0000 | [diff] [blame] | 136 | delete OpenCLRuntime; |
Peter Collingbourne | 6c0aa5f | 2011-10-06 18:29:37 +0000 | [diff] [blame] | 137 | delete CUDARuntime; |
Ted Kremenek | 0628b72 | 2011-10-08 05:28:26 +0000 | [diff] [blame] | 138 | delete TheTargetCodeGenInfo; |
John McCall | f16aa10 | 2010-08-22 21:01:12 +0000 | [diff] [blame] | 139 | delete &ABI; |
Dan Gohman | 4376c85 | 2010-10-15 18:04:46 +0000 | [diff] [blame] | 140 | delete TBAA; |
Ted Kremenek | 815c78f | 2008-08-05 18:50:11 +0000 | [diff] [blame] | 141 | delete DebugInfo; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 142 | delete ARCData; |
| 143 | delete RRData; |
Ted Kremenek | 815c78f | 2008-08-05 18:50:11 +0000 | [diff] [blame] | 144 | } |
| 145 | |
David Chisnall | 0d13f6f | 2010-01-23 02:40:42 +0000 | [diff] [blame] | 146 | void CodeGenModule::createObjCRuntime() { |
John McCall | 260611a | 2012-06-20 06:18:46 +0000 | [diff] [blame] | 147 | // This is just isGNUFamily(), but we want to force implementors of |
| 148 | // new ABIs to decide how best to do this. |
| 149 | switch (LangOpts.ObjCRuntime.getKind()) { |
David Chisnall | 11d3f4c | 2012-07-03 20:49:52 +0000 | [diff] [blame] | 150 | case ObjCRuntime::GNUstep: |
| 151 | case ObjCRuntime::GCC: |
John McCall | f7226fb | 2012-07-12 02:07:58 +0000 | [diff] [blame] | 152 | case ObjCRuntime::ObjFW: |
Peter Collingbourne | e926523 | 2011-07-27 20:29:46 +0000 | [diff] [blame] | 153 | ObjCRuntime = CreateGNUObjCRuntime(*this); |
John McCall | 260611a | 2012-06-20 06:18:46 +0000 | [diff] [blame] | 154 | return; |
| 155 | |
| 156 | case ObjCRuntime::FragileMacOSX: |
| 157 | case ObjCRuntime::MacOSX: |
| 158 | case ObjCRuntime::iOS: |
Peter Collingbourne | e926523 | 2011-07-27 20:29:46 +0000 | [diff] [blame] | 159 | ObjCRuntime = CreateMacObjCRuntime(*this); |
John McCall | 260611a | 2012-06-20 06:18:46 +0000 | [diff] [blame] | 160 | return; |
| 161 | } |
| 162 | llvm_unreachable("bad runtime kind"); |
David Chisnall | 0d13f6f | 2010-01-23 02:40:42 +0000 | [diff] [blame] | 163 | } |
| 164 | |
Peter Collingbourne | 8c25fc5 | 2011-09-19 21:14:35 +0000 | [diff] [blame] | 165 | void CodeGenModule::createOpenCLRuntime() { |
| 166 | OpenCLRuntime = new CGOpenCLRuntime(*this); |
| 167 | } |
| 168 | |
Peter Collingbourne | 6c0aa5f | 2011-10-06 18:29:37 +0000 | [diff] [blame] | 169 | void CodeGenModule::createCUDARuntime() { |
| 170 | CUDARuntime = CreateNVCUDARuntime(*this); |
| 171 | } |
| 172 | |
Ted Kremenek | 815c78f | 2008-08-05 18:50:11 +0000 | [diff] [blame] | 173 | void CodeGenModule::Release() { |
Chris Lattner | 82227ff | 2009-03-22 21:21:57 +0000 | [diff] [blame] | 174 | EmitDeferred(); |
Eli Friedman | 6c6bda3 | 2010-01-08 00:50:11 +0000 | [diff] [blame] | 175 | EmitCXXGlobalInitFunc(); |
Daniel Dunbar | efb0fa9 | 2010-03-20 04:15:41 +0000 | [diff] [blame] | 176 | EmitCXXGlobalDtorFunc(); |
Richard Smith | b80a16e | 2013-04-19 16:42:07 +0000 | [diff] [blame] | 177 | EmitCXXThreadLocalInitFunc(); |
Peter Collingbourne | e926523 | 2011-07-27 20:29:46 +0000 | [diff] [blame] | 178 | if (ObjCRuntime) |
| 179 | if (llvm::Function *ObjCInitFunction = ObjCRuntime->ModuleInitFunction()) |
Daniel Dunbar | 208ff5e | 2008-08-11 18:12:00 +0000 | [diff] [blame] | 180 | AddGlobalCtor(ObjCInitFunction); |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 181 | EmitCtorList(GlobalCtors, "llvm.global_ctors"); |
| 182 | EmitCtorList(GlobalDtors, "llvm.global_dtors"); |
Julien Lerouge | 77f68bb | 2011-09-09 22:41:49 +0000 | [diff] [blame] | 183 | EmitGlobalAnnotations(); |
Richard Smith | 0024937 | 2013-04-06 05:00:46 +0000 | [diff] [blame] | 184 | EmitStaticExternCAliases(); |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 185 | EmitLLVMUsed(); |
Douglas Gregor | f43b721 | 2013-01-16 01:23:41 +0000 | [diff] [blame] | 186 | |
Reid Kleckner | 3190ca9 | 2013-05-08 13:44:39 +0000 | [diff] [blame] | 187 | if (CodeGenOpts.Autolink && |
| 188 | (Context.getLangOpts().Modules || !LinkerOptionsMetadata.empty())) { |
Douglas Gregor | f43b721 | 2013-01-16 01:23:41 +0000 | [diff] [blame] | 189 | EmitModuleLinkOptions(); |
| 190 | } |
Manman Ren | fc0f91c | 2013-06-19 01:46:49 +0000 | [diff] [blame] | 191 | if (CodeGenOpts.DwarfVersion) |
| 192 | // We actually want the latest version when there are conflicts. |
| 193 | // We can change from Warning to Latest if such mode is supported. |
| 194 | getModule().addModuleFlag(llvm::Module::Warning, "Dwarf Version", |
| 195 | CodeGenOpts.DwarfVersion); |
Douglas Gregor | 5d75ea7 | 2013-01-14 18:28:43 +0000 | [diff] [blame] | 196 | |
John McCall | b259383 | 2010-09-16 06:16:50 +0000 | [diff] [blame] | 197 | SimplifyPersonality(); |
| 198 | |
John McCall | 744016d | 2010-07-06 23:57:41 +0000 | [diff] [blame] | 199 | if (getCodeGenOpts().EmitDeclMetadata) |
| 200 | EmitDeclMetadata(); |
Nick Lewycky | 5ea4f44 | 2011-05-04 20:46:58 +0000 | [diff] [blame] | 201 | |
| 202 | if (getCodeGenOpts().EmitGcovArcs || getCodeGenOpts().EmitGcovNotes) |
Nick Lewycky | 3dc0541 | 2011-05-05 00:08:20 +0000 | [diff] [blame] | 203 | EmitCoverageFile(); |
Devang Patel | f391dbe | 2011-08-16 20:58:22 +0000 | [diff] [blame] | 204 | |
| 205 | if (DebugInfo) |
| 206 | DebugInfo->finalize(); |
Daniel Dunbar | f1968f2 | 2008-10-01 00:49:24 +0000 | [diff] [blame] | 207 | } |
| 208 | |
Devang Patel | e80d567 | 2011-03-23 16:29:39 +0000 | [diff] [blame] | 209 | void CodeGenModule::UpdateCompletedType(const TagDecl *TD) { |
| 210 | // Make sure that this type is translated. |
| 211 | Types.UpdateCompletedType(TD); |
Devang Patel | e80d567 | 2011-03-23 16:29:39 +0000 | [diff] [blame] | 212 | } |
| 213 | |
Dan Gohman | 3d5aff5 | 2010-10-14 23:06:10 +0000 | [diff] [blame] | 214 | llvm::MDNode *CodeGenModule::getTBAAInfo(QualType QTy) { |
| 215 | if (!TBAA) |
| 216 | return 0; |
| 217 | return TBAA->getTBAAInfo(QTy); |
| 218 | } |
| 219 | |
Kostya Serebryany | 8cb4a07 | 2012-03-26 17:03:51 +0000 | [diff] [blame] | 220 | llvm::MDNode *CodeGenModule::getTBAAInfoForVTablePtr() { |
| 221 | if (!TBAA) |
| 222 | return 0; |
| 223 | return TBAA->getTBAAInfoForVTablePtr(); |
| 224 | } |
| 225 | |
Dan Gohman | b22c7dc | 2012-09-28 21:58:29 +0000 | [diff] [blame] | 226 | llvm::MDNode *CodeGenModule::getTBAAStructInfo(QualType QTy) { |
| 227 | if (!TBAA) |
| 228 | return 0; |
| 229 | return TBAA->getTBAAStructInfo(QTy); |
| 230 | } |
| 231 | |
Manman Ren | b37a73d | 2013-04-04 21:53:22 +0000 | [diff] [blame] | 232 | llvm::MDNode *CodeGenModule::getTBAAStructTypeInfo(QualType QTy) { |
| 233 | if (!TBAA) |
| 234 | return 0; |
| 235 | return TBAA->getTBAAStructTypeInfo(QTy); |
| 236 | } |
| 237 | |
| 238 | llvm::MDNode *CodeGenModule::getTBAAStructTagInfo(QualType BaseTy, |
| 239 | llvm::MDNode *AccessN, |
| 240 | uint64_t O) { |
| 241 | if (!TBAA) |
| 242 | return 0; |
| 243 | return TBAA->getTBAAStructTagInfo(BaseTy, AccessN, O); |
| 244 | } |
| 245 | |
Manman Ren | ca83518 | 2013-04-11 23:02:56 +0000 | [diff] [blame] | 246 | /// Decorate the instruction with a TBAA tag. For scalar TBAA, the tag |
| 247 | /// is the same as the type. For struct-path aware TBAA, the tag |
| 248 | /// is different from the type: base type, access type and offset. |
| 249 | /// When ConvertTypeToTag is true, we create a tag based on the scalar type. |
Dan Gohman | 3d5aff5 | 2010-10-14 23:06:10 +0000 | [diff] [blame] | 250 | void CodeGenModule::DecorateInstruction(llvm::Instruction *Inst, |
Manman Ren | ca83518 | 2013-04-11 23:02:56 +0000 | [diff] [blame] | 251 | llvm::MDNode *TBAAInfo, |
| 252 | bool ConvertTypeToTag) { |
| 253 | if (ConvertTypeToTag && TBAA && CodeGenOpts.StructPathTBAA) |
| 254 | Inst->setMetadata(llvm::LLVMContext::MD_tbaa, |
| 255 | TBAA->getTBAAScalarTagInfo(TBAAInfo)); |
| 256 | else |
| 257 | Inst->setMetadata(llvm::LLVMContext::MD_tbaa, TBAAInfo); |
Dan Gohman | 3d5aff5 | 2010-10-14 23:06:10 +0000 | [diff] [blame] | 258 | } |
| 259 | |
Chandler Carruth | 0f30a12 | 2012-03-30 19:44:53 +0000 | [diff] [blame] | 260 | void CodeGenModule::Error(SourceLocation loc, StringRef error) { |
| 261 | unsigned diagID = getDiags().getCustomDiagID(DiagnosticsEngine::Error, error); |
John McCall | 3209669 | 2011-03-18 02:56:14 +0000 | [diff] [blame] | 262 | getDiags().Report(Context.getFullLoc(loc), diagID); |
| 263 | } |
| 264 | |
Daniel Dunbar | 488e993 | 2008-08-16 00:56:44 +0000 | [diff] [blame] | 265 | /// ErrorUnsupported - Print out an error that codegen doesn't support the |
Chris Lattner | 2c8569d | 2007-12-02 07:19:18 +0000 | [diff] [blame] | 266 | /// specified stmt yet. |
Daniel Dunbar | 90df4b6 | 2008-09-04 03:43:08 +0000 | [diff] [blame] | 267 | void CodeGenModule::ErrorUnsupported(const Stmt *S, const char *Type, |
| 268 | bool OmitOnError) { |
| 269 | if (OmitOnError && getDiags().hasErrorOccurred()) |
| 270 | return; |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 271 | unsigned DiagID = getDiags().getCustomDiagID(DiagnosticsEngine::Error, |
Daniel Dunbar | 56b8001 | 2009-02-06 19:18:03 +0000 | [diff] [blame] | 272 | "cannot compile this %0 yet"); |
Chris Lattner | 2c8569d | 2007-12-02 07:19:18 +0000 | [diff] [blame] | 273 | std::string Msg = Type; |
Chris Lattner | 0a14eee | 2008-11-18 07:04:44 +0000 | [diff] [blame] | 274 | getDiags().Report(Context.getFullLoc(S->getLocStart()), DiagID) |
| 275 | << Msg << S->getSourceRange(); |
Chris Lattner | 2c8569d | 2007-12-02 07:19:18 +0000 | [diff] [blame] | 276 | } |
Chris Lattner | 58c3f9e | 2007-12-02 06:27:33 +0000 | [diff] [blame] | 277 | |
Daniel Dunbar | 488e993 | 2008-08-16 00:56:44 +0000 | [diff] [blame] | 278 | /// ErrorUnsupported - Print out an error that codegen doesn't support the |
Chris Lattner | c6fdc34 | 2008-01-12 07:05:38 +0000 | [diff] [blame] | 279 | /// specified decl yet. |
Daniel Dunbar | 90df4b6 | 2008-09-04 03:43:08 +0000 | [diff] [blame] | 280 | void CodeGenModule::ErrorUnsupported(const Decl *D, const char *Type, |
| 281 | bool OmitOnError) { |
| 282 | if (OmitOnError && getDiags().hasErrorOccurred()) |
| 283 | return; |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 284 | unsigned DiagID = getDiags().getCustomDiagID(DiagnosticsEngine::Error, |
Daniel Dunbar | 56b8001 | 2009-02-06 19:18:03 +0000 | [diff] [blame] | 285 | "cannot compile this %0 yet"); |
Chris Lattner | c6fdc34 | 2008-01-12 07:05:38 +0000 | [diff] [blame] | 286 | std::string Msg = Type; |
Chris Lattner | 0a14eee | 2008-11-18 07:04:44 +0000 | [diff] [blame] | 287 | getDiags().Report(Context.getFullLoc(D->getLocation()), DiagID) << Msg; |
Chris Lattner | c6fdc34 | 2008-01-12 07:05:38 +0000 | [diff] [blame] | 288 | } |
| 289 | |
John McCall | bc8d40d | 2011-06-24 21:55:10 +0000 | [diff] [blame] | 290 | llvm::ConstantInt *CodeGenModule::getSize(CharUnits size) { |
| 291 | return llvm::ConstantInt::get(SizeTy, size.getQuantity()); |
| 292 | } |
| 293 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 294 | void CodeGenModule::setGlobalVisibility(llvm::GlobalValue *GV, |
Anders Carlsson | 0ffeaad | 2011-01-29 19:39:23 +0000 | [diff] [blame] | 295 | const NamedDecl *D) const { |
Daniel Dunbar | 04d4078 | 2009-04-14 06:00:08 +0000 | [diff] [blame] | 296 | // Internal definitions always have default visibility. |
Chris Lattner | df102fc | 2009-04-14 05:27:13 +0000 | [diff] [blame] | 297 | if (GV->hasLocalLinkage()) { |
Daniel Dunbar | 7e714cd | 2009-04-10 20:26:50 +0000 | [diff] [blame] | 298 | GV->setVisibility(llvm::GlobalValue::DefaultVisibility); |
Daniel Dunbar | 6ab187a | 2009-04-07 05:48:37 +0000 | [diff] [blame] | 299 | return; |
Daniel Dunbar | 7e714cd | 2009-04-10 20:26:50 +0000 | [diff] [blame] | 300 | } |
Daniel Dunbar | 6ab187a | 2009-04-07 05:48:37 +0000 | [diff] [blame] | 301 | |
John McCall | af14603 | 2010-10-30 11:50:40 +0000 | [diff] [blame] | 302 | // Set visibility for definitions. |
Rafael Espindola | 2beda12 | 2013-02-27 02:15:29 +0000 | [diff] [blame] | 303 | LinkageInfo LV = D->getLinkageAndVisibility(); |
Rafael Espindola | f127eb8 | 2013-02-27 02:56:45 +0000 | [diff] [blame] | 304 | if (LV.isVisibilityExplicit() || !GV->hasAvailableExternallyLinkage()) |
| 305 | GV->setVisibility(GetLLVMVisibility(LV.getVisibility())); |
Dan Gohman | 4f8d123 | 2008-05-22 00:50:06 +0000 | [diff] [blame] | 306 | } |
| 307 | |
Hans Wennborg | de981f3 | 2012-06-28 08:01:44 +0000 | [diff] [blame] | 308 | static llvm::GlobalVariable::ThreadLocalMode GetLLVMTLSModel(StringRef S) { |
| 309 | return llvm::StringSwitch<llvm::GlobalVariable::ThreadLocalMode>(S) |
| 310 | .Case("global-dynamic", llvm::GlobalVariable::GeneralDynamicTLSModel) |
| 311 | .Case("local-dynamic", llvm::GlobalVariable::LocalDynamicTLSModel) |
| 312 | .Case("initial-exec", llvm::GlobalVariable::InitialExecTLSModel) |
| 313 | .Case("local-exec", llvm::GlobalVariable::LocalExecTLSModel); |
| 314 | } |
| 315 | |
| 316 | static llvm::GlobalVariable::ThreadLocalMode GetLLVMTLSModel( |
| 317 | CodeGenOptions::TLSModel M) { |
| 318 | switch (M) { |
| 319 | case CodeGenOptions::GeneralDynamicTLSModel: |
| 320 | return llvm::GlobalVariable::GeneralDynamicTLSModel; |
| 321 | case CodeGenOptions::LocalDynamicTLSModel: |
| 322 | return llvm::GlobalVariable::LocalDynamicTLSModel; |
| 323 | case CodeGenOptions::InitialExecTLSModel: |
| 324 | return llvm::GlobalVariable::InitialExecTLSModel; |
| 325 | case CodeGenOptions::LocalExecTLSModel: |
| 326 | return llvm::GlobalVariable::LocalExecTLSModel; |
| 327 | } |
| 328 | llvm_unreachable("Invalid TLS model!"); |
| 329 | } |
| 330 | |
| 331 | void CodeGenModule::setTLSMode(llvm::GlobalVariable *GV, |
| 332 | const VarDecl &D) const { |
Richard Smith | 38afbc7 | 2013-04-13 02:43:54 +0000 | [diff] [blame] | 333 | assert(D.getTLSKind() && "setting TLS mode on non-TLS var!"); |
Hans Wennborg | de981f3 | 2012-06-28 08:01:44 +0000 | [diff] [blame] | 334 | |
| 335 | llvm::GlobalVariable::ThreadLocalMode TLM; |
Douglas Gregor | 4cdad31 | 2012-10-23 20:05:01 +0000 | [diff] [blame] | 336 | TLM = GetLLVMTLSModel(CodeGenOpts.getDefaultTLSModel()); |
Hans Wennborg | de981f3 | 2012-06-28 08:01:44 +0000 | [diff] [blame] | 337 | |
| 338 | // Override the TLS model if it is explicitly specified. |
| 339 | if (D.hasAttr<TLSModelAttr>()) { |
| 340 | const TLSModelAttr *Attr = D.getAttr<TLSModelAttr>(); |
| 341 | TLM = GetLLVMTLSModel(Attr->getModel()); |
| 342 | } |
| 343 | |
| 344 | GV->setThreadLocalMode(TLM); |
| 345 | } |
| 346 | |
John McCall | cbfe502 | 2010-08-04 08:34:44 +0000 | [diff] [blame] | 347 | /// Set the symbol visibility of type information (vtable and RTTI) |
| 348 | /// associated with the given type. |
| 349 | void CodeGenModule::setTypeVisibility(llvm::GlobalValue *GV, |
| 350 | const CXXRecordDecl *RD, |
Anders Carlsson | fa2e99f | 2011-01-29 20:24:48 +0000 | [diff] [blame] | 351 | TypeVisibilityKind TVK) const { |
Anders Carlsson | 0ffeaad | 2011-01-29 19:39:23 +0000 | [diff] [blame] | 352 | setGlobalVisibility(GV, RD); |
John McCall | cbfe502 | 2010-08-04 08:34:44 +0000 | [diff] [blame] | 353 | |
John McCall | 279b5eb | 2010-08-12 23:36:15 +0000 | [diff] [blame] | 354 | if (!CodeGenOpts.HiddenWeakVTables) |
| 355 | return; |
| 356 | |
Anders Carlsson | 9a86a13 | 2011-01-29 20:36:11 +0000 | [diff] [blame] | 357 | // We never want to drop the visibility for RTTI names. |
| 358 | if (TVK == TVK_ForRTTIName) |
| 359 | return; |
| 360 | |
John McCall | cbfe502 | 2010-08-04 08:34:44 +0000 | [diff] [blame] | 361 | // We want to drop the visibility to hidden for weak type symbols. |
| 362 | // This isn't possible if there might be unresolved references |
| 363 | // elsewhere that rely on this symbol being visible. |
| 364 | |
John McCall | 7a53690 | 2010-08-05 20:39:18 +0000 | [diff] [blame] | 365 | // This should be kept roughly in sync with setThunkVisibility |
| 366 | // in CGVTables.cpp. |
| 367 | |
John McCall | cbfe502 | 2010-08-04 08:34:44 +0000 | [diff] [blame] | 368 | // Preconditions. |
Anders Carlsson | f502d93 | 2011-01-24 00:46:19 +0000 | [diff] [blame] | 369 | if (GV->getLinkage() != llvm::GlobalVariable::LinkOnceODRLinkage || |
John McCall | cbfe502 | 2010-08-04 08:34:44 +0000 | [diff] [blame] | 370 | GV->getVisibility() != llvm::GlobalVariable::DefaultVisibility) |
| 371 | return; |
| 372 | |
| 373 | // Don't override an explicit visibility attribute. |
John McCall | d4c3d66 | 2013-02-20 01:54:26 +0000 | [diff] [blame] | 374 | if (RD->getExplicitVisibility(NamedDecl::VisibilityForType)) |
John McCall | cbfe502 | 2010-08-04 08:34:44 +0000 | [diff] [blame] | 375 | return; |
| 376 | |
| 377 | switch (RD->getTemplateSpecializationKind()) { |
| 378 | // We have to disable the optimization if this is an EI definition |
| 379 | // because there might be EI declarations in other shared objects. |
| 380 | case TSK_ExplicitInstantiationDefinition: |
| 381 | case TSK_ExplicitInstantiationDeclaration: |
| 382 | return; |
| 383 | |
John McCall | 7a53690 | 2010-08-05 20:39:18 +0000 | [diff] [blame] | 384 | // 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] | 385 | case TSK_Undeclared: |
| 386 | break; |
| 387 | |
John McCall | 7a53690 | 2010-08-05 20:39:18 +0000 | [diff] [blame] | 388 | // In theory, implicit instantiations can ignore the possibility of |
| 389 | // an explicit instantiation declaration because there necessarily |
| 390 | // must be an EI definition somewhere with default visibility. In |
| 391 | // practice, it's possible to have an explicit instantiation for |
| 392 | // an arbitrary template class, and linkers aren't necessarily able |
| 393 | // to deal with mixed-visibility symbols. |
| 394 | case TSK_ExplicitSpecialization: |
John McCall | cbfe502 | 2010-08-04 08:34:44 +0000 | [diff] [blame] | 395 | case TSK_ImplicitInstantiation: |
Douglas Gregor | aafd111 | 2012-10-24 14:11:55 +0000 | [diff] [blame] | 396 | return; |
John McCall | cbfe502 | 2010-08-04 08:34:44 +0000 | [diff] [blame] | 397 | } |
| 398 | |
| 399 | // If there's a key function, there may be translation units |
| 400 | // that don't have the key function's definition. But ignore |
| 401 | // this if we're emitting RTTI under -fno-rtti. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 402 | if (!(TVK != TVK_ForRTTI) || LangOpts.RTTI) { |
John McCall | d5617ee | 2013-01-25 22:31:03 +0000 | [diff] [blame] | 403 | // FIXME: what should we do if we "lose" the key function during |
| 404 | // the emission of the file? |
| 405 | if (Context.getCurrentKeyFunction(RD)) |
John McCall | cbfe502 | 2010-08-04 08:34:44 +0000 | [diff] [blame] | 406 | return; |
Anders Carlsson | fa2e99f | 2011-01-29 20:24:48 +0000 | [diff] [blame] | 407 | } |
John McCall | cbfe502 | 2010-08-04 08:34:44 +0000 | [diff] [blame] | 408 | |
| 409 | // Otherwise, drop the visibility to hidden. |
| 410 | GV->setVisibility(llvm::GlobalValue::HiddenVisibility); |
Rafael Espindola | b1c65ff | 2011-01-11 21:44:37 +0000 | [diff] [blame] | 411 | GV->setUnnamedAddr(true); |
John McCall | cbfe502 | 2010-08-04 08:34:44 +0000 | [diff] [blame] | 412 | } |
| 413 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 414 | StringRef CodeGenModule::getMangledName(GlobalDecl GD) { |
Anders Carlsson | 793a990 | 2010-06-22 16:05:32 +0000 | [diff] [blame] | 415 | const NamedDecl *ND = cast<NamedDecl>(GD.getDecl()); |
| 416 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 417 | StringRef &Str = MangledDeclNames[GD.getCanonicalDecl()]; |
Anders Carlsson | 793a990 | 2010-06-22 16:05:32 +0000 | [diff] [blame] | 418 | if (!Str.empty()) |
| 419 | return Str; |
| 420 | |
John McCall | 4c40d98 | 2010-08-31 07:33:07 +0000 | [diff] [blame] | 421 | if (!getCXXABI().getMangleContext().shouldMangleDeclName(ND)) { |
Anders Carlsson | 793a990 | 2010-06-22 16:05:32 +0000 | [diff] [blame] | 422 | IdentifierInfo *II = ND->getIdentifier(); |
| 423 | assert(II && "Attempt to mangle unnamed decl."); |
| 424 | |
| 425 | Str = II->getName(); |
| 426 | return Str; |
| 427 | } |
| 428 | |
Dylan Noblesmith | f7ccbad | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 429 | SmallString<256> Buffer; |
Rafael Espindola | c4850c2 | 2011-02-10 23:59:36 +0000 | [diff] [blame] | 430 | llvm::raw_svector_ostream Out(Buffer); |
Anders Carlsson | 793a990 | 2010-06-22 16:05:32 +0000 | [diff] [blame] | 431 | if (const CXXConstructorDecl *D = dyn_cast<CXXConstructorDecl>(ND)) |
Rafael Espindola | c4850c2 | 2011-02-10 23:59:36 +0000 | [diff] [blame] | 432 | getCXXABI().getMangleContext().mangleCXXCtor(D, GD.getCtorType(), Out); |
Anders Carlsson | 793a990 | 2010-06-22 16:05:32 +0000 | [diff] [blame] | 433 | else if (const CXXDestructorDecl *D = dyn_cast<CXXDestructorDecl>(ND)) |
Rafael Espindola | c4850c2 | 2011-02-10 23:59:36 +0000 | [diff] [blame] | 434 | getCXXABI().getMangleContext().mangleCXXDtor(D, GD.getDtorType(), Out); |
Anders Carlsson | 793a990 | 2010-06-22 16:05:32 +0000 | [diff] [blame] | 435 | else |
Rafael Espindola | c4850c2 | 2011-02-10 23:59:36 +0000 | [diff] [blame] | 436 | getCXXABI().getMangleContext().mangleName(ND, Out); |
Anders Carlsson | 793a990 | 2010-06-22 16:05:32 +0000 | [diff] [blame] | 437 | |
| 438 | // Allocate space for the mangled name. |
Rafael Espindola | c4850c2 | 2011-02-10 23:59:36 +0000 | [diff] [blame] | 439 | Out.flush(); |
Anders Carlsson | 793a990 | 2010-06-22 16:05:32 +0000 | [diff] [blame] | 440 | size_t Length = Buffer.size(); |
| 441 | char *Name = MangledNamesAllocator.Allocate<char>(Length); |
| 442 | std::copy(Buffer.begin(), Buffer.end(), Name); |
| 443 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 444 | Str = StringRef(Name, Length); |
Anders Carlsson | 793a990 | 2010-06-22 16:05:32 +0000 | [diff] [blame] | 445 | |
| 446 | return Str; |
| 447 | } |
| 448 | |
Peter Collingbourne | 1411047 | 2011-01-13 18:57:25 +0000 | [diff] [blame] | 449 | void CodeGenModule::getBlockMangledName(GlobalDecl GD, MangleBuffer &Buffer, |
| 450 | const BlockDecl *BD) { |
| 451 | MangleContext &MangleCtx = getCXXABI().getMangleContext(); |
| 452 | const Decl *D = GD.getDecl(); |
Rafael Espindola | c4850c2 | 2011-02-10 23:59:36 +0000 | [diff] [blame] | 453 | llvm::raw_svector_ostream Out(Buffer.getBuffer()); |
Peter Collingbourne | 1411047 | 2011-01-13 18:57:25 +0000 | [diff] [blame] | 454 | if (D == 0) |
Fariborz Jahanian | 4904bf4 | 2012-06-26 16:06:38 +0000 | [diff] [blame] | 455 | MangleCtx.mangleGlobalBlock(BD, |
| 456 | dyn_cast_or_null<VarDecl>(initializedGlobalDecl.getDecl()), Out); |
Peter Collingbourne | 1411047 | 2011-01-13 18:57:25 +0000 | [diff] [blame] | 457 | else if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(D)) |
Rafael Espindola | c4850c2 | 2011-02-10 23:59:36 +0000 | [diff] [blame] | 458 | MangleCtx.mangleCtorBlock(CD, GD.getCtorType(), BD, Out); |
Peter Collingbourne | 1411047 | 2011-01-13 18:57:25 +0000 | [diff] [blame] | 459 | else if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(D)) |
Rafael Espindola | c4850c2 | 2011-02-10 23:59:36 +0000 | [diff] [blame] | 460 | MangleCtx.mangleDtorBlock(DD, GD.getDtorType(), BD, Out); |
Peter Collingbourne | 1411047 | 2011-01-13 18:57:25 +0000 | [diff] [blame] | 461 | else |
Rafael Espindola | c4850c2 | 2011-02-10 23:59:36 +0000 | [diff] [blame] | 462 | MangleCtx.mangleBlock(cast<DeclContext>(D), BD, Out); |
Anders Carlsson | 9a8822b | 2010-06-09 02:36:32 +0000 | [diff] [blame] | 463 | } |
| 464 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 465 | llvm::GlobalValue *CodeGenModule::GetGlobalValue(StringRef Name) { |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 466 | return getModule().getNamedValue(Name); |
Douglas Gregor | 5f2bfd4 | 2009-02-13 00:10:09 +0000 | [diff] [blame] | 467 | } |
| 468 | |
Chris Lattner | 6d39760 | 2008-03-14 17:18:18 +0000 | [diff] [blame] | 469 | /// AddGlobalCtor - Add a function to the list that will be called before |
| 470 | /// main() runs. |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 471 | void CodeGenModule::AddGlobalCtor(llvm::Function * Ctor, int Priority) { |
Daniel Dunbar | 4998888 | 2009-01-13 02:25:00 +0000 | [diff] [blame] | 472 | // FIXME: Type coercion of void()* types. |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 473 | GlobalCtors.push_back(std::make_pair(Ctor, Priority)); |
Chris Lattner | 6d39760 | 2008-03-14 17:18:18 +0000 | [diff] [blame] | 474 | } |
| 475 | |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 476 | /// AddGlobalDtor - Add a function to the list that will be called |
| 477 | /// when the module is unloaded. |
| 478 | void CodeGenModule::AddGlobalDtor(llvm::Function * Dtor, int Priority) { |
Daniel Dunbar | 4998888 | 2009-01-13 02:25:00 +0000 | [diff] [blame] | 479 | // FIXME: Type coercion of void()* types. |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 480 | GlobalDtors.push_back(std::make_pair(Dtor, Priority)); |
| 481 | } |
| 482 | |
| 483 | void CodeGenModule::EmitCtorList(const CtorList &Fns, const char *GlobalName) { |
| 484 | // Ctor function type is void()*. |
John McCall | 0774cb8 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 485 | llvm::FunctionType* CtorFTy = llvm::FunctionType::get(VoidTy, false); |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 486 | llvm::Type *CtorPFTy = llvm::PointerType::getUnqual(CtorFTy); |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 487 | |
| 488 | // Get the type of a ctor entry, { i32, void ()* }. |
Chris Lattner | c5cbb90 | 2011-06-20 04:01:35 +0000 | [diff] [blame] | 489 | llvm::StructType *CtorStructTy = |
Chris Lattner | 8b41868 | 2012-02-07 00:39:47 +0000 | [diff] [blame] | 490 | llvm::StructType::get(Int32Ty, llvm::PointerType::getUnqual(CtorFTy), NULL); |
Chris Lattner | 6d39760 | 2008-03-14 17:18:18 +0000 | [diff] [blame] | 491 | |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 492 | // Construct the constructor and destructor arrays. |
Chris Lattner | 0b23971 | 2012-02-06 22:16:34 +0000 | [diff] [blame] | 493 | SmallVector<llvm::Constant*, 8> Ctors; |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 494 | for (CtorList::const_iterator I = Fns.begin(), E = Fns.end(); I != E; ++I) { |
Chris Lattner | 0b23971 | 2012-02-06 22:16:34 +0000 | [diff] [blame] | 495 | llvm::Constant *S[] = { |
| 496 | llvm::ConstantInt::get(Int32Ty, I->second, false), |
| 497 | llvm::ConstantExpr::getBitCast(I->first, CtorPFTy) |
| 498 | }; |
Owen Anderson | 08e2524 | 2009-07-27 22:29:56 +0000 | [diff] [blame] | 499 | Ctors.push_back(llvm::ConstantStruct::get(CtorStructTy, S)); |
Chris Lattner | 6d39760 | 2008-03-14 17:18:18 +0000 | [diff] [blame] | 500 | } |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 501 | |
| 502 | if (!Ctors.empty()) { |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 503 | llvm::ArrayType *AT = llvm::ArrayType::get(CtorStructTy, Ctors.size()); |
Owen Anderson | 1c431b3 | 2009-07-08 19:05:04 +0000 | [diff] [blame] | 504 | new llvm::GlobalVariable(TheModule, AT, false, |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 505 | llvm::GlobalValue::AppendingLinkage, |
Owen Anderson | 7db6d83 | 2009-07-28 18:33:04 +0000 | [diff] [blame] | 506 | llvm::ConstantArray::get(AT, Ctors), |
Owen Anderson | 1c431b3 | 2009-07-08 19:05:04 +0000 | [diff] [blame] | 507 | GlobalName); |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 508 | } |
Chris Lattner | 6d39760 | 2008-03-14 17:18:18 +0000 | [diff] [blame] | 509 | } |
| 510 | |
John McCall | d46f985 | 2010-02-19 01:32:20 +0000 | [diff] [blame] | 511 | llvm::GlobalValue::LinkageTypes |
Peter Collingbourne | 144a31f | 2013-06-05 17:49:37 +0000 | [diff] [blame] | 512 | CodeGenModule::getFunctionLinkage(GlobalDecl GD) { |
Eli Friedman | 7a36a59 | 2013-07-01 20:53:07 +0000 | [diff] [blame] | 513 | const FunctionDecl *D = cast<FunctionDecl>(GD.getDecl()); |
Reid Kleckner | a4130ba | 2013-07-22 13:51:44 +0000 | [diff] [blame] | 514 | |
| 515 | if (isa<CXXDestructorDecl>(D) && |
| 516 | getCXXABI().useThunkForDtorVariant(cast<CXXDestructorDecl>(D), |
| 517 | GD.getDtorType())) |
| 518 | return llvm::Function::LinkOnceODRLinkage; |
| 519 | |
Argyrios Kyrtzidis | 90e99a8 | 2010-07-29 18:15:58 +0000 | [diff] [blame] | 520 | GVALinkage Linkage = getContext().GetGVALinkageForFunction(D); |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 521 | |
Chris Lattner | f8153065 | 2010-06-30 16:58:07 +0000 | [diff] [blame] | 522 | if (Linkage == GVA_Internal) |
John McCall | d46f985 | 2010-02-19 01:32:20 +0000 | [diff] [blame] | 523 | return llvm::Function::InternalLinkage; |
Chris Lattner | f8153065 | 2010-06-30 16:58:07 +0000 | [diff] [blame] | 524 | |
| 525 | if (D->hasAttr<DLLExportAttr>()) |
John McCall | d46f985 | 2010-02-19 01:32:20 +0000 | [diff] [blame] | 526 | return llvm::Function::DLLExportLinkage; |
Chris Lattner | f8153065 | 2010-06-30 16:58:07 +0000 | [diff] [blame] | 527 | |
| 528 | if (D->hasAttr<WeakAttr>()) |
John McCall | d46f985 | 2010-02-19 01:32:20 +0000 | [diff] [blame] | 529 | return llvm::Function::WeakAnyLinkage; |
Chris Lattner | f8153065 | 2010-06-30 16:58:07 +0000 | [diff] [blame] | 530 | |
| 531 | // In C99 mode, 'inline' functions are guaranteed to have a strong |
| 532 | // definition somewhere else, so we can use available_externally linkage. |
| 533 | if (Linkage == GVA_C99Inline) |
Fariborz Jahanian | fd0f89d | 2011-02-04 00:08:13 +0000 | [diff] [blame] | 534 | return llvm::Function::AvailableExternallyLinkage; |
John McCall | 5584d91 | 2011-09-19 18:05:26 +0000 | [diff] [blame] | 535 | |
| 536 | // Note that Apple's kernel linker doesn't support symbol |
| 537 | // coalescing, so we need to avoid linkonce and weak linkages there. |
| 538 | // Normally, this means we just map to internal, but for explicit |
| 539 | // instantiations we'll map to external. |
| 540 | |
Chris Lattner | f8153065 | 2010-06-30 16:58:07 +0000 | [diff] [blame] | 541 | // In C++, the compiler has to emit a definition in every translation unit |
| 542 | // that references the function. We should use linkonce_odr because |
| 543 | // a) if all references in this translation unit are optimized away, we |
| 544 | // don't need to codegen it. b) if the function persists, it needs to be |
| 545 | // merged with other definitions. c) C++ has the ODR, so we know the |
| 546 | // definition is dependable. |
| 547 | if (Linkage == GVA_CXXInline || Linkage == GVA_TemplateInstantiation) |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 548 | return !Context.getLangOpts().AppleKext |
Fariborz Jahanian | 142f9e9 | 2011-02-04 00:01:24 +0000 | [diff] [blame] | 549 | ? llvm::Function::LinkOnceODRLinkage |
| 550 | : llvm::Function::InternalLinkage; |
Chris Lattner | f8153065 | 2010-06-30 16:58:07 +0000 | [diff] [blame] | 551 | |
| 552 | // An explicit instantiation of a template has weak linkage, since |
| 553 | // explicit instantiations can occur in multiple translation units |
| 554 | // and must all be equivalent. However, we are not allowed to |
| 555 | // throw away these explicit instantiations. |
| 556 | if (Linkage == GVA_ExplicitTemplateInstantiation) |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 557 | return !Context.getLangOpts().AppleKext |
Fariborz Jahanian | 142f9e9 | 2011-02-04 00:01:24 +0000 | [diff] [blame] | 558 | ? llvm::Function::WeakODRLinkage |
John McCall | 5584d91 | 2011-09-19 18:05:26 +0000 | [diff] [blame] | 559 | : llvm::Function::ExternalLinkage; |
Chris Lattner | f8153065 | 2010-06-30 16:58:07 +0000 | [diff] [blame] | 560 | |
| 561 | // Otherwise, we have strong external linkage. |
| 562 | assert(Linkage == GVA_StrongExternal); |
| 563 | return llvm::Function::ExternalLinkage; |
John McCall | d46f985 | 2010-02-19 01:32:20 +0000 | [diff] [blame] | 564 | } |
Nuno Lopes | d4cbda6 | 2008-06-08 15:45:52 +0000 | [diff] [blame] | 565 | |
John McCall | d46f985 | 2010-02-19 01:32:20 +0000 | [diff] [blame] | 566 | |
| 567 | /// SetFunctionDefinitionAttributes - Set attributes for a global. |
| 568 | /// |
| 569 | /// FIXME: This is currently only done for aliases and functions, but not for |
| 570 | /// variables (these details are set in EmitGlobalVarDefinition for variables). |
| 571 | void CodeGenModule::SetFunctionDefinitionAttributes(const FunctionDecl *D, |
| 572 | llvm::GlobalValue *GV) { |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 573 | SetCommonAttributes(D, GV); |
Nuno Lopes | d4cbda6 | 2008-06-08 15:45:52 +0000 | [diff] [blame] | 574 | } |
| 575 | |
Daniel Dunbar | 7dbd819 | 2009-04-14 07:08:30 +0000 | [diff] [blame] | 576 | void CodeGenModule::SetLLVMFunctionAttributes(const Decl *D, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 577 | const CGFunctionInfo &Info, |
Daniel Dunbar | 7dbd819 | 2009-04-14 07:08:30 +0000 | [diff] [blame] | 578 | llvm::Function *F) { |
Daniel Dunbar | ca6408c | 2009-09-12 00:59:20 +0000 | [diff] [blame] | 579 | unsigned CallingConv; |
Devang Patel | 761d7f7 | 2008-09-25 21:02:23 +0000 | [diff] [blame] | 580 | AttributeListType AttributeList; |
Bill Wendling | 94236e7 | 2013-02-22 00:13:35 +0000 | [diff] [blame] | 581 | ConstructAttributeList(Info, D, AttributeList, CallingConv, false); |
Bill Wendling | 785b778 | 2012-12-07 23:17:26 +0000 | [diff] [blame] | 582 | F->setAttributes(llvm::AttributeSet::get(getLLVMContext(), AttributeList)); |
Daniel Dunbar | ca6408c | 2009-09-12 00:59:20 +0000 | [diff] [blame] | 583 | F->setCallingConv(static_cast<llvm::CallingConv::ID>(CallingConv)); |
Daniel Dunbar | f80519b | 2008-09-04 23:41:35 +0000 | [diff] [blame] | 584 | } |
| 585 | |
John McCall | d1e40d5 | 2011-10-02 01:16:38 +0000 | [diff] [blame] | 586 | /// Determines whether the language options require us to model |
| 587 | /// unwind exceptions. We treat -fexceptions as mandating this |
| 588 | /// except under the fragile ObjC ABI with only ObjC exceptions |
| 589 | /// enabled. This means, for example, that C with -fexceptions |
| 590 | /// enables this. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 591 | static bool hasUnwindExceptions(const LangOptions &LangOpts) { |
John McCall | d1e40d5 | 2011-10-02 01:16:38 +0000 | [diff] [blame] | 592 | // If exceptions are completely disabled, obviously this is false. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 593 | if (!LangOpts.Exceptions) return false; |
John McCall | d1e40d5 | 2011-10-02 01:16:38 +0000 | [diff] [blame] | 594 | |
| 595 | // If C++ exceptions are enabled, this is true. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 596 | if (LangOpts.CXXExceptions) return true; |
John McCall | d1e40d5 | 2011-10-02 01:16:38 +0000 | [diff] [blame] | 597 | |
| 598 | // If ObjC exceptions are enabled, this depends on the ABI. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 599 | if (LangOpts.ObjCExceptions) { |
David Chisnall | 11d3f4c | 2012-07-03 20:49:52 +0000 | [diff] [blame] | 600 | return LangOpts.ObjCRuntime.hasUnwindExceptions(); |
John McCall | d1e40d5 | 2011-10-02 01:16:38 +0000 | [diff] [blame] | 601 | } |
| 602 | |
| 603 | return true; |
| 604 | } |
| 605 | |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 606 | void CodeGenModule::SetLLVMFunctionAttributesForDefinition(const Decl *D, |
| 607 | llvm::Function *F) { |
Benjamin Kramer | 06a9d04 | 2013-05-11 12:45:37 +0000 | [diff] [blame] | 608 | llvm::AttrBuilder B; |
| 609 | |
Rafael Espindola | abca5a1 | 2011-05-25 03:44:55 +0000 | [diff] [blame] | 610 | if (CodeGenOpts.UnwindTables) |
Benjamin Kramer | 06a9d04 | 2013-05-11 12:45:37 +0000 | [diff] [blame] | 611 | B.addAttribute(llvm::Attribute::UWTable); |
Rafael Espindola | abca5a1 | 2011-05-25 03:44:55 +0000 | [diff] [blame] | 612 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 613 | if (!hasUnwindExceptions(LangOpts)) |
Benjamin Kramer | 06a9d04 | 2013-05-11 12:45:37 +0000 | [diff] [blame] | 614 | B.addAttribute(llvm::Attribute::NoUnwind); |
Daniel Dunbar | af668b0 | 2008-10-28 00:17:57 +0000 | [diff] [blame] | 615 | |
Eli Friedman | 2873aee | 2011-08-22 23:55:33 +0000 | [diff] [blame] | 616 | if (D->hasAttr<NakedAttr>()) { |
| 617 | // Naked implies noinline: we should not be inlining such functions. |
Benjamin Kramer | 06a9d04 | 2013-05-11 12:45:37 +0000 | [diff] [blame] | 618 | B.addAttribute(llvm::Attribute::Naked); |
| 619 | B.addAttribute(llvm::Attribute::NoInline); |
| 620 | } else if (D->hasAttr<NoInlineAttr>()) { |
| 621 | B.addAttribute(llvm::Attribute::NoInline); |
| 622 | } else if ((D->hasAttr<AlwaysInlineAttr>() || |
| 623 | D->hasAttr<ForceInlineAttr>()) && |
| 624 | !F->getAttributes().hasAttribute(llvm::AttributeSet::FunctionIndex, |
| 625 | llvm::Attribute::NoInline)) { |
| 626 | // (noinline wins over always_inline, and we can't specify both in IR) |
| 627 | B.addAttribute(llvm::Attribute::AlwaysInline); |
Eli Friedman | 2873aee | 2011-08-22 23:55:33 +0000 | [diff] [blame] | 628 | } |
Daniel Dunbar | dd0cb22 | 2010-09-29 18:20:25 +0000 | [diff] [blame] | 629 | |
Diego Novillo | d27e5cb | 2013-05-24 20:18:15 +0000 | [diff] [blame] | 630 | if (D->hasAttr<ColdAttr>()) { |
Benjamin Kramer | 06a9d04 | 2013-05-11 12:45:37 +0000 | [diff] [blame] | 631 | B.addAttribute(llvm::Attribute::OptimizeForSize); |
Diego Novillo | d27e5cb | 2013-05-24 20:18:15 +0000 | [diff] [blame] | 632 | B.addAttribute(llvm::Attribute::Cold); |
| 633 | } |
Benjamin Kramer | ee409a9 | 2012-05-12 21:10:52 +0000 | [diff] [blame] | 634 | |
Quentin Colombet | aee56fa | 2012-11-01 23:55:47 +0000 | [diff] [blame] | 635 | if (D->hasAttr<MinSizeAttr>()) |
Benjamin Kramer | 06a9d04 | 2013-05-11 12:45:37 +0000 | [diff] [blame] | 636 | B.addAttribute(llvm::Attribute::MinSize); |
Richard Smith | ef4d5ce | 2012-09-28 22:46:07 +0000 | [diff] [blame] | 637 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 638 | if (LangOpts.getStackProtector() == LangOptions::SSPOn) |
Benjamin Kramer | 06a9d04 | 2013-05-11 12:45:37 +0000 | [diff] [blame] | 639 | B.addAttribute(llvm::Attribute::StackProtect); |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 640 | else if (LangOpts.getStackProtector() == LangOptions::SSPReq) |
Benjamin Kramer | 06a9d04 | 2013-05-11 12:45:37 +0000 | [diff] [blame] | 641 | B.addAttribute(llvm::Attribute::StackProtectReq); |
Will Dietz | 4f45bc0 | 2013-01-18 11:30:38 +0000 | [diff] [blame] | 642 | |
Alexey Samsonov | 7e73f94 | 2013-03-06 10:54:18 +0000 | [diff] [blame] | 643 | // Add sanitizer attributes if function is not blacklisted. |
Alexey Samsonov | 6a4c5dc | 2013-08-12 11:48:05 +0000 | [diff] [blame^] | 644 | if (!SanitizerBlacklist->isIn(*F)) { |
Alexey Samsonov | 7e73f94 | 2013-03-06 10:54:18 +0000 | [diff] [blame] | 645 | // When AddressSanitizer is enabled, set SanitizeAddress attribute |
| 646 | // unless __attribute__((no_sanitize_address)) is used. |
| 647 | if (SanOpts.Address && !D->hasAttr<NoSanitizeAddressAttr>()) |
Benjamin Kramer | 06a9d04 | 2013-05-11 12:45:37 +0000 | [diff] [blame] | 648 | B.addAttribute(llvm::Attribute::SanitizeAddress); |
Alexey Samsonov | 7e73f94 | 2013-03-06 10:54:18 +0000 | [diff] [blame] | 649 | // Same for ThreadSanitizer and __attribute__((no_sanitize_thread)) |
| 650 | if (SanOpts.Thread && !D->hasAttr<NoSanitizeThreadAttr>()) { |
Benjamin Kramer | 06a9d04 | 2013-05-11 12:45:37 +0000 | [diff] [blame] | 651 | B.addAttribute(llvm::Attribute::SanitizeThread); |
Alexey Samsonov | 7e73f94 | 2013-03-06 10:54:18 +0000 | [diff] [blame] | 652 | } |
| 653 | // Same for MemorySanitizer and __attribute__((no_sanitize_memory)) |
| 654 | if (SanOpts.Memory && !D->hasAttr<NoSanitizeMemoryAttr>()) |
Benjamin Kramer | 06a9d04 | 2013-05-11 12:45:37 +0000 | [diff] [blame] | 655 | B.addAttribute(llvm::Attribute::SanitizeMemory); |
Alexey Samsonov | 7e73f94 | 2013-03-06 10:54:18 +0000 | [diff] [blame] | 656 | } |
Alexander Potapenko | 89651ea | 2012-02-02 11:49:28 +0000 | [diff] [blame] | 657 | |
Benjamin Kramer | 06a9d04 | 2013-05-11 12:45:37 +0000 | [diff] [blame] | 658 | F->addAttributes(llvm::AttributeSet::FunctionIndex, |
| 659 | llvm::AttributeSet::get( |
| 660 | F->getContext(), llvm::AttributeSet::FunctionIndex, B)); |
| 661 | |
| 662 | if (isa<CXXConstructorDecl>(D) || isa<CXXDestructorDecl>(D)) |
| 663 | F->setUnnamedAddr(true); |
| 664 | else if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) |
| 665 | if (MD->isVirtual()) |
| 666 | F->setUnnamedAddr(true); |
| 667 | |
Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 668 | unsigned alignment = D->getMaxAlignment() / Context.getCharWidth(); |
| 669 | if (alignment) |
| 670 | F->setAlignment(alignment); |
| 671 | |
Mike Stump | fb51ddf | 2009-10-05 22:49:20 +0000 | [diff] [blame] | 672 | // C++ ABI requires 2-byte alignment for member functions. |
Mike Stump | bd6dbd1 | 2009-10-05 23:08:21 +0000 | [diff] [blame] | 673 | if (F->getAlignment() < 2 && isa<CXXMethodDecl>(D)) |
| 674 | F->setAlignment(2); |
Daniel Dunbar | f80519b | 2008-09-04 23:41:35 +0000 | [diff] [blame] | 675 | } |
| 676 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 677 | void CodeGenModule::SetCommonAttributes(const Decl *D, |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 678 | llvm::GlobalValue *GV) { |
Anders Carlsson | 934176f | 2011-01-29 19:41:00 +0000 | [diff] [blame] | 679 | if (const NamedDecl *ND = dyn_cast<NamedDecl>(D)) |
| 680 | setGlobalVisibility(GV, ND); |
John McCall | 1fb0caa | 2010-10-22 21:05:15 +0000 | [diff] [blame] | 681 | else |
| 682 | GV->setVisibility(llvm::GlobalValue::DefaultVisibility); |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 683 | |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 684 | if (D->hasAttr<UsedAttr>()) |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 685 | AddUsedGlobal(GV); |
| 686 | |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 687 | if (const SectionAttr *SA = D->getAttr<SectionAttr>()) |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 688 | GV->setSection(SA->getName()); |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 689 | |
Rafael Espindola | 9a2f5d7 | 2013-03-19 15:03:47 +0000 | [diff] [blame] | 690 | // Alias cannot have attributes. Filter them here. |
| 691 | if (!isa<llvm::GlobalAlias>(GV)) |
| 692 | getTargetCodeGenInfo().SetTargetAttributes(D, GV, *this); |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 693 | } |
| 694 | |
Daniel Dunbar | 0e4f40e | 2009-04-17 00:48:04 +0000 | [diff] [blame] | 695 | void CodeGenModule::SetInternalFunctionAttributes(const Decl *D, |
| 696 | llvm::Function *F, |
| 697 | const CGFunctionInfo &FI) { |
| 698 | SetLLVMFunctionAttributes(D, FI, F); |
| 699 | SetLLVMFunctionAttributesForDefinition(D, F); |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 700 | |
| 701 | F->setLinkage(llvm::Function::InternalLinkage); |
| 702 | |
Daniel Dunbar | 0e4f40e | 2009-04-17 00:48:04 +0000 | [diff] [blame] | 703 | SetCommonAttributes(D, F); |
Daniel Dunbar | f80519b | 2008-09-04 23:41:35 +0000 | [diff] [blame] | 704 | } |
| 705 | |
Anders Carlsson | b2bcf1c | 2010-02-06 02:44:09 +0000 | [diff] [blame] | 706 | void CodeGenModule::SetFunctionAttributes(GlobalDecl GD, |
Eli Friedman | c6c14d1 | 2009-05-26 01:22:57 +0000 | [diff] [blame] | 707 | llvm::Function *F, |
| 708 | bool IsIncompleteFunction) { |
Peter Collingbourne | 0ac2cf4 | 2011-04-06 12:29:04 +0000 | [diff] [blame] | 709 | if (unsigned IID = F->getIntrinsicID()) { |
| 710 | // If this is an intrinsic function, set the function's attributes |
| 711 | // to the intrinsic's attributes. |
Bill Wendling | 50e6b18 | 2012-10-15 04:47:45 +0000 | [diff] [blame] | 712 | F->setAttributes(llvm::Intrinsic::getAttributes(getLLVMContext(), |
| 713 | (llvm::Intrinsic::ID)IID)); |
Peter Collingbourne | 0ac2cf4 | 2011-04-06 12:29:04 +0000 | [diff] [blame] | 714 | return; |
| 715 | } |
| 716 | |
Anders Carlsson | b2bcf1c | 2010-02-06 02:44:09 +0000 | [diff] [blame] | 717 | const FunctionDecl *FD = cast<FunctionDecl>(GD.getDecl()); |
| 718 | |
Eli Friedman | c6c14d1 | 2009-05-26 01:22:57 +0000 | [diff] [blame] | 719 | if (!IsIncompleteFunction) |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 720 | SetLLVMFunctionAttributes(FD, getTypes().arrangeGlobalDeclaration(GD), F); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 721 | |
Stephen Lin | 3b50e8d | 2013-06-30 20:40:16 +0000 | [diff] [blame] | 722 | if (getCXXABI().HasThisReturn(GD)) { |
| 723 | assert(!F->arg_empty() && |
| 724 | F->arg_begin()->getType() |
| 725 | ->canLosslesslyBitCastTo(F->getReturnType()) && |
| 726 | "unexpected this return"); |
| 727 | F->addAttribute(1, llvm::Attribute::Returned); |
| 728 | } |
| 729 | |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 730 | // Only a few attributes are set on declarations; these may later be |
| 731 | // overridden by a definition. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 732 | |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 733 | if (FD->hasAttr<DLLImportAttr>()) { |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 734 | F->setLinkage(llvm::Function::DLLImportLinkage); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 735 | } else if (FD->hasAttr<WeakAttr>() || |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 736 | FD->isWeakImported()) { |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 737 | // "extern_weak" is overloaded in LLVM; we probably should have |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 738 | // separate linkage types for this. |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 739 | F->setLinkage(llvm::Function::ExternalWeakLinkage); |
| 740 | } else { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 741 | F->setLinkage(llvm::Function::ExternalLinkage); |
John McCall | af14603 | 2010-10-30 11:50:40 +0000 | [diff] [blame] | 742 | |
Rafael Espindola | 2beda12 | 2013-02-27 02:15:29 +0000 | [diff] [blame] | 743 | LinkageInfo LV = FD->getLinkageAndVisibility(); |
Rafael Espindola | f127eb8 | 2013-02-27 02:56:45 +0000 | [diff] [blame] | 744 | if (LV.getLinkage() == ExternalLinkage && LV.isVisibilityExplicit()) { |
| 745 | F->setVisibility(GetLLVMVisibility(LV.getVisibility())); |
John McCall | af14603 | 2010-10-30 11:50:40 +0000 | [diff] [blame] | 746 | } |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 747 | } |
| 748 | |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 749 | if (const SectionAttr *SA = FD->getAttr<SectionAttr>()) |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 750 | F->setSection(SA->getName()); |
Richard Smith | ddcff1b | 2013-07-21 23:12:18 +0000 | [diff] [blame] | 751 | |
| 752 | // A replaceable global allocation function does not act like a builtin by |
| 753 | // default, only if it is invoked by a new-expression or delete-expression. |
| 754 | if (FD->isReplaceableGlobalAllocationFunction()) |
| 755 | F->addAttribute(llvm::AttributeSet::FunctionIndex, |
| 756 | llvm::Attribute::NoBuiltin); |
Daniel Dunbar | 219df66 | 2008-09-08 23:44:31 +0000 | [diff] [blame] | 757 | } |
| 758 | |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 759 | void CodeGenModule::AddUsedGlobal(llvm::GlobalValue *GV) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 760 | assert(!GV->isDeclaration() && |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 761 | "Only globals with definition can force usage."); |
Chris Lattner | 35f38a2 | 2009-03-31 22:37:52 +0000 | [diff] [blame] | 762 | LLVMUsed.push_back(GV); |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 763 | } |
| 764 | |
| 765 | void CodeGenModule::EmitLLVMUsed() { |
| 766 | // Don't create llvm.used if there is no need. |
Chris Lattner | ad64e02 | 2009-07-17 23:57:13 +0000 | [diff] [blame] | 767 | if (LLVMUsed.empty()) |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 768 | return; |
| 769 | |
Chris Lattner | 35f38a2 | 2009-03-31 22:37:52 +0000 | [diff] [blame] | 770 | // Convert LLVMUsed to what ConstantArray needs. |
Chris Lattner | 0b23971 | 2012-02-06 22:16:34 +0000 | [diff] [blame] | 771 | SmallVector<llvm::Constant*, 8> UsedArray; |
Chris Lattner | 35f38a2 | 2009-03-31 22:37:52 +0000 | [diff] [blame] | 772 | UsedArray.resize(LLVMUsed.size()); |
| 773 | for (unsigned i = 0, e = LLVMUsed.size(); i != e; ++i) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 774 | UsedArray[i] = |
| 775 | llvm::ConstantExpr::getBitCast(cast<llvm::Constant>(&*LLVMUsed[i]), |
Chris Lattner | 0b23971 | 2012-02-06 22:16:34 +0000 | [diff] [blame] | 776 | Int8PtrTy); |
Chris Lattner | 35f38a2 | 2009-03-31 22:37:52 +0000 | [diff] [blame] | 777 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 778 | |
Fariborz Jahanian | c38e9af | 2009-06-23 21:47:46 +0000 | [diff] [blame] | 779 | if (UsedArray.empty()) |
| 780 | return; |
Chris Lattner | 0b23971 | 2012-02-06 22:16:34 +0000 | [diff] [blame] | 781 | llvm::ArrayType *ATy = llvm::ArrayType::get(Int8PtrTy, UsedArray.size()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 782 | |
| 783 | llvm::GlobalVariable *GV = |
| 784 | new llvm::GlobalVariable(getModule(), ATy, false, |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 785 | llvm::GlobalValue::AppendingLinkage, |
Owen Anderson | 7db6d83 | 2009-07-28 18:33:04 +0000 | [diff] [blame] | 786 | llvm::ConstantArray::get(ATy, UsedArray), |
Owen Anderson | 1c431b3 | 2009-07-08 19:05:04 +0000 | [diff] [blame] | 787 | "llvm.used"); |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 788 | |
| 789 | GV->setSection("llvm.metadata"); |
| 790 | } |
| 791 | |
Reid Kleckner | 3190ca9 | 2013-05-08 13:44:39 +0000 | [diff] [blame] | 792 | void CodeGenModule::AppendLinkerOptions(StringRef Opts) { |
| 793 | llvm::Value *MDOpts = llvm::MDString::get(getLLVMContext(), Opts); |
| 794 | LinkerOptionsMetadata.push_back(llvm::MDNode::get(getLLVMContext(), MDOpts)); |
| 795 | } |
| 796 | |
Aaron Ballman | a7ff62f | 2013-06-04 02:07:14 +0000 | [diff] [blame] | 797 | void CodeGenModule::AddDetectMismatch(StringRef Name, StringRef Value) { |
| 798 | llvm::SmallString<32> Opt; |
| 799 | getTargetCodeGenInfo().getDetectMismatchOption(Name, Value, Opt); |
| 800 | llvm::Value *MDOpts = llvm::MDString::get(getLLVMContext(), Opt); |
| 801 | LinkerOptionsMetadata.push_back(llvm::MDNode::get(getLLVMContext(), MDOpts)); |
| 802 | } |
| 803 | |
Reid Kleckner | 3190ca9 | 2013-05-08 13:44:39 +0000 | [diff] [blame] | 804 | void CodeGenModule::AddDependentLib(StringRef Lib) { |
| 805 | llvm::SmallString<24> Opt; |
| 806 | getTargetCodeGenInfo().getDependentLibraryOption(Lib, Opt); |
| 807 | llvm::Value *MDOpts = llvm::MDString::get(getLLVMContext(), Opt); |
| 808 | LinkerOptionsMetadata.push_back(llvm::MDNode::get(getLLVMContext(), MDOpts)); |
| 809 | } |
| 810 | |
Douglas Gregor | 858afb3 | 2013-01-14 20:53:57 +0000 | [diff] [blame] | 811 | /// \brief Add link options implied by the given module, including modules |
| 812 | /// it depends on, using a postorder walk. |
Reid Kleckner | 3190ca9 | 2013-05-08 13:44:39 +0000 | [diff] [blame] | 813 | static void addLinkOptionsPostorder(CodeGenModule &CGM, |
Douglas Gregor | 858afb3 | 2013-01-14 20:53:57 +0000 | [diff] [blame] | 814 | Module *Mod, |
Daniel Dunbar | f9d03c1 | 2013-01-17 01:35:06 +0000 | [diff] [blame] | 815 | SmallVectorImpl<llvm::Value *> &Metadata, |
Douglas Gregor | 858afb3 | 2013-01-14 20:53:57 +0000 | [diff] [blame] | 816 | llvm::SmallPtrSet<Module *, 16> &Visited) { |
| 817 | // Import this module's parent. |
| 818 | if (Mod->Parent && Visited.insert(Mod->Parent)) { |
Reid Kleckner | 3190ca9 | 2013-05-08 13:44:39 +0000 | [diff] [blame] | 819 | addLinkOptionsPostorder(CGM, Mod->Parent, Metadata, Visited); |
Douglas Gregor | 858afb3 | 2013-01-14 20:53:57 +0000 | [diff] [blame] | 820 | } |
| 821 | |
| 822 | // Import this module's dependencies. |
| 823 | for (unsigned I = Mod->Imports.size(); I > 0; --I) { |
| 824 | if (Visited.insert(Mod->Imports[I-1])) |
Reid Kleckner | 3190ca9 | 2013-05-08 13:44:39 +0000 | [diff] [blame] | 825 | addLinkOptionsPostorder(CGM, Mod->Imports[I-1], Metadata, Visited); |
Douglas Gregor | 858afb3 | 2013-01-14 20:53:57 +0000 | [diff] [blame] | 826 | } |
| 827 | |
| 828 | // Add linker options to link against the libraries/frameworks |
| 829 | // described by this module. |
Reid Kleckner | 3190ca9 | 2013-05-08 13:44:39 +0000 | [diff] [blame] | 830 | llvm::LLVMContext &Context = CGM.getLLVMContext(); |
Douglas Gregor | 858afb3 | 2013-01-14 20:53:57 +0000 | [diff] [blame] | 831 | for (unsigned I = Mod->LinkLibraries.size(); I > 0; --I) { |
Reid Kleckner | 3190ca9 | 2013-05-08 13:44:39 +0000 | [diff] [blame] | 832 | // Link against a framework. Frameworks are currently Darwin only, so we |
| 833 | // don't to ask TargetCodeGenInfo for the spelling of the linker option. |
Douglas Gregor | 858afb3 | 2013-01-14 20:53:57 +0000 | [diff] [blame] | 834 | if (Mod->LinkLibraries[I-1].IsFramework) { |
| 835 | llvm::Value *Args[2] = { |
| 836 | llvm::MDString::get(Context, "-framework"), |
| 837 | llvm::MDString::get(Context, Mod->LinkLibraries[I-1].Library) |
| 838 | }; |
| 839 | |
| 840 | Metadata.push_back(llvm::MDNode::get(Context, Args)); |
| 841 | continue; |
| 842 | } |
| 843 | |
| 844 | // Link against a library. |
Reid Kleckner | 3190ca9 | 2013-05-08 13:44:39 +0000 | [diff] [blame] | 845 | llvm::SmallString<24> Opt; |
| 846 | CGM.getTargetCodeGenInfo().getDependentLibraryOption( |
| 847 | Mod->LinkLibraries[I-1].Library, Opt); |
| 848 | llvm::Value *OptString = llvm::MDString::get(Context, Opt); |
Douglas Gregor | 858afb3 | 2013-01-14 20:53:57 +0000 | [diff] [blame] | 849 | Metadata.push_back(llvm::MDNode::get(Context, OptString)); |
| 850 | } |
| 851 | } |
| 852 | |
| 853 | void CodeGenModule::EmitModuleLinkOptions() { |
| 854 | // Collect the set of all of the modules we want to visit to emit link |
| 855 | // options, which is essentially the imported modules and all of their |
| 856 | // non-explicit child modules. |
| 857 | llvm::SetVector<clang::Module *> LinkModules; |
| 858 | llvm::SmallPtrSet<clang::Module *, 16> Visited; |
| 859 | SmallVector<clang::Module *, 16> Stack; |
| 860 | |
| 861 | // Seed the stack with imported modules. |
| 862 | for (llvm::SetVector<clang::Module *>::iterator M = ImportedModules.begin(), |
| 863 | MEnd = ImportedModules.end(); |
| 864 | M != MEnd; ++M) { |
| 865 | if (Visited.insert(*M)) |
| 866 | Stack.push_back(*M); |
| 867 | } |
| 868 | |
| 869 | // Find all of the modules to import, making a little effort to prune |
| 870 | // non-leaf modules. |
| 871 | while (!Stack.empty()) { |
| 872 | clang::Module *Mod = Stack.back(); |
| 873 | Stack.pop_back(); |
| 874 | |
| 875 | bool AnyChildren = false; |
| 876 | |
| 877 | // Visit the submodules of this module. |
| 878 | for (clang::Module::submodule_iterator Sub = Mod->submodule_begin(), |
| 879 | SubEnd = Mod->submodule_end(); |
| 880 | Sub != SubEnd; ++Sub) { |
| 881 | // Skip explicit children; they need to be explicitly imported to be |
| 882 | // linked against. |
| 883 | if ((*Sub)->IsExplicit) |
| 884 | continue; |
| 885 | |
| 886 | if (Visited.insert(*Sub)) { |
| 887 | Stack.push_back(*Sub); |
| 888 | AnyChildren = true; |
| 889 | } |
| 890 | } |
| 891 | |
| 892 | // We didn't find any children, so add this module to the list of |
| 893 | // modules to link against. |
| 894 | if (!AnyChildren) { |
| 895 | LinkModules.insert(Mod); |
| 896 | } |
| 897 | } |
| 898 | |
| 899 | // Add link options for all of the imported modules in reverse topological |
Reid Kleckner | 3190ca9 | 2013-05-08 13:44:39 +0000 | [diff] [blame] | 900 | // order. We don't do anything to try to order import link flags with respect |
| 901 | // to linker options inserted by things like #pragma comment(). |
Daniel Dunbar | f9d03c1 | 2013-01-17 01:35:06 +0000 | [diff] [blame] | 902 | SmallVector<llvm::Value *, 16> MetadataArgs; |
Douglas Gregor | 858afb3 | 2013-01-14 20:53:57 +0000 | [diff] [blame] | 903 | Visited.clear(); |
| 904 | for (llvm::SetVector<clang::Module *>::iterator M = LinkModules.begin(), |
| 905 | MEnd = LinkModules.end(); |
| 906 | M != MEnd; ++M) { |
| 907 | if (Visited.insert(*M)) |
Reid Kleckner | 3190ca9 | 2013-05-08 13:44:39 +0000 | [diff] [blame] | 908 | addLinkOptionsPostorder(*this, *M, MetadataArgs, Visited); |
Douglas Gregor | 858afb3 | 2013-01-14 20:53:57 +0000 | [diff] [blame] | 909 | } |
Daniel Dunbar | f9d03c1 | 2013-01-17 01:35:06 +0000 | [diff] [blame] | 910 | std::reverse(MetadataArgs.begin(), MetadataArgs.end()); |
Reid Kleckner | 3190ca9 | 2013-05-08 13:44:39 +0000 | [diff] [blame] | 911 | LinkerOptionsMetadata.append(MetadataArgs.begin(), MetadataArgs.end()); |
Douglas Gregor | 858afb3 | 2013-01-14 20:53:57 +0000 | [diff] [blame] | 912 | |
Daniel Dunbar | f9d03c1 | 2013-01-17 01:35:06 +0000 | [diff] [blame] | 913 | // Add the linker options metadata flag. |
| 914 | getModule().addModuleFlag(llvm::Module::AppendUnique, "Linker Options", |
Reid Kleckner | 3190ca9 | 2013-05-08 13:44:39 +0000 | [diff] [blame] | 915 | llvm::MDNode::get(getLLVMContext(), |
| 916 | LinkerOptionsMetadata)); |
Douglas Gregor | 858afb3 | 2013-01-14 20:53:57 +0000 | [diff] [blame] | 917 | } |
| 918 | |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 919 | void CodeGenModule::EmitDeferred() { |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 920 | // Emit code for any potentially referenced deferred decls. Since a |
| 921 | // previously unused static decl may become used during the generation of code |
Nick Lewycky | dce67a7 | 2011-07-18 05:26:13 +0000 | [diff] [blame] | 922 | // for a static function, iterate until no changes are made. |
Rafael Espindola | bbf58bb | 2010-03-10 02:19:29 +0000 | [diff] [blame] | 923 | |
John McCall | d5617ee | 2013-01-25 22:31:03 +0000 | [diff] [blame] | 924 | while (true) { |
Anders Carlsson | 046c294 | 2010-04-17 20:15:18 +0000 | [diff] [blame] | 925 | if (!DeferredVTables.empty()) { |
John McCall | d5617ee | 2013-01-25 22:31:03 +0000 | [diff] [blame] | 926 | EmitDeferredVTables(); |
| 927 | |
| 928 | // Emitting a v-table doesn't directly cause more v-tables to |
| 929 | // become deferred, although it can cause functions to be |
| 930 | // emitted that then need those v-tables. |
| 931 | assert(DeferredVTables.empty()); |
Rafael Espindola | bbf58bb | 2010-03-10 02:19:29 +0000 | [diff] [blame] | 932 | } |
| 933 | |
John McCall | d5617ee | 2013-01-25 22:31:03 +0000 | [diff] [blame] | 934 | // Stop if we're out of both deferred v-tables and deferred declarations. |
| 935 | if (DeferredDeclsToEmit.empty()) break; |
| 936 | |
Anders Carlsson | 2a131fb | 2009-05-05 04:44:02 +0000 | [diff] [blame] | 937 | GlobalDecl D = DeferredDeclsToEmit.back(); |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 938 | DeferredDeclsToEmit.pop_back(); |
| 939 | |
John McCall | c76702c | 2010-05-27 01:45:30 +0000 | [diff] [blame] | 940 | // Check to see if we've already emitted this. This is necessary |
| 941 | // for a couple of reasons: first, decls can end up in the |
| 942 | // deferred-decls queue multiple times, and second, decls can end |
| 943 | // up with definitions in unusual ways (e.g. by an extern inline |
| 944 | // function acquiring a strong function redefinition). Just |
| 945 | // ignore these cases. |
| 946 | // |
| 947 | // TODO: That said, looking this up multiple times is very wasteful. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 948 | StringRef Name = getMangledName(D); |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 949 | llvm::GlobalValue *CGRef = GetGlobalValue(Name); |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 950 | assert(CGRef && "Deferred decl wasn't referenced?"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 951 | |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 952 | if (!CGRef->isDeclaration()) |
| 953 | continue; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 954 | |
John McCall | c76702c | 2010-05-27 01:45:30 +0000 | [diff] [blame] | 955 | // GlobalAlias::isDeclaration() defers to the aliasee, but for our |
| 956 | // purposes an alias counts as a definition. |
| 957 | if (isa<llvm::GlobalAlias>(CGRef)) |
| 958 | continue; |
| 959 | |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 960 | // Otherwise, emit the definition and move on to the next one. |
| 961 | EmitGlobalDefinition(D); |
| 962 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 963 | } |
| 964 | |
Julien Lerouge | 77f68bb | 2011-09-09 22:41:49 +0000 | [diff] [blame] | 965 | void CodeGenModule::EmitGlobalAnnotations() { |
| 966 | if (Annotations.empty()) |
| 967 | return; |
| 968 | |
| 969 | // Create a new global variable for the ConstantStruct in the Module. |
| 970 | llvm::Constant *Array = llvm::ConstantArray::get(llvm::ArrayType::get( |
| 971 | Annotations[0]->getType(), Annotations.size()), Annotations); |
| 972 | llvm::GlobalValue *gv = new llvm::GlobalVariable(getModule(), |
| 973 | Array->getType(), false, llvm::GlobalValue::AppendingLinkage, Array, |
| 974 | "llvm.global.annotations"); |
| 975 | gv->setSection(AnnotationSection); |
| 976 | } |
| 977 | |
Dmitri Gribenko | cfa88f8 | 2013-01-12 19:30:44 +0000 | [diff] [blame] | 978 | llvm::Constant *CodeGenModule::EmitAnnotationString(StringRef Str) { |
Julien Lerouge | 77f68bb | 2011-09-09 22:41:49 +0000 | [diff] [blame] | 979 | llvm::StringMap<llvm::Constant*>::iterator i = AnnotationStrings.find(Str); |
| 980 | if (i != AnnotationStrings.end()) |
| 981 | return i->second; |
| 982 | |
| 983 | // Not found yet, create a new global. |
Chris Lattner | 9401069 | 2012-02-05 02:30:40 +0000 | [diff] [blame] | 984 | llvm::Constant *s = llvm::ConstantDataArray::getString(getLLVMContext(), Str); |
Julien Lerouge | 77f68bb | 2011-09-09 22:41:49 +0000 | [diff] [blame] | 985 | llvm::GlobalValue *gv = new llvm::GlobalVariable(getModule(), s->getType(), |
| 986 | true, llvm::GlobalValue::PrivateLinkage, s, ".str"); |
| 987 | gv->setSection(AnnotationSection); |
| 988 | gv->setUnnamedAddr(true); |
| 989 | AnnotationStrings[Str] = gv; |
| 990 | return gv; |
| 991 | } |
| 992 | |
| 993 | llvm::Constant *CodeGenModule::EmitAnnotationUnit(SourceLocation Loc) { |
| 994 | SourceManager &SM = getContext().getSourceManager(); |
| 995 | PresumedLoc PLoc = SM.getPresumedLoc(Loc); |
| 996 | if (PLoc.isValid()) |
| 997 | return EmitAnnotationString(PLoc.getFilename()); |
| 998 | return EmitAnnotationString(SM.getBufferName(Loc)); |
| 999 | } |
| 1000 | |
| 1001 | llvm::Constant *CodeGenModule::EmitAnnotationLineNo(SourceLocation L) { |
| 1002 | SourceManager &SM = getContext().getSourceManager(); |
| 1003 | PresumedLoc PLoc = SM.getPresumedLoc(L); |
| 1004 | unsigned LineNo = PLoc.isValid() ? PLoc.getLine() : |
| 1005 | SM.getExpansionLineNumber(L); |
| 1006 | return llvm::ConstantInt::get(Int32Ty, LineNo); |
| 1007 | } |
| 1008 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1009 | llvm::Constant *CodeGenModule::EmitAnnotateAttr(llvm::GlobalValue *GV, |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 1010 | const AnnotateAttr *AA, |
Julien Lerouge | 77f68bb | 2011-09-09 22:41:49 +0000 | [diff] [blame] | 1011 | SourceLocation L) { |
| 1012 | // Get the globals for file name, annotation, and the line number. |
| 1013 | llvm::Constant *AnnoGV = EmitAnnotationString(AA->getAnnotation()), |
| 1014 | *UnitGV = EmitAnnotationUnit(L), |
| 1015 | *LineNoCst = EmitAnnotationLineNo(L); |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 1016 | |
Daniel Dunbar | 57d5cee | 2009-04-14 22:41:13 +0000 | [diff] [blame] | 1017 | // Create the ConstantStruct for the global annotation. |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 1018 | llvm::Constant *Fields[4] = { |
Julien Lerouge | 77f68bb | 2011-09-09 22:41:49 +0000 | [diff] [blame] | 1019 | llvm::ConstantExpr::getBitCast(GV, Int8PtrTy), |
| 1020 | llvm::ConstantExpr::getBitCast(AnnoGV, Int8PtrTy), |
| 1021 | llvm::ConstantExpr::getBitCast(UnitGV, Int8PtrTy), |
| 1022 | LineNoCst |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 1023 | }; |
Chris Lattner | c5cbb90 | 2011-06-20 04:01:35 +0000 | [diff] [blame] | 1024 | return llvm::ConstantStruct::getAnon(Fields); |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 1025 | } |
| 1026 | |
Julien Lerouge | 77f68bb | 2011-09-09 22:41:49 +0000 | [diff] [blame] | 1027 | void CodeGenModule::AddGlobalAnnotations(const ValueDecl *D, |
| 1028 | llvm::GlobalValue *GV) { |
| 1029 | assert(D->hasAttr<AnnotateAttr>() && "no annotate attribute"); |
| 1030 | // Get the struct elements for these annotations. |
| 1031 | for (specific_attr_iterator<AnnotateAttr> |
| 1032 | ai = D->specific_attr_begin<AnnotateAttr>(), |
| 1033 | ae = D->specific_attr_end<AnnotateAttr>(); ai != ae; ++ai) |
| 1034 | Annotations.push_back(EmitAnnotateAttr(GV, *ai, D->getLocation())); |
| 1035 | } |
| 1036 | |
Argyrios Kyrtzidis | a6d6af3 | 2010-07-27 22:37:14 +0000 | [diff] [blame] | 1037 | bool CodeGenModule::MayDeferGeneration(const ValueDecl *Global) { |
Argyrios Kyrtzidis | 90e99a8 | 2010-07-29 18:15:58 +0000 | [diff] [blame] | 1038 | // Never defer when EmitAllDecls is specified. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1039 | if (LangOpts.EmitAllDecls) |
Daniel Dunbar | 73241df | 2009-02-13 21:18:01 +0000 | [diff] [blame] | 1040 | return false; |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 1041 | |
Argyrios Kyrtzidis | 4ac7c0b | 2010-07-29 20:08:05 +0000 | [diff] [blame] | 1042 | return !getContext().DeclMustBeEmitted(Global); |
Daniel Dunbar | 73241df | 2009-02-13 21:18:01 +0000 | [diff] [blame] | 1043 | } |
| 1044 | |
Nico Weber | c5f8046 | 2012-10-11 10:13:44 +0000 | [diff] [blame] | 1045 | llvm::Constant *CodeGenModule::GetAddrOfUuidDescriptor( |
| 1046 | const CXXUuidofExpr* E) { |
| 1047 | // Sema has verified that IIDSource has a __declspec(uuid()), and that its |
| 1048 | // well-formed. |
| 1049 | StringRef Uuid; |
| 1050 | if (E->isTypeOperand()) |
| 1051 | Uuid = CXXUuidofExpr::GetUuidAttrOfType(E->getTypeOperand())->getGuid(); |
| 1052 | else { |
| 1053 | // Special case: __uuidof(0) means an all-zero GUID. |
| 1054 | Expr *Op = E->getExprOperand(); |
| 1055 | if (!Op->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) |
| 1056 | Uuid = CXXUuidofExpr::GetUuidAttrOfType(Op->getType())->getGuid(); |
| 1057 | else |
| 1058 | Uuid = "00000000-0000-0000-0000-000000000000"; |
| 1059 | } |
David Majnemer | c8fe011 | 2013-08-09 08:35:59 +0000 | [diff] [blame] | 1060 | std::string Name = "_GUID_" + Uuid.lower(); |
| 1061 | std::replace(Name.begin(), Name.end(), '-', '_'); |
Nico Weber | c5f8046 | 2012-10-11 10:13:44 +0000 | [diff] [blame] | 1062 | |
| 1063 | // Look for an existing global. |
| 1064 | if (llvm::GlobalVariable *GV = getModule().getNamedGlobal(Name)) |
| 1065 | return GV; |
| 1066 | |
| 1067 | llvm::Constant *Init = EmitUuidofInitializer(Uuid, E->getType()); |
| 1068 | assert(Init && "failed to initialize as constant"); |
| 1069 | |
| 1070 | // GUIDs are assumed to be 16 bytes, spread over 4-2-2-8 bytes. However, the |
| 1071 | // first field is declared as "long", which for many targets is 8 bytes. |
| 1072 | // Those architectures are not supported. (With the MS abi, long is always 4 |
| 1073 | // bytes.) |
| 1074 | llvm::Type *GuidType = getTypes().ConvertType(E->getType()); |
| 1075 | if (Init->getType() != GuidType) { |
| 1076 | DiagnosticsEngine &Diags = getDiags(); |
| 1077 | unsigned DiagID = Diags.getCustomDiagID(DiagnosticsEngine::Error, |
| 1078 | "__uuidof codegen is not supported on this architecture"); |
| 1079 | Diags.Report(E->getExprLoc(), DiagID) << E->getSourceRange(); |
| 1080 | Init = llvm::UndefValue::get(GuidType); |
| 1081 | } |
| 1082 | |
| 1083 | llvm::GlobalVariable *GV = new llvm::GlobalVariable(getModule(), GuidType, |
David Majnemer | c8fe011 | 2013-08-09 08:35:59 +0000 | [diff] [blame] | 1084 | /*isConstant=*/true, llvm::GlobalValue::ExternalLinkage, Init, Name); |
Nico Weber | c5f8046 | 2012-10-11 10:13:44 +0000 | [diff] [blame] | 1085 | GV->setUnnamedAddr(true); |
| 1086 | return GV; |
| 1087 | } |
| 1088 | |
Rafael Espindola | 6a83670 | 2010-03-04 18:17:24 +0000 | [diff] [blame] | 1089 | llvm::Constant *CodeGenModule::GetWeakRefReference(const ValueDecl *VD) { |
| 1090 | const AliasAttr *AA = VD->getAttr<AliasAttr>(); |
| 1091 | assert(AA && "No alias?"); |
| 1092 | |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1093 | llvm::Type *DeclTy = getTypes().ConvertTypeForMem(VD->getType()); |
Rafael Espindola | 6a83670 | 2010-03-04 18:17:24 +0000 | [diff] [blame] | 1094 | |
Rafael Espindola | 6a83670 | 2010-03-04 18:17:24 +0000 | [diff] [blame] | 1095 | // 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] | 1096 | llvm::GlobalValue *Entry = GetGlobalValue(AA->getAliasee()); |
Joerg Sonnenberger | 4695f91 | 2012-10-16 17:45:27 +0000 | [diff] [blame] | 1097 | if (Entry) { |
| 1098 | unsigned AS = getContext().getTargetAddressSpace(VD->getType()); |
| 1099 | return llvm::ConstantExpr::getBitCast(Entry, DeclTy->getPointerTo(AS)); |
| 1100 | } |
Rafael Espindola | 6a83670 | 2010-03-04 18:17:24 +0000 | [diff] [blame] | 1101 | |
| 1102 | llvm::Constant *Aliasee; |
| 1103 | if (isa<llvm::FunctionType>(DeclTy)) |
Alex Rosenberg | c857ce8 | 2012-10-05 23:12:53 +0000 | [diff] [blame] | 1104 | Aliasee = GetOrCreateLLVMFunction(AA->getAliasee(), DeclTy, |
| 1105 | GlobalDecl(cast<FunctionDecl>(VD)), |
Anders Carlsson | 1faa89f | 2011-02-05 04:35:53 +0000 | [diff] [blame] | 1106 | /*ForVTable=*/false); |
Rafael Espindola | 6a83670 | 2010-03-04 18:17:24 +0000 | [diff] [blame] | 1107 | else |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 1108 | Aliasee = GetOrCreateLLVMGlobal(AA->getAliasee(), |
Rafael Espindola | 6a83670 | 2010-03-04 18:17:24 +0000 | [diff] [blame] | 1109 | llvm::PointerType::getUnqual(DeclTy), 0); |
Joerg Sonnenberger | 4695f91 | 2012-10-16 17:45:27 +0000 | [diff] [blame] | 1110 | |
| 1111 | llvm::GlobalValue* F = cast<llvm::GlobalValue>(Aliasee); |
| 1112 | F->setLinkage(llvm::Function::ExternalWeakLinkage); |
| 1113 | WeakRefReferences.insert(F); |
Rafael Espindola | 6a83670 | 2010-03-04 18:17:24 +0000 | [diff] [blame] | 1114 | |
| 1115 | return Aliasee; |
| 1116 | } |
| 1117 | |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 1118 | void CodeGenModule::EmitGlobal(GlobalDecl GD) { |
Anders Carlsson | 4a6835e | 2009-09-10 23:38:47 +0000 | [diff] [blame] | 1119 | const ValueDecl *Global = cast<ValueDecl>(GD.getDecl()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1120 | |
Rafael Espindola | 6a83670 | 2010-03-04 18:17:24 +0000 | [diff] [blame] | 1121 | // Weak references don't produce any output by themselves. |
| 1122 | if (Global->hasAttr<WeakRefAttr>()) |
| 1123 | return; |
| 1124 | |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 1125 | // If this is an alias definition (which otherwise looks like a declaration) |
| 1126 | // emit it now. |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 1127 | if (Global->hasAttr<AliasAttr>()) |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 1128 | return EmitAliasDefinition(GD); |
Daniel Dunbar | 219df66 | 2008-09-08 23:44:31 +0000 | [diff] [blame] | 1129 | |
Peter Collingbourne | d51e43a | 2011-10-06 18:29:46 +0000 | [diff] [blame] | 1130 | // If this is CUDA, be selective about which declarations we emit. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1131 | if (LangOpts.CUDA) { |
Peter Collingbourne | d51e43a | 2011-10-06 18:29:46 +0000 | [diff] [blame] | 1132 | if (CodeGenOpts.CUDAIsDevice) { |
| 1133 | if (!Global->hasAttr<CUDADeviceAttr>() && |
| 1134 | !Global->hasAttr<CUDAGlobalAttr>() && |
| 1135 | !Global->hasAttr<CUDAConstantAttr>() && |
| 1136 | !Global->hasAttr<CUDASharedAttr>()) |
| 1137 | return; |
| 1138 | } else { |
| 1139 | if (!Global->hasAttr<CUDAHostAttr>() && ( |
| 1140 | Global->hasAttr<CUDADeviceAttr>() || |
| 1141 | Global->hasAttr<CUDAConstantAttr>() || |
| 1142 | Global->hasAttr<CUDASharedAttr>())) |
| 1143 | return; |
| 1144 | } |
| 1145 | } |
| 1146 | |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 1147 | // Ignore declarations, they will be emitted on their first use. |
Daniel Dunbar | 5e1e1f9 | 2009-03-19 08:27:24 +0000 | [diff] [blame] | 1148 | if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(Global)) { |
Daniel Dunbar | 73241df | 2009-02-13 21:18:01 +0000 | [diff] [blame] | 1149 | // Forward declarations are emitted lazily on first use. |
Nick Lewycky | dce67a7 | 2011-07-18 05:26:13 +0000 | [diff] [blame] | 1150 | if (!FD->doesThisDeclarationHaveABody()) { |
| 1151 | if (!FD->doesDeclarationForceExternallyVisibleDefinition()) |
| 1152 | return; |
| 1153 | |
| 1154 | const FunctionDecl *InlineDefinition = 0; |
| 1155 | FD->getBody(InlineDefinition); |
| 1156 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1157 | StringRef MangledName = getMangledName(GD); |
Benjamin Kramer | 7e42392 | 2012-03-24 18:22:12 +0000 | [diff] [blame] | 1158 | DeferredDecls.erase(MangledName); |
Nick Lewycky | dce67a7 | 2011-07-18 05:26:13 +0000 | [diff] [blame] | 1159 | EmitGlobalDefinition(InlineDefinition); |
Daniel Dunbar | 73241df | 2009-02-13 21:18:01 +0000 | [diff] [blame] | 1160 | return; |
Nick Lewycky | dce67a7 | 2011-07-18 05:26:13 +0000 | [diff] [blame] | 1161 | } |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 1162 | } else { |
| 1163 | const VarDecl *VD = cast<VarDecl>(Global); |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 1164 | assert(VD->isFileVarDecl() && "Cannot emit local var decl as global."); |
| 1165 | |
Douglas Gregor | a9a55c0 | 2010-02-06 05:15:45 +0000 | [diff] [blame] | 1166 | if (VD->isThisDeclarationADefinition() != VarDecl::Definition) |
Douglas Gregor | b6c8c8b | 2009-04-21 17:11:58 +0000 | [diff] [blame] | 1167 | return; |
Nate Begeman | 4c13b7a | 2008-04-20 06:29:50 +0000 | [diff] [blame] | 1168 | } |
| 1169 | |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 1170 | // Defer code generation when possible if this is a static definition, inline |
| 1171 | // function etc. These we only want to emit if they are used. |
Chris Lattner | 4357a82 | 2010-04-13 17:39:09 +0000 | [diff] [blame] | 1172 | if (!MayDeferGeneration(Global)) { |
| 1173 | // Emit the definition if it can't be deferred. |
| 1174 | EmitGlobalDefinition(GD); |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 1175 | return; |
| 1176 | } |
John McCall | bf40cb5 | 2010-07-15 23:40:35 +0000 | [diff] [blame] | 1177 | |
| 1178 | // If we're deferring emission of a C++ variable with an |
| 1179 | // initializer, remember the order in which it appeared in the file. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1180 | if (getLangOpts().CPlusPlus && isa<VarDecl>(Global) && |
John McCall | bf40cb5 | 2010-07-15 23:40:35 +0000 | [diff] [blame] | 1181 | cast<VarDecl>(Global)->hasInit()) { |
| 1182 | DelayedCXXInitPosition[Global] = CXXGlobalInits.size(); |
| 1183 | CXXGlobalInits.push_back(0); |
| 1184 | } |
Chris Lattner | 4357a82 | 2010-04-13 17:39:09 +0000 | [diff] [blame] | 1185 | |
| 1186 | // If the value has already been used, add it directly to the |
| 1187 | // DeferredDeclsToEmit list. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1188 | StringRef MangledName = getMangledName(GD); |
Chris Lattner | 4357a82 | 2010-04-13 17:39:09 +0000 | [diff] [blame] | 1189 | if (GetGlobalValue(MangledName)) |
| 1190 | DeferredDeclsToEmit.push_back(GD); |
| 1191 | else { |
| 1192 | // Otherwise, remember that we saw a deferred decl with this name. The |
| 1193 | // first use of the mangled name will cause it to move into |
| 1194 | // DeferredDeclsToEmit. |
| 1195 | DeferredDecls[MangledName] = GD; |
| 1196 | } |
Nate Begeman | 4c13b7a | 2008-04-20 06:29:50 +0000 | [diff] [blame] | 1197 | } |
| 1198 | |
Rafael Espindola | a411d2f | 2011-10-26 20:41:06 +0000 | [diff] [blame] | 1199 | namespace { |
| 1200 | struct FunctionIsDirectlyRecursive : |
| 1201 | public RecursiveASTVisitor<FunctionIsDirectlyRecursive> { |
| 1202 | const StringRef Name; |
Rafael Espindola | bcf6b98 | 2011-12-19 14:41:01 +0000 | [diff] [blame] | 1203 | const Builtin::Context &BI; |
Rafael Espindola | a411d2f | 2011-10-26 20:41:06 +0000 | [diff] [blame] | 1204 | bool Result; |
Rafael Espindola | bcf6b98 | 2011-12-19 14:41:01 +0000 | [diff] [blame] | 1205 | FunctionIsDirectlyRecursive(StringRef N, const Builtin::Context &C) : |
| 1206 | Name(N), BI(C), Result(false) { |
Rafael Espindola | a411d2f | 2011-10-26 20:41:06 +0000 | [diff] [blame] | 1207 | } |
| 1208 | typedef RecursiveASTVisitor<FunctionIsDirectlyRecursive> Base; |
| 1209 | |
| 1210 | bool TraverseCallExpr(CallExpr *E) { |
Rafael Espindola | bcf6b98 | 2011-12-19 14:41:01 +0000 | [diff] [blame] | 1211 | const FunctionDecl *FD = E->getDirectCallee(); |
| 1212 | if (!FD) |
Rafael Espindola | a411d2f | 2011-10-26 20:41:06 +0000 | [diff] [blame] | 1213 | return true; |
Rafael Espindola | bcf6b98 | 2011-12-19 14:41:01 +0000 | [diff] [blame] | 1214 | AsmLabelAttr *Attr = FD->getAttr<AsmLabelAttr>(); |
| 1215 | if (Attr && Name == Attr->getLabel()) { |
| 1216 | Result = true; |
| 1217 | return false; |
| 1218 | } |
| 1219 | unsigned BuiltinID = FD->getBuiltinID(); |
| 1220 | if (!BuiltinID) |
Rafael Espindola | a411d2f | 2011-10-26 20:41:06 +0000 | [diff] [blame] | 1221 | return true; |
Nick Lewycky | f6b5637 | 2012-01-18 03:41:19 +0000 | [diff] [blame] | 1222 | StringRef BuiltinName = BI.GetName(BuiltinID); |
| 1223 | if (BuiltinName.startswith("__builtin_") && |
| 1224 | Name == BuiltinName.slice(strlen("__builtin_"), StringRef::npos)) { |
Rafael Espindola | a411d2f | 2011-10-26 20:41:06 +0000 | [diff] [blame] | 1225 | Result = true; |
| 1226 | return false; |
| 1227 | } |
| 1228 | return true; |
| 1229 | } |
| 1230 | }; |
| 1231 | } |
| 1232 | |
Rafael Espindola | bcf6b98 | 2011-12-19 14:41:01 +0000 | [diff] [blame] | 1233 | // isTriviallyRecursive - Check if this function calls another |
| 1234 | // decl that, because of the asm attribute or the other decl being a builtin, |
| 1235 | // ends up pointing to itself. |
Rafael Espindola | a411d2f | 2011-10-26 20:41:06 +0000 | [diff] [blame] | 1236 | bool |
Rafael Espindola | bcf6b98 | 2011-12-19 14:41:01 +0000 | [diff] [blame] | 1237 | CodeGenModule::isTriviallyRecursive(const FunctionDecl *FD) { |
| 1238 | StringRef Name; |
| 1239 | if (getCXXABI().getMangleContext().shouldMangleDeclName(FD)) { |
Nick Lewycky | 22afacc | 2012-01-18 01:50:13 +0000 | [diff] [blame] | 1240 | // asm labels are a special kind of mangling we have to support. |
Rafael Espindola | bcf6b98 | 2011-12-19 14:41:01 +0000 | [diff] [blame] | 1241 | AsmLabelAttr *Attr = FD->getAttr<AsmLabelAttr>(); |
| 1242 | if (!Attr) |
| 1243 | return false; |
| 1244 | Name = Attr->getLabel(); |
| 1245 | } else { |
| 1246 | Name = FD->getName(); |
| 1247 | } |
Rafael Espindola | a411d2f | 2011-10-26 20:41:06 +0000 | [diff] [blame] | 1248 | |
Rafael Espindola | bcf6b98 | 2011-12-19 14:41:01 +0000 | [diff] [blame] | 1249 | FunctionIsDirectlyRecursive Walker(Name, Context.BuiltinInfo); |
| 1250 | Walker.TraverseFunctionDecl(const_cast<FunctionDecl*>(FD)); |
Rafael Espindola | a411d2f | 2011-10-26 20:41:06 +0000 | [diff] [blame] | 1251 | return Walker.Result; |
| 1252 | } |
| 1253 | |
| 1254 | bool |
Peter Collingbourne | 144a31f | 2013-06-05 17:49:37 +0000 | [diff] [blame] | 1255 | CodeGenModule::shouldEmitFunction(GlobalDecl GD) { |
| 1256 | if (getFunctionLinkage(GD) != llvm::Function::AvailableExternallyLinkage) |
Rafael Espindola | a411d2f | 2011-10-26 20:41:06 +0000 | [diff] [blame] | 1257 | return true; |
Peter Collingbourne | 144a31f | 2013-06-05 17:49:37 +0000 | [diff] [blame] | 1258 | const FunctionDecl *F = cast<FunctionDecl>(GD.getDecl()); |
Rafael Espindola | cc4889f | 2011-10-28 20:43:56 +0000 | [diff] [blame] | 1259 | if (CodeGenOpts.OptimizationLevel == 0 && |
Michael J. Spencer | adc6cbf | 2012-06-18 07:00:48 +0000 | [diff] [blame] | 1260 | !F->hasAttr<AlwaysInlineAttr>() && !F->hasAttr<ForceInlineAttr>()) |
Rafael Espindola | a411d2f | 2011-10-26 20:41:06 +0000 | [diff] [blame] | 1261 | return false; |
| 1262 | // PR9614. Avoid cases where the source code is lying to us. An available |
| 1263 | // externally function should have an equivalent function somewhere else, |
| 1264 | // but a function that calls itself is clearly not equivalent to the real |
| 1265 | // implementation. |
| 1266 | // This happens in glibc's btowc and in some configure checks. |
Rafael Espindola | bcf6b98 | 2011-12-19 14:41:01 +0000 | [diff] [blame] | 1267 | return !isTriviallyRecursive(F); |
Rafael Espindola | a411d2f | 2011-10-26 20:41:06 +0000 | [diff] [blame] | 1268 | } |
| 1269 | |
Adrian Prantl | 0a050f7 | 2013-05-09 23:16:27 +0000 | [diff] [blame] | 1270 | /// If the type for the method's class was generated by |
| 1271 | /// CGDebugInfo::createContextChain(), the cache contains only a |
| 1272 | /// limited DIType without any declarations. Since EmitFunctionStart() |
| 1273 | /// needs to find the canonical declaration for each method, we need |
| 1274 | /// to construct the complete type prior to emitting the method. |
| 1275 | void CodeGenModule::CompleteDIClassType(const CXXMethodDecl* D) { |
| 1276 | if (!D->isInstance()) |
| 1277 | return; |
| 1278 | |
| 1279 | if (CGDebugInfo *DI = getModuleDebugInfo()) |
| 1280 | if (getCodeGenOpts().getDebugInfo() >= CodeGenOptions::LimitedDebugInfo) { |
| 1281 | const PointerType *ThisPtr = |
| 1282 | cast<PointerType>(D->getThisType(getContext())); |
| 1283 | DI->getOrCreateRecordType(ThisPtr->getPointeeType(), D->getLocation()); |
| 1284 | } |
| 1285 | } |
| 1286 | |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 1287 | void CodeGenModule::EmitGlobalDefinition(GlobalDecl GD) { |
Anders Carlsson | 4a6835e | 2009-09-10 23:38:47 +0000 | [diff] [blame] | 1288 | const ValueDecl *D = cast<ValueDecl>(GD.getDecl()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1289 | |
Dan Gohman | cb421fa | 2010-04-19 16:39:44 +0000 | [diff] [blame] | 1290 | PrettyStackTraceDecl CrashInfo(const_cast<ValueDecl *>(D), D->getLocation(), |
Anders Carlsson | 8e2efcc | 2009-10-27 14:32:27 +0000 | [diff] [blame] | 1291 | Context.getSourceManager(), |
| 1292 | "Generating code for declaration"); |
| 1293 | |
Peter Collingbourne | 144a31f | 2013-06-05 17:49:37 +0000 | [diff] [blame] | 1294 | if (isa<FunctionDecl>(D)) { |
Douglas Gregor | 44eac33 | 2010-07-13 06:02:28 +0000 | [diff] [blame] | 1295 | // At -O0, don't generate IR for functions with available_externally |
| 1296 | // linkage. |
Peter Collingbourne | 144a31f | 2013-06-05 17:49:37 +0000 | [diff] [blame] | 1297 | if (!shouldEmitFunction(GD)) |
Douglas Gregor | 44eac33 | 2010-07-13 06:02:28 +0000 | [diff] [blame] | 1298 | return; |
Anders Carlsson | 7270ee4 | 2010-03-23 04:31:31 +0000 | [diff] [blame] | 1299 | |
Douglas Gregor | 44eac33 | 2010-07-13 06:02:28 +0000 | [diff] [blame] | 1300 | if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { |
Adrian Prantl | 0a050f7 | 2013-05-09 23:16:27 +0000 | [diff] [blame] | 1301 | CompleteDIClassType(Method); |
Eli Friedman | 7dcdf5b | 2011-05-06 17:27:27 +0000 | [diff] [blame] | 1302 | // Make sure to emit the definition(s) before we emit the thunks. |
| 1303 | // This is necessary for the generation of certain thunks. |
| 1304 | if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(Method)) |
| 1305 | EmitCXXConstructor(CD, GD.getCtorType()); |
| 1306 | else if (const CXXDestructorDecl *DD =dyn_cast<CXXDestructorDecl>(Method)) |
| 1307 | EmitCXXDestructor(DD, GD.getDtorType()); |
| 1308 | else |
| 1309 | EmitGlobalFunctionDefinition(GD); |
| 1310 | |
Douglas Gregor | 44eac33 | 2010-07-13 06:02:28 +0000 | [diff] [blame] | 1311 | if (Method->isVirtual()) |
| 1312 | getVTables().EmitThunks(GD); |
| 1313 | |
Eli Friedman | 7dcdf5b | 2011-05-06 17:27:27 +0000 | [diff] [blame] | 1314 | return; |
Douglas Gregor | 44eac33 | 2010-07-13 06:02:28 +0000 | [diff] [blame] | 1315 | } |
Chris Lattner | b5e8156 | 2010-04-13 17:57:11 +0000 | [diff] [blame] | 1316 | |
Chris Lattner | b5e8156 | 2010-04-13 17:57:11 +0000 | [diff] [blame] | 1317 | return EmitGlobalFunctionDefinition(GD); |
Douglas Gregor | 44eac33 | 2010-07-13 06:02:28 +0000 | [diff] [blame] | 1318 | } |
Chris Lattner | b5e8156 | 2010-04-13 17:57:11 +0000 | [diff] [blame] | 1319 | |
| 1320 | if (const VarDecl *VD = dyn_cast<VarDecl>(D)) |
| 1321 | return EmitGlobalVarDefinition(VD); |
Chris Lattner | 4357a82 | 2010-04-13 17:39:09 +0000 | [diff] [blame] | 1322 | |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 1323 | llvm_unreachable("Invalid argument to EmitGlobalDefinition()"); |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 1324 | } |
| 1325 | |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 1326 | /// GetOrCreateLLVMFunction - If the specified mangled name is not in the |
| 1327 | /// module, create and return an llvm Function with the specified type. If there |
| 1328 | /// is something in the module with the specified name, return it potentially |
| 1329 | /// bitcasted to the right type. |
| 1330 | /// |
| 1331 | /// If D is non-null, it specifies a decl that correspond to this. This is used |
| 1332 | /// to set the attributes on the function when it is first created. |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 1333 | llvm::Constant * |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1334 | CodeGenModule::GetOrCreateLLVMFunction(StringRef MangledName, |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1335 | llvm::Type *Ty, |
Reid Kleckner | 73701ea | 2013-07-22 13:07:10 +0000 | [diff] [blame] | 1336 | GlobalDecl GD, bool ForVTable, |
Bill Wendling | c4c62fd | 2013-01-31 00:30:05 +0000 | [diff] [blame] | 1337 | llvm::AttributeSet ExtraAttrs) { |
Reid Kleckner | 73701ea | 2013-07-22 13:07:10 +0000 | [diff] [blame] | 1338 | const Decl *D = GD.getDecl(); |
| 1339 | |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 1340 | // Lookup the entry, lazily creating it if necessary. |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 1341 | llvm::GlobalValue *Entry = GetGlobalValue(MangledName); |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 1342 | if (Entry) { |
Benjamin Kramer | d48bcb2 | 2012-08-22 15:37:55 +0000 | [diff] [blame] | 1343 | if (WeakRefReferences.erase(Entry)) { |
Reid Kleckner | 73701ea | 2013-07-22 13:07:10 +0000 | [diff] [blame] | 1344 | const FunctionDecl *FD = cast_or_null<FunctionDecl>(D); |
Rafael Espindola | 6a83670 | 2010-03-04 18:17:24 +0000 | [diff] [blame] | 1345 | if (FD && !FD->hasAttr<WeakAttr>()) |
Anders Carlsson | 7270ee4 | 2010-03-23 04:31:31 +0000 | [diff] [blame] | 1346 | Entry->setLinkage(llvm::Function::ExternalLinkage); |
Rafael Espindola | 6a83670 | 2010-03-04 18:17:24 +0000 | [diff] [blame] | 1347 | } |
| 1348 | |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 1349 | if (Entry->getType()->getElementType() == Ty) |
| 1350 | return Entry; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1351 | |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 1352 | // Make sure the result is of the correct type. |
Chris Lattner | 9cbe4f0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 1353 | return llvm::ConstantExpr::getBitCast(Entry, Ty->getPointerTo()); |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 1354 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1355 | |
Reid Kleckner | a4130ba | 2013-07-22 13:51:44 +0000 | [diff] [blame] | 1356 | // All MSVC dtors other than the base dtor are linkonce_odr and delegate to |
| 1357 | // each other bottoming out with the base dtor. Therefore we emit non-base |
| 1358 | // dtors on usage, even if there is no dtor definition in the TU. |
| 1359 | if (D && isa<CXXDestructorDecl>(D) && |
| 1360 | getCXXABI().useThunkForDtorVariant(cast<CXXDestructorDecl>(D), |
| 1361 | GD.getDtorType())) |
| 1362 | DeferredDeclsToEmit.push_back(GD); |
| 1363 | |
Eli Friedman | 654ad40 | 2009-11-09 05:07:37 +0000 | [diff] [blame] | 1364 | // This function doesn't have a complete type (for example, the return |
| 1365 | // type is an incomplete struct). Use a fake type instead, and make |
| 1366 | // sure not to try to set attributes. |
| 1367 | bool IsIncompleteFunction = false; |
John McCall | 784f211 | 2010-04-28 00:00:30 +0000 | [diff] [blame] | 1368 | |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1369 | llvm::FunctionType *FTy; |
John McCall | 784f211 | 2010-04-28 00:00:30 +0000 | [diff] [blame] | 1370 | if (isa<llvm::FunctionType>(Ty)) { |
| 1371 | FTy = cast<llvm::FunctionType>(Ty); |
| 1372 | } else { |
John McCall | 0774cb8 | 2011-05-15 01:53:33 +0000 | [diff] [blame] | 1373 | FTy = llvm::FunctionType::get(VoidTy, false); |
Eli Friedman | 654ad40 | 2009-11-09 05:07:37 +0000 | [diff] [blame] | 1374 | IsIncompleteFunction = true; |
| 1375 | } |
Chris Lattner | bcaedae | 2010-06-30 19:14:05 +0000 | [diff] [blame] | 1376 | |
John McCall | 784f211 | 2010-04-28 00:00:30 +0000 | [diff] [blame] | 1377 | llvm::Function *F = llvm::Function::Create(FTy, |
Eli Friedman | 654ad40 | 2009-11-09 05:07:37 +0000 | [diff] [blame] | 1378 | llvm::Function::ExternalLinkage, |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 1379 | MangledName, &getModule()); |
| 1380 | assert(F->getName() == MangledName && "name was uniqued!"); |
Reid Kleckner | 73701ea | 2013-07-22 13:07:10 +0000 | [diff] [blame] | 1381 | if (D) |
| 1382 | SetFunctionAttributes(GD, F, IsIncompleteFunction); |
Bill Wendling | c4c62fd | 2013-01-31 00:30:05 +0000 | [diff] [blame] | 1383 | if (ExtraAttrs.hasAttributes(llvm::AttributeSet::FunctionIndex)) { |
| 1384 | llvm::AttrBuilder B(ExtraAttrs, llvm::AttributeSet::FunctionIndex); |
Bill Wendling | 909b6de | 2013-01-23 00:21:06 +0000 | [diff] [blame] | 1385 | F->addAttributes(llvm::AttributeSet::FunctionIndex, |
| 1386 | llvm::AttributeSet::get(VMContext, |
| 1387 | llvm::AttributeSet::FunctionIndex, |
| 1388 | B)); |
| 1389 | } |
Eli Friedman | 654ad40 | 2009-11-09 05:07:37 +0000 | [diff] [blame] | 1390 | |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 1391 | // This is the first use or definition of a mangled name. If there is a |
| 1392 | // deferred decl with this name, remember that we need to emit it at the end |
| 1393 | // of the file. |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 1394 | llvm::StringMap<GlobalDecl>::iterator DDI = DeferredDecls.find(MangledName); |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 1395 | if (DDI != DeferredDecls.end()) { |
| 1396 | // Move the potentially referenced deferred decl to the DeferredDeclsToEmit |
| 1397 | // list, and remove it from DeferredDecls (since we don't need it anymore). |
| 1398 | DeferredDeclsToEmit.push_back(DDI->second); |
| 1399 | DeferredDecls.erase(DDI); |
John McCall | bfdcdc8 | 2010-12-15 04:00:32 +0000 | [diff] [blame] | 1400 | |
| 1401 | // Otherwise, there are cases we have to worry about where we're |
| 1402 | // using a declaration for which we must emit a definition but where |
| 1403 | // we might not find a top-level definition: |
| 1404 | // - member functions defined inline in their classes |
| 1405 | // - friend functions defined inline in some class |
| 1406 | // - special member functions with implicit definitions |
| 1407 | // If we ever change our AST traversal to walk into class methods, |
| 1408 | // this will be unnecessary. |
Anders Carlsson | 1faa89f | 2011-02-05 04:35:53 +0000 | [diff] [blame] | 1409 | // |
| 1410 | // We also don't emit a definition for a function if it's going to be an entry |
| 1411 | // in a vtable, unless it's already marked as used. |
Reid Kleckner | 73701ea | 2013-07-22 13:07:10 +0000 | [diff] [blame] | 1412 | } else if (getLangOpts().CPlusPlus && D) { |
John McCall | bfdcdc8 | 2010-12-15 04:00:32 +0000 | [diff] [blame] | 1413 | // Look for a declaration that's lexically in a record. |
Reid Kleckner | 73701ea | 2013-07-22 13:07:10 +0000 | [diff] [blame] | 1414 | const FunctionDecl *FD = cast<FunctionDecl>(D); |
Eli Friedman | b135f0f | 2012-07-02 21:05:30 +0000 | [diff] [blame] | 1415 | FD = FD->getMostRecentDecl(); |
John McCall | bfdcdc8 | 2010-12-15 04:00:32 +0000 | [diff] [blame] | 1416 | do { |
| 1417 | if (isa<CXXRecordDecl>(FD->getLexicalDeclContext())) { |
Anders Carlsson | 1faa89f | 2011-02-05 04:35:53 +0000 | [diff] [blame] | 1418 | if (FD->isImplicit() && !ForVTable) { |
John McCall | bfdcdc8 | 2010-12-15 04:00:32 +0000 | [diff] [blame] | 1419 | assert(FD->isUsed() && "Sema didn't mark implicit function as used!"); |
Reid Kleckner | 73701ea | 2013-07-22 13:07:10 +0000 | [diff] [blame] | 1420 | DeferredDeclsToEmit.push_back(GD.getWithDecl(FD)); |
John McCall | bfdcdc8 | 2010-12-15 04:00:32 +0000 | [diff] [blame] | 1421 | break; |
Sean Hunt | 10620eb | 2011-05-06 20:44:56 +0000 | [diff] [blame] | 1422 | } else if (FD->doesThisDeclarationHaveABody()) { |
Reid Kleckner | 73701ea | 2013-07-22 13:07:10 +0000 | [diff] [blame] | 1423 | DeferredDeclsToEmit.push_back(GD.getWithDecl(FD)); |
John McCall | bfdcdc8 | 2010-12-15 04:00:32 +0000 | [diff] [blame] | 1424 | break; |
| 1425 | } |
Rafael Espindola | 7b9a5aa | 2010-03-02 21:28:26 +0000 | [diff] [blame] | 1426 | } |
Douglas Gregor | ef96ee0 | 2012-01-14 16:38:05 +0000 | [diff] [blame] | 1427 | FD = FD->getPreviousDecl(); |
John McCall | bfdcdc8 | 2010-12-15 04:00:32 +0000 | [diff] [blame] | 1428 | } while (FD); |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 1429 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1430 | |
John McCall | 784f211 | 2010-04-28 00:00:30 +0000 | [diff] [blame] | 1431 | // Make sure the result is of the requested type. |
| 1432 | if (!IsIncompleteFunction) { |
| 1433 | assert(F->getType()->getElementType() == Ty); |
| 1434 | return F; |
| 1435 | } |
| 1436 | |
Chris Lattner | 9cbe4f0 | 2011-07-09 17:41:47 +0000 | [diff] [blame] | 1437 | llvm::Type *PTy = llvm::PointerType::getUnqual(Ty); |
John McCall | 784f211 | 2010-04-28 00:00:30 +0000 | [diff] [blame] | 1438 | return llvm::ConstantExpr::getBitCast(F, PTy); |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 1439 | } |
| 1440 | |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 1441 | /// GetAddrOfFunction - Return the address of the given function. If Ty is |
| 1442 | /// non-null, then this function will use the specified type if it has to |
| 1443 | /// create it (this occurs when we see a definition of the function). |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 1444 | llvm::Constant *CodeGenModule::GetAddrOfFunction(GlobalDecl GD, |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1445 | llvm::Type *Ty, |
Anders Carlsson | 1faa89f | 2011-02-05 04:35:53 +0000 | [diff] [blame] | 1446 | bool ForVTable) { |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 1447 | // If there was no specific requested type, just convert it now. |
| 1448 | if (!Ty) |
Anders Carlsson | 4a6835e | 2009-09-10 23:38:47 +0000 | [diff] [blame] | 1449 | Ty = getTypes().ConvertType(cast<ValueDecl>(GD.getDecl())->getType()); |
Chris Lattner | bcaedae | 2010-06-30 19:14:05 +0000 | [diff] [blame] | 1450 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1451 | StringRef MangledName = getMangledName(GD); |
Anders Carlsson | 1faa89f | 2011-02-05 04:35:53 +0000 | [diff] [blame] | 1452 | return GetOrCreateLLVMFunction(MangledName, Ty, GD, ForVTable); |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 1453 | } |
Eli Friedman | 77ba708 | 2008-05-30 19:50:47 +0000 | [diff] [blame] | 1454 | |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 1455 | /// CreateRuntimeFunction - Create a new runtime function with the specified |
| 1456 | /// type and name. |
| 1457 | llvm::Constant * |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1458 | CodeGenModule::CreateRuntimeFunction(llvm::FunctionType *FTy, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1459 | StringRef Name, |
Bill Wendling | c4c62fd | 2013-01-31 00:30:05 +0000 | [diff] [blame] | 1460 | llvm::AttributeSet ExtraAttrs) { |
John McCall | bd7370a | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 1461 | llvm::Constant *C |
| 1462 | = GetOrCreateLLVMFunction(Name, FTy, GlobalDecl(), /*ForVTable=*/false, |
| 1463 | ExtraAttrs); |
| 1464 | if (llvm::Function *F = dyn_cast<llvm::Function>(C)) |
| 1465 | if (F->empty()) |
| 1466 | F->setCallingConv(getRuntimeCC()); |
| 1467 | return C; |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 1468 | } |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 1469 | |
Richard Smith | a9b21d2 | 2012-02-17 06:48:11 +0000 | [diff] [blame] | 1470 | /// isTypeConstant - Determine whether an object of this type can be emitted |
| 1471 | /// as a constant. |
| 1472 | /// |
| 1473 | /// If ExcludeCtor is true, the duration when the object's constructor runs |
| 1474 | /// will not be considered. The caller will need to verify that the object is |
| 1475 | /// not written to during its construction. |
| 1476 | bool CodeGenModule::isTypeConstant(QualType Ty, bool ExcludeCtor) { |
| 1477 | if (!Ty.isConstant(Context) && !Ty->isReferenceType()) |
Eli Friedman | 20e098b | 2009-12-11 21:23:03 +0000 | [diff] [blame] | 1478 | return false; |
Richard Smith | a9b21d2 | 2012-02-17 06:48:11 +0000 | [diff] [blame] | 1479 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1480 | if (Context.getLangOpts().CPlusPlus) { |
Richard Smith | a9b21d2 | 2012-02-17 06:48:11 +0000 | [diff] [blame] | 1481 | if (const CXXRecordDecl *Record |
| 1482 | = Context.getBaseElementType(Ty)->getAsCXXRecordDecl()) |
| 1483 | return ExcludeCtor && !Record->hasMutableFields() && |
| 1484 | Record->hasTrivialDestructor(); |
Eli Friedman | 20e098b | 2009-12-11 21:23:03 +0000 | [diff] [blame] | 1485 | } |
Richard Smith | a9b21d2 | 2012-02-17 06:48:11 +0000 | [diff] [blame] | 1486 | |
Eli Friedman | 20e098b | 2009-12-11 21:23:03 +0000 | [diff] [blame] | 1487 | return true; |
| 1488 | } |
| 1489 | |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 1490 | /// GetOrCreateLLVMGlobal - If the specified mangled name is not in the module, |
| 1491 | /// create and return an llvm GlobalVariable with the specified type. If there |
| 1492 | /// is something in the module with the specified name, return it potentially |
| 1493 | /// bitcasted to the right type. |
| 1494 | /// |
| 1495 | /// If D is non-null, it specifies a decl that correspond to this. This is used |
| 1496 | /// to set the attributes on the global when it is first created. |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 1497 | llvm::Constant * |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1498 | CodeGenModule::GetOrCreateLLVMGlobal(StringRef MangledName, |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1499 | llvm::PointerType *Ty, |
Rafael Espindola | c532b50 | 2011-01-18 21:07:57 +0000 | [diff] [blame] | 1500 | const VarDecl *D, |
| 1501 | bool UnnamedAddr) { |
Daniel Dunbar | 3c827a7 | 2008-08-05 23:31:02 +0000 | [diff] [blame] | 1502 | // Lookup the entry, lazily creating it if necessary. |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 1503 | llvm::GlobalValue *Entry = GetGlobalValue(MangledName); |
Chris Lattner | 99b5361 | 2009-03-21 08:03:33 +0000 | [diff] [blame] | 1504 | if (Entry) { |
Benjamin Kramer | d48bcb2 | 2012-08-22 15:37:55 +0000 | [diff] [blame] | 1505 | if (WeakRefReferences.erase(Entry)) { |
Rafael Espindola | 6a83670 | 2010-03-04 18:17:24 +0000 | [diff] [blame] | 1506 | if (D && !D->hasAttr<WeakAttr>()) |
Anders Carlsson | 7270ee4 | 2010-03-23 04:31:31 +0000 | [diff] [blame] | 1507 | Entry->setLinkage(llvm::Function::ExternalLinkage); |
Rafael Espindola | 6a83670 | 2010-03-04 18:17:24 +0000 | [diff] [blame] | 1508 | } |
| 1509 | |
Rafael Espindola | c532b50 | 2011-01-18 21:07:57 +0000 | [diff] [blame] | 1510 | if (UnnamedAddr) |
| 1511 | Entry->setUnnamedAddr(true); |
| 1512 | |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 1513 | if (Entry->getType() == Ty) |
Chris Lattner | 570585c | 2009-03-21 09:16:30 +0000 | [diff] [blame] | 1514 | return Entry; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1515 | |
Chris Lattner | 99b5361 | 2009-03-21 08:03:33 +0000 | [diff] [blame] | 1516 | // Make sure the result is of the correct type. |
Owen Anderson | 3c4972d | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 1517 | return llvm::ConstantExpr::getBitCast(Entry, Ty); |
Daniel Dunbar | 4998888 | 2009-01-13 02:25:00 +0000 | [diff] [blame] | 1518 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1519 | |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 1520 | // This is the first use or definition of a mangled name. If there is a |
| 1521 | // deferred decl with this name, remember that we need to emit it at the end |
| 1522 | // of the file. |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 1523 | llvm::StringMap<GlobalDecl>::iterator DDI = DeferredDecls.find(MangledName); |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 1524 | if (DDI != DeferredDecls.end()) { |
| 1525 | // Move the potentially referenced deferred decl to the DeferredDeclsToEmit |
| 1526 | // list, and remove it from DeferredDecls (since we don't need it anymore). |
| 1527 | DeferredDeclsToEmit.push_back(DDI->second); |
| 1528 | DeferredDecls.erase(DDI); |
| 1529 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1530 | |
Peter Collingbourne | 4dc34eb | 2012-05-20 21:08:35 +0000 | [diff] [blame] | 1531 | unsigned AddrSpace = GetGlobalVarAddressSpace(D, Ty->getAddressSpace()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1532 | llvm::GlobalVariable *GV = |
| 1533 | new llvm::GlobalVariable(getModule(), Ty->getElementType(), false, |
Chris Lattner | 99b5361 | 2009-03-21 08:03:33 +0000 | [diff] [blame] | 1534 | llvm::GlobalValue::ExternalLinkage, |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 1535 | 0, MangledName, 0, |
Hans Wennborg | 5e2d5de | 2012-06-23 11:51:46 +0000 | [diff] [blame] | 1536 | llvm::GlobalVariable::NotThreadLocal, AddrSpace); |
Chris Lattner | 99b5361 | 2009-03-21 08:03:33 +0000 | [diff] [blame] | 1537 | |
| 1538 | // Handle things which are present even on external declarations. |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 1539 | if (D) { |
Mike Stump | f5408fe | 2009-05-16 07:57:57 +0000 | [diff] [blame] | 1540 | // FIXME: This code is overly simple and should be merged with other global |
| 1541 | // handling. |
Richard Smith | a9b21d2 | 2012-02-17 06:48:11 +0000 | [diff] [blame] | 1542 | GV->setConstant(isTypeConstant(D->getType(), false)); |
Chris Lattner | 99b5361 | 2009-03-21 08:03:33 +0000 | [diff] [blame] | 1543 | |
John McCall | 110e8e5 | 2010-10-29 22:22:43 +0000 | [diff] [blame] | 1544 | // Set linkage and visibility in case we never see a definition. |
Rafael Espindola | 2beda12 | 2013-02-27 02:15:29 +0000 | [diff] [blame] | 1545 | LinkageInfo LV = D->getLinkageAndVisibility(); |
Rafael Espindola | f127eb8 | 2013-02-27 02:56:45 +0000 | [diff] [blame] | 1546 | if (LV.getLinkage() != ExternalLinkage) { |
John McCall | 15e310a | 2011-02-19 02:53:41 +0000 | [diff] [blame] | 1547 | // Don't set internal linkage on declarations. |
John McCall | 110e8e5 | 2010-10-29 22:22:43 +0000 | [diff] [blame] | 1548 | } else { |
| 1549 | if (D->hasAttr<DLLImportAttr>()) |
| 1550 | GV->setLinkage(llvm::GlobalValue::DLLImportLinkage); |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 1551 | else if (D->hasAttr<WeakAttr>() || D->isWeakImported()) |
John McCall | 110e8e5 | 2010-10-29 22:22:43 +0000 | [diff] [blame] | 1552 | GV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage); |
Chris Lattner | 99b5361 | 2009-03-21 08:03:33 +0000 | [diff] [blame] | 1553 | |
John McCall | af14603 | 2010-10-30 11:50:40 +0000 | [diff] [blame] | 1554 | // Set visibility on a declaration only if it's explicit. |
Rafael Espindola | f127eb8 | 2013-02-27 02:56:45 +0000 | [diff] [blame] | 1555 | if (LV.isVisibilityExplicit()) |
| 1556 | GV->setVisibility(GetLLVMVisibility(LV.getVisibility())); |
John McCall | 110e8e5 | 2010-10-29 22:22:43 +0000 | [diff] [blame] | 1557 | } |
Eli Friedman | 56ebe50 | 2009-04-19 21:05:03 +0000 | [diff] [blame] | 1558 | |
Richard Smith | b80a16e | 2013-04-19 16:42:07 +0000 | [diff] [blame] | 1559 | if (D->getTLSKind()) { |
Richard Smith | db4f61f | 2013-04-22 08:06:17 +0000 | [diff] [blame] | 1560 | if (D->getTLSKind() == VarDecl::TLS_Dynamic) |
| 1561 | CXXThreadLocals.push_back(std::make_pair(D, GV)); |
Hans Wennborg | de981f3 | 2012-06-28 08:01:44 +0000 | [diff] [blame] | 1562 | setTLSMode(GV, *D); |
Richard Smith | b80a16e | 2013-04-19 16:42:07 +0000 | [diff] [blame] | 1563 | } |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 1564 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1565 | |
Peter Collingbourne | 4dc34eb | 2012-05-20 21:08:35 +0000 | [diff] [blame] | 1566 | if (AddrSpace != Ty->getAddressSpace()) |
| 1567 | return llvm::ConstantExpr::getBitCast(GV, Ty); |
| 1568 | else |
| 1569 | return GV; |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 1570 | } |
| 1571 | |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 1572 | |
Anders Carlsson | 3bd6202 | 2011-01-29 18:20:20 +0000 | [diff] [blame] | 1573 | llvm::GlobalVariable * |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1574 | CodeGenModule::CreateOrReplaceCXXRuntimeVariable(StringRef Name, |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1575 | llvm::Type *Ty, |
Anders Carlsson | 3bd6202 | 2011-01-29 18:20:20 +0000 | [diff] [blame] | 1576 | llvm::GlobalValue::LinkageTypes Linkage) { |
| 1577 | llvm::GlobalVariable *GV = getModule().getNamedGlobal(Name); |
| 1578 | llvm::GlobalVariable *OldGV = 0; |
| 1579 | |
| 1580 | |
| 1581 | if (GV) { |
| 1582 | // Check if the variable has the right type. |
| 1583 | if (GV->getType()->getElementType() == Ty) |
| 1584 | return GV; |
| 1585 | |
| 1586 | // Because C++ name mangling, the only way we can end up with an already |
| 1587 | // existing global with the same name is if it has been declared extern "C". |
Nico Weber | c5f8046 | 2012-10-11 10:13:44 +0000 | [diff] [blame] | 1588 | assert(GV->isDeclaration() && "Declaration has wrong type!"); |
Anders Carlsson | 3bd6202 | 2011-01-29 18:20:20 +0000 | [diff] [blame] | 1589 | OldGV = GV; |
| 1590 | } |
| 1591 | |
| 1592 | // Create a new variable. |
| 1593 | GV = new llvm::GlobalVariable(getModule(), Ty, /*isConstant=*/true, |
| 1594 | Linkage, 0, Name); |
| 1595 | |
| 1596 | if (OldGV) { |
| 1597 | // Replace occurrences of the old variable if needed. |
| 1598 | GV->takeName(OldGV); |
| 1599 | |
| 1600 | if (!OldGV->use_empty()) { |
| 1601 | llvm::Constant *NewPtrForOldDecl = |
| 1602 | llvm::ConstantExpr::getBitCast(GV, OldGV->getType()); |
| 1603 | OldGV->replaceAllUsesWith(NewPtrForOldDecl); |
| 1604 | } |
| 1605 | |
| 1606 | OldGV->eraseFromParent(); |
| 1607 | } |
| 1608 | |
| 1609 | return GV; |
| 1610 | } |
| 1611 | |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 1612 | /// GetAddrOfGlobalVar - Return the llvm::Constant for the address of the |
| 1613 | /// given global variable. If Ty is non-null and if the global doesn't exist, |
Eric Christopher | 0ff258b | 2012-04-16 23:55:04 +0000 | [diff] [blame] | 1614 | /// then it will be created with the specified type instead of whatever the |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 1615 | /// normal requested type would be. |
| 1616 | llvm::Constant *CodeGenModule::GetAddrOfGlobalVar(const VarDecl *D, |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1617 | llvm::Type *Ty) { |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 1618 | assert(D->hasGlobalStorage() && "Not a global variable"); |
| 1619 | QualType ASTTy = D->getType(); |
| 1620 | if (Ty == 0) |
| 1621 | Ty = getTypes().ConvertTypeForMem(ASTTy); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1622 | |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1623 | llvm::PointerType *PTy = |
Peter Collingbourne | 207f4d8 | 2011-03-18 22:38:29 +0000 | [diff] [blame] | 1624 | llvm::PointerType::get(Ty, getContext().getTargetAddressSpace(ASTTy)); |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 1625 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1626 | StringRef MangledName = getMangledName(D); |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 1627 | return GetOrCreateLLVMGlobal(MangledName, PTy, D); |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 1628 | } |
| 1629 | |
| 1630 | /// CreateRuntimeVariable - Create a new runtime global variable with the |
| 1631 | /// specified type and name. |
| 1632 | llvm::Constant * |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1633 | CodeGenModule::CreateRuntimeVariable(llvm::Type *Ty, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1634 | StringRef Name) { |
John McCall | 1de4d4e | 2011-04-07 08:22:57 +0000 | [diff] [blame] | 1635 | return GetOrCreateLLVMGlobal(Name, llvm::PointerType::getUnqual(Ty), 0, |
Rafael Espindola | c532b50 | 2011-01-18 21:07:57 +0000 | [diff] [blame] | 1636 | true); |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 1637 | } |
| 1638 | |
Daniel Dunbar | 03f5ad9 | 2009-04-15 22:08:45 +0000 | [diff] [blame] | 1639 | void CodeGenModule::EmitTentativeDefinition(const VarDecl *D) { |
| 1640 | assert(!D->getInit() && "Cannot emit definite definitions here!"); |
| 1641 | |
Douglas Gregor | 7520bd1 | 2009-04-21 19:28:58 +0000 | [diff] [blame] | 1642 | if (MayDeferGeneration(D)) { |
| 1643 | // If we have not seen a reference to this variable yet, place it |
| 1644 | // into the deferred declarations table to be emitted if needed |
| 1645 | // later. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1646 | StringRef MangledName = getMangledName(D); |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 1647 | if (!GetGlobalValue(MangledName)) { |
Anders Carlsson | 555b4bb | 2009-09-10 23:43:36 +0000 | [diff] [blame] | 1648 | DeferredDecls[MangledName] = D; |
Daniel Dunbar | 03f5ad9 | 2009-04-15 22:08:45 +0000 | [diff] [blame] | 1649 | return; |
Douglas Gregor | 7520bd1 | 2009-04-21 19:28:58 +0000 | [diff] [blame] | 1650 | } |
| 1651 | } |
| 1652 | |
| 1653 | // The tentative definition is the only definition. |
Daniel Dunbar | 03f5ad9 | 2009-04-15 22:08:45 +0000 | [diff] [blame] | 1654 | EmitGlobalVarDefinition(D); |
| 1655 | } |
| 1656 | |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1657 | CharUnits CodeGenModule::GetTargetTypeStoreSize(llvm::Type *Ty) const { |
Ken Dyck | 06f486e | 2011-01-18 02:01:14 +0000 | [diff] [blame] | 1658 | return Context.toCharUnitsFromBits( |
Micah Villmow | 25a6a84 | 2012-10-08 16:25:52 +0000 | [diff] [blame] | 1659 | TheDataLayout.getTypeStoreSizeInBits(Ty)); |
Ken Dyck | 687cc4a | 2010-01-26 13:48:07 +0000 | [diff] [blame] | 1660 | } |
| 1661 | |
Peter Collingbourne | 4dc34eb | 2012-05-20 21:08:35 +0000 | [diff] [blame] | 1662 | unsigned CodeGenModule::GetGlobalVarAddressSpace(const VarDecl *D, |
| 1663 | unsigned AddrSpace) { |
| 1664 | if (LangOpts.CUDA && CodeGenOpts.CUDAIsDevice) { |
| 1665 | if (D->hasAttr<CUDAConstantAttr>()) |
| 1666 | AddrSpace = getContext().getTargetAddressSpace(LangAS::cuda_constant); |
| 1667 | else if (D->hasAttr<CUDASharedAttr>()) |
| 1668 | AddrSpace = getContext().getTargetAddressSpace(LangAS::cuda_shared); |
| 1669 | else |
| 1670 | AddrSpace = getContext().getTargetAddressSpace(LangAS::cuda_device); |
| 1671 | } |
| 1672 | |
| 1673 | return AddrSpace; |
| 1674 | } |
| 1675 | |
Richard Smith | 0024937 | 2013-04-06 05:00:46 +0000 | [diff] [blame] | 1676 | template<typename SomeDecl> |
| 1677 | void CodeGenModule::MaybeHandleStaticInExternC(const SomeDecl *D, |
| 1678 | llvm::GlobalValue *GV) { |
| 1679 | if (!getLangOpts().CPlusPlus) |
| 1680 | return; |
| 1681 | |
| 1682 | // Must have 'used' attribute, or else inline assembly can't rely on |
| 1683 | // the name existing. |
| 1684 | if (!D->template hasAttr<UsedAttr>()) |
| 1685 | return; |
| 1686 | |
| 1687 | // Must have internal linkage and an ordinary name. |
Rafael Espindola | 181e3ec | 2013-05-13 00:12:11 +0000 | [diff] [blame] | 1688 | if (!D->getIdentifier() || D->getFormalLinkage() != InternalLinkage) |
Richard Smith | 0024937 | 2013-04-06 05:00:46 +0000 | [diff] [blame] | 1689 | return; |
| 1690 | |
| 1691 | // Must be in an extern "C" context. Entities declared directly within |
| 1692 | // a record are not extern "C" even if the record is in such a context. |
Rafael Espindola | d8ffd0b | 2013-05-05 20:15:21 +0000 | [diff] [blame] | 1693 | const SomeDecl *First = D->getFirstDeclaration(); |
| 1694 | if (First->getDeclContext()->isRecord() || !First->isInExternCContext()) |
Richard Smith | 0024937 | 2013-04-06 05:00:46 +0000 | [diff] [blame] | 1695 | return; |
| 1696 | |
| 1697 | // OK, this is an internal linkage entity inside an extern "C" linkage |
| 1698 | // specification. Make a note of that so we can give it the "expected" |
| 1699 | // mangled name if nothing else is using that name. |
Richard Smith | 6797204 | 2013-04-06 07:07:44 +0000 | [diff] [blame] | 1700 | std::pair<StaticExternCMap::iterator, bool> R = |
| 1701 | StaticExternCValues.insert(std::make_pair(D->getIdentifier(), GV)); |
Richard Smith | 0024937 | 2013-04-06 05:00:46 +0000 | [diff] [blame] | 1702 | |
| 1703 | // If we have multiple internal linkage entities with the same name |
| 1704 | // in extern "C" regions, none of them gets that name. |
Richard Smith | 6797204 | 2013-04-06 07:07:44 +0000 | [diff] [blame] | 1705 | if (!R.second) |
| 1706 | R.first->second = 0; |
Richard Smith | 0024937 | 2013-04-06 05:00:46 +0000 | [diff] [blame] | 1707 | } |
| 1708 | |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 1709 | void CodeGenModule::EmitGlobalVarDefinition(const VarDecl *D) { |
Chris Lattner | 8f32f71 | 2007-07-14 00:23:28 +0000 | [diff] [blame] | 1710 | llvm::Constant *Init = 0; |
Eli Friedman | 77ba708 | 2008-05-30 19:50:47 +0000 | [diff] [blame] | 1711 | QualType ASTTy = D->getType(); |
Richard Smith | 7ca4850 | 2012-02-13 22:16:19 +0000 | [diff] [blame] | 1712 | CXXRecordDecl *RD = ASTTy->getBaseElementTypeUnsafe()->getAsCXXRecordDecl(); |
| 1713 | bool NeedsGlobalCtor = false; |
| 1714 | bool NeedsGlobalDtor = RD && !RD->hasTrivialDestructor(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1715 | |
Richard Smith | 2d6a567 | 2012-01-14 04:30:29 +0000 | [diff] [blame] | 1716 | const VarDecl *InitDecl; |
| 1717 | const Expr *InitExpr = D->getAnyInitializer(InitDecl); |
Sebastian Redl | 19b1a6e | 2012-02-25 20:51:20 +0000 | [diff] [blame] | 1718 | |
Anders Carlsson | 3bb9269 | 2010-01-26 17:43:42 +0000 | [diff] [blame] | 1719 | if (!InitExpr) { |
Eli Friedman | cd5f4aa | 2008-05-30 20:39:54 +0000 | [diff] [blame] | 1720 | // This is a tentative definition; tentative definitions are |
Daniel Dunbar | 03f5ad9 | 2009-04-15 22:08:45 +0000 | [diff] [blame] | 1721 | // implicitly initialized with { 0 }. |
| 1722 | // |
| 1723 | // Note that tentative definitions are only emitted at the end of |
| 1724 | // a translation unit, so they should never have incomplete |
| 1725 | // type. In addition, EmitTentativeDefinition makes sure that we |
| 1726 | // never attempt to emit a tentative definition if a real one |
| 1727 | // exists. A use may still exists, however, so we still may need |
| 1728 | // to do a RAUW. |
| 1729 | assert(!ASTTy->isIncompleteType() && "Unexpected incomplete type"); |
Anders Carlsson | b0d0ea0 | 2009-08-02 21:18:22 +0000 | [diff] [blame] | 1730 | Init = EmitNullConstant(D->getType()); |
Eli Friedman | 77ba708 | 2008-05-30 19:50:47 +0000 | [diff] [blame] | 1731 | } else { |
Richard Smith | 7c3e615 | 2013-06-12 22:31:48 +0000 | [diff] [blame] | 1732 | initializedGlobalDecl = GlobalDecl(D); |
| 1733 | Init = EmitConstantInit(*InitDecl); |
Sebastian Redl | 19b1a6e | 2012-02-25 20:51:20 +0000 | [diff] [blame] | 1734 | |
Fariborz Jahanian | 4904bf4 | 2012-06-26 16:06:38 +0000 | [diff] [blame] | 1735 | if (!Init) { |
Anders Carlsson | 3bb9269 | 2010-01-26 17:43:42 +0000 | [diff] [blame] | 1736 | QualType T = InitExpr->getType(); |
Douglas Gregor | c446d18 | 2010-05-05 20:15:55 +0000 | [diff] [blame] | 1737 | if (D->getType()->isReferenceType()) |
| 1738 | T = D->getType(); |
Richard Smith | 2d6a567 | 2012-01-14 04:30:29 +0000 | [diff] [blame] | 1739 | |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1740 | if (getLangOpts().CPlusPlus) { |
Anders Carlsson | 89ed31d | 2009-08-08 23:24:23 +0000 | [diff] [blame] | 1741 | Init = EmitNullConstant(T); |
Richard Smith | 7ca4850 | 2012-02-13 22:16:19 +0000 | [diff] [blame] | 1742 | NeedsGlobalCtor = true; |
Anders Carlsson | 89ed31d | 2009-08-08 23:24:23 +0000 | [diff] [blame] | 1743 | } else { |
| 1744 | ErrorUnsupported(D, "static initializer"); |
| 1745 | Init = llvm::UndefValue::get(getTypes().ConvertType(T)); |
| 1746 | } |
John McCall | bf40cb5 | 2010-07-15 23:40:35 +0000 | [diff] [blame] | 1747 | } else { |
| 1748 | // We don't need an initializer, so remove the entry for the delayed |
Richard Smith | 7ca4850 | 2012-02-13 22:16:19 +0000 | [diff] [blame] | 1749 | // initializer position (just in case this entry was delayed) if we |
| 1750 | // also don't need to register a destructor. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1751 | if (getLangOpts().CPlusPlus && !NeedsGlobalDtor) |
John McCall | bf40cb5 | 2010-07-15 23:40:35 +0000 | [diff] [blame] | 1752 | DelayedCXXInitPosition.erase(D); |
Eli Friedman | 6e656f4 | 2009-02-20 01:18:21 +0000 | [diff] [blame] | 1753 | } |
Eli Friedman | 77ba708 | 2008-05-30 19:50:47 +0000 | [diff] [blame] | 1754 | } |
Eli Friedman | 77ba708 | 2008-05-30 19:50:47 +0000 | [diff] [blame] | 1755 | |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1756 | llvm::Type* InitType = Init->getType(); |
Chris Lattner | 570585c | 2009-03-21 09:16:30 +0000 | [diff] [blame] | 1757 | llvm::Constant *Entry = GetAddrOfGlobalVar(D, InitType); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1758 | |
Chris Lattner | 570585c | 2009-03-21 09:16:30 +0000 | [diff] [blame] | 1759 | // Strip off a bitcast if we got one back. |
| 1760 | if (llvm::ConstantExpr *CE = dyn_cast<llvm::ConstantExpr>(Entry)) { |
Chris Lattner | 9d4a15f | 2009-07-16 16:48:25 +0000 | [diff] [blame] | 1761 | assert(CE->getOpcode() == llvm::Instruction::BitCast || |
| 1762 | // all zero index gep. |
| 1763 | CE->getOpcode() == llvm::Instruction::GetElementPtr); |
Chris Lattner | 570585c | 2009-03-21 09:16:30 +0000 | [diff] [blame] | 1764 | Entry = CE->getOperand(0); |
| 1765 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1766 | |
Chris Lattner | 570585c | 2009-03-21 09:16:30 +0000 | [diff] [blame] | 1767 | // Entry is now either a Function or GlobalVariable. |
| 1768 | llvm::GlobalVariable *GV = dyn_cast<llvm::GlobalVariable>(Entry); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1769 | |
Chris Lattner | 570585c | 2009-03-21 09:16:30 +0000 | [diff] [blame] | 1770 | // We have a definition after a declaration with the wrong type. |
| 1771 | // We must make a new GlobalVariable* and update everything that used OldGV |
| 1772 | // (a declaration or tentative definition) with the new GlobalVariable* |
| 1773 | // (which will be a definition). |
| 1774 | // |
| 1775 | // This happens if there is a prototype for a global (e.g. |
| 1776 | // "extern int x[];") and then a definition of a different type (e.g. |
| 1777 | // "int x[10];"). This also happens when an initializer has a different type |
| 1778 | // from the type of the global (this happens with unions). |
Chris Lattner | 570585c | 2009-03-21 09:16:30 +0000 | [diff] [blame] | 1779 | if (GV == 0 || |
| 1780 | GV->getType()->getElementType() != InitType || |
Peter Collingbourne | 207f4d8 | 2011-03-18 22:38:29 +0000 | [diff] [blame] | 1781 | GV->getType()->getAddressSpace() != |
Peter Collingbourne | 4dc34eb | 2012-05-20 21:08:35 +0000 | [diff] [blame] | 1782 | GetGlobalVarAddressSpace(D, getContext().getTargetAddressSpace(ASTTy))) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1783 | |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 1784 | // 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] | 1785 | Entry->setName(StringRef()); |
Daniel Dunbar | 232350d | 2009-02-19 05:36:41 +0000 | [diff] [blame] | 1786 | |
Chris Lattner | 570585c | 2009-03-21 09:16:30 +0000 | [diff] [blame] | 1787 | // Make a new global with the correct type, this is now guaranteed to work. |
| 1788 | GV = cast<llvm::GlobalVariable>(GetAddrOfGlobalVar(D, InitType)); |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 1789 | |
Eli Friedman | 77ba708 | 2008-05-30 19:50:47 +0000 | [diff] [blame] | 1790 | // Replace all uses of the old global with the new global |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1791 | llvm::Constant *NewPtrForOldDecl = |
Owen Anderson | 3c4972d | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 1792 | llvm::ConstantExpr::getBitCast(GV, Entry->getType()); |
Chris Lattner | 570585c | 2009-03-21 09:16:30 +0000 | [diff] [blame] | 1793 | Entry->replaceAllUsesWith(NewPtrForOldDecl); |
Eli Friedman | 77ba708 | 2008-05-30 19:50:47 +0000 | [diff] [blame] | 1794 | |
| 1795 | // Erase the old global, since it is no longer used. |
Chris Lattner | 570585c | 2009-03-21 09:16:30 +0000 | [diff] [blame] | 1796 | cast<llvm::GlobalValue>(Entry)->eraseFromParent(); |
Chris Lattner | 8f32f71 | 2007-07-14 00:23:28 +0000 | [diff] [blame] | 1797 | } |
Devang Patel | 8e53e72 | 2007-10-26 16:31:40 +0000 | [diff] [blame] | 1798 | |
Richard Smith | 0024937 | 2013-04-06 05:00:46 +0000 | [diff] [blame] | 1799 | MaybeHandleStaticInExternC(D, GV); |
| 1800 | |
Julien Lerouge | 77f68bb | 2011-09-09 22:41:49 +0000 | [diff] [blame] | 1801 | if (D->hasAttr<AnnotateAttr>()) |
| 1802 | AddGlobalAnnotations(D, GV); |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 1803 | |
Chris Lattner | 88a69ad | 2007-07-13 05:13:43 +0000 | [diff] [blame] | 1804 | GV->setInitializer(Init); |
Chris Lattner | e78b86f | 2009-08-05 05:20:29 +0000 | [diff] [blame] | 1805 | |
| 1806 | // If it is safe to mark the global 'constant', do so now. |
Richard Smith | a9b21d2 | 2012-02-17 06:48:11 +0000 | [diff] [blame] | 1807 | GV->setConstant(!NeedsGlobalCtor && !NeedsGlobalDtor && |
| 1808 | isTypeConstant(D->getType(), true)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1809 | |
Ken Dyck | 8b752f1 | 2010-01-27 17:10:57 +0000 | [diff] [blame] | 1810 | GV->setAlignment(getContext().getDeclAlign(D).getQuantity()); |
Richard Smith | a9b21d2 | 2012-02-17 06:48:11 +0000 | [diff] [blame] | 1811 | |
Chris Lattner | 88a69ad | 2007-07-13 05:13:43 +0000 | [diff] [blame] | 1812 | // Set the llvm linkage type as appropriate. |
Fariborz Jahanian | 354e712 | 2010-10-27 16:21:54 +0000 | [diff] [blame] | 1813 | llvm::GlobalValue::LinkageTypes Linkage = |
Eli Friedman | 07369dd | 2013-07-01 20:22:57 +0000 | [diff] [blame] | 1814 | GetLLVMLinkageVarDefinition(D, GV->isConstant()); |
Fariborz Jahanian | 354e712 | 2010-10-27 16:21:54 +0000 | [diff] [blame] | 1815 | GV->setLinkage(Linkage); |
| 1816 | if (Linkage == llvm::GlobalVariable::CommonLinkage) |
Chris Lattner | e78b86f | 2009-08-05 05:20:29 +0000 | [diff] [blame] | 1817 | // common vars aren't constant even if declared const. |
| 1818 | GV->setConstant(false); |
Daniel Dunbar | 7e714cd | 2009-04-10 20:26:50 +0000 | [diff] [blame] | 1819 | |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 1820 | SetCommonAttributes(D, GV); |
Daniel Dunbar | 04d4078 | 2009-04-14 06:00:08 +0000 | [diff] [blame] | 1821 | |
John McCall | 3030eb8 | 2010-11-06 09:44:32 +0000 | [diff] [blame] | 1822 | // Emit the initializer function if necessary. |
Richard Smith | 7ca4850 | 2012-02-13 22:16:19 +0000 | [diff] [blame] | 1823 | if (NeedsGlobalCtor || NeedsGlobalDtor) |
| 1824 | EmitCXXGlobalVarDeclInitFunc(D, GV, NeedsGlobalCtor); |
John McCall | 3030eb8 | 2010-11-06 09:44:32 +0000 | [diff] [blame] | 1825 | |
Kostya Serebryany | 05c5ebc | 2012-08-21 06:53:28 +0000 | [diff] [blame] | 1826 | // If we are compiling with ASan, add metadata indicating dynamically |
| 1827 | // initialized globals. |
Will Dietz | 4f45bc0 | 2013-01-18 11:30:38 +0000 | [diff] [blame] | 1828 | if (SanOpts.Address && NeedsGlobalCtor) { |
Kostya Serebryany | 05c5ebc | 2012-08-21 06:53:28 +0000 | [diff] [blame] | 1829 | llvm::Module &M = getModule(); |
| 1830 | |
| 1831 | llvm::NamedMDNode *DynamicInitializers = |
| 1832 | M.getOrInsertNamedMetadata("llvm.asan.dynamically_initialized_globals"); |
| 1833 | llvm::Value *GlobalToAdd[] = { GV }; |
| 1834 | llvm::MDNode *ThisGlobal = llvm::MDNode::get(VMContext, GlobalToAdd); |
| 1835 | DynamicInitializers->addOperand(ThisGlobal); |
| 1836 | } |
| 1837 | |
Sanjiv Gupta | 686226b | 2008-06-05 08:59:10 +0000 | [diff] [blame] | 1838 | // Emit global variable debug information. |
Eric Christopher | 73fb350 | 2011-10-13 21:45:18 +0000 | [diff] [blame] | 1839 | if (CGDebugInfo *DI = getModuleDebugInfo()) |
Douglas Gregor | 4cdad31 | 2012-10-23 20:05:01 +0000 | [diff] [blame] | 1840 | if (getCodeGenOpts().getDebugInfo() >= CodeGenOptions::LimitedDebugInfo) |
Alexey Samsonov | fd00eec | 2012-05-04 07:39:27 +0000 | [diff] [blame] | 1841 | DI->EmitGlobalVariable(GV, D); |
Chris Lattner | 88a69ad | 2007-07-13 05:13:43 +0000 | [diff] [blame] | 1842 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1843 | |
Fariborz Jahanian | 354e712 | 2010-10-27 16:21:54 +0000 | [diff] [blame] | 1844 | llvm::GlobalValue::LinkageTypes |
Eli Friedman | 07369dd | 2013-07-01 20:22:57 +0000 | [diff] [blame] | 1845 | CodeGenModule::GetLLVMLinkageVarDefinition(const VarDecl *D, bool isConstant) { |
Fariborz Jahanian | 354e712 | 2010-10-27 16:21:54 +0000 | [diff] [blame] | 1846 | GVALinkage Linkage = getContext().GetGVALinkageForVariable(D); |
| 1847 | if (Linkage == GVA_Internal) |
| 1848 | return llvm::Function::InternalLinkage; |
| 1849 | else if (D->hasAttr<DLLImportAttr>()) |
| 1850 | return llvm::Function::DLLImportLinkage; |
| 1851 | else if (D->hasAttr<DLLExportAttr>()) |
| 1852 | return llvm::Function::DLLExportLinkage; |
Reid Kleckner | a722534 | 2013-05-20 14:02:37 +0000 | [diff] [blame] | 1853 | else if (D->hasAttr<SelectAnyAttr>()) { |
| 1854 | // selectany symbols are externally visible, so use weak instead of |
| 1855 | // linkonce. MSVC optimizes away references to const selectany globals, so |
| 1856 | // all definitions should be the same and ODR linkage should be used. |
| 1857 | // http://msdn.microsoft.com/en-us/library/5tkz6s71.aspx |
| 1858 | return llvm::GlobalVariable::WeakODRLinkage; |
| 1859 | } else if (D->hasAttr<WeakAttr>()) { |
Eli Friedman | 07369dd | 2013-07-01 20:22:57 +0000 | [diff] [blame] | 1860 | if (isConstant) |
Fariborz Jahanian | 354e712 | 2010-10-27 16:21:54 +0000 | [diff] [blame] | 1861 | return llvm::GlobalVariable::WeakODRLinkage; |
| 1862 | else |
| 1863 | return llvm::GlobalVariable::WeakAnyLinkage; |
| 1864 | } else if (Linkage == GVA_TemplateInstantiation || |
| 1865 | Linkage == GVA_ExplicitTemplateInstantiation) |
John McCall | 99ace16 | 2011-04-12 01:46:54 +0000 | [diff] [blame] | 1866 | return llvm::GlobalVariable::WeakODRLinkage; |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1867 | else if (!getLangOpts().CPlusPlus && |
Eric Christopher | a6cf1e7 | 2010-12-02 02:45:55 +0000 | [diff] [blame] | 1868 | ((!CodeGenOpts.NoCommon && !D->getAttr<NoCommonAttr>()) || |
| 1869 | D->getAttr<CommonAttr>()) && |
Fariborz Jahanian | 354e712 | 2010-10-27 16:21:54 +0000 | [diff] [blame] | 1870 | !D->hasExternalStorage() && !D->getInit() && |
Richard Smith | 38afbc7 | 2013-04-13 02:43:54 +0000 | [diff] [blame] | 1871 | !D->getAttr<SectionAttr>() && !D->getTLSKind() && |
Fariborz Jahanian | ab27d6e | 2011-06-20 17:50:03 +0000 | [diff] [blame] | 1872 | !D->getAttr<WeakImportAttr>()) { |
Fariborz Jahanian | 354e712 | 2010-10-27 16:21:54 +0000 | [diff] [blame] | 1873 | // Thread local vars aren't considered common linkage. |
| 1874 | return llvm::GlobalVariable::CommonLinkage; |
Bill Wendling | 4e3b54b | 2013-05-02 19:18:03 +0000 | [diff] [blame] | 1875 | } else if (D->getTLSKind() == VarDecl::TLS_Dynamic && |
| 1876 | getTarget().getTriple().isMacOSX()) |
| 1877 | // On Darwin, the backing variable for a C++11 thread_local variable always |
| 1878 | // has internal linkage; all accesses should just be calls to the |
| 1879 | // Itanium-specified entry point, which has the normal linkage of the |
| 1880 | // variable. |
| 1881 | return llvm::GlobalValue::InternalLinkage; |
Fariborz Jahanian | 354e712 | 2010-10-27 16:21:54 +0000 | [diff] [blame] | 1882 | return llvm::GlobalVariable::ExternalLinkage; |
| 1883 | } |
| 1884 | |
John McCall | a923c97 | 2012-12-12 22:21:47 +0000 | [diff] [blame] | 1885 | /// Replace the uses of a function that was declared with a non-proto type. |
| 1886 | /// We want to silently drop extra arguments from call sites |
| 1887 | static void replaceUsesOfNonProtoConstant(llvm::Constant *old, |
| 1888 | llvm::Function *newFn) { |
| 1889 | // Fast path. |
| 1890 | if (old->use_empty()) return; |
| 1891 | |
| 1892 | llvm::Type *newRetTy = newFn->getReturnType(); |
| 1893 | SmallVector<llvm::Value*, 4> newArgs; |
| 1894 | |
| 1895 | for (llvm::Value::use_iterator ui = old->use_begin(), ue = old->use_end(); |
| 1896 | ui != ue; ) { |
| 1897 | llvm::Value::use_iterator use = ui++; // Increment before the use is erased. |
| 1898 | llvm::User *user = *use; |
| 1899 | |
| 1900 | // Recognize and replace uses of bitcasts. Most calls to |
| 1901 | // unprototyped functions will use bitcasts. |
| 1902 | if (llvm::ConstantExpr *bitcast = dyn_cast<llvm::ConstantExpr>(user)) { |
| 1903 | if (bitcast->getOpcode() == llvm::Instruction::BitCast) |
| 1904 | replaceUsesOfNonProtoConstant(bitcast, newFn); |
| 1905 | continue; |
| 1906 | } |
| 1907 | |
| 1908 | // Recognize calls to the function. |
| 1909 | llvm::CallSite callSite(user); |
| 1910 | if (!callSite) continue; |
| 1911 | if (!callSite.isCallee(use)) continue; |
| 1912 | |
| 1913 | // If the return types don't match exactly, then we can't |
| 1914 | // transform this call unless it's dead. |
| 1915 | if (callSite->getType() != newRetTy && !callSite->use_empty()) |
| 1916 | continue; |
| 1917 | |
| 1918 | // Get the call site's attribute list. |
Bill Wendling | b263bdf | 2013-01-27 02:46:53 +0000 | [diff] [blame] | 1919 | SmallVector<llvm::AttributeSet, 8> newAttrs; |
John McCall | a923c97 | 2012-12-12 22:21:47 +0000 | [diff] [blame] | 1920 | llvm::AttributeSet oldAttrs = callSite.getAttributes(); |
| 1921 | |
| 1922 | // Collect any return attributes from the call. |
Bill Wendling | a37ce61 | 2013-01-21 21:57:40 +0000 | [diff] [blame] | 1923 | if (oldAttrs.hasAttributes(llvm::AttributeSet::ReturnIndex)) |
Bill Wendling | ed01f84 | 2013-01-21 22:45:00 +0000 | [diff] [blame] | 1924 | newAttrs.push_back( |
Bill Wendling | b263bdf | 2013-01-27 02:46:53 +0000 | [diff] [blame] | 1925 | llvm::AttributeSet::get(newFn->getContext(), |
| 1926 | oldAttrs.getRetAttributes())); |
John McCall | a923c97 | 2012-12-12 22:21:47 +0000 | [diff] [blame] | 1927 | |
| 1928 | // If the function was passed too few arguments, don't transform. |
| 1929 | unsigned newNumArgs = newFn->arg_size(); |
| 1930 | if (callSite.arg_size() < newNumArgs) continue; |
| 1931 | |
| 1932 | // If extra arguments were passed, we silently drop them. |
| 1933 | // If any of the types mismatch, we don't transform. |
| 1934 | unsigned argNo = 0; |
| 1935 | bool dontTransform = false; |
| 1936 | for (llvm::Function::arg_iterator ai = newFn->arg_begin(), |
| 1937 | ae = newFn->arg_end(); ai != ae; ++ai, ++argNo) { |
| 1938 | if (callSite.getArgument(argNo)->getType() != ai->getType()) { |
| 1939 | dontTransform = true; |
| 1940 | break; |
| 1941 | } |
| 1942 | |
| 1943 | // Add any parameter attributes. |
Bill Wendling | 89530e4 | 2013-01-23 06:15:10 +0000 | [diff] [blame] | 1944 | if (oldAttrs.hasAttributes(argNo + 1)) |
| 1945 | newAttrs. |
Bill Wendling | b263bdf | 2013-01-27 02:46:53 +0000 | [diff] [blame] | 1946 | push_back(llvm:: |
| 1947 | AttributeSet::get(newFn->getContext(), |
| 1948 | oldAttrs.getParamAttributes(argNo + 1))); |
John McCall | a923c97 | 2012-12-12 22:21:47 +0000 | [diff] [blame] | 1949 | } |
| 1950 | if (dontTransform) |
| 1951 | continue; |
| 1952 | |
Bill Wendling | e67e4c9 | 2013-01-18 21:26:07 +0000 | [diff] [blame] | 1953 | if (oldAttrs.hasAttributes(llvm::AttributeSet::FunctionIndex)) |
Bill Wendling | b263bdf | 2013-01-27 02:46:53 +0000 | [diff] [blame] | 1954 | newAttrs.push_back(llvm::AttributeSet::get(newFn->getContext(), |
| 1955 | oldAttrs.getFnAttributes())); |
John McCall | a923c97 | 2012-12-12 22:21:47 +0000 | [diff] [blame] | 1956 | |
| 1957 | // Okay, we can transform this. Create the new call instruction and copy |
| 1958 | // over the required information. |
| 1959 | newArgs.append(callSite.arg_begin(), callSite.arg_begin() + argNo); |
| 1960 | |
| 1961 | llvm::CallSite newCall; |
| 1962 | if (callSite.isCall()) { |
| 1963 | newCall = llvm::CallInst::Create(newFn, newArgs, "", |
| 1964 | callSite.getInstruction()); |
| 1965 | } else { |
| 1966 | llvm::InvokeInst *oldInvoke = |
| 1967 | cast<llvm::InvokeInst>(callSite.getInstruction()); |
| 1968 | newCall = llvm::InvokeInst::Create(newFn, |
| 1969 | oldInvoke->getNormalDest(), |
| 1970 | oldInvoke->getUnwindDest(), |
| 1971 | newArgs, "", |
| 1972 | callSite.getInstruction()); |
| 1973 | } |
| 1974 | newArgs.clear(); // for the next iteration |
| 1975 | |
| 1976 | if (!newCall->getType()->isVoidTy()) |
| 1977 | newCall->takeName(callSite.getInstruction()); |
| 1978 | newCall.setAttributes( |
| 1979 | llvm::AttributeSet::get(newFn->getContext(), newAttrs)); |
| 1980 | newCall.setCallingConv(callSite.getCallingConv()); |
| 1981 | |
| 1982 | // Finally, remove the old call, replacing any uses with the new one. |
| 1983 | if (!callSite->use_empty()) |
| 1984 | callSite->replaceAllUsesWith(newCall.getInstruction()); |
| 1985 | |
| 1986 | // Copy debug location attached to CI. |
| 1987 | if (!callSite->getDebugLoc().isUnknown()) |
| 1988 | newCall->setDebugLoc(callSite->getDebugLoc()); |
| 1989 | callSite->eraseFromParent(); |
| 1990 | } |
| 1991 | } |
| 1992 | |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 1993 | /// ReplaceUsesOfNonProtoTypeWithRealFunction - This function is called when we |
| 1994 | /// implement a function with no prototype, e.g. "int foo() {}". If there are |
| 1995 | /// existing call uses of the old function in the module, this adjusts them to |
| 1996 | /// call the new function directly. |
| 1997 | /// |
| 1998 | /// This is not just a cleanup: the always_inline pass requires direct calls to |
| 1999 | /// functions to be able to inline them. If there is a bitcast in the way, it |
| 2000 | /// won't inline them. Instcombine normally deletes these calls, but it isn't |
| 2001 | /// run at -O0. |
| 2002 | static void ReplaceUsesOfNonProtoTypeWithRealFunction(llvm::GlobalValue *Old, |
| 2003 | llvm::Function *NewFn) { |
| 2004 | // If we're redefining a global as a function, don't transform it. |
John McCall | a923c97 | 2012-12-12 22:21:47 +0000 | [diff] [blame] | 2005 | if (!isa<llvm::Function>(Old)) return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2006 | |
John McCall | a923c97 | 2012-12-12 22:21:47 +0000 | [diff] [blame] | 2007 | replaceUsesOfNonProtoConstant(Old, NewFn); |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 2008 | } |
| 2009 | |
Rafael Espindola | 0250393 | 2012-03-08 15:51:03 +0000 | [diff] [blame] | 2010 | void CodeGenModule::HandleCXXStaticMemberVarInstantiation(VarDecl *VD) { |
| 2011 | TemplateSpecializationKind TSK = VD->getTemplateSpecializationKind(); |
| 2012 | // If we have a definition, this might be a deferred decl. If the |
| 2013 | // instantiation is explicit, make sure we emit it at the end. |
| 2014 | if (VD->getDefinition() && TSK == TSK_ExplicitInstantiationDefinition) |
| 2015 | GetAddrOfGlobalVar(VD); |
Argyrios Kyrtzidis | afda905 | 2013-02-24 00:05:01 +0000 | [diff] [blame] | 2016 | |
| 2017 | EmitTopLevelDecl(VD); |
Rafael Espindola | 234fe65 | 2012-03-05 10:54:55 +0000 | [diff] [blame] | 2018 | } |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 2019 | |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 2020 | void CodeGenModule::EmitGlobalFunctionDefinition(GlobalDecl GD) { |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 2021 | const FunctionDecl *D = cast<FunctionDecl>(GD.getDecl()); |
John McCall | d26bc76 | 2011-03-09 04:27:21 +0000 | [diff] [blame] | 2022 | |
John McCall | 1f6f961 | 2011-03-09 08:12:35 +0000 | [diff] [blame] | 2023 | // Compute the function info and LLVM type. |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 2024 | const CGFunctionInfo &FI = getTypes().arrangeGlobalDeclaration(GD); |
| 2025 | llvm::FunctionType *Ty = getTypes().GetFunctionType(FI); |
John McCall | d26bc76 | 2011-03-09 04:27:21 +0000 | [diff] [blame] | 2026 | |
Chris Lattner | 9fa959d | 2009-05-12 20:58:15 +0000 | [diff] [blame] | 2027 | // Get or create the prototype for the function. |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 2028 | llvm::Constant *Entry = GetAddrOfFunction(GD, Ty); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2029 | |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 2030 | // Strip off a bitcast if we got one back. |
| 2031 | if (llvm::ConstantExpr *CE = dyn_cast<llvm::ConstantExpr>(Entry)) { |
| 2032 | assert(CE->getOpcode() == llvm::Instruction::BitCast); |
| 2033 | Entry = CE->getOperand(0); |
| 2034 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2035 | |
| 2036 | |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 2037 | if (cast<llvm::GlobalValue>(Entry)->getType()->getElementType() != Ty) { |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 2038 | llvm::GlobalValue *OldFn = cast<llvm::GlobalValue>(Entry); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2039 | |
Daniel Dunbar | 4274581 | 2009-03-09 23:53:08 +0000 | [diff] [blame] | 2040 | // If the types mismatch then we have to rewrite the definition. |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 2041 | assert(OldFn->isDeclaration() && |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 2042 | "Shouldn't replace non-declaration"); |
Chris Lattner | 3480950 | 2009-03-21 08:53:37 +0000 | [diff] [blame] | 2043 | |
Chris Lattner | 62b33ea | 2009-03-21 08:38:50 +0000 | [diff] [blame] | 2044 | // F is the Function* for the one with the wrong type, we must make a new |
| 2045 | // Function* and update everything that used F (a declaration) with the new |
| 2046 | // Function* (which will be a definition). |
| 2047 | // |
| 2048 | // This happens if there is a prototype for a function |
| 2049 | // (e.g. "int f()") and then a definition of a different type |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 2050 | // (e.g. "int f(int x)"). Move the old function aside so that it |
| 2051 | // doesn't interfere with GetAddrOfFunction. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2052 | OldFn->setName(StringRef()); |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 2053 | llvm::Function *NewFn = cast<llvm::Function>(GetAddrOfFunction(GD, Ty)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2054 | |
John McCall | a923c97 | 2012-12-12 22:21:47 +0000 | [diff] [blame] | 2055 | // This might be an implementation of a function without a |
| 2056 | // prototype, in which case, try to do special replacement of |
| 2057 | // calls which match the new prototype. The really key thing here |
| 2058 | // is that we also potentially drop arguments from the call site |
| 2059 | // so as to make a direct call, which makes the inliner happier |
| 2060 | // and suppresses a number of optimizer warnings (!) about |
| 2061 | // dropping arguments. |
| 2062 | if (!OldFn->use_empty()) { |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 2063 | ReplaceUsesOfNonProtoTypeWithRealFunction(OldFn, NewFn); |
Chris Lattner | 9fa959d | 2009-05-12 20:58:15 +0000 | [diff] [blame] | 2064 | OldFn->removeDeadConstantUsers(); |
| 2065 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2066 | |
Chris Lattner | 62b33ea | 2009-03-21 08:38:50 +0000 | [diff] [blame] | 2067 | // 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] | 2068 | if (!Entry->use_empty()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2069 | llvm::Constant *NewPtrForOldDecl = |
Owen Anderson | 3c4972d | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 2070 | llvm::ConstantExpr::getBitCast(NewFn, Entry->getType()); |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 2071 | Entry->replaceAllUsesWith(NewPtrForOldDecl); |
| 2072 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2073 | |
Chris Lattner | 62b33ea | 2009-03-21 08:38:50 +0000 | [diff] [blame] | 2074 | // Ok, delete the old function now, which is dead. |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 2075 | OldFn->eraseFromParent(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2076 | |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 2077 | Entry = NewFn; |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 2078 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2079 | |
John McCall | 112c967 | 2010-11-02 21:04:24 +0000 | [diff] [blame] | 2080 | // We need to set linkage and visibility on the function before |
| 2081 | // generating code for it because various parts of IR generation |
| 2082 | // want to propagate this information down (e.g. to local static |
| 2083 | // declarations). |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 2084 | llvm::Function *Fn = cast<llvm::Function>(Entry); |
Peter Collingbourne | 144a31f | 2013-06-05 17:49:37 +0000 | [diff] [blame] | 2085 | setFunctionLinkage(GD, Fn); |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 2086 | |
John McCall | 112c967 | 2010-11-02 21:04:24 +0000 | [diff] [blame] | 2087 | // FIXME: this is redundant with part of SetFunctionDefinitionAttributes |
Anders Carlsson | 0ffeaad | 2011-01-29 19:39:23 +0000 | [diff] [blame] | 2088 | setGlobalVisibility(Fn, D); |
John McCall | 112c967 | 2010-11-02 21:04:24 +0000 | [diff] [blame] | 2089 | |
Richard Smith | 0024937 | 2013-04-06 05:00:46 +0000 | [diff] [blame] | 2090 | MaybeHandleStaticInExternC(D, Fn); |
| 2091 | |
John McCall | d26bc76 | 2011-03-09 04:27:21 +0000 | [diff] [blame] | 2092 | CodeGenFunction(*this).GenerateCode(D, Fn, FI); |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 2093 | |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 2094 | SetFunctionDefinitionAttributes(D, Fn); |
| 2095 | SetLLVMFunctionAttributesForDefinition(D, Fn); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2096 | |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 2097 | if (const ConstructorAttr *CA = D->getAttr<ConstructorAttr>()) |
Daniel Dunbar | 219df66 | 2008-09-08 23:44:31 +0000 | [diff] [blame] | 2098 | AddGlobalCtor(Fn, CA->getPriority()); |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 2099 | if (const DestructorAttr *DA = D->getAttr<DestructorAttr>()) |
Daniel Dunbar | 219df66 | 2008-09-08 23:44:31 +0000 | [diff] [blame] | 2100 | AddGlobalDtor(Fn, DA->getPriority()); |
Julien Lerouge | 77f68bb | 2011-09-09 22:41:49 +0000 | [diff] [blame] | 2101 | if (D->hasAttr<AnnotateAttr>()) |
| 2102 | AddGlobalAnnotations(D, Fn); |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 2103 | } |
| 2104 | |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 2105 | void CodeGenModule::EmitAliasDefinition(GlobalDecl GD) { |
| 2106 | const ValueDecl *D = cast<ValueDecl>(GD.getDecl()); |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 2107 | const AliasAttr *AA = D->getAttr<AliasAttr>(); |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 2108 | assert(AA && "Not an alias?"); |
| 2109 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2110 | StringRef MangledName = getMangledName(GD); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2111 | |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 2112 | // If there is a definition in the module, then it wins over the alias. |
| 2113 | // This is dubious, but allow it to be safe. Just ignore the alias. |
| 2114 | llvm::GlobalValue *Entry = GetGlobalValue(MangledName); |
| 2115 | if (Entry && !Entry->isDeclaration()) |
| 2116 | return; |
| 2117 | |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 2118 | llvm::Type *DeclTy = getTypes().ConvertTypeForMem(D->getType()); |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 2119 | |
| 2120 | // Create a reference to the named value. This ensures that it is emitted |
| 2121 | // if a deferred decl. |
| 2122 | llvm::Constant *Aliasee; |
| 2123 | if (isa<llvm::FunctionType>(DeclTy)) |
Alex Rosenberg | c857ce8 | 2012-10-05 23:12:53 +0000 | [diff] [blame] | 2124 | Aliasee = GetOrCreateLLVMFunction(AA->getAliasee(), DeclTy, GD, |
Anders Carlsson | 1faa89f | 2011-02-05 04:35:53 +0000 | [diff] [blame] | 2125 | /*ForVTable=*/false); |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 2126 | else |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 2127 | Aliasee = GetOrCreateLLVMGlobal(AA->getAliasee(), |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 2128 | llvm::PointerType::getUnqual(DeclTy), 0); |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 2129 | |
| 2130 | // Create the new alias itself, but don't set a name yet. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2131 | llvm::GlobalValue *GA = |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 2132 | new llvm::GlobalAlias(Aliasee->getType(), |
| 2133 | llvm::Function::ExternalLinkage, |
| 2134 | "", Aliasee, &getModule()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2135 | |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 2136 | if (Entry) { |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 2137 | assert(Entry->isDeclaration()); |
| 2138 | |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 2139 | // If there is a declaration in the module, then we had an extern followed |
| 2140 | // by the alias, as in: |
| 2141 | // extern int test6(); |
| 2142 | // ... |
| 2143 | // int test6() __attribute__((alias("test7"))); |
| 2144 | // |
| 2145 | // Remove it and replace uses of it with the alias. |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 2146 | GA->takeName(Entry); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2147 | |
Owen Anderson | 3c4972d | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 2148 | Entry->replaceAllUsesWith(llvm::ConstantExpr::getBitCast(GA, |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 2149 | Entry->getType())); |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 2150 | Entry->eraseFromParent(); |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 2151 | } else { |
Anders Carlsson | 9a20d55 | 2010-06-22 16:16:50 +0000 | [diff] [blame] | 2152 | GA->setName(MangledName); |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 2153 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2154 | |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 2155 | // Set attributes which are particular to an alias; this is a |
| 2156 | // specialization of the attributes which may be set on a global |
| 2157 | // variable/function. |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 2158 | if (D->hasAttr<DLLExportAttr>()) { |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 2159 | if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
| 2160 | // The dllexport attribute is ignored for undefined symbols. |
Argyrios Kyrtzidis | 06a54a3 | 2010-07-07 11:31:19 +0000 | [diff] [blame] | 2161 | if (FD->hasBody()) |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 2162 | GA->setLinkage(llvm::Function::DLLExportLinkage); |
| 2163 | } else { |
| 2164 | GA->setLinkage(llvm::Function::DLLExportLinkage); |
| 2165 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2166 | } else if (D->hasAttr<WeakAttr>() || |
Rafael Espindola | 11e8ce7 | 2010-02-23 22:00:30 +0000 | [diff] [blame] | 2167 | D->hasAttr<WeakRefAttr>() || |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 2168 | D->isWeakImported()) { |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 2169 | GA->setLinkage(llvm::Function::WeakAnyLinkage); |
| 2170 | } |
| 2171 | |
| 2172 | SetCommonAttributes(D, GA); |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 2173 | } |
| 2174 | |
Benjamin Kramer | 8dd55a3 | 2011-07-14 17:45:50 +0000 | [diff] [blame] | 2175 | llvm::Function *CodeGenModule::getIntrinsic(unsigned IID, |
Chris Lattner | 2d3ba4f | 2011-07-23 17:14:25 +0000 | [diff] [blame] | 2176 | ArrayRef<llvm::Type*> Tys) { |
Jay Foad | df983a8 | 2011-07-12 14:06:48 +0000 | [diff] [blame] | 2177 | return llvm::Intrinsic::getDeclaration(&getModule(), (llvm::Intrinsic::ID)IID, |
Benjamin Kramer | 8dd55a3 | 2011-07-14 17:45:50 +0000 | [diff] [blame] | 2178 | Tys); |
Chris Lattner | 7acda7c | 2007-12-18 00:25:38 +0000 | [diff] [blame] | 2179 | } |
Chris Lattner | bef20ac | 2007-08-31 04:31:45 +0000 | [diff] [blame] | 2180 | |
Daniel Dunbar | 1d55291 | 2009-07-23 22:52:48 +0000 | [diff] [blame] | 2181 | static llvm::StringMapEntry<llvm::Constant*> & |
| 2182 | GetConstantCFStringEntry(llvm::StringMap<llvm::Constant*> &Map, |
| 2183 | const StringLiteral *Literal, |
Daniel Dunbar | 70ee975 | 2009-07-23 23:41:22 +0000 | [diff] [blame] | 2184 | bool TargetIsLSB, |
Daniel Dunbar | 1d55291 | 2009-07-23 22:52:48 +0000 | [diff] [blame] | 2185 | bool &IsUTF16, |
| 2186 | unsigned &StringLength) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2187 | StringRef String = Literal->getString(); |
Benjamin Kramer | 2f4eaef | 2010-08-17 12:54:38 +0000 | [diff] [blame] | 2188 | unsigned NumBytes = String.size(); |
Daniel Dunbar | 1d55291 | 2009-07-23 22:52:48 +0000 | [diff] [blame] | 2189 | |
Daniel Dunbar | f015b03 | 2009-09-22 10:03:52 +0000 | [diff] [blame] | 2190 | // Check for simple case. |
| 2191 | if (!Literal->containsNonAsciiOrNull()) { |
| 2192 | StringLength = NumBytes; |
Benjamin Kramer | 2f4eaef | 2010-08-17 12:54:38 +0000 | [diff] [blame] | 2193 | return Map.GetOrCreateValue(String); |
Daniel Dunbar | f015b03 | 2009-09-22 10:03:52 +0000 | [diff] [blame] | 2194 | } |
| 2195 | |
Bill Wendling | 84392d0 | 2012-03-30 00:26:17 +0000 | [diff] [blame] | 2196 | // Otherwise, convert the UTF8 literals into a string of shorts. |
| 2197 | IsUTF16 = true; |
| 2198 | |
| 2199 | SmallVector<UTF16, 128> ToBuf(NumBytes + 1); // +1 for ending nulls. |
Roman Divacky | 31ba613 | 2012-09-06 15:59:27 +0000 | [diff] [blame] | 2200 | const UTF8 *FromPtr = (const UTF8 *)String.data(); |
Daniel Dunbar | 1d55291 | 2009-07-23 22:52:48 +0000 | [diff] [blame] | 2201 | UTF16 *ToPtr = &ToBuf[0]; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2202 | |
Fariborz Jahanian | e7ddfb9 | 2010-09-07 19:57:04 +0000 | [diff] [blame] | 2203 | (void)ConvertUTF8toUTF16(&FromPtr, FromPtr + NumBytes, |
| 2204 | &ToPtr, ToPtr + NumBytes, |
| 2205 | strictConversion); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2206 | |
Daniel Dunbar | 70ee975 | 2009-07-23 23:41:22 +0000 | [diff] [blame] | 2207 | // ConvertUTF8toUTF16 returns the length in ToPtr. |
Daniel Dunbar | 1d55291 | 2009-07-23 22:52:48 +0000 | [diff] [blame] | 2208 | StringLength = ToPtr - &ToBuf[0]; |
Daniel Dunbar | 70ee975 | 2009-07-23 23:41:22 +0000 | [diff] [blame] | 2209 | |
Bill Wendling | 84392d0 | 2012-03-30 00:26:17 +0000 | [diff] [blame] | 2210 | // Add an explicit null. |
| 2211 | *ToPtr = 0; |
| 2212 | return Map. |
| 2213 | GetOrCreateValue(StringRef(reinterpret_cast<const char *>(ToBuf.data()), |
| 2214 | (StringLength + 1) * 2)); |
Daniel Dunbar | 1d55291 | 2009-07-23 22:52:48 +0000 | [diff] [blame] | 2215 | } |
| 2216 | |
Fariborz Jahanian | cf8e168 | 2011-05-13 18:13:10 +0000 | [diff] [blame] | 2217 | static llvm::StringMapEntry<llvm::Constant*> & |
| 2218 | GetConstantStringEntry(llvm::StringMap<llvm::Constant*> &Map, |
Bill Wendling | 8322c23 | 2012-03-29 22:12:09 +0000 | [diff] [blame] | 2219 | const StringLiteral *Literal, |
| 2220 | unsigned &StringLength) { |
| 2221 | StringRef String = Literal->getString(); |
| 2222 | StringLength = String.size(); |
| 2223 | return Map.GetOrCreateValue(String); |
Fariborz Jahanian | cf8e168 | 2011-05-13 18:13:10 +0000 | [diff] [blame] | 2224 | } |
| 2225 | |
Daniel Dunbar | 1d55291 | 2009-07-23 22:52:48 +0000 | [diff] [blame] | 2226 | llvm::Constant * |
| 2227 | CodeGenModule::GetAddrOfConstantCFString(const StringLiteral *Literal) { |
| 2228 | unsigned StringLength = 0; |
| 2229 | bool isUTF16 = false; |
| 2230 | llvm::StringMapEntry<llvm::Constant*> &Entry = |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2231 | GetConstantCFStringEntry(CFConstantStringMap, Literal, |
Micah Villmow | 25a6a84 | 2012-10-08 16:25:52 +0000 | [diff] [blame] | 2232 | getDataLayout().isLittleEndian(), |
Daniel Dunbar | 70ee975 | 2009-07-23 23:41:22 +0000 | [diff] [blame] | 2233 | isUTF16, StringLength); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2234 | |
Daniel Dunbar | 1d55291 | 2009-07-23 22:52:48 +0000 | [diff] [blame] | 2235 | if (llvm::Constant *C = Entry.getValue()) |
| 2236 | return C; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2237 | |
Chris Lattner | 8b41868 | 2012-02-07 00:39:47 +0000 | [diff] [blame] | 2238 | llvm::Constant *Zero = llvm::Constant::getNullValue(Int32Ty); |
Daniel Dunbar | 3e9df99 | 2008-08-23 18:37:06 +0000 | [diff] [blame] | 2239 | llvm::Constant *Zeros[] = { Zero, Zero }; |
Fariborz Jahanian | 428edb7 | 2013-04-16 15:25:39 +0000 | [diff] [blame] | 2240 | llvm::Value *V; |
| 2241 | |
Chris Lattner | 9d4a15f | 2009-07-16 16:48:25 +0000 | [diff] [blame] | 2242 | // If we don't already have it, get __CFConstantStringClassReference. |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 2243 | if (!CFConstantStringClassRef) { |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 2244 | llvm::Type *Ty = getTypes().ConvertType(getContext().IntTy); |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 2245 | Ty = llvm::ArrayType::get(Ty, 0); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2246 | llvm::Constant *GV = CreateRuntimeVariable(Ty, |
Chris Lattner | 9d4a15f | 2009-07-16 16:48:25 +0000 | [diff] [blame] | 2247 | "__CFConstantStringClassReference"); |
Daniel Dunbar | 3e9df99 | 2008-08-23 18:37:06 +0000 | [diff] [blame] | 2248 | // Decay array -> ptr |
Fariborz Jahanian | 428edb7 | 2013-04-16 15:25:39 +0000 | [diff] [blame] | 2249 | V = llvm::ConstantExpr::getGetElementPtr(GV, Zeros); |
| 2250 | CFConstantStringClassRef = V; |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 2251 | } |
Fariborz Jahanian | 428edb7 | 2013-04-16 15:25:39 +0000 | [diff] [blame] | 2252 | else |
| 2253 | V = CFConstantStringClassRef; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2254 | |
Anders Carlsson | e3daa76 | 2008-11-15 18:54:24 +0000 | [diff] [blame] | 2255 | QualType CFTy = getContext().getCFConstantStringType(); |
Daniel Dunbar | 3e9df99 | 2008-08-23 18:37:06 +0000 | [diff] [blame] | 2256 | |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 2257 | llvm::StructType *STy = |
Anders Carlsson | e3daa76 | 2008-11-15 18:54:24 +0000 | [diff] [blame] | 2258 | cast<llvm::StructType>(getTypes().ConvertType(CFTy)); |
| 2259 | |
Benjamin Kramer | 1d236ab | 2011-10-15 12:20:02 +0000 | [diff] [blame] | 2260 | llvm::Constant *Fields[4]; |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 2261 | |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 2262 | // Class pointer. |
Fariborz Jahanian | 428edb7 | 2013-04-16 15:25:39 +0000 | [diff] [blame] | 2263 | Fields[0] = cast<llvm::ConstantExpr>(V); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2264 | |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 2265 | // Flags. |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 2266 | llvm::Type *Ty = getTypes().ConvertType(getContext().UnsignedIntTy); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2267 | Fields[1] = isUTF16 ? llvm::ConstantInt::get(Ty, 0x07d0) : |
Anders Carlsson | 5add683 | 2009-08-16 05:55:31 +0000 | [diff] [blame] | 2268 | llvm::ConstantInt::get(Ty, 0x07C8); |
| 2269 | |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 2270 | // String pointer. |
Bill Wendling | 84392d0 | 2012-03-30 00:26:17 +0000 | [diff] [blame] | 2271 | llvm::Constant *C = 0; |
| 2272 | if (isUTF16) { |
| 2273 | ArrayRef<uint16_t> Arr = |
David Greene | 5ba58a1 | 2013-01-15 22:09:41 +0000 | [diff] [blame] | 2274 | llvm::makeArrayRef<uint16_t>(reinterpret_cast<uint16_t*>( |
| 2275 | const_cast<char *>(Entry.getKey().data())), |
Bill Wendling | 84392d0 | 2012-03-30 00:26:17 +0000 | [diff] [blame] | 2276 | Entry.getKey().size() / 2); |
| 2277 | C = llvm::ConstantDataArray::get(VMContext, Arr); |
| 2278 | } else { |
| 2279 | C = llvm::ConstantDataArray::getString(VMContext, Entry.getKey()); |
| 2280 | } |
Daniel Dunbar | a9668e0 | 2009-04-03 00:57:44 +0000 | [diff] [blame] | 2281 | |
Chris Lattner | 95b851e | 2009-07-16 05:03:48 +0000 | [diff] [blame] | 2282 | llvm::GlobalValue::LinkageTypes Linkage; |
Bill Wendling | 1bf7a3f | 2012-01-10 08:46:39 +0000 | [diff] [blame] | 2283 | if (isUTF16) |
Chris Lattner | 278b9f0 | 2009-10-14 05:55:45 +0000 | [diff] [blame] | 2284 | // FIXME: why do utf strings get "_" labels instead of "L" labels? |
Chris Lattner | 95b851e | 2009-07-16 05:03:48 +0000 | [diff] [blame] | 2285 | Linkage = llvm::GlobalValue::InternalLinkage; |
Bill Wendling | 1bf7a3f | 2012-01-10 08:46:39 +0000 | [diff] [blame] | 2286 | else |
Rafael Espindola | 584acf2 | 2011-03-14 17:55:00 +0000 | [diff] [blame] | 2287 | // FIXME: With OS X ld 123.2 (xcode 4) and LTO we would get a linker error |
| 2288 | // when using private linkage. It is not clear if this is a bug in ld |
| 2289 | // or a reasonable new restriction. |
Rafael Espindola | dc0f137 | 2011-03-14 21:08:19 +0000 | [diff] [blame] | 2290 | Linkage = llvm::GlobalValue::LinkerPrivateLinkage; |
Chris Lattner | 278b9f0 | 2009-10-14 05:55:45 +0000 | [diff] [blame] | 2291 | |
Bill Wendling | 1bf7a3f | 2012-01-10 08:46:39 +0000 | [diff] [blame] | 2292 | // Note: -fwritable-strings doesn't make the backing store strings of |
| 2293 | // CFStrings writable. (See <rdar://problem/10657500>) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2294 | llvm::GlobalVariable *GV = |
Bill Wendling | 1bf7a3f | 2012-01-10 08:46:39 +0000 | [diff] [blame] | 2295 | new llvm::GlobalVariable(getModule(), C->getType(), /*isConstant=*/true, |
| 2296 | Linkage, C, ".str"); |
Rafael Espindola | b266a1f | 2011-01-17 16:31:00 +0000 | [diff] [blame] | 2297 | GV->setUnnamedAddr(true); |
Ulrich Weigand | 6b20351 | 2013-05-06 16:23:57 +0000 | [diff] [blame] | 2298 | // Don't enforce the target's minimum global alignment, since the only use |
| 2299 | // of the string is via this class initializer. |
Daniel Dunbar | a9668e0 | 2009-04-03 00:57:44 +0000 | [diff] [blame] | 2300 | if (isUTF16) { |
Ken Dyck | 4da244c | 2010-01-26 18:46:23 +0000 | [diff] [blame] | 2301 | CharUnits Align = getContext().getTypeAlignInChars(getContext().ShortTy); |
| 2302 | GV->setAlignment(Align.getQuantity()); |
Daniel Dunbar | f7e903d | 2011-04-12 23:30:52 +0000 | [diff] [blame] | 2303 | } else { |
| 2304 | CharUnits Align = getContext().getTypeAlignInChars(getContext().CharTy); |
| 2305 | GV->setAlignment(Align.getQuantity()); |
Daniel Dunbar | a9668e0 | 2009-04-03 00:57:44 +0000 | [diff] [blame] | 2306 | } |
Bill Wendling | 84392d0 | 2012-03-30 00:26:17 +0000 | [diff] [blame] | 2307 | |
| 2308 | // String. |
Jay Foad | a5c0434 | 2011-07-21 14:31:17 +0000 | [diff] [blame] | 2309 | Fields[2] = llvm::ConstantExpr::getGetElementPtr(GV, Zeros); |
Anders Carlsson | 5add683 | 2009-08-16 05:55:31 +0000 | [diff] [blame] | 2310 | |
Bill Wendling | 84392d0 | 2012-03-30 00:26:17 +0000 | [diff] [blame] | 2311 | if (isUTF16) |
| 2312 | // Cast the UTF16 string to the correct type. |
| 2313 | Fields[2] = llvm::ConstantExpr::getBitCast(Fields[2], Int8PtrTy); |
| 2314 | |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 2315 | // String length. |
| 2316 | Ty = getTypes().ConvertType(getContext().LongTy); |
Anders Carlsson | 5add683 | 2009-08-16 05:55:31 +0000 | [diff] [blame] | 2317 | Fields[3] = llvm::ConstantInt::get(Ty, StringLength); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2318 | |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 2319 | // The struct. |
Owen Anderson | 08e2524 | 2009-07-27 22:29:56 +0000 | [diff] [blame] | 2320 | C = llvm::ConstantStruct::get(STy, Fields); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2321 | GV = new llvm::GlobalVariable(getModule(), C->getType(), true, |
| 2322 | llvm::GlobalVariable::PrivateLinkage, C, |
Chris Lattner | 95b851e | 2009-07-16 05:03:48 +0000 | [diff] [blame] | 2323 | "_unnamed_cfstring_"); |
John McCall | 64aa4b3 | 2013-04-16 22:48:15 +0000 | [diff] [blame] | 2324 | if (const char *Sect = getTarget().getCFStringSection()) |
Daniel Dunbar | 8e5c2b8 | 2009-03-31 23:42:16 +0000 | [diff] [blame] | 2325 | GV->setSection(Sect); |
Daniel Dunbar | 1d55291 | 2009-07-23 22:52:48 +0000 | [diff] [blame] | 2326 | Entry.setValue(GV); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2327 | |
Anders Carlsson | 0c67829 | 2007-11-01 00:41:52 +0000 | [diff] [blame] | 2328 | return GV; |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 2329 | } |
Chris Lattner | 45e8cbd | 2007-11-28 05:34:05 +0000 | [diff] [blame] | 2330 | |
Douglas Gregor | 45c4ea7 | 2011-08-09 15:54:21 +0000 | [diff] [blame] | 2331 | static RecordDecl * |
| 2332 | CreateRecordDecl(const ASTContext &Ctx, RecordDecl::TagKind TK, |
| 2333 | DeclContext *DC, IdentifierInfo *Id) { |
| 2334 | SourceLocation Loc; |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2335 | if (Ctx.getLangOpts().CPlusPlus) |
Douglas Gregor | 45c4ea7 | 2011-08-09 15:54:21 +0000 | [diff] [blame] | 2336 | return CXXRecordDecl::Create(Ctx, TK, DC, Loc, Loc, Id); |
| 2337 | else |
| 2338 | return RecordDecl::Create(Ctx, TK, DC, Loc, Loc, Id); |
| 2339 | } |
| 2340 | |
Fariborz Jahanian | 33e982b | 2010-04-22 20:26:39 +0000 | [diff] [blame] | 2341 | llvm::Constant * |
Fariborz Jahanian | 4c73307 | 2010-10-19 17:19:29 +0000 | [diff] [blame] | 2342 | CodeGenModule::GetAddrOfConstantString(const StringLiteral *Literal) { |
Fariborz Jahanian | 2bb5dda | 2010-04-23 17:41:07 +0000 | [diff] [blame] | 2343 | unsigned StringLength = 0; |
Fariborz Jahanian | 2bb5dda | 2010-04-23 17:41:07 +0000 | [diff] [blame] | 2344 | llvm::StringMapEntry<llvm::Constant*> &Entry = |
Fariborz Jahanian | cf8e168 | 2011-05-13 18:13:10 +0000 | [diff] [blame] | 2345 | GetConstantStringEntry(CFConstantStringMap, Literal, StringLength); |
Fariborz Jahanian | 2bb5dda | 2010-04-23 17:41:07 +0000 | [diff] [blame] | 2346 | |
| 2347 | if (llvm::Constant *C = Entry.getValue()) |
| 2348 | return C; |
| 2349 | |
Chris Lattner | 812234b | 2012-02-06 22:47:00 +0000 | [diff] [blame] | 2350 | llvm::Constant *Zero = llvm::Constant::getNullValue(Int32Ty); |
Fariborz Jahanian | 2bb5dda | 2010-04-23 17:41:07 +0000 | [diff] [blame] | 2351 | llvm::Constant *Zeros[] = { Zero, Zero }; |
Fariborz Jahanian | 428edb7 | 2013-04-16 15:25:39 +0000 | [diff] [blame] | 2352 | llvm::Value *V; |
Fariborz Jahanian | ec951e0 | 2010-04-23 22:33:39 +0000 | [diff] [blame] | 2353 | // If we don't already have it, get _NSConstantStringClassReference. |
Fariborz Jahanian | 4c73307 | 2010-10-19 17:19:29 +0000 | [diff] [blame] | 2354 | if (!ConstantStringClassRef) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2355 | std::string StringClass(getLangOpts().ObjCConstantStringClass); |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 2356 | llvm::Type *Ty = getTypes().ConvertType(getContext().IntTy); |
Fariborz Jahanian | 4c73307 | 2010-10-19 17:19:29 +0000 | [diff] [blame] | 2357 | llvm::Constant *GV; |
John McCall | 260611a | 2012-06-20 06:18:46 +0000 | [diff] [blame] | 2358 | if (LangOpts.ObjCRuntime.isNonFragile()) { |
Fariborz Jahanian | 25dba5d | 2011-05-17 22:46:11 +0000 | [diff] [blame] | 2359 | std::string str = |
| 2360 | StringClass.empty() ? "OBJC_CLASS_$_NSConstantString" |
| 2361 | : "OBJC_CLASS_$_" + StringClass; |
Fariborz Jahanian | 6f40e22 | 2011-05-17 22:21:16 +0000 | [diff] [blame] | 2362 | GV = getObjCRuntime().GetClassGlobal(str); |
| 2363 | // Make sure the result is of the correct type. |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 2364 | llvm::Type *PTy = llvm::PointerType::getUnqual(Ty); |
Fariborz Jahanian | 428edb7 | 2013-04-16 15:25:39 +0000 | [diff] [blame] | 2365 | V = llvm::ConstantExpr::getBitCast(GV, PTy); |
| 2366 | ConstantStringClassRef = V; |
Fariborz Jahanian | 6f40e22 | 2011-05-17 22:21:16 +0000 | [diff] [blame] | 2367 | } else { |
Fariborz Jahanian | 25dba5d | 2011-05-17 22:46:11 +0000 | [diff] [blame] | 2368 | std::string str = |
| 2369 | StringClass.empty() ? "_NSConstantStringClassReference" |
| 2370 | : "_" + StringClass + "ClassReference"; |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 2371 | llvm::Type *PTy = llvm::ArrayType::get(Ty, 0); |
Fariborz Jahanian | 25dba5d | 2011-05-17 22:46:11 +0000 | [diff] [blame] | 2372 | GV = CreateRuntimeVariable(PTy, str); |
Fariborz Jahanian | 6f40e22 | 2011-05-17 22:21:16 +0000 | [diff] [blame] | 2373 | // Decay array -> ptr |
Fariborz Jahanian | 428edb7 | 2013-04-16 15:25:39 +0000 | [diff] [blame] | 2374 | V = llvm::ConstantExpr::getGetElementPtr(GV, Zeros); |
| 2375 | ConstantStringClassRef = V; |
Fariborz Jahanian | 4c73307 | 2010-10-19 17:19:29 +0000 | [diff] [blame] | 2376 | } |
Fariborz Jahanian | 2bb5dda | 2010-04-23 17:41:07 +0000 | [diff] [blame] | 2377 | } |
Fariborz Jahanian | 428edb7 | 2013-04-16 15:25:39 +0000 | [diff] [blame] | 2378 | else |
| 2379 | V = ConstantStringClassRef; |
Douglas Gregor | 45c4ea7 | 2011-08-09 15:54:21 +0000 | [diff] [blame] | 2380 | |
| 2381 | if (!NSConstantStringType) { |
| 2382 | // Construct the type for a constant NSString. |
| 2383 | RecordDecl *D = CreateRecordDecl(Context, TTK_Struct, |
| 2384 | Context.getTranslationUnitDecl(), |
| 2385 | &Context.Idents.get("__builtin_NSString")); |
| 2386 | D->startDefinition(); |
| 2387 | |
| 2388 | QualType FieldTypes[3]; |
| 2389 | |
| 2390 | // const int *isa; |
| 2391 | FieldTypes[0] = Context.getPointerType(Context.IntTy.withConst()); |
| 2392 | // const char *str; |
| 2393 | FieldTypes[1] = Context.getPointerType(Context.CharTy.withConst()); |
| 2394 | // unsigned int length; |
| 2395 | FieldTypes[2] = Context.UnsignedIntTy; |
| 2396 | |
| 2397 | // Create fields |
| 2398 | for (unsigned i = 0; i < 3; ++i) { |
| 2399 | FieldDecl *Field = FieldDecl::Create(Context, D, |
| 2400 | SourceLocation(), |
| 2401 | SourceLocation(), 0, |
| 2402 | FieldTypes[i], /*TInfo=*/0, |
| 2403 | /*BitWidth=*/0, |
| 2404 | /*Mutable=*/false, |
Richard Smith | ca52330 | 2012-06-10 03:12:00 +0000 | [diff] [blame] | 2405 | ICIS_NoInit); |
Douglas Gregor | 45c4ea7 | 2011-08-09 15:54:21 +0000 | [diff] [blame] | 2406 | Field->setAccess(AS_public); |
| 2407 | D->addDecl(Field); |
| 2408 | } |
| 2409 | |
| 2410 | D->completeDefinition(); |
| 2411 | QualType NSTy = Context.getTagDeclType(D); |
| 2412 | NSConstantStringType = cast<llvm::StructType>(getTypes().ConvertType(NSTy)); |
| 2413 | } |
Fariborz Jahanian | 2bb5dda | 2010-04-23 17:41:07 +0000 | [diff] [blame] | 2414 | |
Benjamin Kramer | 1d236ab | 2011-10-15 12:20:02 +0000 | [diff] [blame] | 2415 | llvm::Constant *Fields[3]; |
Fariborz Jahanian | 2bb5dda | 2010-04-23 17:41:07 +0000 | [diff] [blame] | 2416 | |
| 2417 | // Class pointer. |
Fariborz Jahanian | 428edb7 | 2013-04-16 15:25:39 +0000 | [diff] [blame] | 2418 | Fields[0] = cast<llvm::ConstantExpr>(V); |
Fariborz Jahanian | 2bb5dda | 2010-04-23 17:41:07 +0000 | [diff] [blame] | 2419 | |
| 2420 | // String pointer. |
Chris Lattner | 9401069 | 2012-02-05 02:30:40 +0000 | [diff] [blame] | 2421 | llvm::Constant *C = |
| 2422 | llvm::ConstantDataArray::getString(VMContext, Entry.getKey()); |
Fariborz Jahanian | 2bb5dda | 2010-04-23 17:41:07 +0000 | [diff] [blame] | 2423 | |
| 2424 | llvm::GlobalValue::LinkageTypes Linkage; |
| 2425 | bool isConstant; |
Fariborz Jahanian | cf8e168 | 2011-05-13 18:13:10 +0000 | [diff] [blame] | 2426 | Linkage = llvm::GlobalValue::PrivateLinkage; |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2427 | isConstant = !LangOpts.WritableStrings; |
Fariborz Jahanian | 2bb5dda | 2010-04-23 17:41:07 +0000 | [diff] [blame] | 2428 | |
| 2429 | llvm::GlobalVariable *GV = |
| 2430 | new llvm::GlobalVariable(getModule(), C->getType(), isConstant, Linkage, C, |
| 2431 | ".str"); |
Rafael Espindola | 803d307 | 2011-01-17 22:11:21 +0000 | [diff] [blame] | 2432 | GV->setUnnamedAddr(true); |
Ulrich Weigand | 6b20351 | 2013-05-06 16:23:57 +0000 | [diff] [blame] | 2433 | // Don't enforce the target's minimum global alignment, since the only use |
| 2434 | // of the string is via this class initializer. |
Fariborz Jahanian | cf8e168 | 2011-05-13 18:13:10 +0000 | [diff] [blame] | 2435 | CharUnits Align = getContext().getTypeAlignInChars(getContext().CharTy); |
| 2436 | GV->setAlignment(Align.getQuantity()); |
Jay Foad | a5c0434 | 2011-07-21 14:31:17 +0000 | [diff] [blame] | 2437 | Fields[1] = llvm::ConstantExpr::getGetElementPtr(GV, Zeros); |
Fariborz Jahanian | 2bb5dda | 2010-04-23 17:41:07 +0000 | [diff] [blame] | 2438 | |
| 2439 | // String length. |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 2440 | llvm::Type *Ty = getTypes().ConvertType(getContext().UnsignedIntTy); |
Fariborz Jahanian | 2bb5dda | 2010-04-23 17:41:07 +0000 | [diff] [blame] | 2441 | Fields[2] = llvm::ConstantInt::get(Ty, StringLength); |
| 2442 | |
| 2443 | // The struct. |
Douglas Gregor | 45c4ea7 | 2011-08-09 15:54:21 +0000 | [diff] [blame] | 2444 | C = llvm::ConstantStruct::get(NSConstantStringType, Fields); |
Fariborz Jahanian | 2bb5dda | 2010-04-23 17:41:07 +0000 | [diff] [blame] | 2445 | GV = new llvm::GlobalVariable(getModule(), C->getType(), true, |
| 2446 | llvm::GlobalVariable::PrivateLinkage, C, |
| 2447 | "_unnamed_nsstring_"); |
| 2448 | // FIXME. Fix section. |
Fariborz Jahanian | ec951e0 | 2010-04-23 22:33:39 +0000 | [diff] [blame] | 2449 | if (const char *Sect = |
John McCall | 260611a | 2012-06-20 06:18:46 +0000 | [diff] [blame] | 2450 | LangOpts.ObjCRuntime.isNonFragile() |
John McCall | 64aa4b3 | 2013-04-16 22:48:15 +0000 | [diff] [blame] | 2451 | ? getTarget().getNSStringNonFragileABISection() |
| 2452 | : getTarget().getNSStringSection()) |
Fariborz Jahanian | 2bb5dda | 2010-04-23 17:41:07 +0000 | [diff] [blame] | 2453 | GV->setSection(Sect); |
| 2454 | Entry.setValue(GV); |
| 2455 | |
| 2456 | return GV; |
Fariborz Jahanian | 33e982b | 2010-04-22 20:26:39 +0000 | [diff] [blame] | 2457 | } |
| 2458 | |
Douglas Gregor | 0815b57 | 2011-08-09 17:23:49 +0000 | [diff] [blame] | 2459 | QualType CodeGenModule::getObjCFastEnumerationStateType() { |
| 2460 | if (ObjCFastEnumerationStateType.isNull()) { |
| 2461 | RecordDecl *D = CreateRecordDecl(Context, TTK_Struct, |
| 2462 | Context.getTranslationUnitDecl(), |
| 2463 | &Context.Idents.get("__objcFastEnumerationState")); |
| 2464 | D->startDefinition(); |
| 2465 | |
| 2466 | QualType FieldTypes[] = { |
| 2467 | Context.UnsignedLongTy, |
| 2468 | Context.getPointerType(Context.getObjCIdType()), |
| 2469 | Context.getPointerType(Context.UnsignedLongTy), |
| 2470 | Context.getConstantArrayType(Context.UnsignedLongTy, |
| 2471 | llvm::APInt(32, 5), ArrayType::Normal, 0) |
| 2472 | }; |
| 2473 | |
| 2474 | for (size_t i = 0; i < 4; ++i) { |
| 2475 | FieldDecl *Field = FieldDecl::Create(Context, |
| 2476 | D, |
| 2477 | SourceLocation(), |
| 2478 | SourceLocation(), 0, |
| 2479 | FieldTypes[i], /*TInfo=*/0, |
| 2480 | /*BitWidth=*/0, |
| 2481 | /*Mutable=*/false, |
Richard Smith | ca52330 | 2012-06-10 03:12:00 +0000 | [diff] [blame] | 2482 | ICIS_NoInit); |
Douglas Gregor | 0815b57 | 2011-08-09 17:23:49 +0000 | [diff] [blame] | 2483 | Field->setAccess(AS_public); |
| 2484 | D->addDecl(Field); |
| 2485 | } |
| 2486 | |
| 2487 | D->completeDefinition(); |
| 2488 | ObjCFastEnumerationStateType = Context.getTagDeclType(D); |
| 2489 | } |
| 2490 | |
| 2491 | return ObjCFastEnumerationStateType; |
| 2492 | } |
| 2493 | |
Eli Friedman | 64f45a2 | 2011-11-01 02:23:42 +0000 | [diff] [blame] | 2494 | llvm::Constant * |
| 2495 | CodeGenModule::GetConstantArrayFromStringLiteral(const StringLiteral *E) { |
| 2496 | assert(!E->getType()->isPointerType() && "Strings are always arrays"); |
| 2497 | |
| 2498 | // Don't emit it as the address of the string, emit the string data itself |
| 2499 | // as an inline array. |
Chris Lattner | 812234b | 2012-02-06 22:47:00 +0000 | [diff] [blame] | 2500 | if (E->getCharByteWidth() == 1) { |
| 2501 | SmallString<64> Str(E->getString()); |
| 2502 | |
| 2503 | // Resize the string to the right size, which is indicated by its type. |
| 2504 | const ConstantArrayType *CAT = Context.getAsConstantArrayType(E->getType()); |
| 2505 | Str.resize(CAT->getSize().getZExtValue()); |
| 2506 | return llvm::ConstantDataArray::getString(VMContext, Str, false); |
| 2507 | } |
Chris Lattner | 9401069 | 2012-02-05 02:30:40 +0000 | [diff] [blame] | 2508 | |
| 2509 | llvm::ArrayType *AType = |
| 2510 | cast<llvm::ArrayType>(getTypes().ConvertType(E->getType())); |
| 2511 | llvm::Type *ElemTy = AType->getElementType(); |
| 2512 | unsigned NumElements = AType->getNumElements(); |
Chris Lattner | d79ed43 | 2012-02-06 22:52:04 +0000 | [diff] [blame] | 2513 | |
| 2514 | // Wide strings have either 2-byte or 4-byte elements. |
| 2515 | if (ElemTy->getPrimitiveSizeInBits() == 16) { |
| 2516 | SmallVector<uint16_t, 32> Elements; |
| 2517 | Elements.reserve(NumElements); |
| 2518 | |
| 2519 | for(unsigned i = 0, e = E->getLength(); i != e; ++i) |
| 2520 | Elements.push_back(E->getCodeUnit(i)); |
| 2521 | Elements.resize(NumElements); |
| 2522 | return llvm::ConstantDataArray::get(VMContext, Elements); |
Chris Lattner | 9401069 | 2012-02-05 02:30:40 +0000 | [diff] [blame] | 2523 | } |
| 2524 | |
Chris Lattner | d79ed43 | 2012-02-06 22:52:04 +0000 | [diff] [blame] | 2525 | assert(ElemTy->getPrimitiveSizeInBits() == 32); |
| 2526 | SmallVector<uint32_t, 32> Elements; |
| 2527 | Elements.reserve(NumElements); |
| 2528 | |
| 2529 | for(unsigned i = 0, e = E->getLength(); i != e; ++i) |
| 2530 | Elements.push_back(E->getCodeUnit(i)); |
| 2531 | Elements.resize(NumElements); |
| 2532 | return llvm::ConstantDataArray::get(VMContext, Elements); |
Eli Friedman | 64f45a2 | 2011-11-01 02:23:42 +0000 | [diff] [blame] | 2533 | } |
| 2534 | |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 2535 | /// GetAddrOfConstantStringFromLiteral - Return a pointer to a |
| 2536 | /// constant array for the given string literal. |
| 2537 | llvm::Constant * |
| 2538 | CodeGenModule::GetAddrOfConstantStringFromLiteral(const StringLiteral *S) { |
Ulrich Weigand | 6b20351 | 2013-05-06 16:23:57 +0000 | [diff] [blame] | 2539 | CharUnits Align = getContext().getAlignOfGlobalVarInChars(S->getType()); |
Eli Friedman | 64f45a2 | 2011-11-01 02:23:42 +0000 | [diff] [blame] | 2540 | if (S->isAscii() || S->isUTF8()) { |
Chris Lattner | 812234b | 2012-02-06 22:47:00 +0000 | [diff] [blame] | 2541 | SmallString<64> Str(S->getString()); |
| 2542 | |
| 2543 | // Resize the string to the right size, which is indicated by its type. |
| 2544 | const ConstantArrayType *CAT = Context.getAsConstantArrayType(S->getType()); |
| 2545 | Str.resize(CAT->getSize().getZExtValue()); |
| 2546 | return GetAddrOfConstantString(Str, /*GlobalName*/ 0, Align.getQuantity()); |
Eli Friedman | 7eb79c1 | 2009-11-16 05:55:46 +0000 | [diff] [blame] | 2547 | } |
Eli Friedman | 64f45a2 | 2011-11-01 02:23:42 +0000 | [diff] [blame] | 2548 | |
Chris Lattner | 812234b | 2012-02-06 22:47:00 +0000 | [diff] [blame] | 2549 | // FIXME: the following does not memoize wide strings. |
Eli Friedman | 64f45a2 | 2011-11-01 02:23:42 +0000 | [diff] [blame] | 2550 | llvm::Constant *C = GetConstantArrayFromStringLiteral(S); |
| 2551 | llvm::GlobalVariable *GV = |
| 2552 | new llvm::GlobalVariable(getModule(),C->getType(), |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2553 | !LangOpts.WritableStrings, |
Eli Friedman | 64f45a2 | 2011-11-01 02:23:42 +0000 | [diff] [blame] | 2554 | llvm::GlobalValue::PrivateLinkage, |
| 2555 | C,".str"); |
Seth Cantrell | 7d6a7c0 | 2012-01-18 12:11:32 +0000 | [diff] [blame] | 2556 | |
Eli Friedman | 64f45a2 | 2011-11-01 02:23:42 +0000 | [diff] [blame] | 2557 | GV->setAlignment(Align.getQuantity()); |
| 2558 | GV->setUnnamedAddr(true); |
Eli Friedman | 64f45a2 | 2011-11-01 02:23:42 +0000 | [diff] [blame] | 2559 | return GV; |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 2560 | } |
| 2561 | |
Chris Lattner | eaf2bb8 | 2009-02-24 22:18:39 +0000 | [diff] [blame] | 2562 | /// GetAddrOfConstantStringFromObjCEncode - Return a pointer to a constant |
| 2563 | /// array for the given ObjCEncodeExpr node. |
| 2564 | llvm::Constant * |
| 2565 | CodeGenModule::GetAddrOfConstantStringFromObjCEncode(const ObjCEncodeExpr *E) { |
| 2566 | std::string Str; |
| 2567 | getContext().getObjCEncodingForType(E->getEncodedType(), Str); |
Eli Friedman | a210f35 | 2009-03-07 20:17:55 +0000 | [diff] [blame] | 2568 | |
| 2569 | return GetAddrOfConstantCString(Str); |
Chris Lattner | eaf2bb8 | 2009-02-24 22:18:39 +0000 | [diff] [blame] | 2570 | } |
| 2571 | |
| 2572 | |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 2573 | /// GenerateWritableString -- Creates storage for a string literal. |
John McCall | a5e19c6 | 2011-08-04 01:03:22 +0000 | [diff] [blame] | 2574 | static llvm::GlobalVariable *GenerateStringLiteral(StringRef str, |
Chris Lattner | 45e8cbd | 2007-11-28 05:34:05 +0000 | [diff] [blame] | 2575 | bool constant, |
Daniel Dunbar | 5fabf9d | 2008-10-17 21:56:50 +0000 | [diff] [blame] | 2576 | CodeGenModule &CGM, |
John McCall | a5e19c6 | 2011-08-04 01:03:22 +0000 | [diff] [blame] | 2577 | const char *GlobalName, |
| 2578 | unsigned Alignment) { |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 2579 | // Create Constant for this string literal. Don't add a '\0'. |
Owen Anderson | 0032b27 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 2580 | llvm::Constant *C = |
Chris Lattner | 9401069 | 2012-02-05 02:30:40 +0000 | [diff] [blame] | 2581 | llvm::ConstantDataArray::getString(CGM.getLLVMContext(), str, false); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2582 | |
Chris Lattner | 45e8cbd | 2007-11-28 05:34:05 +0000 | [diff] [blame] | 2583 | // Create a global variable for this string |
Rafael Espindola | 1257bc6 | 2011-01-10 22:34:03 +0000 | [diff] [blame] | 2584 | llvm::GlobalVariable *GV = |
| 2585 | new llvm::GlobalVariable(CGM.getModule(), C->getType(), constant, |
| 2586 | llvm::GlobalValue::PrivateLinkage, |
| 2587 | C, GlobalName); |
John McCall | a5e19c6 | 2011-08-04 01:03:22 +0000 | [diff] [blame] | 2588 | GV->setAlignment(Alignment); |
Rafael Espindola | 1257bc6 | 2011-01-10 22:34:03 +0000 | [diff] [blame] | 2589 | GV->setUnnamedAddr(true); |
| 2590 | return GV; |
Chris Lattner | 45e8cbd | 2007-11-28 05:34:05 +0000 | [diff] [blame] | 2591 | } |
| 2592 | |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 2593 | /// GetAddrOfConstantString - Returns a pointer to a character array |
| 2594 | /// containing the literal. This contents are exactly that of the |
| 2595 | /// given string, i.e. it will not be null terminated automatically; |
| 2596 | /// see GetAddrOfConstantCString. Note that whether the result is |
| 2597 | /// actually a pointer to an LLVM constant depends on |
| 2598 | /// Feature.WriteableStrings. |
| 2599 | /// |
| 2600 | /// The result has pointer to array type. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2601 | llvm::Constant *CodeGenModule::GetAddrOfConstantString(StringRef Str, |
John McCall | a5e19c6 | 2011-08-04 01:03:22 +0000 | [diff] [blame] | 2602 | const char *GlobalName, |
| 2603 | unsigned Alignment) { |
Daniel Dunbar | 8e5c2b8 | 2009-03-31 23:42:16 +0000 | [diff] [blame] | 2604 | // Get the default prefix if a name wasn't specified. |
| 2605 | if (!GlobalName) |
Chris Lattner | 95b851e | 2009-07-16 05:03:48 +0000 | [diff] [blame] | 2606 | GlobalName = ".str"; |
Daniel Dunbar | 8e5c2b8 | 2009-03-31 23:42:16 +0000 | [diff] [blame] | 2607 | |
Ulrich Weigand | 6b20351 | 2013-05-06 16:23:57 +0000 | [diff] [blame] | 2608 | if (Alignment == 0) |
| 2609 | Alignment = getContext().getAlignOfGlobalVarInChars(getContext().CharTy) |
| 2610 | .getQuantity(); |
| 2611 | |
Daniel Dunbar | 8e5c2b8 | 2009-03-31 23:42:16 +0000 | [diff] [blame] | 2612 | // Don't share any string literals if strings aren't constant. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 2613 | if (LangOpts.WritableStrings) |
John McCall | a5e19c6 | 2011-08-04 01:03:22 +0000 | [diff] [blame] | 2614 | return GenerateStringLiteral(Str, false, *this, GlobalName, Alignment); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2615 | |
John McCall | a5e19c6 | 2011-08-04 01:03:22 +0000 | [diff] [blame] | 2616 | llvm::StringMapEntry<llvm::GlobalVariable *> &Entry = |
Benjamin Kramer | 9de4342 | 2011-03-05 13:45:23 +0000 | [diff] [blame] | 2617 | ConstantStringMap.GetOrCreateValue(Str); |
Chris Lattner | 45e8cbd | 2007-11-28 05:34:05 +0000 | [diff] [blame] | 2618 | |
John McCall | a5e19c6 | 2011-08-04 01:03:22 +0000 | [diff] [blame] | 2619 | if (llvm::GlobalVariable *GV = Entry.getValue()) { |
| 2620 | if (Alignment > GV->getAlignment()) { |
| 2621 | GV->setAlignment(Alignment); |
| 2622 | } |
| 2623 | return GV; |
| 2624 | } |
Chris Lattner | 45e8cbd | 2007-11-28 05:34:05 +0000 | [diff] [blame] | 2625 | |
| 2626 | // Create a global variable for this. |
Chris Lattner | 812234b | 2012-02-06 22:47:00 +0000 | [diff] [blame] | 2627 | llvm::GlobalVariable *GV = GenerateStringLiteral(Str, true, *this, GlobalName, |
| 2628 | Alignment); |
John McCall | a5e19c6 | 2011-08-04 01:03:22 +0000 | [diff] [blame] | 2629 | Entry.setValue(GV); |
| 2630 | return GV; |
Chris Lattner | 45e8cbd | 2007-11-28 05:34:05 +0000 | [diff] [blame] | 2631 | } |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 2632 | |
| 2633 | /// GetAddrOfConstantCString - Returns a pointer to a character |
Benjamin Kramer | 9de4342 | 2011-03-05 13:45:23 +0000 | [diff] [blame] | 2634 | /// array containing the literal and a terminating '\0' |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 2635 | /// character. The result has pointer to array type. |
Benjamin Kramer | 9de4342 | 2011-03-05 13:45:23 +0000 | [diff] [blame] | 2636 | llvm::Constant *CodeGenModule::GetAddrOfConstantCString(const std::string &Str, |
John McCall | a5e19c6 | 2011-08-04 01:03:22 +0000 | [diff] [blame] | 2637 | const char *GlobalName, |
| 2638 | unsigned Alignment) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2639 | StringRef StrWithNull(Str.c_str(), Str.size() + 1); |
John McCall | a5e19c6 | 2011-08-04 01:03:22 +0000 | [diff] [blame] | 2640 | return GetAddrOfConstantString(StrWithNull, GlobalName, Alignment); |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 2641 | } |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2642 | |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 2643 | llvm::Constant *CodeGenModule::GetAddrOfGlobalTemporary( |
Richard Smith | 3282b84 | 2013-06-14 03:07:01 +0000 | [diff] [blame] | 2644 | const MaterializeTemporaryExpr *E, const Expr *Init) { |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 2645 | assert((E->getStorageDuration() == SD_Static || |
| 2646 | E->getStorageDuration() == SD_Thread) && "not a global temporary"); |
| 2647 | const VarDecl *VD = cast<VarDecl>(E->getExtendingDecl()); |
| 2648 | |
| 2649 | // If we're not materializing a subobject of the temporary, keep the |
| 2650 | // cv-qualifiers from the type of the MaterializeTemporaryExpr. |
Richard Smith | 3282b84 | 2013-06-14 03:07:01 +0000 | [diff] [blame] | 2651 | QualType MaterializedType = Init->getType(); |
| 2652 | if (Init == E->GetTemporaryExpr()) |
| 2653 | MaterializedType = E->getType(); |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 2654 | |
| 2655 | llvm::Constant *&Slot = MaterializedGlobalTemporaryMap[E]; |
| 2656 | if (Slot) |
| 2657 | return Slot; |
| 2658 | |
| 2659 | // FIXME: If an externally-visible declaration extends multiple temporaries, |
| 2660 | // we need to give each temporary the same name in every translation unit (and |
| 2661 | // we also need to make the temporaries externally-visible). |
| 2662 | SmallString<256> Name; |
| 2663 | llvm::raw_svector_ostream Out(Name); |
| 2664 | getCXXABI().getMangleContext().mangleReferenceTemporary(VD, Out); |
| 2665 | Out.flush(); |
| 2666 | |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 2667 | APValue *Value = 0; |
| 2668 | if (E->getStorageDuration() == SD_Static) { |
Richard Smith | 3282b84 | 2013-06-14 03:07:01 +0000 | [diff] [blame] | 2669 | // We might have a cached constant initializer for this temporary. Note |
| 2670 | // that this might have a different value from the value computed by |
| 2671 | // evaluating the initializer if the surrounding constant expression |
| 2672 | // modifies the temporary. |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 2673 | Value = getContext().getMaterializedTemporaryValue(E, false); |
| 2674 | if (Value && Value->isUninit()) |
| 2675 | Value = 0; |
| 2676 | } |
| 2677 | |
Richard Smith | 3282b84 | 2013-06-14 03:07:01 +0000 | [diff] [blame] | 2678 | // Try evaluating it now, it might have a constant initializer. |
| 2679 | Expr::EvalResult EvalResult; |
| 2680 | if (!Value && Init->EvaluateAsRValue(EvalResult, getContext()) && |
| 2681 | !EvalResult.hasSideEffects()) |
| 2682 | Value = &EvalResult.Val; |
| 2683 | |
| 2684 | llvm::Constant *InitialValue = 0; |
| 2685 | bool Constant = false; |
| 2686 | llvm::Type *Type; |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 2687 | if (Value) { |
| 2688 | // The temporary has a constant initializer, use it. |
Richard Smith | 3282b84 | 2013-06-14 03:07:01 +0000 | [diff] [blame] | 2689 | InitialValue = EmitConstantValue(*Value, MaterializedType, 0); |
| 2690 | Constant = isTypeConstant(MaterializedType, /*ExcludeCtor*/Value); |
| 2691 | Type = InitialValue->getType(); |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 2692 | } else { |
Richard Smith | 3282b84 | 2013-06-14 03:07:01 +0000 | [diff] [blame] | 2693 | // No initializer, the initialization will be provided when we |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 2694 | // initialize the declaration which performed lifetime extension. |
Richard Smith | 3282b84 | 2013-06-14 03:07:01 +0000 | [diff] [blame] | 2695 | Type = getTypes().ConvertTypeForMem(MaterializedType); |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 2696 | } |
| 2697 | |
| 2698 | // Create a global variable for this lifetime-extended temporary. |
| 2699 | llvm::GlobalVariable *GV = |
Richard Smith | 3282b84 | 2013-06-14 03:07:01 +0000 | [diff] [blame] | 2700 | new llvm::GlobalVariable(getModule(), Type, Constant, |
| 2701 | llvm::GlobalValue::PrivateLinkage, |
| 2702 | InitialValue, Name.c_str()); |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 2703 | GV->setAlignment( |
Richard Smith | 3282b84 | 2013-06-14 03:07:01 +0000 | [diff] [blame] | 2704 | getContext().getTypeAlignInChars(MaterializedType).getQuantity()); |
Richard Smith | 211c8dd | 2013-06-05 00:46:14 +0000 | [diff] [blame] | 2705 | if (VD->getTLSKind()) |
| 2706 | setTLSMode(GV, *VD); |
| 2707 | Slot = GV; |
| 2708 | return GV; |
| 2709 | } |
| 2710 | |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 2711 | /// EmitObjCPropertyImplementations - Emit information for synthesized |
| 2712 | /// properties for an implementation. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2713 | void CodeGenModule::EmitObjCPropertyImplementations(const |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 2714 | ObjCImplementationDecl *D) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2715 | for (ObjCImplementationDecl::propimpl_iterator |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2716 | i = D->propimpl_begin(), e = D->propimpl_end(); i != e; ++i) { |
David Blaikie | 581deb3 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 2717 | ObjCPropertyImplDecl *PID = *i; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2718 | |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 2719 | // Dynamic is just for type-checking. |
| 2720 | if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) { |
| 2721 | ObjCPropertyDecl *PD = PID->getPropertyDecl(); |
| 2722 | |
| 2723 | // Determine which methods need to be implemented, some may have |
Jordan Rose | 1e4691b | 2012-10-10 16:42:25 +0000 | [diff] [blame] | 2724 | // been overridden. Note that ::isPropertyAccessor is not the method |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 2725 | // we want, that just indicates if the decl came from a |
| 2726 | // property. What we want to know is if the method is defined in |
| 2727 | // this implementation. |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2728 | if (!D->getInstanceMethod(PD->getGetterName())) |
Fariborz Jahanian | fef30b5 | 2008-12-09 20:23:04 +0000 | [diff] [blame] | 2729 | CodeGenFunction(*this).GenerateObjCGetter( |
| 2730 | const_cast<ObjCImplementationDecl *>(D), PID); |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 2731 | if (!PD->isReadOnly() && |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2732 | !D->getInstanceMethod(PD->getSetterName())) |
Fariborz Jahanian | fef30b5 | 2008-12-09 20:23:04 +0000 | [diff] [blame] | 2733 | CodeGenFunction(*this).GenerateObjCSetter( |
| 2734 | const_cast<ObjCImplementationDecl *>(D), PID); |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 2735 | } |
| 2736 | } |
| 2737 | } |
| 2738 | |
John McCall | e81ac69 | 2011-03-22 07:05:39 +0000 | [diff] [blame] | 2739 | static bool needsDestructMethod(ObjCImplementationDecl *impl) { |
Jordy Rose | db8264e | 2011-07-22 02:08:32 +0000 | [diff] [blame] | 2740 | const ObjCInterfaceDecl *iface = impl->getClassInterface(); |
| 2741 | for (const ObjCIvarDecl *ivar = iface->all_declared_ivar_begin(); |
John McCall | e81ac69 | 2011-03-22 07:05:39 +0000 | [diff] [blame] | 2742 | ivar; ivar = ivar->getNextIvar()) |
| 2743 | if (ivar->getType().isDestructedType()) |
| 2744 | return true; |
| 2745 | |
| 2746 | return false; |
| 2747 | } |
| 2748 | |
Fariborz Jahanian | 109dfc6 | 2010-04-28 21:28:56 +0000 | [diff] [blame] | 2749 | /// EmitObjCIvarInitializations - Emit information for ivar initialization |
| 2750 | /// for an implementation. |
| 2751 | void CodeGenModule::EmitObjCIvarInitializations(ObjCImplementationDecl *D) { |
John McCall | e81ac69 | 2011-03-22 07:05:39 +0000 | [diff] [blame] | 2752 | // We might need a .cxx_destruct even if we don't have any ivar initializers. |
| 2753 | if (needsDestructMethod(D)) { |
| 2754 | IdentifierInfo *II = &getContext().Idents.get(".cxx_destruct"); |
| 2755 | Selector cxxSelector = getContext().Selectors.getSelector(0, &II); |
| 2756 | ObjCMethodDecl *DTORMethod = |
| 2757 | ObjCMethodDecl::Create(getContext(), D->getLocation(), D->getLocation(), |
Argyrios Kyrtzidis | 75cf3e8 | 2011-08-17 19:25:08 +0000 | [diff] [blame] | 2758 | cxxSelector, getContext().VoidTy, 0, D, |
| 2759 | /*isInstance=*/true, /*isVariadic=*/false, |
Jordan Rose | 1e4691b | 2012-10-10 16:42:25 +0000 | [diff] [blame] | 2760 | /*isPropertyAccessor=*/true, /*isImplicitlyDeclared=*/true, |
Argyrios Kyrtzidis | 75cf3e8 | 2011-08-17 19:25:08 +0000 | [diff] [blame] | 2761 | /*isDefined=*/false, ObjCMethodDecl::Required); |
John McCall | e81ac69 | 2011-03-22 07:05:39 +0000 | [diff] [blame] | 2762 | D->addInstanceMethod(DTORMethod); |
| 2763 | CodeGenFunction(*this).GenerateObjCCtorDtorMethod(D, DTORMethod, false); |
John McCall | b03527a | 2012-10-17 04:53:31 +0000 | [diff] [blame] | 2764 | D->setHasDestructors(true); |
John McCall | e81ac69 | 2011-03-22 07:05:39 +0000 | [diff] [blame] | 2765 | } |
| 2766 | |
| 2767 | // If the implementation doesn't have any ivar initializers, we don't need |
| 2768 | // a .cxx_construct. |
David Chisnall | 827bbcc | 2011-03-17 14:19:08 +0000 | [diff] [blame] | 2769 | if (D->getNumIvarInitializers() == 0) |
Fariborz Jahanian | 109dfc6 | 2010-04-28 21:28:56 +0000 | [diff] [blame] | 2770 | return; |
Fariborz Jahanian | 109dfc6 | 2010-04-28 21:28:56 +0000 | [diff] [blame] | 2771 | |
John McCall | e81ac69 | 2011-03-22 07:05:39 +0000 | [diff] [blame] | 2772 | IdentifierInfo *II = &getContext().Idents.get(".cxx_construct"); |
| 2773 | Selector cxxSelector = getContext().Selectors.getSelector(0, &II); |
Fariborz Jahanian | 109dfc6 | 2010-04-28 21:28:56 +0000 | [diff] [blame] | 2774 | // The constructor returns 'self'. |
| 2775 | ObjCMethodDecl *CTORMethod = ObjCMethodDecl::Create(getContext(), |
| 2776 | D->getLocation(), |
Argyrios Kyrtzidis | 11d7716 | 2011-10-03 06:36:36 +0000 | [diff] [blame] | 2777 | D->getLocation(), |
Argyrios Kyrtzidis | 11d7716 | 2011-10-03 06:36:36 +0000 | [diff] [blame] | 2778 | cxxSelector, |
Fariborz Jahanian | 109dfc6 | 2010-04-28 21:28:56 +0000 | [diff] [blame] | 2779 | getContext().getObjCIdType(), 0, |
Argyrios Kyrtzidis | 75cf3e8 | 2011-08-17 19:25:08 +0000 | [diff] [blame] | 2780 | D, /*isInstance=*/true, |
| 2781 | /*isVariadic=*/false, |
Jordan Rose | 1e4691b | 2012-10-10 16:42:25 +0000 | [diff] [blame] | 2782 | /*isPropertyAccessor=*/true, |
Argyrios Kyrtzidis | 75cf3e8 | 2011-08-17 19:25:08 +0000 | [diff] [blame] | 2783 | /*isImplicitlyDeclared=*/true, |
| 2784 | /*isDefined=*/false, |
Fariborz Jahanian | 109dfc6 | 2010-04-28 21:28:56 +0000 | [diff] [blame] | 2785 | ObjCMethodDecl::Required); |
| 2786 | D->addInstanceMethod(CTORMethod); |
| 2787 | CodeGenFunction(*this).GenerateObjCCtorDtorMethod(D, CTORMethod, true); |
John McCall | b03527a | 2012-10-17 04:53:31 +0000 | [diff] [blame] | 2788 | D->setHasNonZeroConstructors(true); |
Fariborz Jahanian | 109dfc6 | 2010-04-28 21:28:56 +0000 | [diff] [blame] | 2789 | } |
| 2790 | |
Anders Carlsson | 91e20dd | 2009-04-02 05:55:18 +0000 | [diff] [blame] | 2791 | /// EmitNamespace - Emit all declarations in a namespace. |
Anders Carlsson | 984e068 | 2009-04-01 00:58:25 +0000 | [diff] [blame] | 2792 | void CodeGenModule::EmitNamespace(const NamespaceDecl *ND) { |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2793 | for (RecordDecl::decl_iterator I = ND->decls_begin(), E = ND->decls_end(); |
Anders Carlsson | 984e068 | 2009-04-01 00:58:25 +0000 | [diff] [blame] | 2794 | I != E; ++I) |
| 2795 | EmitTopLevelDecl(*I); |
| 2796 | } |
| 2797 | |
Anders Carlsson | 91e20dd | 2009-04-02 05:55:18 +0000 | [diff] [blame] | 2798 | // EmitLinkageSpec - Emit all declarations in a linkage spec. |
| 2799 | void CodeGenModule::EmitLinkageSpec(const LinkageSpecDecl *LSD) { |
Eli Friedman | f976be8 | 2009-08-01 20:48:04 +0000 | [diff] [blame] | 2800 | if (LSD->getLanguage() != LinkageSpecDecl::lang_c && |
| 2801 | LSD->getLanguage() != LinkageSpecDecl::lang_cxx) { |
Anders Carlsson | 91e20dd | 2009-04-02 05:55:18 +0000 | [diff] [blame] | 2802 | ErrorUnsupported(LSD, "linkage spec"); |
| 2803 | return; |
| 2804 | } |
| 2805 | |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2806 | for (RecordDecl::decl_iterator I = LSD->decls_begin(), E = LSD->decls_end(); |
Fariborz Jahanian | c1868e5 | 2012-10-26 20:22:11 +0000 | [diff] [blame] | 2807 | I != E; ++I) { |
Fariborz Jahanian | 107dae4 | 2012-10-26 22:20:25 +0000 | [diff] [blame] | 2808 | // Meta-data for ObjC class includes references to implemented methods. |
| 2809 | // Generate class's method definitions first. |
Fariborz Jahanian | c1868e5 | 2012-10-26 20:22:11 +0000 | [diff] [blame] | 2810 | if (ObjCImplDecl *OID = dyn_cast<ObjCImplDecl>(*I)) { |
| 2811 | for (ObjCContainerDecl::method_iterator M = OID->meth_begin(), |
| 2812 | MEnd = OID->meth_end(); |
| 2813 | M != MEnd; ++M) |
| 2814 | EmitTopLevelDecl(*M); |
| 2815 | } |
Anders Carlsson | 91e20dd | 2009-04-02 05:55:18 +0000 | [diff] [blame] | 2816 | EmitTopLevelDecl(*I); |
Fariborz Jahanian | c1868e5 | 2012-10-26 20:22:11 +0000 | [diff] [blame] | 2817 | } |
Anders Carlsson | 91e20dd | 2009-04-02 05:55:18 +0000 | [diff] [blame] | 2818 | } |
| 2819 | |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2820 | /// EmitTopLevelDecl - Emit code for a single top level declaration. |
| 2821 | void CodeGenModule::EmitTopLevelDecl(Decl *D) { |
| 2822 | // If an error has occurred, stop code generation, but continue |
| 2823 | // parsing and semantic analysis (to ensure all warnings and errors |
| 2824 | // are emitted). |
| 2825 | if (Diags.hasErrorOccurred()) |
| 2826 | return; |
| 2827 | |
Douglas Gregor | 16e8be2 | 2009-06-29 17:30:29 +0000 | [diff] [blame] | 2828 | // Ignore dependent declarations. |
| 2829 | if (D->getDeclContext() && D->getDeclContext()->isDependentContext()) |
| 2830 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2831 | |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2832 | switch (D->getKind()) { |
Anders Carlsson | 293361a | 2009-08-25 13:14:46 +0000 | [diff] [blame] | 2833 | case Decl::CXXConversion: |
Anders Carlsson | 2b77ba8 | 2009-04-04 20:47:02 +0000 | [diff] [blame] | 2834 | case Decl::CXXMethod: |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2835 | case Decl::Function: |
Douglas Gregor | 16e8be2 | 2009-06-29 17:30:29 +0000 | [diff] [blame] | 2836 | // Skip function templates |
Francois Pichet | 8387e2a | 2011-04-22 22:18:13 +0000 | [diff] [blame] | 2837 | if (cast<FunctionDecl>(D)->getDescribedFunctionTemplate() || |
| 2838 | cast<FunctionDecl>(D)->isLateTemplateParsed()) |
Douglas Gregor | 16e8be2 | 2009-06-29 17:30:29 +0000 | [diff] [blame] | 2839 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2840 | |
Anders Carlsson | 555b4bb | 2009-09-10 23:43:36 +0000 | [diff] [blame] | 2841 | EmitGlobal(cast<FunctionDecl>(D)); |
| 2842 | break; |
Larisse Voufo | ef4579c | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 2843 | |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2844 | case Decl::Var: |
Larisse Voufo | ef4579c | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 2845 | // Skip variable templates |
| 2846 | if (cast<VarDecl>(D)->getDescribedVarTemplate()) |
| 2847 | return; |
| 2848 | case Decl::VarTemplateSpecialization: |
Anders Carlsson | 555b4bb | 2009-09-10 23:43:36 +0000 | [diff] [blame] | 2849 | EmitGlobal(cast<VarDecl>(D)); |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2850 | break; |
| 2851 | |
John McCall | 26fbc72 | 2011-04-12 01:01:22 +0000 | [diff] [blame] | 2852 | // Indirect fields from global anonymous structs and unions can be |
| 2853 | // ignored; only the actual variable requires IR gen support. |
| 2854 | case Decl::IndirectField: |
| 2855 | break; |
| 2856 | |
Anders Carlsson | 95d4e5d | 2009-04-15 15:55:24 +0000 | [diff] [blame] | 2857 | // C++ Decls |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2858 | case Decl::Namespace: |
Anders Carlsson | 984e068 | 2009-04-01 00:58:25 +0000 | [diff] [blame] | 2859 | EmitNamespace(cast<NamespaceDecl>(D)); |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2860 | break; |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 2861 | // No code generation needed. |
John McCall | 9d0c661 | 2009-11-17 09:33:40 +0000 | [diff] [blame] | 2862 | case Decl::UsingShadow: |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 2863 | case Decl::Using: |
Douglas Gregor | 127102b | 2009-06-29 20:59:39 +0000 | [diff] [blame] | 2864 | case Decl::ClassTemplate: |
Larisse Voufo | ef4579c | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 2865 | case Decl::VarTemplate: |
| 2866 | case Decl::VarTemplatePartialSpecialization: |
Douglas Gregor | 127102b | 2009-06-29 20:59:39 +0000 | [diff] [blame] | 2867 | case Decl::FunctionTemplate: |
Richard Smith | 3e4c6c4 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 2868 | case Decl::TypeAliasTemplate: |
Douglas Gregor | 6a576ab | 2011-06-05 05:04:23 +0000 | [diff] [blame] | 2869 | case Decl::Block: |
Michael Han | 684aa73 | 2013-02-22 17:15:32 +0000 | [diff] [blame] | 2870 | case Decl::Empty: |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 2871 | break; |
David Blaikie | fc46ebc | 2013-05-20 22:50:41 +0000 | [diff] [blame] | 2872 | case Decl::NamespaceAlias: |
| 2873 | if (CGDebugInfo *DI = getModuleDebugInfo()) |
| 2874 | DI->EmitNamespaceAlias(cast<NamespaceAliasDecl>(*D)); |
| 2875 | return; |
David Blaikie | 1601a4a | 2013-04-26 05:41:06 +0000 | [diff] [blame] | 2876 | case Decl::UsingDirective: // using namespace X; [C++] |
| 2877 | if (CGDebugInfo *DI = getModuleDebugInfo()) |
| 2878 | DI->EmitUsingDirective(cast<UsingDirectiveDecl>(*D)); |
| 2879 | return; |
Anders Carlsson | 95d4e5d | 2009-04-15 15:55:24 +0000 | [diff] [blame] | 2880 | case Decl::CXXConstructor: |
Anders Carlsson | 1fe598c | 2009-11-24 05:16:24 +0000 | [diff] [blame] | 2881 | // Skip function templates |
Francois Pichet | 8387e2a | 2011-04-22 22:18:13 +0000 | [diff] [blame] | 2882 | if (cast<FunctionDecl>(D)->getDescribedFunctionTemplate() || |
| 2883 | cast<FunctionDecl>(D)->isLateTemplateParsed()) |
Anders Carlsson | 1fe598c | 2009-11-24 05:16:24 +0000 | [diff] [blame] | 2884 | return; |
| 2885 | |
Timur Iskhodzhanov | bb1b797 | 2013-08-04 17:30:04 +0000 | [diff] [blame] | 2886 | getCXXABI().EmitCXXConstructors(cast<CXXConstructorDecl>(D)); |
Anders Carlsson | 95d4e5d | 2009-04-15 15:55:24 +0000 | [diff] [blame] | 2887 | break; |
Anders Carlsson | 27ae536 | 2009-04-17 01:58:57 +0000 | [diff] [blame] | 2888 | case Decl::CXXDestructor: |
Francois Pichet | 8387e2a | 2011-04-22 22:18:13 +0000 | [diff] [blame] | 2889 | if (cast<FunctionDecl>(D)->isLateTemplateParsed()) |
| 2890 | return; |
Reid Kleckner | a4130ba | 2013-07-22 13:51:44 +0000 | [diff] [blame] | 2891 | getCXXABI().EmitCXXDestructors(cast<CXXDestructorDecl>(D)); |
Anders Carlsson | 27ae536 | 2009-04-17 01:58:57 +0000 | [diff] [blame] | 2892 | break; |
Anders Carlsson | 36674d2 | 2009-06-11 21:22:55 +0000 | [diff] [blame] | 2893 | |
| 2894 | case Decl::StaticAssert: |
| 2895 | // Nothing to do. |
| 2896 | break; |
| 2897 | |
Anders Carlsson | 95d4e5d | 2009-04-15 15:55:24 +0000 | [diff] [blame] | 2898 | // Objective-C Decls |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2899 | |
Fariborz Jahanian | 38e24c7 | 2009-03-18 22:33:24 +0000 | [diff] [blame] | 2900 | // Forward declarations, no (immediate) code generation. |
Chris Lattner | 285d0db | 2009-04-01 02:36:43 +0000 | [diff] [blame] | 2901 | case Decl::ObjCInterface: |
Eric Christopher | ffb0c3a | 2012-07-19 22:22:55 +0000 | [diff] [blame] | 2902 | case Decl::ObjCCategory: |
Chris Lattner | 285d0db | 2009-04-01 02:36:43 +0000 | [diff] [blame] | 2903 | break; |
| 2904 | |
Douglas Gregor | bd9482d | 2012-01-01 21:23:57 +0000 | [diff] [blame] | 2905 | case Decl::ObjCProtocol: { |
| 2906 | ObjCProtocolDecl *Proto = cast<ObjCProtocolDecl>(D); |
| 2907 | if (Proto->isThisDeclarationADefinition()) |
| 2908 | ObjCRuntime->GenerateProtocol(Proto); |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2909 | break; |
Douglas Gregor | bd9482d | 2012-01-01 21:23:57 +0000 | [diff] [blame] | 2910 | } |
| 2911 | |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2912 | case Decl::ObjCCategoryImpl: |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 2913 | // Categories have properties but don't support synthesize so we |
| 2914 | // can ignore them here. |
Peter Collingbourne | e926523 | 2011-07-27 20:29:46 +0000 | [diff] [blame] | 2915 | ObjCRuntime->GenerateCategory(cast<ObjCCategoryImplDecl>(D)); |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2916 | break; |
| 2917 | |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 2918 | case Decl::ObjCImplementation: { |
| 2919 | ObjCImplementationDecl *OMD = cast<ObjCImplementationDecl>(D); |
| 2920 | EmitObjCPropertyImplementations(OMD); |
Fariborz Jahanian | 109dfc6 | 2010-04-28 21:28:56 +0000 | [diff] [blame] | 2921 | EmitObjCIvarInitializations(OMD); |
Peter Collingbourne | e926523 | 2011-07-27 20:29:46 +0000 | [diff] [blame] | 2922 | ObjCRuntime->GenerateClass(OMD); |
Eric Christopher | be6c686 | 2012-04-11 05:56:05 +0000 | [diff] [blame] | 2923 | // Emit global variable debug information. |
| 2924 | if (CGDebugInfo *DI = getModuleDebugInfo()) |
Alexey Samsonov | 96a6639 | 2012-12-03 18:28:12 +0000 | [diff] [blame] | 2925 | if (getCodeGenOpts().getDebugInfo() >= CodeGenOptions::LimitedDebugInfo) |
| 2926 | DI->getOrCreateInterfaceType(getContext().getObjCInterfaceType( |
| 2927 | OMD->getClassInterface()), OMD->getLocation()); |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2928 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2929 | } |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2930 | case Decl::ObjCMethod: { |
| 2931 | ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(D); |
| 2932 | // If this is not a prototype, emit the body. |
Argyrios Kyrtzidis | 6fb0aee | 2009-06-30 02:35:26 +0000 | [diff] [blame] | 2933 | if (OMD->getBody()) |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2934 | CodeGenFunction(*this).GenerateObjCMethod(OMD); |
| 2935 | break; |
| 2936 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2937 | case Decl::ObjCCompatibleAlias: |
David Chisnall | 29254f4 | 2012-01-31 18:59:20 +0000 | [diff] [blame] | 2938 | ObjCRuntime->RegisterAlias(cast<ObjCCompatibleAliasDecl>(D)); |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2939 | break; |
| 2940 | |
Anders Carlsson | 91e20dd | 2009-04-02 05:55:18 +0000 | [diff] [blame] | 2941 | case Decl::LinkageSpec: |
| 2942 | EmitLinkageSpec(cast<LinkageSpecDecl>(D)); |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2943 | break; |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2944 | |
| 2945 | case Decl::FileScopeAsm: { |
| 2946 | FileScopeAsmDecl *AD = cast<FileScopeAsmDecl>(D); |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2947 | StringRef AsmString = AD->getAsmString()->getString(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2948 | |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2949 | const std::string &S = getModule().getModuleInlineAsm(); |
| 2950 | if (S.empty()) |
| 2951 | getModule().setModuleInlineAsm(AsmString); |
Joerg Sonnenberger | 8ce9cca | 2012-08-10 10:57:52 +0000 | [diff] [blame] | 2952 | else if (S.end()[-1] == '\n') |
Chris Lattner | 9f5bff0 | 2011-07-23 20:04:25 +0000 | [diff] [blame] | 2953 | getModule().setModuleInlineAsm(S + AsmString.str()); |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2954 | else |
Benjamin Kramer | 8d04258 | 2009-12-11 13:33:18 +0000 | [diff] [blame] | 2955 | getModule().setModuleInlineAsm(S + '\n' + AsmString.str()); |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2956 | break; |
| 2957 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2958 | |
Douglas Gregor | b6cbe51 | 2013-01-14 17:21:00 +0000 | [diff] [blame] | 2959 | case Decl::Import: { |
| 2960 | ImportDecl *Import = cast<ImportDecl>(D); |
| 2961 | |
| 2962 | // Ignore import declarations that come from imported modules. |
| 2963 | if (clang::Module *Owner = Import->getOwningModule()) { |
| 2964 | if (getLangOpts().CurrentModule.empty() || |
| 2965 | Owner->getTopLevelModule()->Name == getLangOpts().CurrentModule) |
| 2966 | break; |
| 2967 | } |
| 2968 | |
Douglas Gregor | 858afb3 | 2013-01-14 20:53:57 +0000 | [diff] [blame] | 2969 | ImportedModules.insert(Import->getImportedModule()); |
Douglas Gregor | b6cbe51 | 2013-01-14 17:21:00 +0000 | [diff] [blame] | 2970 | break; |
| 2971 | } |
| 2972 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2973 | default: |
Mike Stump | f5408fe | 2009-05-16 07:57:57 +0000 | [diff] [blame] | 2974 | // Make sure we handled everything we should, every other kind is a |
| 2975 | // non-top-level decl. FIXME: Would be nice to have an isTopLevelDeclKind |
| 2976 | // function. Need to recode Decl::Kind to do that easily. |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 2977 | assert(isa<TypeDecl>(D) && "Unsupported decl kind"); |
| 2978 | } |
| 2979 | } |
John McCall | 744016d | 2010-07-06 23:57:41 +0000 | [diff] [blame] | 2980 | |
| 2981 | /// Turns the given pointer into a constant. |
| 2982 | static llvm::Constant *GetPointerConstant(llvm::LLVMContext &Context, |
| 2983 | const void *Ptr) { |
| 2984 | uintptr_t PtrInt = reinterpret_cast<uintptr_t>(Ptr); |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 2985 | llvm::Type *i64 = llvm::Type::getInt64Ty(Context); |
John McCall | 744016d | 2010-07-06 23:57:41 +0000 | [diff] [blame] | 2986 | return llvm::ConstantInt::get(i64, PtrInt); |
| 2987 | } |
| 2988 | |
| 2989 | static void EmitGlobalDeclMetadata(CodeGenModule &CGM, |
| 2990 | llvm::NamedMDNode *&GlobalMetadata, |
| 2991 | GlobalDecl D, |
| 2992 | llvm::GlobalValue *Addr) { |
| 2993 | if (!GlobalMetadata) |
| 2994 | GlobalMetadata = |
| 2995 | CGM.getModule().getOrInsertNamedMetadata("clang.global.decl.ptrs"); |
| 2996 | |
| 2997 | // TODO: should we report variant information for ctors/dtors? |
| 2998 | llvm::Value *Ops[] = { |
| 2999 | Addr, |
| 3000 | GetPointerConstant(CGM.getLLVMContext(), D.getDecl()) |
| 3001 | }; |
Jay Foad | 6f14165 | 2011-04-21 19:59:12 +0000 | [diff] [blame] | 3002 | GlobalMetadata->addOperand(llvm::MDNode::get(CGM.getLLVMContext(), Ops)); |
John McCall | 744016d | 2010-07-06 23:57:41 +0000 | [diff] [blame] | 3003 | } |
| 3004 | |
Richard Smith | 0024937 | 2013-04-06 05:00:46 +0000 | [diff] [blame] | 3005 | /// For each function which is declared within an extern "C" region and marked |
| 3006 | /// as 'used', but has internal linkage, create an alias from the unmangled |
| 3007 | /// name to the mangled name if possible. People expect to be able to refer |
| 3008 | /// to such functions with an unmangled name from inline assembly within the |
| 3009 | /// same translation unit. |
| 3010 | void CodeGenModule::EmitStaticExternCAliases() { |
Richard Smith | 84083b7 | 2013-04-13 01:28:18 +0000 | [diff] [blame] | 3011 | for (StaticExternCMap::iterator I = StaticExternCValues.begin(), |
| 3012 | E = StaticExternCValues.end(); |
| 3013 | I != E; ++I) { |
| 3014 | IdentifierInfo *Name = I->first; |
| 3015 | llvm::GlobalValue *Val = I->second; |
Richard Smith | 6797204 | 2013-04-06 07:07:44 +0000 | [diff] [blame] | 3016 | if (Val && !getModule().getNamedValue(Name->getName())) |
| 3017 | AddUsedGlobal(new llvm::GlobalAlias(Val->getType(), Val->getLinkage(), |
| 3018 | Name->getName(), Val, &getModule())); |
| 3019 | } |
Richard Smith | 0024937 | 2013-04-06 05:00:46 +0000 | [diff] [blame] | 3020 | } |
| 3021 | |
John McCall | 744016d | 2010-07-06 23:57:41 +0000 | [diff] [blame] | 3022 | /// Emits metadata nodes associating all the global values in the |
| 3023 | /// current module with the Decls they came from. This is useful for |
| 3024 | /// projects using IR gen as a subroutine. |
| 3025 | /// |
| 3026 | /// Since there's currently no way to associate an MDNode directly |
| 3027 | /// with an llvm::GlobalValue, we create a global named metadata |
| 3028 | /// with the name 'clang.global.decl.ptrs'. |
| 3029 | void CodeGenModule::EmitDeclMetadata() { |
| 3030 | llvm::NamedMDNode *GlobalMetadata = 0; |
| 3031 | |
| 3032 | // StaticLocalDeclMap |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3033 | for (llvm::DenseMap<GlobalDecl,StringRef>::iterator |
John McCall | 744016d | 2010-07-06 23:57:41 +0000 | [diff] [blame] | 3034 | I = MangledDeclNames.begin(), E = MangledDeclNames.end(); |
| 3035 | I != E; ++I) { |
| 3036 | llvm::GlobalValue *Addr = getModule().getNamedValue(I->second); |
| 3037 | EmitGlobalDeclMetadata(*this, GlobalMetadata, I->first, Addr); |
| 3038 | } |
| 3039 | } |
| 3040 | |
| 3041 | /// Emits metadata nodes for all the local variables in the current |
| 3042 | /// function. |
| 3043 | void CodeGenFunction::EmitDeclMetadata() { |
| 3044 | if (LocalDeclMap.empty()) return; |
| 3045 | |
| 3046 | llvm::LLVMContext &Context = getLLVMContext(); |
| 3047 | |
| 3048 | // Find the unique metadata ID for this name. |
| 3049 | unsigned DeclPtrKind = Context.getMDKindID("clang.decl.ptr"); |
| 3050 | |
| 3051 | llvm::NamedMDNode *GlobalMetadata = 0; |
| 3052 | |
| 3053 | for (llvm::DenseMap<const Decl*, llvm::Value*>::iterator |
| 3054 | I = LocalDeclMap.begin(), E = LocalDeclMap.end(); I != E; ++I) { |
| 3055 | const Decl *D = I->first; |
| 3056 | llvm::Value *Addr = I->second; |
| 3057 | |
| 3058 | if (llvm::AllocaInst *Alloca = dyn_cast<llvm::AllocaInst>(Addr)) { |
| 3059 | llvm::Value *DAddr = GetPointerConstant(getLLVMContext(), D); |
Jay Foad | 6f14165 | 2011-04-21 19:59:12 +0000 | [diff] [blame] | 3060 | Alloca->setMetadata(DeclPtrKind, llvm::MDNode::get(Context, DAddr)); |
John McCall | 744016d | 2010-07-06 23:57:41 +0000 | [diff] [blame] | 3061 | } else if (llvm::GlobalValue *GV = dyn_cast<llvm::GlobalValue>(Addr)) { |
| 3062 | GlobalDecl GD = GlobalDecl(cast<VarDecl>(D)); |
| 3063 | EmitGlobalDeclMetadata(CGM, GlobalMetadata, GD, GV); |
| 3064 | } |
| 3065 | } |
| 3066 | } |
Daniel Dunbar | 673431a | 2010-07-16 00:00:15 +0000 | [diff] [blame] | 3067 | |
Nick Lewycky | 3dc0541 | 2011-05-05 00:08:20 +0000 | [diff] [blame] | 3068 | void CodeGenModule::EmitCoverageFile() { |
| 3069 | if (!getCodeGenOpts().CoverageFile.empty()) { |
Nick Lewycky | 5ea4f44 | 2011-05-04 20:46:58 +0000 | [diff] [blame] | 3070 | if (llvm::NamedMDNode *CUNode = TheModule.getNamedMetadata("llvm.dbg.cu")) { |
| 3071 | llvm::NamedMDNode *GCov = TheModule.getOrInsertNamedMetadata("llvm.gcov"); |
| 3072 | llvm::LLVMContext &Ctx = TheModule.getContext(); |
Nick Lewycky | 3dc0541 | 2011-05-05 00:08:20 +0000 | [diff] [blame] | 3073 | llvm::MDString *CoverageFile = |
| 3074 | llvm::MDString::get(Ctx, getCodeGenOpts().CoverageFile); |
Nick Lewycky | 5ea4f44 | 2011-05-04 20:46:58 +0000 | [diff] [blame] | 3075 | for (int i = 0, e = CUNode->getNumOperands(); i != e; ++i) { |
| 3076 | llvm::MDNode *CU = CUNode->getOperand(i); |
Nick Lewycky | 3dc0541 | 2011-05-05 00:08:20 +0000 | [diff] [blame] | 3077 | llvm::Value *node[] = { CoverageFile, CU }; |
Nick Lewycky | 5ea4f44 | 2011-05-04 20:46:58 +0000 | [diff] [blame] | 3078 | llvm::MDNode *N = llvm::MDNode::get(Ctx, node); |
| 3079 | GCov->addOperand(N); |
| 3080 | } |
| 3081 | } |
| 3082 | } |
| 3083 | } |
Nico Weber | c5f8046 | 2012-10-11 10:13:44 +0000 | [diff] [blame] | 3084 | |
| 3085 | llvm::Constant *CodeGenModule::EmitUuidofInitializer(StringRef Uuid, |
| 3086 | QualType GuidType) { |
| 3087 | // Sema has checked that all uuid strings are of the form |
| 3088 | // "12345678-1234-1234-1234-1234567890ab". |
| 3089 | assert(Uuid.size() == 36); |
| 3090 | const char *Uuidstr = Uuid.data(); |
| 3091 | for (int i = 0; i < 36; ++i) { |
| 3092 | if (i == 8 || i == 13 || i == 18 || i == 23) assert(Uuidstr[i] == '-'); |
Jordan Rose | 3f6f51e | 2013-02-08 22:30:41 +0000 | [diff] [blame] | 3093 | else assert(isHexDigit(Uuidstr[i])); |
Nico Weber | c5f8046 | 2012-10-11 10:13:44 +0000 | [diff] [blame] | 3094 | } |
| 3095 | |
| 3096 | llvm::APInt Field0(32, StringRef(Uuidstr , 8), 16); |
| 3097 | llvm::APInt Field1(16, StringRef(Uuidstr + 9, 4), 16); |
| 3098 | llvm::APInt Field2(16, StringRef(Uuidstr + 14, 4), 16); |
Nico Weber | 193646f | 2012-10-17 00:34:34 +0000 | [diff] [blame] | 3099 | static const int Field3ValueOffsets[] = { 19, 21, 24, 26, 28, 30, 32, 34 }; |
Nico Weber | c5f8046 | 2012-10-11 10:13:44 +0000 | [diff] [blame] | 3100 | |
| 3101 | APValue InitStruct(APValue::UninitStruct(), /*NumBases=*/0, /*NumFields=*/4); |
| 3102 | InitStruct.getStructField(0) = APValue(llvm::APSInt(Field0)); |
| 3103 | InitStruct.getStructField(1) = APValue(llvm::APSInt(Field1)); |
| 3104 | InitStruct.getStructField(2) = APValue(llvm::APSInt(Field2)); |
| 3105 | APValue& Arr = InitStruct.getStructField(3); |
| 3106 | Arr = APValue(APValue::UninitArray(), 8, 8); |
| 3107 | for (int t = 0; t < 8; ++t) |
Nico Weber | 4308581 | 2012-10-13 21:56:05 +0000 | [diff] [blame] | 3108 | Arr.getArrayInitializedElt(t) = APValue(llvm::APSInt( |
| 3109 | llvm::APInt(8, StringRef(Uuidstr + Field3ValueOffsets[t], 2), 16))); |
Nico Weber | c5f8046 | 2012-10-11 10:13:44 +0000 | [diff] [blame] | 3110 | |
| 3111 | return EmitConstantValue(InitStruct, GuidType); |
| 3112 | } |