1 //===--- CodeGenModule.h - Per-Module state for LLVM CodeGen ----*- C++ -*-===// 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 is the internal per-translation-unit state used for llvm translation. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #ifndef CLANG_CODEGEN_CODEGENMODULE_H 15 #define CLANG_CODEGEN_CODEGENMODULE_H 16 17 #include "CGVTables.h" 18 #include "CodeGenTypes.h" 19 #include "clang/AST/Attr.h" 20 #include "clang/AST/DeclCXX.h" 21 #include "clang/AST/DeclObjC.h" 22 #include "clang/AST/GlobalDecl.h" 23 #include "clang/AST/Mangle.h" 24 #include "clang/Basic/ABI.h" 25 #include "clang/Basic/LangOptions.h" 26 #include "clang/Basic/Module.h" 27 #include "llvm/ADT/DenseMap.h" 28 #include "llvm/ADT/SetVector.h" 29 #include "llvm/ADT/SmallPtrSet.h" 30 #include "llvm/ADT/StringMap.h" 31 #include "llvm/IR/CallingConv.h" 32 #include "llvm/IR/Module.h" 33 #include "llvm/Support/ValueHandle.h" 34 #include "llvm/Transforms/Utils/BlackList.h" 35 36 namespace llvm { 37 class Module; 38 class Constant; 39 class ConstantInt; 40 class Function; 41 class GlobalValue; 42 class DataLayout; 43 class FunctionType; 44 class LLVMContext; 45 } 46 47 namespace clang { 48 class TargetCodeGenInfo; 49 class ASTContext; 50 class AtomicType; 51 class FunctionDecl; 52 class IdentifierInfo; 53 class ObjCMethodDecl; 54 class ObjCImplementationDecl; 55 class ObjCCategoryImplDecl; 56 class ObjCProtocolDecl; 57 class ObjCEncodeExpr; 58 class BlockExpr; 59 class CharUnits; 60 class Decl; 61 class Expr; 62 class Stmt; 63 class InitListExpr; 64 class StringLiteral; 65 class NamedDecl; 66 class ValueDecl; 67 class VarDecl; 68 class LangOptions; 69 class CodeGenOptions; 70 class DiagnosticsEngine; 71 class AnnotateAttr; 72 class CXXDestructorDecl; 73 class MangleBuffer; 74 class Module; 75 76 namespace CodeGen { 77 78 class CallArgList; 79 class CodeGenFunction; 80 class CodeGenTBAA; 81 class CGCXXABI; 82 class CGDebugInfo; 83 class CGObjCRuntime; 84 class CGOpenCLRuntime; 85 class CGCUDARuntime; 86 class BlockFieldFlags; 87 class FunctionArgList; 88 89 struct OrderGlobalInits { 90 unsigned int priority; 91 unsigned int lex_order; 92 OrderGlobalInits(unsigned int p, unsigned int l) 93 : priority(p), lex_order(l) {} 94 95 bool operator==(const OrderGlobalInits &RHS) const { 96 return priority == RHS.priority && 97 lex_order == RHS.lex_order; 98 } 99 100 bool operator<(const OrderGlobalInits &RHS) const { 101 if (priority < RHS.priority) 102 return true; 103 104 return priority == RHS.priority && lex_order < RHS.lex_order; 105 } 106 }; 107 108 struct CodeGenTypeCache { 109 /// void 110 llvm::Type *VoidTy; 111 112 /// i8, i16, i32, and i64 113 llvm::IntegerType *Int8Ty, *Int16Ty, *Int32Ty, *Int64Ty; 114 /// float, double 115 llvm::Type *FloatTy, *DoubleTy; 116 117 /// int 118 llvm::IntegerType *IntTy; 119 120 /// intptr_t, size_t, and ptrdiff_t, which we assume are the same size. 121 union { 122 llvm::IntegerType *IntPtrTy; 123 llvm::IntegerType *SizeTy; 124 llvm::IntegerType *PtrDiffTy; 125 }; 126 127 /// void* in address space 0 128 union { 129 llvm::PointerType *VoidPtrTy; 130 llvm::PointerType *Int8PtrTy; 131 }; 132 133 /// void** in address space 0 134 union { 135 llvm::PointerType *VoidPtrPtrTy; 136 llvm::PointerType *Int8PtrPtrTy; 137 }; 138 139 /// The width of a pointer into the generic address space. 140 unsigned char PointerWidthInBits; 141 142 /// The size and alignment of a pointer into the generic address 143 /// space. 144 union { 145 unsigned char PointerAlignInBytes; 146 unsigned char PointerSizeInBytes; 147 unsigned char SizeSizeInBytes; // sizeof(size_t) 148 }; 149 150 llvm::CallingConv::ID RuntimeCC; 151 llvm::CallingConv::ID getRuntimeCC() const { 152 return RuntimeCC; 153 } 154 }; 155 156 struct RREntrypoints { 157 RREntrypoints() { memset(this, 0, sizeof(*this)); } 158 /// void objc_autoreleasePoolPop(void*); 159 llvm::Constant *objc_autoreleasePoolPop; 160 161 /// void *objc_autoreleasePoolPush(void); 162 llvm::Constant *objc_autoreleasePoolPush; 163 }; 164 165 struct ARCEntrypoints { 166 ARCEntrypoints() { memset(this, 0, sizeof(*this)); } 167 168 /// id objc_autorelease(id); 169 llvm::Constant *objc_autorelease; 170 171 /// id objc_autoreleaseReturnValue(id); 172 llvm::Constant *objc_autoreleaseReturnValue; 173 174 /// void objc_copyWeak(id *dest, id *src); 175 llvm::Constant *objc_copyWeak; 176 177 /// void objc_destroyWeak(id*); 178 llvm::Constant *objc_destroyWeak; 179 180 /// id objc_initWeak(id*, id); 181 llvm::Constant *objc_initWeak; 182 183 /// id objc_loadWeak(id*); 184 llvm::Constant *objc_loadWeak; 185 186 /// id objc_loadWeakRetained(id*); 187 llvm::Constant *objc_loadWeakRetained; 188 189 /// void objc_moveWeak(id *dest, id *src); 190 llvm::Constant *objc_moveWeak; 191 192 /// id objc_retain(id); 193 llvm::Constant *objc_retain; 194 195 /// id objc_retainAutorelease(id); 196 llvm::Constant *objc_retainAutorelease; 197 198 /// id objc_retainAutoreleaseReturnValue(id); 199 llvm::Constant *objc_retainAutoreleaseReturnValue; 200 201 /// id objc_retainAutoreleasedReturnValue(id); 202 llvm::Constant *objc_retainAutoreleasedReturnValue; 203 204 /// id objc_retainBlock(id); 205 llvm::Constant *objc_retainBlock; 206 207 /// void objc_release(id); 208 llvm::Constant *objc_release; 209 210 /// id objc_storeStrong(id*, id); 211 llvm::Constant *objc_storeStrong; 212 213 /// id objc_storeWeak(id*, id); 214 llvm::Constant *objc_storeWeak; 215 216 /// A void(void) inline asm to use to mark that the return value of 217 /// a call will be immediately retain. 218 llvm::InlineAsm *retainAutoreleasedReturnValueMarker; 219 220 /// void clang.arc.use(...); 221 llvm::Constant *clang_arc_use; 222 }; 223 224 /// CodeGenModule - This class organizes the cross-function state that is used 225 /// while generating LLVM code. 226 class CodeGenModule : public CodeGenTypeCache { 227 CodeGenModule(const CodeGenModule &) LLVM_DELETED_FUNCTION; 228 void operator=(const CodeGenModule &) LLVM_DELETED_FUNCTION; 229 230 typedef std::vector<std::pair<llvm::Constant*, int> > CtorList; 231 232 ASTContext &Context; 233 const LangOptions &LangOpts; 234 const CodeGenOptions &CodeGenOpts; 235 llvm::Module &TheModule; 236 DiagnosticsEngine &Diags; 237 const llvm::DataLayout &TheDataLayout; 238 const TargetInfo &Target; 239 CGCXXABI &ABI; 240 llvm::LLVMContext &VMContext; 241 242 CodeGenTBAA *TBAA; 243 244 mutable const TargetCodeGenInfo *TheTargetCodeGenInfo; 245 246 // This should not be moved earlier, since its initialization depends on some 247 // of the previous reference members being already initialized and also checks 248 // if TheTargetCodeGenInfo is NULL 249 CodeGenTypes Types; 250 251 /// VTables - Holds information about C++ vtables. 252 CodeGenVTables VTables; 253 friend class CodeGenVTables; 254 255 CGObjCRuntime* ObjCRuntime; 256 CGOpenCLRuntime* OpenCLRuntime; 257 CGCUDARuntime* CUDARuntime; 258 CGDebugInfo* DebugInfo; 259 ARCEntrypoints *ARCData; 260 llvm::MDNode *NoObjCARCExceptionsMetadata; 261 RREntrypoints *RRData; 262 263 // WeakRefReferences - A set of references that have only been seen via 264 // a weakref so far. This is used to remove the weak of the reference if we 265 // ever see a direct reference or a definition. 266 llvm::SmallPtrSet<llvm::GlobalValue*, 10> WeakRefReferences; 267 268 /// DeferredDecls - This contains all the decls which have definitions but 269 /// which are deferred for emission and therefore should only be output if 270 /// they are actually used. If a decl is in this, then it is known to have 271 /// not been referenced yet. 272 llvm::StringMap<GlobalDecl> DeferredDecls; 273 274 /// DeferredDeclsToEmit - This is a list of deferred decls which we have seen 275 /// that *are* actually referenced. These get code generated when the module 276 /// is done. 277 std::vector<GlobalDecl> DeferredDeclsToEmit; 278 279 /// DeferredVTables - A queue of (optional) vtables to consider emitting. 280 std::vector<const CXXRecordDecl*> DeferredVTables; 281 282 /// LLVMUsed - List of global values which are required to be 283 /// present in the object file; bitcast to i8*. This is used for 284 /// forcing visibility of symbols which may otherwise be optimized 285 /// out. 286 std::vector<llvm::WeakVH> LLVMUsed; 287 288 /// GlobalCtors - Store the list of global constructors and their respective 289 /// priorities to be emitted when the translation unit is complete. 290 CtorList GlobalCtors; 291 292 /// GlobalDtors - Store the list of global destructors and their respective 293 /// priorities to be emitted when the translation unit is complete. 294 CtorList GlobalDtors; 295 296 /// MangledDeclNames - A map of canonical GlobalDecls to their mangled names. 297 llvm::DenseMap<GlobalDecl, StringRef> MangledDeclNames; 298 llvm::BumpPtrAllocator MangledNamesAllocator; 299 300 /// Global annotations. 301 std::vector<llvm::Constant*> Annotations; 302 303 /// Map used to get unique annotation strings. 304 llvm::StringMap<llvm::Constant*> AnnotationStrings; 305 306 llvm::StringMap<llvm::Constant*> CFConstantStringMap; 307 llvm::StringMap<llvm::GlobalVariable*> ConstantStringMap; 308 llvm::DenseMap<const Decl*, llvm::Constant *> StaticLocalDeclMap; 309 llvm::DenseMap<const Decl*, llvm::GlobalVariable*> StaticLocalDeclGuardMap; 310 311 llvm::DenseMap<QualType, llvm::Constant *> AtomicSetterHelperFnMap; 312 llvm::DenseMap<QualType, llvm::Constant *> AtomicGetterHelperFnMap; 313 314 /// Map used to track internal linkage functions declared within 315 /// extern "C" regions. 316 typedef llvm::MapVector<IdentifierInfo *, 317 llvm::GlobalValue *> StaticExternCMap; 318 StaticExternCMap StaticExternCValues; 319 320 /// \brief thread_local variables defined or used in this TU. 321 std::vector<std::pair<const VarDecl *, llvm::GlobalVariable *> > 322 CXXThreadLocals; 323 324 /// \brief thread_local variables with initializers that need to run 325 /// before any thread_local variable in this TU is odr-used. 326 std::vector<llvm::Constant*> CXXThreadLocalInits; 327 328 /// CXXGlobalInits - Global variables with initializers that need to run 329 /// before main. 330 std::vector<llvm::Constant*> CXXGlobalInits; 331 332 /// When a C++ decl with an initializer is deferred, null is 333 /// appended to CXXGlobalInits, and the index of that null is placed 334 /// here so that the initializer will be performed in the correct 335 /// order. 336 llvm::DenseMap<const Decl*, unsigned> DelayedCXXInitPosition; 337 338 typedef std::pair<OrderGlobalInits, llvm::Function*> GlobalInitData; 339 340 struct GlobalInitPriorityCmp { 341 bool operator()(const GlobalInitData &LHS, 342 const GlobalInitData &RHS) const { 343 return LHS.first.priority < RHS.first.priority; 344 } 345 }; 346 347 /// - Global variables with initializers whose order of initialization 348 /// is set by init_priority attribute. 349 SmallVector<GlobalInitData, 8> PrioritizedCXXGlobalInits; 350 351 /// CXXGlobalDtors - Global destructor functions and arguments that need to 352 /// run on termination. 353 std::vector<std::pair<llvm::WeakVH,llvm::Constant*> > CXXGlobalDtors; 354 355 /// \brief The complete set of modules that has been imported. 356 llvm::SetVector<clang::Module *> ImportedModules; 357 358 /// @name Cache for Objective-C runtime types 359 /// @{ 360 361 /// CFConstantStringClassRef - Cached reference to the class for constant 362 /// strings. This value has type int * but is actually an Obj-C class pointer. 363 llvm::WeakVH CFConstantStringClassRef; 364 365 /// ConstantStringClassRef - Cached reference to the class for constant 366 /// strings. This value has type int * but is actually an Obj-C class pointer. 367 llvm::WeakVH ConstantStringClassRef; 368 369 /// \brief The LLVM type corresponding to NSConstantString. 370 llvm::StructType *NSConstantStringType; 371 372 /// \brief The type used to describe the state of a fast enumeration in 373 /// Objective-C's for..in loop. 374 QualType ObjCFastEnumerationStateType; 375 376 /// @} 377 378 /// Lazily create the Objective-C runtime 379 void createObjCRuntime(); 380 381 void createOpenCLRuntime(); 382 void createCUDARuntime(); 383 384 bool isTriviallyRecursive(const FunctionDecl *F); 385 bool shouldEmitFunction(const FunctionDecl *F); 386 387 /// @name Cache for Blocks Runtime Globals 388 /// @{ 389 390 llvm::Constant *NSConcreteGlobalBlock; 391 llvm::Constant *NSConcreteStackBlock; 392 393 llvm::Constant *BlockObjectAssign; 394 llvm::Constant *BlockObjectDispose; 395 396 llvm::Type *BlockDescriptorType; 397 llvm::Type *GenericBlockLiteralType; 398 399 struct { 400 int GlobalUniqueCount; 401 } Block; 402 403 /// void @llvm.lifetime.start(i64 %size, i8* nocapture <ptr>) 404 llvm::Constant *LifetimeStartFn; 405 406 /// void @llvm.lifetime.end(i64 %size, i8* nocapture <ptr>) 407 llvm::Constant *LifetimeEndFn; 408 409 GlobalDecl initializedGlobalDecl; 410 411 llvm::BlackList SanitizerBlacklist; 412 413 const SanitizerOptions &SanOpts; 414 415 /// @} 416 public: 417 CodeGenModule(ASTContext &C, const CodeGenOptions &CodeGenOpts, 418 llvm::Module &M, const llvm::DataLayout &TD, 419 DiagnosticsEngine &Diags); 420 421 ~CodeGenModule(); 422 423 /// Release - Finalize LLVM code generation. 424 void Release(); 425 426 /// getObjCRuntime() - Return a reference to the configured 427 /// Objective-C runtime. 428 CGObjCRuntime &getObjCRuntime() { 429 if (!ObjCRuntime) createObjCRuntime(); 430 return *ObjCRuntime; 431 } 432 433 /// hasObjCRuntime() - Return true iff an Objective-C runtime has 434 /// been configured. 435 bool hasObjCRuntime() { return !!ObjCRuntime; } 436 437 /// getOpenCLRuntime() - Return a reference to the configured OpenCL runtime. 438 CGOpenCLRuntime &getOpenCLRuntime() { 439 assert(OpenCLRuntime != 0); 440 return *OpenCLRuntime; 441 } 442 443 /// getCUDARuntime() - Return a reference to the configured CUDA runtime. 444 CGCUDARuntime &getCUDARuntime() { 445 assert(CUDARuntime != 0); 446 return *CUDARuntime; 447 } 448 449 ARCEntrypoints &getARCEntrypoints() const { 450 assert(getLangOpts().ObjCAutoRefCount && ARCData != 0); 451 return *ARCData; 452 } 453 454 RREntrypoints &getRREntrypoints() const { 455 assert(RRData != 0); 456 return *RRData; 457 } 458 459 llvm::Constant *getStaticLocalDeclAddress(const VarDecl *D) { 460 return StaticLocalDeclMap[D]; 461 } 462 void setStaticLocalDeclAddress(const VarDecl *D, 463 llvm::Constant *C) { 464 StaticLocalDeclMap[D] = C; 465 } 466 467 llvm::GlobalVariable *getStaticLocalDeclGuardAddress(const VarDecl *D) { 468 return StaticLocalDeclGuardMap[D]; 469 } 470 void setStaticLocalDeclGuardAddress(const VarDecl *D, 471 llvm::GlobalVariable *C) { 472 StaticLocalDeclGuardMap[D] = C; 473 } 474 475 llvm::Constant *getAtomicSetterHelperFnMap(QualType Ty) { 476 return AtomicSetterHelperFnMap[Ty]; 477 } 478 void setAtomicSetterHelperFnMap(QualType Ty, 479 llvm::Constant *Fn) { 480 AtomicSetterHelperFnMap[Ty] = Fn; 481 } 482 483 llvm::Constant *getAtomicGetterHelperFnMap(QualType Ty) { 484 return AtomicGetterHelperFnMap[Ty]; 485 } 486 void setAtomicGetterHelperFnMap(QualType Ty, 487 llvm::Constant *Fn) { 488 AtomicGetterHelperFnMap[Ty] = Fn; 489 } 490 491 CGDebugInfo *getModuleDebugInfo() { return DebugInfo; } 492 493 llvm::MDNode *getNoObjCARCExceptionsMetadata() { 494 if (!NoObjCARCExceptionsMetadata) 495 NoObjCARCExceptionsMetadata = 496 llvm::MDNode::get(getLLVMContext(), 497 SmallVector<llvm::Value*,1>()); 498 return NoObjCARCExceptionsMetadata; 499 } 500 501 ASTContext &getContext() const { return Context; } 502 const LangOptions &getLangOpts() const { return LangOpts; } 503 const CodeGenOptions &getCodeGenOpts() const { return CodeGenOpts; } 504 llvm::Module &getModule() const { return TheModule; } 505 DiagnosticsEngine &getDiags() const { return Diags; } 506 const llvm::DataLayout &getDataLayout() const { return TheDataLayout; } 507 const TargetInfo &getTarget() const { return Target; } 508 CGCXXABI &getCXXABI() { return ABI; } 509 llvm::LLVMContext &getLLVMContext() { return VMContext; } 510 511 bool shouldUseTBAA() const { return TBAA != 0; } 512 513 const TargetCodeGenInfo &getTargetCodeGenInfo(); 514 515 CodeGenTypes &getTypes() { return Types; } 516 517 CodeGenVTables &getVTables() { return VTables; } 518 VTableContext &getVTableContext() { return VTables.getVTableContext(); } 519 520 llvm::MDNode *getTBAAInfo(QualType QTy); 521 llvm::MDNode *getTBAAInfoForVTablePtr(); 522 llvm::MDNode *getTBAAStructInfo(QualType QTy); 523 /// Return the MDNode in the type DAG for the given struct type. 524 llvm::MDNode *getTBAAStructTypeInfo(QualType QTy); 525 /// Return the path-aware tag for given base type, access node and offset. 526 llvm::MDNode *getTBAAStructTagInfo(QualType BaseTy, llvm::MDNode *AccessN, 527 uint64_t O); 528 529 bool isTypeConstant(QualType QTy, bool ExcludeCtorDtor); 530 531 bool isPaddedAtomicType(QualType type); 532 bool isPaddedAtomicType(const AtomicType *type); 533 534 /// Decorate the instruction with a TBAA tag. For scalar TBAA, the tag 535 /// is the same as the type. For struct-path aware TBAA, the tag 536 /// is different from the type: base type, access type and offset. 537 /// When ConvertTypeToTag is true, we create a tag based on the scalar type. 538 void DecorateInstruction(llvm::Instruction *Inst, 539 llvm::MDNode *TBAAInfo, 540 bool ConvertTypeToTag = true); 541 542 /// getSize - Emit the given number of characters as a value of type size_t. 543 llvm::ConstantInt *getSize(CharUnits numChars); 544 545 /// setGlobalVisibility - Set the visibility for the given LLVM 546 /// GlobalValue. 547 void setGlobalVisibility(llvm::GlobalValue *GV, const NamedDecl *D) const; 548 549 /// setTLSMode - Set the TLS mode for the given LLVM GlobalVariable 550 /// for the thread-local variable declaration D. 551 void setTLSMode(llvm::GlobalVariable *GV, const VarDecl &D) const; 552 553 /// TypeVisibilityKind - The kind of global variable that is passed to 554 /// setTypeVisibility 555 enum TypeVisibilityKind { 556 TVK_ForVTT, 557 TVK_ForVTable, 558 TVK_ForConstructionVTable, 559 TVK_ForRTTI, 560 TVK_ForRTTIName 561 }; 562 563 /// setTypeVisibility - Set the visibility for the given global 564 /// value which holds information about a type. 565 void setTypeVisibility(llvm::GlobalValue *GV, const CXXRecordDecl *D, 566 TypeVisibilityKind TVK) const; 567 568 static llvm::GlobalValue::VisibilityTypes GetLLVMVisibility(Visibility V) { 569 switch (V) { 570 case DefaultVisibility: return llvm::GlobalValue::DefaultVisibility; 571 case HiddenVisibility: return llvm::GlobalValue::HiddenVisibility; 572 case ProtectedVisibility: return llvm::GlobalValue::ProtectedVisibility; 573 } 574 llvm_unreachable("unknown visibility!"); 575 } 576 577 llvm::Constant *GetAddrOfGlobal(GlobalDecl GD) { 578 if (isa<CXXConstructorDecl>(GD.getDecl())) 579 return GetAddrOfCXXConstructor(cast<CXXConstructorDecl>(GD.getDecl()), 580 GD.getCtorType()); 581 else if (isa<CXXDestructorDecl>(GD.getDecl())) 582 return GetAddrOfCXXDestructor(cast<CXXDestructorDecl>(GD.getDecl()), 583 GD.getDtorType()); 584 else if (isa<FunctionDecl>(GD.getDecl())) 585 return GetAddrOfFunction(GD); 586 else 587 return GetAddrOfGlobalVar(cast<VarDecl>(GD.getDecl())); 588 } 589 590 /// CreateOrReplaceCXXRuntimeVariable - Will return a global variable of the 591 /// given type. If a variable with a different type already exists then a new 592 /// variable with the right type will be created and all uses of the old 593 /// variable will be replaced with a bitcast to the new variable. 594 llvm::GlobalVariable * 595 CreateOrReplaceCXXRuntimeVariable(StringRef Name, llvm::Type *Ty, 596 llvm::GlobalValue::LinkageTypes Linkage); 597 598 /// GetGlobalVarAddressSpace - Return the address space of the underlying 599 /// global variable for D, as determined by its declaration. Normally this 600 /// is the same as the address space of D's type, but in CUDA, address spaces 601 /// are associated with declarations, not types. 602 unsigned GetGlobalVarAddressSpace(const VarDecl *D, unsigned AddrSpace); 603 604 /// GetAddrOfGlobalVar - Return the llvm::Constant for the address of the 605 /// given global variable. If Ty is non-null and if the global doesn't exist, 606 /// then it will be greated with the specified type instead of whatever the 607 /// normal requested type would be. 608 llvm::Constant *GetAddrOfGlobalVar(const VarDecl *D, 609 llvm::Type *Ty = 0); 610 611 612 /// GetAddrOfFunction - Return the address of the given function. If Ty is 613 /// non-null, then this function will use the specified type if it has to 614 /// create it. 615 llvm::Constant *GetAddrOfFunction(GlobalDecl GD, 616 llvm::Type *Ty = 0, 617 bool ForVTable = false); 618 619 /// GetAddrOfRTTIDescriptor - Get the address of the RTTI descriptor 620 /// for the given type. 621 llvm::Constant *GetAddrOfRTTIDescriptor(QualType Ty, bool ForEH = false); 622 623 /// GetAddrOfUuidDescriptor - Get the address of a uuid descriptor . 624 llvm::Constant *GetAddrOfUuidDescriptor(const CXXUuidofExpr* E); 625 626 /// GetAddrOfThunk - Get the address of the thunk for the given global decl. 627 llvm::Constant *GetAddrOfThunk(GlobalDecl GD, const ThunkInfo &Thunk); 628 629 /// GetWeakRefReference - Get a reference to the target of VD. 630 llvm::Constant *GetWeakRefReference(const ValueDecl *VD); 631 632 /// GetNonVirtualBaseClassOffset - Returns the offset from a derived class to 633 /// a class. Returns null if the offset is 0. 634 llvm::Constant * 635 GetNonVirtualBaseClassOffset(const CXXRecordDecl *ClassDecl, 636 CastExpr::path_const_iterator PathBegin, 637 CastExpr::path_const_iterator PathEnd); 638 639 /// A pair of helper functions for a __block variable. 640 class ByrefHelpers : public llvm::FoldingSetNode { 641 public: 642 llvm::Constant *CopyHelper; 643 llvm::Constant *DisposeHelper; 644 645 /// The alignment of the field. This is important because 646 /// different offsets to the field within the byref struct need to 647 /// have different helper functions. 648 CharUnits Alignment; 649 650 ByrefHelpers(CharUnits alignment) : Alignment(alignment) {} 651 virtual ~ByrefHelpers(); 652 653 void Profile(llvm::FoldingSetNodeID &id) const { 654 id.AddInteger(Alignment.getQuantity()); 655 profileImpl(id); 656 } 657 virtual void profileImpl(llvm::FoldingSetNodeID &id) const = 0; 658 659 virtual bool needsCopy() const { return true; } 660 virtual void emitCopy(CodeGenFunction &CGF, 661 llvm::Value *dest, llvm::Value *src) = 0; 662 663 virtual bool needsDispose() const { return true; } 664 virtual void emitDispose(CodeGenFunction &CGF, llvm::Value *field) = 0; 665 }; 666 667 llvm::FoldingSet<ByrefHelpers> ByrefHelpersCache; 668 669 /// getUniqueBlockCount - Fetches the global unique block count. 670 int getUniqueBlockCount() { return ++Block.GlobalUniqueCount; } 671 672 /// getBlockDescriptorType - Fetches the type of a generic block 673 /// descriptor. 674 llvm::Type *getBlockDescriptorType(); 675 676 /// getGenericBlockLiteralType - The type of a generic block literal. 677 llvm::Type *getGenericBlockLiteralType(); 678 679 /// GetAddrOfGlobalBlock - Gets the address of a block which 680 /// requires no captures. 681 llvm::Constant *GetAddrOfGlobalBlock(const BlockExpr *BE, const char *); 682 683 /// GetAddrOfConstantCFString - Return a pointer to a constant CFString object 684 /// for the given string. 685 llvm::Constant *GetAddrOfConstantCFString(const StringLiteral *Literal); 686 687 /// GetAddrOfConstantString - Return a pointer to a constant NSString object 688 /// for the given string. Or a user defined String object as defined via 689 /// -fconstant-string-class=class_name option. 690 llvm::Constant *GetAddrOfConstantString(const StringLiteral *Literal); 691 692 /// GetConstantArrayFromStringLiteral - Return a constant array for the given 693 /// string. 694 llvm::Constant *GetConstantArrayFromStringLiteral(const StringLiteral *E); 695 696 /// GetAddrOfConstantStringFromLiteral - Return a pointer to a constant array 697 /// for the given string literal. 698 llvm::Constant *GetAddrOfConstantStringFromLiteral(const StringLiteral *S); 699 700 /// GetAddrOfConstantStringFromObjCEncode - Return a pointer to a constant 701 /// array for the given ObjCEncodeExpr node. 702 llvm::Constant *GetAddrOfConstantStringFromObjCEncode(const ObjCEncodeExpr *); 703 704 /// GetAddrOfConstantString - Returns a pointer to a character array 705 /// containing the literal. This contents are exactly that of the given 706 /// string, i.e. it will not be null terminated automatically; see 707 /// GetAddrOfConstantCString. Note that whether the result is actually a 708 /// pointer to an LLVM constant depends on Feature.WriteableStrings. 709 /// 710 /// The result has pointer to array type. 711 /// 712 /// \param GlobalName If provided, the name to use for the global 713 /// (if one is created). 714 llvm::Constant *GetAddrOfConstantString(StringRef Str, 715 const char *GlobalName=0, 716 unsigned Alignment=1); 717 718 /// GetAddrOfConstantCString - Returns a pointer to a character array 719 /// containing the literal and a terminating '\0' character. The result has 720 /// pointer to array type. 721 /// 722 /// \param GlobalName If provided, the name to use for the global (if one is 723 /// created). 724 llvm::Constant *GetAddrOfConstantCString(const std::string &str, 725 const char *GlobalName=0, 726 unsigned Alignment=1); 727 728 /// GetAddrOfConstantCompoundLiteral - Returns a pointer to a constant global 729 /// variable for the given file-scope compound literal expression. 730 llvm::Constant *GetAddrOfConstantCompoundLiteral(const CompoundLiteralExpr*E); 731 732 /// \brief Retrieve the record type that describes the state of an 733 /// Objective-C fast enumeration loop (for..in). 734 QualType getObjCFastEnumerationStateType(); 735 736 /// GetAddrOfCXXConstructor - Return the address of the constructor of the 737 /// given type. 738 llvm::GlobalValue *GetAddrOfCXXConstructor(const CXXConstructorDecl *ctor, 739 CXXCtorType ctorType, 740 const CGFunctionInfo *fnInfo = 0); 741 742 /// GetAddrOfCXXDestructor - Return the address of the constructor of the 743 /// given type. 744 llvm::GlobalValue *GetAddrOfCXXDestructor(const CXXDestructorDecl *dtor, 745 CXXDtorType dtorType, 746 const CGFunctionInfo *fnInfo = 0); 747 748 /// getBuiltinLibFunction - Given a builtin id for a function like 749 /// "__builtin_fabsf", return a Function* for "fabsf". 750 llvm::Value *getBuiltinLibFunction(const FunctionDecl *FD, 751 unsigned BuiltinID); 752 753 llvm::Function *getIntrinsic(unsigned IID, ArrayRef<llvm::Type*> Tys = 754 ArrayRef<llvm::Type*>()); 755 756 /// EmitTopLevelDecl - Emit code for a single top level declaration. 757 void EmitTopLevelDecl(Decl *D); 758 759 /// HandleCXXStaticMemberVarInstantiation - Tell the consumer that this 760 // variable has been instantiated. 761 void HandleCXXStaticMemberVarInstantiation(VarDecl *VD); 762 763 /// \brief If the declaration has internal linkage but is inside an 764 /// extern "C" linkage specification, prepare to emit an alias for it 765 /// to the expected name. 766 template<typename SomeDecl> 767 void MaybeHandleStaticInExternC(const SomeDecl *D, llvm::GlobalValue *GV); 768 769 /// AddUsedGlobal - Add a global which should be forced to be 770 /// present in the object file; these are emitted to the llvm.used 771 /// metadata global. 772 void AddUsedGlobal(llvm::GlobalValue *GV); 773 774 /// AddCXXDtorEntry - Add a destructor and object to add to the C++ global 775 /// destructor function. 776 void AddCXXDtorEntry(llvm::Constant *DtorFn, llvm::Constant *Object) { 777 CXXGlobalDtors.push_back(std::make_pair(DtorFn, Object)); 778 } 779 780 /// CreateRuntimeFunction - Create a new runtime function with the specified 781 /// type and name. 782 llvm::Constant *CreateRuntimeFunction(llvm::FunctionType *Ty, 783 StringRef Name, 784 llvm::AttributeSet ExtraAttrs = 785 llvm::AttributeSet()); 786 /// CreateRuntimeVariable - Create a new runtime global variable with the 787 /// specified type and name. 788 llvm::Constant *CreateRuntimeVariable(llvm::Type *Ty, 789 StringRef Name); 790 791 ///@name Custom Blocks Runtime Interfaces 792 ///@{ 793 794 llvm::Constant *getNSConcreteGlobalBlock(); 795 llvm::Constant *getNSConcreteStackBlock(); 796 llvm::Constant *getBlockObjectAssign(); 797 llvm::Constant *getBlockObjectDispose(); 798 799 ///@} 800 801 llvm::Constant *getLLVMLifetimeStartFn(); 802 llvm::Constant *getLLVMLifetimeEndFn(); 803 804 // UpdateCompleteType - Make sure that this type is translated. 805 void UpdateCompletedType(const TagDecl *TD); 806 807 llvm::Constant *getMemberPointerConstant(const UnaryOperator *e); 808 809 /// EmitConstantInit - Try to emit the initializer for the given declaration 810 /// as a constant; returns 0 if the expression cannot be emitted as a 811 /// constant. 812 llvm::Constant *EmitConstantInit(const VarDecl &D, CodeGenFunction *CGF = 0); 813 814 /// EmitConstantExpr - Try to emit the given expression as a 815 /// constant; returns 0 if the expression cannot be emitted as a 816 /// constant. 817 llvm::Constant *EmitConstantExpr(const Expr *E, QualType DestType, 818 CodeGenFunction *CGF = 0); 819 820 /// EmitConstantValue - Emit the given constant value as a constant, in the 821 /// type's scalar representation. 822 llvm::Constant *EmitConstantValue(const APValue &Value, QualType DestType, 823 CodeGenFunction *CGF = 0); 824 825 /// EmitConstantValueForMemory - Emit the given constant value as a constant, 826 /// in the type's memory representation. 827 llvm::Constant *EmitConstantValueForMemory(const APValue &Value, 828 QualType DestType, 829 CodeGenFunction *CGF = 0); 830 831 /// EmitNullConstant - Return the result of value-initializing the given 832 /// type, i.e. a null expression of the given type. This is usually, 833 /// but not always, an LLVM null constant. 834 llvm::Constant *EmitNullConstant(QualType T); 835 836 /// EmitNullConstantForBase - Return a null constant appropriate for 837 /// zero-initializing a base class with the given type. This is usually, 838 /// but not always, an LLVM null constant. 839 llvm::Constant *EmitNullConstantForBase(const CXXRecordDecl *Record); 840 841 /// Error - Emit a general error that something can't be done. 842 void Error(SourceLocation loc, StringRef error); 843 844 /// ErrorUnsupported - Print out an error that codegen doesn't support the 845 /// specified stmt yet. 846 /// \param OmitOnError - If true, then this error should only be emitted if no 847 /// other errors have been reported. 848 void ErrorUnsupported(const Stmt *S, const char *Type, 849 bool OmitOnError=false); 850 851 /// ErrorUnsupported - Print out an error that codegen doesn't support the 852 /// specified decl yet. 853 /// \param OmitOnError - If true, then this error should only be emitted if no 854 /// other errors have been reported. 855 void ErrorUnsupported(const Decl *D, const char *Type, 856 bool OmitOnError=false); 857 858 /// SetInternalFunctionAttributes - Set the attributes on the LLVM 859 /// function for the given decl and function info. This applies 860 /// attributes necessary for handling the ABI as well as user 861 /// specified attributes like section. 862 void SetInternalFunctionAttributes(const Decl *D, llvm::Function *F, 863 const CGFunctionInfo &FI); 864 865 /// SetLLVMFunctionAttributes - Set the LLVM function attributes 866 /// (sext, zext, etc). 867 void SetLLVMFunctionAttributes(const Decl *D, 868 const CGFunctionInfo &Info, 869 llvm::Function *F); 870 871 /// SetLLVMFunctionAttributesForDefinition - Set the LLVM function attributes 872 /// which only apply to a function definintion. 873 void SetLLVMFunctionAttributesForDefinition(const Decl *D, llvm::Function *F); 874 875 /// ReturnTypeUsesSRet - Return true iff the given type uses 'sret' when used 876 /// as a return type. 877 bool ReturnTypeUsesSRet(const CGFunctionInfo &FI); 878 879 /// ReturnTypeUsesFPRet - Return true iff the given type uses 'fpret' when 880 /// used as a return type. 881 bool ReturnTypeUsesFPRet(QualType ResultType); 882 883 /// ReturnTypeUsesFP2Ret - Return true iff the given type uses 'fp2ret' when 884 /// used as a return type. 885 bool ReturnTypeUsesFP2Ret(QualType ResultType); 886 887 /// ConstructAttributeList - Get the LLVM attributes and calling convention to 888 /// use for a particular function type. 889 /// 890 /// \param Info - The function type information. 891 /// \param TargetDecl - The decl these attributes are being constructed 892 /// for. If supplied the attributes applied to this decl may contribute to the 893 /// function attributes and calling convention. 894 /// \param PAL [out] - On return, the attribute list to use. 895 /// \param CallingConv [out] - On return, the LLVM calling convention to use. 896 void ConstructAttributeList(const CGFunctionInfo &Info, 897 const Decl *TargetDecl, 898 AttributeListType &PAL, 899 unsigned &CallingConv, 900 bool AttrOnCallSite); 901 902 StringRef getMangledName(GlobalDecl GD); 903 void getBlockMangledName(GlobalDecl GD, MangleBuffer &Buffer, 904 const BlockDecl *BD); 905 906 void EmitTentativeDefinition(const VarDecl *D); 907 908 void EmitVTable(CXXRecordDecl *Class, bool DefinitionRequired); 909 910 llvm::GlobalVariable::LinkageTypes 911 getFunctionLinkage(const FunctionDecl *FD); 912 913 void setFunctionLinkage(const FunctionDecl *FD, llvm::GlobalValue *V) { 914 V->setLinkage(getFunctionLinkage(FD)); 915 } 916 917 /// getVTableLinkage - Return the appropriate linkage for the vtable, VTT, 918 /// and type information of the given class. 919 llvm::GlobalVariable::LinkageTypes getVTableLinkage(const CXXRecordDecl *RD); 920 921 /// GetTargetTypeStoreSize - Return the store size, in character units, of 922 /// the given LLVM type. 923 CharUnits GetTargetTypeStoreSize(llvm::Type *Ty) const; 924 925 /// GetLLVMLinkageVarDefinition - Returns LLVM linkage for a global 926 /// variable. 927 llvm::GlobalValue::LinkageTypes 928 GetLLVMLinkageVarDefinition(const VarDecl *D, 929 llvm::GlobalVariable *GV); 930 931 /// Emit all the global annotations. 932 void EmitGlobalAnnotations(); 933 934 /// Emit an annotation string. 935 llvm::Constant *EmitAnnotationString(StringRef Str); 936 937 /// Emit the annotation's translation unit. 938 llvm::Constant *EmitAnnotationUnit(SourceLocation Loc); 939 940 /// Emit the annotation line number. 941 llvm::Constant *EmitAnnotationLineNo(SourceLocation L); 942 943 /// EmitAnnotateAttr - Generate the llvm::ConstantStruct which contains the 944 /// annotation information for a given GlobalValue. The annotation struct is 945 /// {i8 *, i8 *, i8 *, i32}. The first field is a constant expression, the 946 /// GlobalValue being annotated. The second field is the constant string 947 /// created from the AnnotateAttr's annotation. The third field is a constant 948 /// string containing the name of the translation unit. The fourth field is 949 /// the line number in the file of the annotated value declaration. 950 llvm::Constant *EmitAnnotateAttr(llvm::GlobalValue *GV, 951 const AnnotateAttr *AA, 952 SourceLocation L); 953 954 /// Add global annotations that are set on D, for the global GV. Those 955 /// annotations are emitted during finalization of the LLVM code. 956 void AddGlobalAnnotations(const ValueDecl *D, llvm::GlobalValue *GV); 957 958 const llvm::BlackList &getSanitizerBlacklist() const { 959 return SanitizerBlacklist; 960 } 961 962 const SanitizerOptions &getSanOpts() const { return SanOpts; } 963 964 void addDeferredVTable(const CXXRecordDecl *RD) { 965 DeferredVTables.push_back(RD); 966 } 967 968 private: 969 llvm::GlobalValue *GetGlobalValue(StringRef Ref); 970 971 llvm::Constant *GetOrCreateLLVMFunction(StringRef MangledName, 972 llvm::Type *Ty, 973 GlobalDecl D, 974 bool ForVTable, 975 llvm::AttributeSet ExtraAttrs = 976 llvm::AttributeSet()); 977 llvm::Constant *GetOrCreateLLVMGlobal(StringRef MangledName, 978 llvm::PointerType *PTy, 979 const VarDecl *D, 980 bool UnnamedAddr = false); 981 982 /// SetCommonAttributes - Set attributes which are common to any 983 /// form of a global definition (alias, Objective-C method, 984 /// function, global variable). 985 /// 986 /// NOTE: This should only be called for definitions. 987 void SetCommonAttributes(const Decl *D, llvm::GlobalValue *GV); 988 989 /// SetFunctionDefinitionAttributes - Set attributes for a global definition. 990 void SetFunctionDefinitionAttributes(const FunctionDecl *D, 991 llvm::GlobalValue *GV); 992 993 /// SetFunctionAttributes - Set function attributes for a function 994 /// declaration. 995 void SetFunctionAttributes(GlobalDecl GD, 996 llvm::Function *F, 997 bool IsIncompleteFunction); 998 999 /// EmitGlobal - Emit code for a singal global function or var decl. Forward 1000 /// declarations are emitted lazily. 1001 void EmitGlobal(GlobalDecl D); 1002 1003 void EmitGlobalDefinition(GlobalDecl D); 1004 1005 void EmitGlobalFunctionDefinition(GlobalDecl GD); 1006 void EmitGlobalVarDefinition(const VarDecl *D); 1007 llvm::Constant *MaybeEmitGlobalStdInitializerListInitializer(const VarDecl *D, 1008 const Expr *init); 1009 void EmitAliasDefinition(GlobalDecl GD); 1010 void EmitObjCPropertyImplementations(const ObjCImplementationDecl *D); 1011 void EmitObjCIvarInitializations(ObjCImplementationDecl *D); 1012 1013 // C++ related functions. 1014 1015 bool TryEmitDefinitionAsAlias(GlobalDecl Alias, GlobalDecl Target); 1016 bool TryEmitBaseDestructorAsAlias(const CXXDestructorDecl *D); 1017 1018 void EmitNamespace(const NamespaceDecl *D); 1019 void EmitLinkageSpec(const LinkageSpecDecl *D); 1020 1021 /// EmitCXXConstructors - Emit constructors (base, complete) from a 1022 /// C++ constructor Decl. 1023 void EmitCXXConstructors(const CXXConstructorDecl *D); 1024 1025 /// EmitCXXConstructor - Emit a single constructor with the given type from 1026 /// a C++ constructor Decl. 1027 void EmitCXXConstructor(const CXXConstructorDecl *D, CXXCtorType Type); 1028 1029 /// EmitCXXDestructors - Emit destructors (base, complete) from a 1030 /// C++ destructor Decl. 1031 void EmitCXXDestructors(const CXXDestructorDecl *D); 1032 1033 /// EmitCXXDestructor - Emit a single destructor with the given type from 1034 /// a C++ destructor Decl. 1035 void EmitCXXDestructor(const CXXDestructorDecl *D, CXXDtorType Type); 1036 1037 /// \brief Emit the function that initializes C++ thread_local variables. 1038 void EmitCXXThreadLocalInitFunc(); 1039 1040 /// EmitCXXGlobalInitFunc - Emit the function that initializes C++ globals. 1041 void EmitCXXGlobalInitFunc(); 1042 1043 /// EmitCXXGlobalDtorFunc - Emit the function that destroys C++ globals. 1044 void EmitCXXGlobalDtorFunc(); 1045 1046 /// EmitCXXGlobalVarDeclInitFunc - Emit the function that initializes the 1047 /// specified global (if PerformInit is true) and registers its destructor. 1048 void EmitCXXGlobalVarDeclInitFunc(const VarDecl *D, 1049 llvm::GlobalVariable *Addr, 1050 bool PerformInit); 1051 1052 // FIXME: Hardcoding priority here is gross. 1053 void AddGlobalCtor(llvm::Function *Ctor, int Priority=65535); 1054 void AddGlobalDtor(llvm::Function *Dtor, int Priority=65535); 1055 1056 /// EmitCtorList - Generates a global array of functions and priorities using 1057 /// the given list and name. This array will have appending linkage and is 1058 /// suitable for use as a LLVM constructor or destructor array. 1059 void EmitCtorList(const CtorList &Fns, const char *GlobalName); 1060 1061 /// EmitFundamentalRTTIDescriptor - Emit the RTTI descriptors for the 1062 /// given type. 1063 void EmitFundamentalRTTIDescriptor(QualType Type); 1064 1065 /// EmitFundamentalRTTIDescriptors - Emit the RTTI descriptors for the 1066 /// builtin types. 1067 void EmitFundamentalRTTIDescriptors(); 1068 1069 /// EmitDeferred - Emit any needed decls for which code generation 1070 /// was deferred. 1071 void EmitDeferred(); 1072 1073 /// EmitDeferredVTables - Emit any vtables which we deferred and 1074 /// still have a use for. 1075 void EmitDeferredVTables(); 1076 1077 /// EmitLLVMUsed - Emit the llvm.used metadata used to force 1078 /// references to global which may otherwise be optimized out. 1079 void EmitLLVMUsed(); 1080 1081 /// \brief Emit the link options introduced by imported modules. 1082 void EmitModuleLinkOptions(); 1083 1084 /// \brief Emit aliases for internal-linkage declarations inside "C" language 1085 /// linkage specifications, giving them the "expected" name where possible. 1086 void EmitStaticExternCAliases(); 1087 1088 void EmitDeclMetadata(); 1089 1090 /// EmitCoverageFile - Emit the llvm.gcov metadata used to tell LLVM where 1091 /// to emit the .gcno and .gcda files in a way that persists in .bc files. 1092 void EmitCoverageFile(); 1093 1094 /// Emits the initializer for a uuidof string. 1095 llvm::Constant *EmitUuidofInitializer(StringRef uuidstr, QualType IIDType); 1096 1097 /// MayDeferGeneration - Determine if the given decl can be emitted 1098 /// lazily; this is only relevant for definitions. The given decl 1099 /// must be either a function or var decl. 1100 bool MayDeferGeneration(const ValueDecl *D); 1101 1102 /// SimplifyPersonality - Check whether we can use a "simpler", more 1103 /// core exceptions personality function. 1104 void SimplifyPersonality(); 1105 }; 1106 } // end namespace CodeGen 1107 } // end namespace clang 1108 1109 #endif 1110