Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===--- CGDecl.cpp - Emit LLVM Code for declarations ---------------------===// |
| 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 contains code to emit Decl nodes as LLVM code. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "CodeGenFunction.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 15 | #include "CGDebugInfo.h" |
Peter Collingbourne | 8c25fc5 | 2011-09-19 21:14:35 +0000 | [diff] [blame] | 16 | #include "CGOpenCLRuntime.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 17 | #include "CodeGenModule.h" |
Daniel Dunbar | de7fb84 | 2008-08-11 05:00:27 +0000 | [diff] [blame] | 18 | #include "clang/AST/ASTContext.h" |
Ken Dyck | bdc601b | 2009-12-22 14:23:30 +0000 | [diff] [blame] | 19 | #include "clang/AST/CharUnits.h" |
Daniel Dunbar | c4a1dea | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 20 | #include "clang/AST/Decl.h" |
Anders Carlsson | 19567ee | 2008-08-25 01:38:19 +0000 | [diff] [blame] | 21 | #include "clang/AST/DeclObjC.h" |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 22 | #include "clang/Basic/SourceManager.h" |
Chris Lattner | 2621fd1 | 2008-05-08 05:58:21 +0000 | [diff] [blame] | 23 | #include "clang/Basic/TargetInfo.h" |
Chandler Carruth | 06057ce | 2010-06-15 23:19:56 +0000 | [diff] [blame] | 24 | #include "clang/Frontend/CodeGenOptions.h" |
Chandler Carruth | 3b844ba | 2013-01-02 11:45:17 +0000 | [diff] [blame] | 25 | #include "llvm/IR/DataLayout.h" |
| 26 | #include "llvm/IR/GlobalVariable.h" |
| 27 | #include "llvm/IR/Intrinsics.h" |
| 28 | #include "llvm/IR/Type.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 29 | using namespace clang; |
| 30 | using namespace CodeGen; |
| 31 | |
| 32 | |
| 33 | void CodeGenFunction::EmitDecl(const Decl &D) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 34 | switch (D.getKind()) { |
Douglas Gregor | 08688ac | 2010-04-23 02:02:43 +0000 | [diff] [blame] | 35 | case Decl::TranslationUnit: |
| 36 | case Decl::Namespace: |
| 37 | case Decl::UnresolvedUsingTypename: |
| 38 | case Decl::ClassTemplateSpecialization: |
| 39 | case Decl::ClassTemplatePartialSpecialization: |
| 40 | case Decl::TemplateTypeParm: |
| 41 | case Decl::UnresolvedUsingValue: |
Sean Hunt | 9a55591 | 2010-05-30 07:21:58 +0000 | [diff] [blame] | 42 | case Decl::NonTypeTemplateParm: |
Douglas Gregor | 08688ac | 2010-04-23 02:02:43 +0000 | [diff] [blame] | 43 | case Decl::CXXMethod: |
| 44 | case Decl::CXXConstructor: |
| 45 | case Decl::CXXDestructor: |
| 46 | case Decl::CXXConversion: |
| 47 | case Decl::Field: |
John McCall | 76da55d | 2013-04-16 07:28:30 +0000 | [diff] [blame] | 48 | case Decl::MSProperty: |
Francois Pichet | 41f5e66 | 2010-11-21 06:49:41 +0000 | [diff] [blame] | 49 | case Decl::IndirectField: |
Douglas Gregor | 08688ac | 2010-04-23 02:02:43 +0000 | [diff] [blame] | 50 | case Decl::ObjCIvar: |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 51 | case Decl::ObjCAtDefsField: |
Chris Lattner | aa9fc46 | 2007-10-08 21:37:32 +0000 | [diff] [blame] | 52 | case Decl::ParmVar: |
Douglas Gregor | 08688ac | 2010-04-23 02:02:43 +0000 | [diff] [blame] | 53 | case Decl::ImplicitParam: |
| 54 | case Decl::ClassTemplate: |
| 55 | case Decl::FunctionTemplate: |
Richard Smith | 3e4c6c4 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 56 | case Decl::TypeAliasTemplate: |
Douglas Gregor | 08688ac | 2010-04-23 02:02:43 +0000 | [diff] [blame] | 57 | case Decl::TemplateTemplateParm: |
| 58 | case Decl::ObjCMethod: |
| 59 | case Decl::ObjCCategory: |
| 60 | case Decl::ObjCProtocol: |
| 61 | case Decl::ObjCInterface: |
| 62 | case Decl::ObjCCategoryImpl: |
| 63 | case Decl::ObjCImplementation: |
| 64 | case Decl::ObjCProperty: |
| 65 | case Decl::ObjCCompatibleAlias: |
Abramo Bagnara | 6206d53 | 2010-06-05 05:09:32 +0000 | [diff] [blame] | 66 | case Decl::AccessSpec: |
Douglas Gregor | 08688ac | 2010-04-23 02:02:43 +0000 | [diff] [blame] | 67 | case Decl::LinkageSpec: |
| 68 | case Decl::ObjCPropertyImpl: |
Douglas Gregor | 08688ac | 2010-04-23 02:02:43 +0000 | [diff] [blame] | 69 | case Decl::FileScopeAsm: |
| 70 | case Decl::Friend: |
| 71 | case Decl::FriendTemplate: |
| 72 | case Decl::Block: |
Tareq A. Siraj | 6afcf88 | 2013-04-16 19:37:38 +0000 | [diff] [blame] | 73 | case Decl::Captured: |
Francois Pichet | af0f4d0 | 2011-08-14 03:52:19 +0000 | [diff] [blame] | 74 | case Decl::ClassScopeFunctionSpecialization: |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 75 | llvm_unreachable("Declaration should not be in declstmts!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 76 | case Decl::Function: // void X(); |
Argyrios Kyrtzidis | 35bc082 | 2008-10-15 00:42:39 +0000 | [diff] [blame] | 77 | case Decl::Record: // struct/union/class X; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 78 | case Decl::Enum: // enum X; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 79 | case Decl::EnumConstant: // enum ? { X = ? } |
Argyrios Kyrtzidis | 35bc082 | 2008-10-15 00:42:39 +0000 | [diff] [blame] | 80 | case Decl::CXXRecord: // struct/union/class X; [C++] |
Daniel Dunbar | fa133a1 | 2009-11-23 00:07:06 +0000 | [diff] [blame] | 81 | case Decl::Using: // using X; [C++] |
| 82 | case Decl::UsingShadow: |
Douglas Gregor | 08688ac | 2010-04-23 02:02:43 +0000 | [diff] [blame] | 83 | case Decl::NamespaceAlias: |
Anders Carlsson | 7b0ca3f | 2009-12-03 17:26:31 +0000 | [diff] [blame] | 84 | case Decl::StaticAssert: // static_assert(X, ""); [C++0x] |
Chris Lattner | 4ae493c | 2011-02-18 02:08:43 +0000 | [diff] [blame] | 85 | case Decl::Label: // __label__ x; |
Douglas Gregor | 15de72c | 2011-12-02 23:23:56 +0000 | [diff] [blame] | 86 | case Decl::Import: |
Alexey Bataev | c640058 | 2013-03-22 06:34:35 +0000 | [diff] [blame] | 87 | case Decl::OMPThreadPrivate: |
Michael Han | 684aa73 | 2013-02-22 17:15:32 +0000 | [diff] [blame] | 88 | case Decl::Empty: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 89 | // None of these decls require codegen support. |
| 90 | return; |
David Blaikie | c8c2427 | 2013-02-02 00:39:32 +0000 | [diff] [blame] | 91 | |
David Blaikie | cec3984 | 2013-04-19 07:04:02 +0000 | [diff] [blame^] | 92 | case Decl::UsingDirective: // using namespace X; [C++] |
| 93 | if (CGDebugInfo *DI = getDebugInfo()) |
| 94 | DI->EmitUsingDirective(cast<UsingDirectiveDecl>(D)); |
| 95 | return; |
Daniel Dunbar | 662174c8 | 2008-08-29 17:28:43 +0000 | [diff] [blame] | 96 | case Decl::Var: { |
| 97 | const VarDecl &VD = cast<VarDecl>(D); |
John McCall | b6bbcc9 | 2010-10-15 04:57:14 +0000 | [diff] [blame] | 98 | assert(VD.isLocalVarDecl() && |
Daniel Dunbar | 662174c8 | 2008-08-29 17:28:43 +0000 | [diff] [blame] | 99 | "Should not see file-scope variables inside a function!"); |
John McCall | b6bbcc9 | 2010-10-15 04:57:14 +0000 | [diff] [blame] | 100 | return EmitVarDecl(VD); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 101 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 102 | |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 103 | case Decl::Typedef: // typedef int X; |
| 104 | case Decl::TypeAlias: { // using X = int; [C++0x] |
| 105 | const TypedefNameDecl &TD = cast<TypedefNameDecl>(D); |
Anders Carlsson | fcdbb93 | 2008-12-20 21:51:53 +0000 | [diff] [blame] | 106 | QualType Ty = TD.getUnderlyingType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 107 | |
Anders Carlsson | fcdbb93 | 2008-12-20 21:51:53 +0000 | [diff] [blame] | 108 | if (Ty->isVariablyModifiedType()) |
John McCall | bc8d40d | 2011-06-24 21:55:10 +0000 | [diff] [blame] | 109 | EmitVariablyModifiedType(Ty); |
Anders Carlsson | fcdbb93 | 2008-12-20 21:51:53 +0000 | [diff] [blame] | 110 | } |
Daniel Dunbar | 662174c8 | 2008-08-29 17:28:43 +0000 | [diff] [blame] | 111 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 112 | } |
| 113 | |
John McCall | b6bbcc9 | 2010-10-15 04:57:14 +0000 | [diff] [blame] | 114 | /// EmitVarDecl - This method handles emission of any variable declaration |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 115 | /// inside a function, including static vars etc. |
John McCall | b6bbcc9 | 2010-10-15 04:57:14 +0000 | [diff] [blame] | 116 | void CodeGenFunction::EmitVarDecl(const VarDecl &D) { |
Rafael Espindola | d2615cc | 2013-04-03 19:27:57 +0000 | [diff] [blame] | 117 | switch (D.getStorageClass()) { |
John McCall | d931b08 | 2010-08-26 03:08:43 +0000 | [diff] [blame] | 118 | case SC_None: |
| 119 | case SC_Auto: |
| 120 | case SC_Register: |
John McCall | b6bbcc9 | 2010-10-15 04:57:14 +0000 | [diff] [blame] | 121 | return EmitAutoVarDecl(D); |
John McCall | d931b08 | 2010-08-26 03:08:43 +0000 | [diff] [blame] | 122 | case SC_Static: { |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 123 | llvm::GlobalValue::LinkageTypes Linkage = |
Anders Carlsson | f6b89a1 | 2010-02-07 02:03:08 +0000 | [diff] [blame] | 124 | llvm::GlobalValue::InternalLinkage; |
| 125 | |
John McCall | 8b24233 | 2010-05-25 04:30:21 +0000 | [diff] [blame] | 126 | // If the function definition has some sort of weak linkage, its |
| 127 | // static variables should also be weak so that they get properly |
| 128 | // uniqued. We can't do this in C, though, because there's no |
| 129 | // standard way to agree on which variables are the same (i.e. |
| 130 | // there's no mangling). |
Richard Smith | 7edf9e3 | 2012-11-01 22:30:59 +0000 | [diff] [blame] | 131 | if (getLangOpts().CPlusPlus) |
John McCall | 8b24233 | 2010-05-25 04:30:21 +0000 | [diff] [blame] | 132 | if (llvm::GlobalValue::isWeakForLinker(CurFn->getLinkage())) |
| 133 | Linkage = CurFn->getLinkage(); |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 134 | |
John McCall | b6bbcc9 | 2010-10-15 04:57:14 +0000 | [diff] [blame] | 135 | return EmitStaticVarDecl(D, Linkage); |
Anders Carlsson | f6b89a1 | 2010-02-07 02:03:08 +0000 | [diff] [blame] | 136 | } |
John McCall | d931b08 | 2010-08-26 03:08:43 +0000 | [diff] [blame] | 137 | case SC_Extern: |
| 138 | case SC_PrivateExtern: |
Lauro Ramos Venancio | fea90b8 | 2008-02-16 22:30:38 +0000 | [diff] [blame] | 139 | // Don't emit it now, allow it to be emitted lazily on its first use. |
| 140 | return; |
Peter Collingbourne | 8c25fc5 | 2011-09-19 21:14:35 +0000 | [diff] [blame] | 141 | case SC_OpenCLWorkGroupLocal: |
| 142 | return CGM.getOpenCLRuntime().EmitWorkGroupLocalVarDecl(*this, D); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 143 | } |
Daniel Dunbar | 5466c7b | 2009-04-14 02:25:56 +0000 | [diff] [blame] | 144 | |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 145 | llvm_unreachable("Unknown storage class"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 146 | } |
| 147 | |
Chris Lattner | 761acc1 | 2009-12-05 08:22:11 +0000 | [diff] [blame] | 148 | static std::string GetStaticDeclName(CodeGenFunction &CGF, const VarDecl &D, |
| 149 | const char *Separator) { |
| 150 | CodeGenModule &CGM = CGF.CGM; |
Richard Smith | 7edf9e3 | 2012-11-01 22:30:59 +0000 | [diff] [blame] | 151 | if (CGF.getLangOpts().CPlusPlus) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 152 | StringRef Name = CGM.getMangledName(&D); |
Anders Carlsson | 9a20d55 | 2010-06-22 16:16:50 +0000 | [diff] [blame] | 153 | return Name.str(); |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 154 | } |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 155 | |
Chris Lattner | 761acc1 | 2009-12-05 08:22:11 +0000 | [diff] [blame] | 156 | std::string ContextName; |
Fariborz Jahanian | faa5bfc | 2010-11-30 23:07:14 +0000 | [diff] [blame] | 157 | if (!CGF.CurFuncDecl) { |
| 158 | // Better be in a block declared in global scope. |
| 159 | const NamedDecl *ND = cast<NamedDecl>(&D); |
| 160 | const DeclContext *DC = ND->getDeclContext(); |
| 161 | if (const BlockDecl *BD = dyn_cast<BlockDecl>(DC)) { |
| 162 | MangleBuffer Name; |
Peter Collingbourne | 1411047 | 2011-01-13 18:57:25 +0000 | [diff] [blame] | 163 | CGM.getBlockMangledName(GlobalDecl(), Name, BD); |
Fariborz Jahanian | faa5bfc | 2010-11-30 23:07:14 +0000 | [diff] [blame] | 164 | ContextName = Name.getString(); |
| 165 | } |
| 166 | else |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 167 | llvm_unreachable("Unknown context for block static var decl"); |
Fariborz Jahanian | faa5bfc | 2010-11-30 23:07:14 +0000 | [diff] [blame] | 168 | } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CGF.CurFuncDecl)) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 169 | StringRef Name = CGM.getMangledName(FD); |
Anders Carlsson | 9a20d55 | 2010-06-22 16:16:50 +0000 | [diff] [blame] | 170 | ContextName = Name.str(); |
John McCall | f746aa6 | 2010-03-19 23:29:14 +0000 | [diff] [blame] | 171 | } else if (isa<ObjCMethodDecl>(CGF.CurFuncDecl)) |
Chris Lattner | 761acc1 | 2009-12-05 08:22:11 +0000 | [diff] [blame] | 172 | ContextName = CGF.CurFn->getName(); |
| 173 | else |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 174 | llvm_unreachable("Unknown context for static var decl"); |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 175 | |
Chris Lattner | 761acc1 | 2009-12-05 08:22:11 +0000 | [diff] [blame] | 176 | return ContextName + Separator + D.getNameAsString(); |
| 177 | } |
| 178 | |
Chandler Carruth | 0f30a12 | 2012-03-30 19:44:53 +0000 | [diff] [blame] | 179 | llvm::GlobalVariable * |
John McCall | b6bbcc9 | 2010-10-15 04:57:14 +0000 | [diff] [blame] | 180 | CodeGenFunction::CreateStaticVarDecl(const VarDecl &D, |
| 181 | const char *Separator, |
| 182 | llvm::GlobalValue::LinkageTypes Linkage) { |
Chris Lattner | 8bcfc5b | 2008-04-06 23:10:54 +0000 | [diff] [blame] | 183 | QualType Ty = D.getType(); |
Eli Friedman | 3c2b317 | 2008-02-15 12:20:59 +0000 | [diff] [blame] | 184 | assert(Ty->isConstantSizeType() && "VLAs can't be static"); |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 185 | |
Benjamin Kramer | 5c247db | 2011-11-20 21:05:04 +0000 | [diff] [blame] | 186 | // Use the label if the variable is renamed with the asm-label extension. |
| 187 | std::string Name; |
Benjamin Kramer | c3c8f22 | 2011-11-21 15:47:23 +0000 | [diff] [blame] | 188 | if (D.hasAttr<AsmLabelAttr>()) |
| 189 | Name = CGM.getMangledName(&D); |
| 190 | else |
Benjamin Kramer | 5c247db | 2011-11-20 21:05:04 +0000 | [diff] [blame] | 191 | Name = GetStaticDeclName(*this, D, Separator); |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 192 | |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 193 | llvm::Type *LTy = CGM.getTypes().ConvertTypeForMem(Ty); |
Peter Collingbourne | 1aba778 | 2012-08-28 20:37:10 +0000 | [diff] [blame] | 194 | unsigned AddrSpace = |
| 195 | CGM.GetGlobalVarAddressSpace(&D, CGM.getContext().getTargetAddressSpace(Ty)); |
Anders Carlsson | 41f8a13 | 2009-09-26 18:16:06 +0000 | [diff] [blame] | 196 | llvm::GlobalVariable *GV = |
| 197 | new llvm::GlobalVariable(CGM.getModule(), LTy, |
| 198 | Ty.isConstant(getContext()), Linkage, |
Hans Wennborg | de981f3 | 2012-06-28 08:01:44 +0000 | [diff] [blame] | 199 | CGM.EmitNullConstant(D.getType()), Name, 0, |
| 200 | llvm::GlobalVariable::NotThreadLocal, |
Peter Collingbourne | 1aba778 | 2012-08-28 20:37:10 +0000 | [diff] [blame] | 201 | AddrSpace); |
Ken Dyck | 8b752f1 | 2010-01-27 17:10:57 +0000 | [diff] [blame] | 202 | GV->setAlignment(getContext().getDeclAlign(&D).getQuantity()); |
John McCall | 112c967 | 2010-11-02 21:04:24 +0000 | [diff] [blame] | 203 | if (Linkage != llvm::GlobalValue::InternalLinkage) |
| 204 | GV->setVisibility(CurFn->getVisibility()); |
Hans Wennborg | de981f3 | 2012-06-28 08:01:44 +0000 | [diff] [blame] | 205 | |
Richard Smith | 38afbc7 | 2013-04-13 02:43:54 +0000 | [diff] [blame] | 206 | if (D.getTLSKind()) |
Hans Wennborg | de981f3 | 2012-06-28 08:01:44 +0000 | [diff] [blame] | 207 | CGM.setTLSMode(GV, D); |
| 208 | |
Anders Carlsson | 41f8a13 | 2009-09-26 18:16:06 +0000 | [diff] [blame] | 209 | return GV; |
Daniel Dunbar | 0096acf | 2009-02-25 19:24:29 +0000 | [diff] [blame] | 210 | } |
| 211 | |
Richard Smith | 7ca4850 | 2012-02-13 22:16:19 +0000 | [diff] [blame] | 212 | /// hasNontrivialDestruction - Determine whether a type's destruction is |
| 213 | /// non-trivial. If so, and the variable uses static initialization, we must |
| 214 | /// register its destructor to run on exit. |
| 215 | static bool hasNontrivialDestruction(QualType T) { |
| 216 | CXXRecordDecl *RD = T->getBaseElementTypeUnsafe()->getAsCXXRecordDecl(); |
| 217 | return RD && !RD->hasTrivialDestructor(); |
| 218 | } |
| 219 | |
Chandler Carruth | 0f30a12 | 2012-03-30 19:44:53 +0000 | [diff] [blame] | 220 | /// AddInitializerToStaticVarDecl - Add the initializer for 'D' to the |
| 221 | /// global variable that has already been created for it. If the initializer |
| 222 | /// has a different type than GV does, this may free GV and return a different |
| 223 | /// one. Otherwise it just returns GV. |
| 224 | llvm::GlobalVariable * |
John McCall | b6bbcc9 | 2010-10-15 04:57:14 +0000 | [diff] [blame] | 225 | CodeGenFunction::AddInitializerToStaticVarDecl(const VarDecl &D, |
Chandler Carruth | 0f30a12 | 2012-03-30 19:44:53 +0000 | [diff] [blame] | 226 | llvm::GlobalVariable *GV) { |
| 227 | llvm::Constant *Init = CGM.EmitConstantInit(D, this); |
John McCall | bf40cb5 | 2010-07-15 23:40:35 +0000 | [diff] [blame] | 228 | |
Chris Lattner | 761acc1 | 2009-12-05 08:22:11 +0000 | [diff] [blame] | 229 | // If constant emission failed, then this should be a C++ static |
| 230 | // initializer. |
Chandler Carruth | 0f30a12 | 2012-03-30 19:44:53 +0000 | [diff] [blame] | 231 | if (!Init) { |
Richard Smith | 7edf9e3 | 2012-11-01 22:30:59 +0000 | [diff] [blame] | 232 | if (!getLangOpts().CPlusPlus) |
Chris Lattner | 761acc1 | 2009-12-05 08:22:11 +0000 | [diff] [blame] | 233 | CGM.ErrorUnsupported(D.getInit(), "constant l-value expression"); |
John McCall | 5cd91b5 | 2010-09-08 01:44:27 +0000 | [diff] [blame] | 234 | else if (Builder.GetInsertBlock()) { |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 235 | // Since we have a static initializer, this global variable can't |
Anders Carlsson | 071c810 | 2010-01-26 04:02:23 +0000 | [diff] [blame] | 236 | // be constant. |
Chandler Carruth | 0f30a12 | 2012-03-30 19:44:53 +0000 | [diff] [blame] | 237 | GV->setConstant(false); |
John McCall | 5cd91b5 | 2010-09-08 01:44:27 +0000 | [diff] [blame] | 238 | |
Chandler Carruth | 0f30a12 | 2012-03-30 19:44:53 +0000 | [diff] [blame] | 239 | EmitCXXGuardedInit(D, GV, /*PerformInit*/true); |
Anders Carlsson | 071c810 | 2010-01-26 04:02:23 +0000 | [diff] [blame] | 240 | } |
Chandler Carruth | 0f30a12 | 2012-03-30 19:44:53 +0000 | [diff] [blame] | 241 | return GV; |
Chris Lattner | 761acc1 | 2009-12-05 08:22:11 +0000 | [diff] [blame] | 242 | } |
John McCall | bf40cb5 | 2010-07-15 23:40:35 +0000 | [diff] [blame] | 243 | |
Chris Lattner | 761acc1 | 2009-12-05 08:22:11 +0000 | [diff] [blame] | 244 | // The initializer may differ in type from the global. Rewrite |
| 245 | // the global to match the initializer. (We have to do this |
| 246 | // because some types, like unions, can't be completely represented |
| 247 | // in the LLVM type system.) |
Chandler Carruth | 0f30a12 | 2012-03-30 19:44:53 +0000 | [diff] [blame] | 248 | if (GV->getType()->getElementType() != Init->getType()) { |
| 249 | llvm::GlobalVariable *OldGV = GV; |
| 250 | |
| 251 | GV = new llvm::GlobalVariable(CGM.getModule(), Init->getType(), |
| 252 | OldGV->isConstant(), |
| 253 | OldGV->getLinkage(), Init, "", |
| 254 | /*InsertBefore*/ OldGV, |
Hans Wennborg | 5e2d5de | 2012-06-23 11:51:46 +0000 | [diff] [blame] | 255 | OldGV->getThreadLocalMode(), |
Chandler Carruth | 0f30a12 | 2012-03-30 19:44:53 +0000 | [diff] [blame] | 256 | CGM.getContext().getTargetAddressSpace(D.getType())); |
| 257 | GV->setVisibility(OldGV->getVisibility()); |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 258 | |
Chris Lattner | 761acc1 | 2009-12-05 08:22:11 +0000 | [diff] [blame] | 259 | // Steal the name of the old global |
Chandler Carruth | 0f30a12 | 2012-03-30 19:44:53 +0000 | [diff] [blame] | 260 | GV->takeName(OldGV); |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 261 | |
Chris Lattner | 761acc1 | 2009-12-05 08:22:11 +0000 | [diff] [blame] | 262 | // Replace all uses of the old global with the new global |
Chandler Carruth | 0f30a12 | 2012-03-30 19:44:53 +0000 | [diff] [blame] | 263 | llvm::Constant *NewPtrForOldDecl = |
| 264 | llvm::ConstantExpr::getBitCast(GV, OldGV->getType()); |
| 265 | OldGV->replaceAllUsesWith(NewPtrForOldDecl); |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 266 | |
Chris Lattner | 761acc1 | 2009-12-05 08:22:11 +0000 | [diff] [blame] | 267 | // Erase the old global, since it is no longer used. |
Chandler Carruth | 0f30a12 | 2012-03-30 19:44:53 +0000 | [diff] [blame] | 268 | OldGV->eraseFromParent(); |
Chris Lattner | 761acc1 | 2009-12-05 08:22:11 +0000 | [diff] [blame] | 269 | } |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 270 | |
Chandler Carruth | 0f30a12 | 2012-03-30 19:44:53 +0000 | [diff] [blame] | 271 | GV->setConstant(CGM.isTypeConstant(D.getType(), true)); |
| 272 | GV->setInitializer(Init); |
Richard Smith | 7ca4850 | 2012-02-13 22:16:19 +0000 | [diff] [blame] | 273 | |
| 274 | if (hasNontrivialDestruction(D.getType())) { |
| 275 | // We have a constant initializer, but a nontrivial destructor. We still |
| 276 | // need to perform a guarded "initialization" in order to register the |
Richard Smith | a9b21d2 | 2012-02-17 06:48:11 +0000 | [diff] [blame] | 277 | // destructor. |
Chandler Carruth | 0f30a12 | 2012-03-30 19:44:53 +0000 | [diff] [blame] | 278 | EmitCXXGuardedInit(D, GV, /*PerformInit*/false); |
Richard Smith | 7ca4850 | 2012-02-13 22:16:19 +0000 | [diff] [blame] | 279 | } |
| 280 | |
Chandler Carruth | 0f30a12 | 2012-03-30 19:44:53 +0000 | [diff] [blame] | 281 | return GV; |
Chris Lattner | 761acc1 | 2009-12-05 08:22:11 +0000 | [diff] [blame] | 282 | } |
| 283 | |
John McCall | b6bbcc9 | 2010-10-15 04:57:14 +0000 | [diff] [blame] | 284 | void CodeGenFunction::EmitStaticVarDecl(const VarDecl &D, |
Anders Carlsson | f6b89a1 | 2010-02-07 02:03:08 +0000 | [diff] [blame] | 285 | llvm::GlobalValue::LinkageTypes Linkage) { |
Chandler Carruth | 0f30a12 | 2012-03-30 19:44:53 +0000 | [diff] [blame] | 286 | llvm::Value *&DMEntry = LocalDeclMap[&D]; |
| 287 | assert(DMEntry == 0 && "Decl already exists in localdeclmap!"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 288 | |
John McCall | 355bba7 | 2012-03-30 21:00:39 +0000 | [diff] [blame] | 289 | // Check to see if we already have a global variable for this |
| 290 | // declaration. This can happen when double-emitting function |
| 291 | // bodies, e.g. with complete and base constructors. |
| 292 | llvm::Constant *addr = |
| 293 | CGM.getStaticLocalDeclAddress(&D); |
| 294 | |
| 295 | llvm::GlobalVariable *var; |
| 296 | if (addr) { |
| 297 | var = cast<llvm::GlobalVariable>(addr->stripPointerCasts()); |
| 298 | } else { |
| 299 | addr = var = CreateStaticVarDecl(D, ".", Linkage); |
| 300 | } |
Daniel Dunbar | a985b31 | 2009-02-25 19:45:19 +0000 | [diff] [blame] | 301 | |
Daniel Dunbar | e5731f8 | 2009-02-25 20:08:33 +0000 | [diff] [blame] | 302 | // Store into LocalDeclMap before generating initializer to handle |
| 303 | // circular references. |
John McCall | 355bba7 | 2012-03-30 21:00:39 +0000 | [diff] [blame] | 304 | DMEntry = addr; |
| 305 | CGM.setStaticLocalDeclAddress(&D, addr); |
Daniel Dunbar | e5731f8 | 2009-02-25 20:08:33 +0000 | [diff] [blame] | 306 | |
John McCall | fe67f3b | 2010-05-04 20:45:42 +0000 | [diff] [blame] | 307 | // We can't have a VLA here, but we can have a pointer to a VLA, |
| 308 | // even though that doesn't really make any sense. |
Eli Friedman | c62aad8 | 2009-04-20 03:54:15 +0000 | [diff] [blame] | 309 | // Make sure to evaluate VLA bounds now so that we have them for later. |
| 310 | if (D.getType()->isVariablyModifiedType()) |
John McCall | bc8d40d | 2011-06-24 21:55:10 +0000 | [diff] [blame] | 311 | EmitVariablyModifiedType(D.getType()); |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 312 | |
John McCall | 355bba7 | 2012-03-30 21:00:39 +0000 | [diff] [blame] | 313 | // Save the type in case adding the initializer forces a type change. |
| 314 | llvm::Type *expectedType = addr->getType(); |
Eli Friedman | c62aad8 | 2009-04-20 03:54:15 +0000 | [diff] [blame] | 315 | |
Chris Lattner | 761acc1 | 2009-12-05 08:22:11 +0000 | [diff] [blame] | 316 | // If this value has an initializer, emit it. |
| 317 | if (D.getInit()) |
John McCall | 355bba7 | 2012-03-30 21:00:39 +0000 | [diff] [blame] | 318 | var = AddInitializerToStaticVarDecl(D, var); |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 319 | |
John McCall | 355bba7 | 2012-03-30 21:00:39 +0000 | [diff] [blame] | 320 | var->setAlignment(getContext().getDeclAlign(&D).getQuantity()); |
Chris Lattner | 0af9523 | 2010-03-10 23:59:59 +0000 | [diff] [blame] | 321 | |
Julien Lerouge | 77f68bb | 2011-09-09 22:41:49 +0000 | [diff] [blame] | 322 | if (D.hasAttr<AnnotateAttr>()) |
John McCall | 355bba7 | 2012-03-30 21:00:39 +0000 | [diff] [blame] | 323 | CGM.AddGlobalAnnotations(&D, var); |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 324 | |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 325 | if (const SectionAttr *SA = D.getAttr<SectionAttr>()) |
John McCall | 355bba7 | 2012-03-30 21:00:39 +0000 | [diff] [blame] | 326 | var->setSection(SA->getName()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 327 | |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 328 | if (D.hasAttr<UsedAttr>()) |
John McCall | 355bba7 | 2012-03-30 21:00:39 +0000 | [diff] [blame] | 329 | CGM.AddUsedGlobal(var); |
Daniel Dunbar | 5c61d97 | 2009-02-13 22:08:43 +0000 | [diff] [blame] | 330 | |
Chandler Carruth | 0f30a12 | 2012-03-30 19:44:53 +0000 | [diff] [blame] | 331 | // We may have to cast the constant because of the initializer |
| 332 | // mismatch above. |
| 333 | // |
| 334 | // FIXME: It is really dangerous to store this in the map; if anyone |
| 335 | // RAUW's the GV uses of this constant will be invalid. |
John McCall | 355bba7 | 2012-03-30 21:00:39 +0000 | [diff] [blame] | 336 | llvm::Constant *castedAddr = llvm::ConstantExpr::getBitCast(var, expectedType); |
| 337 | DMEntry = castedAddr; |
| 338 | CGM.setStaticLocalDeclAddress(&D, castedAddr); |
Sanjiv Gupta | 686226b | 2008-06-05 08:59:10 +0000 | [diff] [blame] | 339 | |
| 340 | // Emit global variable debug descriptor for static vars. |
Anders Carlsson | e896d98 | 2009-02-13 08:11:52 +0000 | [diff] [blame] | 341 | CGDebugInfo *DI = getDebugInfo(); |
Alexey Samsonov | fd00eec | 2012-05-04 07:39:27 +0000 | [diff] [blame] | 342 | if (DI && |
Douglas Gregor | 4cdad31 | 2012-10-23 20:05:01 +0000 | [diff] [blame] | 343 | CGM.getCodeGenOpts().getDebugInfo() >= CodeGenOptions::LimitedDebugInfo) { |
Daniel Dunbar | 66031a5 | 2008-10-17 16:15:48 +0000 | [diff] [blame] | 344 | DI->setLocation(D.getLocation()); |
John McCall | 355bba7 | 2012-03-30 21:00:39 +0000 | [diff] [blame] | 345 | DI->EmitGlobalVariable(var, &D); |
Sanjiv Gupta | 686226b | 2008-06-05 08:59:10 +0000 | [diff] [blame] | 346 | } |
Anders Carlsson | 1a86b33 | 2007-10-17 00:52:43 +0000 | [diff] [blame] | 347 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 348 | |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 349 | namespace { |
John McCall | bdc4d80 | 2011-07-09 01:37:26 +0000 | [diff] [blame] | 350 | struct DestroyObject : EHScopeStack::Cleanup { |
| 351 | DestroyObject(llvm::Value *addr, QualType type, |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 352 | CodeGenFunction::Destroyer *destroyer, |
| 353 | bool useEHCleanupForArray) |
Peter Collingbourne | 516bbd4 | 2012-01-26 03:33:36 +0000 | [diff] [blame] | 354 | : addr(addr), type(type), destroyer(destroyer), |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 355 | useEHCleanupForArray(useEHCleanupForArray) {} |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 356 | |
John McCall | bdc4d80 | 2011-07-09 01:37:26 +0000 | [diff] [blame] | 357 | llvm::Value *addr; |
| 358 | QualType type; |
Peter Collingbourne | 516bbd4 | 2012-01-26 03:33:36 +0000 | [diff] [blame] | 359 | CodeGenFunction::Destroyer *destroyer; |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 360 | bool useEHCleanupForArray; |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 361 | |
John McCall | ad346f4 | 2011-07-12 20:27:29 +0000 | [diff] [blame] | 362 | void Emit(CodeGenFunction &CGF, Flags flags) { |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 363 | // Don't use an EH cleanup recursively from an EH cleanup. |
John McCall | ad346f4 | 2011-07-12 20:27:29 +0000 | [diff] [blame] | 364 | bool useEHCleanupForArray = |
| 365 | flags.isForNormalCleanup() && this->useEHCleanupForArray; |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 366 | |
| 367 | CGF.emitDestroy(addr, type, destroyer, useEHCleanupForArray); |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 368 | } |
| 369 | }; |
| 370 | |
John McCall | bdc4d80 | 2011-07-09 01:37:26 +0000 | [diff] [blame] | 371 | struct DestroyNRVOVariable : EHScopeStack::Cleanup { |
| 372 | DestroyNRVOVariable(llvm::Value *addr, |
| 373 | const CXXDestructorDecl *Dtor, |
| 374 | llvm::Value *NRVOFlag) |
| 375 | : Dtor(Dtor), NRVOFlag(NRVOFlag), Loc(addr) {} |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 376 | |
| 377 | const CXXDestructorDecl *Dtor; |
| 378 | llvm::Value *NRVOFlag; |
| 379 | llvm::Value *Loc; |
| 380 | |
John McCall | ad346f4 | 2011-07-12 20:27:29 +0000 | [diff] [blame] | 381 | void Emit(CodeGenFunction &CGF, Flags flags) { |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 382 | // Along the exceptions path we always execute the dtor. |
John McCall | ad346f4 | 2011-07-12 20:27:29 +0000 | [diff] [blame] | 383 | bool NRVO = flags.isForNormalCleanup() && NRVOFlag; |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 384 | |
| 385 | llvm::BasicBlock *SkipDtorBB = 0; |
| 386 | if (NRVO) { |
| 387 | // If we exited via NRVO, we skip the destructor call. |
| 388 | llvm::BasicBlock *RunDtorBB = CGF.createBasicBlock("nrvo.unused"); |
| 389 | SkipDtorBB = CGF.createBasicBlock("nrvo.skipdtor"); |
| 390 | llvm::Value *DidNRVO = CGF.Builder.CreateLoad(NRVOFlag, "nrvo.val"); |
| 391 | CGF.Builder.CreateCondBr(DidNRVO, SkipDtorBB, RunDtorBB); |
| 392 | CGF.EmitBlock(RunDtorBB); |
| 393 | } |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 394 | |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 395 | CGF.EmitCXXDestructorCall(Dtor, Dtor_Complete, |
Douglas Gregor | 378e1e7 | 2013-01-31 05:50:40 +0000 | [diff] [blame] | 396 | /*ForVirtualBase=*/false, |
| 397 | /*Delegating=*/false, |
| 398 | Loc); |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 399 | |
| 400 | if (NRVO) CGF.EmitBlock(SkipDtorBB); |
| 401 | } |
| 402 | }; |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 403 | |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 404 | struct CallStackRestore : EHScopeStack::Cleanup { |
John McCall | d871509 | 2010-07-21 06:13:08 +0000 | [diff] [blame] | 405 | llvm::Value *Stack; |
| 406 | CallStackRestore(llvm::Value *Stack) : Stack(Stack) {} |
John McCall | ad346f4 | 2011-07-12 20:27:29 +0000 | [diff] [blame] | 407 | void Emit(CodeGenFunction &CGF, Flags flags) { |
Benjamin Kramer | 578faa8 | 2011-09-27 21:06:10 +0000 | [diff] [blame] | 408 | llvm::Value *V = CGF.Builder.CreateLoad(Stack); |
John McCall | d871509 | 2010-07-21 06:13:08 +0000 | [diff] [blame] | 409 | llvm::Value *F = CGF.CGM.getIntrinsic(llvm::Intrinsic::stackrestore); |
| 410 | CGF.Builder.CreateCall(F, V); |
| 411 | } |
| 412 | }; |
| 413 | |
John McCall | 0c24c80 | 2011-06-24 23:21:27 +0000 | [diff] [blame] | 414 | struct ExtendGCLifetime : EHScopeStack::Cleanup { |
| 415 | const VarDecl &Var; |
| 416 | ExtendGCLifetime(const VarDecl *var) : Var(*var) {} |
| 417 | |
John McCall | ad346f4 | 2011-07-12 20:27:29 +0000 | [diff] [blame] | 418 | void Emit(CodeGenFunction &CGF, Flags flags) { |
John McCall | 0c24c80 | 2011-06-24 23:21:27 +0000 | [diff] [blame] | 419 | // Compute the address of the local variable, in case it's a |
| 420 | // byref or something. |
John McCall | f4b88a4 | 2012-03-10 09:33:50 +0000 | [diff] [blame] | 421 | DeclRefExpr DRE(const_cast<VarDecl*>(&Var), false, |
| 422 | Var.getType(), VK_LValue, SourceLocation()); |
John McCall | 0c24c80 | 2011-06-24 23:21:27 +0000 | [diff] [blame] | 423 | llvm::Value *value = CGF.EmitLoadOfScalar(CGF.EmitDeclRefLValue(&DRE)); |
| 424 | CGF.EmitExtendGCLifetime(value); |
| 425 | } |
| 426 | }; |
| 427 | |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 428 | struct CallCleanupFunction : EHScopeStack::Cleanup { |
John McCall | d871509 | 2010-07-21 06:13:08 +0000 | [diff] [blame] | 429 | llvm::Constant *CleanupFn; |
| 430 | const CGFunctionInfo &FnInfo; |
John McCall | d871509 | 2010-07-21 06:13:08 +0000 | [diff] [blame] | 431 | const VarDecl &Var; |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 432 | |
John McCall | d871509 | 2010-07-21 06:13:08 +0000 | [diff] [blame] | 433 | CallCleanupFunction(llvm::Constant *CleanupFn, const CGFunctionInfo *Info, |
John McCall | 3469585 | 2011-02-22 06:44:22 +0000 | [diff] [blame] | 434 | const VarDecl *Var) |
| 435 | : CleanupFn(CleanupFn), FnInfo(*Info), Var(*Var) {} |
John McCall | d871509 | 2010-07-21 06:13:08 +0000 | [diff] [blame] | 436 | |
John McCall | ad346f4 | 2011-07-12 20:27:29 +0000 | [diff] [blame] | 437 | void Emit(CodeGenFunction &CGF, Flags flags) { |
John McCall | f4b88a4 | 2012-03-10 09:33:50 +0000 | [diff] [blame] | 438 | DeclRefExpr DRE(const_cast<VarDecl*>(&Var), false, |
| 439 | Var.getType(), VK_LValue, SourceLocation()); |
John McCall | 3469585 | 2011-02-22 06:44:22 +0000 | [diff] [blame] | 440 | // Compute the address of the local variable, in case it's a byref |
| 441 | // or something. |
| 442 | llvm::Value *Addr = CGF.EmitDeclRefLValue(&DRE).getAddress(); |
| 443 | |
John McCall | d871509 | 2010-07-21 06:13:08 +0000 | [diff] [blame] | 444 | // In some cases, the type of the function argument will be different from |
| 445 | // the type of the pointer. An example of this is |
| 446 | // void f(void* arg); |
| 447 | // __attribute__((cleanup(f))) void *g; |
| 448 | // |
| 449 | // To fix this we insert a bitcast here. |
| 450 | QualType ArgTy = FnInfo.arg_begin()->type; |
| 451 | llvm::Value *Arg = |
| 452 | CGF.Builder.CreateBitCast(Addr, CGF.ConvertType(ArgTy)); |
| 453 | |
| 454 | CallArgList Args; |
Eli Friedman | 04c9a49 | 2011-05-02 17:57:46 +0000 | [diff] [blame] | 455 | Args.add(RValue::get(Arg), |
| 456 | CGF.getContext().getPointerType(Var.getType())); |
John McCall | d871509 | 2010-07-21 06:13:08 +0000 | [diff] [blame] | 457 | CGF.EmitCall(FnInfo, CleanupFn, ReturnValueSlot(), Args); |
| 458 | } |
| 459 | }; |
Nadav Rotem | 495cfa4 | 2013-03-23 06:43:35 +0000 | [diff] [blame] | 460 | |
| 461 | /// A cleanup to call @llvm.lifetime.end. |
| 462 | class CallLifetimeEnd : public EHScopeStack::Cleanup { |
| 463 | llvm::Value *Addr; |
| 464 | llvm::Value *Size; |
| 465 | public: |
| 466 | CallLifetimeEnd(llvm::Value *addr, llvm::Value *size) |
| 467 | : Addr(addr), Size(size) {} |
| 468 | |
| 469 | void Emit(CodeGenFunction &CGF, Flags flags) { |
| 470 | llvm::Value *castAddr = CGF.Builder.CreateBitCast(Addr, CGF.Int8PtrTy); |
| 471 | CGF.Builder.CreateCall2(CGF.CGM.getLLVMLifetimeEndFn(), |
| 472 | Size, castAddr) |
| 473 | ->setDoesNotThrow(); |
| 474 | } |
| 475 | }; |
John McCall | d871509 | 2010-07-21 06:13:08 +0000 | [diff] [blame] | 476 | } |
| 477 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 478 | /// EmitAutoVarWithLifetime - Does the setup required for an automatic |
| 479 | /// variable with lifetime. |
| 480 | static void EmitAutoVarWithLifetime(CodeGenFunction &CGF, const VarDecl &var, |
| 481 | llvm::Value *addr, |
| 482 | Qualifiers::ObjCLifetime lifetime) { |
| 483 | switch (lifetime) { |
| 484 | case Qualifiers::OCL_None: |
| 485 | llvm_unreachable("present but none"); |
| 486 | |
| 487 | case Qualifiers::OCL_ExplicitNone: |
| 488 | // nothing to do |
| 489 | break; |
| 490 | |
| 491 | case Qualifiers::OCL_Strong: { |
Peter Collingbourne | 516bbd4 | 2012-01-26 03:33:36 +0000 | [diff] [blame] | 492 | CodeGenFunction::Destroyer *destroyer = |
John McCall | 9928c48 | 2011-07-12 16:41:08 +0000 | [diff] [blame] | 493 | (var.hasAttr<ObjCPreciseLifetimeAttr>() |
| 494 | ? CodeGenFunction::destroyARCStrongPrecise |
| 495 | : CodeGenFunction::destroyARCStrongImprecise); |
| 496 | |
| 497 | CleanupKind cleanupKind = CGF.getARCCleanupKind(); |
| 498 | CGF.pushDestroy(cleanupKind, addr, var.getType(), destroyer, |
| 499 | cleanupKind & EHCleanup); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 500 | break; |
| 501 | } |
| 502 | case Qualifiers::OCL_Autoreleasing: |
| 503 | // nothing to do |
| 504 | break; |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 505 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 506 | case Qualifiers::OCL_Weak: |
| 507 | // __weak objects always get EH cleanups; otherwise, exceptions |
| 508 | // could cause really nasty crashes instead of mere leaks. |
John McCall | 9928c48 | 2011-07-12 16:41:08 +0000 | [diff] [blame] | 509 | CGF.pushDestroy(NormalAndEHCleanup, addr, var.getType(), |
| 510 | CodeGenFunction::destroyARCWeak, |
| 511 | /*useEHCleanup*/ true); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 512 | break; |
| 513 | } |
| 514 | } |
| 515 | |
| 516 | static bool isAccessedBy(const VarDecl &var, const Stmt *s) { |
| 517 | if (const Expr *e = dyn_cast<Expr>(s)) { |
| 518 | // Skip the most common kinds of expressions that make |
| 519 | // hierarchy-walking expensive. |
| 520 | s = e = e->IgnoreParenCasts(); |
| 521 | |
| 522 | if (const DeclRefExpr *ref = dyn_cast<DeclRefExpr>(e)) |
| 523 | return (ref->getDecl() == &var); |
Fariborz Jahanian | ddfc8a1 | 2012-06-19 20:53:26 +0000 | [diff] [blame] | 524 | if (const BlockExpr *be = dyn_cast<BlockExpr>(e)) { |
| 525 | const BlockDecl *block = be->getBlockDecl(); |
| 526 | for (BlockDecl::capture_const_iterator i = block->capture_begin(), |
| 527 | e = block->capture_end(); i != e; ++i) { |
| 528 | if (i->getVariable() == &var) |
| 529 | return true; |
| 530 | } |
| 531 | } |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 532 | } |
| 533 | |
| 534 | for (Stmt::const_child_range children = s->children(); children; ++children) |
Fariborz Jahanian | 8fefc8e | 2011-06-29 20:00:16 +0000 | [diff] [blame] | 535 | // children might be null; as in missing decl or conditional of an if-stmt. |
| 536 | if ((*children) && isAccessedBy(var, *children)) |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 537 | return true; |
| 538 | |
| 539 | return false; |
| 540 | } |
| 541 | |
| 542 | static bool isAccessedBy(const ValueDecl *decl, const Expr *e) { |
| 543 | if (!decl) return false; |
| 544 | if (!isa<VarDecl>(decl)) return false; |
| 545 | const VarDecl *var = cast<VarDecl>(decl); |
| 546 | return isAccessedBy(*var, e); |
| 547 | } |
| 548 | |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 549 | static void drillIntoBlockVariable(CodeGenFunction &CGF, |
| 550 | LValue &lvalue, |
| 551 | const VarDecl *var) { |
| 552 | lvalue.setAddress(CGF.BuildBlockByrefAddress(lvalue.getAddress(), var)); |
| 553 | } |
| 554 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 555 | void CodeGenFunction::EmitScalarInit(const Expr *init, |
| 556 | const ValueDecl *D, |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 557 | LValue lvalue, |
| 558 | bool capturedByInit) { |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 559 | Qualifiers::ObjCLifetime lifetime = lvalue.getObjCLifetime(); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 560 | if (!lifetime) { |
| 561 | llvm::Value *value = EmitScalarExpr(init); |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 562 | if (capturedByInit) |
| 563 | drillIntoBlockVariable(*this, lvalue, cast<VarDecl>(D)); |
David Chisnall | 7a7ee30 | 2012-01-16 17:27:18 +0000 | [diff] [blame] | 564 | EmitStoreThroughLValue(RValue::get(value), lvalue, true); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 565 | return; |
| 566 | } |
| 567 | |
| 568 | // If we're emitting a value with lifetime, we have to do the |
| 569 | // initialization *before* we leave the cleanup scopes. |
John McCall | 1a343eb | 2011-11-10 08:15:53 +0000 | [diff] [blame] | 570 | if (const ExprWithCleanups *ewc = dyn_cast<ExprWithCleanups>(init)) { |
| 571 | enterFullExpression(ewc); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 572 | init = ewc->getSubExpr(); |
John McCall | 1a343eb | 2011-11-10 08:15:53 +0000 | [diff] [blame] | 573 | } |
| 574 | CodeGenFunction::RunCleanupsScope Scope(*this); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 575 | |
| 576 | // We have to maintain the illusion that the variable is |
| 577 | // zero-initialized. If the variable might be accessed in its |
| 578 | // initializer, zero-initialize before running the initializer, then |
| 579 | // actually perform the initialization with an assign. |
| 580 | bool accessedByInit = false; |
| 581 | if (lifetime != Qualifiers::OCL_ExplicitNone) |
John McCall | fb72081 | 2011-07-28 07:23:35 +0000 | [diff] [blame] | 582 | accessedByInit = (capturedByInit || isAccessedBy(D, init)); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 583 | if (accessedByInit) { |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 584 | LValue tempLV = lvalue; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 585 | // Drill down to the __block object if necessary. |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 586 | if (capturedByInit) { |
| 587 | // We can use a simple GEP for this because it can't have been |
| 588 | // moved yet. |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 589 | tempLV.setAddress(Builder.CreateStructGEP(tempLV.getAddress(), |
| 590 | getByRefValueLLVMField(cast<VarDecl>(D)))); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 591 | } |
| 592 | |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 593 | llvm::PointerType *ty |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 594 | = cast<llvm::PointerType>(tempLV.getAddress()->getType()); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 595 | ty = cast<llvm::PointerType>(ty->getElementType()); |
| 596 | |
| 597 | llvm::Value *zero = llvm::ConstantPointerNull::get(ty); |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 598 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 599 | // If __weak, we want to use a barrier under certain conditions. |
| 600 | if (lifetime == Qualifiers::OCL_Weak) |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 601 | EmitARCInitWeak(tempLV.getAddress(), zero); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 602 | |
| 603 | // Otherwise just do a simple store. |
| 604 | else |
David Chisnall | 7a7ee30 | 2012-01-16 17:27:18 +0000 | [diff] [blame] | 605 | EmitStoreOfScalar(zero, tempLV, /* isInitialization */ true); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 606 | } |
| 607 | |
| 608 | // Emit the initializer. |
| 609 | llvm::Value *value = 0; |
| 610 | |
| 611 | switch (lifetime) { |
| 612 | case Qualifiers::OCL_None: |
| 613 | llvm_unreachable("present but none"); |
| 614 | |
| 615 | case Qualifiers::OCL_ExplicitNone: |
| 616 | // nothing to do |
| 617 | value = EmitScalarExpr(init); |
| 618 | break; |
| 619 | |
| 620 | case Qualifiers::OCL_Strong: { |
| 621 | value = EmitARCRetainScalarExpr(init); |
| 622 | break; |
| 623 | } |
| 624 | |
| 625 | case Qualifiers::OCL_Weak: { |
| 626 | // No way to optimize a producing initializer into this. It's not |
| 627 | // worth optimizing for, because the value will immediately |
| 628 | // disappear in the common case. |
| 629 | value = EmitScalarExpr(init); |
| 630 | |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 631 | if (capturedByInit) drillIntoBlockVariable(*this, lvalue, cast<VarDecl>(D)); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 632 | if (accessedByInit) |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 633 | EmitARCStoreWeak(lvalue.getAddress(), value, /*ignored*/ true); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 634 | else |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 635 | EmitARCInitWeak(lvalue.getAddress(), value); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 636 | return; |
| 637 | } |
| 638 | |
| 639 | case Qualifiers::OCL_Autoreleasing: |
| 640 | value = EmitARCRetainAutoreleaseScalarExpr(init); |
| 641 | break; |
| 642 | } |
| 643 | |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 644 | if (capturedByInit) drillIntoBlockVariable(*this, lvalue, cast<VarDecl>(D)); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 645 | |
| 646 | // If the variable might have been accessed by its initializer, we |
| 647 | // might have to initialize with a barrier. We have to do this for |
| 648 | // both __weak and __strong, but __weak got filtered out above. |
| 649 | if (accessedByInit && lifetime == Qualifiers::OCL_Strong) { |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 650 | llvm::Value *oldValue = EmitLoadOfScalar(lvalue); |
David Chisnall | 7a7ee30 | 2012-01-16 17:27:18 +0000 | [diff] [blame] | 651 | EmitStoreOfScalar(value, lvalue, /* isInitialization */ true); |
John McCall | 5b07e80 | 2013-03-13 03:10:54 +0000 | [diff] [blame] | 652 | EmitARCRelease(oldValue, ARCImpreciseLifetime); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 653 | return; |
| 654 | } |
| 655 | |
David Chisnall | 7a7ee30 | 2012-01-16 17:27:18 +0000 | [diff] [blame] | 656 | EmitStoreOfScalar(value, lvalue, /* isInitialization */ true); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 657 | } |
Chris Lattner | 94cd011 | 2010-12-01 02:05:19 +0000 | [diff] [blame] | 658 | |
John McCall | 7acddac | 2011-06-17 06:42:21 +0000 | [diff] [blame] | 659 | /// EmitScalarInit - Initialize the given lvalue with the given object. |
| 660 | void CodeGenFunction::EmitScalarInit(llvm::Value *init, LValue lvalue) { |
| 661 | Qualifiers::ObjCLifetime lifetime = lvalue.getObjCLifetime(); |
| 662 | if (!lifetime) |
David Chisnall | 7a7ee30 | 2012-01-16 17:27:18 +0000 | [diff] [blame] | 663 | return EmitStoreThroughLValue(RValue::get(init), lvalue, true); |
John McCall | 7acddac | 2011-06-17 06:42:21 +0000 | [diff] [blame] | 664 | |
| 665 | switch (lifetime) { |
| 666 | case Qualifiers::OCL_None: |
| 667 | llvm_unreachable("present but none"); |
| 668 | |
| 669 | case Qualifiers::OCL_ExplicitNone: |
| 670 | // nothing to do |
| 671 | break; |
| 672 | |
| 673 | case Qualifiers::OCL_Strong: |
| 674 | init = EmitARCRetain(lvalue.getType(), init); |
| 675 | break; |
| 676 | |
| 677 | case Qualifiers::OCL_Weak: |
| 678 | // Initialize and then skip the primitive store. |
| 679 | EmitARCInitWeak(lvalue.getAddress(), init); |
| 680 | return; |
| 681 | |
| 682 | case Qualifiers::OCL_Autoreleasing: |
| 683 | init = EmitARCRetainAutorelease(lvalue.getType(), init); |
| 684 | break; |
| 685 | } |
| 686 | |
David Chisnall | 7a7ee30 | 2012-01-16 17:27:18 +0000 | [diff] [blame] | 687 | EmitStoreOfScalar(init, lvalue, /* isInitialization */ true); |
John McCall | 7acddac | 2011-06-17 06:42:21 +0000 | [diff] [blame] | 688 | } |
| 689 | |
Chris Lattner | 94cd011 | 2010-12-01 02:05:19 +0000 | [diff] [blame] | 690 | /// canEmitInitWithFewStoresAfterMemset - Decide whether we can emit the |
| 691 | /// non-zero parts of the specified initializer with equal or fewer than |
| 692 | /// NumStores scalar stores. |
| 693 | static bool canEmitInitWithFewStoresAfterMemset(llvm::Constant *Init, |
| 694 | unsigned &NumStores) { |
Chris Lattner | 70b0294 | 2010-12-02 01:58:41 +0000 | [diff] [blame] | 695 | // Zero and Undef never requires any extra stores. |
| 696 | if (isa<llvm::ConstantAggregateZero>(Init) || |
| 697 | isa<llvm::ConstantPointerNull>(Init) || |
| 698 | isa<llvm::UndefValue>(Init)) |
| 699 | return true; |
| 700 | if (isa<llvm::ConstantInt>(Init) || isa<llvm::ConstantFP>(Init) || |
| 701 | isa<llvm::ConstantVector>(Init) || isa<llvm::BlockAddress>(Init) || |
| 702 | isa<llvm::ConstantExpr>(Init)) |
| 703 | return Init->isNullValue() || NumStores--; |
| 704 | |
| 705 | // See if we can emit each element. |
| 706 | if (isa<llvm::ConstantArray>(Init) || isa<llvm::ConstantStruct>(Init)) { |
| 707 | for (unsigned i = 0, e = Init->getNumOperands(); i != e; ++i) { |
| 708 | llvm::Constant *Elt = cast<llvm::Constant>(Init->getOperand(i)); |
| 709 | if (!canEmitInitWithFewStoresAfterMemset(Elt, NumStores)) |
| 710 | return false; |
| 711 | } |
| 712 | return true; |
| 713 | } |
Chris Lattner | f492cb1 | 2012-01-31 04:36:19 +0000 | [diff] [blame] | 714 | |
| 715 | if (llvm::ConstantDataSequential *CDS = |
| 716 | dyn_cast<llvm::ConstantDataSequential>(Init)) { |
| 717 | for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) { |
| 718 | llvm::Constant *Elt = CDS->getElementAsConstant(i); |
| 719 | if (!canEmitInitWithFewStoresAfterMemset(Elt, NumStores)) |
| 720 | return false; |
| 721 | } |
| 722 | return true; |
| 723 | } |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 724 | |
Chris Lattner | 94cd011 | 2010-12-01 02:05:19 +0000 | [diff] [blame] | 725 | // Anything else is hard and scary. |
| 726 | return false; |
| 727 | } |
| 728 | |
| 729 | /// emitStoresForInitAfterMemset - For inits that |
| 730 | /// canEmitInitWithFewStoresAfterMemset returned true for, emit the scalar |
| 731 | /// stores that would be required. |
| 732 | static void emitStoresForInitAfterMemset(llvm::Constant *Init, llvm::Value *Loc, |
John McCall | 3469585 | 2011-02-22 06:44:22 +0000 | [diff] [blame] | 733 | bool isVolatile, CGBuilderTy &Builder) { |
Benjamin Kramer | 06d4368 | 2012-08-27 22:07:02 +0000 | [diff] [blame] | 734 | assert(!Init->isNullValue() && !isa<llvm::UndefValue>(Init) && |
| 735 | "called emitStoresForInitAfterMemset for zero or undef value."); |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 736 | |
Chris Lattner | 70b0294 | 2010-12-02 01:58:41 +0000 | [diff] [blame] | 737 | if (isa<llvm::ConstantInt>(Init) || isa<llvm::ConstantFP>(Init) || |
| 738 | isa<llvm::ConstantVector>(Init) || isa<llvm::BlockAddress>(Init) || |
| 739 | isa<llvm::ConstantExpr>(Init)) { |
Chris Lattner | f492cb1 | 2012-01-31 04:36:19 +0000 | [diff] [blame] | 740 | Builder.CreateStore(Init, Loc, isVolatile); |
| 741 | return; |
| 742 | } |
| 743 | |
| 744 | if (llvm::ConstantDataSequential *CDS = |
| 745 | dyn_cast<llvm::ConstantDataSequential>(Init)) { |
| 746 | for (unsigned i = 0, e = CDS->getNumElements(); i != e; ++i) { |
| 747 | llvm::Constant *Elt = CDS->getElementAsConstant(i); |
Benjamin Kramer | cfa07e3 | 2012-08-27 21:35:58 +0000 | [diff] [blame] | 748 | |
| 749 | // If necessary, get a pointer to the element and emit it. |
| 750 | if (!Elt->isNullValue() && !isa<llvm::UndefValue>(Elt)) |
| 751 | emitStoresForInitAfterMemset(Elt, Builder.CreateConstGEP2_32(Loc, 0, i), |
| 752 | isVolatile, Builder); |
Chris Lattner | f492cb1 | 2012-01-31 04:36:19 +0000 | [diff] [blame] | 753 | } |
Chris Lattner | 70b0294 | 2010-12-02 01:58:41 +0000 | [diff] [blame] | 754 | return; |
| 755 | } |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 756 | |
Chris Lattner | 70b0294 | 2010-12-02 01:58:41 +0000 | [diff] [blame] | 757 | assert((isa<llvm::ConstantStruct>(Init) || isa<llvm::ConstantArray>(Init)) && |
| 758 | "Unknown value type!"); |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 759 | |
Chris Lattner | 70b0294 | 2010-12-02 01:58:41 +0000 | [diff] [blame] | 760 | for (unsigned i = 0, e = Init->getNumOperands(); i != e; ++i) { |
| 761 | llvm::Constant *Elt = cast<llvm::Constant>(Init->getOperand(i)); |
Benjamin Kramer | cfa07e3 | 2012-08-27 21:35:58 +0000 | [diff] [blame] | 762 | |
| 763 | // If necessary, get a pointer to the element and emit it. |
| 764 | if (!Elt->isNullValue() && !isa<llvm::UndefValue>(Elt)) |
| 765 | emitStoresForInitAfterMemset(Elt, Builder.CreateConstGEP2_32(Loc, 0, i), |
| 766 | isVolatile, Builder); |
Chris Lattner | 70b0294 | 2010-12-02 01:58:41 +0000 | [diff] [blame] | 767 | } |
Chris Lattner | 94cd011 | 2010-12-01 02:05:19 +0000 | [diff] [blame] | 768 | } |
| 769 | |
| 770 | |
| 771 | /// shouldUseMemSetPlusStoresToInitialize - Decide whether we should use memset |
| 772 | /// plus some stores to initialize a local variable instead of using a memcpy |
| 773 | /// from a constant global. It is beneficial to use memset if the global is all |
| 774 | /// zeros, or mostly zeros and large. |
| 775 | static bool shouldUseMemSetPlusStoresToInitialize(llvm::Constant *Init, |
| 776 | uint64_t GlobalSize) { |
| 777 | // If a global is all zeros, always use a memset. |
| 778 | if (isa<llvm::ConstantAggregateZero>(Init)) return true; |
| 779 | |
Chris Lattner | 94cd011 | 2010-12-01 02:05:19 +0000 | [diff] [blame] | 780 | // If a non-zero global is <= 32 bytes, always use a memcpy. If it is large, |
| 781 | // do it if it will require 6 or fewer scalar stores. |
| 782 | // TODO: Should budget depends on the size? Avoiding a large global warrants |
| 783 | // plopping in more stores. |
| 784 | unsigned StoreBudget = 6; |
| 785 | uint64_t SizeLimit = 32; |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 786 | |
| 787 | return GlobalSize > SizeLimit && |
Chris Lattner | 94cd011 | 2010-12-01 02:05:19 +0000 | [diff] [blame] | 788 | canEmitInitWithFewStoresAfterMemset(Init, StoreBudget); |
| 789 | } |
| 790 | |
Nadav Rotem | 495cfa4 | 2013-03-23 06:43:35 +0000 | [diff] [blame] | 791 | /// Should we use the LLVM lifetime intrinsics for the given local variable? |
| 792 | static bool shouldUseLifetimeMarkers(CodeGenFunction &CGF, const VarDecl &D, |
| 793 | unsigned Size) { |
Alexey Samsonov | 4f01ed4 | 2013-04-02 13:19:46 +0000 | [diff] [blame] | 794 | // Always emit lifetime markers in -fsanitize=use-after-scope mode. |
| 795 | if (CGF.getLangOpts().Sanitize.UseAfterScope) |
| 796 | return true; |
Nadav Rotem | 495cfa4 | 2013-03-23 06:43:35 +0000 | [diff] [blame] | 797 | // For now, only in optimized builds. |
| 798 | if (CGF.CGM.getCodeGenOpts().OptimizationLevel == 0) |
| 799 | return false; |
| 800 | |
| 801 | // Limit the size of marked objects to 32 bytes. We don't want to increase |
| 802 | // compile time by marking tiny objects. |
| 803 | unsigned SizeThreshold = 32; |
| 804 | |
| 805 | return Size > SizeThreshold; |
| 806 | } |
| 807 | |
Chris Lattner | 94cd011 | 2010-12-01 02:05:19 +0000 | [diff] [blame] | 808 | |
Nick Lewycky | a9de3fa | 2010-12-30 20:21:55 +0000 | [diff] [blame] | 809 | /// EmitAutoVarDecl - Emit code and set up an entry in LocalDeclMap for a |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 810 | /// variable declaration with auto, register, or no storage class specifier. |
Chris Lattner | 2621fd1 | 2008-05-08 05:58:21 +0000 | [diff] [blame] | 811 | /// These turn into simple stack objects, or GlobalValues depending on target. |
John McCall | 3469585 | 2011-02-22 06:44:22 +0000 | [diff] [blame] | 812 | void CodeGenFunction::EmitAutoVarDecl(const VarDecl &D) { |
| 813 | AutoVarEmission emission = EmitAutoVarAlloca(D); |
| 814 | EmitAutoVarInit(emission); |
| 815 | EmitAutoVarCleanups(emission); |
| 816 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 817 | |
John McCall | 3469585 | 2011-02-22 06:44:22 +0000 | [diff] [blame] | 818 | /// EmitAutoVarAlloca - Emit the alloca and debug information for a |
| 819 | /// local variable. Does not emit initalization or destruction. |
| 820 | CodeGenFunction::AutoVarEmission |
| 821 | CodeGenFunction::EmitAutoVarAlloca(const VarDecl &D) { |
| 822 | QualType Ty = D.getType(); |
| 823 | |
| 824 | AutoVarEmission emission(D); |
| 825 | |
| 826 | bool isByRef = D.hasAttr<BlocksAttr>(); |
| 827 | emission.IsByRef = isByRef; |
| 828 | |
| 829 | CharUnits alignment = getContext().getDeclAlign(&D); |
| 830 | emission.Alignment = alignment; |
| 831 | |
John McCall | bc8d40d | 2011-06-24 21:55:10 +0000 | [diff] [blame] | 832 | // If the type is variably-modified, emit all the VLA sizes for it. |
| 833 | if (Ty->isVariablyModifiedType()) |
| 834 | EmitVariablyModifiedType(Ty); |
| 835 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 836 | llvm::Value *DeclPtr; |
Eli Friedman | 3c2b317 | 2008-02-15 12:20:59 +0000 | [diff] [blame] | 837 | if (Ty->isConstantSizeType()) { |
Rafael Espindola | 6c82fc6 | 2013-03-26 18:41:47 +0000 | [diff] [blame] | 838 | bool NRVO = getLangOpts().ElideConstructors && |
| 839 | D.isNRVOVariable(); |
John McCall | 3469585 | 2011-02-22 06:44:22 +0000 | [diff] [blame] | 840 | |
Rafael Espindola | 6c82fc6 | 2013-03-26 18:41:47 +0000 | [diff] [blame] | 841 | // If this value is a POD array or struct with a statically |
| 842 | // determinable constant initializer, there are optimizations we can do. |
| 843 | // |
| 844 | // TODO: We should constant-evaluate the initializer of any variable, |
| 845 | // as long as it is initialized by a constant expression. Currently, |
| 846 | // isConstantInitializer produces wrong answers for structs with |
| 847 | // reference or bitfield members, and a few other cases, and checking |
| 848 | // for POD-ness protects us from some of these. |
| 849 | if (D.getInit() && |
| 850 | (Ty->isArrayType() || Ty->isRecordType()) && |
| 851 | (Ty.isPODType(getContext()) || |
| 852 | getContext().getBaseElementType(Ty)->isObjCObjectPointerType()) && |
| 853 | D.getInit()->isConstantInitializer(getContext(), false)) { |
John McCall | 3469585 | 2011-02-22 06:44:22 +0000 | [diff] [blame] | 854 | |
Rafael Espindola | 6c82fc6 | 2013-03-26 18:41:47 +0000 | [diff] [blame] | 855 | // If the variable's a const type, and it's neither an NRVO |
| 856 | // candidate nor a __block variable and has no mutable members, |
| 857 | // emit it as a global instead. |
| 858 | if (CGM.getCodeGenOpts().MergeAllConstants && !NRVO && !isByRef && |
| 859 | CGM.isTypeConstant(Ty, true)) { |
| 860 | EmitStaticVarDecl(D, llvm::GlobalValue::InternalLinkage); |
John McCall | 3469585 | 2011-02-22 06:44:22 +0000 | [diff] [blame] | 861 | |
Rafael Espindola | 6c82fc6 | 2013-03-26 18:41:47 +0000 | [diff] [blame] | 862 | emission.Address = 0; // signal this condition to later callbacks |
| 863 | assert(emission.wasEmittedAsGlobal()); |
| 864 | return emission; |
Tanya Lattner | 59876c2 | 2009-11-04 01:18:09 +0000 | [diff] [blame] | 865 | } |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 866 | |
Rafael Espindola | 6c82fc6 | 2013-03-26 18:41:47 +0000 | [diff] [blame] | 867 | // Otherwise, tell the initialization code that we're in this case. |
| 868 | emission.IsConstantAggregate = true; |
| 869 | } |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 870 | |
Rafael Espindola | 6c82fc6 | 2013-03-26 18:41:47 +0000 | [diff] [blame] | 871 | // A normal fixed sized variable becomes an alloca in the entry block, |
| 872 | // unless it's an NRVO variable. |
| 873 | llvm::Type *LTy = ConvertTypeForMem(Ty); |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 874 | |
Rafael Espindola | 6c82fc6 | 2013-03-26 18:41:47 +0000 | [diff] [blame] | 875 | if (NRVO) { |
| 876 | // The named return value optimization: allocate this variable in the |
| 877 | // return slot, so that we can elide the copy when returning this |
| 878 | // variable (C++0x [class.copy]p34). |
| 879 | DeclPtr = ReturnValue; |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 880 | |
Rafael Espindola | 6c82fc6 | 2013-03-26 18:41:47 +0000 | [diff] [blame] | 881 | if (const RecordType *RecordTy = Ty->getAs<RecordType>()) { |
| 882 | if (!cast<CXXRecordDecl>(RecordTy->getDecl())->hasTrivialDestructor()) { |
| 883 | // Create a flag that is used to indicate when the NRVO was applied |
| 884 | // to this variable. Set it to zero to indicate that NRVO was not |
| 885 | // applied. |
| 886 | llvm::Value *Zero = Builder.getFalse(); |
| 887 | llvm::Value *NRVOFlag = CreateTempAlloca(Zero->getType(), "nrvo"); |
| 888 | EnsureInsertPoint(); |
| 889 | Builder.CreateStore(Zero, NRVOFlag); |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 890 | |
Rafael Espindola | 6c82fc6 | 2013-03-26 18:41:47 +0000 | [diff] [blame] | 891 | // Record the NRVO flag for this variable. |
| 892 | NRVOFlags[&D] = NRVOFlag; |
| 893 | emission.NRVOFlag = NRVOFlag; |
Nadav Rotem | 495cfa4 | 2013-03-23 06:43:35 +0000 | [diff] [blame] | 894 | } |
Douglas Gregor | d86c477 | 2010-05-15 06:46:45 +0000 | [diff] [blame] | 895 | } |
Chris Lattner | 2621fd1 | 2008-05-08 05:58:21 +0000 | [diff] [blame] | 896 | } else { |
Rafael Espindola | 6c82fc6 | 2013-03-26 18:41:47 +0000 | [diff] [blame] | 897 | if (isByRef) |
| 898 | LTy = BuildByRefType(&D); |
| 899 | |
| 900 | llvm::AllocaInst *Alloc = CreateTempAlloca(LTy); |
| 901 | Alloc->setName(D.getName()); |
| 902 | |
| 903 | CharUnits allocaAlignment = alignment; |
| 904 | if (isByRef) |
| 905 | allocaAlignment = std::max(allocaAlignment, |
John McCall | 64aa4b3 | 2013-04-16 22:48:15 +0000 | [diff] [blame] | 906 | getContext().toCharUnitsFromBits(getTarget().getPointerAlign(0))); |
Rafael Espindola | 6c82fc6 | 2013-03-26 18:41:47 +0000 | [diff] [blame] | 907 | Alloc->setAlignment(allocaAlignment.getQuantity()); |
| 908 | DeclPtr = Alloc; |
| 909 | |
| 910 | // Emit a lifetime intrinsic if meaningful. There's no point |
| 911 | // in doing this if we don't have a valid insertion point (?). |
| 912 | uint64_t size = CGM.getDataLayout().getTypeAllocSize(LTy); |
| 913 | if (HaveInsertPoint() && shouldUseLifetimeMarkers(*this, D, size)) { |
| 914 | llvm::Value *sizeV = llvm::ConstantInt::get(Int64Ty, size); |
| 915 | |
| 916 | emission.SizeForLifetimeMarkers = sizeV; |
| 917 | llvm::Value *castAddr = Builder.CreateBitCast(Alloc, Int8PtrTy); |
| 918 | Builder.CreateCall2(CGM.getLLVMLifetimeStartFn(), sizeV, castAddr) |
| 919 | ->setDoesNotThrow(); |
| 920 | } else { |
| 921 | assert(!emission.useLifetimeMarkers()); |
| 922 | } |
Chris Lattner | 2621fd1 | 2008-05-08 05:58:21 +0000 | [diff] [blame] | 923 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 924 | } else { |
Daniel Dunbar | d286f05 | 2009-07-19 06:58:07 +0000 | [diff] [blame] | 925 | EnsureInsertPoint(); |
| 926 | |
Anders Carlsson | 5ecb1b9 | 2009-02-09 20:41:50 +0000 | [diff] [blame] | 927 | if (!DidCallStackSave) { |
Anders Carlsson | 5d46315 | 2008-12-12 07:38:43 +0000 | [diff] [blame] | 928 | // Save the stack. |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 929 | llvm::Value *Stack = CreateTempAlloca(Int8PtrTy, "saved_stack"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 930 | |
Anders Carlsson | 5d46315 | 2008-12-12 07:38:43 +0000 | [diff] [blame] | 931 | llvm::Value *F = CGM.getIntrinsic(llvm::Intrinsic::stacksave); |
| 932 | llvm::Value *V = Builder.CreateCall(F); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 933 | |
Anders Carlsson | 5d46315 | 2008-12-12 07:38:43 +0000 | [diff] [blame] | 934 | Builder.CreateStore(V, Stack); |
Anders Carlsson | 5ecb1b9 | 2009-02-09 20:41:50 +0000 | [diff] [blame] | 935 | |
| 936 | DidCallStackSave = true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 937 | |
John McCall | d871509 | 2010-07-21 06:13:08 +0000 | [diff] [blame] | 938 | // Push a cleanup block and restore the stack there. |
John McCall | 3ad32c8 | 2011-01-28 08:37:24 +0000 | [diff] [blame] | 939 | // FIXME: in general circumstances, this should be an EH cleanup. |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 940 | EHStack.pushCleanup<CallStackRestore>(NormalCleanup, Stack); |
Anders Carlsson | 5d46315 | 2008-12-12 07:38:43 +0000 | [diff] [blame] | 941 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 942 | |
John McCall | bc8d40d | 2011-06-24 21:55:10 +0000 | [diff] [blame] | 943 | llvm::Value *elementCount; |
| 944 | QualType elementType; |
| 945 | llvm::tie(elementCount, elementType) = getVLASize(Ty); |
Anders Carlsson | 5d46315 | 2008-12-12 07:38:43 +0000 | [diff] [blame] | 946 | |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 947 | llvm::Type *llvmTy = ConvertTypeForMem(elementType); |
Anders Carlsson | 5d46315 | 2008-12-12 07:38:43 +0000 | [diff] [blame] | 948 | |
| 949 | // Allocate memory for the array. |
John McCall | bc8d40d | 2011-06-24 21:55:10 +0000 | [diff] [blame] | 950 | llvm::AllocaInst *vla = Builder.CreateAlloca(llvmTy, elementCount, "vla"); |
| 951 | vla->setAlignment(alignment.getQuantity()); |
Anders Carlsson | 41f8a13 | 2009-09-26 18:16:06 +0000 | [diff] [blame] | 952 | |
John McCall | bc8d40d | 2011-06-24 21:55:10 +0000 | [diff] [blame] | 953 | DeclPtr = vla; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 954 | } |
Eli Friedman | 8f39f5e | 2008-12-20 23:11:59 +0000 | [diff] [blame] | 955 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 956 | llvm::Value *&DMEntry = LocalDeclMap[&D]; |
| 957 | assert(DMEntry == 0 && "Decl already exists in localdeclmap!"); |
| 958 | DMEntry = DeclPtr; |
John McCall | 3469585 | 2011-02-22 06:44:22 +0000 | [diff] [blame] | 959 | emission.Address = DeclPtr; |
Sanjiv Gupta | cc9b163 | 2008-05-30 10:30:31 +0000 | [diff] [blame] | 960 | |
| 961 | // Emit debug info for local var declaration. |
Devang Patel | c594abd | 2011-06-03 19:21:47 +0000 | [diff] [blame] | 962 | if (HaveInsertPoint()) |
| 963 | if (CGDebugInfo *DI = getDebugInfo()) { |
Douglas Gregor | 4cdad31 | 2012-10-23 20:05:01 +0000 | [diff] [blame] | 964 | if (CGM.getCodeGenOpts().getDebugInfo() |
| 965 | >= CodeGenOptions::LimitedDebugInfo) { |
Alexey Samsonov | fd00eec | 2012-05-04 07:39:27 +0000 | [diff] [blame] | 966 | DI->setLocation(D.getLocation()); |
Rafael Espindola | 6c82fc6 | 2013-03-26 18:41:47 +0000 | [diff] [blame] | 967 | DI->EmitDeclareOfAutoVariable(&D, DeclPtr, Builder); |
Alexey Samsonov | fd00eec | 2012-05-04 07:39:27 +0000 | [diff] [blame] | 968 | } |
Devang Patel | c594abd | 2011-06-03 19:21:47 +0000 | [diff] [blame] | 969 | } |
Sanjiv Gupta | cc9b163 | 2008-05-30 10:30:31 +0000 | [diff] [blame] | 970 | |
Julien Lerouge | 77f68bb | 2011-09-09 22:41:49 +0000 | [diff] [blame] | 971 | if (D.hasAttr<AnnotateAttr>()) |
| 972 | EmitVarAnnotations(&D, emission.Address); |
| 973 | |
John McCall | 3469585 | 2011-02-22 06:44:22 +0000 | [diff] [blame] | 974 | return emission; |
| 975 | } |
| 976 | |
| 977 | /// Determines whether the given __block variable is potentially |
| 978 | /// captured by the given expression. |
| 979 | static bool isCapturedBy(const VarDecl &var, const Expr *e) { |
| 980 | // Skip the most common kinds of expressions that make |
| 981 | // hierarchy-walking expensive. |
| 982 | e = e->IgnoreParenCasts(); |
| 983 | |
| 984 | if (const BlockExpr *be = dyn_cast<BlockExpr>(e)) { |
| 985 | const BlockDecl *block = be->getBlockDecl(); |
| 986 | for (BlockDecl::capture_const_iterator i = block->capture_begin(), |
| 987 | e = block->capture_end(); i != e; ++i) { |
| 988 | if (i->getVariable() == &var) |
| 989 | return true; |
| 990 | } |
| 991 | |
| 992 | // No need to walk into the subexpressions. |
| 993 | return false; |
| 994 | } |
| 995 | |
Fariborz Jahanian | 5033be1 | 2011-08-23 16:47:15 +0000 | [diff] [blame] | 996 | if (const StmtExpr *SE = dyn_cast<StmtExpr>(e)) { |
| 997 | const CompoundStmt *CS = SE->getSubStmt(); |
Eric Christopher | c6fad60 | 2011-08-23 23:44:09 +0000 | [diff] [blame] | 998 | for (CompoundStmt::const_body_iterator BI = CS->body_begin(), |
| 999 | BE = CS->body_end(); BI != BE; ++BI) |
Fariborz Jahanian | 045c842 | 2011-08-25 00:06:26 +0000 | [diff] [blame] | 1000 | if (Expr *E = dyn_cast<Expr>((*BI))) { |
Fariborz Jahanian | 5033be1 | 2011-08-23 16:47:15 +0000 | [diff] [blame] | 1001 | if (isCapturedBy(var, E)) |
| 1002 | return true; |
Fariborz Jahanian | 045c842 | 2011-08-25 00:06:26 +0000 | [diff] [blame] | 1003 | } |
| 1004 | else if (DeclStmt *DS = dyn_cast<DeclStmt>((*BI))) { |
| 1005 | // special case declarations |
| 1006 | for (DeclStmt::decl_iterator I = DS->decl_begin(), E = DS->decl_end(); |
| 1007 | I != E; ++I) { |
| 1008 | if (VarDecl *VD = dyn_cast<VarDecl>((*I))) { |
| 1009 | Expr *Init = VD->getInit(); |
| 1010 | if (Init && isCapturedBy(var, Init)) |
| 1011 | return true; |
| 1012 | } |
| 1013 | } |
| 1014 | } |
| 1015 | else |
| 1016 | // FIXME. Make safe assumption assuming arbitrary statements cause capturing. |
| 1017 | // Later, provide code to poke into statements for capture analysis. |
| 1018 | return true; |
Fariborz Jahanian | 5033be1 | 2011-08-23 16:47:15 +0000 | [diff] [blame] | 1019 | return false; |
| 1020 | } |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 1021 | |
John McCall | 3469585 | 2011-02-22 06:44:22 +0000 | [diff] [blame] | 1022 | for (Stmt::const_child_range children = e->children(); children; ++children) |
| 1023 | if (isCapturedBy(var, cast<Expr>(*children))) |
| 1024 | return true; |
| 1025 | |
| 1026 | return false; |
| 1027 | } |
| 1028 | |
Douglas Gregor | bcc3e66 | 2011-07-01 21:08:19 +0000 | [diff] [blame] | 1029 | /// \brief Determine whether the given initializer is trivial in the sense |
| 1030 | /// that it requires no code to be generated. |
| 1031 | static bool isTrivialInitializer(const Expr *Init) { |
| 1032 | if (!Init) |
| 1033 | return true; |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 1034 | |
Douglas Gregor | bcc3e66 | 2011-07-01 21:08:19 +0000 | [diff] [blame] | 1035 | if (const CXXConstructExpr *Construct = dyn_cast<CXXConstructExpr>(Init)) |
| 1036 | if (CXXConstructorDecl *Constructor = Construct->getConstructor()) |
| 1037 | if (Constructor->isTrivial() && |
| 1038 | Constructor->isDefaultConstructor() && |
| 1039 | !Construct->requiresZeroInitialization()) |
| 1040 | return true; |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 1041 | |
Douglas Gregor | bcc3e66 | 2011-07-01 21:08:19 +0000 | [diff] [blame] | 1042 | return false; |
| 1043 | } |
John McCall | 3469585 | 2011-02-22 06:44:22 +0000 | [diff] [blame] | 1044 | void CodeGenFunction::EmitAutoVarInit(const AutoVarEmission &emission) { |
John McCall | 57b3b6a | 2011-02-22 07:16:58 +0000 | [diff] [blame] | 1045 | assert(emission.Variable && "emission was not valid!"); |
| 1046 | |
John McCall | 3469585 | 2011-02-22 06:44:22 +0000 | [diff] [blame] | 1047 | // If this was emitted as a global constant, we're done. |
| 1048 | if (emission.wasEmittedAsGlobal()) return; |
| 1049 | |
John McCall | 57b3b6a | 2011-02-22 07:16:58 +0000 | [diff] [blame] | 1050 | const VarDecl &D = *emission.Variable; |
John McCall | 3469585 | 2011-02-22 06:44:22 +0000 | [diff] [blame] | 1051 | QualType type = D.getType(); |
| 1052 | |
Chris Lattner | 1978596 | 2007-07-12 00:39:48 +0000 | [diff] [blame] | 1053 | // If this local has an initializer, emit it now. |
Daniel Dunbar | d286f05 | 2009-07-19 06:58:07 +0000 | [diff] [blame] | 1054 | const Expr *Init = D.getInit(); |
| 1055 | |
| 1056 | // If we are at an unreachable point, we don't need to emit the initializer |
| 1057 | // unless it contains a label. |
| 1058 | if (!HaveInsertPoint()) { |
John McCall | 3469585 | 2011-02-22 06:44:22 +0000 | [diff] [blame] | 1059 | if (!Init || !ContainsLabel(Init)) return; |
| 1060 | EnsureInsertPoint(); |
Daniel Dunbar | d286f05 | 2009-07-19 06:58:07 +0000 | [diff] [blame] | 1061 | } |
| 1062 | |
John McCall | 5af02db | 2011-03-31 01:59:53 +0000 | [diff] [blame] | 1063 | // Initialize the structure of a __block variable. |
| 1064 | if (emission.IsByRef) |
| 1065 | emitByrefStructureInit(emission); |
Anders Carlsson | 69c68b7 | 2009-02-07 23:51:38 +0000 | [diff] [blame] | 1066 | |
Douglas Gregor | bcc3e66 | 2011-07-01 21:08:19 +0000 | [diff] [blame] | 1067 | if (isTrivialInitializer(Init)) |
| 1068 | return; |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 1069 | |
John McCall | 5af02db | 2011-03-31 01:59:53 +0000 | [diff] [blame] | 1070 | CharUnits alignment = emission.Alignment; |
| 1071 | |
John McCall | 3469585 | 2011-02-22 06:44:22 +0000 | [diff] [blame] | 1072 | // Check whether this is a byref variable that's potentially |
| 1073 | // captured and moved by its own initializer. If so, we'll need to |
| 1074 | // emit the initializer first, then copy into the variable. |
| 1075 | bool capturedByInit = emission.IsByRef && isCapturedBy(D, Init); |
| 1076 | |
| 1077 | llvm::Value *Loc = |
| 1078 | capturedByInit ? emission.Address : emission.getObjectAddress(*this); |
| 1079 | |
Richard Smith | 5120188 | 2011-12-30 21:15:51 +0000 | [diff] [blame] | 1080 | llvm::Constant *constant = 0; |
| 1081 | if (emission.IsConstantAggregate) { |
| 1082 | assert(!capturedByInit && "constant init contains a capturing block?"); |
Richard Smith | 2d6a567 | 2012-01-14 04:30:29 +0000 | [diff] [blame] | 1083 | constant = CGM.EmitConstantInit(D, this); |
Richard Smith | 5120188 | 2011-12-30 21:15:51 +0000 | [diff] [blame] | 1084 | } |
| 1085 | |
| 1086 | if (!constant) { |
Eli Friedman | 6da2c71 | 2011-12-03 04:14:32 +0000 | [diff] [blame] | 1087 | LValue lv = MakeAddrLValue(Loc, type, alignment); |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 1088 | lv.setNonGC(true); |
| 1089 | return EmitExprAsInit(Init, &D, lv, capturedByInit); |
| 1090 | } |
John McCall | 60d3365 | 2011-03-08 09:11:50 +0000 | [diff] [blame] | 1091 | |
John McCall | 3469585 | 2011-02-22 06:44:22 +0000 | [diff] [blame] | 1092 | // If this is a simple aggregate initialization, we can optimize it |
| 1093 | // in various ways. |
John McCall | 60d3365 | 2011-03-08 09:11:50 +0000 | [diff] [blame] | 1094 | bool isVolatile = type.isVolatileQualified(); |
John McCall | 3469585 | 2011-02-22 06:44:22 +0000 | [diff] [blame] | 1095 | |
John McCall | 60d3365 | 2011-03-08 09:11:50 +0000 | [diff] [blame] | 1096 | llvm::Value *SizeVal = |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 1097 | llvm::ConstantInt::get(IntPtrTy, |
John McCall | 60d3365 | 2011-03-08 09:11:50 +0000 | [diff] [blame] | 1098 | getContext().getTypeSizeInChars(type).getQuantity()); |
John McCall | 3469585 | 2011-02-22 06:44:22 +0000 | [diff] [blame] | 1099 | |
Chris Lattner | 2acc6e3 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1100 | llvm::Type *BP = Int8PtrTy; |
John McCall | 60d3365 | 2011-03-08 09:11:50 +0000 | [diff] [blame] | 1101 | if (Loc->getType() != BP) |
Benjamin Kramer | 578faa8 | 2011-09-27 21:06:10 +0000 | [diff] [blame] | 1102 | Loc = Builder.CreateBitCast(Loc, BP); |
Mon P Wang | 3ecd785 | 2010-04-04 03:10:52 +0000 | [diff] [blame] | 1103 | |
John McCall | 60d3365 | 2011-03-08 09:11:50 +0000 | [diff] [blame] | 1104 | // If the initializer is all or mostly zeros, codegen with memset then do |
| 1105 | // a few stores afterward. |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 1106 | if (shouldUseMemSetPlusStoresToInitialize(constant, |
Micah Villmow | 25a6a84 | 2012-10-08 16:25:52 +0000 | [diff] [blame] | 1107 | CGM.getDataLayout().getTypeAllocSize(constant->getType()))) { |
John McCall | 60d3365 | 2011-03-08 09:11:50 +0000 | [diff] [blame] | 1108 | Builder.CreateMemSet(Loc, llvm::ConstantInt::get(Int8Ty, 0), SizeVal, |
| 1109 | alignment.getQuantity(), isVolatile); |
Benjamin Kramer | 06d4368 | 2012-08-27 22:07:02 +0000 | [diff] [blame] | 1110 | // Zero and undef don't require a stores. |
| 1111 | if (!constant->isNullValue() && !isa<llvm::UndefValue>(constant)) { |
John McCall | 60d3365 | 2011-03-08 09:11:50 +0000 | [diff] [blame] | 1112 | Loc = Builder.CreateBitCast(Loc, constant->getType()->getPointerTo()); |
| 1113 | emitStoresForInitAfterMemset(constant, Loc, isVolatile, Builder); |
Fariborz Jahanian | 20e1c7e | 2010-03-12 21:40:43 +0000 | [diff] [blame] | 1114 | } |
John McCall | 60d3365 | 2011-03-08 09:11:50 +0000 | [diff] [blame] | 1115 | } else { |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 1116 | // Otherwise, create a temporary global with the initializer then |
John McCall | 60d3365 | 2011-03-08 09:11:50 +0000 | [diff] [blame] | 1117 | // memcpy from the global to the alloca. |
| 1118 | std::string Name = GetStaticDeclName(*this, D, "."); |
| 1119 | llvm::GlobalVariable *GV = |
| 1120 | new llvm::GlobalVariable(CGM.getModule(), constant->getType(), true, |
Eric Christopher | 736a9c2 | 2011-08-24 00:33:55 +0000 | [diff] [blame] | 1121 | llvm::GlobalValue::PrivateLinkage, |
Hans Wennborg | 5e2d5de | 2012-06-23 11:51:46 +0000 | [diff] [blame] | 1122 | constant, Name); |
John McCall | 60d3365 | 2011-03-08 09:11:50 +0000 | [diff] [blame] | 1123 | GV->setAlignment(alignment.getQuantity()); |
Eli Friedman | 460980d | 2011-05-27 22:32:55 +0000 | [diff] [blame] | 1124 | GV->setUnnamedAddr(true); |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 1125 | |
John McCall | 60d3365 | 2011-03-08 09:11:50 +0000 | [diff] [blame] | 1126 | llvm::Value *SrcPtr = GV; |
| 1127 | if (SrcPtr->getType() != BP) |
Benjamin Kramer | 578faa8 | 2011-09-27 21:06:10 +0000 | [diff] [blame] | 1128 | SrcPtr = Builder.CreateBitCast(SrcPtr, BP); |
John McCall | 60d3365 | 2011-03-08 09:11:50 +0000 | [diff] [blame] | 1129 | |
| 1130 | Builder.CreateMemCpy(Loc, SrcPtr, SizeVal, alignment.getQuantity(), |
| 1131 | isVolatile); |
| 1132 | } |
| 1133 | } |
| 1134 | |
| 1135 | /// Emit an expression as an initializer for a variable at the given |
| 1136 | /// location. The expression is not necessarily the normal |
| 1137 | /// initializer for the variable, and the address is not necessarily |
| 1138 | /// its normal location. |
| 1139 | /// |
| 1140 | /// \param init the initializing expression |
| 1141 | /// \param var the variable to act as if we're initializing |
| 1142 | /// \param loc the address to initialize; its type is a pointer |
| 1143 | /// to the LLVM mapping of the variable's type |
| 1144 | /// \param alignment the alignment of the address |
| 1145 | /// \param capturedByInit true if the variable is a __block variable |
| 1146 | /// whose address is potentially changed by the initializer |
| 1147 | void CodeGenFunction::EmitExprAsInit(const Expr *init, |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1148 | const ValueDecl *D, |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 1149 | LValue lvalue, |
John McCall | 60d3365 | 2011-03-08 09:11:50 +0000 | [diff] [blame] | 1150 | bool capturedByInit) { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1151 | QualType type = D->getType(); |
John McCall | 60d3365 | 2011-03-08 09:11:50 +0000 | [diff] [blame] | 1152 | |
| 1153 | if (type->isReferenceType()) { |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 1154 | RValue rvalue = EmitReferenceBindingToExpr(init, D); |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 1155 | if (capturedByInit) |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 1156 | drillIntoBlockVariable(*this, lvalue, cast<VarDecl>(D)); |
David Chisnall | 7a7ee30 | 2012-01-16 17:27:18 +0000 | [diff] [blame] | 1157 | EmitStoreThroughLValue(rvalue, lvalue, true); |
John McCall | 9d232c8 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 1158 | return; |
| 1159 | } |
| 1160 | switch (getEvaluationKind(type)) { |
| 1161 | case TEK_Scalar: |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 1162 | EmitScalarInit(init, D, lvalue, capturedByInit); |
John McCall | 9d232c8 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 1163 | return; |
| 1164 | case TEK_Complex: { |
John McCall | 60d3365 | 2011-03-08 09:11:50 +0000 | [diff] [blame] | 1165 | ComplexPairTy complex = EmitComplexExpr(init); |
John McCall | a07398e | 2011-06-16 04:16:24 +0000 | [diff] [blame] | 1166 | if (capturedByInit) |
| 1167 | drillIntoBlockVariable(*this, lvalue, cast<VarDecl>(D)); |
John McCall | 9d232c8 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 1168 | EmitStoreOfComplex(complex, lvalue, /*init*/ true); |
| 1169 | return; |
| 1170 | } |
| 1171 | case TEK_Aggregate: |
John McCall | 9eda3ab | 2013-03-07 21:37:17 +0000 | [diff] [blame] | 1172 | if (type->isAtomicType()) { |
| 1173 | EmitAtomicInit(const_cast<Expr*>(init), lvalue); |
| 1174 | } else { |
| 1175 | // TODO: how can we delay here if D is captured by its initializer? |
| 1176 | EmitAggExpr(init, AggValueSlot::forLValue(lvalue, |
Chad Rosier | 649b4a1 | 2012-03-29 17:37:10 +0000 | [diff] [blame] | 1177 | AggValueSlot::IsDestructed, |
John McCall | 410ffb2 | 2011-08-25 23:04:34 +0000 | [diff] [blame] | 1178 | AggValueSlot::DoesNotNeedGCBarriers, |
Chad Rosier | 649b4a1 | 2012-03-29 17:37:10 +0000 | [diff] [blame] | 1179 | AggValueSlot::IsNotAliased)); |
John McCall | 9eda3ab | 2013-03-07 21:37:17 +0000 | [diff] [blame] | 1180 | } |
Sebastian Redl | 972edf0 | 2012-02-19 16:03:09 +0000 | [diff] [blame] | 1181 | MaybeEmitStdInitializerListCleanup(lvalue.getAddress(), init); |
John McCall | 9d232c8 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 1182 | return; |
Fariborz Jahanian | 20e1c7e | 2010-03-12 21:40:43 +0000 | [diff] [blame] | 1183 | } |
John McCall | 9d232c8 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 1184 | llvm_unreachable("bad evaluation kind"); |
John McCall | 3469585 | 2011-02-22 06:44:22 +0000 | [diff] [blame] | 1185 | } |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1186 | |
John McCall | bdc4d80 | 2011-07-09 01:37:26 +0000 | [diff] [blame] | 1187 | /// Enter a destroy cleanup for the given local variable. |
| 1188 | void CodeGenFunction::emitAutoVarTypeCleanup( |
| 1189 | const CodeGenFunction::AutoVarEmission &emission, |
| 1190 | QualType::DestructionKind dtorKind) { |
| 1191 | assert(dtorKind != QualType::DK_none); |
| 1192 | |
| 1193 | // Note that for __block variables, we want to destroy the |
| 1194 | // original stack object, not the possibly forwarded object. |
| 1195 | llvm::Value *addr = emission.getObjectAddress(*this); |
| 1196 | |
| 1197 | const VarDecl *var = emission.Variable; |
| 1198 | QualType type = var->getType(); |
| 1199 | |
| 1200 | CleanupKind cleanupKind = NormalAndEHCleanup; |
| 1201 | CodeGenFunction::Destroyer *destroyer = 0; |
| 1202 | |
| 1203 | switch (dtorKind) { |
| 1204 | case QualType::DK_none: |
| 1205 | llvm_unreachable("no cleanup for trivially-destructible variable"); |
| 1206 | |
| 1207 | case QualType::DK_cxx_destructor: |
| 1208 | // If there's an NRVO flag on the emission, we need a different |
| 1209 | // cleanup. |
| 1210 | if (emission.NRVOFlag) { |
| 1211 | assert(!type->isArrayType()); |
| 1212 | CXXDestructorDecl *dtor = type->getAsCXXRecordDecl()->getDestructor(); |
| 1213 | EHStack.pushCleanup<DestroyNRVOVariable>(cleanupKind, addr, dtor, |
| 1214 | emission.NRVOFlag); |
| 1215 | return; |
| 1216 | } |
| 1217 | break; |
| 1218 | |
| 1219 | case QualType::DK_objc_strong_lifetime: |
| 1220 | // Suppress cleanups for pseudo-strong variables. |
| 1221 | if (var->isARCPseudoStrong()) return; |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 1222 | |
John McCall | bdc4d80 | 2011-07-09 01:37:26 +0000 | [diff] [blame] | 1223 | // Otherwise, consider whether to use an EH cleanup or not. |
| 1224 | cleanupKind = getARCCleanupKind(); |
| 1225 | |
| 1226 | // Use the imprecise destroyer by default. |
| 1227 | if (!var->hasAttr<ObjCPreciseLifetimeAttr>()) |
| 1228 | destroyer = CodeGenFunction::destroyARCStrongImprecise; |
| 1229 | break; |
| 1230 | |
| 1231 | case QualType::DK_objc_weak_lifetime: |
| 1232 | break; |
| 1233 | } |
| 1234 | |
| 1235 | // If we haven't chosen a more specific destroyer, use the default. |
Peter Collingbourne | 516bbd4 | 2012-01-26 03:33:36 +0000 | [diff] [blame] | 1236 | if (!destroyer) destroyer = getDestroyer(dtorKind); |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 1237 | |
Sylvestre Ledru | f3477c1 | 2012-09-27 10:16:10 +0000 | [diff] [blame] | 1238 | // Use an EH cleanup in array destructors iff the destructor itself |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 1239 | // is being pushed as an EH cleanup. |
| 1240 | bool useEHCleanup = (cleanupKind & EHCleanup); |
| 1241 | EHStack.pushCleanup<DestroyObject>(cleanupKind, addr, type, destroyer, |
| 1242 | useEHCleanup); |
John McCall | bdc4d80 | 2011-07-09 01:37:26 +0000 | [diff] [blame] | 1243 | } |
| 1244 | |
John McCall | 3469585 | 2011-02-22 06:44:22 +0000 | [diff] [blame] | 1245 | void CodeGenFunction::EmitAutoVarCleanups(const AutoVarEmission &emission) { |
John McCall | 57b3b6a | 2011-02-22 07:16:58 +0000 | [diff] [blame] | 1246 | assert(emission.Variable && "emission was not valid!"); |
| 1247 | |
John McCall | 3469585 | 2011-02-22 06:44:22 +0000 | [diff] [blame] | 1248 | // If this was emitted as a global constant, we're done. |
| 1249 | if (emission.wasEmittedAsGlobal()) return; |
| 1250 | |
John McCall | 38baeab | 2012-04-13 18:44:05 +0000 | [diff] [blame] | 1251 | // If we don't have an insertion point, we're done. Sema prevents |
| 1252 | // us from jumping into any of these scopes anyway. |
| 1253 | if (!HaveInsertPoint()) return; |
| 1254 | |
John McCall | 57b3b6a | 2011-02-22 07:16:58 +0000 | [diff] [blame] | 1255 | const VarDecl &D = *emission.Variable; |
John McCall | 3469585 | 2011-02-22 06:44:22 +0000 | [diff] [blame] | 1256 | |
Nadav Rotem | 495cfa4 | 2013-03-23 06:43:35 +0000 | [diff] [blame] | 1257 | // Make sure we call @llvm.lifetime.end. This needs to happen |
| 1258 | // *last*, so the cleanup needs to be pushed *first*. |
| 1259 | if (emission.useLifetimeMarkers()) { |
| 1260 | EHStack.pushCleanup<CallLifetimeEnd>(NormalCleanup, |
| 1261 | emission.getAllocatedAddress(), |
| 1262 | emission.getSizeForLifetimeMarkers()); |
| 1263 | } |
| 1264 | |
John McCall | bdc4d80 | 2011-07-09 01:37:26 +0000 | [diff] [blame] | 1265 | // Check the type for a cleanup. |
| 1266 | if (QualType::DestructionKind dtorKind = D.getType().isDestructedType()) |
| 1267 | emitAutoVarTypeCleanup(emission, dtorKind); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1268 | |
John McCall | 0c24c80 | 2011-06-24 23:21:27 +0000 | [diff] [blame] | 1269 | // In GC mode, honor objc_precise_lifetime. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1270 | if (getLangOpts().getGC() != LangOptions::NonGC && |
John McCall | 0c24c80 | 2011-06-24 23:21:27 +0000 | [diff] [blame] | 1271 | D.hasAttr<ObjCPreciseLifetimeAttr>()) { |
| 1272 | EHStack.pushCleanup<ExtendGCLifetime>(NormalCleanup, &D); |
| 1273 | } |
| 1274 | |
John McCall | 3469585 | 2011-02-22 06:44:22 +0000 | [diff] [blame] | 1275 | // Handle the cleanup attribute. |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 1276 | if (const CleanupAttr *CA = D.getAttr<CleanupAttr>()) { |
Anders Carlsson | 69c68b7 | 2009-02-07 23:51:38 +0000 | [diff] [blame] | 1277 | const FunctionDecl *FD = CA->getFunctionDecl(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1278 | |
John McCall | 3469585 | 2011-02-22 06:44:22 +0000 | [diff] [blame] | 1279 | llvm::Constant *F = CGM.GetAddrOfFunction(FD); |
Anders Carlsson | 69c68b7 | 2009-02-07 23:51:38 +0000 | [diff] [blame] | 1280 | assert(F && "Could not find function!"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1281 | |
John McCall | de5d3c7 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 1282 | const CGFunctionInfo &Info = CGM.getTypes().arrangeFunctionDeclaration(FD); |
John McCall | 3469585 | 2011-02-22 06:44:22 +0000 | [diff] [blame] | 1283 | EHStack.pushCleanup<CallCleanupFunction>(NormalAndEHCleanup, F, &Info, &D); |
Anders Carlsson | 69c68b7 | 2009-02-07 23:51:38 +0000 | [diff] [blame] | 1284 | } |
Mike Stump | 797b632 | 2009-03-05 01:23:13 +0000 | [diff] [blame] | 1285 | |
John McCall | 3469585 | 2011-02-22 06:44:22 +0000 | [diff] [blame] | 1286 | // If this is a block variable, call _Block_object_destroy |
| 1287 | // (on the unforwarded address). |
John McCall | 5af02db | 2011-03-31 01:59:53 +0000 | [diff] [blame] | 1288 | if (emission.IsByRef) |
| 1289 | enterByrefCleanup(emission); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1290 | } |
| 1291 | |
Peter Collingbourne | 516bbd4 | 2012-01-26 03:33:36 +0000 | [diff] [blame] | 1292 | CodeGenFunction::Destroyer * |
John McCall | bdc4d80 | 2011-07-09 01:37:26 +0000 | [diff] [blame] | 1293 | CodeGenFunction::getDestroyer(QualType::DestructionKind kind) { |
| 1294 | switch (kind) { |
| 1295 | case QualType::DK_none: llvm_unreachable("no destroyer for trivial dtor"); |
John McCall | 0850e8d | 2011-07-09 09:09:00 +0000 | [diff] [blame] | 1296 | case QualType::DK_cxx_destructor: |
Peter Collingbourne | 516bbd4 | 2012-01-26 03:33:36 +0000 | [diff] [blame] | 1297 | return destroyCXXObject; |
John McCall | 0850e8d | 2011-07-09 09:09:00 +0000 | [diff] [blame] | 1298 | case QualType::DK_objc_strong_lifetime: |
Peter Collingbourne | 516bbd4 | 2012-01-26 03:33:36 +0000 | [diff] [blame] | 1299 | return destroyARCStrongPrecise; |
John McCall | 0850e8d | 2011-07-09 09:09:00 +0000 | [diff] [blame] | 1300 | case QualType::DK_objc_weak_lifetime: |
Peter Collingbourne | 516bbd4 | 2012-01-26 03:33:36 +0000 | [diff] [blame] | 1301 | return destroyARCWeak; |
John McCall | bdc4d80 | 2011-07-09 01:37:26 +0000 | [diff] [blame] | 1302 | } |
Matt Beaumont-Gay | ba4be25 | 2012-01-27 00:46:27 +0000 | [diff] [blame] | 1303 | llvm_unreachable("Unknown DestructionKind"); |
John McCall | bdc4d80 | 2011-07-09 01:37:26 +0000 | [diff] [blame] | 1304 | } |
| 1305 | |
John McCall | 074cae0 | 2013-02-01 05:11:40 +0000 | [diff] [blame] | 1306 | /// pushEHDestroy - Push the standard destructor for the given type as |
| 1307 | /// an EH-only cleanup. |
| 1308 | void CodeGenFunction::pushEHDestroy(QualType::DestructionKind dtorKind, |
| 1309 | llvm::Value *addr, QualType type) { |
| 1310 | assert(dtorKind && "cannot push destructor for trivial type"); |
| 1311 | assert(needsEHCleanup(dtorKind)); |
| 1312 | |
| 1313 | pushDestroy(EHCleanup, addr, type, getDestroyer(dtorKind), true); |
| 1314 | } |
| 1315 | |
| 1316 | /// pushDestroy - Push the standard destructor for the given type as |
| 1317 | /// at least a normal cleanup. |
John McCall | 9928c48 | 2011-07-12 16:41:08 +0000 | [diff] [blame] | 1318 | void CodeGenFunction::pushDestroy(QualType::DestructionKind dtorKind, |
| 1319 | llvm::Value *addr, QualType type) { |
| 1320 | assert(dtorKind && "cannot push destructor for trivial type"); |
| 1321 | |
| 1322 | CleanupKind cleanupKind = getCleanupKind(dtorKind); |
| 1323 | pushDestroy(cleanupKind, addr, type, getDestroyer(dtorKind), |
| 1324 | cleanupKind & EHCleanup); |
| 1325 | } |
| 1326 | |
John McCall | bdc4d80 | 2011-07-09 01:37:26 +0000 | [diff] [blame] | 1327 | void CodeGenFunction::pushDestroy(CleanupKind cleanupKind, llvm::Value *addr, |
Peter Collingbourne | 516bbd4 | 2012-01-26 03:33:36 +0000 | [diff] [blame] | 1328 | QualType type, Destroyer *destroyer, |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 1329 | bool useEHCleanupForArray) { |
John McCall | 9928c48 | 2011-07-12 16:41:08 +0000 | [diff] [blame] | 1330 | pushFullExprCleanup<DestroyObject>(cleanupKind, addr, type, |
| 1331 | destroyer, useEHCleanupForArray); |
John McCall | bdc4d80 | 2011-07-09 01:37:26 +0000 | [diff] [blame] | 1332 | } |
| 1333 | |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 1334 | /// emitDestroy - Immediately perform the destruction of the given |
| 1335 | /// object. |
| 1336 | /// |
| 1337 | /// \param addr - the address of the object; a type* |
| 1338 | /// \param type - the type of the object; if an array type, all |
| 1339 | /// objects are destroyed in reverse order |
| 1340 | /// \param destroyer - the function to call to destroy individual |
| 1341 | /// elements |
| 1342 | /// \param useEHCleanupForArray - whether an EH cleanup should be |
| 1343 | /// used when destroying array elements, in case one of the |
| 1344 | /// destructions throws an exception |
John McCall | bdc4d80 | 2011-07-09 01:37:26 +0000 | [diff] [blame] | 1345 | void CodeGenFunction::emitDestroy(llvm::Value *addr, QualType type, |
Peter Collingbourne | 516bbd4 | 2012-01-26 03:33:36 +0000 | [diff] [blame] | 1346 | Destroyer *destroyer, |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 1347 | bool useEHCleanupForArray) { |
John McCall | bdc4d80 | 2011-07-09 01:37:26 +0000 | [diff] [blame] | 1348 | const ArrayType *arrayType = getContext().getAsArrayType(type); |
| 1349 | if (!arrayType) |
| 1350 | return destroyer(*this, addr, type); |
| 1351 | |
| 1352 | llvm::Value *begin = addr; |
| 1353 | llvm::Value *length = emitArrayLength(arrayType, type, begin); |
John McCall | fbf780a | 2011-07-13 08:09:46 +0000 | [diff] [blame] | 1354 | |
| 1355 | // Normally we have to check whether the array is zero-length. |
| 1356 | bool checkZeroLength = true; |
| 1357 | |
| 1358 | // But if the array length is constant, we can suppress that. |
| 1359 | if (llvm::ConstantInt *constLength = dyn_cast<llvm::ConstantInt>(length)) { |
| 1360 | // ...and if it's constant zero, we can just skip the entire thing. |
| 1361 | if (constLength->isZero()) return; |
| 1362 | checkZeroLength = false; |
| 1363 | } |
| 1364 | |
John McCall | bdc4d80 | 2011-07-09 01:37:26 +0000 | [diff] [blame] | 1365 | llvm::Value *end = Builder.CreateInBoundsGEP(begin, length); |
John McCall | fbf780a | 2011-07-13 08:09:46 +0000 | [diff] [blame] | 1366 | emitArrayDestroy(begin, end, type, destroyer, |
| 1367 | checkZeroLength, useEHCleanupForArray); |
John McCall | bdc4d80 | 2011-07-09 01:37:26 +0000 | [diff] [blame] | 1368 | } |
| 1369 | |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 1370 | /// emitArrayDestroy - Destroys all the elements of the given array, |
| 1371 | /// beginning from last to first. The array cannot be zero-length. |
| 1372 | /// |
| 1373 | /// \param begin - a type* denoting the first element of the array |
| 1374 | /// \param end - a type* denoting one past the end of the array |
| 1375 | /// \param type - the element type of the array |
| 1376 | /// \param destroyer - the function to call to destroy elements |
| 1377 | /// \param useEHCleanup - whether to push an EH cleanup to destroy |
| 1378 | /// the remaining elements in case the destruction of a single |
| 1379 | /// element throws |
John McCall | bdc4d80 | 2011-07-09 01:37:26 +0000 | [diff] [blame] | 1380 | void CodeGenFunction::emitArrayDestroy(llvm::Value *begin, |
| 1381 | llvm::Value *end, |
| 1382 | QualType type, |
Peter Collingbourne | 516bbd4 | 2012-01-26 03:33:36 +0000 | [diff] [blame] | 1383 | Destroyer *destroyer, |
John McCall | fbf780a | 2011-07-13 08:09:46 +0000 | [diff] [blame] | 1384 | bool checkZeroLength, |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 1385 | bool useEHCleanup) { |
John McCall | bdc4d80 | 2011-07-09 01:37:26 +0000 | [diff] [blame] | 1386 | assert(!type->isArrayType()); |
| 1387 | |
| 1388 | // The basic structure here is a do-while loop, because we don't |
| 1389 | // need to check for the zero-element case. |
| 1390 | llvm::BasicBlock *bodyBB = createBasicBlock("arraydestroy.body"); |
| 1391 | llvm::BasicBlock *doneBB = createBasicBlock("arraydestroy.done"); |
| 1392 | |
John McCall | fbf780a | 2011-07-13 08:09:46 +0000 | [diff] [blame] | 1393 | if (checkZeroLength) { |
| 1394 | llvm::Value *isEmpty = Builder.CreateICmpEQ(begin, end, |
| 1395 | "arraydestroy.isempty"); |
| 1396 | Builder.CreateCondBr(isEmpty, doneBB, bodyBB); |
| 1397 | } |
| 1398 | |
John McCall | bdc4d80 | 2011-07-09 01:37:26 +0000 | [diff] [blame] | 1399 | // Enter the loop body, making that address the current address. |
| 1400 | llvm::BasicBlock *entryBB = Builder.GetInsertBlock(); |
| 1401 | EmitBlock(bodyBB); |
| 1402 | llvm::PHINode *elementPast = |
| 1403 | Builder.CreatePHI(begin->getType(), 2, "arraydestroy.elementPast"); |
| 1404 | elementPast->addIncoming(end, entryBB); |
| 1405 | |
| 1406 | // Shift the address back by one element. |
| 1407 | llvm::Value *negativeOne = llvm::ConstantInt::get(SizeTy, -1, true); |
| 1408 | llvm::Value *element = Builder.CreateInBoundsGEP(elementPast, negativeOne, |
| 1409 | "arraydestroy.element"); |
| 1410 | |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 1411 | if (useEHCleanup) |
| 1412 | pushRegularPartialArrayCleanup(begin, element, type, destroyer); |
| 1413 | |
John McCall | bdc4d80 | 2011-07-09 01:37:26 +0000 | [diff] [blame] | 1414 | // Perform the actual destruction there. |
| 1415 | destroyer(*this, element, type); |
| 1416 | |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 1417 | if (useEHCleanup) |
| 1418 | PopCleanupBlock(); |
| 1419 | |
John McCall | bdc4d80 | 2011-07-09 01:37:26 +0000 | [diff] [blame] | 1420 | // Check whether we've reached the end. |
| 1421 | llvm::Value *done = Builder.CreateICmpEQ(element, begin, "arraydestroy.done"); |
| 1422 | Builder.CreateCondBr(done, doneBB, bodyBB); |
| 1423 | elementPast->addIncoming(element, Builder.GetInsertBlock()); |
| 1424 | |
| 1425 | // Done. |
| 1426 | EmitBlock(doneBB); |
| 1427 | } |
| 1428 | |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 1429 | /// Perform partial array destruction as if in an EH cleanup. Unlike |
| 1430 | /// emitArrayDestroy, the element type here may still be an array type. |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 1431 | static void emitPartialArrayDestroy(CodeGenFunction &CGF, |
| 1432 | llvm::Value *begin, llvm::Value *end, |
| 1433 | QualType type, |
Peter Collingbourne | 516bbd4 | 2012-01-26 03:33:36 +0000 | [diff] [blame] | 1434 | CodeGenFunction::Destroyer *destroyer) { |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 1435 | // If the element type is itself an array, drill down. |
John McCall | fbf780a | 2011-07-13 08:09:46 +0000 | [diff] [blame] | 1436 | unsigned arrayDepth = 0; |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 1437 | while (const ArrayType *arrayType = CGF.getContext().getAsArrayType(type)) { |
| 1438 | // VLAs don't require a GEP index to walk into. |
| 1439 | if (!isa<VariableArrayType>(arrayType)) |
John McCall | fbf780a | 2011-07-13 08:09:46 +0000 | [diff] [blame] | 1440 | arrayDepth++; |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 1441 | type = arrayType->getElementType(); |
| 1442 | } |
John McCall | fbf780a | 2011-07-13 08:09:46 +0000 | [diff] [blame] | 1443 | |
| 1444 | if (arrayDepth) { |
| 1445 | llvm::Value *zero = llvm::ConstantInt::get(CGF.SizeTy, arrayDepth+1); |
| 1446 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1447 | SmallVector<llvm::Value*,4> gepIndices(arrayDepth, zero); |
Jay Foad | 0f6ac7c | 2011-07-22 08:16:57 +0000 | [diff] [blame] | 1448 | begin = CGF.Builder.CreateInBoundsGEP(begin, gepIndices, "pad.arraybegin"); |
| 1449 | end = CGF.Builder.CreateInBoundsGEP(end, gepIndices, "pad.arrayend"); |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 1450 | } |
| 1451 | |
John McCall | fbf780a | 2011-07-13 08:09:46 +0000 | [diff] [blame] | 1452 | // Destroy the array. We don't ever need an EH cleanup because we |
| 1453 | // assume that we're in an EH cleanup ourselves, so a throwing |
| 1454 | // destructor causes an immediate terminate. |
| 1455 | CGF.emitArrayDestroy(begin, end, type, destroyer, |
| 1456 | /*checkZeroLength*/ true, /*useEHCleanup*/ false); |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 1457 | } |
| 1458 | |
John McCall | bdc4d80 | 2011-07-09 01:37:26 +0000 | [diff] [blame] | 1459 | namespace { |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 1460 | /// RegularPartialArrayDestroy - a cleanup which performs a partial |
| 1461 | /// array destroy where the end pointer is regularly determined and |
| 1462 | /// does not need to be loaded from a local. |
| 1463 | class RegularPartialArrayDestroy : public EHScopeStack::Cleanup { |
| 1464 | llvm::Value *ArrayBegin; |
| 1465 | llvm::Value *ArrayEnd; |
| 1466 | QualType ElementType; |
Peter Collingbourne | 516bbd4 | 2012-01-26 03:33:36 +0000 | [diff] [blame] | 1467 | CodeGenFunction::Destroyer *Destroyer; |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 1468 | public: |
| 1469 | RegularPartialArrayDestroy(llvm::Value *arrayBegin, llvm::Value *arrayEnd, |
| 1470 | QualType elementType, |
| 1471 | CodeGenFunction::Destroyer *destroyer) |
| 1472 | : ArrayBegin(arrayBegin), ArrayEnd(arrayEnd), |
Peter Collingbourne | 516bbd4 | 2012-01-26 03:33:36 +0000 | [diff] [blame] | 1473 | ElementType(elementType), Destroyer(destroyer) {} |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 1474 | |
John McCall | ad346f4 | 2011-07-12 20:27:29 +0000 | [diff] [blame] | 1475 | void Emit(CodeGenFunction &CGF, Flags flags) { |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 1476 | emitPartialArrayDestroy(CGF, ArrayBegin, ArrayEnd, |
| 1477 | ElementType, Destroyer); |
| 1478 | } |
| 1479 | }; |
| 1480 | |
| 1481 | /// IrregularPartialArrayDestroy - a cleanup which performs a |
| 1482 | /// partial array destroy where the end pointer is irregularly |
| 1483 | /// determined and must be loaded from a local. |
| 1484 | class IrregularPartialArrayDestroy : public EHScopeStack::Cleanup { |
John McCall | bdc4d80 | 2011-07-09 01:37:26 +0000 | [diff] [blame] | 1485 | llvm::Value *ArrayBegin; |
| 1486 | llvm::Value *ArrayEndPointer; |
| 1487 | QualType ElementType; |
Peter Collingbourne | 516bbd4 | 2012-01-26 03:33:36 +0000 | [diff] [blame] | 1488 | CodeGenFunction::Destroyer *Destroyer; |
John McCall | bdc4d80 | 2011-07-09 01:37:26 +0000 | [diff] [blame] | 1489 | public: |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 1490 | IrregularPartialArrayDestroy(llvm::Value *arrayBegin, |
| 1491 | llvm::Value *arrayEndPointer, |
| 1492 | QualType elementType, |
| 1493 | CodeGenFunction::Destroyer *destroyer) |
John McCall | bdc4d80 | 2011-07-09 01:37:26 +0000 | [diff] [blame] | 1494 | : ArrayBegin(arrayBegin), ArrayEndPointer(arrayEndPointer), |
Peter Collingbourne | 516bbd4 | 2012-01-26 03:33:36 +0000 | [diff] [blame] | 1495 | ElementType(elementType), Destroyer(destroyer) {} |
John McCall | bdc4d80 | 2011-07-09 01:37:26 +0000 | [diff] [blame] | 1496 | |
John McCall | ad346f4 | 2011-07-12 20:27:29 +0000 | [diff] [blame] | 1497 | void Emit(CodeGenFunction &CGF, Flags flags) { |
John McCall | bdc4d80 | 2011-07-09 01:37:26 +0000 | [diff] [blame] | 1498 | llvm::Value *arrayEnd = CGF.Builder.CreateLoad(ArrayEndPointer); |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 1499 | emitPartialArrayDestroy(CGF, ArrayBegin, arrayEnd, |
| 1500 | ElementType, Destroyer); |
John McCall | bdc4d80 | 2011-07-09 01:37:26 +0000 | [diff] [blame] | 1501 | } |
| 1502 | }; |
| 1503 | } |
| 1504 | |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 1505 | /// pushIrregularPartialArrayCleanup - Push an EH cleanup to destroy |
John McCall | bdc4d80 | 2011-07-09 01:37:26 +0000 | [diff] [blame] | 1506 | /// already-constructed elements of the given array. The cleanup |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 1507 | /// may be popped with DeactivateCleanupBlock or PopCleanupBlock. |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 1508 | /// |
John McCall | bdc4d80 | 2011-07-09 01:37:26 +0000 | [diff] [blame] | 1509 | /// \param elementType - the immediate element type of the array; |
| 1510 | /// possibly still an array type |
John McCall | 9928c48 | 2011-07-12 16:41:08 +0000 | [diff] [blame] | 1511 | void CodeGenFunction::pushIrregularPartialArrayCleanup(llvm::Value *arrayBegin, |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 1512 | llvm::Value *arrayEndPointer, |
| 1513 | QualType elementType, |
Peter Collingbourne | 516bbd4 | 2012-01-26 03:33:36 +0000 | [diff] [blame] | 1514 | Destroyer *destroyer) { |
John McCall | 9928c48 | 2011-07-12 16:41:08 +0000 | [diff] [blame] | 1515 | pushFullExprCleanup<IrregularPartialArrayDestroy>(EHCleanup, |
| 1516 | arrayBegin, arrayEndPointer, |
Peter Collingbourne | 516bbd4 | 2012-01-26 03:33:36 +0000 | [diff] [blame] | 1517 | elementType, destroyer); |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 1518 | } |
| 1519 | |
| 1520 | /// pushRegularPartialArrayCleanup - Push an EH cleanup to destroy |
| 1521 | /// already-constructed elements of the given array. The cleanup |
| 1522 | /// may be popped with DeactivateCleanupBlock or PopCleanupBlock. |
Eric Christopher | e1f5490 | 2011-08-23 22:38:00 +0000 | [diff] [blame] | 1523 | /// |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 1524 | /// \param elementType - the immediate element type of the array; |
| 1525 | /// possibly still an array type |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 1526 | void CodeGenFunction::pushRegularPartialArrayCleanup(llvm::Value *arrayBegin, |
| 1527 | llvm::Value *arrayEnd, |
| 1528 | QualType elementType, |
Peter Collingbourne | 516bbd4 | 2012-01-26 03:33:36 +0000 | [diff] [blame] | 1529 | Destroyer *destroyer) { |
John McCall | 9928c48 | 2011-07-12 16:41:08 +0000 | [diff] [blame] | 1530 | pushFullExprCleanup<RegularPartialArrayDestroy>(EHCleanup, |
John McCall | 2673c68 | 2011-07-11 08:38:19 +0000 | [diff] [blame] | 1531 | arrayBegin, arrayEnd, |
Peter Collingbourne | 516bbd4 | 2012-01-26 03:33:36 +0000 | [diff] [blame] | 1532 | elementType, destroyer); |
John McCall | bdc4d80 | 2011-07-09 01:37:26 +0000 | [diff] [blame] | 1533 | } |
| 1534 | |
Nadav Rotem | 495cfa4 | 2013-03-23 06:43:35 +0000 | [diff] [blame] | 1535 | /// Lazily declare the @llvm.lifetime.start intrinsic. |
| 1536 | llvm::Constant *CodeGenModule::getLLVMLifetimeStartFn() { |
| 1537 | if (LifetimeStartFn) return LifetimeStartFn; |
| 1538 | LifetimeStartFn = llvm::Intrinsic::getDeclaration(&getModule(), |
| 1539 | llvm::Intrinsic::lifetime_start); |
| 1540 | return LifetimeStartFn; |
| 1541 | } |
| 1542 | |
| 1543 | /// Lazily declare the @llvm.lifetime.end intrinsic. |
| 1544 | llvm::Constant *CodeGenModule::getLLVMLifetimeEndFn() { |
| 1545 | if (LifetimeEndFn) return LifetimeEndFn; |
| 1546 | LifetimeEndFn = llvm::Intrinsic::getDeclaration(&getModule(), |
| 1547 | llvm::Intrinsic::lifetime_end); |
| 1548 | return LifetimeEndFn; |
| 1549 | } |
| 1550 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1551 | namespace { |
| 1552 | /// A cleanup to perform a release of an object at the end of a |
| 1553 | /// function. This is used to balance out the incoming +1 of a |
| 1554 | /// ns_consumed argument when we can't reasonably do that just by |
| 1555 | /// not doing the initial retain for a __block argument. |
| 1556 | struct ConsumeARCParameter : EHScopeStack::Cleanup { |
John McCall | 5b07e80 | 2013-03-13 03:10:54 +0000 | [diff] [blame] | 1557 | ConsumeARCParameter(llvm::Value *param, |
| 1558 | ARCPreciseLifetime_t precise) |
| 1559 | : Param(param), Precise(precise) {} |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1560 | |
| 1561 | llvm::Value *Param; |
John McCall | 5b07e80 | 2013-03-13 03:10:54 +0000 | [diff] [blame] | 1562 | ARCPreciseLifetime_t Precise; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1563 | |
John McCall | ad346f4 | 2011-07-12 20:27:29 +0000 | [diff] [blame] | 1564 | void Emit(CodeGenFunction &CGF, Flags flags) { |
John McCall | 5b07e80 | 2013-03-13 03:10:54 +0000 | [diff] [blame] | 1565 | CGF.EmitARCRelease(Param, Precise); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1566 | } |
| 1567 | }; |
| 1568 | } |
| 1569 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1570 | /// Emit an alloca (or GlobalValue depending on target) |
Chris Lattner | 2621fd1 | 2008-05-08 05:58:21 +0000 | [diff] [blame] | 1571 | /// for the specified parameter and set up LocalDeclMap. |
Devang Patel | 093ac46 | 2011-03-03 20:13:15 +0000 | [diff] [blame] | 1572 | void CodeGenFunction::EmitParmDecl(const VarDecl &D, llvm::Value *Arg, |
| 1573 | unsigned ArgNo) { |
Daniel Dunbar | b7ec246 | 2008-08-16 03:19:19 +0000 | [diff] [blame] | 1574 | // FIXME: Why isn't ImplicitParamDecl a ParmVarDecl? |
Sanjiv Gupta | 31fc07d | 2008-10-31 09:52:39 +0000 | [diff] [blame] | 1575 | assert((isa<ParmVarDecl>(D) || isa<ImplicitParamDecl>(D)) && |
Daniel Dunbar | b7ec246 | 2008-08-16 03:19:19 +0000 | [diff] [blame] | 1576 | "Invalid argument to EmitParmDecl"); |
John McCall | 8178df3 | 2011-02-22 22:38:33 +0000 | [diff] [blame] | 1577 | |
| 1578 | Arg->setName(D.getName()); |
| 1579 | |
Adrian Prantl | 836e7c9 | 2013-03-14 17:53:33 +0000 | [diff] [blame] | 1580 | QualType Ty = D.getType(); |
| 1581 | |
John McCall | 8178df3 | 2011-02-22 22:38:33 +0000 | [diff] [blame] | 1582 | // Use better IR generation for certain implicit parameters. |
| 1583 | if (isa<ImplicitParamDecl>(D)) { |
| 1584 | // The only implicit argument a block has is its literal. |
| 1585 | if (BlockInfo) { |
| 1586 | LocalDeclMap[&D] = Arg; |
Adrian Prantl | 836e7c9 | 2013-03-14 17:53:33 +0000 | [diff] [blame] | 1587 | llvm::Value *LocalAddr = 0; |
| 1588 | if (CGM.getCodeGenOpts().OptimizationLevel == 0) { |
Adrian Prantl | 9b97adf | 2013-03-29 19:20:35 +0000 | [diff] [blame] | 1589 | // Allocate a stack slot to let the debug info survive the RA. |
Adrian Prantl | 836e7c9 | 2013-03-14 17:53:33 +0000 | [diff] [blame] | 1590 | llvm::AllocaInst *Alloc = CreateTempAlloca(ConvertTypeForMem(Ty), |
| 1591 | D.getName() + ".addr"); |
| 1592 | Alloc->setAlignment(getContext().getDeclAlign(&D).getQuantity()); |
| 1593 | LValue lv = MakeAddrLValue(Alloc, Ty, getContext().getDeclAlign(&D)); |
| 1594 | EmitStoreOfScalar(Arg, lv, /* isInitialization */ true); |
| 1595 | LocalAddr = Builder.CreateLoad(Alloc); |
| 1596 | } |
John McCall | 8178df3 | 2011-02-22 22:38:33 +0000 | [diff] [blame] | 1597 | |
| 1598 | if (CGDebugInfo *DI = getDebugInfo()) { |
Douglas Gregor | 4cdad31 | 2012-10-23 20:05:01 +0000 | [diff] [blame] | 1599 | if (CGM.getCodeGenOpts().getDebugInfo() |
| 1600 | >= CodeGenOptions::LimitedDebugInfo) { |
Alexey Samsonov | fd00eec | 2012-05-04 07:39:27 +0000 | [diff] [blame] | 1601 | DI->setLocation(D.getLocation()); |
Adrian Prantl | 836e7c9 | 2013-03-14 17:53:33 +0000 | [diff] [blame] | 1602 | DI->EmitDeclareOfBlockLiteralArgVariable(*BlockInfo, Arg, LocalAddr, Builder); |
Alexey Samsonov | fd00eec | 2012-05-04 07:39:27 +0000 | [diff] [blame] | 1603 | } |
John McCall | 8178df3 | 2011-02-22 22:38:33 +0000 | [diff] [blame] | 1604 | } |
| 1605 | |
| 1606 | return; |
| 1607 | } |
| 1608 | } |
| 1609 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1610 | llvm::Value *DeclPtr; |
Daniel Dunbar | e86bcf0 | 2010-02-08 22:53:07 +0000 | [diff] [blame] | 1611 | // If this is an aggregate or variable sized value, reuse the input pointer. |
| 1612 | if (!Ty->isConstantSizeType() || |
John McCall | 9d232c8 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 1613 | !CodeGenFunction::hasScalarEvaluationKind(Ty)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1614 | DeclPtr = Arg; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1615 | } else { |
Daniel Dunbar | e86bcf0 | 2010-02-08 22:53:07 +0000 | [diff] [blame] | 1616 | // Otherwise, create a temporary to hold the value. |
Eli Friedman | ddfb8d1 | 2011-11-03 20:31:28 +0000 | [diff] [blame] | 1617 | llvm::AllocaInst *Alloc = CreateTempAlloca(ConvertTypeForMem(Ty), |
| 1618 | D.getName() + ".addr"); |
Fariborz Jahanian | 41a6a3e | 2013-02-21 00:40:10 +0000 | [diff] [blame] | 1619 | CharUnits Align = getContext().getDeclAlign(&D); |
| 1620 | Alloc->setAlignment(Align.getQuantity()); |
Eli Friedman | ddfb8d1 | 2011-11-03 20:31:28 +0000 | [diff] [blame] | 1621 | DeclPtr = Alloc; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1622 | |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1623 | bool doStore = true; |
| 1624 | |
| 1625 | Qualifiers qs = Ty.getQualifiers(); |
Fariborz Jahanian | 41a6a3e | 2013-02-21 00:40:10 +0000 | [diff] [blame] | 1626 | LValue lv = MakeAddrLValue(DeclPtr, Ty, Align); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1627 | if (Qualifiers::ObjCLifetime lt = qs.getObjCLifetime()) { |
| 1628 | // We honor __attribute__((ns_consumed)) for types with lifetime. |
| 1629 | // For __strong, it's handled by just skipping the initial retain; |
| 1630 | // otherwise we have to balance out the initial +1 with an extra |
| 1631 | // cleanup to do the release at the end of the function. |
| 1632 | bool isConsumed = D.hasAttr<NSConsumedAttr>(); |
| 1633 | |
| 1634 | // 'self' is always formally __strong, but if this is not an |
| 1635 | // init method then we don't want to retain it. |
John McCall | 7acddac | 2011-06-17 06:42:21 +0000 | [diff] [blame] | 1636 | if (D.isARCPseudoStrong()) { |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1637 | const ObjCMethodDecl *method = cast<ObjCMethodDecl>(CurCodeDecl); |
| 1638 | assert(&D == method->getSelfDecl()); |
John McCall | 7acddac | 2011-06-17 06:42:21 +0000 | [diff] [blame] | 1639 | assert(lt == Qualifiers::OCL_Strong); |
| 1640 | assert(qs.hasConst()); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1641 | assert(method->getMethodFamily() != OMF_init); |
John McCall | 175d659 | 2011-06-15 23:40:09 +0000 | [diff] [blame] | 1642 | (void) method; |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1643 | lt = Qualifiers::OCL_ExplicitNone; |
| 1644 | } |
| 1645 | |
| 1646 | if (lt == Qualifiers::OCL_Strong) { |
Fariborz Jahanian | 41a6a3e | 2013-02-21 00:40:10 +0000 | [diff] [blame] | 1647 | if (!isConsumed) { |
| 1648 | if (CGM.getCodeGenOpts().OptimizationLevel == 0) { |
| 1649 | // use objc_storeStrong(&dest, value) for retaining the |
| 1650 | // object. But first, store a null into 'dest' because |
| 1651 | // objc_storeStrong attempts to release its old value. |
| 1652 | llvm::Value * Null = CGM.EmitNullConstant(D.getType()); |
| 1653 | EmitStoreOfScalar(Null, lv, /* isInitialization */ true); |
| 1654 | EmitARCStoreStrongCall(lv.getAddress(), Arg, true); |
| 1655 | doStore = false; |
| 1656 | } |
| 1657 | else |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1658 | // Don't use objc_retainBlock for block pointers, because we |
| 1659 | // don't want to Block_copy something just because we got it |
| 1660 | // as a parameter. |
Fariborz Jahanian | 41a6a3e | 2013-02-21 00:40:10 +0000 | [diff] [blame] | 1661 | Arg = EmitARCRetainNonBlock(Arg); |
| 1662 | } |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1663 | } else { |
| 1664 | // Push the cleanup for a consumed parameter. |
John McCall | 5b07e80 | 2013-03-13 03:10:54 +0000 | [diff] [blame] | 1665 | if (isConsumed) { |
| 1666 | ARCPreciseLifetime_t precise = (D.hasAttr<ObjCPreciseLifetimeAttr>() |
| 1667 | ? ARCPreciseLifetime : ARCImpreciseLifetime); |
| 1668 | EHStack.pushCleanup<ConsumeARCParameter>(getARCCleanupKind(), Arg, |
| 1669 | precise); |
| 1670 | } |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1671 | |
| 1672 | if (lt == Qualifiers::OCL_Weak) { |
| 1673 | EmitARCInitWeak(DeclPtr, Arg); |
Chad Rosier | 7acebfb | 2012-02-18 01:20:35 +0000 | [diff] [blame] | 1674 | doStore = false; // The weak init is a store, no need to do two. |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1675 | } |
| 1676 | } |
| 1677 | |
| 1678 | // Enter the cleanup scope. |
| 1679 | EmitAutoVarWithLifetime(*this, D, DeclPtr, lt); |
| 1680 | } |
| 1681 | |
Daniel Dunbar | e86bcf0 | 2010-02-08 22:53:07 +0000 | [diff] [blame] | 1682 | // Store the initial value into the alloca. |
Fariborz Jahanian | 41a6a3e | 2013-02-21 00:40:10 +0000 | [diff] [blame] | 1683 | if (doStore) |
David Chisnall | 7a7ee30 | 2012-01-16 17:27:18 +0000 | [diff] [blame] | 1684 | EmitStoreOfScalar(Arg, lv, /* isInitialization */ true); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1685 | } |
| 1686 | |
| 1687 | llvm::Value *&DMEntry = LocalDeclMap[&D]; |
| 1688 | assert(DMEntry == 0 && "Decl already exists in localdeclmap!"); |
| 1689 | DMEntry = DeclPtr; |
Sanjiv Gupta | cc9b163 | 2008-05-30 10:30:31 +0000 | [diff] [blame] | 1690 | |
| 1691 | // Emit debug info for param declaration. |
Alexey Samsonov | fd00eec | 2012-05-04 07:39:27 +0000 | [diff] [blame] | 1692 | if (CGDebugInfo *DI = getDebugInfo()) { |
Douglas Gregor | 4cdad31 | 2012-10-23 20:05:01 +0000 | [diff] [blame] | 1693 | if (CGM.getCodeGenOpts().getDebugInfo() |
| 1694 | >= CodeGenOptions::LimitedDebugInfo) { |
Alexey Samsonov | fd00eec | 2012-05-04 07:39:27 +0000 | [diff] [blame] | 1695 | DI->EmitDeclareOfArgVariable(&D, DeclPtr, ArgNo, Builder); |
| 1696 | } |
| 1697 | } |
Julien Lerouge | 77f68bb | 2011-09-09 22:41:49 +0000 | [diff] [blame] | 1698 | |
| 1699 | if (D.hasAttr<AnnotateAttr>()) |
| 1700 | EmitVarAnnotations(&D, DeclPtr); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1701 | } |