Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===--- CodeGenModule.cpp - Emit LLVM Code from ASTs for a Module --------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This coordinates the per-module state used while generating code. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "CodeGenModule.h" |
Chris Lattner | bd36064 | 2009-03-26 05:00:52 +0000 | [diff] [blame] | 15 | #include "CGDebugInfo.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 16 | #include "CodeGenFunction.h" |
Daniel Dunbar | 0dbe227 | 2008-09-08 21:33:45 +0000 | [diff] [blame] | 17 | #include "CGCall.h" |
Daniel Dunbar | af2f62c | 2008-08-13 00:59:25 +0000 | [diff] [blame] | 18 | #include "CGObjCRuntime.h" |
Douglas Gregor | 5f2bfd4 | 2009-02-13 00:10:09 +0000 | [diff] [blame] | 19 | #include "Mangle.h" |
Chris Lattner | bd36064 | 2009-03-26 05:00:52 +0000 | [diff] [blame] | 20 | #include "clang/Frontend/CompileOptions.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 21 | #include "clang/AST/ASTContext.h" |
Daniel Dunbar | c4a1dea | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 22 | #include "clang/AST/DeclObjC.h" |
Chris Lattner | 21ef7ae | 2008-11-04 16:51:42 +0000 | [diff] [blame] | 23 | #include "clang/AST/DeclCXX.h" |
Chris Lattner | 1b63e4f | 2009-06-14 01:54:56 +0000 | [diff] [blame] | 24 | #include "clang/Basic/Builtins.h" |
Chris Lattner | 2c8569d | 2007-12-02 07:19:18 +0000 | [diff] [blame] | 25 | #include "clang/Basic/Diagnostic.h" |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 26 | #include "clang/Basic/SourceManager.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 27 | #include "clang/Basic/TargetInfo.h" |
Steve Naroff | e9b7d8a | 2009-04-01 15:50:34 +0000 | [diff] [blame] | 28 | #include "clang/Basic/ConvertUTF.h" |
Nate Begeman | ec9426c | 2008-03-09 03:09:36 +0000 | [diff] [blame] | 29 | #include "llvm/CallingConv.h" |
Chris Lattner | bef20ac | 2007-08-31 04:31:45 +0000 | [diff] [blame] | 30 | #include "llvm/Module.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 31 | #include "llvm/Intrinsics.h" |
Anton Korobeynikov | 20ff310 | 2008-06-01 14:13:53 +0000 | [diff] [blame] | 32 | #include "llvm/Target/TargetData.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 33 | using namespace clang; |
| 34 | using namespace CodeGen; |
| 35 | |
| 36 | |
Chris Lattner | bd36064 | 2009-03-26 05:00:52 +0000 | [diff] [blame] | 37 | CodeGenModule::CodeGenModule(ASTContext &C, const CompileOptions &compileOpts, |
Chris Lattner | fb97b03 | 2007-12-02 01:40:18 +0000 | [diff] [blame] | 38 | llvm::Module &M, const llvm::TargetData &TD, |
Chris Lattner | bd36064 | 2009-03-26 05:00:52 +0000 | [diff] [blame] | 39 | Diagnostic &diags) |
| 40 | : BlockModule(C, M, TD, Types, *this), Context(C), |
| 41 | Features(C.getLangOptions()), CompileOpts(compileOpts), TheModule(M), |
Mike Stump | 2a99814 | 2009-03-04 18:17:45 +0000 | [diff] [blame] | 42 | TheTargetData(TD), Diags(diags), Types(C, M, TD), Runtime(0), |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 43 | MemCpyFn(0), MemMoveFn(0), MemSetFn(0), CFConstantStringClassRef(0), |
| 44 | VMContext(M.getContext()) { |
Daniel Dunbar | 208ff5e | 2008-08-11 18:12:00 +0000 | [diff] [blame] | 45 | |
Chris Lattner | 3c8f153 | 2009-03-21 07:12:05 +0000 | [diff] [blame] | 46 | if (!Features.ObjC1) |
| 47 | Runtime = 0; |
| 48 | else if (!Features.NeXTRuntime) |
| 49 | Runtime = CreateGNUObjCRuntime(*this); |
| 50 | else if (Features.ObjCNonFragileABI) |
| 51 | Runtime = CreateMacNonFragileABIObjCRuntime(*this); |
| 52 | else |
| 53 | Runtime = CreateMacObjCRuntime(*this); |
Sanjiv Gupta | e8b9f5b | 2008-05-08 08:54:20 +0000 | [diff] [blame] | 54 | |
| 55 | // If debug info generation is enabled, create the CGDebugInfo object. |
Devang Patel | 6dba432 | 2009-07-14 21:31:22 +0000 | [diff] [blame] | 56 | DebugInfo = CompileOpts.DebugInfo ? new CGDebugInfo(this) : 0; |
Chris Lattner | 2b94fe3 | 2008-03-01 08:45:05 +0000 | [diff] [blame] | 57 | } |
| 58 | |
| 59 | CodeGenModule::~CodeGenModule() { |
Ted Kremenek | 815c78f | 2008-08-05 18:50:11 +0000 | [diff] [blame] | 60 | delete Runtime; |
| 61 | delete DebugInfo; |
| 62 | } |
| 63 | |
| 64 | void CodeGenModule::Release() { |
Chris Lattner | 82227ff | 2009-03-22 21:21:57 +0000 | [diff] [blame] | 65 | EmitDeferred(); |
Daniel Dunbar | 208ff5e | 2008-08-11 18:12:00 +0000 | [diff] [blame] | 66 | if (Runtime) |
| 67 | if (llvm::Function *ObjCInitFunction = Runtime->ModuleInitFunction()) |
| 68 | AddGlobalCtor(ObjCInitFunction); |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 69 | EmitCtorList(GlobalCtors, "llvm.global_ctors"); |
| 70 | EmitCtorList(GlobalDtors, "llvm.global_dtors"); |
Nate Begeman | 532485c | 2008-04-18 23:43:57 +0000 | [diff] [blame] | 71 | EmitAnnotations(); |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 72 | EmitLLVMUsed(); |
Daniel Dunbar | f1968f2 | 2008-10-01 00:49:24 +0000 | [diff] [blame] | 73 | } |
| 74 | |
Daniel Dunbar | 488e993 | 2008-08-16 00:56:44 +0000 | [diff] [blame] | 75 | /// ErrorUnsupported - Print out an error that codegen doesn't support the |
Chris Lattner | 2c8569d | 2007-12-02 07:19:18 +0000 | [diff] [blame] | 76 | /// specified stmt yet. |
Daniel Dunbar | 90df4b6 | 2008-09-04 03:43:08 +0000 | [diff] [blame] | 77 | void CodeGenModule::ErrorUnsupported(const Stmt *S, const char *Type, |
| 78 | bool OmitOnError) { |
| 79 | if (OmitOnError && getDiags().hasErrorOccurred()) |
| 80 | return; |
Daniel Dunbar | 488e993 | 2008-08-16 00:56:44 +0000 | [diff] [blame] | 81 | unsigned DiagID = getDiags().getCustomDiagID(Diagnostic::Error, |
Daniel Dunbar | 56b8001 | 2009-02-06 19:18:03 +0000 | [diff] [blame] | 82 | "cannot compile this %0 yet"); |
Chris Lattner | 2c8569d | 2007-12-02 07:19:18 +0000 | [diff] [blame] | 83 | std::string Msg = Type; |
Chris Lattner | 0a14eee | 2008-11-18 07:04:44 +0000 | [diff] [blame] | 84 | getDiags().Report(Context.getFullLoc(S->getLocStart()), DiagID) |
| 85 | << Msg << S->getSourceRange(); |
Chris Lattner | 2c8569d | 2007-12-02 07:19:18 +0000 | [diff] [blame] | 86 | } |
Chris Lattner | 58c3f9e | 2007-12-02 06:27:33 +0000 | [diff] [blame] | 87 | |
Daniel Dunbar | 488e993 | 2008-08-16 00:56:44 +0000 | [diff] [blame] | 88 | /// ErrorUnsupported - Print out an error that codegen doesn't support the |
Chris Lattner | c6fdc34 | 2008-01-12 07:05:38 +0000 | [diff] [blame] | 89 | /// specified decl yet. |
Daniel Dunbar | 90df4b6 | 2008-09-04 03:43:08 +0000 | [diff] [blame] | 90 | void CodeGenModule::ErrorUnsupported(const Decl *D, const char *Type, |
| 91 | bool OmitOnError) { |
| 92 | if (OmitOnError && getDiags().hasErrorOccurred()) |
| 93 | return; |
Daniel Dunbar | 488e993 | 2008-08-16 00:56:44 +0000 | [diff] [blame] | 94 | unsigned DiagID = getDiags().getCustomDiagID(Diagnostic::Error, |
Daniel Dunbar | 56b8001 | 2009-02-06 19:18:03 +0000 | [diff] [blame] | 95 | "cannot compile this %0 yet"); |
Chris Lattner | c6fdc34 | 2008-01-12 07:05:38 +0000 | [diff] [blame] | 96 | std::string Msg = Type; |
Chris Lattner | 0a14eee | 2008-11-18 07:04:44 +0000 | [diff] [blame] | 97 | getDiags().Report(Context.getFullLoc(D->getLocation()), DiagID) << Msg; |
Chris Lattner | c6fdc34 | 2008-01-12 07:05:38 +0000 | [diff] [blame] | 98 | } |
| 99 | |
Daniel Dunbar | 04d4078 | 2009-04-14 06:00:08 +0000 | [diff] [blame] | 100 | LangOptions::VisibilityMode |
| 101 | CodeGenModule::getDeclVisibilityMode(const Decl *D) const { |
| 102 | if (const VarDecl *VD = dyn_cast<VarDecl>(D)) |
| 103 | if (VD->getStorageClass() == VarDecl::PrivateExtern) |
| 104 | return LangOptions::Hidden; |
| 105 | |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 106 | if (const VisibilityAttr *attr = D->getAttr<VisibilityAttr>()) { |
Daniel Dunbar | 04d4078 | 2009-04-14 06:00:08 +0000 | [diff] [blame] | 107 | switch (attr->getVisibility()) { |
| 108 | default: assert(0 && "Unknown visibility!"); |
| 109 | case VisibilityAttr::DefaultVisibility: |
| 110 | return LangOptions::Default; |
| 111 | case VisibilityAttr::HiddenVisibility: |
| 112 | return LangOptions::Hidden; |
| 113 | case VisibilityAttr::ProtectedVisibility: |
| 114 | return LangOptions::Protected; |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | return getLangOptions().getVisibilityMode(); |
| 119 | } |
| 120 | |
| 121 | void CodeGenModule::setGlobalVisibility(llvm::GlobalValue *GV, |
| 122 | const Decl *D) const { |
| 123 | // Internal definitions always have default visibility. |
Chris Lattner | df102fc | 2009-04-14 05:27:13 +0000 | [diff] [blame] | 124 | if (GV->hasLocalLinkage()) { |
Daniel Dunbar | 7e714cd | 2009-04-10 20:26:50 +0000 | [diff] [blame] | 125 | GV->setVisibility(llvm::GlobalValue::DefaultVisibility); |
Daniel Dunbar | 6ab187a | 2009-04-07 05:48:37 +0000 | [diff] [blame] | 126 | return; |
Daniel Dunbar | 7e714cd | 2009-04-10 20:26:50 +0000 | [diff] [blame] | 127 | } |
Daniel Dunbar | 6ab187a | 2009-04-07 05:48:37 +0000 | [diff] [blame] | 128 | |
Daniel Dunbar | 04d4078 | 2009-04-14 06:00:08 +0000 | [diff] [blame] | 129 | switch (getDeclVisibilityMode(D)) { |
Dan Gohman | 4f8d123 | 2008-05-22 00:50:06 +0000 | [diff] [blame] | 130 | default: assert(0 && "Unknown visibility!"); |
Daniel Dunbar | 04d4078 | 2009-04-14 06:00:08 +0000 | [diff] [blame] | 131 | case LangOptions::Default: |
| 132 | return GV->setVisibility(llvm::GlobalValue::DefaultVisibility); |
| 133 | case LangOptions::Hidden: |
| 134 | return GV->setVisibility(llvm::GlobalValue::HiddenVisibility); |
| 135 | case LangOptions::Protected: |
| 136 | return GV->setVisibility(llvm::GlobalValue::ProtectedVisibility); |
Dan Gohman | 4f8d123 | 2008-05-22 00:50:06 +0000 | [diff] [blame] | 137 | } |
| 138 | } |
| 139 | |
Anders Carlsson | 2a131fb | 2009-05-05 04:44:02 +0000 | [diff] [blame] | 140 | const char *CodeGenModule::getMangledName(const GlobalDecl &GD) { |
| 141 | const NamedDecl *ND = GD.getDecl(); |
| 142 | |
| 143 | if (const CXXConstructorDecl *D = dyn_cast<CXXConstructorDecl>(ND)) |
| 144 | return getMangledCXXCtorName(D, GD.getCtorType()); |
| 145 | if (const CXXDestructorDecl *D = dyn_cast<CXXDestructorDecl>(ND)) |
| 146 | return getMangledCXXDtorName(D, GD.getDtorType()); |
| 147 | |
| 148 | return getMangledName(ND); |
| 149 | } |
| 150 | |
Douglas Gregor | 5f2bfd4 | 2009-02-13 00:10:09 +0000 | [diff] [blame] | 151 | /// \brief Retrieves the mangled name for the given declaration. |
| 152 | /// |
| 153 | /// If the given declaration requires a mangled name, returns an |
Chris Lattner | c50689b | 2009-03-21 06:31:09 +0000 | [diff] [blame] | 154 | /// const char* containing the mangled name. Otherwise, returns |
| 155 | /// the unmangled name. |
Douglas Gregor | 5f2bfd4 | 2009-02-13 00:10:09 +0000 | [diff] [blame] | 156 | /// |
Douglas Gregor | 6ec3668 | 2009-02-18 23:53:56 +0000 | [diff] [blame] | 157 | const char *CodeGenModule::getMangledName(const NamedDecl *ND) { |
Chris Lattner | c50689b | 2009-03-21 06:31:09 +0000 | [diff] [blame] | 158 | // In C, functions with no attributes never need to be mangled. Fastpath them. |
| 159 | if (!getLangOptions().CPlusPlus && !ND->hasAttrs()) { |
| 160 | assert(ND->getIdentifier() && "Attempt to mangle unnamed decl."); |
Chris Lattner | 3c8f153 | 2009-03-21 07:12:05 +0000 | [diff] [blame] | 161 | return ND->getNameAsCString(); |
Chris Lattner | c50689b | 2009-03-21 06:31:09 +0000 | [diff] [blame] | 162 | } |
| 163 | |
Douglas Gregor | 6ec3668 | 2009-02-18 23:53:56 +0000 | [diff] [blame] | 164 | llvm::SmallString<256> Name; |
| 165 | llvm::raw_svector_ostream Out(Name); |
Daniel Dunbar | fe34557 | 2009-03-05 22:59:19 +0000 | [diff] [blame] | 166 | if (!mangleName(ND, Context, Out)) { |
| 167 | assert(ND->getIdentifier() && "Attempt to mangle unnamed decl."); |
Chris Lattner | 3c8f153 | 2009-03-21 07:12:05 +0000 | [diff] [blame] | 168 | return ND->getNameAsCString(); |
Daniel Dunbar | fe34557 | 2009-03-05 22:59:19 +0000 | [diff] [blame] | 169 | } |
Douglas Gregor | 5f2bfd4 | 2009-02-13 00:10:09 +0000 | [diff] [blame] | 170 | |
Douglas Gregor | 6ec3668 | 2009-02-18 23:53:56 +0000 | [diff] [blame] | 171 | Name += '\0'; |
Anders Carlsson | 95d4e5d | 2009-04-15 15:55:24 +0000 | [diff] [blame] | 172 | return UniqueMangledName(Name.begin(), Name.end()); |
| 173 | } |
| 174 | |
| 175 | const char *CodeGenModule::UniqueMangledName(const char *NameStart, |
| 176 | const char *NameEnd) { |
| 177 | assert(*(NameEnd - 1) == '\0' && "Mangled name must be null terminated!"); |
| 178 | |
| 179 | return MangledNames.GetOrCreateValue(NameStart, NameEnd).getKeyData(); |
Douglas Gregor | 5f2bfd4 | 2009-02-13 00:10:09 +0000 | [diff] [blame] | 180 | } |
| 181 | |
Chris Lattner | 6d39760 | 2008-03-14 17:18:18 +0000 | [diff] [blame] | 182 | /// AddGlobalCtor - Add a function to the list that will be called before |
| 183 | /// main() runs. |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 184 | void CodeGenModule::AddGlobalCtor(llvm::Function * Ctor, int Priority) { |
Daniel Dunbar | 4998888 | 2009-01-13 02:25:00 +0000 | [diff] [blame] | 185 | // FIXME: Type coercion of void()* types. |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 186 | GlobalCtors.push_back(std::make_pair(Ctor, Priority)); |
Chris Lattner | 6d39760 | 2008-03-14 17:18:18 +0000 | [diff] [blame] | 187 | } |
| 188 | |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 189 | /// AddGlobalDtor - Add a function to the list that will be called |
| 190 | /// when the module is unloaded. |
| 191 | void CodeGenModule::AddGlobalDtor(llvm::Function * Dtor, int Priority) { |
Daniel Dunbar | 4998888 | 2009-01-13 02:25:00 +0000 | [diff] [blame] | 192 | // FIXME: Type coercion of void()* types. |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 193 | GlobalDtors.push_back(std::make_pair(Dtor, Priority)); |
| 194 | } |
| 195 | |
| 196 | void CodeGenModule::EmitCtorList(const CtorList &Fns, const char *GlobalName) { |
| 197 | // Ctor function type is void()*. |
| 198 | llvm::FunctionType* CtorFTy = |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 199 | llvm::FunctionType::get(llvm::Type::VoidTy, |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 200 | std::vector<const llvm::Type*>(), |
| 201 | false); |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 202 | llvm::Type *CtorPFTy = llvm::PointerType::getUnqual(CtorFTy); |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 203 | |
| 204 | // Get the type of a ctor entry, { i32, void ()* }. |
Chris Lattner | 572cf09 | 2008-03-19 05:24:56 +0000 | [diff] [blame] | 205 | llvm::StructType* CtorStructTy = |
Owen Anderson | 47a434f | 2009-08-05 23:18:46 +0000 | [diff] [blame] | 206 | llvm::StructType::get(VMContext, llvm::Type::Int32Ty, |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 207 | llvm::PointerType::getUnqual(CtorFTy), NULL); |
Chris Lattner | 6d39760 | 2008-03-14 17:18:18 +0000 | [diff] [blame] | 208 | |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 209 | // Construct the constructor and destructor arrays. |
| 210 | std::vector<llvm::Constant*> Ctors; |
| 211 | for (CtorList::const_iterator I = Fns.begin(), E = Fns.end(); I != E; ++I) { |
| 212 | std::vector<llvm::Constant*> S; |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 213 | S.push_back( |
Owen Anderson | 4a28d5d | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 214 | llvm::ConstantInt::get(llvm::Type::Int32Ty, I->second, false)); |
Owen Anderson | 3c4972d | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 215 | S.push_back(llvm::ConstantExpr::getBitCast(I->first, CtorPFTy)); |
Owen Anderson | 08e2524 | 2009-07-27 22:29:56 +0000 | [diff] [blame] | 216 | Ctors.push_back(llvm::ConstantStruct::get(CtorStructTy, S)); |
Chris Lattner | 6d39760 | 2008-03-14 17:18:18 +0000 | [diff] [blame] | 217 | } |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 218 | |
| 219 | if (!Ctors.empty()) { |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 220 | llvm::ArrayType *AT = llvm::ArrayType::get(CtorStructTy, Ctors.size()); |
Owen Anderson | 1c431b3 | 2009-07-08 19:05:04 +0000 | [diff] [blame] | 221 | new llvm::GlobalVariable(TheModule, AT, false, |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 222 | llvm::GlobalValue::AppendingLinkage, |
Owen Anderson | 7db6d83 | 2009-07-28 18:33:04 +0000 | [diff] [blame] | 223 | llvm::ConstantArray::get(AT, Ctors), |
Owen Anderson | 1c431b3 | 2009-07-08 19:05:04 +0000 | [diff] [blame] | 224 | GlobalName); |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 225 | } |
Chris Lattner | 6d39760 | 2008-03-14 17:18:18 +0000 | [diff] [blame] | 226 | } |
| 227 | |
Nate Begeman | 532485c | 2008-04-18 23:43:57 +0000 | [diff] [blame] | 228 | void CodeGenModule::EmitAnnotations() { |
| 229 | if (Annotations.empty()) |
| 230 | return; |
| 231 | |
| 232 | // Create a new global variable for the ConstantStruct in the Module. |
| 233 | llvm::Constant *Array = |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 234 | llvm::ConstantArray::get(llvm::ArrayType::get(Annotations[0]->getType(), |
Nate Begeman | 532485c | 2008-04-18 23:43:57 +0000 | [diff] [blame] | 235 | Annotations.size()), |
| 236 | Annotations); |
| 237 | llvm::GlobalValue *gv = |
Owen Anderson | 1c431b3 | 2009-07-08 19:05:04 +0000 | [diff] [blame] | 238 | new llvm::GlobalVariable(TheModule, Array->getType(), false, |
Nate Begeman | 532485c | 2008-04-18 23:43:57 +0000 | [diff] [blame] | 239 | llvm::GlobalValue::AppendingLinkage, Array, |
Owen Anderson | 1c431b3 | 2009-07-08 19:05:04 +0000 | [diff] [blame] | 240 | "llvm.global.annotations"); |
Nate Begeman | 532485c | 2008-04-18 23:43:57 +0000 | [diff] [blame] | 241 | gv->setSection("llvm.metadata"); |
| 242 | } |
| 243 | |
Chris Lattner | 86daeee | 2009-04-14 16:44:36 +0000 | [diff] [blame] | 244 | static CodeGenModule::GVALinkage |
Douglas Gregor | 68584ed | 2009-06-18 16:11:24 +0000 | [diff] [blame] | 245 | GetLinkageForFunction(ASTContext &Context, const FunctionDecl *FD, |
| 246 | const LangOptions &Features) { |
Douglas Gregor | 1fd2dd1 | 2009-06-29 22:39:32 +0000 | [diff] [blame] | 247 | // The kind of external linkage this function will have, if it is not |
| 248 | // inline or static. |
| 249 | CodeGenModule::GVALinkage External = CodeGenModule::GVA_StrongExternal; |
| 250 | if (Context.getLangOptions().CPlusPlus && |
| 251 | (FD->getPrimaryTemplate() || FD->getInstantiatedFromMemberFunction()) && |
| 252 | !FD->isExplicitSpecialization()) |
| 253 | External = CodeGenModule::GVA_TemplateInstantiation; |
| 254 | |
Anders Carlsson | 167b824 | 2009-05-15 18:35:39 +0000 | [diff] [blame] | 255 | if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) { |
| 256 | // C++ member functions defined inside the class are always inline. |
Argyrios Kyrtzidis | f5cecfb | 2009-06-17 22:49:50 +0000 | [diff] [blame] | 257 | if (MD->isInline() || !MD->isOutOfLine()) |
Anders Carlsson | 167b824 | 2009-05-15 18:35:39 +0000 | [diff] [blame] | 258 | return CodeGenModule::GVA_CXXInline; |
| 259 | |
Douglas Gregor | 1fd2dd1 | 2009-06-29 22:39:32 +0000 | [diff] [blame] | 260 | return External; |
Anders Carlsson | 167b824 | 2009-05-15 18:35:39 +0000 | [diff] [blame] | 261 | } |
| 262 | |
Eli Friedman | 43907e8 | 2009-05-03 19:01:39 +0000 | [diff] [blame] | 263 | // "static" functions get internal linkage. |
Eli Friedman | 5e22213 | 2009-05-03 18:13:43 +0000 | [diff] [blame] | 264 | if (FD->getStorageClass() == FunctionDecl::Static) |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 265 | return CodeGenModule::GVA_Internal; |
| 266 | |
Chris Lattner | 005eedc | 2009-05-12 20:26:52 +0000 | [diff] [blame] | 267 | if (!FD->isInline()) |
Douglas Gregor | 1fd2dd1 | 2009-06-29 22:39:32 +0000 | [diff] [blame] | 268 | return External; |
Chris Lattner | 86daeee | 2009-04-14 16:44:36 +0000 | [diff] [blame] | 269 | |
Chris Lattner | d55a71d | 2009-04-22 00:03:30 +0000 | [diff] [blame] | 270 | // If the inline function explicitly has the GNU inline attribute on it, or if |
| 271 | // this is C89 mode, we use to GNU semantics. |
Douglas Gregor | 9f9bf25 | 2009-04-28 06:37:30 +0000 | [diff] [blame] | 272 | if (!Features.C99 && !Features.CPlusPlus) { |
Chris Lattner | d55a71d | 2009-04-22 00:03:30 +0000 | [diff] [blame] | 273 | // extern inline in GNU mode is like C99 inline. |
Douglas Gregor | 9f9bf25 | 2009-04-28 06:37:30 +0000 | [diff] [blame] | 274 | if (FD->getStorageClass() == FunctionDecl::Extern) |
| 275 | return CodeGenModule::GVA_C99Inline; |
| 276 | // Normal inline is a strong symbol. |
| 277 | return CodeGenModule::GVA_StrongExternal; |
Douglas Gregor | 68584ed | 2009-06-18 16:11:24 +0000 | [diff] [blame] | 278 | } else if (FD->hasActiveGNUInlineAttribute(Context)) { |
Douglas Gregor | 9f9bf25 | 2009-04-28 06:37:30 +0000 | [diff] [blame] | 279 | // GCC in C99 mode seems to use a different decision-making |
| 280 | // process for extern inline, which factors in previous |
| 281 | // declarations. |
Douglas Gregor | 68584ed | 2009-06-18 16:11:24 +0000 | [diff] [blame] | 282 | if (FD->isExternGNUInline(Context)) |
Chris Lattner | d55a71d | 2009-04-22 00:03:30 +0000 | [diff] [blame] | 283 | return CodeGenModule::GVA_C99Inline; |
| 284 | // Normal inline is a strong symbol. |
Douglas Gregor | 1fd2dd1 | 2009-06-29 22:39:32 +0000 | [diff] [blame] | 285 | return External; |
Chris Lattner | d55a71d | 2009-04-22 00:03:30 +0000 | [diff] [blame] | 286 | } |
Chris Lattner | cbb8fc1 | 2009-04-14 20:25:53 +0000 | [diff] [blame] | 287 | |
Chris Lattner | 86daeee | 2009-04-14 16:44:36 +0000 | [diff] [blame] | 288 | // The definition of inline changes based on the language. Note that we |
| 289 | // have already handled "static inline" above, with the GVA_Internal case. |
Chris Lattner | cbb8fc1 | 2009-04-14 20:25:53 +0000 | [diff] [blame] | 290 | if (Features.CPlusPlus) // inline and extern inline. |
Chris Lattner | 86daeee | 2009-04-14 16:44:36 +0000 | [diff] [blame] | 291 | return CodeGenModule::GVA_CXXInline; |
| 292 | |
Chris Lattner | d55a71d | 2009-04-22 00:03:30 +0000 | [diff] [blame] | 293 | assert(Features.C99 && "Must be in C99 mode if not in C89 or C++ mode"); |
Douglas Gregor | b3efa98 | 2009-04-23 18:22:55 +0000 | [diff] [blame] | 294 | if (FD->isC99InlineDefinition()) |
| 295 | return CodeGenModule::GVA_C99Inline; |
| 296 | |
| 297 | return CodeGenModule::GVA_StrongExternal; |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 298 | } |
| 299 | |
| 300 | /// SetFunctionDefinitionAttributes - Set attributes for a global. |
Daniel Dunbar | b97b692 | 2009-04-14 06:19:49 +0000 | [diff] [blame] | 301 | /// |
Mike Stump | f5408fe | 2009-05-16 07:57:57 +0000 | [diff] [blame] | 302 | /// FIXME: This is currently only done for aliases and functions, but not for |
| 303 | /// variables (these details are set in EmitGlobalVarDefinition for variables). |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 304 | void CodeGenModule::SetFunctionDefinitionAttributes(const FunctionDecl *D, |
| 305 | llvm::GlobalValue *GV) { |
Douglas Gregor | 68584ed | 2009-06-18 16:11:24 +0000 | [diff] [blame] | 306 | GVALinkage Linkage = GetLinkageForFunction(getContext(), D, Features); |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 307 | |
Daniel Dunbar | 55d6f50 | 2009-04-14 07:19:20 +0000 | [diff] [blame] | 308 | if (Linkage == GVA_Internal) { |
Chris Lattner | 9f94279 | 2009-04-14 05:33:52 +0000 | [diff] [blame] | 309 | GV->setLinkage(llvm::Function::InternalLinkage); |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 310 | } else if (D->hasAttr<DLLExportAttr>()) { |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 311 | GV->setLinkage(llvm::Function::DLLExportLinkage); |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 312 | } else if (D->hasAttr<WeakAttr>()) { |
Chris Lattner | 44b0bc0 | 2009-04-14 06:04:17 +0000 | [diff] [blame] | 313 | GV->setLinkage(llvm::Function::WeakAnyLinkage); |
Chris Lattner | cbb8fc1 | 2009-04-14 20:25:53 +0000 | [diff] [blame] | 314 | } else if (Linkage == GVA_C99Inline) { |
| 315 | // In C99 mode, 'inline' functions are guaranteed to have a strong |
| 316 | // definition somewhere else, so we can use available_externally linkage. |
Chris Lattner | d9d049a | 2009-04-14 06:27:57 +0000 | [diff] [blame] | 317 | GV->setLinkage(llvm::Function::AvailableExternallyLinkage); |
Douglas Gregor | 1fd2dd1 | 2009-06-29 22:39:32 +0000 | [diff] [blame] | 318 | } else if (Linkage == GVA_CXXInline || Linkage == GVA_TemplateInstantiation) { |
Chris Lattner | 86daeee | 2009-04-14 16:44:36 +0000 | [diff] [blame] | 319 | // In C++, the compiler has to emit a definition in every translation unit |
| 320 | // that references the function. We should use linkonce_odr because |
| 321 | // a) if all references in this translation unit are optimized away, we |
| 322 | // don't need to codegen it. b) if the function persists, it needs to be |
| 323 | // merged with other definitions. c) C++ has the ODR, so we know the |
| 324 | // definition is dependable. |
| 325 | GV->setLinkage(llvm::Function::LinkOnceODRLinkage); |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 326 | } else { |
Chris Lattner | cbb8fc1 | 2009-04-14 20:25:53 +0000 | [diff] [blame] | 327 | assert(Linkage == GVA_StrongExternal); |
| 328 | // Otherwise, we have strong external linkage. |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 329 | GV->setLinkage(llvm::Function::ExternalLinkage); |
Daniel Dunbar | 0dbe227 | 2008-09-08 21:33:45 +0000 | [diff] [blame] | 330 | } |
Nuno Lopes | d4cbda6 | 2008-06-08 15:45:52 +0000 | [diff] [blame] | 331 | |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 332 | SetCommonAttributes(D, GV); |
Nuno Lopes | d4cbda6 | 2008-06-08 15:45:52 +0000 | [diff] [blame] | 333 | } |
| 334 | |
Daniel Dunbar | 7dbd819 | 2009-04-14 07:08:30 +0000 | [diff] [blame] | 335 | void CodeGenModule::SetLLVMFunctionAttributes(const Decl *D, |
| 336 | const CGFunctionInfo &Info, |
| 337 | llvm::Function *F) { |
Devang Patel | 761d7f7 | 2008-09-25 21:02:23 +0000 | [diff] [blame] | 338 | AttributeListType AttributeList; |
Daniel Dunbar | 88b5396 | 2009-02-02 22:03:45 +0000 | [diff] [blame] | 339 | ConstructAttributeList(Info, D, AttributeList); |
Eli Friedman | c134fcb | 2008-06-04 19:41:28 +0000 | [diff] [blame] | 340 | |
Devang Patel | 761d7f7 | 2008-09-25 21:02:23 +0000 | [diff] [blame] | 341 | F->setAttributes(llvm::AttrListPtr::get(AttributeList.begin(), |
| 342 | AttributeList.size())); |
Eli Friedman | ff4a2d9 | 2008-06-01 15:54:49 +0000 | [diff] [blame] | 343 | |
| 344 | // Set the appropriate calling convention for the Function. |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 345 | if (D->hasAttr<FastCallAttr>()) |
Anton Korobeynikov | f1c9c09 | 2008-11-11 20:21:14 +0000 | [diff] [blame] | 346 | F->setCallingConv(llvm::CallingConv::X86_FastCall); |
| 347 | |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 348 | if (D->hasAttr<StdCallAttr>()) |
Anton Korobeynikov | f1c9c09 | 2008-11-11 20:21:14 +0000 | [diff] [blame] | 349 | F->setCallingConv(llvm::CallingConv::X86_StdCall); |
Daniel Dunbar | f80519b | 2008-09-04 23:41:35 +0000 | [diff] [blame] | 350 | } |
| 351 | |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 352 | void CodeGenModule::SetLLVMFunctionAttributesForDefinition(const Decl *D, |
| 353 | llvm::Function *F) { |
Daniel Dunbar | 74ac74a | 2009-03-02 04:58:03 +0000 | [diff] [blame] | 354 | if (!Features.Exceptions && !Features.ObjCNonFragileABI) |
Daniel Dunbar | f93349f | 2008-09-27 07:16:42 +0000 | [diff] [blame] | 355 | F->addFnAttr(llvm::Attribute::NoUnwind); |
Daniel Dunbar | af668b0 | 2008-10-28 00:17:57 +0000 | [diff] [blame] | 356 | |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 357 | if (D->hasAttr<AlwaysInlineAttr>()) |
Daniel Dunbar | af668b0 | 2008-10-28 00:17:57 +0000 | [diff] [blame] | 358 | F->addFnAttr(llvm::Attribute::AlwaysInline); |
Anders Carlsson | 81ebbde | 2009-02-19 19:22:11 +0000 | [diff] [blame] | 359 | |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 360 | if (D->hasAttr<NoinlineAttr>()) |
Anders Carlsson | 81ebbde | 2009-02-19 19:22:11 +0000 | [diff] [blame] | 361 | F->addFnAttr(llvm::Attribute::NoInline); |
Daniel Dunbar | f80519b | 2008-09-04 23:41:35 +0000 | [diff] [blame] | 362 | } |
| 363 | |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 364 | void CodeGenModule::SetCommonAttributes(const Decl *D, |
| 365 | llvm::GlobalValue *GV) { |
| 366 | setGlobalVisibility(GV, D); |
| 367 | |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 368 | if (D->hasAttr<UsedAttr>()) |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 369 | AddUsedGlobal(GV); |
| 370 | |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 371 | if (const SectionAttr *SA = D->getAttr<SectionAttr>()) |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 372 | GV->setSection(SA->getName()); |
| 373 | } |
| 374 | |
Daniel Dunbar | 0e4f40e | 2009-04-17 00:48:04 +0000 | [diff] [blame] | 375 | void CodeGenModule::SetInternalFunctionAttributes(const Decl *D, |
| 376 | llvm::Function *F, |
| 377 | const CGFunctionInfo &FI) { |
| 378 | SetLLVMFunctionAttributes(D, FI, F); |
| 379 | SetLLVMFunctionAttributesForDefinition(D, F); |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 380 | |
| 381 | F->setLinkage(llvm::Function::InternalLinkage); |
| 382 | |
Daniel Dunbar | 0e4f40e | 2009-04-17 00:48:04 +0000 | [diff] [blame] | 383 | SetCommonAttributes(D, F); |
Daniel Dunbar | f80519b | 2008-09-04 23:41:35 +0000 | [diff] [blame] | 384 | } |
| 385 | |
| 386 | void CodeGenModule::SetFunctionAttributes(const FunctionDecl *FD, |
Eli Friedman | c6c14d1 | 2009-05-26 01:22:57 +0000 | [diff] [blame] | 387 | llvm::Function *F, |
| 388 | bool IsIncompleteFunction) { |
| 389 | if (!IsIncompleteFunction) |
| 390 | SetLLVMFunctionAttributes(FD, getTypes().getFunctionInfo(FD), F); |
Daniel Dunbar | 45c25ba | 2008-09-10 04:01:49 +0000 | [diff] [blame] | 391 | |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 392 | // Only a few attributes are set on declarations; these may later be |
| 393 | // overridden by a definition. |
| 394 | |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 395 | if (FD->hasAttr<DLLImportAttr>()) { |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 396 | F->setLinkage(llvm::Function::DLLImportLinkage); |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 397 | } else if (FD->hasAttr<WeakAttr>() || |
| 398 | FD->hasAttr<WeakImportAttr>()) { |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 399 | // "extern_weak" is overloaded in LLVM; we probably should have |
| 400 | // separate linkage types for this. |
| 401 | F->setLinkage(llvm::Function::ExternalWeakLinkage); |
| 402 | } else { |
| 403 | F->setLinkage(llvm::Function::ExternalLinkage); |
| 404 | } |
| 405 | |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 406 | if (const SectionAttr *SA = FD->getAttr<SectionAttr>()) |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 407 | F->setSection(SA->getName()); |
Daniel Dunbar | 219df66 | 2008-09-08 23:44:31 +0000 | [diff] [blame] | 408 | } |
| 409 | |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 410 | void CodeGenModule::AddUsedGlobal(llvm::GlobalValue *GV) { |
| 411 | assert(!GV->isDeclaration() && |
| 412 | "Only globals with definition can force usage."); |
Chris Lattner | 35f38a2 | 2009-03-31 22:37:52 +0000 | [diff] [blame] | 413 | LLVMUsed.push_back(GV); |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 414 | } |
| 415 | |
| 416 | void CodeGenModule::EmitLLVMUsed() { |
| 417 | // Don't create llvm.used if there is no need. |
Chris Lattner | ad64e02 | 2009-07-17 23:57:13 +0000 | [diff] [blame] | 418 | if (LLVMUsed.empty()) |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 419 | return; |
| 420 | |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 421 | llvm::Type *i8PTy = llvm::PointerType::getUnqual(llvm::Type::Int8Ty); |
Chris Lattner | 35f38a2 | 2009-03-31 22:37:52 +0000 | [diff] [blame] | 422 | |
| 423 | // Convert LLVMUsed to what ConstantArray needs. |
| 424 | std::vector<llvm::Constant*> UsedArray; |
| 425 | UsedArray.resize(LLVMUsed.size()); |
| 426 | for (unsigned i = 0, e = LLVMUsed.size(); i != e; ++i) { |
| 427 | UsedArray[i] = |
Owen Anderson | 3c4972d | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 428 | llvm::ConstantExpr::getBitCast(cast<llvm::Constant>(&*LLVMUsed[i]), |
Owen Anderson | a1cf15f | 2009-07-14 23:10:40 +0000 | [diff] [blame] | 429 | i8PTy); |
Chris Lattner | 35f38a2 | 2009-03-31 22:37:52 +0000 | [diff] [blame] | 430 | } |
| 431 | |
Fariborz Jahanian | c38e9af | 2009-06-23 21:47:46 +0000 | [diff] [blame] | 432 | if (UsedArray.empty()) |
| 433 | return; |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 434 | llvm::ArrayType *ATy = llvm::ArrayType::get(i8PTy, UsedArray.size()); |
Fariborz Jahanian | c38e9af | 2009-06-23 21:47:46 +0000 | [diff] [blame] | 435 | |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 436 | llvm::GlobalVariable *GV = |
Owen Anderson | 1c431b3 | 2009-07-08 19:05:04 +0000 | [diff] [blame] | 437 | new llvm::GlobalVariable(getModule(), ATy, false, |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 438 | llvm::GlobalValue::AppendingLinkage, |
Owen Anderson | 7db6d83 | 2009-07-28 18:33:04 +0000 | [diff] [blame] | 439 | llvm::ConstantArray::get(ATy, UsedArray), |
Owen Anderson | 1c431b3 | 2009-07-08 19:05:04 +0000 | [diff] [blame] | 440 | "llvm.used"); |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 441 | |
| 442 | GV->setSection("llvm.metadata"); |
| 443 | } |
| 444 | |
| 445 | void CodeGenModule::EmitDeferred() { |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 446 | // Emit code for any potentially referenced deferred decls. Since a |
| 447 | // previously unused static decl may become used during the generation of code |
| 448 | // for a static function, iterate until no changes are made. |
| 449 | while (!DeferredDeclsToEmit.empty()) { |
Anders Carlsson | 2a131fb | 2009-05-05 04:44:02 +0000 | [diff] [blame] | 450 | GlobalDecl D = DeferredDeclsToEmit.back(); |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 451 | DeferredDeclsToEmit.pop_back(); |
| 452 | |
| 453 | // The mangled name for the decl must have been emitted in GlobalDeclMap. |
| 454 | // Look it up to see if it was defined with a stronger definition (e.g. an |
| 455 | // extern inline function with a strong function redefinition). If so, |
| 456 | // just ignore the deferred decl. |
| 457 | llvm::GlobalValue *CGRef = GlobalDeclMap[getMangledName(D)]; |
| 458 | assert(CGRef && "Deferred decl wasn't referenced?"); |
Anders Carlsson | b723f75 | 2009-01-04 02:08:04 +0000 | [diff] [blame] | 459 | |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 460 | if (!CGRef->isDeclaration()) |
| 461 | continue; |
| 462 | |
| 463 | // Otherwise, emit the definition and move on to the next one. |
| 464 | EmitGlobalDefinition(D); |
| 465 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 466 | } |
| 467 | |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 468 | /// EmitAnnotateAttr - Generate the llvm::ConstantStruct which contains the |
| 469 | /// annotation information for a given GlobalValue. The annotation struct is |
| 470 | /// {i8 *, i8 *, i8 *, i32}. The first field is a constant expression, the |
Daniel Dunbar | 3c827a7 | 2008-08-05 23:31:02 +0000 | [diff] [blame] | 471 | /// GlobalValue being annotated. The second field is the constant string |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 472 | /// created from the AnnotateAttr's annotation. The third field is a constant |
| 473 | /// string containing the name of the translation unit. The fourth field is |
| 474 | /// the line number in the file of the annotated value declaration. |
| 475 | /// |
| 476 | /// FIXME: this does not unique the annotation string constants, as llvm-gcc |
| 477 | /// appears to. |
| 478 | /// |
| 479 | llvm::Constant *CodeGenModule::EmitAnnotateAttr(llvm::GlobalValue *GV, |
| 480 | const AnnotateAttr *AA, |
| 481 | unsigned LineNo) { |
| 482 | llvm::Module *M = &getModule(); |
| 483 | |
| 484 | // get [N x i8] constants for the annotation string, and the filename string |
| 485 | // which are the 2nd and 3rd elements of the global annotation structure. |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 486 | const llvm::Type *SBP = llvm::PointerType::getUnqual(llvm::Type::Int8Ty); |
Owen Anderson | 7db6d83 | 2009-07-28 18:33:04 +0000 | [diff] [blame] | 487 | llvm::Constant *anno = llvm::ConstantArray::get(AA->getAnnotation(), true); |
| 488 | llvm::Constant *unit = llvm::ConstantArray::get(M->getModuleIdentifier(), |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 489 | true); |
| 490 | |
| 491 | // Get the two global values corresponding to the ConstantArrays we just |
| 492 | // created to hold the bytes of the strings. |
| 493 | llvm::GlobalValue *annoGV = |
Chris Lattner | 95b851e | 2009-07-16 05:03:48 +0000 | [diff] [blame] | 494 | new llvm::GlobalVariable(*M, anno->getType(), false, |
| 495 | llvm::GlobalValue::PrivateLinkage, anno, |
| 496 | GV->getName()); |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 497 | // translation unit name string, emitted into the llvm.metadata section. |
| 498 | llvm::GlobalValue *unitGV = |
Chris Lattner | 95b851e | 2009-07-16 05:03:48 +0000 | [diff] [blame] | 499 | new llvm::GlobalVariable(*M, unit->getType(), false, |
| 500 | llvm::GlobalValue::PrivateLinkage, unit, |
| 501 | ".str"); |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 502 | |
Daniel Dunbar | 57d5cee | 2009-04-14 22:41:13 +0000 | [diff] [blame] | 503 | // Create the ConstantStruct for the global annotation. |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 504 | llvm::Constant *Fields[4] = { |
Owen Anderson | 3c4972d | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 505 | llvm::ConstantExpr::getBitCast(GV, SBP), |
| 506 | llvm::ConstantExpr::getBitCast(annoGV, SBP), |
| 507 | llvm::ConstantExpr::getBitCast(unitGV, SBP), |
Owen Anderson | 4a28d5d | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 508 | llvm::ConstantInt::get(llvm::Type::Int32Ty, LineNo) |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 509 | }; |
Owen Anderson | 47a434f | 2009-08-05 23:18:46 +0000 | [diff] [blame] | 510 | return llvm::ConstantStruct::get(VMContext, Fields, 4, false); |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 511 | } |
| 512 | |
Daniel Dunbar | 73241df | 2009-02-13 21:18:01 +0000 | [diff] [blame] | 513 | bool CodeGenModule::MayDeferGeneration(const ValueDecl *Global) { |
Daniel Dunbar | 5c61d97 | 2009-02-13 22:08:43 +0000 | [diff] [blame] | 514 | // Never defer when EmitAllDecls is specified or the decl has |
| 515 | // attribute used. |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 516 | if (Features.EmitAllDecls || Global->hasAttr<UsedAttr>()) |
Daniel Dunbar | 73241df | 2009-02-13 21:18:01 +0000 | [diff] [blame] | 517 | return false; |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 518 | |
| 519 | if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(Global)) { |
Daniel Dunbar | 73241df | 2009-02-13 21:18:01 +0000 | [diff] [blame] | 520 | // Constructors and destructors should never be deferred. |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 521 | if (FD->hasAttr<ConstructorAttr>() || |
| 522 | FD->hasAttr<DestructorAttr>()) |
Daniel Dunbar | 73241df | 2009-02-13 21:18:01 +0000 | [diff] [blame] | 523 | return false; |
| 524 | |
Douglas Gregor | 68584ed | 2009-06-18 16:11:24 +0000 | [diff] [blame] | 525 | GVALinkage Linkage = GetLinkageForFunction(getContext(), FD, Features); |
Chris Lattner | dbb5a37 | 2009-04-14 06:44:48 +0000 | [diff] [blame] | 526 | |
| 527 | // static, static inline, always_inline, and extern inline functions can |
Chris Lattner | 86daeee | 2009-04-14 16:44:36 +0000 | [diff] [blame] | 528 | // always be deferred. Normal inline functions can be deferred in C99/C++. |
Chris Lattner | cbb8fc1 | 2009-04-14 20:25:53 +0000 | [diff] [blame] | 529 | if (Linkage == GVA_Internal || Linkage == GVA_C99Inline || |
| 530 | Linkage == GVA_CXXInline) |
Chris Lattner | dbb5a37 | 2009-04-14 06:44:48 +0000 | [diff] [blame] | 531 | return true; |
Chris Lattner | dbb5a37 | 2009-04-14 06:44:48 +0000 | [diff] [blame] | 532 | return false; |
Daniel Dunbar | 73241df | 2009-02-13 21:18:01 +0000 | [diff] [blame] | 533 | } |
Chris Lattner | dbb5a37 | 2009-04-14 06:44:48 +0000 | [diff] [blame] | 534 | |
| 535 | const VarDecl *VD = cast<VarDecl>(Global); |
| 536 | assert(VD->isFileVarDecl() && "Invalid decl"); |
Douglas Gregor | b6c8c8b | 2009-04-21 17:11:58 +0000 | [diff] [blame] | 537 | |
Chris Lattner | dbb5a37 | 2009-04-14 06:44:48 +0000 | [diff] [blame] | 538 | return VD->getStorageClass() == VarDecl::Static; |
Daniel Dunbar | 73241df | 2009-02-13 21:18:01 +0000 | [diff] [blame] | 539 | } |
| 540 | |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 541 | void CodeGenModule::EmitGlobal(GlobalDecl GD) { |
Anders Carlsson | 2a131fb | 2009-05-05 04:44:02 +0000 | [diff] [blame] | 542 | const ValueDecl *Global = GD.getDecl(); |
| 543 | |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 544 | // If this is an alias definition (which otherwise looks like a declaration) |
| 545 | // emit it now. |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 546 | if (Global->hasAttr<AliasAttr>()) |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 547 | return EmitAliasDefinition(Global); |
Daniel Dunbar | 219df66 | 2008-09-08 23:44:31 +0000 | [diff] [blame] | 548 | |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 549 | // Ignore declarations, they will be emitted on their first use. |
Daniel Dunbar | 5e1e1f9 | 2009-03-19 08:27:24 +0000 | [diff] [blame] | 550 | if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(Global)) { |
Daniel Dunbar | 73241df | 2009-02-13 21:18:01 +0000 | [diff] [blame] | 551 | // Forward declarations are emitted lazily on first use. |
| 552 | if (!FD->isThisDeclarationADefinition()) |
| 553 | return; |
Daniel Dunbar | 0269871 | 2009-02-13 20:29:50 +0000 | [diff] [blame] | 554 | } else { |
| 555 | const VarDecl *VD = cast<VarDecl>(Global); |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 556 | assert(VD->isFileVarDecl() && "Cannot emit local var decl as global."); |
| 557 | |
Douglas Gregor | b6c8c8b | 2009-04-21 17:11:58 +0000 | [diff] [blame] | 558 | // In C++, if this is marked "extern", defer code generation. |
Anders Carlsson | 2928c21 | 2009-05-16 21:02:39 +0000 | [diff] [blame] | 559 | if (getLangOptions().CPlusPlus && !VD->getInit() && |
| 560 | (VD->getStorageClass() == VarDecl::Extern || |
| 561 | VD->isExternC(getContext()))) |
Daniel Dunbar | 73241df | 2009-02-13 21:18:01 +0000 | [diff] [blame] | 562 | return; |
Douglas Gregor | b6c8c8b | 2009-04-21 17:11:58 +0000 | [diff] [blame] | 563 | |
| 564 | // In C, if this isn't a definition, defer code generation. |
| 565 | if (!getLangOptions().CPlusPlus && !VD->getInit()) |
| 566 | return; |
Nate Begeman | 4c13b7a | 2008-04-20 06:29:50 +0000 | [diff] [blame] | 567 | } |
| 568 | |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 569 | // Defer code generation when possible if this is a static definition, inline |
| 570 | // function etc. These we only want to emit if they are used. |
Daniel Dunbar | 73241df | 2009-02-13 21:18:01 +0000 | [diff] [blame] | 571 | if (MayDeferGeneration(Global)) { |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 572 | // If the value has already been used, add it directly to the |
| 573 | // DeferredDeclsToEmit list. |
Anders Carlsson | 2a131fb | 2009-05-05 04:44:02 +0000 | [diff] [blame] | 574 | const char *MangledName = getMangledName(GD); |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 575 | if (GlobalDeclMap.count(MangledName)) |
Anders Carlsson | 2a131fb | 2009-05-05 04:44:02 +0000 | [diff] [blame] | 576 | DeferredDeclsToEmit.push_back(GD); |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 577 | else { |
| 578 | // Otherwise, remember that we saw a deferred decl with this name. The |
| 579 | // first use of the mangled name will cause it to move into |
| 580 | // DeferredDeclsToEmit. |
Anders Carlsson | 2a131fb | 2009-05-05 04:44:02 +0000 | [diff] [blame] | 581 | DeferredDecls[MangledName] = GD; |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 582 | } |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 583 | return; |
| 584 | } |
| 585 | |
| 586 | // Otherwise emit the definition. |
Anders Carlsson | 2a131fb | 2009-05-05 04:44:02 +0000 | [diff] [blame] | 587 | EmitGlobalDefinition(GD); |
Nate Begeman | 4c13b7a | 2008-04-20 06:29:50 +0000 | [diff] [blame] | 588 | } |
| 589 | |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 590 | void CodeGenModule::EmitGlobalDefinition(GlobalDecl GD) { |
Anders Carlsson | 2a131fb | 2009-05-05 04:44:02 +0000 | [diff] [blame] | 591 | const ValueDecl *D = GD.getDecl(); |
| 592 | |
| 593 | if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(D)) |
| 594 | EmitCXXConstructor(CD, GD.getCtorType()); |
Anders Carlsson | 7267c16 | 2009-05-29 21:03:38 +0000 | [diff] [blame] | 595 | else if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(D)) |
| 596 | EmitCXXDestructor(DD, GD.getDtorType()); |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 597 | else if (isa<FunctionDecl>(D)) |
| 598 | EmitGlobalFunctionDefinition(GD); |
Anders Carlsson | 2a131fb | 2009-05-05 04:44:02 +0000 | [diff] [blame] | 599 | else if (const VarDecl *VD = dyn_cast<VarDecl>(D)) |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 600 | EmitGlobalVarDefinition(VD); |
Anders Carlsson | 2a131fb | 2009-05-05 04:44:02 +0000 | [diff] [blame] | 601 | else { |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 602 | assert(0 && "Invalid argument to EmitGlobalDefinition()"); |
| 603 | } |
| 604 | } |
| 605 | |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 606 | /// GetOrCreateLLVMFunction - If the specified mangled name is not in the |
| 607 | /// module, create and return an llvm Function with the specified type. If there |
| 608 | /// is something in the module with the specified name, return it potentially |
| 609 | /// bitcasted to the right type. |
| 610 | /// |
| 611 | /// If D is non-null, it specifies a decl that correspond to this. This is used |
| 612 | /// to set the attributes on the function when it is first created. |
| 613 | llvm::Constant *CodeGenModule::GetOrCreateLLVMFunction(const char *MangledName, |
| 614 | const llvm::Type *Ty, |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 615 | GlobalDecl D) { |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 616 | // Lookup the entry, lazily creating it if necessary. |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 617 | llvm::GlobalValue *&Entry = GlobalDeclMap[MangledName]; |
| 618 | if (Entry) { |
| 619 | if (Entry->getType()->getElementType() == Ty) |
| 620 | return Entry; |
| 621 | |
| 622 | // Make sure the result is of the correct type. |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 623 | const llvm::Type *PTy = llvm::PointerType::getUnqual(Ty); |
Owen Anderson | 3c4972d | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 624 | return llvm::ConstantExpr::getBitCast(Entry, PTy); |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 625 | } |
| 626 | |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 627 | // This is the first use or definition of a mangled name. If there is a |
| 628 | // deferred decl with this name, remember that we need to emit it at the end |
| 629 | // of the file. |
Anders Carlsson | 2a131fb | 2009-05-05 04:44:02 +0000 | [diff] [blame] | 630 | llvm::DenseMap<const char*, GlobalDecl>::iterator DDI = |
Chris Lattner | 9fa959d | 2009-05-12 20:58:15 +0000 | [diff] [blame] | 631 | DeferredDecls.find(MangledName); |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 632 | if (DDI != DeferredDecls.end()) { |
| 633 | // Move the potentially referenced deferred decl to the DeferredDeclsToEmit |
| 634 | // list, and remove it from DeferredDecls (since we don't need it anymore). |
| 635 | DeferredDeclsToEmit.push_back(DDI->second); |
| 636 | DeferredDecls.erase(DDI); |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 637 | } else if (const FunctionDecl *FD = cast_or_null<FunctionDecl>(D.getDecl())) { |
Chris Lattner | 0c337ed | 2009-05-12 21:02:27 +0000 | [diff] [blame] | 638 | // If this the first reference to a C++ inline function in a class, queue up |
| 639 | // the deferred function body for emission. These are not seen as |
| 640 | // top-level declarations. |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 641 | if (FD->isThisDeclarationADefinition() && MayDeferGeneration(FD)) |
| 642 | DeferredDeclsToEmit.push_back(D); |
Fariborz Jahanian | c7ff8e1 | 2009-07-30 23:22:00 +0000 | [diff] [blame] | 643 | // A called constructor which has no definition or declaration need be |
| 644 | // synthesized. |
| 645 | else if (const CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(FD)) { |
| 646 | const CXXRecordDecl *ClassDecl = |
| 647 | cast<CXXRecordDecl>(CD->getDeclContext()); |
Fariborz Jahanian | 9889652 | 2009-08-06 23:38:16 +0000 | [diff] [blame] | 648 | if (CD->isCopyConstructor(getContext())) { |
| 649 | if (!ClassDecl->hasUserDeclaredCopyConstructor()) |
| 650 | DeferredDeclsToEmit.push_back(D); |
| 651 | } |
| 652 | else if (!ClassDecl->hasUserDeclaredConstructor()) |
Fariborz Jahanian | c7ff8e1 | 2009-07-30 23:22:00 +0000 | [diff] [blame] | 653 | DeferredDeclsToEmit.push_back(D); |
| 654 | } |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 655 | } |
| 656 | |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 657 | // This function doesn't have a complete type (for example, the return |
| 658 | // type is an incomplete struct). Use a fake type instead, and make |
| 659 | // sure not to try to set attributes. |
Eli Friedman | c6c14d1 | 2009-05-26 01:22:57 +0000 | [diff] [blame] | 660 | bool IsIncompleteFunction = false; |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 661 | if (!isa<llvm::FunctionType>(Ty)) { |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 662 | Ty = llvm::FunctionType::get(llvm::Type::VoidTy, |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 663 | std::vector<const llvm::Type*>(), false); |
Eli Friedman | c6c14d1 | 2009-05-26 01:22:57 +0000 | [diff] [blame] | 664 | IsIncompleteFunction = true; |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 665 | } |
| 666 | llvm::Function *F = llvm::Function::Create(cast<llvm::FunctionType>(Ty), |
| 667 | llvm::Function::ExternalLinkage, |
Chris Lattner | d972678 | 2009-03-22 00:12:30 +0000 | [diff] [blame] | 668 | "", &getModule()); |
| 669 | F->setName(MangledName); |
Eli Friedman | c6c14d1 | 2009-05-26 01:22:57 +0000 | [diff] [blame] | 670 | if (D.getDecl()) |
| 671 | SetFunctionAttributes(cast<FunctionDecl>(D.getDecl()), F, |
| 672 | IsIncompleteFunction); |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 673 | Entry = F; |
| 674 | return F; |
| 675 | } |
| 676 | |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 677 | /// GetAddrOfFunction - Return the address of the given function. If Ty is |
| 678 | /// non-null, then this function will use the specified type if it has to |
| 679 | /// create it (this occurs when we see a definition of the function). |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 680 | llvm::Constant *CodeGenModule::GetAddrOfFunction(GlobalDecl GD, |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 681 | const llvm::Type *Ty) { |
| 682 | // If there was no specific requested type, just convert it now. |
| 683 | if (!Ty) |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 684 | Ty = getTypes().ConvertType(GD.getDecl()->getType()); |
| 685 | return GetOrCreateLLVMFunction(getMangledName(GD.getDecl()), Ty, GD); |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 686 | } |
Eli Friedman | 77ba708 | 2008-05-30 19:50:47 +0000 | [diff] [blame] | 687 | |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 688 | /// CreateRuntimeFunction - Create a new runtime function with the specified |
| 689 | /// type and name. |
| 690 | llvm::Constant * |
| 691 | CodeGenModule::CreateRuntimeFunction(const llvm::FunctionType *FTy, |
| 692 | const char *Name) { |
| 693 | // Convert Name to be a uniqued string from the IdentifierInfo table. |
| 694 | Name = getContext().Idents.get(Name).getName(); |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 695 | return GetOrCreateLLVMFunction(Name, FTy, GlobalDecl()); |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 696 | } |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 697 | |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 698 | /// GetOrCreateLLVMGlobal - If the specified mangled name is not in the module, |
| 699 | /// create and return an llvm GlobalVariable with the specified type. If there |
| 700 | /// is something in the module with the specified name, return it potentially |
| 701 | /// bitcasted to the right type. |
| 702 | /// |
| 703 | /// If D is non-null, it specifies a decl that correspond to this. This is used |
| 704 | /// to set the attributes on the global when it is first created. |
| 705 | llvm::Constant *CodeGenModule::GetOrCreateLLVMGlobal(const char *MangledName, |
| 706 | const llvm::PointerType*Ty, |
| 707 | const VarDecl *D) { |
Daniel Dunbar | 3c827a7 | 2008-08-05 23:31:02 +0000 | [diff] [blame] | 708 | // Lookup the entry, lazily creating it if necessary. |
Chris Lattner | 5d4f5c7 | 2009-03-21 08:06:59 +0000 | [diff] [blame] | 709 | llvm::GlobalValue *&Entry = GlobalDeclMap[MangledName]; |
Chris Lattner | 99b5361 | 2009-03-21 08:03:33 +0000 | [diff] [blame] | 710 | if (Entry) { |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 711 | if (Entry->getType() == Ty) |
Chris Lattner | 570585c | 2009-03-21 09:16:30 +0000 | [diff] [blame] | 712 | return Entry; |
| 713 | |
Chris Lattner | 99b5361 | 2009-03-21 08:03:33 +0000 | [diff] [blame] | 714 | // Make sure the result is of the correct type. |
Owen Anderson | 3c4972d | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 715 | return llvm::ConstantExpr::getBitCast(Entry, Ty); |
Daniel Dunbar | 4998888 | 2009-01-13 02:25:00 +0000 | [diff] [blame] | 716 | } |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 717 | |
| 718 | // This is the first use or definition of a mangled name. If there is a |
| 719 | // deferred decl with this name, remember that we need to emit it at the end |
| 720 | // of the file. |
Anders Carlsson | 2a131fb | 2009-05-05 04:44:02 +0000 | [diff] [blame] | 721 | llvm::DenseMap<const char*, GlobalDecl>::iterator DDI = |
Chris Lattner | 67b0052 | 2009-03-21 09:44:56 +0000 | [diff] [blame] | 722 | DeferredDecls.find(MangledName); |
| 723 | if (DDI != DeferredDecls.end()) { |
| 724 | // Move the potentially referenced deferred decl to the DeferredDeclsToEmit |
| 725 | // list, and remove it from DeferredDecls (since we don't need it anymore). |
| 726 | DeferredDeclsToEmit.push_back(DDI->second); |
| 727 | DeferredDecls.erase(DDI); |
| 728 | } |
| 729 | |
Chris Lattner | 99b5361 | 2009-03-21 08:03:33 +0000 | [diff] [blame] | 730 | llvm::GlobalVariable *GV = |
Owen Anderson | 1c431b3 | 2009-07-08 19:05:04 +0000 | [diff] [blame] | 731 | new llvm::GlobalVariable(getModule(), Ty->getElementType(), false, |
Chris Lattner | 99b5361 | 2009-03-21 08:03:33 +0000 | [diff] [blame] | 732 | llvm::GlobalValue::ExternalLinkage, |
Owen Anderson | 1c431b3 | 2009-07-08 19:05:04 +0000 | [diff] [blame] | 733 | 0, "", 0, |
Eli Friedman | 56ebe50 | 2009-04-19 21:05:03 +0000 | [diff] [blame] | 734 | false, Ty->getAddressSpace()); |
Chris Lattner | d972678 | 2009-03-22 00:12:30 +0000 | [diff] [blame] | 735 | GV->setName(MangledName); |
Chris Lattner | 99b5361 | 2009-03-21 08:03:33 +0000 | [diff] [blame] | 736 | |
| 737 | // Handle things which are present even on external declarations. |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 738 | if (D) { |
Mike Stump | f5408fe | 2009-05-16 07:57:57 +0000 | [diff] [blame] | 739 | // FIXME: This code is overly simple and should be merged with other global |
| 740 | // handling. |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 741 | GV->setConstant(D->getType().isConstant(Context)); |
Chris Lattner | 99b5361 | 2009-03-21 08:03:33 +0000 | [diff] [blame] | 742 | |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 743 | // FIXME: Merge with other attribute handling code. |
| 744 | if (D->getStorageClass() == VarDecl::PrivateExtern) |
Daniel Dunbar | 04d4078 | 2009-04-14 06:00:08 +0000 | [diff] [blame] | 745 | GV->setVisibility(llvm::GlobalValue::HiddenVisibility); |
Chris Lattner | 99b5361 | 2009-03-21 08:03:33 +0000 | [diff] [blame] | 746 | |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 747 | if (D->hasAttr<WeakAttr>() || |
| 748 | D->hasAttr<WeakImportAttr>()) |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 749 | GV->setLinkage(llvm::GlobalValue::ExternalWeakLinkage); |
Eli Friedman | 56ebe50 | 2009-04-19 21:05:03 +0000 | [diff] [blame] | 750 | |
| 751 | GV->setThreadLocal(D->isThreadSpecified()); |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 752 | } |
| 753 | |
Chris Lattner | 99b5361 | 2009-03-21 08:03:33 +0000 | [diff] [blame] | 754 | return Entry = GV; |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 755 | } |
| 756 | |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 757 | |
| 758 | /// GetAddrOfGlobalVar - Return the llvm::Constant for the address of the |
| 759 | /// given global variable. If Ty is non-null and if the global doesn't exist, |
| 760 | /// then it will be greated with the specified type instead of whatever the |
| 761 | /// normal requested type would be. |
| 762 | llvm::Constant *CodeGenModule::GetAddrOfGlobalVar(const VarDecl *D, |
| 763 | const llvm::Type *Ty) { |
| 764 | assert(D->hasGlobalStorage() && "Not a global variable"); |
| 765 | QualType ASTTy = D->getType(); |
| 766 | if (Ty == 0) |
| 767 | Ty = getTypes().ConvertTypeForMem(ASTTy); |
| 768 | |
| 769 | const llvm::PointerType *PTy = |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 770 | llvm::PointerType::get(Ty, ASTTy.getAddressSpace()); |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 771 | return GetOrCreateLLVMGlobal(getMangledName(D), PTy, D); |
| 772 | } |
| 773 | |
| 774 | /// CreateRuntimeVariable - Create a new runtime global variable with the |
| 775 | /// specified type and name. |
| 776 | llvm::Constant * |
| 777 | CodeGenModule::CreateRuntimeVariable(const llvm::Type *Ty, |
| 778 | const char *Name) { |
| 779 | // Convert Name to be a uniqued string from the IdentifierInfo table. |
| 780 | Name = getContext().Idents.get(Name).getName(); |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 781 | return GetOrCreateLLVMGlobal(Name, llvm::PointerType::getUnqual(Ty), 0); |
Chris Lattner | 74391b4 | 2009-03-22 21:03:39 +0000 | [diff] [blame] | 782 | } |
| 783 | |
Daniel Dunbar | 03f5ad9 | 2009-04-15 22:08:45 +0000 | [diff] [blame] | 784 | void CodeGenModule::EmitTentativeDefinition(const VarDecl *D) { |
| 785 | assert(!D->getInit() && "Cannot emit definite definitions here!"); |
| 786 | |
Douglas Gregor | 7520bd1 | 2009-04-21 19:28:58 +0000 | [diff] [blame] | 787 | if (MayDeferGeneration(D)) { |
| 788 | // If we have not seen a reference to this variable yet, place it |
| 789 | // into the deferred declarations table to be emitted if needed |
| 790 | // later. |
| 791 | const char *MangledName = getMangledName(D); |
| 792 | if (GlobalDeclMap.count(MangledName) == 0) { |
Anders Carlsson | 2a131fb | 2009-05-05 04:44:02 +0000 | [diff] [blame] | 793 | DeferredDecls[MangledName] = GlobalDecl(D); |
Daniel Dunbar | 03f5ad9 | 2009-04-15 22:08:45 +0000 | [diff] [blame] | 794 | return; |
Douglas Gregor | 7520bd1 | 2009-04-21 19:28:58 +0000 | [diff] [blame] | 795 | } |
| 796 | } |
| 797 | |
| 798 | // The tentative definition is the only definition. |
Daniel Dunbar | 03f5ad9 | 2009-04-15 22:08:45 +0000 | [diff] [blame] | 799 | EmitGlobalVarDefinition(D); |
| 800 | } |
| 801 | |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 802 | void CodeGenModule::EmitGlobalVarDefinition(const VarDecl *D) { |
Chris Lattner | 8f32f71 | 2007-07-14 00:23:28 +0000 | [diff] [blame] | 803 | llvm::Constant *Init = 0; |
Eli Friedman | 77ba708 | 2008-05-30 19:50:47 +0000 | [diff] [blame] | 804 | QualType ASTTy = D->getType(); |
Chris Lattner | b75863d | 2009-04-10 00:35:59 +0000 | [diff] [blame] | 805 | |
Chris Lattner | 8f32f71 | 2007-07-14 00:23:28 +0000 | [diff] [blame] | 806 | if (D->getInit() == 0) { |
Eli Friedman | cd5f4aa | 2008-05-30 20:39:54 +0000 | [diff] [blame] | 807 | // This is a tentative definition; tentative definitions are |
Daniel Dunbar | 03f5ad9 | 2009-04-15 22:08:45 +0000 | [diff] [blame] | 808 | // implicitly initialized with { 0 }. |
| 809 | // |
| 810 | // Note that tentative definitions are only emitted at the end of |
| 811 | // a translation unit, so they should never have incomplete |
| 812 | // type. In addition, EmitTentativeDefinition makes sure that we |
| 813 | // never attempt to emit a tentative definition if a real one |
| 814 | // exists. A use may still exists, however, so we still may need |
| 815 | // to do a RAUW. |
| 816 | assert(!ASTTy->isIncompleteType() && "Unexpected incomplete type"); |
Anders Carlsson | b0d0ea0 | 2009-08-02 21:18:22 +0000 | [diff] [blame] | 817 | Init = EmitNullConstant(D->getType()); |
Eli Friedman | 77ba708 | 2008-05-30 19:50:47 +0000 | [diff] [blame] | 818 | } else { |
Anders Carlsson | e9352cc | 2009-04-08 04:48:15 +0000 | [diff] [blame] | 819 | Init = EmitConstantExpr(D->getInit(), D->getType()); |
Eli Friedman | 6e656f4 | 2009-02-20 01:18:21 +0000 | [diff] [blame] | 820 | if (!Init) { |
Daniel Dunbar | 232350d | 2009-02-19 05:36:41 +0000 | [diff] [blame] | 821 | ErrorUnsupported(D, "static initializer"); |
Eli Friedman | 6e656f4 | 2009-02-20 01:18:21 +0000 | [diff] [blame] | 822 | QualType T = D->getInit()->getType(); |
Owen Anderson | 03e2050 | 2009-07-30 23:11:26 +0000 | [diff] [blame] | 823 | Init = llvm::UndefValue::get(getTypes().ConvertType(T)); |
Eli Friedman | 6e656f4 | 2009-02-20 01:18:21 +0000 | [diff] [blame] | 824 | } |
Eli Friedman | 77ba708 | 2008-05-30 19:50:47 +0000 | [diff] [blame] | 825 | } |
Eli Friedman | 77ba708 | 2008-05-30 19:50:47 +0000 | [diff] [blame] | 826 | |
Chris Lattner | 2d58406 | 2009-03-21 08:13:05 +0000 | [diff] [blame] | 827 | const llvm::Type* InitType = Init->getType(); |
Chris Lattner | 570585c | 2009-03-21 09:16:30 +0000 | [diff] [blame] | 828 | llvm::Constant *Entry = GetAddrOfGlobalVar(D, InitType); |
Daniel Dunbar | 3c827a7 | 2008-08-05 23:31:02 +0000 | [diff] [blame] | 829 | |
Chris Lattner | 570585c | 2009-03-21 09:16:30 +0000 | [diff] [blame] | 830 | // Strip off a bitcast if we got one back. |
| 831 | if (llvm::ConstantExpr *CE = dyn_cast<llvm::ConstantExpr>(Entry)) { |
Chris Lattner | 9d4a15f | 2009-07-16 16:48:25 +0000 | [diff] [blame] | 832 | assert(CE->getOpcode() == llvm::Instruction::BitCast || |
| 833 | // all zero index gep. |
| 834 | CE->getOpcode() == llvm::Instruction::GetElementPtr); |
Chris Lattner | 570585c | 2009-03-21 09:16:30 +0000 | [diff] [blame] | 835 | Entry = CE->getOperand(0); |
| 836 | } |
| 837 | |
| 838 | // Entry is now either a Function or GlobalVariable. |
| 839 | llvm::GlobalVariable *GV = dyn_cast<llvm::GlobalVariable>(Entry); |
| 840 | |
Chris Lattner | 570585c | 2009-03-21 09:16:30 +0000 | [diff] [blame] | 841 | // We have a definition after a declaration with the wrong type. |
| 842 | // We must make a new GlobalVariable* and update everything that used OldGV |
| 843 | // (a declaration or tentative definition) with the new GlobalVariable* |
| 844 | // (which will be a definition). |
| 845 | // |
| 846 | // This happens if there is a prototype for a global (e.g. |
| 847 | // "extern int x[];") and then a definition of a different type (e.g. |
| 848 | // "int x[10];"). This also happens when an initializer has a different type |
| 849 | // from the type of the global (this happens with unions). |
Chris Lattner | 570585c | 2009-03-21 09:16:30 +0000 | [diff] [blame] | 850 | if (GV == 0 || |
| 851 | GV->getType()->getElementType() != InitType || |
| 852 | GV->getType()->getAddressSpace() != ASTTy.getAddressSpace()) { |
| 853 | |
| 854 | // Remove the old entry from GlobalDeclMap so that we'll create a new one. |
| 855 | GlobalDeclMap.erase(getMangledName(D)); |
Daniel Dunbar | 232350d | 2009-02-19 05:36:41 +0000 | [diff] [blame] | 856 | |
Chris Lattner | 570585c | 2009-03-21 09:16:30 +0000 | [diff] [blame] | 857 | // Make a new global with the correct type, this is now guaranteed to work. |
| 858 | GV = cast<llvm::GlobalVariable>(GetAddrOfGlobalVar(D, InitType)); |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 859 | GV->takeName(cast<llvm::GlobalValue>(Entry)); |
| 860 | |
Eli Friedman | 77ba708 | 2008-05-30 19:50:47 +0000 | [diff] [blame] | 861 | // Replace all uses of the old global with the new global |
| 862 | llvm::Constant *NewPtrForOldDecl = |
Owen Anderson | 3c4972d | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 863 | llvm::ConstantExpr::getBitCast(GV, Entry->getType()); |
Chris Lattner | 570585c | 2009-03-21 09:16:30 +0000 | [diff] [blame] | 864 | Entry->replaceAllUsesWith(NewPtrForOldDecl); |
Eli Friedman | 77ba708 | 2008-05-30 19:50:47 +0000 | [diff] [blame] | 865 | |
| 866 | // Erase the old global, since it is no longer used. |
Chris Lattner | 570585c | 2009-03-21 09:16:30 +0000 | [diff] [blame] | 867 | cast<llvm::GlobalValue>(Entry)->eraseFromParent(); |
Chris Lattner | 8f32f71 | 2007-07-14 00:23:28 +0000 | [diff] [blame] | 868 | } |
Devang Patel | 8e53e72 | 2007-10-26 16:31:40 +0000 | [diff] [blame] | 869 | |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 870 | if (const AnnotateAttr *AA = D->getAttr<AnnotateAttr>()) { |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 871 | SourceManager &SM = Context.getSourceManager(); |
| 872 | AddAnnotation(EmitAnnotateAttr(GV, AA, |
Chris Lattner | f7cf85b | 2009-01-16 07:36:28 +0000 | [diff] [blame] | 873 | SM.getInstantiationLineNumber(D->getLocation()))); |
Nate Begeman | 8bd4afe | 2008-04-19 04:17:09 +0000 | [diff] [blame] | 874 | } |
| 875 | |
Chris Lattner | 88a69ad | 2007-07-13 05:13:43 +0000 | [diff] [blame] | 876 | GV->setInitializer(Init); |
Chris Lattner | e78b86f | 2009-08-05 05:20:29 +0000 | [diff] [blame] | 877 | |
| 878 | // If it is safe to mark the global 'constant', do so now. |
| 879 | GV->setConstant(false); |
| 880 | if (D->getType().isConstant(Context)) { |
| 881 | // FIXME: In C++, if the variable has a non-trivial ctor/dtor or any mutable |
| 882 | // members, it cannot be declared "LLVM const". |
| 883 | GV->setConstant(true); |
| 884 | } |
| 885 | |
Eli Friedman | 0de40af | 2009-02-27 04:11:37 +0000 | [diff] [blame] | 886 | GV->setAlignment(getContext().getDeclAlignInBytes(D)); |
Eli Friedman | 08d7802 | 2008-05-29 11:10:27 +0000 | [diff] [blame] | 887 | |
Chris Lattner | 88a69ad | 2007-07-13 05:13:43 +0000 | [diff] [blame] | 888 | // Set the llvm linkage type as appropriate. |
Chris Lattner | 8fabd78 | 2008-05-04 01:44:26 +0000 | [diff] [blame] | 889 | if (D->getStorageClass() == VarDecl::Static) |
| 890 | GV->setLinkage(llvm::Function::InternalLinkage); |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 891 | else if (D->hasAttr<DLLImportAttr>()) |
Chris Lattner | ddee423 | 2008-03-03 03:28:21 +0000 | [diff] [blame] | 892 | GV->setLinkage(llvm::Function::DLLImportLinkage); |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 893 | else if (D->hasAttr<DLLExportAttr>()) |
Chris Lattner | ddee423 | 2008-03-03 03:28:21 +0000 | [diff] [blame] | 894 | GV->setLinkage(llvm::Function::DLLExportLinkage); |
Chris Lattner | e78b86f | 2009-08-05 05:20:29 +0000 | [diff] [blame] | 895 | else if (D->hasAttr<WeakAttr>()) { |
| 896 | if (GV->isConstant()) |
| 897 | GV->setLinkage(llvm::GlobalVariable::WeakODRLinkage); |
| 898 | else |
| 899 | GV->setLinkage(llvm::GlobalVariable::WeakAnyLinkage); |
| 900 | } else if (!CompileOpts.NoCommon && |
Chris Lattner | 309457d | 2009-08-05 04:56:58 +0000 | [diff] [blame] | 901 | !D->hasExternalStorage() && !D->getInit() && |
Chris Lattner | e78b86f | 2009-08-05 05:20:29 +0000 | [diff] [blame] | 902 | !D->getAttr<SectionAttr>()) { |
Daniel Dunbar | 04d4078 | 2009-04-14 06:00:08 +0000 | [diff] [blame] | 903 | GV->setLinkage(llvm::GlobalVariable::CommonLinkage); |
Chris Lattner | e78b86f | 2009-08-05 05:20:29 +0000 | [diff] [blame] | 904 | // common vars aren't constant even if declared const. |
| 905 | GV->setConstant(false); |
| 906 | } else |
Daniel Dunbar | 04d4078 | 2009-04-14 06:00:08 +0000 | [diff] [blame] | 907 | GV->setLinkage(llvm::GlobalVariable::ExternalLinkage); |
Daniel Dunbar | 7e714cd | 2009-04-10 20:26:50 +0000 | [diff] [blame] | 908 | |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 909 | SetCommonAttributes(D, GV); |
Daniel Dunbar | 04d4078 | 2009-04-14 06:00:08 +0000 | [diff] [blame] | 910 | |
Sanjiv Gupta | 686226b | 2008-06-05 08:59:10 +0000 | [diff] [blame] | 911 | // Emit global variable debug information. |
Chris Lattner | 2d58406 | 2009-03-21 08:13:05 +0000 | [diff] [blame] | 912 | if (CGDebugInfo *DI = getDebugInfo()) { |
Daniel Dunbar | 66031a5 | 2008-10-17 16:15:48 +0000 | [diff] [blame] | 913 | DI->setLocation(D->getLocation()); |
Sanjiv Gupta | 686226b | 2008-06-05 08:59:10 +0000 | [diff] [blame] | 914 | DI->EmitGlobalVariable(GV, D); |
| 915 | } |
Chris Lattner | 88a69ad | 2007-07-13 05:13:43 +0000 | [diff] [blame] | 916 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 917 | |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 918 | /// ReplaceUsesOfNonProtoTypeWithRealFunction - This function is called when we |
| 919 | /// implement a function with no prototype, e.g. "int foo() {}". If there are |
| 920 | /// existing call uses of the old function in the module, this adjusts them to |
| 921 | /// call the new function directly. |
| 922 | /// |
| 923 | /// This is not just a cleanup: the always_inline pass requires direct calls to |
| 924 | /// functions to be able to inline them. If there is a bitcast in the way, it |
| 925 | /// won't inline them. Instcombine normally deletes these calls, but it isn't |
| 926 | /// run at -O0. |
| 927 | static void ReplaceUsesOfNonProtoTypeWithRealFunction(llvm::GlobalValue *Old, |
| 928 | llvm::Function *NewFn) { |
| 929 | // If we're redefining a global as a function, don't transform it. |
| 930 | llvm::Function *OldFn = dyn_cast<llvm::Function>(Old); |
| 931 | if (OldFn == 0) return; |
| 932 | |
| 933 | const llvm::Type *NewRetTy = NewFn->getReturnType(); |
| 934 | llvm::SmallVector<llvm::Value*, 4> ArgList; |
| 935 | |
| 936 | for (llvm::Value::use_iterator UI = OldFn->use_begin(), E = OldFn->use_end(); |
| 937 | UI != E; ) { |
| 938 | // TODO: Do invokes ever occur in C code? If so, we should handle them too. |
Chris Lattner | 08c93a7 | 2009-06-04 16:47:43 +0000 | [diff] [blame] | 939 | unsigned OpNo = UI.getOperandNo(); |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 940 | llvm::CallInst *CI = dyn_cast<llvm::CallInst>(*UI++); |
Chris Lattner | 08c93a7 | 2009-06-04 16:47:43 +0000 | [diff] [blame] | 941 | if (!CI || OpNo != 0) continue; |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 942 | |
| 943 | // If the return types don't match exactly, and if the call isn't dead, then |
| 944 | // we can't transform this call. |
| 945 | if (CI->getType() != NewRetTy && !CI->use_empty()) |
| 946 | continue; |
| 947 | |
| 948 | // If the function was passed too few arguments, don't transform. If extra |
| 949 | // arguments were passed, we silently drop them. If any of the types |
| 950 | // mismatch, we don't transform. |
| 951 | unsigned ArgNo = 0; |
| 952 | bool DontTransform = false; |
| 953 | for (llvm::Function::arg_iterator AI = NewFn->arg_begin(), |
| 954 | E = NewFn->arg_end(); AI != E; ++AI, ++ArgNo) { |
| 955 | if (CI->getNumOperands()-1 == ArgNo || |
| 956 | CI->getOperand(ArgNo+1)->getType() != AI->getType()) { |
| 957 | DontTransform = true; |
| 958 | break; |
| 959 | } |
| 960 | } |
| 961 | if (DontTransform) |
| 962 | continue; |
| 963 | |
| 964 | // Okay, we can transform this. Create the new call instruction and copy |
| 965 | // over the required information. |
| 966 | ArgList.append(CI->op_begin()+1, CI->op_begin()+1+ArgNo); |
| 967 | llvm::CallInst *NewCall = llvm::CallInst::Create(NewFn, ArgList.begin(), |
| 968 | ArgList.end(), "", CI); |
| 969 | ArgList.clear(); |
| 970 | if (NewCall->getType() != llvm::Type::VoidTy) |
| 971 | NewCall->takeName(CI); |
| 972 | NewCall->setCallingConv(CI->getCallingConv()); |
| 973 | NewCall->setAttributes(CI->getAttributes()); |
| 974 | |
| 975 | // Finally, remove the old call, replacing any uses with the new one. |
| 976 | if (!CI->use_empty()) |
| 977 | CI->replaceAllUsesWith(NewCall); |
| 978 | CI->eraseFromParent(); |
| 979 | } |
| 980 | } |
| 981 | |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 982 | |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 983 | void CodeGenModule::EmitGlobalFunctionDefinition(GlobalDecl GD) { |
Anders Carlsson | 2b77ba8 | 2009-04-04 20:47:02 +0000 | [diff] [blame] | 984 | const llvm::FunctionType *Ty; |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 985 | const FunctionDecl *D = cast<FunctionDecl>(GD.getDecl()); |
| 986 | |
Anders Carlsson | 2b77ba8 | 2009-04-04 20:47:02 +0000 | [diff] [blame] | 987 | if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) { |
| 988 | bool isVariadic = D->getType()->getAsFunctionProtoType()->isVariadic(); |
| 989 | |
| 990 | Ty = getTypes().GetFunctionType(getTypes().getFunctionInfo(MD), isVariadic); |
| 991 | } else { |
| 992 | Ty = cast<llvm::FunctionType>(getTypes().ConvertType(D->getType())); |
| 993 | |
| 994 | // As a special case, make sure that definitions of K&R function |
| 995 | // "type foo()" aren't declared as varargs (which forces the backend |
| 996 | // to do unnecessary work). |
| 997 | if (D->getType()->isFunctionNoProtoType()) { |
| 998 | assert(Ty->isVarArg() && "Didn't lower type as expected"); |
| 999 | // Due to stret, the lowered function could have arguments. |
| 1000 | // Just create the same type as was lowered by ConvertType |
| 1001 | // but strip off the varargs bit. |
| 1002 | std::vector<const llvm::Type*> Args(Ty->param_begin(), Ty->param_end()); |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 1003 | Ty = llvm::FunctionType::get(Ty->getReturnType(), Args, false); |
Anders Carlsson | 2b77ba8 | 2009-04-04 20:47:02 +0000 | [diff] [blame] | 1004 | } |
Chris Lattner | ff75e1d | 2009-03-22 19:35:37 +0000 | [diff] [blame] | 1005 | } |
Daniel Dunbar | d5d3180 | 2009-02-19 07:15:39 +0000 | [diff] [blame] | 1006 | |
Chris Lattner | 9fa959d | 2009-05-12 20:58:15 +0000 | [diff] [blame] | 1007 | // Get or create the prototype for the function. |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 1008 | llvm::Constant *Entry = GetAddrOfFunction(GD, Ty); |
Chris Lattner | 3480950 | 2009-03-21 08:53:37 +0000 | [diff] [blame] | 1009 | |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 1010 | // Strip off a bitcast if we got one back. |
| 1011 | if (llvm::ConstantExpr *CE = dyn_cast<llvm::ConstantExpr>(Entry)) { |
| 1012 | assert(CE->getOpcode() == llvm::Instruction::BitCast); |
| 1013 | Entry = CE->getOperand(0); |
| 1014 | } |
| 1015 | |
| 1016 | |
| 1017 | if (cast<llvm::GlobalValue>(Entry)->getType()->getElementType() != Ty) { |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 1018 | llvm::GlobalValue *OldFn = cast<llvm::GlobalValue>(Entry); |
| 1019 | |
Daniel Dunbar | 4274581 | 2009-03-09 23:53:08 +0000 | [diff] [blame] | 1020 | // If the types mismatch then we have to rewrite the definition. |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 1021 | assert(OldFn->isDeclaration() && |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 1022 | "Shouldn't replace non-declaration"); |
Chris Lattner | 3480950 | 2009-03-21 08:53:37 +0000 | [diff] [blame] | 1023 | |
Chris Lattner | 62b33ea | 2009-03-21 08:38:50 +0000 | [diff] [blame] | 1024 | // F is the Function* for the one with the wrong type, we must make a new |
| 1025 | // Function* and update everything that used F (a declaration) with the new |
| 1026 | // Function* (which will be a definition). |
| 1027 | // |
| 1028 | // This happens if there is a prototype for a function |
| 1029 | // (e.g. "int f()") and then a definition of a different type |
| 1030 | // (e.g. "int f(int x)"). Start by making a new function of the |
| 1031 | // correct type, RAUW, then steal the name. |
Chris Lattner | 3480950 | 2009-03-21 08:53:37 +0000 | [diff] [blame] | 1032 | GlobalDeclMap.erase(getMangledName(D)); |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 1033 | llvm::Function *NewFn = cast<llvm::Function>(GetAddrOfFunction(GD, Ty)); |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 1034 | NewFn->takeName(OldFn); |
| 1035 | |
| 1036 | // If this is an implementation of a function without a prototype, try to |
| 1037 | // replace any existing uses of the function (which may be calls) with uses |
| 1038 | // of the new function |
Chris Lattner | 9fa959d | 2009-05-12 20:58:15 +0000 | [diff] [blame] | 1039 | if (D->getType()->isFunctionNoProtoType()) { |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 1040 | ReplaceUsesOfNonProtoTypeWithRealFunction(OldFn, NewFn); |
Chris Lattner | 9fa959d | 2009-05-12 20:58:15 +0000 | [diff] [blame] | 1041 | OldFn->removeDeadConstantUsers(); |
| 1042 | } |
Chris Lattner | 62b33ea | 2009-03-21 08:38:50 +0000 | [diff] [blame] | 1043 | |
| 1044 | // Replace uses of F with the Function we will endow with a body. |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 1045 | if (!Entry->use_empty()) { |
| 1046 | llvm::Constant *NewPtrForOldDecl = |
Owen Anderson | 3c4972d | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 1047 | llvm::ConstantExpr::getBitCast(NewFn, Entry->getType()); |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 1048 | Entry->replaceAllUsesWith(NewPtrForOldDecl); |
| 1049 | } |
Chris Lattner | 62b33ea | 2009-03-21 08:38:50 +0000 | [diff] [blame] | 1050 | |
| 1051 | // Ok, delete the old function now, which is dead. |
Chris Lattner | bdb0132 | 2009-05-05 06:16:31 +0000 | [diff] [blame] | 1052 | OldFn->eraseFromParent(); |
Chris Lattner | 62b33ea | 2009-03-21 08:38:50 +0000 | [diff] [blame] | 1053 | |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 1054 | Entry = NewFn; |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 1055 | } |
Chris Lattner | 0558e79 | 2009-03-21 09:25:43 +0000 | [diff] [blame] | 1056 | |
| 1057 | llvm::Function *Fn = cast<llvm::Function>(Entry); |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 1058 | |
Daniel Dunbar | 219df66 | 2008-09-08 23:44:31 +0000 | [diff] [blame] | 1059 | CodeGenFunction(*this).GenerateCode(D, Fn); |
Daniel Dunbar | 6bfed7e | 2008-08-01 00:01:51 +0000 | [diff] [blame] | 1060 | |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 1061 | SetFunctionDefinitionAttributes(D, Fn); |
| 1062 | SetLLVMFunctionAttributesForDefinition(D, Fn); |
Daniel Dunbar | 219df66 | 2008-09-08 23:44:31 +0000 | [diff] [blame] | 1063 | |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 1064 | if (const ConstructorAttr *CA = D->getAttr<ConstructorAttr>()) |
Daniel Dunbar | 219df66 | 2008-09-08 23:44:31 +0000 | [diff] [blame] | 1065 | AddGlobalCtor(Fn, CA->getPriority()); |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 1066 | if (const DestructorAttr *DA = D->getAttr<DestructorAttr>()) |
Daniel Dunbar | 219df66 | 2008-09-08 23:44:31 +0000 | [diff] [blame] | 1067 | AddGlobalDtor(Fn, DA->getPriority()); |
Daniel Dunbar | bd012ff | 2008-07-29 23:18:29 +0000 | [diff] [blame] | 1068 | } |
| 1069 | |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 1070 | void CodeGenModule::EmitAliasDefinition(const ValueDecl *D) { |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 1071 | const AliasAttr *AA = D->getAttr<AliasAttr>(); |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 1072 | assert(AA && "Not an alias?"); |
| 1073 | |
| 1074 | const llvm::Type *DeclTy = getTypes().ConvertTypeForMem(D->getType()); |
| 1075 | |
| 1076 | // Unique the name through the identifier table. |
| 1077 | const char *AliaseeName = AA->getAliasee().c_str(); |
| 1078 | AliaseeName = getContext().Idents.get(AliaseeName).getName(); |
| 1079 | |
| 1080 | // Create a reference to the named value. This ensures that it is emitted |
| 1081 | // if a deferred decl. |
| 1082 | llvm::Constant *Aliasee; |
| 1083 | if (isa<llvm::FunctionType>(DeclTy)) |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 1084 | Aliasee = GetOrCreateLLVMFunction(AliaseeName, DeclTy, GlobalDecl()); |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 1085 | else |
| 1086 | Aliasee = GetOrCreateLLVMGlobal(AliaseeName, |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 1087 | llvm::PointerType::getUnqual(DeclTy), 0); |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 1088 | |
| 1089 | // Create the new alias itself, but don't set a name yet. |
| 1090 | llvm::GlobalValue *GA = |
| 1091 | new llvm::GlobalAlias(Aliasee->getType(), |
| 1092 | llvm::Function::ExternalLinkage, |
| 1093 | "", Aliasee, &getModule()); |
| 1094 | |
| 1095 | // See if there is already something with the alias' name in the module. |
| 1096 | const char *MangledName = getMangledName(D); |
| 1097 | llvm::GlobalValue *&Entry = GlobalDeclMap[MangledName]; |
| 1098 | |
| 1099 | if (Entry && !Entry->isDeclaration()) { |
| 1100 | // If there is a definition in the module, then it wins over the alias. |
| 1101 | // This is dubious, but allow it to be safe. Just ignore the alias. |
| 1102 | GA->eraseFromParent(); |
| 1103 | return; |
| 1104 | } |
| 1105 | |
| 1106 | if (Entry) { |
| 1107 | // If there is a declaration in the module, then we had an extern followed |
| 1108 | // by the alias, as in: |
| 1109 | // extern int test6(); |
| 1110 | // ... |
| 1111 | // int test6() __attribute__((alias("test7"))); |
| 1112 | // |
| 1113 | // Remove it and replace uses of it with the alias. |
| 1114 | |
Owen Anderson | 3c4972d | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 1115 | Entry->replaceAllUsesWith(llvm::ConstantExpr::getBitCast(GA, |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 1116 | Entry->getType())); |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 1117 | Entry->eraseFromParent(); |
| 1118 | } |
| 1119 | |
| 1120 | // Now we know that there is no conflict, set the name. |
| 1121 | Entry = GA; |
| 1122 | GA->setName(MangledName); |
| 1123 | |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 1124 | // Set attributes which are particular to an alias; this is a |
| 1125 | // specialization of the attributes which may be set on a global |
| 1126 | // variable/function. |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 1127 | if (D->hasAttr<DLLExportAttr>()) { |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 1128 | if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
| 1129 | // The dllexport attribute is ignored for undefined symbols. |
Argyrios Kyrtzidis | 6fb0aee | 2009-06-30 02:35:26 +0000 | [diff] [blame] | 1130 | if (FD->getBody()) |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 1131 | GA->setLinkage(llvm::Function::DLLExportLinkage); |
| 1132 | } else { |
| 1133 | GA->setLinkage(llvm::Function::DLLExportLinkage); |
| 1134 | } |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 1135 | } else if (D->hasAttr<WeakAttr>() || |
| 1136 | D->hasAttr<WeakImportAttr>()) { |
Daniel Dunbar | 7c65e99 | 2009-04-14 08:05:55 +0000 | [diff] [blame] | 1137 | GA->setLinkage(llvm::Function::WeakAnyLinkage); |
| 1138 | } |
| 1139 | |
| 1140 | SetCommonAttributes(D, GA); |
Chris Lattner | bd53271 | 2009-03-22 21:47:11 +0000 | [diff] [blame] | 1141 | } |
| 1142 | |
Chris Lattner | b808c95 | 2009-03-22 21:56:56 +0000 | [diff] [blame] | 1143 | /// getBuiltinLibFunction - Given a builtin id for a function like |
| 1144 | /// "__builtin_fabsf", return a Function* for "fabsf". |
Mike Stump | c136e6c | 2009-02-27 22:42:30 +0000 | [diff] [blame] | 1145 | llvm::Value *CodeGenModule::getBuiltinLibFunction(unsigned BuiltinID) { |
Douglas Gregor | 3e41d60 | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 1146 | assert((Context.BuiltinInfo.isLibFunction(BuiltinID) || |
| 1147 | Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID)) && |
| 1148 | "isn't a lib fn"); |
Chris Lattner | bef20ac | 2007-08-31 04:31:45 +0000 | [diff] [blame] | 1149 | |
Douglas Gregor | 3e41d60 | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 1150 | // Get the name, skip over the __builtin_ prefix (if necessary). |
| 1151 | const char *Name = Context.BuiltinInfo.GetName(BuiltinID); |
| 1152 | if (Context.BuiltinInfo.isLibFunction(BuiltinID)) |
| 1153 | Name += 10; |
Chris Lattner | bef20ac | 2007-08-31 04:31:45 +0000 | [diff] [blame] | 1154 | |
| 1155 | // Get the type for the builtin. |
Chris Lattner | 86df27b | 2009-06-14 00:45:47 +0000 | [diff] [blame] | 1156 | ASTContext::GetBuiltinTypeError Error; |
| 1157 | QualType Type = Context.GetBuiltinType(BuiltinID, Error); |
| 1158 | assert(Error == ASTContext::GE_None && "Can't get builtin type"); |
Douglas Gregor | 370ab3f | 2009-02-14 01:52:53 +0000 | [diff] [blame] | 1159 | |
Chris Lattner | bef20ac | 2007-08-31 04:31:45 +0000 | [diff] [blame] | 1160 | const llvm::FunctionType *Ty = |
| 1161 | cast<llvm::FunctionType>(getTypes().ConvertType(Type)); |
| 1162 | |
Chris Lattner | b808c95 | 2009-03-22 21:56:56 +0000 | [diff] [blame] | 1163 | // Unique the name through the identifier table. |
| 1164 | Name = getContext().Idents.get(Name).getName(); |
Chris Lattner | bef20ac | 2007-08-31 04:31:45 +0000 | [diff] [blame] | 1165 | // FIXME: param attributes for sext/zext etc. |
Chris Lattner | b4880ba | 2009-05-12 21:21:08 +0000 | [diff] [blame] | 1166 | return GetOrCreateLLVMFunction(Name, Ty, GlobalDecl()); |
Chris Lattner | bef20ac | 2007-08-31 04:31:45 +0000 | [diff] [blame] | 1167 | } |
| 1168 | |
Chris Lattner | 7acda7c | 2007-12-18 00:25:38 +0000 | [diff] [blame] | 1169 | llvm::Function *CodeGenModule::getIntrinsic(unsigned IID,const llvm::Type **Tys, |
| 1170 | unsigned NumTys) { |
| 1171 | return llvm::Intrinsic::getDeclaration(&getModule(), |
| 1172 | (llvm::Intrinsic::ID)IID, Tys, NumTys); |
| 1173 | } |
Chris Lattner | bef20ac | 2007-08-31 04:31:45 +0000 | [diff] [blame] | 1174 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1175 | llvm::Function *CodeGenModule::getMemCpyFn() { |
| 1176 | if (MemCpyFn) return MemCpyFn; |
Chris Lattner | 4e8a9e8 | 2008-11-21 16:43:15 +0000 | [diff] [blame] | 1177 | const llvm::Type *IntPtr = TheTargetData.getIntPtrType(); |
| 1178 | return MemCpyFn = getIntrinsic(llvm::Intrinsic::memcpy, &IntPtr, 1); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1179 | } |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 1180 | |
Eli Friedman | 0c99509 | 2008-05-26 12:59:39 +0000 | [diff] [blame] | 1181 | llvm::Function *CodeGenModule::getMemMoveFn() { |
| 1182 | if (MemMoveFn) return MemMoveFn; |
Chris Lattner | 4e8a9e8 | 2008-11-21 16:43:15 +0000 | [diff] [blame] | 1183 | const llvm::Type *IntPtr = TheTargetData.getIntPtrType(); |
| 1184 | return MemMoveFn = getIntrinsic(llvm::Intrinsic::memmove, &IntPtr, 1); |
Eli Friedman | 0c99509 | 2008-05-26 12:59:39 +0000 | [diff] [blame] | 1185 | } |
| 1186 | |
Lauro Ramos Venancio | 41ef30e | 2008-02-19 22:01:01 +0000 | [diff] [blame] | 1187 | llvm::Function *CodeGenModule::getMemSetFn() { |
| 1188 | if (MemSetFn) return MemSetFn; |
Chris Lattner | 4e8a9e8 | 2008-11-21 16:43:15 +0000 | [diff] [blame] | 1189 | const llvm::Type *IntPtr = TheTargetData.getIntPtrType(); |
| 1190 | return MemSetFn = getIntrinsic(llvm::Intrinsic::memset, &IntPtr, 1); |
Lauro Ramos Venancio | 41ef30e | 2008-02-19 22:01:01 +0000 | [diff] [blame] | 1191 | } |
Chris Lattner | 7acda7c | 2007-12-18 00:25:38 +0000 | [diff] [blame] | 1192 | |
Anders Carlsson | e3daa76 | 2008-11-15 18:54:24 +0000 | [diff] [blame] | 1193 | static void appendFieldAndPadding(CodeGenModule &CGM, |
| 1194 | std::vector<llvm::Constant*>& Fields, |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1195 | FieldDecl *FieldD, FieldDecl *NextFieldD, |
| 1196 | llvm::Constant* Field, |
Chris Lattner | 3c8f153 | 2009-03-21 07:12:05 +0000 | [diff] [blame] | 1197 | RecordDecl* RD, const llvm::StructType *STy) { |
Anders Carlsson | e3daa76 | 2008-11-15 18:54:24 +0000 | [diff] [blame] | 1198 | // Append the field. |
| 1199 | Fields.push_back(Field); |
| 1200 | |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1201 | int StructFieldNo = CGM.getTypes().getLLVMFieldNo(FieldD); |
Anders Carlsson | e3daa76 | 2008-11-15 18:54:24 +0000 | [diff] [blame] | 1202 | |
| 1203 | int NextStructFieldNo; |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1204 | if (!NextFieldD) { |
Anders Carlsson | e3daa76 | 2008-11-15 18:54:24 +0000 | [diff] [blame] | 1205 | NextStructFieldNo = STy->getNumElements(); |
| 1206 | } else { |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1207 | NextStructFieldNo = CGM.getTypes().getLLVMFieldNo(NextFieldD); |
Anders Carlsson | e3daa76 | 2008-11-15 18:54:24 +0000 | [diff] [blame] | 1208 | } |
| 1209 | |
| 1210 | // Append padding |
| 1211 | for (int i = StructFieldNo + 1; i < NextStructFieldNo; i++) { |
| 1212 | llvm::Constant *C = |
Owen Anderson | c9c88b4 | 2009-07-31 20:28:54 +0000 | [diff] [blame] | 1213 | llvm::Constant::getNullValue(STy->getElementType(StructFieldNo + 1)); |
Anders Carlsson | e3daa76 | 2008-11-15 18:54:24 +0000 | [diff] [blame] | 1214 | |
| 1215 | Fields.push_back(C); |
| 1216 | } |
| 1217 | } |
| 1218 | |
Daniel Dunbar | 1d55291 | 2009-07-23 22:52:48 +0000 | [diff] [blame] | 1219 | static llvm::StringMapEntry<llvm::Constant*> & |
| 1220 | GetConstantCFStringEntry(llvm::StringMap<llvm::Constant*> &Map, |
| 1221 | const StringLiteral *Literal, |
Daniel Dunbar | 70ee975 | 2009-07-23 23:41:22 +0000 | [diff] [blame] | 1222 | bool TargetIsLSB, |
Daniel Dunbar | 1d55291 | 2009-07-23 22:52:48 +0000 | [diff] [blame] | 1223 | bool &IsUTF16, |
| 1224 | unsigned &StringLength) { |
| 1225 | unsigned NumBytes = Literal->getByteLength(); |
| 1226 | |
| 1227 | // Check for simple case. |
| 1228 | if (!Literal->containsNonAsciiOrNull()) { |
| 1229 | StringLength = NumBytes; |
| 1230 | return Map.GetOrCreateValue(llvm::StringRef(Literal->getStrData(), |
| 1231 | StringLength)); |
Steve Naroff | e9b7d8a | 2009-04-01 15:50:34 +0000 | [diff] [blame] | 1232 | } |
Daniel Dunbar | 1d55291 | 2009-07-23 22:52:48 +0000 | [diff] [blame] | 1233 | |
| 1234 | // Otherwise, convert the UTF8 literals into a byte string. |
| 1235 | llvm::SmallVector<UTF16, 128> ToBuf(NumBytes); |
| 1236 | const UTF8 *FromPtr = (UTF8 *)Literal->getStrData(); |
| 1237 | UTF16 *ToPtr = &ToBuf[0]; |
| 1238 | |
| 1239 | ConversionResult Result = ConvertUTF8toUTF16(&FromPtr, FromPtr + NumBytes, |
| 1240 | &ToPtr, ToPtr + NumBytes, |
| 1241 | strictConversion); |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 1242 | |
Daniel Dunbar | 1d55291 | 2009-07-23 22:52:48 +0000 | [diff] [blame] | 1243 | // Check for conversion failure. |
| 1244 | if (Result != conversionOK) { |
| 1245 | // FIXME: Have Sema::CheckObjCString() validate the UTF-8 string and remove |
| 1246 | // this duplicate code. |
| 1247 | assert(Result == sourceIllegal && "UTF-8 to UTF-16 conversion failed"); |
| 1248 | StringLength = NumBytes; |
| 1249 | return Map.GetOrCreateValue(llvm::StringRef(Literal->getStrData(), |
| 1250 | StringLength)); |
| 1251 | } |
| 1252 | |
Daniel Dunbar | 70ee975 | 2009-07-23 23:41:22 +0000 | [diff] [blame] | 1253 | // ConvertUTF8toUTF16 returns the length in ToPtr. |
Daniel Dunbar | 1d55291 | 2009-07-23 22:52:48 +0000 | [diff] [blame] | 1254 | StringLength = ToPtr - &ToBuf[0]; |
Daniel Dunbar | 70ee975 | 2009-07-23 23:41:22 +0000 | [diff] [blame] | 1255 | |
| 1256 | // Render the UTF-16 string into a byte array and convert to the target byte |
| 1257 | // order. |
| 1258 | // |
| 1259 | // FIXME: This isn't something we should need to do here. |
| 1260 | llvm::SmallString<128> AsBytes; |
| 1261 | AsBytes.reserve(StringLength * 2); |
| 1262 | for (unsigned i = 0; i != StringLength; ++i) { |
| 1263 | unsigned short Val = ToBuf[i]; |
| 1264 | if (TargetIsLSB) { |
| 1265 | AsBytes.push_back(Val & 0xFF); |
| 1266 | AsBytes.push_back(Val >> 8); |
| 1267 | } else { |
| 1268 | AsBytes.push_back(Val >> 8); |
| 1269 | AsBytes.push_back(Val & 0xFF); |
| 1270 | } |
| 1271 | } |
Daniel Dunbar | 434da48 | 2009-08-03 21:47:08 +0000 | [diff] [blame] | 1272 | // Append one extra null character, the second is automatically added by our |
| 1273 | // caller. |
| 1274 | AsBytes.push_back(0); |
Daniel Dunbar | 70ee975 | 2009-07-23 23:41:22 +0000 | [diff] [blame] | 1275 | |
Daniel Dunbar | 1d55291 | 2009-07-23 22:52:48 +0000 | [diff] [blame] | 1276 | IsUTF16 = true; |
Daniel Dunbar | 70ee975 | 2009-07-23 23:41:22 +0000 | [diff] [blame] | 1277 | return Map.GetOrCreateValue(llvm::StringRef(AsBytes.data(), AsBytes.size())); |
Daniel Dunbar | 1d55291 | 2009-07-23 22:52:48 +0000 | [diff] [blame] | 1278 | } |
| 1279 | |
| 1280 | llvm::Constant * |
| 1281 | CodeGenModule::GetAddrOfConstantCFString(const StringLiteral *Literal) { |
| 1282 | unsigned StringLength = 0; |
| 1283 | bool isUTF16 = false; |
| 1284 | llvm::StringMapEntry<llvm::Constant*> &Entry = |
Daniel Dunbar | 70ee975 | 2009-07-23 23:41:22 +0000 | [diff] [blame] | 1285 | GetConstantCFStringEntry(CFConstantStringMap, Literal, |
| 1286 | getTargetData().isLittleEndian(), |
| 1287 | isUTF16, StringLength); |
Daniel Dunbar | 1d55291 | 2009-07-23 22:52:48 +0000 | [diff] [blame] | 1288 | |
| 1289 | if (llvm::Constant *C = Entry.getValue()) |
| 1290 | return C; |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 1291 | |
Owen Anderson | c9c88b4 | 2009-07-31 20:28:54 +0000 | [diff] [blame] | 1292 | llvm::Constant *Zero = llvm::Constant::getNullValue(llvm::Type::Int32Ty); |
Daniel Dunbar | 3e9df99 | 2008-08-23 18:37:06 +0000 | [diff] [blame] | 1293 | llvm::Constant *Zeros[] = { Zero, Zero }; |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 1294 | |
Chris Lattner | 9d4a15f | 2009-07-16 16:48:25 +0000 | [diff] [blame] | 1295 | // If we don't already have it, get __CFConstantStringClassReference. |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 1296 | if (!CFConstantStringClassRef) { |
| 1297 | const llvm::Type *Ty = getTypes().ConvertType(getContext().IntTy); |
Owen Anderson | 96e0fc7 | 2009-07-29 22:16:19 +0000 | [diff] [blame] | 1298 | Ty = llvm::ArrayType::get(Ty, 0); |
Chris Lattner | 9d4a15f | 2009-07-16 16:48:25 +0000 | [diff] [blame] | 1299 | llvm::Constant *GV = CreateRuntimeVariable(Ty, |
| 1300 | "__CFConstantStringClassReference"); |
Daniel Dunbar | 3e9df99 | 2008-08-23 18:37:06 +0000 | [diff] [blame] | 1301 | // Decay array -> ptr |
| 1302 | CFConstantStringClassRef = |
Owen Anderson | 3c4972d | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 1303 | llvm::ConstantExpr::getGetElementPtr(GV, Zeros, 2); |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 1304 | } |
| 1305 | |
Anders Carlsson | e3daa76 | 2008-11-15 18:54:24 +0000 | [diff] [blame] | 1306 | QualType CFTy = getContext().getCFConstantStringType(); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1307 | RecordDecl *CFRD = CFTy->getAs<RecordType>()->getDecl(); |
Daniel Dunbar | 3e9df99 | 2008-08-23 18:37:06 +0000 | [diff] [blame] | 1308 | |
Anders Carlsson | e3daa76 | 2008-11-15 18:54:24 +0000 | [diff] [blame] | 1309 | const llvm::StructType *STy = |
| 1310 | cast<llvm::StructType>(getTypes().ConvertType(CFTy)); |
| 1311 | |
| 1312 | std::vector<llvm::Constant*> Fields; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1313 | RecordDecl::field_iterator Field = CFRD->field_begin(); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1314 | |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 1315 | // Class pointer. |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1316 | FieldDecl *CurField = *Field++; |
| 1317 | FieldDecl *NextField = *Field++; |
| 1318 | appendFieldAndPadding(*this, Fields, CurField, NextField, |
| 1319 | CFConstantStringClassRef, CFRD, STy); |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 1320 | |
| 1321 | // Flags. |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1322 | CurField = NextField; |
| 1323 | NextField = *Field++; |
Daniel Dunbar | 3e9df99 | 2008-08-23 18:37:06 +0000 | [diff] [blame] | 1324 | const llvm::Type *Ty = getTypes().ConvertType(getContext().UnsignedIntTy); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1325 | appendFieldAndPadding(*this, Fields, CurField, NextField, |
Owen Anderson | 4a28d5d | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 1326 | isUTF16 ? llvm::ConstantInt::get(Ty, 0x07d0) |
| 1327 | : llvm::ConstantInt::get(Ty, 0x07C8), |
Steve Naroff | e9b7d8a | 2009-04-01 15:50:34 +0000 | [diff] [blame] | 1328 | CFRD, STy); |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 1329 | |
| 1330 | // String pointer. |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1331 | CurField = NextField; |
| 1332 | NextField = *Field++; |
Owen Anderson | 7db6d83 | 2009-07-28 18:33:04 +0000 | [diff] [blame] | 1333 | llvm::Constant *C = llvm::ConstantArray::get(Entry.getKey().str()); |
Daniel Dunbar | a9668e0 | 2009-04-03 00:57:44 +0000 | [diff] [blame] | 1334 | |
| 1335 | const char *Sect, *Prefix; |
| 1336 | bool isConstant; |
Chris Lattner | 95b851e | 2009-07-16 05:03:48 +0000 | [diff] [blame] | 1337 | llvm::GlobalValue::LinkageTypes Linkage; |
Daniel Dunbar | a9668e0 | 2009-04-03 00:57:44 +0000 | [diff] [blame] | 1338 | if (isUTF16) { |
| 1339 | Prefix = getContext().Target.getUnicodeStringSymbolPrefix(); |
| 1340 | Sect = getContext().Target.getUnicodeStringSection(); |
Chris Lattner | 95b851e | 2009-07-16 05:03:48 +0000 | [diff] [blame] | 1341 | // FIXME: why do utf strings get "l" labels instead of "L" labels? |
| 1342 | Linkage = llvm::GlobalValue::InternalLinkage; |
Daniel Dunbar | a9668e0 | 2009-04-03 00:57:44 +0000 | [diff] [blame] | 1343 | // FIXME: Why does GCC not set constant here? |
| 1344 | isConstant = false; |
| 1345 | } else { |
Chris Lattner | 95b851e | 2009-07-16 05:03:48 +0000 | [diff] [blame] | 1346 | Prefix = ".str"; |
Daniel Dunbar | a9668e0 | 2009-04-03 00:57:44 +0000 | [diff] [blame] | 1347 | Sect = getContext().Target.getCFStringDataSection(); |
Chris Lattner | 95b851e | 2009-07-16 05:03:48 +0000 | [diff] [blame] | 1348 | Linkage = llvm::GlobalValue::PrivateLinkage; |
Daniel Dunbar | a9668e0 | 2009-04-03 00:57:44 +0000 | [diff] [blame] | 1349 | // FIXME: -fwritable-strings should probably affect this, but we |
| 1350 | // are following gcc here. |
| 1351 | isConstant = true; |
| 1352 | } |
Daniel Dunbar | 8e5c2b8 | 2009-03-31 23:42:16 +0000 | [diff] [blame] | 1353 | llvm::GlobalVariable *GV = |
Owen Anderson | 1c431b3 | 2009-07-08 19:05:04 +0000 | [diff] [blame] | 1354 | new llvm::GlobalVariable(getModule(), C->getType(), isConstant, |
Chris Lattner | 95b851e | 2009-07-16 05:03:48 +0000 | [diff] [blame] | 1355 | Linkage, C, Prefix); |
Daniel Dunbar | a9668e0 | 2009-04-03 00:57:44 +0000 | [diff] [blame] | 1356 | if (Sect) |
Daniel Dunbar | 8e5c2b8 | 2009-03-31 23:42:16 +0000 | [diff] [blame] | 1357 | GV->setSection(Sect); |
Daniel Dunbar | a9668e0 | 2009-04-03 00:57:44 +0000 | [diff] [blame] | 1358 | if (isUTF16) { |
| 1359 | unsigned Align = getContext().getTypeAlign(getContext().ShortTy)/8; |
| 1360 | GV->setAlignment(Align); |
| 1361 | } |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1362 | appendFieldAndPadding(*this, Fields, CurField, NextField, |
Owen Anderson | 3c4972d | 2009-07-29 18:54:39 +0000 | [diff] [blame] | 1363 | llvm::ConstantExpr::getGetElementPtr(GV, Zeros, 2), |
Anders Carlsson | e3daa76 | 2008-11-15 18:54:24 +0000 | [diff] [blame] | 1364 | CFRD, STy); |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 1365 | |
| 1366 | // String length. |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1367 | CurField = NextField; |
| 1368 | NextField = 0; |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 1369 | Ty = getTypes().ConvertType(getContext().LongTy); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1370 | appendFieldAndPadding(*this, Fields, CurField, NextField, |
Owen Anderson | 4a28d5d | 2009-07-24 23:12:58 +0000 | [diff] [blame] | 1371 | llvm::ConstantInt::get(Ty, StringLength), CFRD, STy); |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 1372 | |
| 1373 | // The struct. |
Owen Anderson | 08e2524 | 2009-07-27 22:29:56 +0000 | [diff] [blame] | 1374 | C = llvm::ConstantStruct::get(STy, Fields); |
Owen Anderson | 1c431b3 | 2009-07-08 19:05:04 +0000 | [diff] [blame] | 1375 | GV = new llvm::GlobalVariable(getModule(), C->getType(), true, |
Chris Lattner | 95b851e | 2009-07-16 05:03:48 +0000 | [diff] [blame] | 1376 | llvm::GlobalVariable::PrivateLinkage, C, |
| 1377 | "_unnamed_cfstring_"); |
Daniel Dunbar | 8e5c2b8 | 2009-03-31 23:42:16 +0000 | [diff] [blame] | 1378 | if (const char *Sect = getContext().Target.getCFStringSection()) |
| 1379 | GV->setSection(Sect); |
Daniel Dunbar | 1d55291 | 2009-07-23 22:52:48 +0000 | [diff] [blame] | 1380 | Entry.setValue(GV); |
Daniel Dunbar | 3e9df99 | 2008-08-23 18:37:06 +0000 | [diff] [blame] | 1381 | |
Anders Carlsson | 0c67829 | 2007-11-01 00:41:52 +0000 | [diff] [blame] | 1382 | return GV; |
Anders Carlsson | c9e2091 | 2007-08-21 00:21:21 +0000 | [diff] [blame] | 1383 | } |
Chris Lattner | 45e8cbd | 2007-11-28 05:34:05 +0000 | [diff] [blame] | 1384 | |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 1385 | /// GetStringForStringLiteral - Return the appropriate bytes for a |
Daniel Dunbar | 1e04976 | 2008-08-10 20:25:57 +0000 | [diff] [blame] | 1386 | /// string literal, properly padded to match the literal type. |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 1387 | std::string CodeGenModule::GetStringForStringLiteral(const StringLiteral *E) { |
Daniel Dunbar | 1e04976 | 2008-08-10 20:25:57 +0000 | [diff] [blame] | 1388 | const char *StrData = E->getStrData(); |
| 1389 | unsigned Len = E->getByteLength(); |
| 1390 | |
| 1391 | const ConstantArrayType *CAT = |
| 1392 | getContext().getAsConstantArrayType(E->getType()); |
| 1393 | assert(CAT && "String isn't pointer or array!"); |
| 1394 | |
Chris Lattner | dbb1ecc | 2009-02-26 23:01:51 +0000 | [diff] [blame] | 1395 | // Resize the string to the right size. |
Daniel Dunbar | 1e04976 | 2008-08-10 20:25:57 +0000 | [diff] [blame] | 1396 | std::string Str(StrData, StrData+Len); |
| 1397 | uint64_t RealLen = CAT->getSize().getZExtValue(); |
Chris Lattner | dbb1ecc | 2009-02-26 23:01:51 +0000 | [diff] [blame] | 1398 | |
| 1399 | if (E->isWide()) |
| 1400 | RealLen *= getContext().Target.getWCharWidth()/8; |
| 1401 | |
Daniel Dunbar | 1e04976 | 2008-08-10 20:25:57 +0000 | [diff] [blame] | 1402 | Str.resize(RealLen, '\0'); |
| 1403 | |
| 1404 | return Str; |
| 1405 | } |
| 1406 | |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 1407 | /// GetAddrOfConstantStringFromLiteral - Return a pointer to a |
| 1408 | /// constant array for the given string literal. |
| 1409 | llvm::Constant * |
| 1410 | CodeGenModule::GetAddrOfConstantStringFromLiteral(const StringLiteral *S) { |
| 1411 | // FIXME: This can be more efficient. |
| 1412 | return GetAddrOfConstantString(GetStringForStringLiteral(S)); |
| 1413 | } |
| 1414 | |
Chris Lattner | eaf2bb8 | 2009-02-24 22:18:39 +0000 | [diff] [blame] | 1415 | /// GetAddrOfConstantStringFromObjCEncode - Return a pointer to a constant |
| 1416 | /// array for the given ObjCEncodeExpr node. |
| 1417 | llvm::Constant * |
| 1418 | CodeGenModule::GetAddrOfConstantStringFromObjCEncode(const ObjCEncodeExpr *E) { |
| 1419 | std::string Str; |
| 1420 | getContext().getObjCEncodingForType(E->getEncodedType(), Str); |
Eli Friedman | a210f35 | 2009-03-07 20:17:55 +0000 | [diff] [blame] | 1421 | |
| 1422 | return GetAddrOfConstantCString(Str); |
Chris Lattner | eaf2bb8 | 2009-02-24 22:18:39 +0000 | [diff] [blame] | 1423 | } |
| 1424 | |
| 1425 | |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 1426 | /// GenerateWritableString -- Creates storage for a string literal. |
Chris Lattner | 45e8cbd | 2007-11-28 05:34:05 +0000 | [diff] [blame] | 1427 | static llvm::Constant *GenerateStringLiteral(const std::string &str, |
| 1428 | bool constant, |
Daniel Dunbar | 5fabf9d | 2008-10-17 21:56:50 +0000 | [diff] [blame] | 1429 | CodeGenModule &CGM, |
| 1430 | const char *GlobalName) { |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 1431 | // Create Constant for this string literal. Don't add a '\0'. |
Owen Anderson | 7db6d83 | 2009-07-28 18:33:04 +0000 | [diff] [blame] | 1432 | llvm::Constant *C = llvm::ConstantArray::get(str, false); |
Chris Lattner | 45e8cbd | 2007-11-28 05:34:05 +0000 | [diff] [blame] | 1433 | |
| 1434 | // Create a global variable for this string |
Owen Anderson | 1c431b3 | 2009-07-08 19:05:04 +0000 | [diff] [blame] | 1435 | return new llvm::GlobalVariable(CGM.getModule(), C->getType(), constant, |
Chris Lattner | 95b851e | 2009-07-16 05:03:48 +0000 | [diff] [blame] | 1436 | llvm::GlobalValue::PrivateLinkage, |
Owen Anderson | 1c431b3 | 2009-07-08 19:05:04 +0000 | [diff] [blame] | 1437 | C, GlobalName); |
Chris Lattner | 45e8cbd | 2007-11-28 05:34:05 +0000 | [diff] [blame] | 1438 | } |
| 1439 | |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 1440 | /// GetAddrOfConstantString - Returns a pointer to a character array |
| 1441 | /// containing the literal. This contents are exactly that of the |
| 1442 | /// given string, i.e. it will not be null terminated automatically; |
| 1443 | /// see GetAddrOfConstantCString. Note that whether the result is |
| 1444 | /// actually a pointer to an LLVM constant depends on |
| 1445 | /// Feature.WriteableStrings. |
| 1446 | /// |
| 1447 | /// The result has pointer to array type. |
Daniel Dunbar | 5fabf9d | 2008-10-17 21:56:50 +0000 | [diff] [blame] | 1448 | llvm::Constant *CodeGenModule::GetAddrOfConstantString(const std::string &str, |
| 1449 | const char *GlobalName) { |
Daniel Dunbar | 8e5c2b8 | 2009-03-31 23:42:16 +0000 | [diff] [blame] | 1450 | bool IsConstant = !Features.WritableStrings; |
| 1451 | |
| 1452 | // Get the default prefix if a name wasn't specified. |
| 1453 | if (!GlobalName) |
Chris Lattner | 95b851e | 2009-07-16 05:03:48 +0000 | [diff] [blame] | 1454 | GlobalName = ".str"; |
Daniel Dunbar | 8e5c2b8 | 2009-03-31 23:42:16 +0000 | [diff] [blame] | 1455 | |
| 1456 | // Don't share any string literals if strings aren't constant. |
| 1457 | if (!IsConstant) |
Daniel Dunbar | 5fabf9d | 2008-10-17 21:56:50 +0000 | [diff] [blame] | 1458 | return GenerateStringLiteral(str, false, *this, GlobalName); |
Chris Lattner | 45e8cbd | 2007-11-28 05:34:05 +0000 | [diff] [blame] | 1459 | |
| 1460 | llvm::StringMapEntry<llvm::Constant *> &Entry = |
Chris Lattner | 95b851e | 2009-07-16 05:03:48 +0000 | [diff] [blame] | 1461 | ConstantStringMap.GetOrCreateValue(&str[0], &str[str.length()]); |
Chris Lattner | 45e8cbd | 2007-11-28 05:34:05 +0000 | [diff] [blame] | 1462 | |
| 1463 | if (Entry.getValue()) |
Chris Lattner | eaf2bb8 | 2009-02-24 22:18:39 +0000 | [diff] [blame] | 1464 | return Entry.getValue(); |
Chris Lattner | 45e8cbd | 2007-11-28 05:34:05 +0000 | [diff] [blame] | 1465 | |
| 1466 | // Create a global variable for this. |
Daniel Dunbar | 5fabf9d | 2008-10-17 21:56:50 +0000 | [diff] [blame] | 1467 | llvm::Constant *C = GenerateStringLiteral(str, true, *this, GlobalName); |
Chris Lattner | 45e8cbd | 2007-11-28 05:34:05 +0000 | [diff] [blame] | 1468 | Entry.setValue(C); |
| 1469 | return C; |
| 1470 | } |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 1471 | |
| 1472 | /// GetAddrOfConstantCString - Returns a pointer to a character |
| 1473 | /// array containing the literal and a terminating '\-' |
| 1474 | /// character. The result has pointer to array type. |
Daniel Dunbar | 5fabf9d | 2008-10-17 21:56:50 +0000 | [diff] [blame] | 1475 | llvm::Constant *CodeGenModule::GetAddrOfConstantCString(const std::string &str, |
| 1476 | const char *GlobalName){ |
Chris Lattner | c9f29c6 | 2008-12-09 19:10:54 +0000 | [diff] [blame] | 1477 | return GetAddrOfConstantString(str + '\0', GlobalName); |
Daniel Dunbar | 6143293 | 2008-08-13 23:20:05 +0000 | [diff] [blame] | 1478 | } |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 1479 | |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 1480 | /// EmitObjCPropertyImplementations - Emit information for synthesized |
| 1481 | /// properties for an implementation. |
| 1482 | void CodeGenModule::EmitObjCPropertyImplementations(const |
| 1483 | ObjCImplementationDecl *D) { |
Douglas Gregor | 653f1b1 | 2009-04-23 01:02:12 +0000 | [diff] [blame] | 1484 | for (ObjCImplementationDecl::propimpl_iterator |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1485 | i = D->propimpl_begin(), e = D->propimpl_end(); i != e; ++i) { |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 1486 | ObjCPropertyImplDecl *PID = *i; |
| 1487 | |
| 1488 | // Dynamic is just for type-checking. |
| 1489 | if (PID->getPropertyImplementation() == ObjCPropertyImplDecl::Synthesize) { |
| 1490 | ObjCPropertyDecl *PD = PID->getPropertyDecl(); |
| 1491 | |
| 1492 | // Determine which methods need to be implemented, some may have |
| 1493 | // been overridden. Note that ::isSynthesized is not the method |
| 1494 | // we want, that just indicates if the decl came from a |
| 1495 | // property. What we want to know is if the method is defined in |
| 1496 | // this implementation. |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1497 | if (!D->getInstanceMethod(PD->getGetterName())) |
Fariborz Jahanian | fef30b5 | 2008-12-09 20:23:04 +0000 | [diff] [blame] | 1498 | CodeGenFunction(*this).GenerateObjCGetter( |
| 1499 | const_cast<ObjCImplementationDecl *>(D), PID); |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 1500 | if (!PD->isReadOnly() && |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1501 | !D->getInstanceMethod(PD->getSetterName())) |
Fariborz Jahanian | fef30b5 | 2008-12-09 20:23:04 +0000 | [diff] [blame] | 1502 | CodeGenFunction(*this).GenerateObjCSetter( |
| 1503 | const_cast<ObjCImplementationDecl *>(D), PID); |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 1504 | } |
| 1505 | } |
| 1506 | } |
| 1507 | |
Anders Carlsson | 91e20dd | 2009-04-02 05:55:18 +0000 | [diff] [blame] | 1508 | /// EmitNamespace - Emit all declarations in a namespace. |
Anders Carlsson | 984e068 | 2009-04-01 00:58:25 +0000 | [diff] [blame] | 1509 | void CodeGenModule::EmitNamespace(const NamespaceDecl *ND) { |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1510 | for (RecordDecl::decl_iterator I = ND->decls_begin(), E = ND->decls_end(); |
Anders Carlsson | 984e068 | 2009-04-01 00:58:25 +0000 | [diff] [blame] | 1511 | I != E; ++I) |
| 1512 | EmitTopLevelDecl(*I); |
| 1513 | } |
| 1514 | |
Anders Carlsson | 91e20dd | 2009-04-02 05:55:18 +0000 | [diff] [blame] | 1515 | // EmitLinkageSpec - Emit all declarations in a linkage spec. |
| 1516 | void CodeGenModule::EmitLinkageSpec(const LinkageSpecDecl *LSD) { |
Eli Friedman | f976be8 | 2009-08-01 20:48:04 +0000 | [diff] [blame] | 1517 | if (LSD->getLanguage() != LinkageSpecDecl::lang_c && |
| 1518 | LSD->getLanguage() != LinkageSpecDecl::lang_cxx) { |
Anders Carlsson | 91e20dd | 2009-04-02 05:55:18 +0000 | [diff] [blame] | 1519 | ErrorUnsupported(LSD, "linkage spec"); |
| 1520 | return; |
| 1521 | } |
| 1522 | |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1523 | for (RecordDecl::decl_iterator I = LSD->decls_begin(), E = LSD->decls_end(); |
Anders Carlsson | 91e20dd | 2009-04-02 05:55:18 +0000 | [diff] [blame] | 1524 | I != E; ++I) |
| 1525 | EmitTopLevelDecl(*I); |
| 1526 | } |
| 1527 | |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 1528 | /// EmitTopLevelDecl - Emit code for a single top level declaration. |
| 1529 | void CodeGenModule::EmitTopLevelDecl(Decl *D) { |
| 1530 | // If an error has occurred, stop code generation, but continue |
| 1531 | // parsing and semantic analysis (to ensure all warnings and errors |
| 1532 | // are emitted). |
| 1533 | if (Diags.hasErrorOccurred()) |
| 1534 | return; |
| 1535 | |
Douglas Gregor | 16e8be2 | 2009-06-29 17:30:29 +0000 | [diff] [blame] | 1536 | // Ignore dependent declarations. |
| 1537 | if (D->getDeclContext() && D->getDeclContext()->isDependentContext()) |
| 1538 | return; |
| 1539 | |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 1540 | switch (D->getKind()) { |
Anders Carlsson | 2b77ba8 | 2009-04-04 20:47:02 +0000 | [diff] [blame] | 1541 | case Decl::CXXMethod: |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 1542 | case Decl::Function: |
Douglas Gregor | 16e8be2 | 2009-06-29 17:30:29 +0000 | [diff] [blame] | 1543 | // Skip function templates |
| 1544 | if (cast<FunctionDecl>(D)->getDescribedFunctionTemplate()) |
| 1545 | return; |
| 1546 | |
| 1547 | // Fall through |
| 1548 | |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 1549 | case Decl::Var: |
Anders Carlsson | 2a131fb | 2009-05-05 04:44:02 +0000 | [diff] [blame] | 1550 | EmitGlobal(GlobalDecl(cast<ValueDecl>(D))); |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 1551 | break; |
| 1552 | |
Anders Carlsson | 95d4e5d | 2009-04-15 15:55:24 +0000 | [diff] [blame] | 1553 | // C++ Decls |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 1554 | case Decl::Namespace: |
Anders Carlsson | 984e068 | 2009-04-01 00:58:25 +0000 | [diff] [blame] | 1555 | EmitNamespace(cast<NamespaceDecl>(D)); |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 1556 | break; |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 1557 | // No code generation needed. |
| 1558 | case Decl::Using: |
Douglas Gregor | 127102b | 2009-06-29 20:59:39 +0000 | [diff] [blame] | 1559 | case Decl::ClassTemplate: |
| 1560 | case Decl::FunctionTemplate: |
Douglas Gregor | 9cfbe48 | 2009-06-20 00:51:54 +0000 | [diff] [blame] | 1561 | break; |
Anders Carlsson | 95d4e5d | 2009-04-15 15:55:24 +0000 | [diff] [blame] | 1562 | case Decl::CXXConstructor: |
| 1563 | EmitCXXConstructors(cast<CXXConstructorDecl>(D)); |
| 1564 | break; |
Anders Carlsson | 27ae536 | 2009-04-17 01:58:57 +0000 | [diff] [blame] | 1565 | case Decl::CXXDestructor: |
| 1566 | EmitCXXDestructors(cast<CXXDestructorDecl>(D)); |
| 1567 | break; |
Anders Carlsson | 36674d2 | 2009-06-11 21:22:55 +0000 | [diff] [blame] | 1568 | |
| 1569 | case Decl::StaticAssert: |
| 1570 | // Nothing to do. |
| 1571 | break; |
| 1572 | |
Anders Carlsson | 95d4e5d | 2009-04-15 15:55:24 +0000 | [diff] [blame] | 1573 | // Objective-C Decls |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 1574 | |
Fariborz Jahanian | 38e24c7 | 2009-03-18 22:33:24 +0000 | [diff] [blame] | 1575 | // Forward declarations, no (immediate) code generation. |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 1576 | case Decl::ObjCClass: |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 1577 | case Decl::ObjCForwardProtocol: |
Fariborz Jahanian | b31cb7f | 2009-03-21 18:06:45 +0000 | [diff] [blame] | 1578 | case Decl::ObjCCategory: |
Chris Lattner | 285d0db | 2009-04-01 02:36:43 +0000 | [diff] [blame] | 1579 | case Decl::ObjCInterface: |
Chris Lattner | 285d0db | 2009-04-01 02:36:43 +0000 | [diff] [blame] | 1580 | break; |
| 1581 | |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 1582 | case Decl::ObjCProtocol: |
Fariborz Jahanian | b31cb7f | 2009-03-21 18:06:45 +0000 | [diff] [blame] | 1583 | Runtime->GenerateProtocol(cast<ObjCProtocolDecl>(D)); |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 1584 | break; |
| 1585 | |
| 1586 | case Decl::ObjCCategoryImpl: |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 1587 | // Categories have properties but don't support synthesize so we |
| 1588 | // can ignore them here. |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 1589 | Runtime->GenerateCategory(cast<ObjCCategoryImplDecl>(D)); |
| 1590 | break; |
| 1591 | |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 1592 | case Decl::ObjCImplementation: { |
| 1593 | ObjCImplementationDecl *OMD = cast<ObjCImplementationDecl>(D); |
| 1594 | EmitObjCPropertyImplementations(OMD); |
| 1595 | Runtime->GenerateClass(OMD); |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 1596 | break; |
Daniel Dunbar | af05bb9 | 2008-08-26 08:29:31 +0000 | [diff] [blame] | 1597 | } |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 1598 | case Decl::ObjCMethod: { |
| 1599 | ObjCMethodDecl *OMD = cast<ObjCMethodDecl>(D); |
| 1600 | // If this is not a prototype, emit the body. |
Argyrios Kyrtzidis | 6fb0aee | 2009-06-30 02:35:26 +0000 | [diff] [blame] | 1601 | if (OMD->getBody()) |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 1602 | CodeGenFunction(*this).GenerateObjCMethod(OMD); |
| 1603 | break; |
| 1604 | } |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 1605 | case Decl::ObjCCompatibleAlias: |
Fariborz Jahanian | 305c658 | 2009-01-08 01:10:55 +0000 | [diff] [blame] | 1606 | // compatibility-alias is a directive and has no code gen. |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 1607 | break; |
| 1608 | |
Anders Carlsson | 91e20dd | 2009-04-02 05:55:18 +0000 | [diff] [blame] | 1609 | case Decl::LinkageSpec: |
| 1610 | EmitLinkageSpec(cast<LinkageSpecDecl>(D)); |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 1611 | break; |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 1612 | |
| 1613 | case Decl::FileScopeAsm: { |
| 1614 | FileScopeAsmDecl *AD = cast<FileScopeAsmDecl>(D); |
| 1615 | std::string AsmString(AD->getAsmString()->getStrData(), |
| 1616 | AD->getAsmString()->getByteLength()); |
| 1617 | |
| 1618 | const std::string &S = getModule().getModuleInlineAsm(); |
| 1619 | if (S.empty()) |
| 1620 | getModule().setModuleInlineAsm(AsmString); |
| 1621 | else |
| 1622 | getModule().setModuleInlineAsm(S + '\n' + AsmString); |
| 1623 | break; |
| 1624 | } |
| 1625 | |
| 1626 | default: |
Mike Stump | f5408fe | 2009-05-16 07:57:57 +0000 | [diff] [blame] | 1627 | // Make sure we handled everything we should, every other kind is a |
| 1628 | // non-top-level decl. FIXME: Would be nice to have an isTopLevelDeclKind |
| 1629 | // function. Need to recode Decl::Kind to do that easily. |
Daniel Dunbar | 41071de | 2008-08-15 23:26:23 +0000 | [diff] [blame] | 1630 | assert(isa<TypeDecl>(D) && "Unsupported decl kind"); |
| 1631 | } |
| 1632 | } |