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 | |
Sanjiv Gupta | cc9b163 | 2008-05-30 10:30:31 +0000 | [diff] [blame] | 14 | #include "CGDebugInfo.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 15 | #include "CodeGenFunction.h" |
Anders Carlsson | 1a86b33 | 2007-10-17 00:52:43 +0000 | [diff] [blame] | 16 | #include "CodeGenModule.h" |
Daniel Dunbar | de7fb84 | 2008-08-11 05:00:27 +0000 | [diff] [blame] | 17 | #include "clang/AST/ASTContext.h" |
Ken Dyck | bdc601b | 2009-12-22 14:23:30 +0000 | [diff] [blame] | 18 | #include "clang/AST/CharUnits.h" |
Daniel Dunbar | c4a1dea | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 19 | #include "clang/AST/Decl.h" |
Anders Carlsson | 19567ee | 2008-08-25 01:38:19 +0000 | [diff] [blame] | 20 | #include "clang/AST/DeclObjC.h" |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 21 | #include "clang/Basic/SourceManager.h" |
Chris Lattner | 2621fd1 | 2008-05-08 05:58:21 +0000 | [diff] [blame] | 22 | #include "clang/Basic/TargetInfo.h" |
Chandler Carruth | 2811ccf | 2009-11-12 17:24:48 +0000 | [diff] [blame] | 23 | #include "clang/CodeGen/CodeGenOptions.h" |
Anders Carlsson | 1a86b33 | 2007-10-17 00:52:43 +0000 | [diff] [blame] | 24 | #include "llvm/GlobalVariable.h" |
Anders Carlsson | 5d46315 | 2008-12-12 07:38:43 +0000 | [diff] [blame] | 25 | #include "llvm/Intrinsics.h" |
Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 26 | #include "llvm/Target/TargetData.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 27 | #include "llvm/Type.h" |
| 28 | using namespace clang; |
| 29 | using namespace CodeGen; |
| 30 | |
| 31 | |
| 32 | void CodeGenFunction::EmitDecl(const Decl &D) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 33 | switch (D.getKind()) { |
Daniel Dunbar | fa133a1 | 2009-11-23 00:07:06 +0000 | [diff] [blame] | 34 | default: |
| 35 | CGM.ErrorUnsupported(&D, "decl"); |
| 36 | return; |
Chris Lattner | aa9fc46 | 2007-10-08 21:37:32 +0000 | [diff] [blame] | 37 | case Decl::ParmVar: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 38 | assert(0 && "Parmdecls should not be in declstmts!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 39 | case Decl::Function: // void X(); |
Argyrios Kyrtzidis | 35bc082 | 2008-10-15 00:42:39 +0000 | [diff] [blame] | 40 | case Decl::Record: // struct/union/class X; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 41 | case Decl::Enum: // enum X; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 42 | case Decl::EnumConstant: // enum ? { X = ? } |
Argyrios Kyrtzidis | 35bc082 | 2008-10-15 00:42:39 +0000 | [diff] [blame] | 43 | case Decl::CXXRecord: // struct/union/class X; [C++] |
Daniel Dunbar | fa133a1 | 2009-11-23 00:07:06 +0000 | [diff] [blame] | 44 | case Decl::Using: // using X; [C++] |
| 45 | case Decl::UsingShadow: |
| 46 | case Decl::UsingDirective: // using namespace X; [C++] |
Anders Carlsson | 7b0ca3f | 2009-12-03 17:26:31 +0000 | [diff] [blame] | 47 | case Decl::StaticAssert: // static_assert(X, ""); [C++0x] |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 48 | // None of these decls require codegen support. |
| 49 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 50 | |
Daniel Dunbar | 662174c8 | 2008-08-29 17:28:43 +0000 | [diff] [blame] | 51 | case Decl::Var: { |
| 52 | const VarDecl &VD = cast<VarDecl>(D); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 53 | assert(VD.isBlockVarDecl() && |
Daniel Dunbar | 662174c8 | 2008-08-29 17:28:43 +0000 | [diff] [blame] | 54 | "Should not see file-scope variables inside a function!"); |
| 55 | return EmitBlockVarDecl(VD); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 56 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 57 | |
Anders Carlsson | fcdbb93 | 2008-12-20 21:51:53 +0000 | [diff] [blame] | 58 | case Decl::Typedef: { // typedef int X; |
| 59 | const TypedefDecl &TD = cast<TypedefDecl>(D); |
| 60 | QualType Ty = TD.getUnderlyingType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 61 | |
Anders Carlsson | fcdbb93 | 2008-12-20 21:51:53 +0000 | [diff] [blame] | 62 | if (Ty->isVariablyModifiedType()) |
| 63 | EmitVLASize(Ty); |
| 64 | } |
Daniel Dunbar | 662174c8 | 2008-08-29 17:28:43 +0000 | [diff] [blame] | 65 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 66 | } |
| 67 | |
| 68 | /// EmitBlockVarDecl - This method handles emission of any variable declaration |
| 69 | /// inside a function, including static vars etc. |
Steve Naroff | 248a753 | 2008-04-15 22:42:06 +0000 | [diff] [blame] | 70 | void CodeGenFunction::EmitBlockVarDecl(const VarDecl &D) { |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 71 | if (D.hasAttr<AsmLabelAttr>()) |
Fariborz Jahanian | ba8639d | 2009-03-30 20:32:06 +0000 | [diff] [blame] | 72 | CGM.ErrorUnsupported(&D, "__asm__"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 73 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 74 | switch (D.getStorageClass()) { |
Daniel Dunbar | 5466c7b | 2009-04-14 02:25:56 +0000 | [diff] [blame] | 75 | case VarDecl::None: |
| 76 | case VarDecl::Auto: |
| 77 | case VarDecl::Register: |
| 78 | return EmitLocalBlockVarDecl(D); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 79 | case VarDecl::Static: |
Anders Carlsson | 1a86b33 | 2007-10-17 00:52:43 +0000 | [diff] [blame] | 80 | return EmitStaticBlockVarDecl(D); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 81 | case VarDecl::Extern: |
Daniel Dunbar | 5466c7b | 2009-04-14 02:25:56 +0000 | [diff] [blame] | 82 | case VarDecl::PrivateExtern: |
Lauro Ramos Venancio | fea90b8 | 2008-02-16 22:30:38 +0000 | [diff] [blame] | 83 | // Don't emit it now, allow it to be emitted lazily on its first use. |
| 84 | return; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 85 | } |
Daniel Dunbar | 5466c7b | 2009-04-14 02:25:56 +0000 | [diff] [blame] | 86 | |
| 87 | assert(0 && "Unknown storage class"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 88 | } |
| 89 | |
Chris Lattner | 761acc1 | 2009-12-05 08:22:11 +0000 | [diff] [blame] | 90 | static std::string GetStaticDeclName(CodeGenFunction &CGF, const VarDecl &D, |
| 91 | const char *Separator) { |
| 92 | CodeGenModule &CGM = CGF.CGM; |
| 93 | if (CGF.getContext().getLangOptions().CPlusPlus) |
| 94 | return CGM.getMangledName(&D); |
| 95 | |
| 96 | std::string ContextName; |
| 97 | if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(CGF.CurFuncDecl)) |
| 98 | ContextName = CGM.getMangledName(FD); |
| 99 | else if (isa<ObjCMethodDecl>(CGF.CurFuncDecl)) |
| 100 | ContextName = CGF.CurFn->getName(); |
| 101 | else |
| 102 | // FIXME: What about in a block?? |
| 103 | assert(0 && "Unknown context for block var decl"); |
| 104 | |
| 105 | return ContextName + Separator + D.getNameAsString(); |
| 106 | } |
| 107 | |
Daniel Dunbar | 0096acf | 2009-02-25 19:24:29 +0000 | [diff] [blame] | 108 | llvm::GlobalVariable * |
| 109 | CodeGenFunction::CreateStaticBlockVarDecl(const VarDecl &D, |
| 110 | const char *Separator, |
Chris Lattner | 761acc1 | 2009-12-05 08:22:11 +0000 | [diff] [blame] | 111 | llvm::GlobalValue::LinkageTypes Linkage) { |
Chris Lattner | 8bcfc5b | 2008-04-06 23:10:54 +0000 | [diff] [blame] | 112 | QualType Ty = D.getType(); |
Eli Friedman | 3c2b317 | 2008-02-15 12:20:59 +0000 | [diff] [blame] | 113 | assert(Ty->isConstantSizeType() && "VLAs can't be static"); |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 114 | |
Chris Lattner | 761acc1 | 2009-12-05 08:22:11 +0000 | [diff] [blame] | 115 | std::string Name = GetStaticDeclName(*this, D, Separator); |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 116 | |
Daniel Dunbar | 0096acf | 2009-02-25 19:24:29 +0000 | [diff] [blame] | 117 | const llvm::Type *LTy = CGM.getTypes().ConvertTypeForMem(Ty); |
Anders Carlsson | 41f8a13 | 2009-09-26 18:16:06 +0000 | [diff] [blame] | 118 | llvm::GlobalVariable *GV = |
| 119 | new llvm::GlobalVariable(CGM.getModule(), LTy, |
| 120 | Ty.isConstant(getContext()), Linkage, |
| 121 | CGM.EmitNullConstant(D.getType()), Name, 0, |
| 122 | D.isThreadSpecified(), Ty.getAddressSpace()); |
| 123 | GV->setAlignment(getContext().getDeclAlignInBytes(&D)); |
| 124 | return GV; |
Daniel Dunbar | 0096acf | 2009-02-25 19:24:29 +0000 | [diff] [blame] | 125 | } |
| 126 | |
Chris Lattner | 761acc1 | 2009-12-05 08:22:11 +0000 | [diff] [blame] | 127 | /// AddInitializerToGlobalBlockVarDecl - Add the initializer for 'D' to the |
| 128 | /// global variable that has already been created for it. If the initializer |
| 129 | /// has a different type than GV does, this may free GV and return a different |
| 130 | /// one. Otherwise it just returns GV. |
| 131 | llvm::GlobalVariable * |
| 132 | CodeGenFunction::AddInitializerToGlobalBlockVarDecl(const VarDecl &D, |
| 133 | llvm::GlobalVariable *GV) { |
| 134 | llvm::Constant *Init = CGM.EmitConstantExpr(D.getInit(), D.getType(), this); |
| 135 | |
| 136 | // If constant emission failed, then this should be a C++ static |
| 137 | // initializer. |
| 138 | if (!Init) { |
| 139 | if (!getContext().getLangOptions().CPlusPlus) |
| 140 | CGM.ErrorUnsupported(D.getInit(), "constant l-value expression"); |
| 141 | else |
| 142 | EmitStaticCXXBlockVarDeclInit(D, GV); |
| 143 | return GV; |
| 144 | } |
| 145 | |
| 146 | // The initializer may differ in type from the global. Rewrite |
| 147 | // the global to match the initializer. (We have to do this |
| 148 | // because some types, like unions, can't be completely represented |
| 149 | // in the LLVM type system.) |
| 150 | if (GV->getType() != Init->getType()) { |
| 151 | llvm::GlobalVariable *OldGV = GV; |
| 152 | |
| 153 | GV = new llvm::GlobalVariable(CGM.getModule(), Init->getType(), |
| 154 | OldGV->isConstant(), |
| 155 | OldGV->getLinkage(), Init, "", |
| 156 | 0, D.isThreadSpecified(), |
| 157 | D.getType().getAddressSpace()); |
| 158 | |
| 159 | // Steal the name of the old global |
| 160 | GV->takeName(OldGV); |
| 161 | |
| 162 | // Replace all uses of the old global with the new global |
| 163 | llvm::Constant *NewPtrForOldDecl = |
| 164 | llvm::ConstantExpr::getBitCast(GV, OldGV->getType()); |
| 165 | OldGV->replaceAllUsesWith(NewPtrForOldDecl); |
| 166 | |
| 167 | // Erase the old global, since it is no longer used. |
| 168 | OldGV->eraseFromParent(); |
| 169 | } |
| 170 | |
| 171 | GV->setInitializer(Init); |
| 172 | return GV; |
| 173 | } |
| 174 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 175 | void CodeGenFunction::EmitStaticBlockVarDecl(const VarDecl &D) { |
Daniel Dunbar | a985b31 | 2009-02-25 19:45:19 +0000 | [diff] [blame] | 176 | llvm::Value *&DMEntry = LocalDeclMap[&D]; |
| 177 | assert(DMEntry == 0 && "Decl already exists in localdeclmap!"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 178 | |
| 179 | llvm::GlobalVariable *GV = |
Daniel Dunbar | a985b31 | 2009-02-25 19:45:19 +0000 | [diff] [blame] | 180 | CreateStaticBlockVarDecl(D, ".", llvm::GlobalValue::InternalLinkage); |
| 181 | |
Daniel Dunbar | e5731f8 | 2009-02-25 20:08:33 +0000 | [diff] [blame] | 182 | // Store into LocalDeclMap before generating initializer to handle |
| 183 | // circular references. |
| 184 | DMEntry = GV; |
| 185 | |
Eli Friedman | c62aad8 | 2009-04-20 03:54:15 +0000 | [diff] [blame] | 186 | // Make sure to evaluate VLA bounds now so that we have them for later. |
Daniel Dunbar | d286f05 | 2009-07-19 06:58:07 +0000 | [diff] [blame] | 187 | // |
| 188 | // FIXME: Can this happen? |
Eli Friedman | c62aad8 | 2009-04-20 03:54:15 +0000 | [diff] [blame] | 189 | if (D.getType()->isVariablyModifiedType()) |
| 190 | EmitVLASize(D.getType()); |
| 191 | |
Chris Lattner | 761acc1 | 2009-12-05 08:22:11 +0000 | [diff] [blame] | 192 | // If this value has an initializer, emit it. |
| 193 | if (D.getInit()) |
| 194 | GV = AddInitializerToGlobalBlockVarDecl(D, GV); |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 195 | |
Daniel Dunbar | 30510ab | 2009-02-12 23:32:54 +0000 | [diff] [blame] | 196 | // FIXME: Merge attribute handling. |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 197 | if (const AnnotateAttr *AA = D.getAttr<AnnotateAttr>()) { |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 198 | SourceManager &SM = CGM.getContext().getSourceManager(); |
| 199 | llvm::Constant *Ann = |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 200 | CGM.EmitAnnotateAttr(GV, AA, |
Chris Lattner | f7cf85b | 2009-01-16 07:36:28 +0000 | [diff] [blame] | 201 | SM.getInstantiationLineNumber(D.getLocation())); |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 202 | CGM.AddAnnotation(Ann); |
| 203 | } |
| 204 | |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 205 | if (const SectionAttr *SA = D.getAttr<SectionAttr>()) |
Daniel Dunbar | 30510ab | 2009-02-12 23:32:54 +0000 | [diff] [blame] | 206 | GV->setSection(SA->getName()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 207 | |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 208 | if (D.hasAttr<UsedAttr>()) |
Daniel Dunbar | 5c61d97 | 2009-02-13 22:08:43 +0000 | [diff] [blame] | 209 | CGM.AddUsedGlobal(GV); |
| 210 | |
Daniel Dunbar | e5731f8 | 2009-02-25 20:08:33 +0000 | [diff] [blame] | 211 | // We may have to cast the constant because of the initializer |
| 212 | // mismatch above. |
| 213 | // |
| 214 | // FIXME: It is really dangerous to store this in the map; if anyone |
| 215 | // RAUW's the GV uses of this constant will be invalid. |
Eli Friedman | 2659052 | 2008-06-08 01:23:18 +0000 | [diff] [blame] | 216 | const llvm::Type *LTy = CGM.getTypes().ConvertTypeForMem(D.getType()); |
| 217 | const llvm::Type *LPtrTy = |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 218 | llvm::PointerType::get(LTy, D.getType().getAddressSpace()); |
Owen Anderson | 3c4972d | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 219 | DMEntry = llvm::ConstantExpr::getBitCast(GV, LPtrTy); |
Sanjiv Gupta | 686226b | 2008-06-05 08:59:10 +0000 | [diff] [blame] | 220 | |
| 221 | // Emit global variable debug descriptor for static vars. |
Anders Carlsson | e896d98 | 2009-02-13 08:11:52 +0000 | [diff] [blame] | 222 | CGDebugInfo *DI = getDebugInfo(); |
Mike Stump | 4451bd9 | 2009-02-20 00:19:45 +0000 | [diff] [blame] | 223 | if (DI) { |
Daniel Dunbar | 66031a5 | 2008-10-17 16:15:48 +0000 | [diff] [blame] | 224 | DI->setLocation(D.getLocation()); |
Sanjiv Gupta | 686226b | 2008-06-05 08:59:10 +0000 | [diff] [blame] | 225 | DI->EmitGlobalVariable(static_cast<llvm::GlobalVariable *>(GV), &D); |
| 226 | } |
Anders Carlsson | 1a86b33 | 2007-10-17 00:52:43 +0000 | [diff] [blame] | 227 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 228 | |
Anders Carlsson | 7dfa407 | 2009-09-12 02:14:24 +0000 | [diff] [blame] | 229 | unsigned CodeGenFunction::getByRefValueLLVMField(const ValueDecl *VD) const { |
| 230 | assert(ByRefValueInfo.count(VD) && "Did not find value!"); |
| 231 | |
| 232 | return ByRefValueInfo.find(VD)->second.second; |
| 233 | } |
| 234 | |
Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 235 | /// BuildByRefType - This routine changes a __block variable declared as T x |
| 236 | /// into: |
| 237 | /// |
| 238 | /// struct { |
| 239 | /// void *__isa; |
| 240 | /// void *__forwarding; |
| 241 | /// int32_t __flags; |
| 242 | /// int32_t __size; |
Mike Stump | 39605b4 | 2009-09-22 02:12:52 +0000 | [diff] [blame] | 243 | /// void *__copy_helper; // only if needed |
| 244 | /// void *__destroy_helper; // only if needed |
| 245 | /// char padding[X]; // only if needed |
Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 246 | /// T x; |
| 247 | /// } x |
| 248 | /// |
Anders Carlsson | 9ad5513 | 2009-09-09 02:51:03 +0000 | [diff] [blame] | 249 | const llvm::Type *CodeGenFunction::BuildByRefType(const ValueDecl *D) { |
Anders Carlsson | 7dfa407 | 2009-09-12 02:14:24 +0000 | [diff] [blame] | 250 | std::pair<const llvm::Type *, unsigned> &Info = ByRefValueInfo[D]; |
| 251 | if (Info.first) |
| 252 | return Info.first; |
| 253 | |
Anders Carlsson | 9ad5513 | 2009-09-09 02:51:03 +0000 | [diff] [blame] | 254 | QualType Ty = D->getType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 255 | |
Anders Carlsson | 18be84c | 2009-09-12 02:44:18 +0000 | [diff] [blame] | 256 | std::vector<const llvm::Type *> Types; |
Anders Carlsson | 3604386 | 2009-09-10 01:32:12 +0000 | [diff] [blame] | 257 | |
Benjamin Kramer | 3c0ef8c | 2009-10-13 10:07:13 +0000 | [diff] [blame] | 258 | const llvm::PointerType *Int8PtrTy = llvm::Type::getInt8PtrTy(VMContext); |
Anders Carlsson | 18be84c | 2009-09-12 02:44:18 +0000 | [diff] [blame] | 259 | |
Anders Carlsson | 3604386 | 2009-09-10 01:32:12 +0000 | [diff] [blame] | 260 | llvm::PATypeHolder ByRefTypeHolder = llvm::OpaqueType::get(VMContext); |
| 261 | |
Anders Carlsson | 18be84c | 2009-09-12 02:44:18 +0000 | [diff] [blame] | 262 | // void *__isa; |
| 263 | Types.push_back(Int8PtrTy); |
| 264 | |
| 265 | // void *__forwarding; |
| 266 | Types.push_back(llvm::PointerType::getUnqual(ByRefTypeHolder)); |
| 267 | |
| 268 | // int32_t __flags; |
| 269 | Types.push_back(llvm::Type::getInt32Ty(VMContext)); |
| 270 | |
| 271 | // int32_t __size; |
| 272 | Types.push_back(llvm::Type::getInt32Ty(VMContext)); |
| 273 | |
| 274 | bool HasCopyAndDispose = BlockRequiresCopying(Ty); |
| 275 | if (HasCopyAndDispose) { |
| 276 | /// void *__copy_helper; |
| 277 | Types.push_back(Int8PtrTy); |
| 278 | |
| 279 | /// void *__destroy_helper; |
| 280 | Types.push_back(Int8PtrTy); |
Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 281 | } |
Anders Carlsson | 18be84c | 2009-09-12 02:44:18 +0000 | [diff] [blame] | 282 | |
| 283 | bool Packed = false; |
| 284 | unsigned Align = getContext().getDeclAlignInBytes(D); |
| 285 | if (Align > Target.getPointerAlign(0) / 8) { |
| 286 | // We have to insert padding. |
| 287 | |
| 288 | // The struct above has 2 32-bit integers. |
| 289 | unsigned CurrentOffsetInBytes = 4 * 2; |
| 290 | |
| 291 | // And either 2 or 4 pointers. |
| 292 | CurrentOffsetInBytes += (HasCopyAndDispose ? 4 : 2) * |
| 293 | CGM.getTargetData().getTypeAllocSize(Int8PtrTy); |
| 294 | |
| 295 | // Align the offset. |
| 296 | unsigned AlignedOffsetInBytes = |
| 297 | llvm::RoundUpToAlignment(CurrentOffsetInBytes, Align); |
| 298 | |
| 299 | unsigned NumPaddingBytes = AlignedOffsetInBytes - CurrentOffsetInBytes; |
Anders Carlsson | e0c8822 | 2009-09-13 17:55:13 +0000 | [diff] [blame] | 300 | if (NumPaddingBytes > 0) { |
| 301 | const llvm::Type *Ty = llvm::Type::getInt8Ty(VMContext); |
Mike Stump | 04c688a | 2009-10-21 00:42:55 +0000 | [diff] [blame] | 302 | // FIXME: We need a sema error for alignment larger than the minimum of |
| 303 | // the maximal stack alignmint and the alignment of malloc on the system. |
Anders Carlsson | e0c8822 | 2009-09-13 17:55:13 +0000 | [diff] [blame] | 304 | if (NumPaddingBytes > 1) |
| 305 | Ty = llvm::ArrayType::get(Ty, NumPaddingBytes); |
Anders Carlsson | 18be84c | 2009-09-12 02:44:18 +0000 | [diff] [blame] | 306 | |
Anders Carlsson | e0c8822 | 2009-09-13 17:55:13 +0000 | [diff] [blame] | 307 | Types.push_back(Ty); |
Anders Carlsson | 18be84c | 2009-09-12 02:44:18 +0000 | [diff] [blame] | 308 | |
Anders Carlsson | e0c8822 | 2009-09-13 17:55:13 +0000 | [diff] [blame] | 309 | // We want a packed struct. |
| 310 | Packed = true; |
| 311 | } |
Anders Carlsson | 18be84c | 2009-09-12 02:44:18 +0000 | [diff] [blame] | 312 | } |
| 313 | |
| 314 | // T x; |
| 315 | Types.push_back(ConvertType(Ty)); |
Anders Carlsson | 7dfa407 | 2009-09-12 02:14:24 +0000 | [diff] [blame] | 316 | |
Anders Carlsson | 18be84c | 2009-09-12 02:44:18 +0000 | [diff] [blame] | 317 | const llvm::Type *T = llvm::StructType::get(VMContext, Types, Packed); |
Anders Carlsson | 3604386 | 2009-09-10 01:32:12 +0000 | [diff] [blame] | 318 | |
| 319 | cast<llvm::OpaqueType>(ByRefTypeHolder.get())->refineAbstractTypeTo(T); |
| 320 | CGM.getModule().addTypeName("struct.__block_byref_" + D->getNameAsString(), |
| 321 | ByRefTypeHolder.get()); |
| 322 | |
Anders Carlsson | 7dfa407 | 2009-09-12 02:14:24 +0000 | [diff] [blame] | 323 | Info.first = ByRefTypeHolder.get(); |
Anders Carlsson | 18be84c | 2009-09-12 02:44:18 +0000 | [diff] [blame] | 324 | |
| 325 | Info.second = Types.size() - 1; |
Anders Carlsson | 7dfa407 | 2009-09-12 02:14:24 +0000 | [diff] [blame] | 326 | |
| 327 | return Info.first; |
Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 328 | } |
| 329 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 330 | /// EmitLocalBlockVarDecl - Emit code and set up an entry in LocalDeclMap for a |
| 331 | /// variable declaration with auto, register, or no storage class specifier. |
Chris Lattner | 2621fd1 | 2008-05-08 05:58:21 +0000 | [diff] [blame] | 332 | /// These turn into simple stack objects, or GlobalValues depending on target. |
Steve Naroff | 248a753 | 2008-04-15 22:42:06 +0000 | [diff] [blame] | 333 | void CodeGenFunction::EmitLocalBlockVarDecl(const VarDecl &D) { |
Chris Lattner | 8bcfc5b | 2008-04-06 23:10:54 +0000 | [diff] [blame] | 334 | QualType Ty = D.getType(); |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 335 | bool isByRef = D.hasAttr<BlocksAttr>(); |
Mike Stump | 797b632 | 2009-03-05 01:23:13 +0000 | [diff] [blame] | 336 | bool needsDispose = false; |
Mike Stump | 3899a7f | 2009-06-05 23:26:36 +0000 | [diff] [blame] | 337 | unsigned Align = 0; |
Chris Lattner | 761acc1 | 2009-12-05 08:22:11 +0000 | [diff] [blame] | 338 | bool IsSimpleConstantInitializer = false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 339 | |
| 340 | llvm::Value *DeclPtr; |
Eli Friedman | 3c2b317 | 2008-02-15 12:20:59 +0000 | [diff] [blame] | 341 | if (Ty->isConstantSizeType()) { |
Chris Lattner | 2621fd1 | 2008-05-08 05:58:21 +0000 | [diff] [blame] | 342 | if (!Target.useGlobalsForAutomaticVariables()) { |
Tanya Lattner | 59876c2 | 2009-11-04 01:18:09 +0000 | [diff] [blame] | 343 | |
Chris Lattner | ff933b7 | 2009-12-05 06:49:57 +0000 | [diff] [blame] | 344 | // If this value is an array or struct, is POD, and if the initializer is |
| 345 | // a staticly determinable constant, try to optimize it. |
Chris Lattner | 761acc1 | 2009-12-05 08:22:11 +0000 | [diff] [blame] | 346 | if (D.getInit() && !isByRef && |
Chris Lattner | ff933b7 | 2009-12-05 06:49:57 +0000 | [diff] [blame] | 347 | (Ty->isArrayType() || Ty->isRecordType()) && |
| 348 | Ty->isPODType() && |
| 349 | D.getInit()->isConstantInitializer(getContext())) { |
Chris Lattner | ff933b7 | 2009-12-05 06:49:57 +0000 | [diff] [blame] | 350 | // If this variable is marked 'const', emit the value as a global. |
| 351 | if (CGM.getCodeGenOpts().MergeAllConstants && |
| 352 | Ty.isConstant(getContext())) { |
Tanya Lattner | 59876c2 | 2009-11-04 01:18:09 +0000 | [diff] [blame] | 353 | EmitStaticBlockVarDecl(D); |
| 354 | return; |
| 355 | } |
Chris Lattner | 761acc1 | 2009-12-05 08:22:11 +0000 | [diff] [blame] | 356 | |
| 357 | IsSimpleConstantInitializer = true; |
Tanya Lattner | 59876c2 | 2009-11-04 01:18:09 +0000 | [diff] [blame] | 358 | } |
| 359 | |
Chris Lattner | 2621fd1 | 2008-05-08 05:58:21 +0000 | [diff] [blame] | 360 | // A normal fixed sized variable becomes an alloca in the entry block. |
Eli Friedman | a3460ac | 2009-03-04 04:25:14 +0000 | [diff] [blame] | 361 | const llvm::Type *LTy = ConvertTypeForMem(Ty); |
Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 362 | if (isByRef) |
Anders Carlsson | 9ad5513 | 2009-09-09 02:51:03 +0000 | [diff] [blame] | 363 | LTy = BuildByRefType(&D); |
Chris Lattner | f146684 | 2009-03-22 00:24:14 +0000 | [diff] [blame] | 364 | llvm::AllocaInst *Alloc = CreateTempAlloca(LTy); |
Benjamin Kramer | 155fd79 | 2009-12-08 14:04:35 +0000 | [diff] [blame] | 365 | Alloc->setName(D.getNameAsString()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 366 | |
Chris Lattner | 761acc1 | 2009-12-05 08:22:11 +0000 | [diff] [blame] | 367 | Align = getContext().getDeclAlignInBytes(&D); |
Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 368 | if (isByRef) |
Mike Stump | 3899a7f | 2009-06-05 23:26:36 +0000 | [diff] [blame] | 369 | Align = std::max(Align, unsigned(Target.getPointerAlign(0) / 8)); |
| 370 | Alloc->setAlignment(Align); |
Eli Friedman | 77eedd6 | 2008-05-31 21:20:41 +0000 | [diff] [blame] | 371 | DeclPtr = Alloc; |
Chris Lattner | 2621fd1 | 2008-05-08 05:58:21 +0000 | [diff] [blame] | 372 | } else { |
| 373 | // Targets that don't support recursion emit locals as globals. |
| 374 | const char *Class = |
| 375 | D.getStorageClass() == VarDecl::Register ? ".reg." : ".auto."; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 376 | DeclPtr = CreateStaticBlockVarDecl(D, Class, |
Daniel Dunbar | a985b31 | 2009-02-25 19:45:19 +0000 | [diff] [blame] | 377 | llvm::GlobalValue |
| 378 | ::InternalLinkage); |
Chris Lattner | 2621fd1 | 2008-05-08 05:58:21 +0000 | [diff] [blame] | 379 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 380 | |
Daniel Dunbar | d286f05 | 2009-07-19 06:58:07 +0000 | [diff] [blame] | 381 | // FIXME: Can this happen? |
Anders Carlsson | 60d3541 | 2008-12-20 20:46:34 +0000 | [diff] [blame] | 382 | if (Ty->isVariablyModifiedType()) |
| 383 | EmitVLASize(Ty); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 384 | } else { |
Daniel Dunbar | d286f05 | 2009-07-19 06:58:07 +0000 | [diff] [blame] | 385 | EnsureInsertPoint(); |
| 386 | |
Anders Carlsson | 5ecb1b9 | 2009-02-09 20:41:50 +0000 | [diff] [blame] | 387 | if (!DidCallStackSave) { |
Anders Carlsson | 5d46315 | 2008-12-12 07:38:43 +0000 | [diff] [blame] | 388 | // Save the stack. |
Benjamin Kramer | 3c0ef8c | 2009-10-13 10:07:13 +0000 | [diff] [blame] | 389 | const llvm::Type *LTy = llvm::Type::getInt8PtrTy(VMContext); |
Anders Carlsson | 5d46315 | 2008-12-12 07:38:43 +0000 | [diff] [blame] | 390 | llvm::Value *Stack = CreateTempAlloca(LTy, "saved_stack"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 391 | |
Anders Carlsson | 5d46315 | 2008-12-12 07:38:43 +0000 | [diff] [blame] | 392 | llvm::Value *F = CGM.getIntrinsic(llvm::Intrinsic::stacksave); |
| 393 | llvm::Value *V = Builder.CreateCall(F); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 394 | |
Anders Carlsson | 5d46315 | 2008-12-12 07:38:43 +0000 | [diff] [blame] | 395 | Builder.CreateStore(V, Stack); |
Anders Carlsson | 5ecb1b9 | 2009-02-09 20:41:50 +0000 | [diff] [blame] | 396 | |
| 397 | DidCallStackSave = true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 398 | |
Anders Carlsson | 5ecb1b9 | 2009-02-09 20:41:50 +0000 | [diff] [blame] | 399 | { |
| 400 | // Push a cleanup block and restore the stack there. |
Douglas Gregor | d5782d5 | 2009-11-24 16:21:10 +0000 | [diff] [blame] | 401 | DelayedCleanupBlock scope(*this); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 402 | |
Anders Carlsson | 5ecb1b9 | 2009-02-09 20:41:50 +0000 | [diff] [blame] | 403 | V = Builder.CreateLoad(Stack, "tmp"); |
| 404 | llvm::Value *F = CGM.getIntrinsic(llvm::Intrinsic::stackrestore); |
| 405 | Builder.CreateCall(F, V); |
| 406 | } |
Anders Carlsson | 5d46315 | 2008-12-12 07:38:43 +0000 | [diff] [blame] | 407 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 408 | |
Anders Carlsson | 5d46315 | 2008-12-12 07:38:43 +0000 | [diff] [blame] | 409 | // Get the element type. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 410 | const llvm::Type *LElemTy = ConvertTypeForMem(Ty); |
Anders Carlsson | 5d46315 | 2008-12-12 07:38:43 +0000 | [diff] [blame] | 411 | const llvm::Type *LElemPtrTy = |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 412 | llvm::PointerType::get(LElemTy, D.getType().getAddressSpace()); |
Anders Carlsson | 5d46315 | 2008-12-12 07:38:43 +0000 | [diff] [blame] | 413 | |
Anders Carlsson | 60d3541 | 2008-12-20 20:46:34 +0000 | [diff] [blame] | 414 | llvm::Value *VLASize = EmitVLASize(Ty); |
Anders Carlsson | 5d46315 | 2008-12-12 07:38:43 +0000 | [diff] [blame] | 415 | |
Anders Carlsson | 96f2147 | 2009-02-05 19:43:10 +0000 | [diff] [blame] | 416 | // Downcast the VLA size expression |
Owen Anderson | 0032b27 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 417 | VLASize = Builder.CreateIntCast(VLASize, llvm::Type::getInt32Ty(VMContext), |
| 418 | false, "tmp"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 419 | |
Anders Carlsson | 5d46315 | 2008-12-12 07:38:43 +0000 | [diff] [blame] | 420 | // Allocate memory for the array. |
Anders Carlsson | 41f8a13 | 2009-09-26 18:16:06 +0000 | [diff] [blame] | 421 | llvm::AllocaInst *VLA = |
| 422 | Builder.CreateAlloca(llvm::Type::getInt8Ty(VMContext), VLASize, "vla"); |
| 423 | VLA->setAlignment(getContext().getDeclAlignInBytes(&D)); |
| 424 | |
Eli Friedman | 8f39f5e | 2008-12-20 23:11:59 +0000 | [diff] [blame] | 425 | DeclPtr = Builder.CreateBitCast(VLA, LElemPtrTy, "tmp"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 426 | } |
Eli Friedman | 8f39f5e | 2008-12-20 23:11:59 +0000 | [diff] [blame] | 427 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 428 | llvm::Value *&DMEntry = LocalDeclMap[&D]; |
| 429 | assert(DMEntry == 0 && "Decl already exists in localdeclmap!"); |
| 430 | DMEntry = DeclPtr; |
Sanjiv Gupta | cc9b163 | 2008-05-30 10:30:31 +0000 | [diff] [blame] | 431 | |
| 432 | // Emit debug info for local var declaration. |
Anders Carlsson | e896d98 | 2009-02-13 08:11:52 +0000 | [diff] [blame] | 433 | if (CGDebugInfo *DI = getDebugInfo()) { |
Daniel Dunbar | 25b6ebf | 2009-07-19 07:03:11 +0000 | [diff] [blame] | 434 | assert(HaveInsertPoint() && "Unexpected unreachable point!"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 435 | |
Daniel Dunbar | 66031a5 | 2008-10-17 16:15:48 +0000 | [diff] [blame] | 436 | DI->setLocation(D.getLocation()); |
Sanjiv Gupta | 4381d4b | 2009-05-22 13:54:25 +0000 | [diff] [blame] | 437 | if (Target.useGlobalsForAutomaticVariables()) { |
| 438 | DI->EmitGlobalVariable(static_cast<llvm::GlobalVariable *>(DeclPtr), &D); |
Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 439 | } else |
| 440 | DI->EmitDeclareOfAutoVariable(&D, DeclPtr, Builder); |
Sanjiv Gupta | cc9b163 | 2008-05-30 10:30:31 +0000 | [diff] [blame] | 441 | } |
| 442 | |
Chris Lattner | 1978596 | 2007-07-12 00:39:48 +0000 | [diff] [blame] | 443 | // If this local has an initializer, emit it now. |
Daniel Dunbar | d286f05 | 2009-07-19 06:58:07 +0000 | [diff] [blame] | 444 | const Expr *Init = D.getInit(); |
| 445 | |
| 446 | // If we are at an unreachable point, we don't need to emit the initializer |
| 447 | // unless it contains a label. |
| 448 | if (!HaveInsertPoint()) { |
| 449 | if (!ContainsLabel(Init)) |
| 450 | Init = 0; |
| 451 | else |
| 452 | EnsureInsertPoint(); |
| 453 | } |
| 454 | |
| 455 | if (Init) { |
Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 456 | llvm::Value *Loc = DeclPtr; |
Anders Carlsson | 7dfa407 | 2009-09-12 02:14:24 +0000 | [diff] [blame] | 457 | if (isByRef) |
| 458 | Loc = Builder.CreateStructGEP(DeclPtr, getByRefValueLLVMField(&D), |
| 459 | D.getNameAsString()); |
| 460 | |
Chris Lattner | 761acc1 | 2009-12-05 08:22:11 +0000 | [diff] [blame] | 461 | bool isVolatile = |
| 462 | getContext().getCanonicalType(D.getType()).isVolatileQualified(); |
| 463 | |
| 464 | // If the initializer was a simple constant initializer, we can optimize it |
| 465 | // in various ways. |
| 466 | if (IsSimpleConstantInitializer) { |
| 467 | llvm::Constant *Init = CGM.EmitConstantExpr(D.getInit(),D.getType(),this); |
| 468 | assert(Init != 0 && "Wasn't a simple constant init?"); |
| 469 | |
| 470 | llvm::Value *AlignVal = |
| 471 | llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), Align); |
| 472 | const llvm::Type *IntPtr = |
| 473 | llvm::IntegerType::get(VMContext, LLVMPointerWidth); |
| 474 | llvm::Value *SizeVal = |
Ken Dyck | 4273f70 | 2009-12-18 15:55:54 +0000 | [diff] [blame] | 475 | llvm::ConstantInt::get(IntPtr, |
| 476 | getContext().getTypeSizeInChars(Ty).getRaw()); |
Chris Lattner | 761acc1 | 2009-12-05 08:22:11 +0000 | [diff] [blame] | 477 | |
| 478 | const llvm::Type *BP = llvm::Type::getInt8PtrTy(VMContext); |
| 479 | if (Loc->getType() != BP) |
| 480 | Loc = Builder.CreateBitCast(Loc, BP, "tmp"); |
| 481 | |
| 482 | // If the initializer is all zeros, codegen with memset. |
| 483 | if (isa<llvm::ConstantAggregateZero>(Init)) { |
| 484 | llvm::Value *Zero = |
| 485 | llvm::ConstantInt::get(llvm::Type::getInt8Ty(VMContext), 0); |
| 486 | Builder.CreateCall4(CGM.getMemSetFn(), Loc, Zero, SizeVal, AlignVal); |
| 487 | } else { |
| 488 | // Otherwise, create a temporary global with the initializer then |
| 489 | // memcpy from the global to the alloca. |
| 490 | std::string Name = GetStaticDeclName(*this, D, "."); |
| 491 | llvm::GlobalVariable *GV = |
| 492 | new llvm::GlobalVariable(CGM.getModule(), Init->getType(), true, |
| 493 | llvm::GlobalValue::InternalLinkage, |
| 494 | Init, Name, 0, false, 0); |
| 495 | GV->setAlignment(Align); |
| 496 | |
| 497 | llvm::Value *SrcPtr = GV; |
| 498 | if (SrcPtr->getType() != BP) |
| 499 | SrcPtr = Builder.CreateBitCast(SrcPtr, BP, "tmp"); |
| 500 | |
| 501 | Builder.CreateCall4(CGM.getMemCpyFn(), Loc, SrcPtr, SizeVal, AlignVal); |
| 502 | } |
| 503 | } else if (Ty->isReferenceType()) { |
Anders Carlsson | 14c5cbf | 2009-08-16 07:36:22 +0000 | [diff] [blame] | 504 | RValue RV = EmitReferenceBindingToExpr(Init, Ty, /*IsInitializer=*/true); |
| 505 | EmitStoreOfScalar(RV.getScalarVal(), Loc, false, Ty); |
Eli Friedman | 4a18784 | 2009-05-27 05:39:06 +0000 | [diff] [blame] | 506 | } else if (!hasAggregateLLVMType(Init->getType())) { |
Chris Lattner | d31beb1 | 2007-08-26 07:29:23 +0000 | [diff] [blame] | 507 | llvm::Value *V = EmitScalarExpr(Init); |
Mike Stump | df317bf | 2009-11-03 23:25:48 +0000 | [diff] [blame] | 508 | EmitStoreOfScalar(V, Loc, isVolatile, D.getType()); |
Chris Lattner | 9b2dc28 | 2008-04-04 16:54:41 +0000 | [diff] [blame] | 509 | } else if (Init->getType()->isAnyComplexType()) { |
Mike Stump | df317bf | 2009-11-03 23:25:48 +0000 | [diff] [blame] | 510 | EmitComplexExprIntoAddr(Init, Loc, isVolatile); |
Chris Lattner | 9a19edf | 2007-08-26 05:13:54 +0000 | [diff] [blame] | 511 | } else { |
Mike Stump | df317bf | 2009-11-03 23:25:48 +0000 | [diff] [blame] | 512 | EmitAggExpr(Init, Loc, isVolatile); |
Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 513 | } |
| 514 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 515 | |
Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 516 | if (isByRef) { |
Benjamin Kramer | 3c0ef8c | 2009-10-13 10:07:13 +0000 | [diff] [blame] | 517 | const llvm::PointerType *PtrToInt8Ty = llvm::Type::getInt8PtrTy(VMContext); |
Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 518 | |
Daniel Dunbar | d286f05 | 2009-07-19 06:58:07 +0000 | [diff] [blame] | 519 | EnsureInsertPoint(); |
Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 520 | llvm::Value *isa_field = Builder.CreateStructGEP(DeclPtr, 0); |
| 521 | llvm::Value *forwarding_field = Builder.CreateStructGEP(DeclPtr, 1); |
| 522 | llvm::Value *flags_field = Builder.CreateStructGEP(DeclPtr, 2); |
| 523 | llvm::Value *size_field = Builder.CreateStructGEP(DeclPtr, 3); |
| 524 | llvm::Value *V; |
| 525 | int flag = 0; |
| 526 | int flags = 0; |
| 527 | |
Mike Stump | f4bc312 | 2009-03-07 06:04:31 +0000 | [diff] [blame] | 528 | needsDispose = true; |
Mike Stump | 00470a1 | 2009-03-05 08:32:30 +0000 | [diff] [blame] | 529 | |
Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 530 | if (Ty->isBlockPointerType()) { |
| 531 | flag |= BLOCK_FIELD_IS_BLOCK; |
| 532 | flags |= BLOCK_HAS_COPY_DISPOSE; |
| 533 | } else if (BlockRequiresCopying(Ty)) { |
Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 534 | flag |= BLOCK_FIELD_IS_OBJECT; |
Mike Stump | 1851b68 | 2009-03-06 04:53:30 +0000 | [diff] [blame] | 535 | flags |= BLOCK_HAS_COPY_DISPOSE; |
Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 536 | } |
Mike Stump | f4bc312 | 2009-03-07 06:04:31 +0000 | [diff] [blame] | 537 | |
| 538 | // FIXME: Someone double check this. |
| 539 | if (Ty.isObjCGCWeak()) |
| 540 | flag |= BLOCK_FIELD_IS_WEAK; |
Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 541 | |
| 542 | int isa = 0; |
| 543 | if (flag&BLOCK_FIELD_IS_WEAK) |
| 544 | isa = 1; |
Owen Anderson | 0032b27 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 545 | V = llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), isa); |
Mike Stump | a4f668f | 2009-03-06 01:33:24 +0000 | [diff] [blame] | 546 | V = Builder.CreateIntToPtr(V, PtrToInt8Ty, "isa"); |
Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 547 | Builder.CreateStore(V, isa_field); |
| 548 | |
Anders Carlsson | 3604386 | 2009-09-10 01:32:12 +0000 | [diff] [blame] | 549 | Builder.CreateStore(DeclPtr, forwarding_field); |
Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 550 | |
Owen Anderson | 0032b27 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 551 | V = llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), flags); |
Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 552 | Builder.CreateStore(V, flags_field); |
| 553 | |
Mike Stump | 00470a1 | 2009-03-05 08:32:30 +0000 | [diff] [blame] | 554 | const llvm::Type *V1; |
| 555 | V1 = cast<llvm::PointerType>(DeclPtr->getType())->getElementType(); |
Owen Anderson | 0032b27 | 2009-08-13 21:57:51 +0000 | [diff] [blame] | 556 | V = llvm::ConstantInt::get(llvm::Type::getInt32Ty(VMContext), |
Mike Stump | 00470a1 | 2009-03-05 08:32:30 +0000 | [diff] [blame] | 557 | (CGM.getTargetData().getTypeStoreSizeInBits(V1) |
| 558 | / 8)); |
Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 559 | Builder.CreateStore(V, size_field); |
| 560 | |
| 561 | if (flags & BLOCK_HAS_COPY_DISPOSE) { |
Mike Stump | 00470a1 | 2009-03-05 08:32:30 +0000 | [diff] [blame] | 562 | BlockHasCopyDispose = true; |
Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 563 | llvm::Value *copy_helper = Builder.CreateStructGEP(DeclPtr, 4); |
Mike Stump | 3899a7f | 2009-06-05 23:26:36 +0000 | [diff] [blame] | 564 | Builder.CreateStore(BuildbyrefCopyHelper(DeclPtr->getType(), flag, Align), |
Mike Stump | ee09422 | 2009-03-06 06:12:24 +0000 | [diff] [blame] | 565 | copy_helper); |
Mike Stump | dab514f | 2009-03-04 03:23:46 +0000 | [diff] [blame] | 566 | |
Mike Stump | 1851b68 | 2009-03-06 04:53:30 +0000 | [diff] [blame] | 567 | llvm::Value *destroy_helper = Builder.CreateStructGEP(DeclPtr, 5); |
Mike Stump | 3899a7f | 2009-06-05 23:26:36 +0000 | [diff] [blame] | 568 | Builder.CreateStore(BuildbyrefDestroyHelper(DeclPtr->getType(), flag, |
| 569 | Align), |
Mike Stump | 1851b68 | 2009-03-06 04:53:30 +0000 | [diff] [blame] | 570 | destroy_helper); |
Chris Lattner | 9a19edf | 2007-08-26 05:13:54 +0000 | [diff] [blame] | 571 | } |
Chris Lattner | 7f02f72 | 2007-08-24 05:35:26 +0000 | [diff] [blame] | 572 | } |
Anders Carlsson | 69c68b7 | 2009-02-07 23:51:38 +0000 | [diff] [blame] | 573 | |
Fariborz Jahanian | 6ca0b32 | 2009-08-03 20:20:07 +0000 | [diff] [blame] | 574 | // Handle CXX destruction of variables. |
Fariborz Jahanian | 667f36a | 2009-08-03 20:51:29 +0000 | [diff] [blame] | 575 | QualType DtorTy(Ty); |
Douglas Gregor | 89c49f0 | 2009-11-09 22:08:55 +0000 | [diff] [blame] | 576 | while (const ArrayType *Array = getContext().getAsArrayType(DtorTy)) |
Fariborz Jahanian | 6fba746 | 2009-10-29 16:22:54 +0000 | [diff] [blame] | 577 | DtorTy = getContext().getBaseElementType(Array); |
Fariborz Jahanian | 667f36a | 2009-08-03 20:51:29 +0000 | [diff] [blame] | 578 | if (const RecordType *RT = DtorTy->getAs<RecordType>()) |
Fariborz Jahanian | 6ca0b32 | 2009-08-03 20:20:07 +0000 | [diff] [blame] | 579 | if (CXXRecordDecl *ClassDecl = dyn_cast<CXXRecordDecl>(RT->getDecl())) { |
| 580 | if (!ClassDecl->hasTrivialDestructor()) { |
| 581 | const CXXDestructorDecl *D = ClassDecl->getDestructor(getContext()); |
| 582 | assert(D && "EmitLocalBlockVarDecl - destructor is nul"); |
Fariborz Jahanian | 6fba746 | 2009-10-29 16:22:54 +0000 | [diff] [blame] | 583 | |
Fariborz Jahanian | 6fba746 | 2009-10-29 16:22:54 +0000 | [diff] [blame] | 584 | if (const ConstantArrayType *Array = |
| 585 | getContext().getAsConstantArrayType(Ty)) { |
Mike Stump | d88ea56 | 2009-12-09 03:35:49 +0000 | [diff] [blame] | 586 | { |
| 587 | DelayedCleanupBlock Scope(*this); |
| 588 | QualType BaseElementTy = getContext().getBaseElementType(Array); |
| 589 | const llvm::Type *BasePtr = ConvertType(BaseElementTy); |
| 590 | BasePtr = llvm::PointerType::getUnqual(BasePtr); |
| 591 | llvm::Value *BaseAddrPtr = |
| 592 | Builder.CreateBitCast(DeclPtr, BasePtr); |
| 593 | EmitCXXAggrDestructorCall(D, Array, BaseAddrPtr); |
Fariborz Jahanian | 7799621 | 2009-11-04 17:57:40 +0000 | [diff] [blame] | 594 | |
Mike Stump | d88ea56 | 2009-12-09 03:35:49 +0000 | [diff] [blame] | 595 | // Make sure to jump to the exit block. |
| 596 | EmitBranch(Scope.getCleanupExitBlock()); |
| 597 | } |
| 598 | if (Exceptions) { |
| 599 | EHCleanupBlock Cleanup(*this); |
| 600 | QualType BaseElementTy = getContext().getBaseElementType(Array); |
| 601 | const llvm::Type *BasePtr = ConvertType(BaseElementTy); |
| 602 | BasePtr = llvm::PointerType::getUnqual(BasePtr); |
| 603 | llvm::Value *BaseAddrPtr = |
| 604 | Builder.CreateBitCast(DeclPtr, BasePtr); |
| 605 | EmitCXXAggrDestructorCall(D, Array, BaseAddrPtr); |
| 606 | } |
Fariborz Jahanian | 7799621 | 2009-11-04 17:57:40 +0000 | [diff] [blame] | 607 | } else { |
Mike Stump | d88ea56 | 2009-12-09 03:35:49 +0000 | [diff] [blame] | 608 | { |
| 609 | DelayedCleanupBlock Scope(*this); |
| 610 | EmitCXXDestructorCall(D, Dtor_Complete, DeclPtr); |
Mike Stump | 7302030 | 2009-12-02 23:28:08 +0000 | [diff] [blame] | 611 | |
Mike Stump | d88ea56 | 2009-12-09 03:35:49 +0000 | [diff] [blame] | 612 | // Make sure to jump to the exit block. |
| 613 | EmitBranch(Scope.getCleanupExitBlock()); |
| 614 | } |
| 615 | if (Exceptions) { |
| 616 | EHCleanupBlock Cleanup(*this); |
| 617 | EmitCXXDestructorCall(D, Dtor_Complete, DeclPtr); |
| 618 | } |
Fariborz Jahanian | 7799621 | 2009-11-04 17:57:40 +0000 | [diff] [blame] | 619 | } |
Fariborz Jahanian | 6ca0b32 | 2009-08-03 20:20:07 +0000 | [diff] [blame] | 620 | } |
| 621 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 622 | |
Anders Carlsson | 69c68b7 | 2009-02-07 23:51:38 +0000 | [diff] [blame] | 623 | // Handle the cleanup attribute |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 624 | if (const CleanupAttr *CA = D.getAttr<CleanupAttr>()) { |
Anders Carlsson | 69c68b7 | 2009-02-07 23:51:38 +0000 | [diff] [blame] | 625 | const FunctionDecl *FD = CA->getFunctionDecl(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 626 | |
Anders Carlsson | 555b4bb | 2009-09-10 23:43:36 +0000 | [diff] [blame] | 627 | llvm::Constant* F = CGM.GetAddrOfFunction(FD); |
Anders Carlsson | 69c68b7 | 2009-02-07 23:51:38 +0000 | [diff] [blame] | 628 | assert(F && "Could not find function!"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 629 | |
Anders Carlsson | cabec03 | 2009-04-26 00:34:20 +0000 | [diff] [blame] | 630 | const CGFunctionInfo &Info = CGM.getTypes().getFunctionInfo(FD); |
| 631 | |
| 632 | // In some cases, the type of the function argument will be different from |
| 633 | // the type of the pointer. An example of this is |
| 634 | // void f(void* arg); |
| 635 | // __attribute__((cleanup(f))) void *g; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 636 | // |
Anders Carlsson | cabec03 | 2009-04-26 00:34:20 +0000 | [diff] [blame] | 637 | // To fix this we insert a bitcast here. |
| 638 | QualType ArgTy = Info.arg_begin()->type; |
Mike Stump | d88ea56 | 2009-12-09 03:35:49 +0000 | [diff] [blame] | 639 | { |
| 640 | DelayedCleanupBlock scope(*this); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 641 | |
Mike Stump | d88ea56 | 2009-12-09 03:35:49 +0000 | [diff] [blame] | 642 | CallArgList Args; |
| 643 | Args.push_back(std::make_pair(RValue::get(Builder.CreateBitCast(DeclPtr, |
| 644 | ConvertType(ArgTy))), |
| 645 | getContext().getPointerType(D.getType()))); |
| 646 | EmitCall(Info, F, Args); |
| 647 | } |
| 648 | if (Exceptions) { |
| 649 | EHCleanupBlock Cleanup(*this); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 650 | |
Mike Stump | d88ea56 | 2009-12-09 03:35:49 +0000 | [diff] [blame] | 651 | CallArgList Args; |
| 652 | Args.push_back(std::make_pair(RValue::get(Builder.CreateBitCast(DeclPtr, |
| 653 | ConvertType(ArgTy))), |
| 654 | getContext().getPointerType(D.getType()))); |
| 655 | EmitCall(Info, F, Args); |
| 656 | } |
Anders Carlsson | 69c68b7 | 2009-02-07 23:51:38 +0000 | [diff] [blame] | 657 | } |
Mike Stump | 797b632 | 2009-03-05 01:23:13 +0000 | [diff] [blame] | 658 | |
Mike Stump | d9e0fae | 2009-03-05 02:34:38 +0000 | [diff] [blame] | 659 | if (needsDispose && CGM.getLangOptions().getGCMode() != LangOptions::GCOnly) { |
Mike Stump | d88ea56 | 2009-12-09 03:35:49 +0000 | [diff] [blame] | 660 | { |
| 661 | DelayedCleanupBlock scope(*this); |
| 662 | llvm::Value *V = Builder.CreateStructGEP(DeclPtr, 1, "forwarding"); |
| 663 | V = Builder.CreateLoad(V); |
| 664 | BuildBlockRelease(V); |
| 665 | } |
| 666 | // FIXME: Turn this on and audit the codegen |
| 667 | if (0 && Exceptions) { |
| 668 | EHCleanupBlock Cleanup(*this); |
| 669 | llvm::Value *V = Builder.CreateStructGEP(DeclPtr, 1, "forwarding"); |
| 670 | V = Builder.CreateLoad(V); |
| 671 | BuildBlockRelease(V); |
| 672 | } |
Mike Stump | 797b632 | 2009-03-05 01:23:13 +0000 | [diff] [blame] | 673 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 674 | } |
| 675 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 676 | /// Emit an alloca (or GlobalValue depending on target) |
Chris Lattner | 2621fd1 | 2008-05-08 05:58:21 +0000 | [diff] [blame] | 677 | /// for the specified parameter and set up LocalDeclMap. |
Daniel Dunbar | b7ec246 | 2008-08-16 03:19:19 +0000 | [diff] [blame] | 678 | void CodeGenFunction::EmitParmDecl(const VarDecl &D, llvm::Value *Arg) { |
| 679 | // FIXME: Why isn't ImplicitParamDecl a ParmVarDecl? |
Sanjiv Gupta | 31fc07d | 2008-10-31 09:52:39 +0000 | [diff] [blame] | 680 | assert((isa<ParmVarDecl>(D) || isa<ImplicitParamDecl>(D)) && |
Daniel Dunbar | b7ec246 | 2008-08-16 03:19:19 +0000 | [diff] [blame] | 681 | "Invalid argument to EmitParmDecl"); |
Chris Lattner | 8bcfc5b | 2008-04-06 23:10:54 +0000 | [diff] [blame] | 682 | QualType Ty = D.getType(); |
Mike Stump | df317bf | 2009-11-03 23:25:48 +0000 | [diff] [blame] | 683 | CanQualType CTy = getContext().getCanonicalType(Ty); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 684 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 685 | llvm::Value *DeclPtr; |
Eli Friedman | 3c2b317 | 2008-02-15 12:20:59 +0000 | [diff] [blame] | 686 | if (!Ty->isConstantSizeType()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 687 | // Variable sized values always are passed by-reference. |
| 688 | DeclPtr = Arg; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 689 | } else { |
Dan Gohman | d79a726 | 2008-05-22 22:12:56 +0000 | [diff] [blame] | 690 | // A fixed sized single-value variable becomes an alloca in the entry block. |
Eli Friedman | a3460ac | 2009-03-04 04:25:14 +0000 | [diff] [blame] | 691 | const llvm::Type *LTy = ConvertTypeForMem(Ty); |
Dan Gohman | d79a726 | 2008-05-22 22:12:56 +0000 | [diff] [blame] | 692 | if (LTy->isSingleValueType()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 693 | // TODO: Alignment |
Chris Lattner | f146684 | 2009-03-22 00:24:14 +0000 | [diff] [blame] | 694 | DeclPtr = CreateTempAlloca(LTy); |
Benjamin Kramer | a4d6ca1 | 2009-12-08 13:07:37 +0000 | [diff] [blame] | 695 | DeclPtr->setName(D.getNameAsString() + llvm::StringRef(".addr")); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 696 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 697 | // Store the initial value into the alloca. |
Mike Stump | df317bf | 2009-11-03 23:25:48 +0000 | [diff] [blame] | 698 | EmitStoreOfScalar(Arg, DeclPtr, CTy.isVolatileQualified(), Ty); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 699 | } else { |
| 700 | // Otherwise, if this is an aggregate, just use the input pointer. |
| 701 | DeclPtr = Arg; |
| 702 | } |
Chris Lattner | 39f34e9 | 2008-11-24 04:00:27 +0000 | [diff] [blame] | 703 | Arg->setName(D.getNameAsString()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 704 | } |
| 705 | |
| 706 | llvm::Value *&DMEntry = LocalDeclMap[&D]; |
| 707 | assert(DMEntry == 0 && "Decl already exists in localdeclmap!"); |
| 708 | DMEntry = DeclPtr; |
Sanjiv Gupta | cc9b163 | 2008-05-30 10:30:31 +0000 | [diff] [blame] | 709 | |
| 710 | // Emit debug info for param declaration. |
Devang Patel | fee53aa | 2009-10-09 22:06:15 +0000 | [diff] [blame] | 711 | if (CGDebugInfo *DI = getDebugInfo()) { |
| 712 | DI->setLocation(D.getLocation()); |
Chris Lattner | 9c85ba3 | 2008-11-10 06:08:34 +0000 | [diff] [blame] | 713 | DI->EmitDeclareOfArgVariable(&D, DeclPtr, Builder); |
Devang Patel | fee53aa | 2009-10-09 22:06:15 +0000 | [diff] [blame] | 714 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 715 | } |