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