clang  6.0.0
Classes | Public Types | Public Member Functions | Static Public Member Functions | Public Attributes | Static Public Attributes | Friends | List of all members
clang::CodeGen::CodeGenFunction Class Reference

CodeGenFunction - This class organizes the per-function state that is used while generating LLVM code. More...

#include "/work/www-prereleases/6.0.0/rc2/docsbuild/llvm.src/tools/clang/lib/CodeGen/CodeGenFunction.h"

Inheritance diagram for clang::CodeGen::CodeGenFunction:
[legend]
Collaboration diagram for clang::CodeGen::CodeGenFunction:
[legend]

Classes

class  AbstractCallee
 An abstract representation of regular/ObjC call/message targets. More...
 
class  ArrayInitLoopExprScope
 The scope of an ArrayInitLoopExpr. More...
 
class  AutoVarEmission
 
class  CallLifetimeEnd
 
class  CGCapturedStmtInfo
 API for captured statement code generation. More...
 
class  CGCapturedStmtRAII
 RAII for correct setting/restoring of CapturedStmtInfo. More...
 
struct  CGCoroInfo
 
class  ConditionalEvaluation
 An object to manage conditionally-evaluated expressions. More...
 
class  ConstantEmission
 
class  CXXDefaultInitExprScope
 The scope of a CXXDefaultInitExpr. More...
 
class  FieldConstructionScope
 A scope within which we are constructing the fields of an object which might use a CXXDefaultInitExpr. More...
 
class  FinallyInfo
 A class controlling the emission of a finally block. More...
 
class  InlinedInheritingConstructorScope
 
struct  JumpDest
 A jump destination is an abstract label, branching to which may require a jump out through normal cleanups. More...
 
class  LexicalScope
 
struct  LifetimeExtendedCleanupHeader
 Header for data within LifetimeExtendedCleanupStack. More...
 
class  OMPCancelStackRAII
 Controls insertion of cancellation exit blocks in worksharing constructs. More...
 
class  OMPPrivateScope
 The scope used to remap some variables as private in the OpenMP loop body (or other captured region emitted without outlining), and to restore old vars back on exit. More...
 
struct  OMPTargetDataInfo
 
class  OpaqueValueMapping
 An RAII object to set (and then clear) a mapping for an OpaqueValueExpr. More...
 
class  OpaqueValueMappingData
 A non-RAII class containing all the information about a bound opaque value. More...
 
class  ParamValue
 
class  PeepholeProtection
 An object which temporarily prevents a value from being destroyed by aggressive peephole optimizations that assume that all uses of a value have been realized in the IR. More...
 
class  RunCleanupsScope
 Enters a new scope for capturing cleanups, all of which will be executed once the scope is exited. More...
 
class  SanitizerScope
 RAII object to set/unset CodeGenFunction::IsSanitizerScope. More...
 
class  StmtExprEvaluation
 An RAII object to record that we're evaluating a statement expression. More...
 
struct  VPtr
 Struct with all informations about dynamic [sub]class needed to set vptr. More...
 

Public Types

enum  CFITypeCheckKind {
  CFITCK_VCall, CFITCK_NVCall, CFITCK_DerivedCast, CFITCK_UnrelatedCast,
  CFITCK_ICall
}
 
enum  TypeCheckKind {
  TCK_Load, TCK_Store, TCK_ReferenceBinding, TCK_MemberAccess,
  TCK_MemberCall, TCK_ConstructorCall, TCK_DowncastPointer, TCK_DowncastReference,
  TCK_Upcast, TCK_UpcastToVirtualBase, TCK_NonnullAssign, TCK_DynamicOperation
}
 Situations in which we might emit a check for the suitability of a pointer or glvalue. More...
 
enum  GuardKind { GuardKind::VariableGuard, GuardKind::TlsGuard }
 
enum  { NotSubtraction = false, IsSubtraction = true }
 An enumeration which makes it easier to specify whether or not an operation is a subtraction. More...
 
enum  BuiltinCheckKind { BCK_CTZPassedZero, BCK_CLZPassedZero }
 Specifies which type of sanitizer check to apply when handling a particular builtin. More...
 
enum  EvaluationOrder { EvaluationOrder::Default, EvaluationOrder::ForceLeftToRight, EvaluationOrder::ForceRightToLeft }
 
typedef std::pair< llvm::Value *, llvm::Value * > ComplexPairTy
 
typedef llvm::function_ref< void(CodeGenFunction &, const OMPLoopDirective &, JumpDest)> CodeGenLoopTy
 
typedef llvm::function_ref< void(CodeGenFunction &, SourceLocation, const unsigned, const bool)> CodeGenOrderedTy
 
typedef llvm::function_ref< std::pair< LValue, LValue > CodeGenFunction &, const OMPExecutableDirective &S)> CodeGenLoopBoundsTy
 
typedef llvm::function_ref< std::pair< llvm::Value *, llvm::Value * > CodeGenFunction &, const OMPExecutableDirective &S, Address LB, Address UB)> CodeGenDispatchBoundsTy
 
typedef llvm::DenseMap< const Decl *, AddressDeclMapTy
 
typedef void Destroyer(CodeGenFunction &CGF, Address addr, QualType ty)
 
typedef llvm::SmallVector< VPtr, 4 > VPtrsVector
 
typedef llvm::SmallPtrSet< const CXXRecordDecl *, 4 > VisitedVirtualBasesSetTy
 
typedef void SpecialInitFn(CodeGenFunction &Init, const VarDecl &D, llvm::Value *Address)
 
typedef const llvm::function_ref< void(CodeGenFunction &, llvm::Value *, const OMPTaskDataTy &)> TaskGenTy
 

Public Member Functions

void InsertHelper (llvm::Instruction *I, const llvm::Twine &Name, llvm::BasicBlock *BB, llvm::BasicBlock::iterator InsertPt) const
 CGBuilder insert helper. More...
 
bool isCoroutine () const
 
bool hasLabelBeenSeenInCurrentScope () const
 Return true if a label was seen in the current scope. More...
 
llvm::BasicBlock * EmitLandingPad ()
 Emits a landing pad for the current EH stack. More...
 
llvm::BasicBlock * getInvokeDestImpl ()
 
template<class T >
DominatingValue< T >::saved_type saveValueInCond (T value)
 
bool isSEHTryScope () const
 Returns true inside SEH __try blocks. More...
 
bool isCleanupPadScope () const
 Returns true while emitting a cleanuppad. More...
 
template<class T , class... As>
void pushFullExprCleanup (CleanupKind kind, As... A)
 pushFullExprCleanup - Push a cleanup to be run at the end of the current full-expression. More...
 
template<class T , class... As>
void pushCleanupAfterFullExpr (CleanupKind Kind, As... A)
 Queue a cleanup to be pushed after finishing the current full-expression. More...
 
void initFullExprCleanup ()
 Set up the last cleaup that was pushed as a conditional full-expression cleanup. More...
 
void PushDestructorCleanup (QualType T, Address Addr)
 PushDestructorCleanup - Push a cleanup to call the complete-object destructor of an object of the given type at the given address. More...
 
void PushDestructorCleanup (const CXXDestructorDecl *Dtor, Address Addr)
 PushDestructorCleanup - Push a cleanup to call the complete-object variant of the given destructor on the object at the given address. More...
 
void PopCleanupBlock (bool FallThroughIsBranchThrough=false)
 PopCleanupBlock - Will pop the cleanup entry on the stack and process all branch fixups. More...
 
void DeactivateCleanupBlock (EHScopeStack::stable_iterator Cleanup, llvm::Instruction *DominatingIP)
 DeactivateCleanupBlock - Deactivates the given cleanup block. More...
 
void ActivateCleanupBlock (EHScopeStack::stable_iterator Cleanup, llvm::Instruction *DominatingIP)
 ActivateCleanupBlock - Activates an initially-inactive cleanup. More...
 
void PopCleanupBlocks (EHScopeStack::stable_iterator OldCleanupStackSize, std::initializer_list< llvm::Value **> ValuesToReload={})
 Takes the old cleanup stack size and emits the cleanup blocks that have been added. More...
 
void PopCleanupBlocks (EHScopeStack::stable_iterator OldCleanupStackSize, size_t OldLifetimeExtendedStackSize, std::initializer_list< llvm::Value **> ValuesToReload={})
 Takes the old cleanup stack size and emits the cleanup blocks that have been added, then adds all lifetime-extended cleanups from the given position to the stack. More...
 
void ResolveBranchFixups (llvm::BasicBlock *Target)
 
JumpDest getJumpDestInCurrentScope (llvm::BasicBlock *Target)
 The given basic block lies in the current EH scope, but may be a target of a potentially scope-crossing jump; get a stable handle to which we can perform this jump later. More...
 
JumpDest getJumpDestInCurrentScope (StringRef Name=StringRef())
 The given basic block lies in the current EH scope, but may be a target of a potentially scope-crossing jump; get a stable handle to which we can perform this jump later. More...
 
void EmitBranchThroughCleanup (JumpDest Dest)
 EmitBranchThroughCleanup - Emit a branch from the current insert block through the normal cleanup handling code (if any) and then on to. More...
 
bool isObviouslyBranchWithoutCleanups (JumpDest Dest) const
 isObviouslyBranchWithoutCleanups - Return true if a branch to the specified destination obviously has no cleanups to run. More...
 
void popCatchScope ()
 popCatchScope - Pops the catch scope at the top of the EHScope stack, emitting any required code (other than the catch handlers themselves). More...
 
llvm::BasicBlock * getEHResumeBlock (bool isCleanup)
 
llvm::BasicBlock * getEHDispatchBlock (EHScopeStack::stable_iterator scope)
 
llvm::BasicBlock * getMSVCDispatchBlock (EHScopeStack::stable_iterator scope)
 
bool isInConditionalBranch () const
 isInConditionalBranch - Return true if we're currently emitting one branch or the other of a conditional expression. More...
 
void setBeforeOutermostConditional (llvm::Value *value, Address addr)
 
void incrementProfileCounter (const Stmt *S, llvm::Value *StepV=nullptr)
 Increment the profiler's counter for the given statement by StepV. More...
 
uint64_t getProfileCount (const Stmt *S)
 Get the profiler's count for the given statement. More...
 
void setCurrentProfileCount (uint64_t Count)
 Set the profiler's current count. More...
 
uint64_t getCurrentProfileCount ()
 Get the profiler's current count. More...
 
 CodeGenFunction (CodeGenModule &cgm, bool suppressNewContext=false)
 
 ~CodeGenFunction ()
 
CodeGenTypesgetTypes () const
 
ASTContextgetContext () const
 
CGDebugInfogetDebugInfo ()
 
void disableDebugInfo ()
 
void enableDebugInfo ()
 
bool shouldUseFusedARCCalls ()
 
const LangOptionsgetLangOpts () const
 
Address getExceptionSlot ()
 Returns a pointer to the function's exception object and selector slot, which is assigned in every landing pad. More...
 
Address getEHSelectorSlot ()
 
llvm::ValuegetExceptionFromSlot ()
 Returns the contents of the function's exception object and selector slots. More...
 
llvm::ValuegetSelectorFromSlot ()
 
Address getNormalCleanupDestSlot ()
 
llvm::BasicBlock * getUnreachableBlock ()
 
llvm::BasicBlock * getInvokeDest ()
 
bool currentFunctionUsesSEHTry () const
 
const TargetInfogetTarget () const
 
llvm::LLVMContext & getLLVMContext ()
 
const TargetCodeGenInfogetTargetHooks () const
 
void pushIrregularPartialArrayCleanup (llvm::Value *arrayBegin, Address arrayEndPointer, QualType elementType, CharUnits elementAlignment, Destroyer *destroyer)
 pushIrregularPartialArrayCleanup - Push an EH cleanup to destroy already-constructed elements of the given array. More...
 
void pushRegularPartialArrayCleanup (llvm::Value *arrayBegin, llvm::Value *arrayEnd, QualType elementType, CharUnits elementAlignment, Destroyer *destroyer)
 pushRegularPartialArrayCleanup - Push an EH cleanup to destroy already-constructed elements of the given array. More...
 
void pushDestroy (QualType::DestructionKind dtorKind, Address addr, QualType type)
 pushDestroy - Push the standard destructor for the given type as at least a normal cleanup. More...
 
void pushEHDestroy (QualType::DestructionKind dtorKind, Address addr, QualType type)
 pushEHDestroy - Push the standard destructor for the given type as an EH-only cleanup. More...
 
void pushDestroy (CleanupKind kind, Address addr, QualType type, Destroyer *destroyer, bool useEHCleanupForArray)
 
void pushLifetimeExtendedDestroy (CleanupKind kind, Address addr, QualType type, Destroyer *destroyer, bool useEHCleanupForArray)
 
void pushCallObjectDeleteCleanup (const FunctionDecl *OperatorDelete, llvm::Value *CompletePtr, QualType ElementType)
 
void pushStackRestore (CleanupKind kind, Address SPMem)
 
void emitDestroy (Address addr, QualType type, Destroyer *destroyer, bool useEHCleanupForArray)
 emitDestroy - Immediately perform the destruction of the given object. More...
 
llvm::Function * generateDestroyHelper (Address addr, QualType type, Destroyer *destroyer, bool useEHCleanupForArray, const VarDecl *VD)
 generateDestroyHelper - Generates a helper function which, when invoked, destroys the given object. More...
 
void emitArrayDestroy (llvm::Value *begin, llvm::Value *end, QualType elementType, CharUnits elementAlign, Destroyer *destroyer, bool checkZeroLength, bool useEHCleanup)
 emitArrayDestroy - Destroys all the elements of the given array, beginning from last to first. More...
 
DestroyergetDestroyer (QualType::DestructionKind destructionKind)
 
bool needsEHCleanup (QualType::DestructionKind kind)
 Determines whether an EH cleanup is required to destroy a type with the given destruction kind. More...
 
CleanupKind getCleanupKind (QualType::DestructionKind kind)
 
void GenerateObjCMethod (const ObjCMethodDecl *OMD)
 Generate an Objective-C method. More...
 
void StartObjCMethod (const ObjCMethodDecl *MD, const ObjCContainerDecl *CD)
 StartObjCMethod - Begin emission of an ObjCMethod. More...
 
void GenerateObjCGetter (ObjCImplementationDecl *IMP, const ObjCPropertyImplDecl *PID)
 GenerateObjCGetter - Synthesize an Objective-C property getter function. More...
 
void generateObjCGetterBody (const ObjCImplementationDecl *classImpl, const ObjCPropertyImplDecl *propImpl, const ObjCMethodDecl *GetterMothodDecl, llvm::Constant *AtomicHelperFn)
 
void GenerateObjCCtorDtorMethod (ObjCImplementationDecl *IMP, ObjCMethodDecl *MD, bool ctor)
 
void GenerateObjCSetter (ObjCImplementationDecl *IMP, const ObjCPropertyImplDecl *PID)
 GenerateObjCSetter - Synthesize an Objective-C property setter function for the given property. More...
 
void generateObjCSetterBody (const ObjCImplementationDecl *classImpl, const ObjCPropertyImplDecl *propImpl, llvm::Constant *AtomicHelperFn)
 
llvm::ValueEmitBlockLiteral (const BlockExpr *, llvm::Function **InvokeF=nullptr)
 Emit block literal. More...
 
llvm::Function * GenerateBlockFunction (GlobalDecl GD, const CGBlockInfo &Info, const DeclMapTy &ldm, bool IsLambdaConversionToBlock, bool BuildGlobalBlock)
 
llvm::Constant * GenerateCopyHelperFunction (const CGBlockInfo &blockInfo)
 Generate the copy-helper function for a block closure object: static void block_copy_helper(block_t *dst, block_t *src); The runtime will have previously initialized 'dst' by doing a bit-copy of 'src'. More...
 
llvm::Constant * GenerateDestroyHelperFunction (const CGBlockInfo &blockInfo)
 Generate the destroy-helper function for a block closure object: static void block_destroy_helper(block_t *theBlock);. More...
 
llvm::Constant * GenerateObjCAtomicSetterCopyHelperFunction (const ObjCPropertyImplDecl *PID)
 GenerateObjCAtomicSetterCopyHelperFunction - Given a c++ object type with non-trivial copy assignment function, produce following helper function. More...
 
llvm::Constant * GenerateObjCAtomicGetterCopyHelperFunction (const ObjCPropertyImplDecl *PID)
 
llvm::ValueEmitBlockCopyAndAutorelease (llvm::Value *Block, QualType Ty)
 
void BuildBlockRelease (llvm::Value *DeclPtr, BlockFieldFlags flags)
 
void emitByrefStructureInit (const AutoVarEmission &emission)
 Initialize the structural components of a __block variable, i.e. More...
 
void enterByrefCleanup (const AutoVarEmission &emission)
 Enter a cleanup to destroy a __block variable. More...
 
void setBlockContextParameter (const ImplicitParamDecl *D, unsigned argNum, llvm::Value *ptr)
 
Address LoadBlockStruct ()
 
Address GetAddrOfBlockDecl (const VarDecl *var, bool ByRef)
 
Address emitBlockByrefAddress (Address baseAddr, const VarDecl *V, bool followForward=true)
 BuildBlockByrefAddress - Computes the location of the data in a variable which is declared as __block. More...
 
Address emitBlockByrefAddress (Address baseAddr, const BlockByrefInfo &info, bool followForward, const llvm::Twine &name)
 
const BlockByrefInfogetBlockByrefInfo (const VarDecl *var)
 BuildByrefInfo - This routine changes a __block variable declared as T x into: More...
 
QualType BuildFunctionArgList (GlobalDecl GD, FunctionArgList &Args)
 
void GenerateCode (GlobalDecl GD, llvm::Function *Fn, const CGFunctionInfo &FnInfo)
 
void StartFunction (GlobalDecl GD, QualType RetTy, llvm::Function *Fn, const CGFunctionInfo &FnInfo, const FunctionArgList &Args, SourceLocation Loc=SourceLocation(), SourceLocation StartLoc=SourceLocation())
 Emit code for the start of a function. More...
 
void EmitConstructorBody (FunctionArgList &Args)
 EmitConstructorBody - Emits the body of the current constructor. More...
 
void EmitDestructorBody (FunctionArgList &Args)
 EmitDestructorBody - Emits the body of the current destructor. More...
 
void emitImplicitAssignmentOperatorBody (FunctionArgList &Args)
 
void EmitFunctionBody (FunctionArgList &Args, const Stmt *Body)
 
void EmitBlockWithFallThrough (llvm::BasicBlock *BB, const Stmt *S)
 When instrumenting to collect profile data, the counts for some blocks such as switch cases need to not include the fall-through counts, so emit a branch around the instrumentation code. More...
 
void EmitForwardingCallToLambda (const CXXMethodDecl *LambdaCallOperator, CallArgList &CallArgs)
 
void EmitLambdaBlockInvokeBody ()
 
void EmitLambdaDelegatingInvokeBody (const CXXMethodDecl *MD)
 
void EmitLambdaStaticInvokeBody (const CXXMethodDecl *MD)
 
void EmitAsanPrologueOrEpilogue (bool Prologue)
 
llvm::DebugLoc EmitReturnBlock ()
 Emit the unified return block, trying to avoid its emission when possible. More...
 
void FinishFunction (SourceLocation EndLoc=SourceLocation())
 FinishFunction - Complete IR generation of the current function. More...
 
void StartThunk (llvm::Function *Fn, GlobalDecl GD, const CGFunctionInfo &FnInfo)
 
void EmitCallAndReturnForThunk (llvm::Constant *Callee, const ThunkInfo *Thunk)
 
void FinishThunk ()
 
void EmitMustTailThunk (const CXXMethodDecl *MD, llvm::Value *AdjustedThisPtr, llvm::Value *Callee)
 Emit a musttail call for a thunk with a potentially adjusted this pointer. More...
 
void generateThunk (llvm::Function *Fn, const CGFunctionInfo &FnInfo, GlobalDecl GD, const ThunkInfo &Thunk)
 Generate a thunk for the given method. More...
 
llvm::Function * GenerateVarArgsThunk (llvm::Function *Fn, const CGFunctionInfo &FnInfo, GlobalDecl GD, const ThunkInfo &Thunk)
 
void EmitCtorPrologue (const CXXConstructorDecl *CD, CXXCtorType Type, FunctionArgList &Args)
 EmitCtorPrologue - This routine generates necessary code to initialize base classes and non-static data members belonging to this constructor. More...
 
void EmitInitializerForField (FieldDecl *Field, LValue LHS, Expr *Init)
 
void InitializeVTablePointer (const VPtr &vptr)
 Initialize the vtable pointer of the given subobject. More...
 
VPtrsVector getVTablePointers (const CXXRecordDecl *VTableClass)
 
void getVTablePointers (BaseSubobject Base, const CXXRecordDecl *NearestVBase, CharUnits OffsetFromNearestVBase, bool BaseIsNonVirtualPrimaryBase, const CXXRecordDecl *VTableClass, VisitedVirtualBasesSetTy &VBases, VPtrsVector &vptrs)
 
void InitializeVTablePointers (const CXXRecordDecl *ClassDecl)
 
llvm::ValueGetVTablePtr (Address This, llvm::Type *VTableTy, const CXXRecordDecl *VTableClass)
 GetVTablePtr - Return the Value of the vtable pointer member pointed to by This. More...
 
void EmitVTablePtrCheckForCast (QualType T, llvm::Value *Derived, bool MayBeNull, CFITypeCheckKind TCK, SourceLocation Loc)
 Derived is the presumed address of an object of type T after a cast. More...
 
void EmitVTablePtrCheckForCall (const CXXRecordDecl *RD, llvm::Value *VTable, CFITypeCheckKind TCK, SourceLocation Loc)
 EmitVTablePtrCheckForCall - Virtual method MD is being called via VTable. More...
 
void EmitVTablePtrCheck (const CXXRecordDecl *RD, llvm::Value *VTable, CFITypeCheckKind TCK, SourceLocation Loc)
 EmitVTablePtrCheck - Emit a check that VTable is a valid virtual table for RD using llvm.type.test. More...
 
void EmitTypeMetadataCodeForVCall (const CXXRecordDecl *RD, llvm::Value *VTable, SourceLocation Loc)
 If whole-program virtual table optimization is enabled, emit an assumption that VTable is a member of RD's type identifier. More...
 
bool ShouldEmitVTableTypeCheckedLoad (const CXXRecordDecl *RD)
 Returns whether we should perform a type checked load when loading a virtual function for virtual calls to members of RD. More...
 
llvm::ValueEmitVTableTypeCheckedLoad (const CXXRecordDecl *RD, llvm::Value *VTable, uint64_t VTableByteOffset)
 Emit a type checked load from the given vtable. More...
 
void EnterDtorCleanups (const CXXDestructorDecl *Dtor, CXXDtorType Type)
 EnterDtorCleanups - Enter the cleanups necessary to complete the given phase of destruction for a destructor. More...
 
bool ShouldInstrumentFunction ()
 ShouldInstrumentFunction - Return true if the current function should be instrumented with __cyg_profile_func_* calls. More...
 
bool ShouldXRayInstrumentFunction () const
 ShouldXRayInstrument - Return true if the current function should be instrumented with XRay nop sleds. More...
 
bool AlwaysEmitXRayCustomEvents () const
 AlwaysEmitXRayCustomEvents - Return true if we must unconditionally emit XRay custom event handling calls. More...
 
llvm::Constant * EncodeAddrForUseInPrologue (llvm::Function *F, llvm::Constant *Addr)
 Encode an address into a form suitable for use in a function prologue. More...
 
llvm::ValueDecodeAddrUsedInPrologue (llvm::Value *F, llvm::Value *EncodedAddr)
 Decode an address used in a function prologue, encoded by EncodeAddrForUseInPrologue. More...
 
void EmitFunctionProlog (const CGFunctionInfo &FI, llvm::Function *Fn, const FunctionArgList &Args)
 EmitFunctionProlog - Emit the target specific LLVM code to load the arguments for the given function. More...
 
void EmitFunctionEpilog (const CGFunctionInfo &FI, bool EmitRetDbgLoc, SourceLocation EndLoc)
 EmitFunctionEpilog - Emit the target specific LLVM code to return the given temporary. More...
 
void EmitReturnValueCheck (llvm::Value *RV)
 Emit a test that checks if the return value RV is nonnull. More...
 
void EmitStartEHSpec (const Decl *D)
 EmitStartEHSpec - Emit the start of the exception spec. More...
 
void EmitEndEHSpec (const Decl *D)
 EmitEndEHSpec - Emit the end of the exception spec. More...
 
llvm::BasicBlock * getTerminateLandingPad ()
 getTerminateLandingPad - Return a landing pad that just calls terminate. More...
 
llvm::BasicBlock * getTerminateFunclet ()
 getTerminateLandingPad - Return a cleanup funclet that just calls terminate. More...
 
llvm::BasicBlock * getTerminateHandler ()
 getTerminateHandler - Return a handler (not a landing pad, just a catch handler) that just calls terminate. More...
 
llvm::TypeConvertTypeForMem (QualType T)
 
llvm::TypeConvertType (QualType T)
 
llvm::TypeConvertType (const TypeDecl *T)
 
llvm::ValueLoadObjCSelf ()
 LoadObjCSelf - Load the value of self. More...
 
QualType TypeOfSelfObject ()
 TypeOfSelfObject - Return type of object that this self represents. More...
 
llvm::BasicBlock * createBasicBlock (const Twine &name="", llvm::Function *parent=nullptr, llvm::BasicBlock *before=nullptr)
 createBasicBlock - Create an LLVM basic block. More...
 
JumpDest getJumpDestForLabel (const LabelDecl *S)
 getBasicBlockForLabel - Return the LLVM basicblock that the specified label maps to. More...
 
void SimplifyForwardingBlocks (llvm::BasicBlock *BB)
 SimplifyForwardingBlocks - If the given basic block is only a branch to another basic block, simplify it. More...
 
void EmitBlock (llvm::BasicBlock *BB, bool IsFinished=false)
 EmitBlock - Emit the given block. More...
 
void EmitBlockAfterUses (llvm::BasicBlock *BB)
 EmitBlockAfterUses - Emit the given block somewhere hopefully near its uses, and leave the insertion point in it. More...
 
void EmitBranch (llvm::BasicBlock *Block)
 EmitBranch - Emit a branch to the specified basic block from the current insert block, taking care to avoid creation of branches from dummy blocks. More...
 
bool HaveInsertPoint () const
 HaveInsertPoint - True if an insertion point is defined. More...
 
void EnsureInsertPoint ()
 EnsureInsertPoint - Ensure that an insertion point is defined so that emitted IR has a place to go. More...
 
void ErrorUnsupported (const Stmt *S, const char *Type)
 ErrorUnsupported - Print out an error that codegen doesn't support the specified stmt yet. More...
 
LValue MakeAddrLValue (Address Addr, QualType T, AlignmentSource Source=AlignmentSource::Type)
 
LValue MakeAddrLValue (Address Addr, QualType T, LValueBaseInfo BaseInfo, TBAAAccessInfo TBAAInfo)
 
LValue MakeAddrLValue (llvm::Value *V, QualType T, CharUnits Alignment, AlignmentSource Source=AlignmentSource::Type)
 
LValue MakeAddrLValue (llvm::Value *V, QualType T, CharUnits Alignment, LValueBaseInfo BaseInfo, TBAAAccessInfo TBAAInfo)
 
LValue MakeNaturalAlignPointeeAddrLValue (llvm::Value *V, QualType T)
 Given a value of type T* that may not be to a complete object, construct an l-value with the natural pointee alignment of T. More...
 
LValue MakeNaturalAlignAddrLValue (llvm::Value *V, QualType T)
 
CharUnits getNaturalTypeAlignment (QualType T, LValueBaseInfo *BaseInfo=nullptr, TBAAAccessInfo *TBAAInfo=nullptr, bool forPointeeType=false)
 
CharUnits getNaturalPointeeTypeAlignment (QualType T, LValueBaseInfo *BaseInfo=nullptr, TBAAAccessInfo *TBAAInfo=nullptr)
 
Address EmitLoadOfReference (LValue RefLVal, LValueBaseInfo *PointeeBaseInfo=nullptr, TBAAAccessInfo *PointeeTBAAInfo=nullptr)
 
LValue EmitLoadOfReferenceLValue (LValue RefLVal)
 
LValue EmitLoadOfReferenceLValue (Address RefAddr, QualType RefTy, AlignmentSource Source=AlignmentSource::Type)
 
Address EmitLoadOfPointer (Address Ptr, const PointerType *PtrTy, LValueBaseInfo *BaseInfo=nullptr, TBAAAccessInfo *TBAAInfo=nullptr)
 
LValue EmitLoadOfPointerLValue (Address Ptr, const PointerType *PtrTy)
 
llvm::AllocaInst * CreateTempAlloca (llvm::Type *Ty, const Twine &Name="tmp", llvm::Value *ArraySize=nullptr)
 CreateTempAlloca - This creates an alloca and inserts it into the entry block if ArraySize is nullptr, otherwise inserts it at the current insertion point of the builder. More...
 
Address CreateTempAlloca (llvm::Type *Ty, CharUnits align, const Twine &Name="tmp", llvm::Value *ArraySize=nullptr, bool CastToDefaultAddrSpace=true)
 CreateTempAlloca - This creates a alloca and inserts it into the entry block. More...
 
Address CreateDefaultAlignTempAlloca (llvm::Type *Ty, const Twine &Name="tmp")
 CreateDefaultAlignedTempAlloca - This creates an alloca with the default ABI alignment of the given LLVM type. More...
 
void InitTempAlloca (Address Alloca, llvm::Value *Value)
 InitTempAlloca - Provide an initial value for the given alloca which will be observable at all locations in the function. More...
 
Address CreateIRTemp (QualType T, const Twine &Name="tmp")
 CreateIRTemp - Create a temporary IR object of the given type, with appropriate alignment. More...
 
Address CreateMemTemp (QualType T, const Twine &Name="tmp", bool CastToDefaultAddrSpace=true)
 CreateMemTemp - Create a temporary memory object of the given type, with appropriate alignment. More...
 
Address CreateMemTemp (QualType T, CharUnits Align, const Twine &Name="tmp", bool CastToDefaultAddrSpace=true)
 
AggValueSlot CreateAggTemp (QualType T, const Twine &Name="tmp")
 CreateAggTemp - Create a temporary memory object for the given aggregate type. More...
 
llvm::ValueEmitCastToVoidPtr (llvm::Value *value)
 Emit a cast to void* in the appropriate address space. More...
 
llvm::ValueEvaluateExprAsBool (const Expr *E)
 EvaluateExprAsBool - Perform the usual unary conversions on the specified expression and compare the result against zero, returning an Int1Ty value. More...
 
void EmitIgnoredExpr (const Expr *E)
 EmitIgnoredExpr - Emit an expression in a context which ignores the result. More...
 
RValue EmitAnyExpr (const Expr *E, AggValueSlot aggSlot=AggValueSlot::ignored(), bool ignoreResult=false)
 EmitAnyExpr - Emit code to compute the specified expression which can have any type. More...
 
Address EmitVAListRef (const Expr *E)
 
Address EmitMSVAListRef (const Expr *E)
 Emit a "reference" to a __builtin_ms_va_list; this is always the value of the expression, because a __builtin_ms_va_list is a pointer to a char. More...
 
RValue EmitAnyExprToTemp (const Expr *E)
 EmitAnyExprToTemp - Similarly to EmitAnyExpr(), however, the result will always be accessible even if no aggregate location is provided. More...
 
void EmitAnyExprToMem (const Expr *E, Address Location, Qualifiers Quals, bool IsInitializer)
 EmitAnyExprToMem - Emits the code necessary to evaluate an arbitrary expression into the given memory location. More...
 
void EmitAnyExprToExn (const Expr *E, Address Addr)
 
void EmitExprAsInit (const Expr *init, const ValueDecl *D, LValue lvalue, bool capturedByInit)
 EmitExprAsInit - Emits the code necessary to initialize a location in memory with the given initializer. More...
 
bool hasVolatileMember (QualType T)
 hasVolatileMember - returns true if aggregate type has a volatile member. More...
 
void EmitAggregateAssign (Address DestPtr, Address SrcPtr, QualType EltTy)
 EmitAggregateCopy - Emit an aggregate assignment. More...
 
void EmitAggregateCopyCtor (Address DestPtr, Address SrcPtr, QualType DestTy, QualType SrcTy)
 
void EmitAggregateCopy (Address DestPtr, Address SrcPtr, QualType EltTy, bool isVolatile=false, bool isAssignment=false)
 EmitAggregateCopy - Emit an aggregate copy. More...
 
Address GetAddrOfLocalVar (const VarDecl *VD)
 GetAddrOfLocalVar - Return the address of a local variable. More...
 
const LValuegetOpaqueLValueMapping (const OpaqueValueExpr *e)
 getOpaqueLValueMapping - Given an opaque value expression (which must be mapped to an l-value), return its mapping. More...
 
const RValuegetOpaqueRValueMapping (const OpaqueValueExpr *e)
 getOpaqueRValueMapping - Given an opaque value expression (which must be mapped to an r-value), return its mapping. More...
 
llvm::ValuegetArrayInitIndex ()
 Get the index of the current ArrayInitLoopExpr, if any. More...
 
llvm::BlockAddress * GetAddrOfLabel (const LabelDecl *L)
 
llvm::BasicBlock * GetIndirectGotoBlock ()
 
void EmitNullInitialization (Address DestPtr, QualType Ty)
 EmitNullInitialization - Generate code to set a value of the given type to null, If the type contains data member pointers, they will be initialized to -1 in accordance with the Itanium C++ ABI. More...
 
llvm::ValueEmitVAStartEnd (llvm::Value *ArgValue, bool IsStart)
 Emits a call to an LLVM variable-argument intrinsic, either llvm.va_start or llvm.va_end. More...
 
Address EmitVAArg (VAArgExpr *VE, Address &VAListAddr)
 Generate code to get an argument from the passed in pointer and update it accordingly. More...
 
llvm::ValueemitArrayLength (const ArrayType *arrayType, QualType &baseType, Address &addr)
 emitArrayLength - Compute the length of an array, even if it's a VLA, and drill down to the base element type. More...
 
void EmitVariablyModifiedType (QualType Ty)
 EmitVLASize - Capture all the sizes for the VLA expressions in the given variably-modified type and store them in the VLASizeMap. More...
 
std::pair< llvm::Value *, QualTypegetVLASize (const VariableArrayType *vla)
 getVLASize - Returns an LLVM value that corresponds to the size, in non-variably-sized elements, of a variable length array type, plus that largest non-variably-sized element type. More...
 
std::pair< llvm::Value *, QualTypegetVLASize (QualType vla)
 
llvm::ValueLoadCXXThis ()
 LoadCXXThis - Load the value of 'this'. More...
 
Address LoadCXXThisAddress ()
 
llvm::ValueLoadCXXVTT ()
 LoadCXXVTT - Load the VTT parameter to base constructors/destructors have virtual bases. More...
 
Address GetAddressOfDirectBaseInCompleteClass (Address Value, const CXXRecordDecl *Derived, const CXXRecordDecl *Base, bool BaseIsVirtual)
 GetAddressOfBaseOfCompleteClass - Convert the given pointer to a complete class to the given direct base. More...
 
Address GetAddressOfBaseClass (Address Value, const CXXRecordDecl *Derived, CastExpr::path_const_iterator PathBegin, CastExpr::path_const_iterator PathEnd, bool NullCheckValue, SourceLocation Loc)
 GetAddressOfBaseClass - This function will add the necessary delta to the load of 'this' and returns address of the base class. More...
 
Address GetAddressOfDerivedClass (Address Value, const CXXRecordDecl *Derived, CastExpr::path_const_iterator PathBegin, CastExpr::path_const_iterator PathEnd, bool NullCheckValue)
 
llvm::ValueGetVTTParameter (GlobalDecl GD, bool ForVirtualBase, bool Delegating)
 GetVTTParameter - Return the VTT parameter that should be passed to a base constructor/destructor with virtual bases. More...
 
void EmitDelegateCXXConstructorCall (const CXXConstructorDecl *Ctor, CXXCtorType CtorType, const FunctionArgList &Args, SourceLocation Loc)
 
void EmitDelegatingCXXConstructorCall (const CXXConstructorDecl *Ctor, const FunctionArgList &Args)
 
void EmitInlinedInheritingCXXConstructorCall (const CXXConstructorDecl *Ctor, CXXCtorType CtorType, bool ForVirtualBase, bool Delegating, CallArgList &Args)
 Emit a call to an inheriting constructor (that is, one that invokes a constructor inherited from a base class) by inlining its definition. More...
 
void EmitInheritedCXXConstructorCall (const CXXConstructorDecl *D, bool ForVirtualBase, Address This, bool InheritedFromVBase, const CXXInheritedCtorInitExpr *E)
 Emit a call to a constructor inherited from a base class, passing the current constructor's arguments along unmodified (without even making a copy). More...
 
void EmitCXXConstructorCall (const CXXConstructorDecl *D, CXXCtorType Type, bool ForVirtualBase, bool Delegating, Address This, const CXXConstructExpr *E)
 
void EmitCXXConstructorCall (const CXXConstructorDecl *D, CXXCtorType Type, bool ForVirtualBase, bool Delegating, Address This, CallArgList &Args)
 
void EmitVTableAssumptionLoads (const CXXRecordDecl *ClassDecl, Address This)
 Emit assumption load for all bases. More...
 
void EmitVTableAssumptionLoad (const VPtr &vptr, Address This)
 Emit assumption that vptr load == global vtable. More...
 
void EmitSynthesizedCXXCopyCtorCall (const CXXConstructorDecl *D, Address This, Address Src, const CXXConstructExpr *E)
 
void EmitCXXAggrConstructorCall (const CXXConstructorDecl *D, const ArrayType *ArrayTy, Address ArrayPtr, const CXXConstructExpr *E, bool ZeroInitialization=false)
 EmitCXXAggrConstructorCall - Emit a loop to call a particular constructor for each of several members of an array. More...
 
void EmitCXXAggrConstructorCall (const CXXConstructorDecl *D, llvm::Value *NumElements, Address ArrayPtr, const CXXConstructExpr *E, bool ZeroInitialization=false)
 EmitCXXAggrConstructorCall - Emit a loop to call a particular constructor for each of several members of an array. More...
 
void EmitCXXDestructorCall (const CXXDestructorDecl *D, CXXDtorType Type, bool ForVirtualBase, bool Delegating, Address This)
 
void EmitNewArrayInitializer (const CXXNewExpr *E, QualType elementType, llvm::Type *ElementTy, Address NewPtr, llvm::Value *NumElements, llvm::Value *AllocSizeWithoutCookie)
 
void EmitCXXTemporary (const CXXTemporary *Temporary, QualType TempType, Address Ptr)
 Emits all the code to cause the given temporary to be cleaned up. More...
 
llvm::ValueEmitLifetimeStart (uint64_t Size, llvm::Value *Addr)
 Emit a lifetime.begin marker if some criteria are satisfied. More...
 
void EmitLifetimeEnd (llvm::Value *Size, llvm::Value *Addr)
 
llvm::ValueEmitCXXNewExpr (const CXXNewExpr *E)
 
void EmitCXXDeleteExpr (const CXXDeleteExpr *E)
 
void EmitDeleteCall (const FunctionDecl *DeleteFD, llvm::Value *Ptr, QualType DeleteTy, llvm::Value *NumElements=nullptr, CharUnits CookieSize=CharUnits())
 
RValue EmitBuiltinNewDeleteCall (const FunctionProtoType *Type, const Expr *Arg, bool IsDelete)
 
llvm::ValueEmitCXXTypeidExpr (const CXXTypeidExpr *E)
 
llvm::ValueEmitDynamicCast (Address V, const CXXDynamicCastExpr *DCE)
 
Address EmitCXXUuidofExpr (const CXXUuidofExpr *E)
 
bool sanitizePerformTypeCheck () const
 Whether any type-checking sanitizers are enabled. More...
 
void EmitTypeCheck (TypeCheckKind TCK, SourceLocation Loc, llvm::Value *V, QualType Type, CharUnits Alignment=CharUnits::Zero(), SanitizerSet SkippedChecks=SanitizerSet())
 Emit a check that V is the address of storage of the appropriate size and alignment for an object of type Type. More...
 
void EmitBoundsCheck (const Expr *E, const Expr *Base, llvm::Value *Index, QualType IndexType, bool Accessed)
 Emit a check that Base points into an array object, which we can access at index Index. More...
 
llvm::ValueEmitScalarPrePostIncDec (const UnaryOperator *E, LValue LV, bool isInc, bool isPre)
 
ComplexPairTy EmitComplexPrePostIncDec (const UnaryOperator *E, LValue LV, bool isInc, bool isPre)
 
void EmitAlignmentAssumption (llvm::Value *PtrValue, unsigned Alignment, llvm::Value *OffsetValue=nullptr)
 
llvm::DebugLoc SourceLocToDebugLoc (SourceLocation Location)
 Converts Location to a DebugLoc, if debug information is enabled. More...
 
void EmitDecl (const Decl &D)
 EmitDecl - Emit a declaration. More...
 
void EmitVarDecl (const VarDecl &D)
 EmitVarDecl - Emit a local variable declaration. More...
 
void EmitScalarInit (const Expr *init, const ValueDecl *D, LValue lvalue, bool capturedByInit)
 
bool isTrivialInitializer (const Expr *Init)
 Determine whether the given initializer is trivial in the sense that it requires no code to be generated. More...
 
void EmitAutoVarDecl (const VarDecl &D)
 EmitAutoVarDecl - Emit an auto variable declaration. More...
 
AutoVarEmission EmitAutoVarAlloca (const VarDecl &var)
 EmitAutoVarAlloca - Emit the alloca and debug information for a local variable. More...
 
void EmitAutoVarInit (const AutoVarEmission &emission)
 
void EmitAutoVarCleanups (const AutoVarEmission &emission)
 
void emitAutoVarTypeCleanup (const AutoVarEmission &emission, QualType::DestructionKind dtorKind)
 Enter a destroy cleanup for the given local variable. More...
 
void EmitStaticVarDecl (const VarDecl &D, llvm::GlobalValue::LinkageTypes Linkage)
 
void EmitParmDecl (const VarDecl &D, ParamValue Arg, unsigned ArgNo)
 EmitParmDecl - Emit a ParmVarDecl or an ImplicitParamDecl. More...
 
PeepholeProtection protectFromPeepholes (RValue rvalue)
 protectFromPeepholes - Protect a value that we're intending to store to the side, but which will probably be used later, from aggressive peepholing optimizations that might delete it. More...
 
void unprotectFromPeepholes (PeepholeProtection protection)
 
void EmitAlignmentAssumption (llvm::Value *PtrValue, llvm::Value *Alignment, llvm::Value *OffsetValue=nullptr)
 
void EmitStopPoint (const Stmt *S)
 EmitStopPoint - Emit a debug stoppoint if we are emitting debug info. More...
 
void EmitStmt (const Stmt *S, ArrayRef< const Attr *> Attrs=None)
 EmitStmt - Emit the code for the statement. More...
 
bool EmitSimpleStmt (const Stmt *S)
 EmitSimpleStmt - Try to emit a "simple" statement which does not necessarily require an insertion point or debug information; typically because the statement amounts to a jump or a container of other statements. More...
 
Address EmitCompoundStmt (const CompoundStmt &S, bool GetLast=false, AggValueSlot AVS=AggValueSlot::ignored())
 EmitCompoundStmt - Emit a compound statement {..} node. More...
 
Address EmitCompoundStmtWithoutScope (const CompoundStmt &S, bool GetLast=false, AggValueSlot AVS=AggValueSlot::ignored())
 
void EmitLabel (const LabelDecl *D)
 EmitLabel - Emit the block for the given label. More...
 
void EmitLabelStmt (const LabelStmt &S)
 
void EmitAttributedStmt (const AttributedStmt &S)
 
void EmitGotoStmt (const GotoStmt &S)
 
void EmitIndirectGotoStmt (const IndirectGotoStmt &S)
 
void EmitIfStmt (const IfStmt &S)
 
void EmitWhileStmt (const WhileStmt &S, ArrayRef< const Attr *> Attrs=None)
 
void EmitDoStmt (const DoStmt &S, ArrayRef< const Attr *> Attrs=None)
 
void EmitForStmt (const ForStmt &S, ArrayRef< const Attr *> Attrs=None)
 
void EmitReturnStmt (const ReturnStmt &S)
 EmitReturnStmt - Note that due to GCC extensions, this can have an operand if the function returns void, or may be missing one if the function returns non-void. More...
 
void EmitDeclStmt (const DeclStmt &S)
 
void EmitBreakStmt (const BreakStmt &S)
 
void EmitContinueStmt (const ContinueStmt &S)
 
void EmitSwitchStmt (const SwitchStmt &S)
 
void EmitDefaultStmt (const DefaultStmt &S)
 
void EmitCaseStmt (const CaseStmt &S)
 
void EmitCaseStmtRange (const CaseStmt &S)
 EmitCaseStmtRange - If case statement range is not too big then add multiple cases to switch instruction, one for each value within the range. More...
 
void EmitAsmStmt (const AsmStmt &S)
 
void EmitObjCForCollectionStmt (const ObjCForCollectionStmt &S)
 
void EmitObjCAtTryStmt (const ObjCAtTryStmt &S)
 
void EmitObjCAtThrowStmt (const ObjCAtThrowStmt &S)
 
void EmitObjCAtSynchronizedStmt (const ObjCAtSynchronizedStmt &S)
 
void EmitObjCAutoreleasePoolStmt (const ObjCAutoreleasePoolStmt &S)
 
void EmitCoroutineBody (const CoroutineBodyStmt &S)
 
void EmitCoreturnStmt (const CoreturnStmt &S)
 
RValue EmitCoawaitExpr (const CoawaitExpr &E, AggValueSlot aggSlot=AggValueSlot::ignored(), bool ignoreResult=false)
 
LValue EmitCoawaitLValue (const CoawaitExpr *E)
 
RValue EmitCoyieldExpr (const CoyieldExpr &E, AggValueSlot aggSlot=AggValueSlot::ignored(), bool ignoreResult=false)
 
LValue EmitCoyieldLValue (const CoyieldExpr *E)
 
RValue EmitCoroutineIntrinsic (const CallExpr *E, unsigned int IID)
 
void EnterCXXTryStmt (const CXXTryStmt &S, bool IsFnTryBlock=false)
 
void ExitCXXTryStmt (const CXXTryStmt &S, bool IsFnTryBlock=false)
 
void EmitCXXTryStmt (const CXXTryStmt &S)
 
void EmitSEHTryStmt (const SEHTryStmt &S)
 
void EmitSEHLeaveStmt (const SEHLeaveStmt &S)
 
void EnterSEHTryStmt (const SEHTryStmt &S)
 
void ExitSEHTryStmt (const SEHTryStmt &S)
 
void startOutlinedSEHHelper (CodeGenFunction &ParentCGF, bool IsFilter, const Stmt *OutlinedStmt)
 Arrange a function prototype that can be called by Windows exception handling personalities. More...
 
llvm::Function * GenerateSEHFilterFunction (CodeGenFunction &ParentCGF, const SEHExceptStmt &Except)
 Create a stub filter function that will ultimately hold the code of the filter expression. More...
 
llvm::Function * GenerateSEHFinallyFunction (CodeGenFunction &ParentCGF, const SEHFinallyStmt &Finally)
 
void EmitSEHExceptionCodeSave (CodeGenFunction &ParentCGF, llvm::Value *ParentFP, llvm::Value *EntryEBP)
 
llvm::ValueEmitSEHExceptionCode ()
 
llvm::ValueEmitSEHExceptionInfo ()
 
llvm::ValueEmitSEHAbnormalTermination ()
 
void EmitSimpleOMPExecutableDirective (const OMPExecutableDirective &D)
 Emit simple code for OpenMP directives in Simd-only mode. More...
 
void EmitCapturedLocals (CodeGenFunction &ParentCGF, const Stmt *OutlinedStmt, bool IsFilter)
 Scan the outlined statement for captures from the parent function. More...
 
Address recoverAddrOfEscapedLocal (CodeGenFunction &ParentCGF, Address ParentVar, llvm::Value *ParentFP)
 Recovers the address of a local in a parent function. More...
 
void EmitCXXForRangeStmt (const CXXForRangeStmt &S, ArrayRef< const Attr *> Attrs=None)
 
llvm::ValuegetTypeSize (QualType Ty)
 Returns calculated size of the specified type. More...
 
LValue InitCapturedStruct (const CapturedStmt &S)
 
llvm::Function * EmitCapturedStmt (const CapturedStmt &S, CapturedRegionKind K)
 Generate an outlined function for the body of a CapturedStmt, store any captured variables into the captured struct, and call the outlined function. More...
 
llvm::Function * GenerateCapturedStmtFunction (const CapturedStmt &S)
 Creates the outlined function for a CapturedStmt. More...
 
Address GenerateCapturedStmtArgument (const CapturedStmt &S)
 
llvm::Function * GenerateOpenMPCapturedStmtFunction (const CapturedStmt &S)
 
void GenerateOpenMPCapturedVars (const CapturedStmt &S, SmallVectorImpl< llvm::Value *> &CapturedVars)
 
void emitOMPSimpleStore (LValue LVal, RValue RVal, QualType RValTy, SourceLocation Loc)
 
void EmitOMPAggregateAssign (Address DestAddr, Address SrcAddr, QualType OriginalType, const llvm::function_ref< void(Address, Address)> &CopyGen)
 Perform element by element copying of arrays with type OriginalType from SrcAddr to DestAddr using copying procedure generated by CopyGen. More...
 
void EmitOMPCopy (QualType OriginalType, Address DestAddr, Address SrcAddr, const VarDecl *DestVD, const VarDecl *SrcVD, const Expr *Copy)
 Emit proper copying of data from one variable to another. More...
 
std::pair< bool, RValueEmitOMPAtomicSimpleUpdateExpr (LValue X, RValue E, BinaryOperatorKind BO, bool IsXLHSInRHSPart, llvm::AtomicOrdering AO, SourceLocation Loc, const llvm::function_ref< RValue(RValue)> &CommonGen)
 Emit atomic update code for constructs: X = X BO E or X = E BO E. More...
 
bool EmitOMPFirstprivateClause (const OMPExecutableDirective &D, OMPPrivateScope &PrivateScope)
 
void EmitOMPPrivateClause (const OMPExecutableDirective &D, OMPPrivateScope &PrivateScope)
 
void EmitOMPUseDevicePtrClause (const OMPClause &C, OMPPrivateScope &PrivateScope, const llvm::DenseMap< const ValueDecl *, Address > &CaptureDeviceAddrMap)
 
bool EmitOMPCopyinClause (const OMPExecutableDirective &D)
 Emit code for copyin clause in D directive. More...
 
bool EmitOMPLastprivateClauseInit (const OMPExecutableDirective &D, OMPPrivateScope &PrivateScope)
 Emit initial code for lastprivate variables. More...
 
void EmitOMPLastprivateClauseFinal (const OMPExecutableDirective &D, bool NoFinals, llvm::Value *IsLastIterCond=nullptr)
 Emit final copying of lastprivate values to original variables at the end of the worksharing or simd directive. More...
 
void EmitOMPLinearClause (const OMPLoopDirective &D, CodeGenFunction::OMPPrivateScope &PrivateScope)
 Emit initial code for linear clauses. More...
 
void EmitOMPLinearClauseFinal (const OMPLoopDirective &D, const llvm::function_ref< llvm::Value *(CodeGenFunction &)> &CondGen)
 Emit final code for linear clauses. More...
 
void EmitOMPReductionClauseInit (const OMPExecutableDirective &D, OMPPrivateScope &PrivateScope)
 Emit initial code for reduction variables. More...
 
void EmitOMPReductionClauseFinal (const OMPExecutableDirective &D, const OpenMPDirectiveKind ReductionKind)
 Emit final update of reduction values to original variables at the end of the directive. More...
 
bool EmitOMPLinearClauseInit (const OMPLoopDirective &D)
 Emit initial code for linear variables. More...
 
void EmitOMPTaskBasedDirective (const OMPExecutableDirective &S, const RegionCodeGenTy &BodyGen, const TaskGenTy &TaskGen, OMPTaskDataTy &Data)
 
void EmitOMPTargetTaskBasedDirective (const OMPExecutableDirective &S, const RegionCodeGenTy &BodyGen, OMPTargetDataInfo &InputInfo)
 
void EmitOMPParallelDirective (const OMPParallelDirective &S)
 
void EmitOMPSimdDirective (const OMPSimdDirective &S)
 
void EmitOMPForDirective (const OMPForDirective &S)
 
void EmitOMPForSimdDirective (const OMPForSimdDirective &S)
 
void EmitOMPSectionsDirective (const OMPSectionsDirective &S)
 
void EmitOMPSectionDirective (const OMPSectionDirective &S)
 
void EmitOMPSingleDirective (const OMPSingleDirective &S)
 
void EmitOMPMasterDirective (const OMPMasterDirective &S)
 
void EmitOMPCriticalDirective (const OMPCriticalDirective &S)
 
void EmitOMPParallelForDirective (const OMPParallelForDirective &S)
 
void EmitOMPParallelForSimdDirective (const OMPParallelForSimdDirective &S)
 
void EmitOMPParallelSectionsDirective (const OMPParallelSectionsDirective &S)
 
void EmitOMPTaskDirective (const OMPTaskDirective &S)
 
void EmitOMPTaskyieldDirective (const OMPTaskyieldDirective &S)
 
void EmitOMPBarrierDirective (const OMPBarrierDirective &S)
 
void EmitOMPTaskwaitDirective (const OMPTaskwaitDirective &S)
 
void EmitOMPTaskgroupDirective (const OMPTaskgroupDirective &S)
 
void EmitOMPFlushDirective (const OMPFlushDirective &S)
 
void EmitOMPOrderedDirective (const OMPOrderedDirective &S)
 
void EmitOMPAtomicDirective (const OMPAtomicDirective &S)
 
void EmitOMPTargetDirective (const OMPTargetDirective &S)
 
void EmitOMPTargetDataDirective (const OMPTargetDataDirective &S)
 
void EmitOMPTargetEnterDataDirective (const OMPTargetEnterDataDirective &S)
 
void EmitOMPTargetExitDataDirective (const OMPTargetExitDataDirective &S)
 
void EmitOMPTargetUpdateDirective (const OMPTargetUpdateDirective &S)
 
void EmitOMPTargetParallelDirective (const OMPTargetParallelDirective &S)
 
void EmitOMPTargetParallelForDirective (const OMPTargetParallelForDirective &S)
 
void EmitOMPTeamsDirective (const OMPTeamsDirective &S)
 
void EmitOMPCancellationPointDirective (const OMPCancellationPointDirective &S)
 
void EmitOMPCancelDirective (const OMPCancelDirective &S)
 
void EmitOMPTaskLoopBasedDirective (const OMPLoopDirective &S)
 
void EmitOMPTaskLoopDirective (const OMPTaskLoopDirective &S)
 
void EmitOMPTaskLoopSimdDirective (const OMPTaskLoopSimdDirective &S)
 
void EmitOMPDistributeDirective (const OMPDistributeDirective &S)
 
void EmitOMPDistributeParallelForDirective (const OMPDistributeParallelForDirective &S)
 
void EmitOMPDistributeParallelForSimdDirective (const OMPDistributeParallelForSimdDirective &S)
 
void EmitOMPDistributeSimdDirective (const OMPDistributeSimdDirective &S)
 
void EmitOMPTargetParallelForSimdDirective (const OMPTargetParallelForSimdDirective &S)
 
void EmitOMPTargetSimdDirective (const OMPTargetSimdDirective &S)
 
void EmitOMPTeamsDistributeDirective (const OMPTeamsDistributeDirective &S)
 
void EmitOMPTeamsDistributeSimdDirective (const OMPTeamsDistributeSimdDirective &S)
 
void EmitOMPTeamsDistributeParallelForSimdDirective (const OMPTeamsDistributeParallelForSimdDirective &S)
 
void EmitOMPTeamsDistributeParallelForDirective (const OMPTeamsDistributeParallelForDirective &S)
 
void EmitOMPTargetTeamsDirective (const OMPTargetTeamsDirective &S)
 
void EmitOMPTargetTeamsDistributeDirective (const OMPTargetTeamsDistributeDirective &S)
 
void EmitOMPTargetTeamsDistributeParallelForDirective (const OMPTargetTeamsDistributeParallelForDirective &S)
 
void EmitOMPTargetTeamsDistributeParallelForSimdDirective (const OMPTargetTeamsDistributeParallelForSimdDirective &S)
 
void EmitOMPTargetTeamsDistributeSimdDirective (const OMPTargetTeamsDistributeSimdDirective &S)
 
void EmitOMPInnerLoop (const Stmt &S, bool RequiresCleanup, const Expr *LoopCond, const Expr *IncExpr, const llvm::function_ref< void(CodeGenFunction &)> &BodyGen, const llvm::function_ref< void(CodeGenFunction &)> &PostIncGen)
 Emit inner loop of the worksharing/simd construct. More...
 
JumpDest getOMPCancelDestination (OpenMPDirectiveKind Kind)
 
void EmitOMPPrivateLoopCounters (const OMPLoopDirective &S, OMPPrivateScope &LoopScope)
 Emit initial code for loop counters of loop-based directives. More...
 
void EmitOMPLoopBody (const OMPLoopDirective &D, JumpDest LoopExit)
 Helper for the OpenMP loop directives. More...
 
bool EmitOMPWorksharingLoop (const OMPLoopDirective &S, Expr *EUB, const CodeGenLoopBoundsTy &CodeGenLoopBounds, const CodeGenDispatchBoundsTy &CGDispatchBounds)
 Emit code for the worksharing loop-based directive. More...
 
void EmitOMPDistributeLoop (const OMPLoopDirective &S, const CodeGenLoopTy &CodeGenLoop, Expr *IncExpr)
 Emit code for the distribute loop-based directive. More...
 
void EmitOMPSimdInit (const OMPLoopDirective &D, bool IsMonotonic=false)
 Helpers for the OpenMP loop directives. More...
 
void EmitOMPSimdFinal (const OMPLoopDirective &D, const llvm::function_ref< llvm::Value *(CodeGenFunction &)> &CondGen)
 
LValue EmitOMPSharedLValue (const Expr *E)
 Emits the lvalue for the expression with possibly captured variable. More...
 
RValue GetUndefRValue (QualType Ty)
 GetUndefRValue - Get an appropriate 'undef' rvalue for the given type. More...
 
RValue EmitUnsupportedRValue (const Expr *E, const char *Name)
 EmitUnsupportedRValue - Emit a dummy r-value using the type of E and issue an ErrorUnsupported style diagnostic (using the provided Name). More...
 
LValue EmitUnsupportedLValue (const Expr *E, const char *Name)
 EmitUnsupportedLValue - Emit a dummy l-value using the type of E and issue an ErrorUnsupported style diagnostic (using the provided Name). More...
 
LValue EmitLValue (const Expr *E)
 EmitLValue - Emit code to compute a designator that specifies the location of the expression. More...
 
LValue EmitCheckedLValue (const Expr *E, TypeCheckKind TCK)
 Same as EmitLValue but additionally we generate checking code to guard against undefined behavior. More...
 
RValue convertTempToRValue (Address addr, QualType type, SourceLocation Loc)
 Given the address of a temporary variable, produce an r-value of its type. More...
 
void EmitAtomicInit (Expr *E, LValue lvalue)
 
bool LValueIsSuitableForInlineAtomic (LValue Src)
 An LValue is a candidate for having its loads and stores be made atomic if we are operating under /volatile:ms and the LValue itself is volatile and performing such an operation can be performed without a libcall. More...
 
RValue EmitAtomicLoad (LValue LV, SourceLocation SL, AggValueSlot Slot=AggValueSlot::ignored())
 
RValue EmitAtomicLoad (LValue lvalue, SourceLocation loc, llvm::AtomicOrdering AO, bool IsVolatile=false, AggValueSlot slot=AggValueSlot::ignored())
 Emit a load from an l-value of atomic type. More...
 
void EmitAtomicStore (RValue rvalue, LValue lvalue, bool isInit)
 
void EmitAtomicStore (RValue rvalue, LValue lvalue, llvm::AtomicOrdering AO, bool IsVolatile, bool isInit)
 Emit a store to an l-value of atomic type. More...
 
std::pair< RValue, llvm::Value * > EmitAtomicCompareExchange (LValue Obj, RValue Expected, RValue Desired, SourceLocation Loc, llvm::AtomicOrdering Success=llvm::AtomicOrdering::SequentiallyConsistent, llvm::AtomicOrdering Failure=llvm::AtomicOrdering::SequentiallyConsistent, bool IsWeak=false, AggValueSlot Slot=AggValueSlot::ignored())
 Emit a compare-and-exchange op for atomic type. More...
 
void EmitAtomicUpdate (LValue LVal, llvm::AtomicOrdering AO, const llvm::function_ref< RValue(RValue)> &UpdateOp, bool IsVolatile)
 
llvm::ValueEmitToMemory (llvm::Value *Value, QualType Ty)
 EmitToMemory - Change a scalar value from its value representation to its in-memory representation. More...
 
llvm::ValueEmitFromMemory (llvm::Value *Value, QualType Ty)
 EmitFromMemory - Change a scalar value from its memory representation to its value representation. More...
 
bool EmitScalarRangeCheck (llvm::Value *Value, QualType Ty, SourceLocation Loc)
 Check if the scalar Value is within the valid range for the given type Ty. More...
 
llvm::ValueEmitLoadOfScalar (Address Addr, bool Volatile, QualType Ty, SourceLocation Loc, AlignmentSource Source=AlignmentSource::Type, bool isNontemporal=false)
 EmitLoadOfScalar - Load a scalar value from an address, taking care to appropriately convert from the memory representation to the LLVM value representation. More...
 
llvm::ValueEmitLoadOfScalar (Address Addr, bool Volatile, QualType Ty, SourceLocation Loc, LValueBaseInfo BaseInfo, TBAAAccessInfo TBAAInfo, bool isNontemporal=false)
 
llvm::ValueEmitLoadOfScalar (LValue lvalue, SourceLocation Loc)
 EmitLoadOfScalar - Load a scalar value from an address, taking care to appropriately convert from the memory representation to the LLVM value representation. More...
 
void EmitStoreOfScalar (llvm::Value *Value, Address Addr, bool Volatile, QualType Ty, AlignmentSource Source=AlignmentSource::Type, bool isInit=false, bool isNontemporal=false)
 EmitStoreOfScalar - Store a scalar value to an address, taking care to appropriately convert from the memory representation to the LLVM value representation. More...
 
void EmitStoreOfScalar (llvm::Value *Value, Address Addr, bool Volatile, QualType Ty, LValueBaseInfo BaseInfo, TBAAAccessInfo TBAAInfo, bool isInit=false, bool isNontemporal=false)
 
void EmitStoreOfScalar (llvm::Value *value, LValue lvalue, bool isInit=false)
 EmitStoreOfScalar - Store a scalar value to an address, taking care to appropriately convert from the memory representation to the LLVM value representation. More...
 
RValue EmitLoadOfLValue (LValue V, SourceLocation Loc)
 EmitLoadOfLValue - Given an expression that represents a value lvalue, this method emits the address of the lvalue, then loads the result as an rvalue, returning the rvalue. More...
 
RValue EmitLoadOfExtVectorElementLValue (LValue V)
 
RValue EmitLoadOfBitfieldLValue (LValue LV, SourceLocation Loc)
 
RValue EmitLoadOfGlobalRegLValue (LValue LV)
 Load of global gamed gegisters are always calls to intrinsics. More...
 
void EmitStoreThroughLValue (RValue Src, LValue Dst, bool isInit=false)
 EmitStoreThroughLValue - Store the specified rvalue into the specified lvalue, where both are guaranteed to the have the same type, and that type is 'Ty'. More...
 
void EmitStoreThroughExtVectorComponentLValue (RValue Src, LValue Dst)
 
void EmitStoreThroughGlobalRegLValue (RValue Src, LValue Dst)
 Store of global named registers are always calls to intrinsics. More...
 
void EmitStoreThroughBitfieldLValue (RValue Src, LValue Dst, llvm::Value **Result=nullptr)
 EmitStoreThroughBitfieldLValue - Store Src into Dst with same constraints as EmitStoreThroughLValue. More...
 
LValue EmitComplexAssignmentLValue (const BinaryOperator *E)
 Emit an l-value for an assignment (simple or compound) of complex type. More...
 
LValue EmitComplexCompoundAssignmentLValue (const CompoundAssignOperator *E)
 
LValue EmitScalarCompoundAssignWithComplex (const CompoundAssignOperator *E, llvm::Value *&Result)
 
LValue EmitBinaryOperatorLValue (const BinaryOperator *E)
 
LValue EmitCompoundAssignmentLValue (const CompoundAssignOperator *E)
 
LValue EmitCallExprLValue (const CallExpr *E)
 
LValue EmitVAArgExprLValue (const VAArgExpr *E)
 
LValue EmitDeclRefLValue (const DeclRefExpr *E)
 
LValue EmitStringLiteralLValue (const StringLiteral *E)
 
LValue EmitObjCEncodeExprLValue (const ObjCEncodeExpr *E)
 
LValue EmitPredefinedLValue (const PredefinedExpr *E)
 
LValue EmitUnaryOpLValue (const UnaryOperator *E)
 
LValue EmitArraySubscriptExpr (const ArraySubscriptExpr *E, bool Accessed=false)
 
LValue EmitOMPArraySectionExpr (const OMPArraySectionExpr *E, bool IsLowerBound=true)
 
LValue EmitExtVectorElementExpr (const ExtVectorElementExpr *E)
 
LValue EmitMemberExpr (const MemberExpr *E)
 
LValue EmitObjCIsaExpr (const ObjCIsaExpr *E)
 
LValue EmitCompoundLiteralLValue (const CompoundLiteralExpr *E)
 
LValue EmitInitListLValue (const InitListExpr *E)
 
LValue EmitConditionalOperatorLValue (const AbstractConditionalOperator *E)
 
LValue EmitCastLValue (const CastExpr *E)
 EmitCastLValue - Casts are never lvalues unless that cast is to a reference type. More...
 
LValue EmitMaterializeTemporaryExpr (const MaterializeTemporaryExpr *E)
 
LValue EmitOpaqueValueLValue (const OpaqueValueExpr *e)
 
Address EmitExtVectorElementLValue (LValue V)
 Generates lvalue for partial ext_vector access. More...
 
RValue EmitRValueForField (LValue LV, const FieldDecl *FD, SourceLocation Loc)
 
Address EmitArrayToPointerDecay (const Expr *Array, LValueBaseInfo *BaseInfo=nullptr, TBAAAccessInfo *TBAAInfo=nullptr)
 
ConstantEmission tryEmitAsConstant (DeclRefExpr *refExpr)
 Try to emit a reference to the given value without producing it as an l-value. More...
 
ConstantEmission tryEmitAsConstant (const MemberExpr *ME)
 
RValue EmitPseudoObjectRValue (const PseudoObjectExpr *e, AggValueSlot slot=AggValueSlot::ignored())
 
LValue EmitPseudoObjectLValue (const PseudoObjectExpr *e)
 
llvm::ValueEmitIvarOffset (const ObjCInterfaceDecl *Interface, const ObjCIvarDecl *Ivar)
 
LValue EmitLValueForField (LValue Base, const FieldDecl *Field)
 
LValue EmitLValueForLambdaField (const FieldDecl *Field)
 Given that we are currently emitting a lambda, emit an l-value for one of its members. More...
 
LValue EmitLValueForFieldInitialization (LValue Base, const FieldDecl *Field)
 EmitLValueForFieldInitialization - Like EmitLValueForField, except that if the Field is a reference, this will return the address of the reference and not the address of the value stored in the reference. More...
 
LValue EmitLValueForIvar (QualType ObjectTy, llvm::Value *Base, const ObjCIvarDecl *Ivar, unsigned CVRQualifiers)
 
LValue EmitCXXConstructLValue (const CXXConstructExpr *E)
 
LValue EmitCXXBindTemporaryLValue (const CXXBindTemporaryExpr *E)
 
LValue EmitLambdaLValue (const LambdaExpr *E)
 
LValue EmitCXXTypeidLValue (const CXXTypeidExpr *E)
 
LValue EmitCXXUuidofLValue (const CXXUuidofExpr *E)
 
LValue EmitObjCMessageExprLValue (const ObjCMessageExpr *E)
 
LValue EmitObjCIvarRefLValue (const ObjCIvarRefExpr *E)
 
LValue EmitStmtExprLValue (const StmtExpr *E)
 
LValue EmitPointerToDataMemberBinaryExpr (const BinaryOperator *E)
 
LValue EmitObjCSelectorLValue (const ObjCSelectorExpr *E)
 
void EmitDeclRefExprDbgValue (const DeclRefExpr *E, const APValue &Init)
 
RValue EmitCall (const CGFunctionInfo &CallInfo, const CGCallee &Callee, ReturnValueSlot ReturnValue, const CallArgList &Args, llvm::Instruction **callOrInvoke, SourceLocation Loc)
 EmitCall - Generate a call of the given function, expecting the given result type, and using the given argument list which specifies both the LLVM arguments and the types they were derived from. More...
 
RValue EmitCall (const CGFunctionInfo &CallInfo, const CGCallee &Callee, ReturnValueSlot ReturnValue, const CallArgList &Args, llvm::Instruction **callOrInvoke=nullptr)
 
RValue EmitCall (QualType FnType, const CGCallee &Callee, const CallExpr *E, ReturnValueSlot ReturnValue, llvm::Value *Chain=nullptr)
 
RValue EmitCallExpr (const CallExpr *E, ReturnValueSlot ReturnValue=ReturnValueSlot())
 
RValue EmitSimpleCallExpr (const CallExpr *E, ReturnValueSlot ReturnValue)
 Emit a CallExpr without considering whether it might be a subclass. More...
 
CGCallee EmitCallee (const Expr *E)
 
void checkTargetFeatures (const CallExpr *E, const FunctionDecl *TargetDecl)
 
llvm::CallInst * EmitRuntimeCall (llvm::Value *callee, const Twine &name="")
 
llvm::CallInst * EmitRuntimeCall (llvm::Value *callee, ArrayRef< llvm::Value *> args, const Twine &name="")
 
llvm::CallInst * EmitNounwindRuntimeCall (llvm::Value *callee, const Twine &name="")
 
llvm::CallInst * EmitNounwindRuntimeCall (llvm::Value *callee, ArrayRef< llvm::Value *> args, const Twine &name="")
 
llvm::CallSite EmitCallOrInvoke (llvm::Value *Callee, ArrayRef< llvm::Value *> Args, const Twine &Name="")
 Emits a call or invoke instruction to the given function, depending on the current state of the EH stack. More...
 
llvm::CallSite EmitRuntimeCallOrInvoke (llvm::Value *callee, ArrayRef< llvm::Value *> args, const Twine &name="")
 Emits a call or invoke instruction to the given runtime function. More...
 
llvm::CallSite EmitRuntimeCallOrInvoke (llvm::Value *callee, const Twine &name="")
 Emits a call or invoke instruction to the given nullary runtime function. More...
 
void EmitNoreturnRuntimeCallOrInvoke (llvm::Value *callee, ArrayRef< llvm::Value *> args)
 Emits a call or invoke to the given noreturn runtime function. More...
 
CGCallee BuildAppleKextVirtualCall (const CXXMethodDecl *MD, NestedNameSpecifier *Qual, llvm::Type *Ty)
 BuildAppleKextVirtualCall - This routine is to support gcc's kext ABI making indirect call to virtual functions. More...
 
CGCallee BuildAppleKextVirtualDestructorCall (const CXXDestructorDecl *DD, CXXDtorType Type, const CXXRecordDecl *RD)
 BuildVirtualCall - This routine makes indirect vtable call for call to virtual destructors. More...
 
RValue EmitCXXMemberOrOperatorCall (const CXXMethodDecl *Method, const CGCallee &Callee, ReturnValueSlot ReturnValue, llvm::Value *This, llvm::Value *ImplicitParam, QualType ImplicitParamTy, const CallExpr *E, CallArgList *RtlArgs)
 
RValue EmitCXXDestructorCall (const CXXDestructorDecl *DD, const CGCallee &Callee, llvm::Value *This, llvm::Value *ImplicitParam, QualType ImplicitParamTy, const CallExpr *E, StructorType Type)
 
RValue EmitCXXMemberCallExpr (const CXXMemberCallExpr *E, ReturnValueSlot ReturnValue)
 
RValue EmitCXXMemberOrOperatorMemberCallExpr (const CallExpr *CE, const CXXMethodDecl *MD, ReturnValueSlot ReturnValue, bool HasQualifier, NestedNameSpecifier *Qualifier, bool IsArrow, const Expr *Base)
 
Address EmitCXXMemberDataPointerAddress (const Expr *E, Address base, llvm::Value *memberPtr, const MemberPointerType *memberPtrType, LValueBaseInfo *BaseInfo=nullptr, TBAAAccessInfo *TBAAInfo=nullptr)
 Emit the address of a field using a member data pointer. More...
 
RValue EmitCXXMemberPointerCallExpr (const CXXMemberCallExpr *E, ReturnValueSlot ReturnValue)
 
RValue EmitCXXOperatorMemberCallExpr (const CXXOperatorCallExpr *E, const CXXMethodDecl *MD, ReturnValueSlot ReturnValue)
 
RValue EmitCXXPseudoDestructorExpr (const CXXPseudoDestructorExpr *E)
 
RValue EmitCUDAKernelCallExpr (const CUDAKernelCallExpr *E, ReturnValueSlot ReturnValue)
 
RValue EmitNVPTXDevicePrintfCallExpr (const CallExpr *E, ReturnValueSlot ReturnValue)
 
RValue EmitBuiltinExpr (const FunctionDecl *FD, unsigned BuiltinID, const CallExpr *E, ReturnValueSlot ReturnValue)
 
RValue emitBuiltinOSLogFormat (const CallExpr &E)
 Emit IR for __builtin_os_log_format. More...
 
llvm::Function * generateBuiltinOSLogHelperFunction (const analyze_os_log::OSLogBufferLayout &Layout, CharUnits BufferAlignment)
 
RValue EmitBlockCallExpr (const CallExpr *E, ReturnValueSlot ReturnValue)
 
llvm::ValueEmitTargetBuiltinExpr (unsigned BuiltinID, const CallExpr *E)
 EmitTargetBuiltinExpr - Emit the given builtin call. More...
 
llvm::ValueEmitAArch64CompareBuiltinExpr (llvm::Value *Op, llvm::Type *Ty, const llvm::CmpInst::Predicate Fp, const llvm::CmpInst::Predicate Ip, const llvm::Twine &Name="")
 
llvm::ValueEmitARMBuiltinExpr (unsigned BuiltinID, const CallExpr *E, llvm::Triple::ArchType Arch)
 
llvm::ValueEmitCommonNeonBuiltinExpr (unsigned BuiltinID, unsigned LLVMIntrinsic, unsigned AltLLVMIntrinsic, const char *NameHint, unsigned Modifier, const CallExpr *E, SmallVectorImpl< llvm::Value *> &Ops, Address PtrOp0, Address PtrOp1, llvm::Triple::ArchType Arch)
 
llvm::Function * LookupNeonLLVMIntrinsic (unsigned IntrinsicID, unsigned Modifier, llvm::Type *ArgTy, const CallExpr *E)
 
llvm::ValueEmitNeonCall (llvm::Function *F, SmallVectorImpl< llvm::Value *> &O, const char *name, unsigned shift=0, bool rightshift=false)
 
llvm::ValueEmitNeonSplat (llvm::Value *V, llvm::Constant *Idx)
 
llvm::ValueEmitNeonShiftVector (llvm::Value *V, llvm::Type *Ty, bool negateForRightShift)
 
llvm::ValueEmitNeonRShiftImm (llvm::Value *Vec, llvm::Value *Amt, llvm::Type *Ty, bool usgn, const char *name)
 
llvm::ValuevectorWrapScalar16 (llvm::Value *Op)
 
llvm::ValueEmitAArch64BuiltinExpr (unsigned BuiltinID, const CallExpr *E, llvm::Triple::ArchType Arch)
 
llvm::ValueBuildVector (ArrayRef< llvm::Value *> Ops)
 
llvm::ValueEmitX86BuiltinExpr (unsigned BuiltinID, const CallExpr *E)
 
llvm::ValueEmitPPCBuiltinExpr (unsigned BuiltinID, const CallExpr *E)
 
llvm::ValueEmitAMDGPUBuiltinExpr (unsigned BuiltinID, const CallExpr *E)
 
llvm::ValueEmitSystemZBuiltinExpr (unsigned BuiltinID, const CallExpr *E)
 
llvm::ValueEmitNVPTXBuiltinExpr (unsigned BuiltinID, const CallExpr *E)
 
llvm::ValueEmitWebAssemblyBuiltinExpr (unsigned BuiltinID, const CallExpr *E)
 
llvm::ValueEmitHexagonBuiltinExpr (unsigned BuiltinID, const CallExpr *E)
 
llvm::ValueEmitMSVCBuiltinExpr (MSVCIntrin BuiltinID, const CallExpr *E)
 
llvm::ValueEmitBuiltinAvailable (ArrayRef< llvm::Value *> Args)
 
llvm::ValueEmitObjCProtocolExpr (const ObjCProtocolExpr *E)
 
llvm::ValueEmitObjCStringLiteral (const ObjCStringLiteral *E)
 Emits an instance of NSConstantString representing the object. More...
 
llvm::ValueEmitObjCBoxedExpr (const ObjCBoxedExpr *E)
 EmitObjCBoxedExpr - This routine generates code to call the appropriate expression boxing method. More...
 
llvm::ValueEmitObjCArrayLiteral (const ObjCArrayLiteral *E)
 
llvm::ValueEmitObjCDictionaryLiteral (const ObjCDictionaryLiteral *E)
 
llvm::ValueEmitObjCCollectionLiteral (const Expr *E, const ObjCMethodDecl *MethodWithObjects)
 
llvm::ValueEmitObjCSelectorExpr (const ObjCSelectorExpr *E)
 Emit a selector. More...
 
RValue EmitObjCMessageExpr (const ObjCMessageExpr *E, ReturnValueSlot Return=ReturnValueSlot())
 
CleanupKind getARCCleanupKind ()
 Retrieves the default cleanup kind for an ARC cleanup. More...
 
void EmitARCInitWeak (Address addr, llvm::Value *value)
 i8* @objc_initWeak(i8** addr, i8* value) Returns value. More...
 
void EmitARCDestroyWeak (Address addr)
 void @objc_destroyWeak(i8** addr) Essentially objc_storeWeak(addr, nil). More...
 
llvm::ValueEmitARCLoadWeak (Address addr)
 i8* @objc_loadWeak(i8** addr) Essentially objc_autorelease(objc_loadWeakRetained(addr)). More...
 
llvm::ValueEmitARCLoadWeakRetained (Address addr)
 i8* @objc_loadWeakRetained(i8** addr) More...
 
llvm::ValueEmitARCStoreWeak (Address addr, llvm::Value *value, bool ignored)
 i8* @objc_storeWeak(i8** addr, i8* value) Returns value. More...
 
void EmitARCCopyWeak (Address dst, Address src)
 void @objc_copyWeak(i8** dest, i8** src) Disregards the current value in dest. More...
 
void EmitARCMoveWeak (Address dst, Address src)
 void @objc_moveWeak(i8** dest, i8** src) Disregards the current value in dest. More...
 
llvm::ValueEmitARCRetainAutorelease (QualType type, llvm::Value *value)
 Do a fused retain/autorelease of the given object. More...
 
llvm::ValueEmitARCRetainAutoreleaseNonBlock (llvm::Value *value)
 Do a fused retain/autorelease of the given object. More...
 
llvm::ValueEmitARCStoreStrong (LValue lvalue, llvm::Value *value, bool resultIgnored)
 Store into a strong object. More...
 
llvm::ValueEmitARCStoreStrongCall (Address addr, llvm::Value *value, bool resultIgnored)
 Store into a strong object. More...
 
llvm::ValueEmitARCRetain (QualType type, llvm::Value *value)
 Produce the code to do a retain. More...
 
llvm::ValueEmitARCRetainNonBlock (llvm::Value *value)
 Retain the given object, with normal retain semantics. More...
 
llvm::ValueEmitARCRetainBlock (llvm::Value *value, bool mandatory)
 Retain the given block, with _Block_copy semantics. More...
 
void EmitARCDestroyStrong (Address addr, ARCPreciseLifetime_t precise)
 Destroy a __strong variable. More...
 
void EmitARCRelease (llvm::Value *value, ARCPreciseLifetime_t precise)
 Release the given object. More...
 
llvm::ValueEmitARCAutorelease (llvm::Value *value)
 Autorelease the given object. More...
 
llvm::ValueEmitARCAutoreleaseReturnValue (llvm::Value *value)
 Autorelease the given object. More...
 
llvm::ValueEmitARCRetainAutoreleaseReturnValue (llvm::Value *value)
 Do a fused retain/autorelease of the given object. More...
 
llvm::ValueEmitARCRetainAutoreleasedReturnValue (llvm::Value *value)
 Retain the given object which is the result of a function call. More...
 
llvm::ValueEmitARCUnsafeClaimAutoreleasedReturnValue (llvm::Value *value)
 Claim a possibly-autoreleased return value at +0. More...
 
std::pair< LValue, llvm::Value * > EmitARCStoreAutoreleasing (const BinaryOperator *e)
 
std::pair< LValue, llvm::Value * > EmitARCStoreStrong (const BinaryOperator *e, bool ignored)
 
std::pair< LValue, llvm::Value * > EmitARCStoreUnsafeUnretained (const BinaryOperator *e, bool ignored)
 
llvm::ValueEmitObjCThrowOperand (const Expr *expr)
 
llvm::ValueEmitObjCConsumeObject (QualType T, llvm::Value *Ptr)
 Produce the code for a CK_ARCConsumeObject. More...
 
llvm::ValueEmitObjCExtendObjectLifetime (QualType T, llvm::Value *Ptr)
 
llvm::ValueEmitARCExtendBlockObject (const Expr *expr)
 
llvm::ValueEmitARCReclaimReturnedObject (const Expr *e, bool allowUnsafeClaim)
 
llvm::ValueEmitARCRetainScalarExpr (const Expr *expr)
 EmitARCRetainScalarExpr - Semantically equivalent to EmitARCRetainObject(e->getType(), EmitScalarExpr(e)), but making a best-effort attempt to peephole expressions that naturally produce retained objects. More...
 
llvm::ValueEmitARCRetainAutoreleaseScalarExpr (const Expr *expr)
 
llvm::ValueEmitARCUnsafeUnretainedScalarExpr (const Expr *expr)
 EmitARCUnsafeUnretainedScalarExpr - Semantically equivalent to immediately releasing the resut of EmitARCRetainScalarExpr, but avoiding any spurious retains, including by performing reclaims with objc_unsafeClaimAutoreleasedReturnValue. More...
 
void EmitARCIntrinsicUse (ArrayRef< llvm::Value *> values)
 Given a number of pointers, inform the optimizer that they're being intrinsically used up until this point in the program. More...
 
void EmitObjCAutoreleasePoolPop (llvm::Value *Ptr)
 Produce the code to do a primitive release. More...
 
llvm::ValueEmitObjCAutoreleasePoolPush ()
 Produce the code to do a objc_autoreleasepool_push. More...
 
llvm::ValueEmitObjCMRRAutoreleasePoolPush ()
 Produce the code to do an MRR version objc_autoreleasepool_push. More...
 
void EmitObjCAutoreleasePoolCleanup (llvm::Value *Ptr)
 
void EmitObjCMRRAutoreleasePoolPop (llvm::Value *Ptr)
 Produce the code to do a primitive release. More...
 
RValue EmitReferenceBindingToExpr (const Expr *E)
 Emits a reference binding to the passed in expression. More...
 
llvm::ValueEmitScalarExpr (const Expr *E, bool IgnoreResultAssign=false)
 EmitScalarExpr - Emit the computation of the specified expression of LLVM scalar type, returning the result. More...
 
llvm::ValueEmitScalarConversion (llvm::Value *Src, QualType SrcTy, QualType DstTy, SourceLocation Loc)
 Emit a conversion from the specified type to the specified destination type, both of which are LLVM scalar types. More...
 
llvm::ValueEmitComplexToScalarConversion (ComplexPairTy Src, QualType SrcTy, QualType DstTy, SourceLocation Loc)
 Emit a conversion from the specified complex type to the specified destination type, where the destination type is an LLVM scalar type. More...
 
void EmitAggExpr (const Expr *E, AggValueSlot AS)
 EmitAggExpr - Emit the computation of the specified expression of aggregate type. More...
 
LValue EmitAggExprToLValue (const Expr *E)
 EmitAggExprToLValue - Emit the computation of the specified expression of aggregate type into a temporary LValue. More...
 
void EmitExtendGCLifetime (llvm::Value *object)
 EmitExtendGCLifetime - Given a pointer to an Objective-C object, make sure it survives garbage collection until this point. More...
 
ComplexPairTy EmitComplexExpr (const Expr *E, bool IgnoreReal=false, bool IgnoreImag=false)
 EmitComplexExpr - Emit the computation of the specified expression of complex type, returning the result. More...
 
void EmitComplexExprIntoLValue (const Expr *E, LValue dest, bool isInit)
 EmitComplexExprIntoLValue - Emit the given expression of complex type and place its result into the specified l-value. More...
 
void EmitStoreOfComplex (ComplexPairTy V, LValue dest, bool isInit)
 EmitStoreOfComplex - Store a complex number into the specified l-value. More...
 
ComplexPairTy EmitLoadOfComplex (LValue src, SourceLocation loc)
 EmitLoadOfComplex - Load a complex number from the specified l-value. More...
 
Address emitAddrOfRealComponent (Address complex, QualType complexType)
 
Address emitAddrOfImagComponent (Address complex, QualType complexType)
 
llvm::GlobalVariable * AddInitializerToStaticVarDecl (const VarDecl &D, llvm::GlobalVariable *GV)
 AddInitializerToStaticVarDecl - Add the initializer for 'D' to the global variable that has already been created for it. More...
 
void EmitCXXGlobalVarDeclInit (const VarDecl &D, llvm::Constant *DeclPtr, bool PerformInit)
 EmitCXXGlobalVarDeclInit - Create the initializer for a C++ variable with global storage. More...
 
llvm::Constant * createAtExitStub (const VarDecl &VD, llvm::Constant *Dtor, llvm::Constant *Addr)
 Create a stub function, suitable for being passed to atexit, which passes the given address to the given destructor function. More...
 
void registerGlobalDtorWithAtExit (const VarDecl &D, llvm::Constant *fn, llvm::Constant *addr)
 Call atexit() with a function that passes the given argument to the given function. More...
 
void EmitCXXGuardedInit (const VarDecl &D, llvm::GlobalVariable *DeclPtr, bool PerformInit)
 Emit code in this function to perform a guarded variable initialization. More...
 
void EmitCXXGuardedInitBranch (llvm::Value *NeedsInit, llvm::BasicBlock *InitBlock, llvm::BasicBlock *NoInitBlock, GuardKind Kind, const VarDecl *D)
 Emit a branch to select whether or not to perform guarded initialization. More...
 
void GenerateCXXGlobalInitFunc (llvm::Function *Fn, ArrayRef< llvm::Function *> CXXThreadLocals, Address Guard=Address::invalid())
 GenerateCXXGlobalInitFunc - Generates code for initializing global variables. More...
 
void GenerateCXXGlobalDtorsFunc (llvm::Function *Fn, const std::vector< std::pair< llvm::WeakTrackingVH, llvm::Constant *>> &DtorsAndObjects)
 GenerateCXXGlobalDtorsFunc - Generates code for destroying global variables. More...
 
void GenerateCXXGlobalVarDeclInitFunc (llvm::Function *Fn, const VarDecl *D, llvm::GlobalVariable *Addr, bool PerformInit)
 Emit the code necessary to initialize the given global variable. More...
 
void EmitCXXConstructExpr (const CXXConstructExpr *E, AggValueSlot Dest)
 
void EmitSynthesizedCXXCopyCtor (Address Dest, Address Src, const Expr *Exp)
 
void enterFullExpression (const ExprWithCleanups *E)
 
void enterNonTrivialFullExpression (const ExprWithCleanups *E)
 Enter a full-expression with a non-trivial number of objects to clean up. More...
 
void EmitCXXThrowExpr (const CXXThrowExpr *E, bool KeepInsertionPoint=true)
 
void EmitLambdaExpr (const LambdaExpr *E, AggValueSlot Dest)
 
RValue EmitAtomicExpr (AtomicExpr *E)
 
llvm::ValueEmitAnnotationCall (llvm::Value *AnnotationFn, llvm::Value *AnnotatedVal, StringRef AnnotationStr, SourceLocation Location)
 Emit an annotation call (intrinsic or builtin). More...
 
void EmitVarAnnotations (const VarDecl *D, llvm::Value *V)
 Emit local annotations for the local variable V, declared by D. More...
 
Address EmitFieldAnnotations (const FieldDecl *D, Address V)
 Emit field annotations for the given field & value. More...
 
bool ConstantFoldsToSimpleInteger (const Expr *Cond, bool &Result, bool AllowLabels=false)
 ConstantFoldsToSimpleInteger - If the specified expression does not fold to a constant, or if it does but contains a label, return false. More...
 
bool ConstantFoldsToSimpleInteger (const Expr *Cond, llvm::APSInt &Result, bool AllowLabels=false)
 ConstantFoldsToSimpleInteger - If the specified expression does not fold to a constant, or if it does but contains a label, return false. More...
 
void EmitBranchOnBoolExpr (const Expr *Cond, llvm::BasicBlock *TrueBlock, llvm::BasicBlock *FalseBlock, uint64_t TrueCount)
 EmitBranchOnBoolExpr - Emit a branch on a boolean condition (e.g. More...
 
void EmitNullabilityCheck (LValue LHS, llvm::Value *RHS, SourceLocation Loc)
 Given an assignment *LHS = RHS, emit a test that checks if RHS is nonnull, if LHS is marked _Nonnull. More...
 
llvm::ValueEmitCheckedInBoundsGEP (llvm::Value *Ptr, ArrayRef< llvm::Value *> IdxList, bool SignedIndices, bool IsSubtraction, SourceLocation Loc, const Twine &Name="")
 Same as IRBuilder::CreateInBoundsGEP, but additionally emits a check to detect undefined behavior when the pointer overflow sanitizer is enabled. More...
 
llvm::ValueEmitCheckedArgForBuiltin (const Expr *E, BuiltinCheckKind Kind)
 Emits an argument for a call to a builtin. More...
 
llvm::Constant * EmitCheckTypeDescriptor (QualType T)
 Emit a description of a type in a format suitable for passing to a runtime sanitizer handler. More...
 
llvm::ValueEmitCheckValue (llvm::Value *V)
 Convert a value into a format suitable for passing to a runtime sanitizer handler. More...
 
llvm::Constant * EmitCheckSourceLocation (SourceLocation Loc)
 Emit a description of a source location in a format suitable for passing to a runtime sanitizer handler. More...
 
void EmitCheck (ArrayRef< std::pair< llvm::Value *, SanitizerMask >> Checked, SanitizerHandler Check, ArrayRef< llvm::Constant *> StaticArgs, ArrayRef< llvm::Value *> DynamicArgs)
 Create a basic block that will call a handler function in a sanitizer runtime with the provided arguments, and create a conditional branch to it. More...
 
void EmitCfiSlowPathCheck (SanitizerMask Kind, llvm::Value *Cond, llvm::ConstantInt *TypeId, llvm::Value *Ptr, ArrayRef< llvm::Constant *> StaticArgs)
 Emit a slow path cross-DSO CFI check which calls __cfi_slowpath if Cond if false. More...
 
void EmitUnreachable (SourceLocation Loc)
 Emit a reached-unreachable diagnostic if Loc is valid and runtime checking is enabled. More...
 
void EmitTrapCheck (llvm::Value *Checked)
 Create a basic block that will call the trap intrinsic, and emit a conditional branch to it, for the -ftrapv checks. More...
 
llvm::CallInst * EmitTrapCall (llvm::Intrinsic::ID IntrID)
 Emit a call to trap or debugtrap and attach function attribute "trap-func-name" if specified. More...
 
void EmitCfiCheckStub ()
 Emit a stub for the cross-DSO CFI check function. More...
 
void EmitCfiCheckFail ()
 Emit a cross-DSO CFI failure handling function. More...
 
void EmitNonNullArgCheck (RValue RV, QualType ArgType, SourceLocation ArgLoc, AbstractCallee AC, unsigned ParmNum)
 Create a check for a function parameter that may potentially be declared as non-null. More...
 
void EmitCallArg (CallArgList &args, const Expr *E, QualType ArgType)
 EmitCallArg - Emit a single call argument. More...
 
void EmitDelegateCallArg (CallArgList &args, const VarDecl *param, SourceLocation loc)
 EmitDelegateCallArg - We are performing a delegate call; that is, the current function is delegating to another one. More...
 
void SetFPAccuracy (llvm::Value *Val, float Accuracy)
 SetFPAccuracy - Set the minimum required accuracy of the given floating point operation, expressed as the maximum relative error in ulp. More...
 
template<typename T >
void EmitCallArgs (CallArgList &Args, const T *CallArgTypeInfo, llvm::iterator_range< CallExpr::const_arg_iterator > ArgRange, AbstractCallee AC=AbstractCallee(), unsigned ParamsToSkip=0, EvaluationOrder Order=EvaluationOrder::Default)
 EmitCallArgs - Emit call arguments for a function. More...
 
void EmitCallArgs (CallArgList &Args, ArrayRef< QualType > ArgTypes, llvm::iterator_range< CallExpr::const_arg_iterator > ArgRange, AbstractCallee AC=AbstractCallee(), unsigned ParamsToSkip=0, EvaluationOrder Order=EvaluationOrder::Default)
 
Address EmitPointerWithAlignment (const Expr *Addr, LValueBaseInfo *BaseInfo=nullptr, TBAAAccessInfo *TBAAInfo=nullptr)
 EmitPointerWithAlignment - Given an expression with a pointer type, emit the value and compute our best estimate of the alignment of the pointee. More...
 
llvm::ValueLoadPassedObjectSize (const Expr *E, QualType EltTy)
 If E references a parameter with pass_object_size info or a constant array size modifier, emit the object size divided by the size of EltTy. More...
 
void EmitSanitizerStatReport (llvm::SanitizerStatKind SSK)
 
- Public Member Functions inherited from clang::CodeGen::CodeGenTypeCache
CharUnits getIntSize () const
 
CharUnits getIntAlign () const
 
CharUnits getSizeSize () const
 
CharUnits getSizeAlign () const
 
CharUnits getPointerSize () const
 
CharUnits getPointerAlign () const
 
llvm::CallingConv::ID getRuntimeCC () const
 
llvm::CallingConv::ID getBuiltinCC () const
 
LangAS getASTAllocaAddressSpace () const
 

Static Public Member Functions

static void destroyBlockInfos (CGBlockInfo *info)
 Destroy a chain of block layouts. More...
 
static bool IsConstructorDelegationValid (const CXXConstructorDecl *Ctor)
 Checks whether the given constructor is a valid subject for the complete-to-base constructor delegation optimization, i.e. More...
 
static TypeEvaluationKind getEvaluationKind (QualType T)
 getEvaluationKind - Return the TypeEvaluationKind of QualType T. More...
 
static bool hasScalarEvaluationKind (QualType T)
 
static bool hasAggregateEvaluationKind (QualType T)
 
static unsigned getAccessedFieldNo (unsigned Idx, const llvm::Constant *Elts)
 getAccessedFieldNo - Given an encoded value and a result number, return the input field number being accessed. More...
 
static bool IsWrappedCXXThis (const Expr *E)
 Check if E is a C++ "this" pointer wrapped in value-preserving casts. More...
 
static bool ShouldNullCheckClassCastValue (const CastExpr *Cast)
 
static bool isNullPointerAllowed (TypeCheckKind TCK)
 Determine whether the pointer type check TCK permits null pointers. More...
 
static bool isVptrCheckRequired (TypeCheckKind TCK, QualType Ty)
 Determine whether the pointer type check TCK requires a vptr check. More...
 
static void EmitOMPTargetDeviceFunction (CodeGenModule &CGM, StringRef ParentName, const OMPTargetDirective &S)
 Emit device code for the target directive. More...
 
static void EmitOMPTargetParallelDeviceFunction (CodeGenModule &CGM, StringRef ParentName, const OMPTargetParallelDirective &S)
 
static void EmitOMPTargetParallelForDeviceFunction (CodeGenModule &CGM, StringRef ParentName, const OMPTargetParallelForDirective &S)
 Emit device code for the target parallel for directive. More...
 
static void EmitOMPTargetParallelForSimdDeviceFunction (CodeGenModule &CGM, StringRef ParentName, const OMPTargetParallelForSimdDirective &S)
 Emit device code for the target parallel for simd directive. More...
 
static void EmitOMPTargetTeamsDeviceFunction (CodeGenModule &CGM, StringRef ParentName, const OMPTargetTeamsDirective &S)
 Emit device code for the target teams directive. More...
 
static void EmitOMPTargetTeamsDistributeDeviceFunction (CodeGenModule &CGM, StringRef ParentName, const OMPTargetTeamsDistributeDirective &S)
 Emit device code for the target teams distribute directive. More...
 
static void EmitOMPTargetTeamsDistributeSimdDeviceFunction (CodeGenModule &CGM, StringRef ParentName, const OMPTargetTeamsDistributeSimdDirective &S)
 Emit device code for the target teams distribute simd directive. More...
 
static void EmitOMPTargetSimdDeviceFunction (CodeGenModule &CGM, StringRef ParentName, const OMPTargetSimdDirective &S)
 Emit device code for the target simd directive. More...
 
static bool ContainsLabel (const Stmt *S, bool IgnoreCaseStmts=false)
 ContainsLabel - Return true if the statement contains a label in it. More...
 
static bool containsBreak (const Stmt *S)
 containsBreak - Return true if the statement contains a break out of it. More...
 
static bool mightAddDeclToScope (const Stmt *S)
 Determine if the given statement might introduce a declaration into the current scope, by being a (possibly-labelled) DeclStmt. More...
 
static bool isObjCMethodWithTypeParams (const ObjCMethodDecl *method)
 
template<typename T >
static bool isObjCMethodWithTypeParams (const T *)
 

Public Attributes

CodeGenModuleCGM
 
const TargetInfoTarget
 
LoopInfoStack LoopStack
 
CGBuilderTy Builder
 
VarBypassDetector Bypasses
 
const DeclCurFuncDecl
 CurFuncDecl - Holds the Decl for the current outermost non-closure context. More...
 
const DeclCurCodeDecl
 CurCodeDecl - This is the inner-most code context, which includes blocks. More...
 
const CGFunctionInfoCurFnInfo
 
QualType FnRetTy
 
llvm::Function * CurFn
 
CGCoroInfo CurCoro
 
GlobalDecl CurGD
 CurGD - The GlobalDecl for the current function being compiled. More...
 
EHScopeStack::stable_iterator PrologueCleanupDepth
 PrologueCleanupDepth - The cleanup depth enclosing all the cleanups associated with the parameters. More...
 
JumpDest ReturnBlock
 ReturnBlock - Unified return block. More...
 
Address ReturnValue
 ReturnValue - The temporary alloca to hold the return value. More...
 
llvm::AssertingVH< llvm::Instruction > AllocaInsertPt
 AllocaInsertPoint - This is an instruction in the entry block before which we prefer to insert allocas. More...
 
CGCapturedStmtInfoCapturedStmtInfo
 
SanitizerSet SanOpts
 Sanitizers enabled for this function. More...
 
bool IsSanitizerScope
 True if CodeGen currently emits code implementing sanitizer checks. More...
 
bool CurFuncIsThunk
 In C++, whether we are code generating a thunk. More...
 
bool AutoreleaseResult
 In ARC, whether we should autorelease the return value. More...
 
bool SawAsmBlock
 Whether we processed a Microsoft-style asm block during CodeGen. More...
 
const FunctionDeclCurSEHParent = nullptr
 
bool IsOutlinedSEHHelper
 True if the current function is an outlined SEH helper. More...
 
const CodeGen::CGBlockInfoBlockInfo
 
llvm::ValueBlockPointer
 
llvm::DenseMap< const VarDecl *, FieldDecl * > LambdaCaptureFields
 
FieldDeclLambdaThisCaptureField
 
llvm::DenseMap< const VarDecl *, llvm::Value * > NRVOFlags
 A mapping from NRVO variables to the flags used to indicate when the NRVO has been applied to this variable. More...
 
EHScopeStack EHStack
 
llvm::SmallVector< char, 256 > LifetimeExtendedCleanupStack
 
llvm::SmallVector< const JumpDest *, 2 > SEHTryEpilogueStack
 
llvm::Instruction * CurrentFuncletPad = nullptr
 
llvm::AllocaInst * NormalCleanupDest
 i32s containing the indexes of the cleanup destinations. More...
 
unsigned NextCleanupDestIndex
 
CGBlockInfoFirstBlockInfo
 FirstBlockInfo - The head of a singly-linked-list of block layouts. More...
 
llvm::BasicBlock * EHResumeBlock
 EHResumeBlock - Unified block containing a call to llvm.eh.resume. More...
 
llvm::ValueExceptionSlot
 The exception slot. More...
 
llvm::AllocaInst * EHSelectorSlot
 The selector slot. More...
 
SmallVector< Address, 1 > SEHCodeSlotStack
 A stack of exception code slots. More...
 
llvm::ValueSEHInfo = nullptr
 Value returned by __exception_info intrinsic. More...
 
SmallVector< llvm::Value *, 8 > ObjCEHValueStack
 ObjCEHValueStack - Stack of Objective-C exception values, used for rethrows. More...
 
- Public Attributes inherited from clang::CodeGen::CodeGenTypeCache
llvm::TypeVoidTy
 void More...
 
llvm::IntegerType * Int8Ty
 i8, i16, i32, and i64 More...
 
llvm::IntegerType * Int16Ty
 
llvm::IntegerType * Int32Ty
 
llvm::IntegerType * Int64Ty
 
llvm::TypeHalfTy
 float, double More...
 
llvm::TypeFloatTy
 
llvm::TypeDoubleTy
 
llvm::IntegerType * IntTy
 int More...
 
union {
   llvm::IntegerType *   IntPtrTy
 
   llvm::IntegerType *   SizeTy
 
   llvm::IntegerType *   PtrDiffTy
 
}; 
 intptr_t, size_t, and ptrdiff_t, which we assume are the same size. More...
 
union {
   llvm::PointerType *   VoidPtrTy
 
   llvm::PointerType *   Int8PtrTy
 
}; 
 void* in address space 0 More...
 
union {
   llvm::PointerType *   VoidPtrPtrTy
 
   llvm::PointerType *   Int8PtrPtrTy
 
}; 
 void** in address space 0 More...
 
union {
   llvm::PointerType *   AllocaVoidPtrTy
 
   llvm::PointerType *   AllocaInt8PtrTy
 
}; 
 void* in alloca address space More...
 
union {
   unsigned char   IntSizeInBytes
 
   unsigned char   IntAlignInBytes
 
}; 
 The size and alignment of the builtin C type 'int'. More...
 
unsigned char PointerWidthInBits
 The width of a pointer into the generic address space. More...
 
union {
   unsigned char   PointerAlignInBytes
 
   unsigned char   PointerSizeInBytes
 
}; 
 The size and alignment of a pointer into the generic address space. More...
 
union {
   unsigned char   SizeSizeInBytes
 
   unsigned char   SizeAlignInBytes
 
}; 
 The size and alignment of size_t. More...
 
LangAS ASTAllocaAddressSpace
 
llvm::CallingConv::ID RuntimeCC
 
llvm::CallingConv::ID BuiltinCC
 

Static Public Attributes

static Destroyer destroyCXXObject
 
static Destroyer destroyARCStrongImprecise
 
static Destroyer destroyARCStrongPrecise
 
static Destroyer destroyARCWeak
 
static Destroyer emitARCIntrinsicUse
 

Friends

class CGCXXABI
 

Detailed Description

CodeGenFunction - This class organizes the per-function state that is used while generating LLVM code.

Definition at line 143 of file CodeGenFunction.h.

Member Typedef Documentation

◆ CodeGenDispatchBoundsTy

Definition at line 202 of file CodeGenFunction.h.

◆ CodeGenLoopBoundsTy

Definition at line 196 of file CodeGenFunction.h.

◆ CodeGenLoopTy

Definition at line 188 of file CodeGenFunction.h.

◆ CodeGenOrderedTy

typedef llvm::function_ref<void(CodeGenFunction &, SourceLocation, const unsigned, const bool)> clang::CodeGen::CodeGenFunction::CodeGenOrderedTy

Definition at line 191 of file CodeGenFunction.h.

◆ ComplexPairTy

Definition at line 177 of file CodeGenFunction.h.

◆ DeclMapTy

typedef llvm::DenseMap<const Decl *, Address> clang::CodeGen::CodeGenFunction::DeclMapTy

Definition at line 694 of file CodeGenFunction.h.

◆ Destroyer

typedef void clang::CodeGen::CodeGenFunction::Destroyer(CodeGenFunction &CGF, Address addr, QualType ty)

Definition at line 1492 of file CodeGenFunction.h.

◆ SpecialInitFn

typedef void clang::CodeGen::CodeGenFunction::SpecialInitFn(CodeGenFunction &Init, const VarDecl &D, llvm::Value *Address)

Definition at line 2442 of file CodeGenFunction.h.

◆ TaskGenTy

typedef const llvm::function_ref<void(CodeGenFunction & , llvm::Value * , const OMPTaskDataTy & )> clang::CodeGen::CodeGenFunction::TaskGenTy

Definition at line 2833 of file CodeGenFunction.h.

◆ VisitedVirtualBasesSetTy

Definition at line 1708 of file CodeGenFunction.h.

◆ VPtrsVector

Definition at line 1706 of file CodeGenFunction.h.

Member Enumeration Documentation

◆ anonymous enum

anonymous enum

An enumeration which makes it easier to specify whether or not an operation is a subtraction.

Enumerator
NotSubtraction 
IsSubtraction 

Definition at line 3735 of file CodeGenFunction.h.

◆ BuiltinCheckKind

Specifies which type of sanitizer check to apply when handling a particular builtin.

Enumerator
BCK_CTZPassedZero 
BCK_CLZPassedZero 

Definition at line 3751 of file CodeGenFunction.h.

◆ CFITypeCheckKind

Enumerator
CFITCK_VCall 
CFITCK_NVCall 
CFITCK_DerivedCast 
CFITCK_UnrelatedCast 
CFITCK_ICall 

Definition at line 1724 of file CodeGenFunction.h.

◆ EvaluationOrder

Enumerator
Default 

! No language constraints on evaluation order.

ForceLeftToRight 

! Language semantics require left-to-right evaluation.

ForceRightToLeft 

! Language semantics require right-to-left evaluation.

Definition at line 3895 of file CodeGenFunction.h.

◆ GuardKind

Enumerator
VariableGuard 
TlsGuard 

Definition at line 3632 of file CodeGenFunction.h.

◆ TypeCheckKind

Situations in which we might emit a check for the suitability of a pointer or glvalue.

Enumerator
TCK_Load 

Checking the operand of a load. Must be suitably sized and aligned.

TCK_Store 

Checking the destination of a store. Must be suitably sized and aligned.

TCK_ReferenceBinding 

Checking the bound value in a reference binding.

Must be suitably sized and aligned, but is not required to refer to an object (until the reference is used), per core issue 453.

TCK_MemberAccess 

Checking the object expression in a non-static data member access.

Must be an object within its lifetime.

TCK_MemberCall 

Checking the 'this' pointer for a call to a non-static member function.

Must be an object within its lifetime.

TCK_ConstructorCall 

Checking the 'this' pointer for a constructor call.

TCK_DowncastPointer 

Checking the operand of a static_cast to a derived pointer type.

Must be null or an object within its lifetime.

TCK_DowncastReference 

Checking the operand of a static_cast to a derived reference type.

Must be an object within its lifetime.

TCK_Upcast 

Checking the operand of a cast to a base object.

Must be suitably sized and aligned.

TCK_UpcastToVirtualBase 

Checking the operand of a cast to a virtual base object.

Must be an object within its lifetime.

TCK_NonnullAssign 

Checking the value assigned to a _Nonnull pointer. Must not be null.

TCK_DynamicOperation 

Checking the operand of a dynamic_cast or a typeid expression.

Must be null or an object within its lifetime.

Definition at line 2352 of file CodeGenFunction.h.

Constructor & Destructor Documentation

◆ CodeGenFunction()

CodeGenFunction::CodeGenFunction ( CodeGenModule cgm,
bool  suppressNewContext = false 
)

Definition at line 64 of file CodeGenFunction.cpp.

◆ ~CodeGenFunction()

CodeGenFunction::~CodeGenFunction ( )

Member Function Documentation

◆ ActivateCleanupBlock()

void CodeGenFunction::ActivateCleanupBlock ( EHScopeStack::stable_iterator  Cleanup,
llvm::Instruction *  DominatingIP 
)

ActivateCleanupBlock - Activates an initially-inactive cleanup.

Activate a cleanup that was created in an inactivated state.

Cannot be used to resurrect a deactivated cleanup.

Parameters
DominatingIP- An instruction which is known to dominate the current IP (if set) and which lies along all paths of execution between the current IP and the the point at which the cleanup comes into scope.

Definition at line 1218 of file CGCleanup.cpp.

References ForActivation, and SetupCleanupBlockActivation().

◆ AddInitializerToStaticVarDecl()

llvm::GlobalVariable * CodeGenFunction::AddInitializerToStaticVarDecl ( const VarDecl D,
llvm::GlobalVariable *  GV 
)

AddInitializerToStaticVarDecl - Add the initializer for 'D' to the global variable that has already been created for it.

If the initializer has a different type than GV does, this may free GV and return a different one. Otherwise it just returns GV.

Definition at line 313 of file CGDecl.cpp.

References CGM, clang::frontend::CPlusPlus, EmitCXXGuardedInit(), clang::CodeGen::CodeGenModule::ErrorUnsupported(), clang::CodeGen::ConstantEmitter::finalize(), clang::CodeGen::CodeGenModule::getContext(), clang::VarDecl::getInit(), getLangOpts(), clang::CodeGen::CodeGenModule::getModule(), clang::ASTContext::getTargetAddressSpace(), clang::ValueDecl::getType(), hasNontrivialDestruction(), HaveInsertPoint(), clang::CodeGen::CodeGenModule::isTypeConstant(), and clang::CodeGen::ConstantEmitter::tryEmitForInitializer().

Referenced by EmitStaticVarDecl().

◆ AlwaysEmitXRayCustomEvents()

bool CodeGenFunction::AlwaysEmitXRayCustomEvents ( ) const

AlwaysEmitXRayCustomEvents - Return true if we must unconditionally emit XRay custom event handling calls.

AlwaysEmitXRayCustomEvents - Return true if we should emit IR for calls to the __xray_customevent(...) builin calls, when doing XRay instrumentation.

Definition at line 469 of file CodeGenFunction.cpp.

References CGM, and clang::CodeGen::CodeGenModule::getCodeGenOpts().

◆ BuildAppleKextVirtualCall()

CGCallee CodeGenFunction::BuildAppleKextVirtualCall ( const CXXMethodDecl MD,
NestedNameSpecifier Qual,
llvm::Type Ty 
)

BuildAppleKextVirtualCall - This routine is to support gcc's kext ABI making indirect call to virtual functions.

It makes the call through indexing into the vtable.

Definition at line 290 of file CGCXX.cpp.

References BuildAppleKextVirtualCall(), clang::Dtor_Complete, clang::Type::getAs(), clang::NestedNameSpecifier::getAsType(), clang::RecordType::getDecl(), clang::NestedNameSpecifier::getKind(), clang::T, and clang::NestedNameSpecifier::TypeSpec.

◆ BuildAppleKextVirtualDestructorCall()

CGCallee CodeGenFunction::BuildAppleKextVirtualDestructorCall ( const CXXDestructorDecl DD,
CXXDtorType  Type,
const CXXRecordDecl RD 
)

BuildVirtualCall - This routine makes indirect vtable call for call to virtual destructors.

It returns 0 if it could not do it.

Definition at line 311 of file CGCXX.cpp.

References BuildAppleKextVirtualCall(), clang::CodeGen::Complete, clang::Dtor_Base, clang::CXXMethodDecl::isVirtual(), and clang::CodeGen::Type.

◆ BuildBlockRelease()

void CodeGenFunction::BuildBlockRelease ( llvm::Value DeclPtr,
BlockFieldFlags  flags 
)

◆ BuildFunctionArgList()

QualType CodeGenFunction::BuildFunctionArgList ( GlobalDecl  GD,
FunctionArgList Args 
)

◆ BuildVector()

llvm::Value * CodeGenFunction::BuildVector ( ArrayRef< llvm::Value *>  Ops)

Definition at line 7664 of file CGBuiltin.cpp.

◆ checkTargetFeatures()

void CodeGenFunction::checkTargetFeatures ( const CallExpr E,
const FunctionDecl TargetDecl 
)

Definition at line 2248 of file CodeGenFunction.cpp.

◆ ConstantFoldsToSimpleInteger() [1/2]

bool CodeGenFunction::ConstantFoldsToSimpleInteger ( const Expr Cond,
bool ResultBool,
bool  AllowLabels = false 
)

ConstantFoldsToSimpleInteger - If the specified expression does not fold to a constant, or if it does but contains a label, return false.

If it constant folds return true and set the boolean result in Result.

Definition at line 1440 of file CodeGenFunction.cpp.

Referenced by EmitBranchOnBoolExpr(), emitCommonOMPTargetDirective(), EmitConditionalOperatorLValue(), clang::CodeGen::CGOpenMPRuntime::emitOMPIfClause(), GetIntrinsic(), and isCheapEnoughToEvaluateUnconditionally().

◆ ConstantFoldsToSimpleInteger() [2/2]

bool CodeGenFunction::ConstantFoldsToSimpleInteger ( const Expr Cond,
llvm::APSInt &  ResultInt,
bool  AllowLabels = false 
)

ConstantFoldsToSimpleInteger - If the specified expression does not fold to a constant, or if it does but contains a label, return false.

If it constant folds return true and set the folded value.

Definition at line 1454 of file CodeGenFunction.cpp.

References ContainsLabel(), clang::Expr::EvaluateAsInt(), and getContext().

◆ containsBreak()

bool CodeGenFunction::containsBreak ( const Stmt S)
static

containsBreak - Return true if the statement contains a break out of it.

If the statement (recursively) contains a switch or loop with a break inside of it, this is fine.

Definition at line 1393 of file CodeGenFunction.cpp.

◆ ContainsLabel()

bool CodeGenFunction::ContainsLabel ( const Stmt S,
bool  IgnoreCaseStmts = false 
)
static

ContainsLabel - Return true if the statement contains a label in it.

If this statement is not executed normally, it not containing a label means that we can just remove the code.

Definition at line 1361 of file CodeGenFunction.cpp.

Referenced by ConstantFoldsToSimpleInteger(), EmitAutoVarInit(), EmitConditionalOperatorLValue(), GetIntrinsic(), and isCheapEnoughToEvaluateUnconditionally().

◆ convertTempToRValue()

RValue CodeGenFunction::convertTempToRValue ( Address  addr,
QualType  type,
SourceLocation  loc 
)

◆ ConvertType() [1/2]

llvm::Type * CodeGenFunction::ConvertType ( QualType  T)

◆ ConvertType() [2/2]

llvm::Type* clang::CodeGen::CodeGenFunction::ConvertType ( const TypeDecl T)
inline

Definition at line 1826 of file CodeGenFunction.h.

◆ ConvertTypeForMem()

llvm::Type * CodeGenFunction::ConvertTypeForMem ( QualType  T)

◆ CreateAggTemp()

AggValueSlot clang::CodeGen::CodeGenFunction::CreateAggTemp ( QualType  T,
const Twine &  Name = "tmp" 
)
inline

CreateAggTemp - Create a temporary memory object for the given aggregate type.

Definition at line 2038 of file CodeGenFunction.h.

◆ createAtExitStub()

llvm::Constant * CodeGenFunction::createAtExitStub ( const VarDecl VD,
llvm::Constant *  dtor,
llvm::Constant *  addr 
)

◆ createBasicBlock()

llvm::BasicBlock* clang::CodeGen::CodeGenFunction::createBasicBlock ( const Twine &  name = "",
llvm::Function *  parent = nullptr,
llvm::BasicBlock *  before = nullptr 
)
inline

◆ CreateDefaultAlignTempAlloca()

Address CodeGenFunction::CreateDefaultAlignTempAlloca ( llvm::Type Ty,
const Twine &  Name = "tmp" 
)

CreateDefaultAlignedTempAlloca - This creates an alloca with the default ABI alignment of the given LLVM type.

CreateDefaultAlignTempAlloca - This creates an alloca with the default alignment of the corresponding LLVM type, which is not guaranteed to be related in any way to the expected alignment of an AST type that might have been lowered to Ty.

IMPORTANT NOTE: This is not generally the right alignment for any given AST type that happens to have been lowered to the given IR type. This should only ever be used for function-local, IR-driven manipulations like saving and restoring a value. Do not hand this address off to arbitrary IRGen routines, and especially do not pass it as an argument to a function that might expect a properly ABI-aligned value.

Definition at line 107 of file CGExpr.cpp.

Referenced by EmitCheckValue(), and StartFunction().

◆ CreateIRTemp()

Address CodeGenFunction::CreateIRTemp ( QualType  T,
const Twine &  Name = "tmp" 
)

CreateIRTemp - Create a temporary IR object of the given type, with appropriate alignment.

This routine should only be used when an temporary value needs to be stored into an alloca (for example, to avoid explicit PHI construction), but the type is the IR type, not the type appropriate for storing in memory.

That is, this is exactly equivalent to CreateMemTemp, but calling ConvertType instead of ConvertTypeForMem.

Definition at line 122 of file CGExpr.cpp.

Referenced by StartFunction().

◆ CreateMemTemp() [1/2]

Address CodeGenFunction::CreateMemTemp ( QualType  T,
const Twine &  Name = "tmp",
bool  CastToDefaultAddrSpace = true 
)

◆ CreateMemTemp() [2/2]

Address CodeGenFunction::CreateMemTemp ( QualType  T,
CharUnits  Align,
const Twine &  Name = "tmp",
bool  CastToDefaultAddrSpace = true 
)

Definition at line 134 of file CGExpr.cpp.

◆ CreateTempAlloca() [1/2]

llvm::AllocaInst * CodeGenFunction::CreateTempAlloca ( llvm::Type Ty,
const Twine &  Name = "tmp",
llvm::Value ArraySize = nullptr 
)

CreateTempAlloca - This creates an alloca and inserts it into the entry block if ArraySize is nullptr, otherwise inserts it at the current insertion point of the builder.

The caller is responsible for setting an appropriate alignment on the alloca.

ArraySize is the number of array elements to be allocated if it is not nullptr.

LangAS::Default is the address space of pointers to local variables and temporaries, as exposed in the source language. In certain configurations, this is not the same as the alloca address space, and a cast is needed to lift the pointer from the alloca AS into LangAS::Default. This can happen when the target uses a restricted address space for the stack but the source language requires LangAS::Default to be a generic address space. The latter condition is common for most programming languages; OpenCL is an exception in that LangAS::Default is the private address space, which naturally maps to the stack.

Because the address of a temporary is often exposed to the program in various ways, this function will perform the cast by default. The cast may be avoided by passing false as CastToDefaultAddrSpace; this is more efficient if the caller knows that the address will not be exposed.

Definition at line 94 of file CGExpr.cpp.

Referenced by CreateTempAllocaForCoercion(), EmitAutoVarAlloca(), clang::CodeGen::CGOpenMPRuntimeNVPTX::emitTeamsCall(), emitWritebackArg(), clang::CodeGen::CodeGenFunction::FinallyInfo::enter(), enterBlockScope(), InitCatchParam(), isTrivialFiller(), clang::CodeGen::DominatingLLVMValue::save(), SetupCleanupBlockActivation(), and SymbolNameForMethod().

◆ CreateTempAlloca() [2/2]

Address CodeGenFunction::CreateTempAlloca ( llvm::Type Ty,
CharUnits  Align,
const Twine &  Name = "tmp",
llvm::Value ArraySize = nullptr,
bool  CastToDefaultAddrSpace = true 
)

CreateTempAlloca - This creates a alloca and inserts it into the entry block.

Definition at line 64 of file CGExpr.cpp.

◆ currentFunctionUsesSEHTry()

bool clang::CodeGen::CodeGenFunction::currentFunctionUsesSEHTry ( ) const
inline

Definition at line 1480 of file CodeGenFunction.h.

◆ DeactivateCleanupBlock()

void CodeGenFunction::DeactivateCleanupBlock ( EHScopeStack::stable_iterator  Cleanup,
llvm::Instruction *  DominatingIP 
)

DeactivateCleanupBlock - Deactivates the given cleanup block.

Deactive a cleanup that was created in an active state.

The block cannot be reactivated. Pops it if it's the top of the stack.

Parameters
DominatingIP- An instruction which is known to dominate the current IP (if set) and which lies along all paths of execution between the current IP and the the point at which the cleanup comes into scope.

Definition at line 1230 of file CGCleanup.cpp.

Referenced by isTrivialFiller().

◆ DecodeAddrUsedInPrologue()

llvm::Value * CodeGenFunction::DecodeAddrUsedInPrologue ( llvm::Value F,
llvm::Value EncodedAddr 
)

Decode an address used in a function prologue, encoded by EncodeAddrForUseInPrologue.

Definition at line 497 of file CodeGenFunction.cpp.

References Builder, clang::CodeGen::CGBuilderTy::CreateLoad(), clang::CodeGen::CodeGenTypeCache::getPointerAlign(), clang::CodeGen::CodeGenTypeCache::Int8PtrPtrTy, and clang::CodeGen::CodeGenTypeCache::IntPtrTy.

◆ destroyBlockInfos()

void CodeGenFunction::destroyBlockInfos ( CGBlockInfo info)
static

Destroy a chain of block layouts.

Definition at line 733 of file CGBlocks.cpp.

References clang::CodeGen::CGBlockInfo::NextBlockInfo.

Referenced by ~CodeGenFunction().

◆ disableDebugInfo()

void clang::CodeGen::CodeGenFunction::disableDebugInfo ( )
inline

◆ EmitAArch64BuiltinExpr()

Value * CodeGenFunction::EmitAArch64BuiltinExpr ( unsigned  BuiltinID,
const CallExpr E,
llvm::Triple::ArchType  Arch 
)

Definition at line 5796 of file CGBuiltin.cpp.

Referenced by EmitTargetArchBuiltinExpr().

◆ EmitAArch64CompareBuiltinExpr()

Value * CodeGenFunction::EmitAArch64CompareBuiltinExpr ( llvm::Value Op,
llvm::Type Ty,
const llvm::CmpInst::Predicate  Fp,
const llvm::CmpInst::Predicate  Ip,
const llvm::Twine &  Name = "" 
)

Definition at line 4706 of file CGBuiltin.cpp.

◆ emitAddrOfImagComponent()

Address CodeGenFunction::emitAddrOfImagComponent ( Address  complex,
QualType  complexType 
)

Definition at line 331 of file CGExprComplex.cpp.

References clang::Type::castAs().

◆ emitAddrOfRealComponent()

Address CodeGenFunction::emitAddrOfRealComponent ( Address  complex,
QualType  complexType 
)

Definition at line 325 of file CGExprComplex.cpp.

References clang::CharUnits::Zero().

◆ EmitAggExpr()

void CodeGenFunction::EmitAggExpr ( const Expr E,
AggValueSlot  Slot 
)

EmitAggExpr - Emit the computation of the specified expression of aggregate type.

The result is computed into the given slot, which may be null to indicate that the value is not needed.

The result is computed into DestPtr. Note that if DestPtr is null, the value of the aggregate expression is not needed. If VolatileDest is true, DestPtr cannot be 0.

Definition at line 1522 of file CGExprAgg.cpp.

References CheckAggExprForMemSetUse(), clang::CodeGen::AggValueSlot::getAddress(), clang::Expr::getType(), clang::CodeGen::AggValueSlot::isIgnored(), and clang::CodeGen::Address::isValid().

Referenced by EmitBaseInitializer(), EmitDeclInit(), EmitExprAsInit(), GenerateObjCAtomicGetterCopyHelperFunction(), GenerateObjCCtorDtorMethod(), InitCatchParam(), isBlockVarRef(), isTrivialFiller(), and StoreAnyExprIntoOneUnit().

◆ EmitAggExprToLValue()

LValue CodeGenFunction::EmitAggExprToLValue ( const Expr E)

EmitAggExprToLValue - Emit the computation of the specified expression of aggregate type into a temporary LValue.

Definition at line 1534 of file CGExprAgg.cpp.

References clang::CodeGen::AggValueSlot::DoesNotNeedGCBarriers, clang::CodeGen::AggValueSlot::forLValue(), clang::Expr::getType(), clang::CodeGen::AggValueSlot::IsNotAliased, and clang::CodeGen::AggValueSlot::IsNotDestructed.

Referenced by EmitConditionalOperatorLValue().

◆ EmitAggregateAssign()

void clang::CodeGen::CodeGenFunction::EmitAggregateAssign ( Address  DestPtr,
Address  SrcPtr,
QualType  EltTy 
)
inline

EmitAggregateCopy - Emit an aggregate assignment.

The difference to EmitAggregateCopy is that tail padding is not copied. This is required for correctness when assigning non-POD structures in C++.

Definition at line 2104 of file CodeGenFunction.h.

Referenced by emitPrivatesInit().

◆ EmitAggregateCopy()

void CodeGenFunction::EmitAggregateCopy ( Address  DestPtr,
Address  SrcPtr,
QualType  EltTy,
bool  isVolatile = false,
bool  isAssignment = false 
)

◆ EmitAggregateCopyCtor()

void clang::CodeGen::CodeGenFunction::EmitAggregateCopyCtor ( Address  DestPtr,
Address  SrcPtr,
QualType  DestTy,
QualType  SrcTy 
)
inline

Definition at line 2110 of file CodeGenFunction.h.

◆ EmitAlignmentAssumption() [1/2]

void clang::CodeGen::CodeGenFunction::EmitAlignmentAssumption ( llvm::Value PtrValue,
unsigned  Alignment,
llvm::Value OffsetValue = nullptr 
)
inline

◆ EmitAlignmentAssumption() [2/2]

void clang::CodeGen::CodeGenFunction::EmitAlignmentAssumption ( llvm::Value PtrValue,
llvm::Value Alignment,
llvm::Value OffsetValue = nullptr 
)
inline

◆ EmitAMDGPUBuiltinExpr()

Value * CodeGenFunction::EmitAMDGPUBuiltinExpr ( unsigned  BuiltinID,
const CallExpr E 
)

Definition at line 9270 of file CGBuiltin.cpp.

References clang::CallExpr::getArg(), and X.

Referenced by EmitTargetArchBuiltinExpr().

◆ EmitAnnotationCall()

llvm::Value * CodeGenFunction::EmitAnnotationCall ( llvm::Value AnnotationFn,
llvm::Value AnnotatedVal,
StringRef  AnnotationStr,
SourceLocation  Location 
)

◆ EmitAnyExpr()

RValue CodeGenFunction::EmitAnyExpr ( const Expr E,
AggValueSlot  aggSlot = AggValueSlot::ignored(),
bool  ignoreResult = false 
)

EmitAnyExpr - Emit code to compute the specified expression which can have any type.

The result is returned as an RValue struct. If this is an aggregate expression, the aggloc/agglocvolatile arguments indicate where the result should be returned.

Parameters
ignoreResultTrue if the resulting value isn't used.

The result is returned as an RValue struct. If this is an aggregate expression, AggSlot indicates where the result should be returned.

Definition at line 173 of file CGExpr.cpp.

Referenced by clang::CodeGen::CodeGenFunction::OpaqueValueMappingData::bind(), EmitOMPAtomicCaptureExpr(), EmitOMPAtomicUpdateExpr(), emitSimdlenSafelenClause(), and GenerateObjCAtomicGetterCopyHelperFunction().

◆ EmitAnyExprToExn()

void CodeGenFunction::EmitAnyExprToExn ( const Expr E,
Address  Addr 
)

◆ EmitAnyExprToMem()

void CodeGenFunction::EmitAnyExprToMem ( const Expr E,
Address  Location,
Qualifiers  Quals,
bool  IsInit 
)

EmitAnyExprToMem - Emits the code necessary to evaluate an arbitrary expression into the given memory location.

EmitAnyExprToMem - Evaluate an expression into a given memory location.

Definition at line 202 of file CGExpr.cpp.

Referenced by emitCombinerOrInitializer(), emitCXXDestructor(), clang::CodeGen::ReductionCodeGen::emitInitialization(), emitInitWithReductionInitializer(), EmitOMPAggregateInit(), and clang::CodeGen::emitThreadPrivateVarInit().

◆ EmitAnyExprToTemp()

RValue CodeGenFunction::EmitAnyExprToTemp ( const Expr E)

EmitAnyExprToTemp - Similarly to EmitAnyExpr(), however, the result will always be accessible even if no aggregate location is provided.

EmitAnyExprToTemp - Similary to EmitAnyExpr(), however, the result will always be accessible even if no aggregate location is provided.

Definition at line 192 of file CGExpr.cpp.

◆ EmitARCAutorelease()

llvm::Value * CodeGenFunction::EmitARCAutorelease ( llvm::Value value)

Autorelease the given object.

call i8* @objc_autorelease(i8* value)

Definition at line 2195 of file CGObjC.cpp.

References emitARCValueOperation(), clang::CodeGen::CodeGenModule::getObjCEntrypoints(), and clang::CodeGen::ObjCEntrypoints::objc_autorelease.

Referenced by EmitARCRetainAutorelease(), and EmitARCRetainAutoreleaseScalarExpr().

◆ EmitARCAutoreleaseReturnValue()

llvm::Value * CodeGenFunction::EmitARCAutoreleaseReturnValue ( llvm::Value value)

Autorelease the given object.

call i8* @objc_autoreleaseReturnValue(i8* value)

Definition at line 2204 of file CGObjC.cpp.

References emitARCValueOperation(), clang::CodeGen::CodeGenModule::getObjCEntrypoints(), and clang::CodeGen::ObjCEntrypoints::objc_autoreleaseReturnValue.

Referenced by emitAutoreleaseOfResult().

◆ EmitARCCopyWeak()

void CodeGenFunction::EmitARCCopyWeak ( Address  dst,
Address  src 
)

void @objc_copyWeak(i8** dest, i8** src) Disregards the current value in dest.

Essentially objc_release(objc_initWeak(dest, objc_readWeakRetained(src)))

Definition at line 2322 of file CGObjC.cpp.

References emitARCCopyOperation(), clang::CodeGen::CodeGenModule::getObjCEntrypoints(), and clang::CodeGen::ObjCEntrypoints::objc_copyWeak.

Referenced by tryEmitARCCopyWeakInit().

◆ EmitARCDestroyStrong()

void CodeGenFunction::EmitARCDestroyStrong ( Address  addr,
ARCPreciseLifetime_t  precise 
)

Destroy a __strong variable.

At -O0, emit a call to store 'null' into the address; instrumenting tools prefer this because the address is exposed, but it's relatively cumbersome to optimize.

At -O1 and above, just load and call objc_release.

call void @objc_storeStrong(i8** addr, i8* null)

Definition at line 2120 of file CGObjC.cpp.

References Builder, clang::CodeGen::CGBuilderTy::CreateLoad(), EmitARCRelease(), EmitARCStoreStrongCall(), clang::CodeGen::CodeGenModule::getCodeGenOpts(), and getNullForVariable().

Referenced by EmitObjCMRRAutoreleasePoolPop(), and EmitObjectDelete().

◆ EmitARCDestroyWeak()

void CodeGenFunction::EmitARCDestroyWeak ( Address  addr)

◆ EmitARCExtendBlockObject()

llvm::Value * CodeGenFunction::EmitARCExtendBlockObject ( const Expr expr)

◆ EmitARCInitWeak()

void CodeGenFunction::EmitARCInitWeak ( Address  addr,
llvm::Value value 
)

i8* @objc_initWeak(i8** addr, i8* value) Returns value.

addr is known to not have a current weak entry. Essentially equivalent to: *addr = nil; objc_storeWeak(addr, value);

Definition at line 2278 of file CGObjC.cpp.

References Builder, clang::CodeGen::CGBuilderTy::CreateStore(), emitARCStoreOperation(), clang::CodeGen::CodeGenModule::getCodeGenOpts(), clang::CodeGen::CodeGenModule::getObjCEntrypoints(), and clang::CodeGen::ObjCEntrypoints::objc_initWeak.

Referenced by clang::CodeGen::CGObjCRuntime::EmitInitOfCatchParam(), EmitParmDecl(), EmitScalarInit(), EmitStoreThroughLValue(), and InitCatchParam().

◆ EmitARCIntrinsicUse()

void CodeGenFunction::EmitARCIntrinsicUse ( ArrayRef< llvm::Value *>  values)

Given a number of pointers, inform the optimizer that they're being intrinsically used up until this point in the program.

Definition at line 1803 of file CGObjC.cpp.

References clang::CodeGen::ObjCEntrypoints::clang_arc_use, clang::CodeGen::CodeGenModule::CreateRuntimeFunction(), EmitNounwindRuntimeCall(), clang::CodeGen::CodeGenModule::getObjCEntrypoints(), and clang::CodeGen::CodeGenTypeCache::VoidTy.

Referenced by EmitObjCMRRAutoreleasePoolPop(), and emitWriteback().

◆ EmitARCLoadWeak()

llvm::Value * CodeGenFunction::EmitARCLoadWeak ( Address  addr)

i8* @objc_loadWeak(i8** addr) Essentially objc_autorelease(objc_loadWeakRetained(addr)).

Definition at line 2251 of file CGObjC.cpp.

References emitARCLoadOperation(), clang::CodeGen::CodeGenModule::getObjCEntrypoints(), and clang::CodeGen::ObjCEntrypoints::objc_loadWeak.

Referenced by EmitLoadOfLValue(), and generateObjCGetterBody().

◆ EmitARCLoadWeakRetained()

llvm::Value * CodeGenFunction::EmitARCLoadWeakRetained ( Address  addr)

◆ EmitARCMoveWeak()

void CodeGenFunction::EmitARCMoveWeak ( Address  dst,
Address  src 
)

void @objc_moveWeak(i8** dest, i8** src) Disregards the current value in dest.

Leaves src pointing to nothing. Essentially (objc_copyWeak(dest, src), objc_destroyWeak(src)).

Definition at line 2313 of file CGObjC.cpp.

References emitARCCopyOperation(), clang::CodeGen::CodeGenModule::getObjCEntrypoints(), and clang::CodeGen::ObjCEntrypoints::objc_moveWeak.

Referenced by tryEmitARCCopyWeakInit().

◆ EmitARCReclaimReturnedObject()

llvm::Value * CodeGenFunction::EmitARCReclaimReturnedObject ( const Expr e,
bool  allowUnsafeClaim 
)

Definition at line 2581 of file CGObjC.cpp.

Referenced by EmitObjCThrowOperand(), and ShouldNullCheckClassCastValue().

◆ EmitARCRelease()

void CodeGenFunction::EmitARCRelease ( llvm::Value value,
ARCPreciseLifetime_t  precise 
)

◆ EmitARCRetain()

llvm::Value * CodeGenFunction::EmitARCRetain ( QualType  type,
llvm::Value value 
)

Produce the code to do a retain.

Based on the type, calls one of: call i8* @objc_retain(i8* value) call i8* @objc_retainBlock(i8* value)

Definition at line 1972 of file CGObjC.cpp.

References EmitARCRetainBlock(), EmitARCRetainNonBlock(), and clang::Type::isBlockPointerType().

Referenced by emitARCRetainLoadOfScalar(), EmitARCRetainScalarExpr(), EmitARCStoreStrong(), and EmitStoreThroughLValue().

◆ EmitARCRetainAutorelease()

llvm::Value * CodeGenFunction::EmitARCRetainAutorelease ( QualType  type,
llvm::Value value 
)

Do a fused retain/autorelease of the given object.

call i8* @objc_retainAutorelease(i8* value) or retain = call i8* @objc_retainBlock(i8* value) call i8* @objc_autorelease(i8* retain)

Definition at line 2226 of file CGObjC.cpp.

References Builder, clang::CodeGen::CGBuilderTy::CreateBitCast(), EmitARCAutorelease(), EmitARCRetainAutoreleaseNonBlock(), EmitARCRetainBlock(), clang::CodeGen::CodeGenTypeCache::Int8PtrTy, clang::Type::isBlockPointerType(), and clang::CodeGen::Type.

Referenced by EmitARCRetainAutoreleaseScalarExpr(), and EmitObjCExtendObjectLifetime().

◆ EmitARCRetainAutoreleasedReturnValue()

llvm::Value * CodeGenFunction::EmitARCRetainAutoreleasedReturnValue ( llvm::Value value)

Retain the given object which is the result of a function call.

call i8* @objc_retainAutoreleasedReturnValue(i8* value)

Yes, this function name is one character away from a different call with completely different semantics.

Definition at line 2064 of file CGObjC.cpp.

References emitARCValueOperation(), emitAutoreleasedReturnValueMarker(), clang::CodeGen::CodeGenModule::getObjCEntrypoints(), and clang::CodeGen::ObjCEntrypoints::objc_retainAutoreleasedReturnValue.

Referenced by emitARCRetainCallResult().

◆ EmitARCRetainAutoreleaseNonBlock()

llvm::Value * CodeGenFunction::EmitARCRetainAutoreleaseNonBlock ( llvm::Value value)

Do a fused retain/autorelease of the given object.

call i8* @objc_retainAutorelease(i8* value)

Definition at line 2243 of file CGObjC.cpp.

References emitARCValueOperation(), clang::CodeGen::CodeGenModule::getObjCEntrypoints(), and clang::CodeGen::ObjCEntrypoints::objc_retainAutorelease.

Referenced by EmitARCRetainAutorelease().

◆ EmitARCRetainAutoreleaseReturnValue()

llvm::Value * CodeGenFunction::EmitARCRetainAutoreleaseReturnValue ( llvm::Value value)

Do a fused retain/autorelease of the given object.

call i8* @objc_retainAutoreleaseReturnValue(i8* value)

Definition at line 2214 of file CGObjC.cpp.

References emitARCValueOperation(), clang::CodeGen::CodeGenModule::getObjCEntrypoints(), and clang::CodeGen::ObjCEntrypoints::objc_retainAutoreleaseReturnValue.

◆ EmitARCRetainAutoreleaseScalarExpr()

llvm::Value * CodeGenFunction::EmitARCRetainAutoreleaseScalarExpr ( const Expr expr)

◆ EmitARCRetainBlock()

llvm::Value * CodeGenFunction::EmitARCRetainBlock ( llvm::Value value,
bool  mandatory 
)

Retain the given block, with _Block_copy semantics.

call i8* @objc_retainBlock(i8* value)

Parameters
mandatory- If false, emit the call with metadata indicating that it's okay for the optimizer to eliminate this call if it can prove that the block never escapes except down the stack.

Definition at line 1993 of file CGObjC.cpp.

References Builder, emitARCValueOperation(), clang::CodeGen::CodeGenModule::getObjCEntrypoints(), and clang::CodeGen::ObjCEntrypoints::objc_retainBlock.

Referenced by EmitARCExtendBlockObject(), EmitARCRetain(), EmitARCRetainAutorelease(), and EmitARCStoreStrong().

◆ EmitARCRetainNonBlock()

llvm::Value * CodeGenFunction::EmitARCRetainNonBlock ( llvm::Value value)

◆ EmitARCRetainScalarExpr()

llvm::Value * CodeGenFunction::EmitARCRetainScalarExpr ( const Expr e)

EmitARCRetainScalarExpr - Semantically equivalent to EmitARCRetainObject(e->getType(), EmitScalarExpr(e)), but making a best-effort attempt to peephole expressions that naturally produce retained objects.

Definition at line 2967 of file CGObjC.cpp.

References EmitARCRetain(), enterFullExpression(), clang::Expr::getType(), and tryEmitARCRetainScalarExpr().

Referenced by EmitScalarInit(), and ShouldNullCheckClassCastValue().

◆ EmitARCStoreAutoreleasing()

std::pair< LValue, llvm::Value * > CodeGenFunction::EmitARCStoreAutoreleasing ( const BinaryOperator e)

◆ EmitARCStoreStrong() [1/2]

llvm::Value * CodeGenFunction::EmitARCStoreStrong ( LValue  dst,
llvm::Value newValue,
bool  ignored 
)

◆ EmitARCStoreStrong() [2/2]

std::pair< LValue, llvm::Value * > CodeGenFunction::EmitARCStoreStrong ( const BinaryOperator e,
bool  ignored 
)

◆ EmitARCStoreStrongCall()

llvm::Value * CodeGenFunction::EmitARCStoreStrongCall ( Address  addr,
llvm::Value value,
bool  ignored 
)

◆ EmitARCStoreUnsafeUnretained()

std::pair< LValue, llvm::Value * > CodeGenFunction::EmitARCStoreUnsafeUnretained ( const BinaryOperator e,
bool  ignored 
)

◆ EmitARCStoreWeak()

llvm::Value * CodeGenFunction::EmitARCStoreWeak ( Address  addr,
llvm::Value value,
bool  ignored 
)

i8* @objc_storeWeak(i8** addr, i8* value) Returns value.

Definition at line 2266 of file CGObjC.cpp.

References emitARCStoreOperation(), clang::CodeGen::CodeGenModule::getObjCEntrypoints(), and clang::CodeGen::ObjCEntrypoints::objc_storeWeak.

Referenced by EmitScalarInit(), EmitStoreThroughLValue(), and GetIntrinsic().

◆ EmitARCUnsafeClaimAutoreleasedReturnValue()

llvm::Value * CodeGenFunction::EmitARCUnsafeClaimAutoreleasedReturnValue ( llvm::Value value)

Claim a possibly-autoreleased return value at +0.

This is only valid to do in contexts which do not rely on the retain to keep the object valid for for all of its uses; for example, when the value is ignored, or when it is being assigned to an __unsafe_unretained variable.

call i8* @objc_unsafeClaimAutoreleasedReturnValue(i8* value)

Definition at line 2079 of file CGObjC.cpp.

References emitARCValueOperation(), emitAutoreleasedReturnValueMarker(), clang::CodeGen::CodeGenModule::getObjCEntrypoints(), and clang::CodeGen::ObjCEntrypoints::objc_unsafeClaimAutoreleasedReturnValue.

Referenced by emitARCUnsafeClaimCallResult().

◆ EmitARCUnsafeUnretainedScalarExpr()

llvm::Value * CodeGenFunction::EmitARCUnsafeUnretainedScalarExpr ( const Expr e)

EmitARCUnsafeUnretainedScalarExpr - Semantically equivalent to immediately releasing the resut of EmitARCRetainScalarExpr, but avoiding any spurious retains, including by performing reclaims with objc_unsafeClaimAutoreleasedReturnValue.

Definition at line 3094 of file CGObjC.cpp.

References emitARCUnsafeUnretainedScalarExpr(), and enterFullExpression().

Referenced by EmitARCStoreUnsafeUnretained(), and EmitScalarInit().

◆ EmitARMBuiltinExpr()

Value * CodeGenFunction::EmitARMBuiltinExpr ( unsigned  BuiltinID,
const CallExpr E,
llvm::Triple::ArchType  Arch 
)

Definition at line 4900 of file CGBuiltin.cpp.

References clang::Expr::EvaluateAsInt(), and clang::CallExpr::getArg().

Referenced by EmitTargetArchBuiltinExpr().

◆ emitArrayDestroy()

void CodeGenFunction::emitArrayDestroy ( llvm::Value begin,
llvm::Value end,
QualType  elementType,
CharUnits  elementAlign,
Destroyer destroyer,
bool  checkZeroLength,
bool  useEHCleanup 
)

emitArrayDestroy - Destroys all the elements of the given array, beginning from last to first.

The array cannot be zero-length.

Parameters
begin- a type* denoting the first element of the array
end- a type* denoting one past the end of the array
elementType- the element type of the array
destroyer- the function to call to destroy elements
useEHCleanup- whether to push an EH cleanup to destroy the remaining elements in case the destruction of a single element throws

Definition at line 1576 of file CGDecl.cpp.

References Builder, createBasicBlock(), EmitBlock(), clang::Type::isArrayType(), PopCleanupBlock(), pushRegularPartialArrayCleanup(), and clang::CodeGen::CodeGenTypeCache::SizeTy.

Referenced by emitDestroy(), and emitPartialArrayDestroy().

◆ emitArrayLength()

llvm::Value * CodeGenFunction::emitArrayLength ( const ArrayType origArrayType,
QualType baseType,
Address addr 
)

emitArrayLength - Compute the length of an array, even if it's a VLA, and drill down to the base element type.

Computes the length of an array in elements, as well as the base element type and a properly-typed first element pointer.

Definition at line 1833 of file CodeGenFunction.cpp.

References clang::ast_matchers::arrayType, Builder, ConvertType(), clang::CodeGen::CGBuilderTy::CreateElementBitCast(), clang::CodeGen::Address::getAlignment(), clang::ASTContext::getAsArrayType(), getContext(), clang::CodeGen::Address::getElementType(), clang::ArrayType::getElementType(), clang::CodeGen::Address::getPointer(), getVLASize(), clang::CodeGen::CodeGenTypeCache::SizeTy, and clang::CodeGen::Type.

Referenced by emitDestroy(), EmitOMPAggregateInit(), and EmitOMPAggregateReduction().

◆ EmitArraySubscriptExpr()

LValue CodeGenFunction::EmitArraySubscriptExpr ( const ArraySubscriptExpr E,
bool  Accessed = false 
)

Definition at line 3244 of file CGExpr.cpp.

◆ EmitArrayToPointerDecay()

Address CodeGenFunction::EmitArrayToPointerDecay ( const Expr Array,
LValueBaseInfo BaseInfo = nullptr,
TBAAAccessInfo TBAAInfo = nullptr 
)

Definition at line 3125 of file CGExpr.cpp.

Referenced by ShouldNullCheckClassCastValue().

◆ EmitAsanPrologueOrEpilogue()

void CodeGenFunction::EmitAsanPrologueOrEpilogue ( bool  Prologue)

◆ EmitAsmStmt()

void CodeGenFunction::EmitAsmStmt ( const AsmStmt S)

Definition at line 1870 of file CGStmt.cpp.

◆ EmitAtomicCompareExchange()

std::pair< RValue, llvm::Value * > CodeGenFunction::EmitAtomicCompareExchange ( LValue  Obj,
RValue  Expected,
RValue  Desired,
SourceLocation  Loc,
llvm::AtomicOrdering  Success = llvm::AtomicOrdering::SequentiallyConsistent,
llvm::AtomicOrdering  Failure = llvm::AtomicOrdering::SequentiallyConsistent,
bool  IsWeak = false,
AggValueSlot  Slot = AggValueSlot::ignored() 
)

◆ EmitAtomicExpr()

RValue CodeGenFunction::EmitAtomicExpr ( AtomicExpr E)

Definition at line 742 of file CGAtomic.cpp.

◆ EmitAtomicInit()

void CodeGenFunction::EmitAtomicInit ( Expr E,
LValue  lvalue 
)

◆ EmitAtomicLoad() [1/2]

RValue CodeGenFunction::EmitAtomicLoad ( LValue  LV,
SourceLocation  SL,
AggValueSlot  Slot = AggValueSlot::ignored() 
)

◆ EmitAtomicLoad() [2/2]

RValue CodeGenFunction::EmitAtomicLoad ( LValue  src,
SourceLocation  loc,
llvm::AtomicOrdering  AO,
bool  IsVolatile = false,
AggValueSlot  resultSlot = AggValueSlot::ignored() 
)

◆ EmitAtomicStore() [1/2]

void CodeGenFunction::EmitAtomicStore ( RValue  rvalue,
LValue  lvalue,
bool  isInit 
)

◆ EmitAtomicStore() [2/2]

void CodeGenFunction::EmitAtomicStore ( RValue  rvalue,
LValue  dest,
llvm::AtomicOrdering  AO,
bool  IsVolatile,
bool  isInit 
)

Emit a store to an l-value of atomic type.

Note that the r-value is expected to be an r-value of the atomic type; this means that for aggregate r-values, it should include storage for any padding that was necessary.

Definition at line 1889 of file CGAtomic.cpp.

References clang::CodeGen::CallArgList::add(), emitAtomicLibcall(), clang::CodeGen::RValue::get(), clang::CodeGen::LValue::getAddress(), clang::CodeGen::RValue::getAggregateAddress(), clang::CodeGen::Address::getElementType(), clang::CodeGen::Address::getPointer(), clang::CodeGen::RValue::isAggregate(), and clang::CodeGen::LValue::isSimple().

◆ EmitAtomicUpdate()

void CodeGenFunction::EmitAtomicUpdate ( LValue  LVal,
llvm::AtomicOrdering  AO,
const llvm::function_ref< RValue(RValue)> &  UpdateOp,
bool  IsVolatile 
)

Definition at line 1973 of file CGAtomic.cpp.

◆ EmitAttributedStmt()

void CodeGenFunction::EmitAttributedStmt ( const AttributedStmt S)

Definition at line 566 of file CGStmt.cpp.

◆ EmitAutoVarAlloca()

CodeGenFunction::AutoVarEmission CodeGenFunction::EmitAutoVarAlloca ( const VarDecl D)

EmitAutoVarAlloca - Emit the alloca and debug information for a local variable.

Does not emit initialization or destruction.

Definition at line 961 of file CGDecl.cpp.

References Builder, Bypasses, CGM, ConvertTypeForMem(), clang::CodeGen::CGBuilderTy::CreateStore(), CreateTempAlloca(), clang::Default, EmitLifetimeStart(), EmitStaticVarDecl(), EmitVariablyModifiedType(), EnsureInsertPoint(), clang::QualType::getAddressSpace(), clang::Type::getAs(), clang::ASTContext::getBaseElementType(), getBlockByrefInfo(), clang::CodeGen::CodeGenModule::getCodeGenOpts(), getContext(), clang::TargetInfo::getCXXABI(), clang::CodeGen::CodeGenModule::getDataLayout(), clang::ASTContext::getDeclAlign(), clang::VarDecl::getInit(), getLangOpts(), clang::NamedDecl::getName(), clang::CodeGen::Address::getPointer(), getTarget(), clang::ValueDecl::getType(), clang::Decl::hasAttr(), hasLabelBeenSeenInCurrentScope(), HaveInsertPoint(), clang::InternalLinkage, clang::CodeGen::Address::invalid(), clang::Type::isArrayType(), clang::CodeGen::VarBypassDetector::IsBypassed(), clang::Expr::isConstantInitializer(), clang::Type::isConstantSizeType(), clang::VarDecl::isConstexpr(), clang::VarDecl::isExceptionVariable(), clang::TargetCXXABI::isMicrosoft(), clang::VarDecl::isNRVOVariable(), clang::Type::isObjCObjectPointerType(), clang::QualType::isPODType(), clang::Type::isRecordType(), clang::CodeGen::CodeGenModule::isTypeConstant(), clang::Type::isVariablyModifiedType(), NRVOFlags, clang::CharUnits::One(), clang::opencl_constant, clang::opencl_private, ReturnValue, clang::CodeGen::Type, and clang::CodeGen::CodeGenFunction::AutoVarEmission::useLifetimeMarkers().

Referenced by EmitAutoVarDecl().

◆ EmitAutoVarCleanups()

void CodeGenFunction::EmitAutoVarCleanups ( const AutoVarEmission emission)

◆ EmitAutoVarDecl()

void CodeGenFunction::EmitAutoVarDecl ( const VarDecl D)

EmitAutoVarDecl - Emit an auto variable declaration.

EmitAutoVarDecl - Emit code and set up an entry in LocalDeclMap for a variable declaration with auto, register, or no storage class specifier.

This function can be called with a null (unreachable) insert point.

These turn into simple stack objects, or GlobalValues depending on target.

Definition at line 929 of file CGDecl.cpp.

References EmitAutoVarAlloca(), EmitAutoVarCleanups(), and EmitAutoVarInit().

Referenced by EmitVarDecl().

◆ EmitAutoVarInit()

void CodeGenFunction::EmitAutoVarInit ( const AutoVarEmission emission)

◆ emitAutoVarTypeCleanup()

void CodeGenFunction::emitAutoVarTypeCleanup ( const AutoVarEmission emission,
QualType::DestructionKind  dtorKind 
)

◆ EmitBinaryOperatorLValue()

LValue CodeGenFunction::EmitBinaryOperatorLValue ( const BinaryOperator E)

Definition at line 4287 of file CGExpr.cpp.

◆ EmitBlock()

void CodeGenFunction::EmitBlock ( llvm::BasicBlock *  BB,
bool  IsFinished = false 
)

◆ EmitBlockAfterUses()

void CodeGenFunction::EmitBlockAfterUses ( llvm::BasicBlock *  BB)

EmitBlockAfterUses - Emit the given block somewhere hopefully near its uses, and leave the insertion point in it.

Definition at line 482 of file CGStmt.cpp.

References Builder, and CurFn.

Referenced by emitCatchDispatchBlock(), emitCatchPadBlock(), and emitFilterDispatchBlock().

◆ emitBlockByrefAddress() [1/2]

Address CodeGenFunction::emitBlockByrefAddress ( Address  baseAddr,
const VarDecl V,
bool  followForward = true 
)

BuildBlockByrefAddress - Computes the location of the data in a variable which is declared as __block.

Definition at line 2265 of file CGBlocks.cpp.

References clang::NamedDecl::getName().

Referenced by drillIntoBlockVariable(), EmitScalarInit(), and clang::CodeGen::CodeGenFunction::AutoVarEmission::getObjectAddress().

◆ emitBlockByrefAddress() [2/2]

Address CodeGenFunction::emitBlockByrefAddress ( Address  baseAddr,
const BlockByrefInfo info,
bool  followForward,
const llvm::Twine &  name 
)

Definition at line 2272 of file CGBlocks.cpp.

◆ EmitBlockCallExpr()

RValue CodeGenFunction::EmitBlockCallExpr ( const CallExpr E,
ReturnValueSlot  ReturnValue 
)

Definition at line 1100 of file CGBlocks.cpp.

◆ EmitBlockCopyAndAutorelease()

llvm::Value * CodeGenFunction::EmitBlockCopyAndAutorelease ( llvm::Value Block,
QualType  Ty 
)

◆ EmitBlockLiteral()

llvm::Value * CodeGenFunction::EmitBlockLiteral ( const BlockExpr blockExpr,
llvm::Function **  InvokeF = nullptr 
)

Emit block literal.

Emit a block literal expression in the current function.

Returns
an LLVM value which is a pointer to a struct which contains information about the block, including the block invoke function, the captured variables, etc.
Parameters
InvokeFwill contain the block invoke function if it is not nullptr.

Definition at line 743 of file CGBlocks.cpp.

References clang::CodeGen::CGBlockInfo::Block, clang::CodeGen::BLOCK_HAS_COPY_DISPOSE, clang::CodeGen::BLOCK_HAS_CXX_OBJ, clang::CodeGen::BLOCK_HAS_EXTENDED_LAYOUT, clang::CodeGen::BLOCK_HAS_SIGNATURE, clang::CodeGen::BLOCK_USE_STRET, clang::CodeGen::CGBlockInfo::BlockExpression, buildBlockDescriptor(), clang::CodeGen::CGBlockInfo::CanBeGlobal, computeBlockInfo(), clang::Default, findAndRemoveBlockInfo(), clang::CharUnits::fromQuantity(), clang::CodeGen::CodeGenModule::getAddrOfGlobalBlockIfEmitted(), clang::CodeGen::CGBlockInfo::getBlockDecl(), clang::BlockExpr::getBlockDecl(), clang::CodeGen::CodeGenModule::getContext(), clang::CodeGen::CGOpenCLRuntime::getGenericVoidPointerType(), clang::ASTContext::getLangOpts(), clang::CodeGen::CodeGenModule::getNSConcreteStackBlock(), clang::CodeGen::CodeGenModule::getOpenCLRuntime(), clang::TargetInfo::getPointerWidth(), clang::CodeGen::CodeGenModule::getTarget(), clang::ASTContext::getTargetAddressSpace(), clang::CodeGen::CGBlockInfo::HasCapturedVariableLayout, clang::BlockDecl::hasCaptures(), clang::CodeGen::CGBlockInfo::HasCXXObject, clang::isa(), clang::BlockDecl::isConversionFromLambda(), clang::CodeGen::Address::isValid(), clang::CodeGen::CGBlockInfo::LocalAddress, clang::CodeGen::CGBlockInfo::NeedsCopyDispose, clang::opencl_generic, and clang::CodeGen::CGBlockInfo::UsesStret.

Referenced by isCheapEnoughToEvaluateUnconditionally().

◆ EmitBlockWithFallThrough()

void CodeGenFunction::EmitBlockWithFallThrough ( llvm::BasicBlock *  BB,
const Stmt S 
)

When instrumenting to collect profile data, the counts for some blocks such as switch cases need to not include the fall-through counts, so emit a branch around the instrumentation code.

When not instrumenting, this just calls EmitBlock().

Definition at line 1162 of file CodeGenFunction.cpp.

◆ EmitBoundsCheck()

void CodeGenFunction::EmitBoundsCheck ( const Expr E,
const Expr Base,
llvm::Value Index,
QualType  IndexType,
bool  Accessed 
)

Emit a check that Base points into an array object, which we can access at index Index.

Accessed should be false if we this expression is used as an lvalue, for instance in "&Arr[Idx]".

Definition at line 890 of file CGExpr.cpp.

Referenced by emitPointerArithmetic().

◆ EmitBranch()

void CodeGenFunction::EmitBranch ( llvm::BasicBlock *  Block)

EmitBranch - Emit a branch to the specified basic block from the current insert block, taking care to avoid creation of branches from dummy blocks.

It is legal to call this function even if there is no current insertion point.

This function clears the current insertion point. The caller should follow calls to this function with calls to Emit*Block prior to generation new code.

Definition at line 465 of file CGStmt.cpp.

References Builder.

Referenced by EmitBlock(), clang::CodeGen::CGOpenMPRuntime::emitOMPIfClause(), and EmitX86_64VAArgFromMemory().

◆ EmitBranchOnBoolExpr()

void CodeGenFunction::EmitBranchOnBoolExpr ( const Expr Cond,
llvm::BasicBlock *  TrueBlock,
llvm::BasicBlock *  FalseBlock,
uint64_t  TrueCount 
)

EmitBranchOnBoolExpr - Emit a branch on a boolean condition (e.g.

for an if statement) to the specified blocks. Based on the condition, this might try to simplify the codegen of the conditional based on the branch. TrueCount should be the number of times we expect the condition to evaluate to true based on PGO data.

for an if statement) to the specified blocks. Based on the condition, this might try to simplify the codegen of the conditional based on the branch.

Definition at line 1476 of file CodeGenFunction.cpp.

References clang::CodeGen::CodeGenFunction::ConditionalEvaluation::begin(), Builder, CGM, ConstantFoldsToSimpleInteger(), createBasicBlock(), EmitBlock(), EmitCXXThrowExpr(), clang::CodeGen::CodeGenFunction::ConditionalEvaluation::end(), EvaluateExprAsBool(), clang::FunctionDecl::getBuiltinID(), clang::CodeGen::CodeGenModule::getCodeGenOpts(), getCurrentProfileCount(), getLLVMContext(), getProfileCount(), clang::Expr::IgnoreParens(), incrementProfileCounter(), max(), and setCurrentProfileCount().

Referenced by EmitConditionalOperatorLValue(), clang::CodeGen::CGOpenMPRuntime::emitOMPIfClause(), GetIntrinsic(), isBlockVarRef(), and isCheapEnoughToEvaluateUnconditionally().

◆ EmitBranchThroughCleanup()

void CodeGenFunction::EmitBranchThroughCleanup ( JumpDest  Dest)

EmitBranchThroughCleanup - Emit a branch from the current insert block through the normal cleanup handling code (if any) and then on to.

Terminate the current block by emitting a branch which might leave the current cleanup-protected scope.

  • Dest.

The target scope may not yet be known, in which case this will require a fixup.

As a side-effect, this method clears the insertion point.

Definition at line 1034 of file CGCleanup.cpp.

References clang::CodeGen::EHScopeStack::stable_iterator::encloses(), and clang::CodeGen::CodeGenFunction::JumpDest::getScopeDepth().

Referenced by clang::CodeGen::CodeGenFunction::FinallyInfo::exit().

◆ EmitBreakStmt()

void CodeGenFunction::EmitBreakStmt ( const BreakStmt S)

Definition at line 1113 of file CGStmt.cpp.

◆ EmitBuiltinAvailable()

llvm::Value * CodeGenFunction::EmitBuiltinAvailable ( ArrayRef< llvm::Value *>  Args)

◆ EmitBuiltinExpr()

RValue CodeGenFunction::EmitBuiltinExpr ( const FunctionDecl FD,
unsigned  BuiltinID,
const CallExpr E,
ReturnValueSlot  ReturnValue 
)

◆ EmitBuiltinNewDeleteCall()

RValue CodeGenFunction::EmitBuiltinNewDeleteCall ( const FunctionProtoType Type,
const Expr Arg,
bool  IsDelete 
)

Definition at line 1300 of file CGExprCXX.cpp.

References clang::FunctionProtoType::param_type_begin().

◆ emitBuiltinOSLogFormat()

RValue CodeGenFunction::emitBuiltinOSLogFormat ( const CallExpr E)

◆ emitByrefStructureInit()

void CodeGenFunction::emitByrefStructureInit ( const AutoVarEmission emission)

Initialize the structural components of a __block variable, i.e.

everything but the actual object.

Definition at line 2390 of file CGBlocks.cpp.

References clang::CodeGen::Address::getPointer().

Referenced by EmitAutoVarInit().

◆ EmitCall() [1/3]

RValue CodeGenFunction::EmitCall ( const CGFunctionInfo CallInfo,
const CGCallee Callee,
ReturnValueSlot  ReturnValue,
const CallArgList Args,
llvm::Instruction **  callOrInvoke,
SourceLocation  Loc 
)

◆ EmitCall() [2/3]

RValue clang::CodeGen::CodeGenFunction::EmitCall ( const CGFunctionInfo CallInfo,
const CGCallee Callee,
ReturnValueSlot  ReturnValue,
const CallArgList Args,
llvm::Instruction **  callOrInvoke = nullptr 
)
inline

Definition at line 3320 of file CodeGenFunction.h.

References BuildAppleKextVirtualCall(), and Modifier.

◆ EmitCall() [3/3]

RValue CodeGenFunction::EmitCall ( QualType  FnType,
const CGCallee Callee,
const CallExpr E,
ReturnValueSlot  ReturnValue,
llvm::Value Chain = nullptr 
)

Definition at line 4459 of file CGExpr.cpp.

◆ EmitCallAndReturnForThunk()

void CodeGenFunction::EmitCallAndReturnForThunk ( llvm::Constant *  Callee,
const ThunkInfo Thunk 
)

◆ EmitCallArg()

void CodeGenFunction::EmitCallArg ( CallArgList args,
const Expr E,
QualType  ArgType 
)

EmitCallArg - Emit a single call argument.

Definition at line 3481 of file CGCall.cpp.

◆ EmitCallArgs() [1/2]

template<typename T >
void clang::CodeGen::CodeGenFunction::EmitCallArgs ( CallArgList Args,
const T CallArgTypeInfo,
llvm::iterator_range< CallExpr::const_arg_iterator ArgRange,
AbstractCallee  AC = AbstractCallee(),
unsigned  ParamsToSkip = 0,
EvaluationOrder  Order = EvaluationOrder::Default 
)
inline

EmitCallArgs - Emit call arguments for a function.

Definition at line 3906 of file CodeGenFunction.h.

Referenced by commonEmitCXXMemberOrOperatorCall(), and emitCXXDestructor().

◆ EmitCallArgs() [2/2]

void CodeGenFunction::EmitCallArgs ( CallArgList Args,
ArrayRef< QualType ArgTypes,
llvm::iterator_range< CallExpr::const_arg_iterator ArgRange,
AbstractCallee  AC = AbstractCallee(),
unsigned  ParamsToSkip = 0,
EvaluationOrder  Order = EvaluationOrder::Default 
)

Definition at line 3364 of file CGCall.cpp.

◆ EmitCallee()

CGCallee CodeGenFunction::EmitCallee ( const Expr E)

Definition at line 4240 of file CGExpr.cpp.

◆ EmitCallExpr()

RValue CodeGenFunction::EmitCallExpr ( const CallExpr E,
ReturnValueSlot  ReturnValue = ReturnValueSlot() 
)

Definition at line 4193 of file CGExpr.cpp.

◆ EmitCallExprLValue()

LValue CodeGenFunction::EmitCallExprLValue ( const CallExpr E)

Definition at line 4337 of file CGExpr.cpp.

◆ EmitCallOrInvoke()

llvm::CallSite CodeGenFunction::EmitCallOrInvoke ( llvm::Value Callee,
ArrayRef< llvm::Value *>  Args,
const Twine &  Name = "" 
)

Emits a call or invoke instruction to the given function, depending on the current state of the EH stack.

Definition at line 3683 of file CGCall.cpp.

References getBundlesForFunclet().

Referenced by emitReduceScratchpadFunction(), and emitShuffleAndReduceFunction().

◆ EmitCapturedLocals()

void CodeGenFunction::EmitCapturedLocals ( CodeGenFunction ParentCGF,
const Stmt OutlinedStmt,
bool  IsFilter 
)

Scan the outlined statement for captures from the parent function.

For each capture, mark the capture as escaped and emit a call to llvm.localrecover. Insert the localrecover result into the LocalDeclMap.

Definition at line 1576 of file CGException.cpp.

◆ EmitCapturedStmt()

llvm::Function * CodeGenFunction::EmitCapturedStmt ( const CapturedStmt S,
CapturedRegionKind  K 
)

Generate an outlined function for the body of a CapturedStmt, store any captured variables into the captured struct, and call the outlined function.

Definition at line 2244 of file CGStmt.cpp.

◆ EmitCaseStmt()

void CodeGenFunction::EmitCaseStmt ( const CaseStmt S)

Definition at line 1218 of file CGStmt.cpp.

◆ EmitCaseStmtRange()

void CodeGenFunction::EmitCaseStmtRange ( const CaseStmt S)

EmitCaseStmtRange - If case statement range is not too big then add multiple cases to switch instruction, one for each value within the range.

If range is too big then emit "if" condition check.

Definition at line 1140 of file CGStmt.cpp.

◆ EmitCastLValue()

LValue CodeGenFunction::EmitCastLValue ( const CastExpr E)

EmitCastLValue - Casts are never lvalues unless that cast is to a reference type.

If the cast is to a reference, we can have the usual lvalue result, otherwise if a cast is needed by the code generator in an lvalue context, then it must mean that we need the address of an aggregate in order to access one of its members. This can happen for all the reasons that casts are permitted with aggregate result, including noop aggregate casts, and cast from scalar to union.

Definition at line 4014 of file CGExpr.cpp.

◆ EmitCastToVoidPtr()

llvm::Value * CodeGenFunction::EmitCastToVoidPtr ( llvm::Value value)

◆ EmitCfiCheckFail()

void CodeGenFunction::EmitCfiCheckFail ( )

◆ EmitCfiCheckStub()

void CodeGenFunction::EmitCfiCheckStub ( )

◆ EmitCfiSlowPathCheck()

void CodeGenFunction::EmitCfiSlowPathCheck ( SanitizerMask  Kind,
llvm::Value Cond,
llvm::ConstantInt *  TypeId,
llvm::Value Ptr,
ArrayRef< llvm::Constant *>  StaticArgs 
)

◆ EmitCheck()

void CodeGenFunction::EmitCheck ( ArrayRef< std::pair< llvm::Value *, SanitizerMask >>  Checked,
SanitizerHandler  Check,
ArrayRef< llvm::Constant *>  StaticArgs,
ArrayRef< llvm::Value *>  DynamicArgs 
)

◆ EmitCheckedArgForBuiltin()

Value * CodeGenFunction::EmitCheckedArgForBuiltin ( const Expr E,
BuiltinCheckKind  Kind 
)

Emits an argument for a call to a builtin.

If the builtin sanitizer is enabled, a runtime check specified by Kind is also emitted.

Definition at line 648 of file CGBuiltin.cpp.

◆ EmitCheckedInBoundsGEP()

Value * CodeGenFunction::EmitCheckedInBoundsGEP ( llvm::Value Ptr,
ArrayRef< llvm::Value *>  IdxList,
bool  SignedIndices,
bool  IsSubtraction,
SourceLocation  Loc,
const Twine &  Name = "" 
)

Same as IRBuilder::CreateInBoundsGEP, but additionally emits a check to detect undefined behavior when the pointer overflow sanitizer is enabled.

SignedIndices indicates whether any of the GEP indices are signed. IsSubtraction indicates whether the expression used to form the GEP is a subtraction.

Return the result of the given binary operation.

Definition at line 3939 of file CGExprScalar.cpp.

Referenced by emitArraySubscriptGEP(), emitPointerArithmetic(), and emitReduceFiniFunction().

◆ EmitCheckedLValue()

LValue CodeGenFunction::EmitCheckedLValue ( const Expr E,
TypeCheckKind  TCK 
)

Same as EmitLValue but additionally we generate checking code to guard against undefined behavior.

This is only suitable when we know that the address will be used to access the object.

Definition at line 1134 of file CGExpr.cpp.

Referenced by findPeephole(), and isBlockVarRef().

◆ EmitCheckSourceLocation()

llvm::Constant * CodeGenFunction::EmitCheckSourceLocation ( SourceLocation  Loc)

Emit a description of a source location in a format suitable for passing to a runtime sanitizer handler.

Emit a representation of a SourceLocation for passing to a handler in a sanitizer runtime library.

The format for this data is:

struct SourceLocation {
const char *Filename;
int32_t Line, Column;
};

For an invalid SourceLocation, the Filename pointer is null.

Definition at line 2693 of file CGExpr.cpp.

References CGM, Filename, clang::CodeGen::CodeGenModule::getCodeGenOpts(), getContext(), clang::PresumedLoc::getFilename(), clang::SourceManager::getPresumedLoc(), clang::ASTContext::getSourceManager(), INT_MIN, clang::PresumedLoc::isValid(), and Line.

Referenced by EmitNullabilityCheck(), EmitScalarRangeCheck(), EmitTypeCheck(), EmitUnreachable(), EmitVariablyModifiedType(), and GenerateCode().

◆ EmitCheckTypeDescriptor()

llvm::Constant * CodeGenFunction::EmitCheckTypeDescriptor ( QualType  T)

Emit a description of a type in a format suitable for passing to a runtime sanitizer handler.

Emit a type description suitable for use by a runtime sanitizer library.

The format of a type descriptor is

{ i16 TypeKind, i16 TypeInfo }

followed by an array of i8 containing the type name. TypeKind is 0 for an integer, 1 for a floating point value, and -1 for anything else.

Definition at line 2612 of file CGExpr.cpp.

References CGM, getContext(), clang::CodeGen::CodeGenModule::getTypeDescriptorFromMap(), clang::ASTContext::getTypeSize(), getTypeSize(), clang::Type::isFloatingType(), clang::Type::isIntegerType(), and clang::Type::isSignedIntegerType().

Referenced by EmitNullabilityCheck(), EmitScalarRangeCheck(), EmitTypeCheck(), and EmitVariablyModifiedType().

◆ EmitCheckValue()

llvm::Value * CodeGenFunction::EmitCheckValue ( llvm::Value V)

◆ EmitCoawaitExpr()

RValue CodeGenFunction::EmitCoawaitExpr ( const CoawaitExpr E,
AggValueSlot  aggSlot = AggValueSlot::ignored(),
bool  ignoreResult = false 
)

Definition at line 219 of file CGCoroutine.cpp.

◆ EmitCoawaitLValue()

LValue CodeGenFunction::EmitCoawaitLValue ( const CoawaitExpr E)

Definition at line 259 of file CGCoroutine.cpp.

◆ EmitCommonNeonBuiltinExpr()

Value * CodeGenFunction::EmitCommonNeonBuiltinExpr ( unsigned  BuiltinID,
unsigned  LLVMIntrinsic,
unsigned  AltLLVMIntrinsic,
const char *  NameHint,
unsigned  Modifier,
const CallExpr E,
SmallVectorImpl< llvm::Value *> &  Ops,
Address  PtrOp0,
Address  PtrOp1,
llvm::Triple::ArchType  Arch 
)

◆ EmitComplexAssignmentLValue()

LValue CodeGenFunction::EmitComplexAssignmentLValue ( const BinaryOperator E)

Emit an l-value for an assignment (simple or compound) of complex type.

Definition at line 1118 of file CGExprComplex.cpp.

References clang::BinaryOperator::getOpcode().

◆ EmitComplexCompoundAssignmentLValue()

LValue CodeGenFunction::EmitComplexCompoundAssignmentLValue ( const CompoundAssignOperator E)

◆ EmitComplexExpr()

ComplexPairTy CodeGenFunction::EmitComplexExpr ( const Expr E,
bool  IgnoreReal = false,
bool  IgnoreImag = false 
)

EmitComplexExpr - Emit the computation of the specified expression of complex type, returning the result.

EmitComplexExpr - Emit the computation of the specified expression of complex type, ignoring the result.

Definition at line 1088 of file CGExprComplex.cpp.

References getComplexType(), and clang::Expr::getType().

Referenced by EmitExprAsInit(), GetIntrinsic(), and ShouldNullCheckClassCastValue().

◆ EmitComplexExprIntoLValue()

void CodeGenFunction::EmitComplexExprIntoLValue ( const Expr E,
LValue  dest,
bool  isInit 
)

EmitComplexExprIntoLValue - Emit the given expression of complex type and place its result into the specified l-value.

Definition at line 1097 of file CGExprComplex.cpp.

References getComplexType(), and clang::Expr::getType().

Referenced by EmitDeclInit(), and StoreAnyExprIntoOneUnit().

◆ EmitComplexPrePostIncDec()

CodeGenFunction::ComplexPairTy CodeGenFunction::EmitComplexPrePostIncDec ( const UnaryOperator E,
LValue  LV,
bool  isInc,
bool  isPre 
)

Definition at line 919 of file CGExpr.cpp.

◆ EmitComplexToScalarConversion()

Value * CodeGenFunction::EmitComplexToScalarConversion ( ComplexPairTy  Src,
QualType  SrcTy,
QualType  DstTy,
SourceLocation  Loc 
)

Emit a conversion from the specified complex type to the specified destination type, where the destination type is an LLVM scalar type.

Definition at line 3854 of file CGExprScalar.cpp.

References EmitScalarPrePostIncDec(), and clang::Type::isAnyComplexType().

Referenced by convertToScalarValue().

◆ EmitCompoundAssignmentLValue()

LValue CodeGenFunction::EmitCompoundAssignmentLValue ( const CompoundAssignOperator E)

◆ EmitCompoundLiteralLValue()

LValue CodeGenFunction::EmitCompoundLiteralLValue ( const CompoundLiteralExpr E)

Definition at line 3886 of file CGExpr.cpp.

◆ EmitCompoundStmt()

Address CodeGenFunction::EmitCompoundStmt ( const CompoundStmt S,
bool  GetLast = false,
AggValueSlot  AggSlot = AggValueSlot::ignored() 
)

EmitCompoundStmt - Emit a compound statement {..} node.

If GetLast is true, this captures the expression result of the last sub-statement and returns it (for use by the statement expression extension).

Definition at line 372 of file CGStmt.cpp.

Referenced by ShouldNullCheckClassCastValue().

◆ EmitCompoundStmtWithoutScope()

Address CodeGenFunction::EmitCompoundStmtWithoutScope ( const CompoundStmt S,
bool  GetLast = false,
AggValueSlot  AVS = AggValueSlot::ignored() 
)

Definition at line 384 of file CGStmt.cpp.

Referenced by GenerateObjCMethod().

◆ EmitConditionalOperatorLValue()

LValue CodeGenFunction::EmitConditionalOperatorLValue ( const AbstractConditionalOperator E)

◆ EmitConstructorBody()

void CodeGenFunction::EmitConstructorBody ( FunctionArgList Args)

EmitConstructorBody - Emits the body of the current constructor.

Definition at line 805 of file CGClass.cpp.

References Builder, CGM, clang::CodeGen::CGBuilderTy::CreateBitCast(), clang::CodeGen::CGBuilderTy::CreateLoad(), clang::CodeGen::CGBuilderTy::CreateMemCpy(), clang::Ctor_Base, clang::Ctor_Complete, EmitLValueForAnyFieldInitialization(), EmitLValueForFieldInitialization(), EmitMemberInitializer(), clang::CodeGen::CodeGenFunction::RunCleanupsScope::ForceCleanup(), clang::CodeGen::LValue::getAddress(), GetAddrOfLocalVar(), clang::CXXCtorInitializer::getAnyMember(), clang::ASTContext::getASTRecordLayout(), clang::CodeGen::LValue::getBitFieldAddress(), clang::CodeGen::CGRecordLayout::getBitFieldInfo(), clang::FunctionDecl::getBody(), clang::CodeGen::CodeGenTypes::getCGRecordLayout(), clang::ASTContext::getCharWidth(), clang::CXXConstructExpr::getConstructor(), getContext(), clang::CodeGen::CodeGenModule::getCXXABI(), clang::FieldDecl::getFieldIndex(), clang::CXXCtorInitializer::getInit(), clang::ASTContext::getLangOpts(), getLangOpts(), getLLVMContext(), clang::Decl::getLocEnd(), clang::CXXCtorInitializer::getMember(), clang::CXXMethodDecl::getParent(), clang::QualType::getQualifiers(), clang::CharUnits::getQuantity(), clang::CodeGen::CGCXXABI::getSrcArgforCopyCtor(), clang::CodeGen::Address::getType(), clang::ValueDecl::getType(), clang::ASTContext::getTypeDeclType(), getTypes(), clang::ASTContext::getTypeSize(), clang::Qualifiers::hasObjCLifetime(), clang::Qualifiers::hasVolatile(), clang::CodeGen::LValue::isBitField(), clang::CXXConstructorDecl::isCopyOrMoveConstructor(), clang::FunctionDecl::isDefaulted(), clang::QualType::isDestructedType(), isMemcpyEquivalentSpecialMember(), clang::Type::isReferenceType(), clang::QualType::isTriviallyCopyableType(), LoadCXXThisAddress(), MakeAddrLValue(), MakeNaturalAlignAddrLValue(), needsEHCleanup(), clang::LangOptions::NonGC, pushEHDestroy(), SanOpts, clang::SanitizerSet::set(), clang::CodeGen::CGBitFieldInfo::StorageOffset, clang::ASTContext::toBits(), clang::ASTContext::toCharUnitsFromBits(), and clang::CodeGen::Type.

Referenced by GenerateCode().

◆ EmitContinueStmt()

void CodeGenFunction::EmitContinueStmt ( const ContinueStmt S)

Definition at line 1125 of file CGStmt.cpp.

◆ EmitCoreturnStmt()

void CodeGenFunction::EmitCoreturnStmt ( const CoreturnStmt S)

Definition at line 233 of file CGCoroutine.cpp.

◆ EmitCoroutineBody()

void CodeGenFunction::EmitCoroutineBody ( const CoroutineBodyStmt S)

Definition at line 501 of file CGCoroutine.cpp.

◆ EmitCoroutineIntrinsic()

RValue CodeGenFunction::EmitCoroutineIntrinsic ( const CallExpr E,
unsigned int  IID 
)

Definition at line 633 of file CGCoroutine.cpp.

◆ EmitCoyieldExpr()

RValue CodeGenFunction::EmitCoyieldExpr ( const CoyieldExpr E,
AggValueSlot  aggSlot = AggValueSlot::ignored(),
bool  ignoreResult = false 
)

Definition at line 226 of file CGCoroutine.cpp.

◆ EmitCoyieldLValue()

LValue CodeGenFunction::EmitCoyieldLValue ( const CoyieldExpr E)

Definition at line 269 of file CGCoroutine.cpp.

◆ EmitCtorPrologue()

void CodeGenFunction::EmitCtorPrologue ( const CXXConstructorDecl CD,
CXXCtorType  CtorType,
FunctionArgList Args 
)

EmitCtorPrologue - This routine generates necessary code to initialize base classes and non-static data members belonging to this constructor.

Definition at line 1241 of file CGClass.cpp.

References clang::CXXMethodDecl::getParent(), clang::CXXConstructorDecl::init_begin(), and clang::CXXConstructorDecl::isDelegatingConstructor().

◆ EmitCUDAKernelCallExpr()

RValue CodeGenFunction::EmitCUDAKernelCallExpr ( const CUDAKernelCallExpr E,
ReturnValueSlot  ReturnValue 
)

Definition at line 464 of file CGExprCXX.cpp.

◆ EmitCXXAggrConstructorCall() [1/2]

void CodeGenFunction::EmitCXXAggrConstructorCall ( const CXXConstructorDecl ctor,
const ArrayType arrayType,
Address  arrayBegin,
const CXXConstructExpr E,
bool  zeroInitialize = false 
)

EmitCXXAggrConstructorCall - Emit a loop to call a particular constructor for each of several members of an array.

Parameters
ctorthe constructor to call for each element
arrayTypethe type of the array to initialize
arrayBeginan arrayType*
zeroInitializetrue if each element should be zero-initialized before it is constructed

Definition at line 1859 of file CGClass.cpp.

◆ EmitCXXAggrConstructorCall() [2/2]

void CodeGenFunction::EmitCXXAggrConstructorCall ( const CXXConstructorDecl ctor,
llvm::Value numElements,
Address  arrayBase,
const CXXConstructExpr E,
bool  zeroInitialize = false 
)

EmitCXXAggrConstructorCall - Emit a loop to call a particular constructor for each of several members of an array.

Parameters
ctorthe constructor to call for each element
numElementsthe number of elements in the array; may be zero
arrayBasea T*, where T is the type constructed by ctor
zeroInitializetrue if each element should be zero-initialized before it is constructed

Definition at line 1878 of file CGClass.cpp.

◆ EmitCXXBindTemporaryLValue()

LValue CodeGenFunction::EmitCXXBindTemporaryLValue ( const CXXBindTemporaryExpr E)

Definition at line 4380 of file CGExpr.cpp.

◆ EmitCXXConstructExpr()

void CodeGenFunction::EmitCXXConstructExpr ( const CXXConstructExpr E,
AggValueSlot  Dest 
)

Definition at line 557 of file CGExprCXX.cpp.

Referenced by isBlockVarRef().

◆ EmitCXXConstructLValue()

LValue CodeGenFunction::EmitCXXConstructLValue ( const CXXConstructExpr E)

Definition at line 4356 of file CGExpr.cpp.

◆ EmitCXXConstructorCall() [1/2]

void CodeGenFunction::EmitCXXConstructorCall ( const CXXConstructorDecl D,
CXXCtorType  Type,
bool  ForVirtualBase,
bool  Delegating,
Address  This,
const CXXConstructExpr E 
)

Definition at line 1988 of file CGClass.cpp.

◆ EmitCXXConstructorCall() [2/2]

void CodeGenFunction::EmitCXXConstructorCall ( const CXXConstructorDecl D,
CXXCtorType  Type,
bool  ForVirtualBase,
bool  Delegating,
Address  This,
CallArgList Args 
)

◆ EmitCXXDeleteExpr()

void CodeGenFunction::EmitCXXDeleteExpr ( const CXXDeleteExpr E)

Definition at line 1965 of file CGExprCXX.cpp.

◆ EmitCXXDestructorCall() [1/2]

void CodeGenFunction::EmitCXXDestructorCall ( const CXXDestructorDecl D,
CXXDtorType  Type,
bool  ForVirtualBase,
bool  Delegating,
Address  This 
)

◆ EmitCXXDestructorCall() [2/2]

RValue CodeGenFunction::EmitCXXDestructorCall ( const CXXDestructorDecl DD,
const CGCallee Callee,
llvm::Value This,
llvm::Value ImplicitParam,
QualType  ImplicitParamTy,
const CallExpr E,
StructorType  Type 
)

Definition at line 96 of file CGExprCXX.cpp.

References commonEmitCXXMemberOrOperatorCall().

◆ EmitCXXForRangeStmt()

void CodeGenFunction::EmitCXXForRangeStmt ( const CXXForRangeStmt S,
ArrayRef< const Attr *>  Attrs = None 
)

Definition at line 928 of file CGStmt.cpp.

◆ EmitCXXGlobalVarDeclInit()

void CodeGenFunction::EmitCXXGlobalVarDeclInit ( const VarDecl D,
llvm::Constant *  DeclPtr,
bool  PerformInit 
)

◆ EmitCXXGuardedInit()

void CodeGenFunction::EmitCXXGuardedInit ( const VarDecl D,
llvm::GlobalVariable *  DeclPtr,
bool  PerformInit 
)

Emit code in this function to perform a guarded variable initialization.

Guarded initializations are used when it's not possible to prove that an initialization will be done exactly once, e.g. with a static local variable or a static data member of a class template.

Definition at line 251 of file CGDeclCXX.cpp.

References CGM, clang::CodeGen::CGCXXABI::EmitGuardedInit(), clang::CodeGen::CodeGenModule::Error(), clang::CodeGen::CodeGenModule::getCodeGenOpts(), clang::CodeGen::CodeGenModule::getCXXABI(), and clang::Decl::getLocation().

Referenced by AddInitializerToStaticVarDecl(), and GenerateCXXGlobalVarDeclInitFunc().

◆ EmitCXXGuardedInitBranch()

void CodeGenFunction::EmitCXXGuardedInitBranch ( llvm::Value NeedsInit,
llvm::BasicBlock *  InitBlock,
llvm::BasicBlock *  NoInitBlock,
GuardKind  Kind,
const VarDecl D 
)

Emit a branch to select whether or not to perform guarded initialization.

Definition at line 265 of file CGDeclCXX.cpp.

References Builder, CGM, clang::CodeGen::CodeGenModule::getLLVMContext(), clang::VarDecl::getTLSKind(), clang::VarDecl::isLocalVarDecl(), TlsGuard, and VariableGuard.

Referenced by GenerateCXXGlobalInitFunc().

◆ EmitCXXMemberCallExpr()

RValue CodeGenFunction::EmitCXXMemberCallExpr ( const CXXMemberCallExpr E,
ReturnValueSlot  ReturnValue 
)

◆ EmitCXXMemberDataPointerAddress()

Address CodeGenFunction::EmitCXXMemberDataPointerAddress ( const Expr E,
Address  base,
llvm::Value memberPtr,
const MemberPointerType memberPtrType,
LValueBaseInfo BaseInfo = nullptr,
TBAAAccessInfo TBAAInfo = nullptr 
)

Emit the address of a field using a member data pointer.

Parameters
EOnly used for emergency diagnostics

Definition at line 129 of file CGClass.cpp.

◆ EmitCXXMemberOrOperatorCall()

RValue CodeGenFunction::EmitCXXMemberOrOperatorCall ( const CXXMethodDecl Method,
const CGCallee Callee,
ReturnValueSlot  ReturnValue,
llvm::Value This,
llvm::Value ImplicitParam,
QualType  ImplicitParamTy,
const CallExpr E,
CallArgList RtlArgs 
)

◆ EmitCXXMemberOrOperatorMemberCallExpr()

RValue CodeGenFunction::EmitCXXMemberOrOperatorMemberCallExpr ( const CallExpr CE,
const CXXMethodDecl MD,
ReturnValueSlot  ReturnValue,
bool  HasQualifier,
NestedNameSpecifier Qualifier,
bool  IsArrow,
const Expr Base 
)

◆ EmitCXXMemberPointerCallExpr()

RValue CodeGenFunction::EmitCXXMemberPointerCallExpr ( const CXXMemberCallExpr E,
ReturnValueSlot  ReturnValue 
)

Definition at line 401 of file CGExprCXX.cpp.

◆ EmitCXXNewExpr()

llvm::Value * CodeGenFunction::EmitCXXNewExpr ( const CXXNewExpr E)

Definition at line 1522 of file CGExprCXX.cpp.

◆ EmitCXXOperatorMemberCallExpr()

RValue CodeGenFunction::EmitCXXOperatorMemberCallExpr ( const CXXOperatorCallExpr E,
const CXXMethodDecl MD,
ReturnValueSlot  ReturnValue 
)

Definition at line 454 of file CGExprCXX.cpp.

◆ EmitCXXPseudoDestructorExpr()

RValue CodeGenFunction::EmitCXXPseudoDestructorExpr ( const CXXPseudoDestructorExpr E)

Definition at line 107 of file CGExprCXX.cpp.

◆ EmitCXXTemporary()

void CodeGenFunction::EmitCXXTemporary ( const CXXTemporary Temporary,
QualType  TempType,
Address  Ptr 
)

Emits all the code to cause the given temporary to be cleaned up.

Definition at line 1260 of file CGCleanup.cpp.

References clang::CodeGen::NormalAndEHCleanup.

Referenced by isBlockVarRef().

◆ EmitCXXThrowExpr()

void CodeGenFunction::EmitCXXThrowExpr ( const CXXThrowExpr E,
bool  KeepInsertionPoint = true 
)

Definition at line 412 of file CGException.cpp.

Referenced by EmitBranchOnBoolExpr(), and EmitLValueOrThrowExpression().

◆ EmitCXXTryStmt()

void CodeGenFunction::EmitCXXTryStmt ( const CXXTryStmt S)

Definition at line 545 of file CGException.cpp.

◆ EmitCXXTypeidExpr()

llvm::Value * CodeGenFunction::EmitCXXTypeidExpr ( const CXXTypeidExpr E)

Definition at line 2094 of file CGExprCXX.cpp.

◆ EmitCXXTypeidLValue()

LValue CodeGenFunction::EmitCXXTypeidLValue ( const CXXTypeidExpr E)

Definition at line 4365 of file CGExpr.cpp.

◆ EmitCXXUuidofExpr()

Address CodeGenFunction::EmitCXXUuidofExpr ( const CXXUuidofExpr E)

Definition at line 4369 of file CGExpr.cpp.

◆ EmitCXXUuidofLValue()

LValue CodeGenFunction::EmitCXXUuidofLValue ( const CXXUuidofExpr E)

Definition at line 4374 of file CGExpr.cpp.

◆ EmitDecl()

void CodeGenFunction::EmitDecl ( const Decl D)

EmitDecl - Emit a declaration.

This function can be called with a null (unreachable) insert point.

Definition at line 41 of file CGDecl.cpp.

References CGM, clang::CodeGen::CodeGenModule::EmitOMPDeclareReduction(), EmitVarDecl(), EmitVariablyModifiedType(), getDebugInfo(), clang::Decl::getKind(), clang::TypedefNameDecl::getUnderlyingType(), clang::VarDecl::isLocalVarDecl(), and Label.

◆ EmitDeclRefExprDbgValue()

void CodeGenFunction::EmitDeclRefExprDbgValue ( const DeclRefExpr E,
const APValue Init 
)

Definition at line 2109 of file CodeGenFunction.cpp.

Referenced by tryEmitAsConstant().

◆ EmitDeclRefLValue()

LValue CodeGenFunction::EmitDeclRefLValue ( const DeclRefExpr E)

Definition at line 2346 of file CGExpr.cpp.

Referenced by LoadObjCSelf().

◆ EmitDeclStmt()

void CodeGenFunction::EmitDeclStmt ( const DeclStmt S)

Definition at line 1103 of file CGStmt.cpp.

◆ EmitDefaultStmt()

void CodeGenFunction::EmitDefaultStmt ( const DefaultStmt S)

Definition at line 1301 of file CGStmt.cpp.

◆ EmitDelegateCallArg()

void CodeGenFunction::EmitDelegateCallArg ( CallArgList args,
const VarDecl param,
SourceLocation  loc 
)

EmitDelegateCallArg - We are performing a delegate call; that is, the current function is delegating to another one.

Produce a r-value suitable for passing the given parameter.

Definition at line 3028 of file CGCall.cpp.

References clang::CodeGen::CallArgList::add(), clang::CodeGen::RValue::get(), clang::ValueDecl::getType(), isInAllocaArgument(), clang::Type::isReferenceType(), and clang::ast_matchers::type.

◆ EmitDelegateCXXConstructorCall()

void CodeGenFunction::EmitDelegateCXXConstructorCall ( const CXXConstructorDecl Ctor,
CXXCtorType  CtorType,
const FunctionArgList Args,
SourceLocation  Loc 
)

Definition at line 2266 of file CGClass.cpp.

◆ EmitDelegatingCXXConstructorCall()

void CodeGenFunction::EmitDelegatingCXXConstructorCall ( const CXXConstructorDecl Ctor,
const FunctionArgList Args 
)

◆ EmitDeleteCall()

void CodeGenFunction::EmitDeleteCall ( const FunctionDecl DeleteFD,
llvm::Value Ptr,
QualType  DeleteTy,
llvm::Value NumElements = nullptr,
CharUnits  CookieSize = CharUnits() 
)

◆ emitDestroy()

void CodeGenFunction::emitDestroy ( Address  addr,
QualType  type,
Destroyer destroyer,
bool  useEHCleanupForArray 
)

emitDestroy - Immediately perform the destruction of the given object.

Parameters
addr- the address of the object; a type*
type- the type of the object; if an array type, all objects are destroyed in reverse order
destroyer- the function to call to destroy individual elements
useEHCleanupForArray- whether an EH cleanup should be used when destroying array elements, in case one of the destructions throws an exception

Definition at line 1537 of file CGDecl.cpp.

References clang::CharUnits::alignmentOfArrayElement(), clang::ast_matchers::arrayType, Builder, emitArrayDestroy(), emitArrayLength(), clang::CodeGen::Address::getAlignment(), clang::ASTContext::getAsArrayType(), getContext(), clang::CodeGen::Address::getPointer(), and length().

Referenced by EmitStaticVarDecl(), clang::CodeGen::emitThreadPrivateVarInit(), generateDestroyHelper(), and GenerateObjCSetter().

◆ EmitDestructorBody()

void CodeGenFunction::EmitDestructorBody ( FunctionArgList Args)

EmitDestructorBody - Emits the body of the current destructor.

Definition at line 1391 of file CGClass.cpp.

References clang::Dtor_Base, clang::CXXMethodDecl::getParent(), and clang::CXXRecordDecl::isAbstract().

Referenced by GenerateCode().

◆ EmitDoStmt()

void CodeGenFunction::EmitDoStmt ( const DoStmt S,
ArrayRef< const Attr *>  Attrs = None 
)

Definition at line 767 of file CGStmt.cpp.

◆ EmitDynamicCast()

llvm::Value * CodeGenFunction::EmitDynamicCast ( Address  V,
const CXXDynamicCastExpr DCE 
)

◆ EmitEndEHSpec()

void CodeGenFunction::EmitEndEHSpec ( const Decl D)

◆ EmitExprAsInit()

void CodeGenFunction::EmitExprAsInit ( const Expr init,
const ValueDecl D,
LValue  lvalue,
bool  capturedByInit 
)

EmitExprAsInit - Emits the code necessary to initialize a location in memory with the given initializer.

Emit an expression as an initializer for a variable at the given location.

The expression is not necessarily the normal initializer for the variable, and the address is not necessarily its normal location.

Parameters
initthe initializing expression
varthe variable to act as if we're initializing
locthe address to initialize; its type is a pointer to the LLVM mapping of the variable's type
alignmentthe alignment of the address
capturedByInittrue if the variable is a __block variable whose address is potentially changed by the initializer

Definition at line 1326 of file CGDecl.cpp.

References clang::CodeGen::AggValueSlot::DoesNotNeedGCBarriers, drillIntoBlockVariable(), EmitAggExpr(), EmitAtomicInit(), EmitComplexExpr(), EmitReferenceBindingToExpr(), EmitScalarInit(), EmitStoreOfComplex(), EmitStoreThroughLValue(), clang::CodeGen::AggValueSlot::forLValue(), getEvaluationKind(), clang::ValueDecl::getType(), clang::Type::isAtomicType(), clang::CodeGen::AggValueSlot::IsDestructed, clang::CodeGen::AggValueSlot::IsNotAliased, clang::Type::isReferenceType(), clang::CodeGen::TEK_Aggregate, clang::CodeGen::TEK_Complex, and clang::CodeGen::TEK_Scalar.

Referenced by EmitAutoVarInit(), and emitPrivatesInit().

◆ EmitExtendGCLifetime()

void CodeGenFunction::EmitExtendGCLifetime ( llvm::Value object)

EmitExtendGCLifetime - Given a pointer to an Objective-C object, make sure it survives garbage collection until this point.

Definition at line 3193 of file CGObjC.cpp.

References clang::CodeGen::RequiredArgs::All, Builder, clang::CodeGen::CGBuilderTy::CreateBitCast(), EmitNounwindRuntimeCall(), clang::CodeGen::CodeGenTypeCache::VoidPtrTy, and clang::CodeGen::CodeGenTypeCache::VoidTy.

◆ EmitExtVectorElementExpr()

LValue CodeGenFunction::EmitExtVectorElementExpr ( const ExtVectorElementExpr E)

Definition at line 3594 of file CGExpr.cpp.

◆ EmitExtVectorElementLValue()

Address CodeGenFunction::EmitExtVectorElementLValue ( LValue  V)

◆ EmitFieldAnnotations()

Address CodeGenFunction::EmitFieldAnnotations ( const FieldDecl D,
Address  V 
)

Emit field annotations for the given field & value.

Returns the annotation result.

Definition at line 2167 of file CodeGenFunction.cpp.

References CGM, clang::CodeGen::CodeGenModule::getIntrinsic(), clang::CodeGen::Address::getPointer(), clang::Decl::hasAttr(), clang::CodeGen::CodeGenTypeCache::Int8PtrTy, and clang::CodeGen::Type.

Referenced by EmitLValueForField().

◆ EmitForStmt()

void CodeGenFunction::EmitForStmt ( const ForStmt S,
ArrayRef< const Attr *>  Attrs = None 
)

Definition at line 829 of file CGStmt.cpp.

◆ EmitForwardingCallToLambda()

void CodeGenFunction::EmitForwardingCallToLambda ( const CXXMethodDecl LambdaCallOperator,
CallArgList CallArgs 
)

◆ EmitFromMemory()

llvm::Value * CodeGenFunction::EmitFromMemory ( llvm::Value Value,
QualType  Ty 
)

EmitFromMemory - Change a scalar value from its memory representation to its value representation.

Definition at line 1613 of file CGExpr.cpp.

References Builder, getContext(), getTypeSize(), and hasBooleanRepresentation().

Referenced by EmitFromInt(), EmitLoadOfScalar(), and EmitStoreThroughBitfieldLValue().

◆ EmitFunctionBody()

void CodeGenFunction::EmitFunctionBody ( FunctionArgList Args,
const Stmt Body 
)

Definition at line 1149 of file CodeGenFunction.cpp.

References incrementProfileCounter().

Referenced by GenerateCode().

◆ EmitFunctionEpilog()

void CodeGenFunction::EmitFunctionEpilog ( const CGFunctionInfo FI,
bool  EmitRetDbgLoc,
SourceLocation  EndLoc 
)

EmitFunctionEpilog - Emit the target specific LLVM code to return the given temporary.

Definition at line 2758 of file CGCall.cpp.

References clang::CodeGen::CGFunctionInfo::isNoReturn().

Referenced by FinishFunction().

◆ EmitFunctionProlog()

void CodeGenFunction::EmitFunctionProlog ( const CGFunctionInfo FI,
llvm::Function *  Fn,
const FunctionArgList Args 
)

EmitFunctionProlog - Emit the target specific LLVM code to load the arguments for the given function.

This is also responsible for naming the LLVM function arguments.

Definition at line 2190 of file CGCall.cpp.

References clang::CodeGen::Type.

Referenced by StartFunction().

◆ EmitGotoStmt()

void CodeGenFunction::EmitGotoStmt ( const GotoStmt S)

Definition at line 570 of file CGStmt.cpp.

◆ EmitHexagonBuiltinExpr()

Value * CodeGenFunction::EmitHexagonBuiltinExpr ( unsigned  BuiltinID,
const CallExpr E 
)

Definition at line 10264 of file CGBuiltin.cpp.

References clang::CallExpr::getArg().

Referenced by EmitTargetArchBuiltinExpr().

◆ EmitIfStmt()

void CodeGenFunction::EmitIfStmt ( const IfStmt S)

Definition at line 602 of file CGStmt.cpp.

◆ EmitIgnoredExpr()

void CodeGenFunction::EmitIgnoredExpr ( const Expr E)

EmitIgnoredExpr - Emit an expression in a context which ignores the result.

EmitIgnoredExpr - Emit code to compute the specified expression, ignoring the result.

Definition at line 161 of file CGExpr.cpp.

Referenced by emitCombinerOrInitializer(), emitInitWithReductionInitializer(), emitPostUpdateForReductionClause(), emitReductionCombiner(), EmitVariablyModifiedType(), GetIntrinsic(), and ShouldNullCheckClassCastValue().

◆ emitImplicitAssignmentOperatorBody()

void CodeGenFunction::emitImplicitAssignmentOperatorBody ( FunctionArgList Args)

Definition at line 1501 of file CGClass.cpp.

References clang::FunctionDecl::getBody(), and clang::Stmt::getSourceRange().

Referenced by GenerateCode().

◆ EmitIndirectGotoStmt()

void CodeGenFunction::EmitIndirectGotoStmt ( const IndirectGotoStmt S)

Definition at line 581 of file CGStmt.cpp.

◆ EmitInheritedCXXConstructorCall()

void CodeGenFunction::EmitInheritedCXXConstructorCall ( const CXXConstructorDecl D,
bool  ForVirtualBase,
Address  This,
bool  InheritedFromVBase,
const CXXInheritedCtorInitExpr E 
)

Emit a call to a constructor inherited from a base class, passing the current constructor's arguments along unmodified (without even making a copy).

Definition at line 2122 of file CGClass.cpp.

Referenced by isBlockVarRef().

◆ EmitInitializerForField()

void CodeGenFunction::EmitInitializerForField ( FieldDecl Field,
LValue  LHS,
Expr Init 
)

◆ EmitInitListLValue()

LValue CodeGenFunction::EmitInitListLValue ( const InitListExpr E)

Definition at line 3905 of file CGExpr.cpp.

◆ EmitInlinedInheritingCXXConstructorCall()

void CodeGenFunction::EmitInlinedInheritingCXXConstructorCall ( const CXXConstructorDecl Ctor,
CXXCtorType  CtorType,
bool  ForVirtualBase,
bool  Delegating,
CallArgList Args 
)

Emit a call to an inheriting constructor (that is, one that invokes a constructor inherited from a base class) by inlining its definition.

This is necessary if the ABI does not support forwarding the arguments to the base class constructor (because they're variadic or similar).

Definition at line 2169 of file CGClass.cpp.

◆ EmitIvarOffset()

llvm::Value * CodeGenFunction::EmitIvarOffset ( const ObjCInterfaceDecl Interface,
const ObjCIvarDecl Ivar 
)

◆ EmitLabel()

void CodeGenFunction::EmitLabel ( const LabelDecl D)

◆ EmitLabelStmt()

void CodeGenFunction::EmitLabelStmt ( const LabelStmt S)

Definition at line 561 of file CGStmt.cpp.

◆ EmitLambdaBlockInvokeBody()

void CodeGenFunction::EmitLambdaBlockInvokeBody ( )

◆ EmitLambdaDelegatingInvokeBody()

void CodeGenFunction::EmitLambdaDelegatingInvokeBody ( const CXXMethodDecl MD)

◆ EmitLambdaExpr()

void CodeGenFunction::EmitLambdaExpr ( const LambdaExpr E,
AggValueSlot  Dest 
)

Definition at line 2224 of file CGExprCXX.cpp.

◆ EmitLambdaLValue()

LValue CodeGenFunction::EmitLambdaLValue ( const LambdaExpr E)

Definition at line 4389 of file CGExpr.cpp.

◆ EmitLambdaStaticInvokeBody()

void CodeGenFunction::EmitLambdaStaticInvokeBody ( const CXXMethodDecl MD)

Definition at line 2849 of file CGClass.cpp.

References clang::FunctionDecl::isVariadic().

Referenced by GenerateCode().

◆ EmitLandingPad()

llvm::BasicBlock * CodeGenFunction::EmitLandingPad ( )

◆ EmitLifetimeEnd()

void CodeGenFunction::EmitLifetimeEnd ( llvm::Value Size,
llvm::Value Addr 
)

◆ EmitLifetimeStart()

llvm::Value * CodeGenFunction::EmitLifetimeStart ( uint64_t  Size,
llvm::Value Addr 
)

Emit a lifetime.begin marker if some criteria are satisfied.

Returns
a pointer to the temporary size Value if a marker was emitted, null otherwise

Definition at line 938 of file CGDecl.cpp.

References clang::CodeGen::CodeGenTypeCache::AllocaInt8PtrTy, Builder, CGM, clang::CodeGen::CGBuilderTy::CreateBitCast(), clang::CodeGen::CodeGenModule::getLLVMLifetimeStartFn(), and clang::CodeGen::CodeGenTypeCache::Int64Ty.

Referenced by EmitAutoVarAlloca().

◆ EmitLoadOfBitfieldLValue()

RValue CodeGenFunction::EmitLoadOfBitfieldLValue ( LValue  LV,
SourceLocation  Loc 
)

◆ EmitLoadOfComplex()

ComplexPairTy CodeGenFunction::EmitLoadOfComplex ( LValue  src,
SourceLocation  loc 
)

EmitLoadOfComplex - Load a complex number from the specified l-value.

EmitLoadOfComplex - Load a complex number from the specified address.

Definition at line 1113 of file CGExprComplex.cpp.

Referenced by convertTempToRValue(), emitInitWithReductionInitializer(), EmitRValueForField(), generateObjCGetterBody(), and InitCatchParam().

◆ EmitLoadOfExtVectorElementLValue()

RValue CodeGenFunction::EmitLoadOfExtVectorElementLValue ( LValue  V)

◆ EmitLoadOfGlobalRegLValue()

RValue CodeGenFunction::EmitLoadOfGlobalRegLValue ( LValue  LV)

◆ EmitLoadOfLValue()

RValue CodeGenFunction::EmitLoadOfLValue ( LValue  LV,
SourceLocation  Loc 
)

◆ EmitLoadOfPointer()

Address CodeGenFunction::EmitLoadOfPointer ( Address  Ptr,
const PointerType PtrTy,
LValueBaseInfo BaseInfo = nullptr,
TBAAAccessInfo TBAAInfo = nullptr 
)

◆ EmitLoadOfPointerLValue()

LValue CodeGenFunction::EmitLoadOfPointerLValue ( Address  Ptr,
const PointerType PtrTy 
)

◆ EmitLoadOfReference()

Address CodeGenFunction::EmitLoadOfReference ( LValue  RefLVal,
LValueBaseInfo PointeeBaseInfo = nullptr,
TBAAAccessInfo PointeeTBAAInfo = nullptr 
)

◆ EmitLoadOfReferenceLValue() [1/2]

LValue CodeGenFunction::EmitLoadOfReferenceLValue ( LValue  RefLVal)

◆ EmitLoadOfReferenceLValue() [2/2]

LValue clang::CodeGen::CodeGenFunction::EmitLoadOfReferenceLValue ( Address  RefAddr,
QualType  RefTy,
AlignmentSource  Source = AlignmentSource::Type 
)
inline

◆ EmitLoadOfScalar() [1/3]

llvm::Value* clang::CodeGen::CodeGenFunction::EmitLoadOfScalar ( Address  Addr,
bool  Volatile,
QualType  Ty,
SourceLocation  Loc,
AlignmentSource  Source = AlignmentSource::Type,
bool  isNontemporal = false 
)
inline

◆ EmitLoadOfScalar() [2/3]

llvm::Value * CodeGenFunction::EmitLoadOfScalar ( Address  Addr,
bool  Volatile,
QualType  Ty,
SourceLocation  Loc,
LValueBaseInfo  BaseInfo,
TBAAAccessInfo  TBAAInfo,
bool  isNontemporal = false 
)

◆ EmitLoadOfScalar() [3/3]

llvm::Value * CodeGenFunction::EmitLoadOfScalar ( LValue  lvalue,
SourceLocation  Loc 
)

EmitLoadOfScalar - Load a scalar value from an address, taking care to appropriately convert from the memory representation to the LLVM value representation.

The l-value must be a simple l-value.

Definition at line 1432 of file CGExpr.cpp.

References EmitLoadOfScalar(), clang::CodeGen::LValue::getAddress(), clang::CodeGen::LValue::getBaseInfo(), clang::CodeGen::LValue::getTBAAInfo(), clang::CodeGen::LValue::getType(), clang::CodeGen::LValue::isNontemporal(), and clang::CodeGen::LValue::isVolatile().

◆ EmitLValue()

LValue CodeGenFunction::EmitLValue ( const Expr E)

EmitLValue - Emit code to compute a designator that specifies the location of the expression.

This can return one of two things: a simple address or a bitfield reference. In either case, the LLVM Value* in the LValue structure is guaranteed to be an LLVM pointer type.

If this returns a bitfield reference, nothing about the pointee type of the LLVM value is known: For example, it may not be a pointer to an integer.

If this returns a normal address, and if the lvalue's C type is fixed size, this method guarantees that the returned pointer type will point to an LLVM type of the same size of the lvalue's type. If the lvalue has a variable length type, this is not possible.

Definition at line 1170 of file CGExpr.cpp.

Referenced by AddVariableConstraints(), clang::CodeGen::ReductionCodeGen::adjustPrivateAddress(), clang::CodeGen::CodeGenFunction::OpaqueValueMappingData::bind(), EmitARCStoreAutoreleasing(), EmitARCStoreStrong(), EmitARCStoreUnsafeUnretained(), EmitConditionalOperatorLValue(), emitCPPObjectAtomicSetterCall(), EmitLValueOrThrowExpression(), EmitOMPAtomicCaptureExpr(), EmitOMPAtomicReadExpr(), EmitOMPAtomicUpdateExpr(), EmitOMPHelperVar(), emitStructSetterCall(), emitWritebackArg(), isBlockVarRef(), tryEmitARCCopyWeakInit(), and tryEmitARCRetainLoadOfScalar().

◆ EmitLValueForField()

LValue CodeGenFunction::EmitLValueForField ( LValue  Base,
const FieldDecl Field 
)

Definition at line 3747 of file CGExpr.cpp.

References clang::CodeGen::TBAAAccessInfo::AccessType, clang::Qualifiers::addCVRQualifiers(), clang::CodeGen::TBAAAccessInfo::BaseType, Builder, CGM, clang::CodeGen::CodeGenTypes::ConvertTypeForMem(), clang::CodeGen::CGBuilderTy::CreateElementBitCast(), clang::CodeGen::CGBuilderTy::CreateStructGEP(), emitAddrOfFieldStorage(), EmitFieldAnnotations(), EmitLoadOfReference(), clang::CodeGen::LValue::getAddress(), clang::CodeGen::Address::getAlignment(), clang::CodeGen::LValueBaseInfo::getAlignmentSource(), clang::ASTContext::getASTRecordLayout(), clang::CodeGen::LValue::getBaseInfo(), clang::CodeGen::CGRecordLayout::getBitFieldInfo(), clang::CodeGen::CodeGenTypes::getCGRecordLayout(), clang::ASTContext::getCharWidth(), clang::CodeGen::CodeGenModule::getCodeGenOpts(), getContext(), clang::CodeGen::Address::getElementType(), clang::CodeGen::getFieldAlignmentSource(), clang::FieldDecl::getFieldIndex(), clang::ASTRecordLayout::getFieldOffset(), getLLVMContext(), clang::CodeGen::CGRecordLayout::getLLVMFieldNo(), clang::CodeGen::TBAAAccessInfo::getMayAliasInfo(), clang::NamedDecl::getName(), clang::Qualifiers::getObjCGCAttr(), clang::FieldDecl::getParent(), clang::Type::getPointeeType(), clang::CodeGen::Address::getPointer(), clang::CodeGen::LValue::getQuals(), clang::CharUnits::getQuantity(), clang::CodeGen::CodeGenModule::getTBAABaseTypeInfo(), clang::CodeGen::LValue::getTBAAInfo(), clang::CodeGen::CodeGenModule::getTBAATypeInfo(), clang::CodeGen::LValue::getType(), clang::ValueDecl::getType(), clang::CodeGen::CodeGenModule::getTypes(), clang::ASTContext::getTypeSizeInChars(), clang::CodeGen::LValue::getVRQualifiers(), hasAnyVptr(), clang::Decl::hasAttr(), clang::FieldDecl::isBitField(), clang::CodeGen::TBAAAccessInfo::isMayAlias(), clang::Type::isReferenceType(), clang::TagDecl::isUnion(), clang::Type::isVectorType(), MakeAddrLValue(), clang::CodeGen::LValue::MakeBitfield(), clang::CodeGen::TBAAAccessInfo::Offset, clang::Qualifiers::removeObjCGCAttr(), clang::Qualifiers::setVolatile(), clang::CodeGen::TBAAAccessInfo::Size, clang::CodeGen::CGBitFieldInfo::StorageOffset, clang::CodeGen::CGBitFieldInfo::StorageSize, clang::CodeGen::Type, clang::Qualifiers::Volatile, clang::Qualifiers::Weak, and clang::QualType::withCVRQualifiers().

Referenced by EmitCapturedFieldLValue(), emitDestructorsFunction(), EmitLValueForFieldInitialization(), EmitLValueForLambdaField(), emitPrivatesInit(), emitProxyTaskFunction(), emitReduceFiniFunction(), EmitRValueForField(), and emitTaskDupFunction().

◆ EmitLValueForFieldInitialization()

LValue CodeGenFunction::EmitLValueForFieldInitialization ( LValue  Base,
const FieldDecl Field 
)

◆ EmitLValueForIvar()

LValue CodeGenFunction::EmitLValueForIvar ( QualType  ObjectTy,
llvm::Value Base,
const ObjCIvarDecl Ivar,
unsigned  CVRQualifiers 
)

◆ EmitLValueForLambdaField()

LValue CodeGenFunction::EmitLValueForLambdaField ( const FieldDecl Field)

Given that we are currently emitting a lambda, emit an l-value for one of its members.

Definition at line 3692 of file CGExpr.cpp.

References CurCodeDecl, EmitLValueForField(), getContext(), clang::FieldDecl::getParent(), clang::ASTContext::getTagDeclType(), and MakeNaturalAlignAddrLValue().

Referenced by StartFunction().

◆ EmitMaterializeTemporaryExpr()

LValue CodeGenFunction::EmitMaterializeTemporaryExpr ( const MaterializeTemporaryExpr E)

Definition at line 396 of file CGExpr.cpp.

Referenced by createReferenceTemporary().

◆ EmitMemberExpr()

LValue CodeGenFunction::EmitMemberExpr ( const MemberExpr E)

Definition at line 3651 of file CGExpr.cpp.

◆ EmitMSVAListRef()

Address CodeGenFunction::EmitMSVAListRef ( const Expr E)

Emit a "reference" to a __builtin_ms_va_list; this is always the value of the expression, because a __builtin_ms_va_list is a pointer to a char.

Definition at line 2105 of file CodeGenFunction.cpp.

◆ EmitMSVCBuiltinExpr()

Value * CodeGenFunction::EmitMSVCBuiltinExpr ( MSVCIntrin  BuiltinID,
const CallExpr E 
)

◆ EmitMustTailThunk()

void CodeGenFunction::EmitMustTailThunk ( const CXXMethodDecl MD,
llvm::Value AdjustedThisPtr,
llvm::Value Callee 
)

Emit a musttail call for a thunk with a potentially adjusted this pointer.

Definition at line 378 of file CGVTables.cpp.

References clang::CodeGen::ABIArgInfo::isDirect(), clang::CodeGen::ABIArgInfo::isIndirect(), clang::CodeGen::ABIArgInfo::isSRetAfterThis(), and clang::CodeGen::Type.

◆ EmitNeonCall()

Value * CodeGenFunction::EmitNeonCall ( llvm::Function *  F,
SmallVectorImpl< llvm::Value *> &  O,
const char *  name,
unsigned  shift = 0,
bool  rightshift = false 
)

Definition at line 3441 of file CGBuiltin.cpp.

Referenced by EmitCommonNeonSISDBuiltinExpr().

◆ EmitNeonRShiftImm()

Value * CodeGenFunction::EmitNeonRShiftImm ( llvm::Value Vec,
llvm::Value Amt,
llvm::Type Ty,
bool  usgn,
const char *  name 
)

Definition at line 3462 of file CGBuiltin.cpp.

References clang::prec::Shift.

◆ EmitNeonShiftVector()

Value * CodeGenFunction::EmitNeonShiftVector ( llvm::Value V,
llvm::Type Ty,
bool  negateForRightShift 
)

Definition at line 3455 of file CGBuiltin.cpp.

◆ EmitNeonSplat()

Value * CodeGenFunction::EmitNeonSplat ( llvm::Value V,
llvm::Constant *  Idx 
)

Definition at line 3435 of file CGBuiltin.cpp.

◆ EmitNewArrayInitializer()

void CodeGenFunction::EmitNewArrayInitializer ( const CXXNewExpr E,
QualType  elementType,
llvm::Type ElementTy,
Address  NewPtr,
llvm::Value NumElements,
llvm::Value AllocSizeWithoutCookie 
)

Definition at line 951 of file CGExprCXX.cpp.

◆ EmitNonNullArgCheck()

void CodeGenFunction::EmitNonNullArgCheck ( RValue  RV,
QualType  ArgType,
SourceLocation  ArgLoc,
AbstractCallee  AC,
unsigned  ParmNum 
)

◆ EmitNoreturnRuntimeCallOrInvoke()

void CodeGenFunction::EmitNoreturnRuntimeCallOrInvoke ( llvm::Value callee,
ArrayRef< llvm::Value *>  args 
)

Emits a call or invoke to the given noreturn runtime function.

Definition at line 3641 of file CGCall.cpp.

References getBundlesForFunclet().

Referenced by emitCXXDestructor(), and getThrowFn().

◆ EmitNounwindRuntimeCall() [1/2]

llvm::CallInst* clang::CodeGen::CodeGenFunction::EmitNounwindRuntimeCall ( llvm::Value callee,
const Twine &  name = "" 
)

◆ EmitNounwindRuntimeCall() [2/2]

llvm::CallInst* clang::CodeGen::CodeGenFunction::EmitNounwindRuntimeCall ( llvm::Value callee,
ArrayRef< llvm::Value *>  args,
const Twine &  name = "" 
)

◆ EmitNullabilityCheck()

void CodeGenFunction::EmitNullabilityCheck ( LValue  LHS,
llvm::Value RHS,
SourceLocation  Loc 
)

Given an assignment *LHS = RHS, emit a test that checks if RHS is nonnull, if LHS is marked _Nonnull.

Definition at line 692 of file CGDecl.cpp.

References Builder, EmitCheck(), EmitCheckSourceLocation(), EmitCheckTypeDescriptor(), getContext(), clang::Type::getNullability(), clang::CodeGen::LValue::getType(), clang::SanitizerSet::has(), clang::CodeGen::CodeGenTypeCache::Int8Ty, clang::NonNull, SanOpts, and TCK_NonnullAssign.

Referenced by EmitScalarInit(), and GetIntrinsic().

◆ EmitNullInitialization()

void CodeGenFunction::EmitNullInitialization ( Address  DestPtr,
QualType  Ty 
)

◆ EmitNVPTXBuiltinExpr()

Value * CodeGenFunction::EmitNVPTXBuiltinExpr ( unsigned  BuiltinID,
const CallExpr E 
)

Definition at line 9768 of file CGBuiltin.cpp.

References clang::CallExpr::getArg(), and clang::Expr::getType().

Referenced by EmitTargetArchBuiltinExpr().

◆ EmitNVPTXDevicePrintfCallExpr()

RValue CodeGenFunction::EmitNVPTXDevicePrintfCallExpr ( const CallExpr E,
ReturnValueSlot  ReturnValue 
)

Definition at line 70 of file CGGPUBuiltin.cpp.

◆ EmitObjCArrayLiteral()

llvm::Value * CodeGenFunction::EmitObjCArrayLiteral ( const ObjCArrayLiteral E)

Definition at line 239 of file CGObjC.cpp.

◆ EmitObjCAtSynchronizedStmt()

void CodeGenFunction::EmitObjCAtSynchronizedStmt ( const ObjCAtSynchronizedStmt S)

Definition at line 1769 of file CGObjC.cpp.

◆ EmitObjCAtThrowStmt()

void CodeGenFunction::EmitObjCAtThrowStmt ( const ObjCAtThrowStmt S)

Definition at line 1765 of file CGObjC.cpp.

◆ EmitObjCAtTryStmt()

void CodeGenFunction::EmitObjCAtTryStmt ( const ObjCAtTryStmt S)

Definition at line 1761 of file CGObjC.cpp.

◆ EmitObjCAutoreleasePoolCleanup()

void CodeGenFunction::EmitObjCAutoreleasePoolCleanup ( llvm::Value Ptr)

◆ EmitObjCAutoreleasePoolPop()

void CodeGenFunction::EmitObjCAutoreleasePoolPop ( llvm::Value value)

◆ EmitObjCAutoreleasePoolPush()

llvm::Value * CodeGenFunction::EmitObjCAutoreleasePoolPush ( )

Produce the code to do a objc_autoreleasepool_push.

call i8* @objc_autoreleasePoolPush(void)

Definition at line 2330 of file CGObjC.cpp.

References createARCRuntimeFunction(), EmitNounwindRuntimeCall(), clang::CodeGen::CodeGenModule::getObjCEntrypoints(), clang::CodeGen::CodeGenTypeCache::Int8PtrTy, and clang::CodeGen::ObjCEntrypoints::objc_autoreleasePoolPush.

Referenced by GenerateCXXGlobalInitFunc().

◆ EmitObjCAutoreleasePoolStmt()

void CodeGenFunction::EmitObjCAutoreleasePoolStmt ( const ObjCAutoreleasePoolStmt S)

Definition at line 3165 of file CGObjC.cpp.

References clang::ObjCAutoreleasePoolStmt::getSubStmt().

◆ EmitObjCBoxedExpr()

llvm::Value * CodeGenFunction::EmitObjCBoxedExpr ( const ObjCBoxedExpr E)

EmitObjCBoxedExpr - This routine generates code to call the appropriate expression boxing method.

This will either be one of +[NSNumber numberWith<Type>:], or +[NSString stringWithUTF8String:], or [NSValue valueWithBytes:objCType:].

Definition at line 60 of file CGObjC.cpp.

◆ EmitObjCCollectionLiteral()

llvm::Value * CodeGenFunction::EmitObjCCollectionLiteral ( const Expr E,
const ObjCMethodDecl MethodWithObjects 
)

Definition at line 113 of file CGObjC.cpp.

◆ EmitObjCConsumeObject()

llvm::Value * CodeGenFunction::EmitObjCConsumeObject ( QualType  type,
llvm::Value object 
)

Produce the code for a CK_ARCConsumeObject.

Does a primitive release at the end of the full-expression.

Definition at line 1788 of file CGObjC.cpp.

References getARCCleanupKind().

Referenced by EmitARCExtendBlockObject(), EmitLoadOfLValue(), EmitObjCThrowOperand(), and ShouldNullCheckClassCastValue().

◆ EmitObjCDictionaryLiteral()

llvm::Value * CodeGenFunction::EmitObjCDictionaryLiteral ( const ObjCDictionaryLiteral E)

Definition at line 243 of file CGObjC.cpp.

◆ EmitObjCEncodeExprLValue()

LValue CodeGenFunction::EmitObjCEncodeExprLValue ( const ObjCEncodeExpr E)

Definition at line 2571 of file CGExpr.cpp.

◆ EmitObjCExtendObjectLifetime()

llvm::Value * CodeGenFunction::EmitObjCExtendObjectLifetime ( QualType  T,
llvm::Value Ptr 
)

Definition at line 1796 of file CGObjC.cpp.

References EmitARCRetainAutorelease().

Referenced by EmitStoreThroughLValue().

◆ EmitObjCForCollectionStmt()

void CodeGenFunction::EmitObjCForCollectionStmt ( const ObjCForCollectionStmt S)

Definition at line 1472 of file CGObjC.cpp.

◆ EmitObjCIsaExpr()

LValue CodeGenFunction::EmitObjCIsaExpr ( const ObjCIsaExpr E)

◆ EmitObjCIvarRefLValue()

LValue CodeGenFunction::EmitObjCIvarRefLValue ( const ObjCIvarRefExpr E)

Definition at line 4428 of file CGExpr.cpp.

◆ EmitObjCMessageExpr()

RValue CodeGenFunction::EmitObjCMessageExpr ( const ObjCMessageExpr E,
ReturnValueSlot  Return = ReturnValueSlot() 
)

Definition at line 355 of file CGObjC.cpp.

◆ EmitObjCMessageExprLValue()

LValue CodeGenFunction::EmitObjCMessageExprLValue ( const ObjCMessageExpr E)

Definition at line 4395 of file CGExpr.cpp.

◆ EmitObjCMRRAutoreleasePoolPop()

void CodeGenFunction::EmitObjCMRRAutoreleasePoolPop ( llvm::Value Arg)

◆ EmitObjCMRRAutoreleasePoolPush()

llvm::Value * CodeGenFunction::EmitObjCMRRAutoreleasePoolPush ( )

Produce the code to do an MRR version objc_autoreleasepool_push.

Which is: [[NSAutoreleasePool alloc] init]; Where alloc is declared as: + (id) alloc; in NSAutoreleasePool class. init is declared as: - (id) init; in its NSObject super class.

Definition at line 2365 of file CGObjC.cpp.

References clang::CodeGen::CGObjCRuntime::EmitNSAutoreleasePoolClassRef(), clang::CodeGen::CGObjCRuntime::GenerateMessageSend(), clang::IdentifierTable::get(), clang::CodeGen::CodeGenModule::getContext(), getContext(), clang::CodeGen::CodeGenModule::getObjCRuntime(), clang::CodeGen::RValue::getScalarVal(), clang::SelectorTable::getSelector(), clang::ASTContext::Idents, and clang::ASTContext::Selectors.

◆ EmitObjCProtocolExpr()

llvm::Value * CodeGenFunction::EmitObjCProtocolExpr ( const ObjCProtocolExpr E)

Definition at line 257 of file CGObjC.cpp.

◆ EmitObjCSelectorExpr()

llvm::Value * CodeGenFunction::EmitObjCSelectorExpr ( const ObjCSelectorExpr E)

Emit a selector.

Definition at line 249 of file CGObjC.cpp.

◆ EmitObjCSelectorLValue()

LValue CodeGenFunction::EmitObjCSelectorLValue ( const ObjCSelectorExpr E)

Definition at line 4409 of file CGExpr.cpp.

◆ EmitObjCStringLiteral()

llvm::Value * CodeGenFunction::EmitObjCStringLiteral ( const ObjCStringLiteral E)

Emits an instance of NSConstantString representing the object.

Definition at line 46 of file CGObjC.cpp.

◆ EmitObjCThrowOperand()

llvm::Value * CodeGenFunction::EmitObjCThrowOperand ( const Expr expr)

◆ EmitOMPAggregateAssign()

void CodeGenFunction::EmitOMPAggregateAssign ( Address  DestAddr,
Address  SrcAddr,
QualType  OriginalType,
const llvm::function_ref< void(Address, Address)> &  CopyGen 
)

Perform element by element copying of arrays with type OriginalType from SrcAddr to DestAddr using copying procedure generated by CopyGen.

Parameters
DestAddrAddress of the destination array.
SrcAddrAddress of the source array.
OriginalTypeType of destination and source arrays.
CopyGenCopying procedure that copies value of single array element to another single array element.

Definition at line 630 of file CGStmtOpenMP.cpp.

References clang::Type::getAsArrayTypeUnsafe().

Referenced by emitPrivatesInit().

◆ EmitOMPArraySectionExpr()

LValue CodeGenFunction::EmitOMPArraySectionExpr ( const OMPArraySectionExpr E,
bool  IsLowerBound = true 
)

Definition at line 3440 of file CGExpr.cpp.

Referenced by emitOMPArraySectionBase().

◆ EmitOMPAtomicDirective()

void CodeGenFunction::EmitOMPAtomicDirective ( const OMPAtomicDirective S)

◆ EmitOMPAtomicSimpleUpdateExpr()

std::pair< bool, RValue > CodeGenFunction::EmitOMPAtomicSimpleUpdateExpr ( LValue  X,
RValue  E,
BinaryOperatorKind  BO,
bool  IsXLHSInRHSPart,
llvm::AtomicOrdering  AO,
SourceLocation  Loc,
const llvm::function_ref< RValue(RValue)> &  CommonGen 
)

Emit atomic update code for constructs: X = X BO E or X = E BO E.

Parameters
XValue to be updated.
EUpdate value.
BOBinary operation for update operation.
IsXLHSInRHSParttrue if X is LHS in RHS part of the update expression, false otherwise.
AOAtomic ordering of the generated atomic instructions.
CommonGenCode generator for complex expressions that cannot be expressed through atomicrmw instruction.
Returns
<true, OldAtomicValue> if simple 'atomicrmw' instruction was generated, <false, RValue::get(nullptr)> otherwise.

Definition at line 3651 of file CGStmtOpenMP.cpp.

Referenced by EmitOMPAtomicCaptureExpr(), and EmitOMPAtomicUpdateExpr().

◆ EmitOMPBarrierDirective()

void CodeGenFunction::EmitOMPBarrierDirective ( const OMPBarrierDirective S)

Definition at line 3161 of file CGStmtOpenMP.cpp.

References clang::OMPExecutableDirective::getLocStart().

◆ EmitOMPCancelDirective()

void CodeGenFunction::EmitOMPCancelDirective ( const OMPCancelDirective S)

◆ EmitOMPCancellationPointDirective()

void CodeGenFunction::EmitOMPCancellationPointDirective ( const OMPCancellationPointDirective S)

◆ EmitOMPCopy()

void CodeGenFunction::EmitOMPCopy ( QualType  OriginalType,
Address  DestAddr,
Address  SrcAddr,
const VarDecl DestVD,
const VarDecl SrcVD,
const Expr Copy 
)

Emit proper copying of data from one variable to another.

Parameters
OriginalTypeOriginal type of the copied variables.
DestAddrDestination address.
SrcAddrSource address.
DestVDDestination variable used in CopyExpr (for arrays, has type of the base array element).
SrcVDSource variable used in CopyExpr (for arrays, has type of the base array element).
CopyActual copygin expression for copying data from SrcVD to DestVD.

Definition at line 691 of file CGStmtOpenMP.cpp.

References clang::CodeGen::CodeGenFunction::OMPPrivateScope::addPrivate(), clang::Type::isArrayType(), and clang::CodeGen::CodeGenFunction::OMPPrivateScope::Privatize().

◆ EmitOMPCopyinClause()

bool CodeGenFunction::EmitOMPCopyinClause ( const OMPExecutableDirective D)

Emit code for copyin clause in D directive.

The next code is generated at the start of outlined functions for directives:

threadprivate_var1 = master_threadprivate_var1;
operator=(threadprivate_var2, master_threadprivate_var2);
...
__kmpc_barrier(&loc, global_tid);
Parameters
DOpenMP directive possibly with 'copyin' clause(s).
Returns
true if at least one copyin variable is found, false otherwise.

Definition at line 849 of file CGStmtOpenMP.cpp.

References clang::VarDecl::getCanonicalDecl(), clang::OMPExecutableDirective::getClausesOfKind(), clang::ValueDecl::getType(), clang::CodeGen::Address::invalid(), clang::VarDecl::isStaticLocal(), and clang::VK_LValue.

◆ EmitOMPCriticalDirective()

void CodeGenFunction::EmitOMPCriticalDirective ( const OMPCriticalDirective S)

Definition at line 2678 of file CGStmtOpenMP.cpp.

◆ EmitOMPDistributeDirective()

void CodeGenFunction::EmitOMPDistributeDirective ( const OMPDistributeDirective S)

Definition at line 3406 of file CGStmtOpenMP.cpp.

◆ EmitOMPDistributeLoop()

void CodeGenFunction::EmitOMPDistributeLoop ( const OMPLoopDirective S,
const CodeGenLoopTy CodeGenLoop,
Expr IncExpr 
)

◆ EmitOMPDistributeParallelForDirective()

void CodeGenFunction::EmitOMPDistributeParallelForDirective ( const OMPDistributeParallelForDirective S)

Definition at line 2119 of file CGStmtOpenMP.cpp.

◆ EmitOMPDistributeParallelForSimdDirective()

void CodeGenFunction::EmitOMPDistributeParallelForSimdDirective ( const OMPDistributeParallelForSimdDirective S)

Definition at line 2129 of file CGStmtOpenMP.cpp.

◆ EmitOMPDistributeSimdDirective()

void CodeGenFunction::EmitOMPDistributeSimdDirective ( const OMPDistributeSimdDirective S)

Definition at line 2139 of file CGStmtOpenMP.cpp.

◆ EmitOMPFirstprivateClause()

bool CodeGenFunction::EmitOMPFirstprivateClause ( const OMPExecutableDirective D,
OMPPrivateScope PrivateScope 
)

◆ EmitOMPFlushDirective()

void CodeGenFunction::EmitOMPFlushDirective ( const OMPFlushDirective S)

◆ EmitOMPForDirective()

void CodeGenFunction::EmitOMPForDirective ( const OMPForDirective S)

Definition at line 2418 of file CGStmtOpenMP.cpp.

◆ EmitOMPForSimdDirective()

void CodeGenFunction::EmitOMPForSimdDirective ( const OMPForSimdDirective S)

Definition at line 2439 of file CGStmtOpenMP.cpp.

◆ EmitOMPInnerLoop()

void CodeGenFunction::EmitOMPInnerLoop ( const Stmt S,
bool  RequiresCleanup,
const Expr LoopCond,
const Expr IncExpr,
const llvm::function_ref< void(CodeGenFunction &)> &  BodyGen,
const llvm::function_ref< void(CodeGenFunction &)> &  PostIncGen 
)

Emit inner loop of the worksharing/simd construct.

Parameters
SDirective, for which the inner loop must be emitted.
RequiresCleanuptrue, if directive has some associated private variables.
LoopCondBollean condition for loop continuation.
IncExprIncrement expression for loop control variable.
BodyGenGenerator for the inner body of the inner loop.
PostIncGenGenrator for post-increment code (required for ordered loop directvies).

Definition at line 1311 of file CGStmtOpenMP.cpp.

References clang::SourceRange::getBegin(), clang::SourceRange::getEnd(), and clang::Stmt::getSourceRange().

◆ EmitOMPLastprivateClauseFinal()

void CodeGenFunction::EmitOMPLastprivateClauseFinal ( const OMPExecutableDirective D,
bool  NoFinals,
llvm::Value IsLastIterCond = nullptr 
)

Emit final copying of lastprivate values to original variables at the end of the worksharing or simd directive.

Parameters
DDirective that has at least one 'lastprivate' directives.
IsLastIterCondBoolean condition that must be set to 'i1 true' if it is the last iteration of the loop code in associated directive, or to 'i1 false' otherwise. If this item is nullptr, no final check is required.

Definition at line 974 of file CGStmtOpenMP.cpp.

◆ EmitOMPLastprivateClauseInit()

bool CodeGenFunction::EmitOMPLastprivateClauseInit ( const OMPExecutableDirective D,
OMPPrivateScope PrivateScope 
)

Emit initial code for lastprivate variables.

If some variable is not also firstprivate, then the default initialization is used. Otherwise initialization of this variable is performed by EmitOMPFirstprivateClause method.

Parameters
DDirective that may have 'lastprivate' directives.
PrivateScopePrivate scope for capturing lastprivate variables for proper codegen in internal captured statement.
Returns
true if there is at least one lastprivate variable, false otherwise.

Definition at line 915 of file CGStmtOpenMP.cpp.

References clang::CodeGen::CodeGenFunction::OMPPrivateScope::addPrivate(), getCanonicalDecl(), clang::OMPExecutableDirective::getClausesOfKind(), clang::OMPExecutableDirective::getDirectiveKind(), clang::isOpenMPSimdDirective(), clang::isOpenMPTaskLoopDirective(), and clang::VK_LValue.

◆ EmitOMPLinearClause()

void CodeGenFunction::EmitOMPLinearClause ( const OMPLoopDirective D,
CodeGenFunction::OMPPrivateScope PrivateScope 
)

◆ EmitOMPLinearClauseFinal()

void CodeGenFunction::EmitOMPLinearClauseFinal ( const OMPLoopDirective D,
const llvm::function_ref< llvm::Value *(CodeGenFunction &)> &  CondGen 
)

Emit final code for linear clauses.

Parameters
CondGenOptional conditional code for final part of codegen for linear clause.

Definition at line 1395 of file CGStmtOpenMP.cpp.

References clang::OMPExecutableDirective::getClausesOfKind().

◆ EmitOMPLinearClauseInit()

bool CodeGenFunction::EmitOMPLinearClauseInit ( const OMPLoopDirective D)

Emit initial code for linear variables.

Creates private copies and initializes them with the values according to OpenMP standard.

Parameters
DDirective (possibly) with the 'linear' clause.
Returns
true if at least one linear variable is found that should be initialized with the value of the original variable, false otherwise.

Definition at line 1360 of file CGStmtOpenMP.cpp.

References clang::CodeGen::CodeGenFunction::AutoVarEmission::getAllocatedAddress(), clang::OMPExecutableDirective::getClausesOfKind(), clang::Expr::getExprLoc(), clang::VarDecl::getInit(), clang::Expr::getType(), clang::ValueDecl::getType(), clang::Expr::IgnoreImpCasts(), and clang::VK_LValue.

◆ EmitOMPLoopBody()

void CodeGenFunction::EmitOMPLoopBody ( const OMPLoopDirective D,
JumpDest  LoopExit 
)

Helper for the OpenMP loop directives.

Definition at line 1284 of file CGStmtOpenMP.cpp.

Referenced by emitOMPLoopBodyWithStopPoint().

◆ EmitOMPMasterDirective()

void CodeGenFunction::EmitOMPMasterDirective ( const OMPMasterDirective S)

Definition at line 2669 of file CGStmtOpenMP.cpp.

◆ EmitOMPOrderedDirective()

void CodeGenFunction::EmitOMPOrderedDirective ( const OMPOrderedDirective S)

◆ EmitOMPParallelDirective()

void CodeGenFunction::EmitOMPParallelDirective ( const OMPParallelDirective S)

Definition at line 1258 of file CGStmtOpenMP.cpp.

◆ EmitOMPParallelForDirective()

void CodeGenFunction::EmitOMPParallelForDirective ( const OMPParallelForDirective S)

Definition at line 2692 of file CGStmtOpenMP.cpp.

◆ EmitOMPParallelForSimdDirective()

void CodeGenFunction::EmitOMPParallelForSimdDirective ( const OMPParallelForSimdDirective S)

Definition at line 2705 of file CGStmtOpenMP.cpp.

◆ EmitOMPParallelSectionsDirective()

void CodeGenFunction::EmitOMPParallelSectionsDirective ( const OMPParallelSectionsDirective S)

Definition at line 2717 of file CGStmtOpenMP.cpp.

◆ EmitOMPPrivateClause()

void CodeGenFunction::EmitOMPPrivateClause ( const OMPExecutableDirective D,
CodeGenFunction::OMPPrivateScope PrivateScope 
)

◆ EmitOMPPrivateLoopCounters()

void CodeGenFunction::EmitOMPPrivateLoopCounters ( const OMPLoopDirective S,
CodeGenFunction::OMPPrivateScope LoopScope 
)

Emit initial code for loop counters of loop-based directives.

Definition at line 1466 of file CGStmtOpenMP.cpp.

Referenced by emitPreCond().

◆ EmitOMPReductionClauseFinal()

void CodeGenFunction::EmitOMPReductionClauseFinal ( const OMPExecutableDirective D,
const OpenMPDirectiveKind  ReductionKind 
)

Emit final update of reduction values to original variables at the end of the directive.

Parameters
DDirective that has at least one 'reduction' directives.
ReductionKindThe kind of reduction to perform.

Definition at line 1150 of file CGStmtOpenMP.cpp.

References clang::OMPExecutableDirective::getClausesOfKind(), clang::OMPExecutableDirective::getDirectiveKind(), clang::OMPExecutableDirective::getLocEnd(), clang::OMPExecutableDirective::getSingleClause(), clang::isOpenMPParallelDirective(), and Privates.

◆ EmitOMPReductionClauseInit()

void CodeGenFunction::EmitOMPReductionClauseInit ( const OMPExecutableDirective D,
CodeGenFunction::OMPPrivateScope PrivateScope 
)

Emit initial code for reduction variables.

Creates reduction copies and initializes them with the values according to OpenMP standard.

Parameters
DDirective (possibly) with the 'reduction' clause.
PrivateScopePrivate scope for capturing reduction variables for proper codegen in internal captured statement.

Definition at line 1044 of file CGStmtOpenMP.cpp.

References clang::CodeGen::CodeGenFunction::OMPPrivateScope::addPrivate(), clang::CodeGen::ReductionCodeGen::adjustPrivateAddress(), clang::CodeGen::ReductionCodeGen::emitAggregateType(), EmitAutoVarInit(), clang::CodeGen::ReductionCodeGen::emitInitialization(), clang::CodeGen::LValue::getAddress(), clang::CodeGen::ReductionCodeGen::getBaseDecl(), clang::OMPExecutableDirective::getClausesOfKind(), clang::CodeGen::ReductionCodeGen::getSharedLValue(), and Privates.

◆ EmitOMPSectionDirective()

void CodeGenFunction::EmitOMPSectionDirective ( const OMPSectionDirective S)

Definition at line 2619 of file CGStmtOpenMP.cpp.

◆ EmitOMPSectionsDirective()

void CodeGenFunction::EmitOMPSectionsDirective ( const OMPSectionsDirective S)

◆ EmitOMPSharedLValue()

LValue CodeGenFunction::EmitOMPSharedLValue ( const Expr E)

Emits the lvalue for the expression with possibly captured variable.

Definition at line 218 of file CGStmtOpenMP.cpp.

◆ EmitOMPSimdDirective()

void CodeGenFunction::EmitOMPSimdDirective ( const OMPSimdDirective S)

Definition at line 1733 of file CGStmtOpenMP.cpp.

◆ EmitOMPSimdFinal()

void CodeGenFunction::EmitOMPSimdFinal ( const OMPLoopDirective D,
const llvm::function_ref< llvm::Value *(CodeGenFunction &)> &  CondGen 
)

◆ EmitOMPSimdInit()

void CodeGenFunction::EmitOMPSimdInit ( const OMPLoopDirective D,
bool  IsMonotonic = false 
)

Helpers for the OpenMP loop directives.

Definition at line 1577 of file CGStmtOpenMP.cpp.

References emitSimdlenSafelenClause().

◆ emitOMPSimpleStore()

void CodeGenFunction::emitOMPSimpleStore ( LValue  LVal,
RValue  RVal,
QualType  RValTy,
SourceLocation  Loc 
)

◆ EmitOMPSingleDirective()

void CodeGenFunction::EmitOMPSingleDirective ( const OMPSingleDirective S)

◆ EmitOMPTargetDataDirective()

void CodeGenFunction::EmitOMPTargetDataDirective ( const OMPTargetDataDirective S)

Definition at line 4365 of file CGStmtOpenMP.cpp.

◆ EmitOMPTargetDeviceFunction()

void CodeGenFunction::EmitOMPTargetDeviceFunction ( CodeGenModule CGM,
StringRef  ParentName,
const OMPTargetDirective S 
)
static

Emit device code for the target directive.

Definition at line 3988 of file CGStmtOpenMP.cpp.

◆ EmitOMPTargetDirective()

void CodeGenFunction::EmitOMPTargetDirective ( const OMPTargetDirective S)

Definition at line 4002 of file CGStmtOpenMP.cpp.

◆ EmitOMPTargetEnterDataDirective()

void CodeGenFunction::EmitOMPTargetEnterDataDirective ( const OMPTargetEnterDataDirective S)

◆ EmitOMPTargetExitDataDirective()

void CodeGenFunction::EmitOMPTargetExitDataDirective ( const OMPTargetExitDataDirective S)

◆ EmitOMPTargetParallelDeviceFunction()

void CodeGenFunction::EmitOMPTargetParallelDeviceFunction ( CodeGenModule CGM,
StringRef  ParentName,
const OMPTargetParallelDirective S 
)
static

Definition at line 4518 of file CGStmtOpenMP.cpp.

◆ EmitOMPTargetParallelDirective()

void CodeGenFunction::EmitOMPTargetParallelDirective ( const OMPTargetParallelDirective S)

Definition at line 4532 of file CGStmtOpenMP.cpp.

◆ EmitOMPTargetParallelForDeviceFunction()

void CodeGenFunction::EmitOMPTargetParallelForDeviceFunction ( CodeGenModule CGM,
StringRef  ParentName,
const OMPTargetParallelForDirective S 
)
static

Emit device code for the target parallel for directive.

Definition at line 4556 of file CGStmtOpenMP.cpp.

◆ EmitOMPTargetParallelForDirective()

void CodeGenFunction::EmitOMPTargetParallelForDirective ( const OMPTargetParallelForDirective S)

Definition at line 4571 of file CGStmtOpenMP.cpp.

◆ EmitOMPTargetParallelForSimdDeviceFunction()

void CodeGenFunction::EmitOMPTargetParallelForSimdDeviceFunction ( CodeGenModule CGM,
StringRef  ParentName,
const OMPTargetParallelForSimdDirective S 
)
static

Emit device code for the target parallel for simd directive.

Definition at line 4594 of file CGStmtOpenMP.cpp.

◆ EmitOMPTargetParallelForSimdDirective()

void CodeGenFunction::EmitOMPTargetParallelForSimdDirective ( const OMPTargetParallelForSimdDirective S)

Definition at line 4609 of file CGStmtOpenMP.cpp.

◆ EmitOMPTargetSimdDeviceFunction()

void CodeGenFunction::EmitOMPTargetSimdDeviceFunction ( CodeGenModule CGM,
StringRef  ParentName,
const OMPTargetSimdDirective S 
)
static

Emit device code for the target simd directive.

Definition at line 2148 of file CGStmtOpenMP.cpp.

◆ EmitOMPTargetSimdDirective()

void CodeGenFunction::EmitOMPTargetSimdDirective ( const OMPTargetSimdDirective S)

Definition at line 2162 of file CGStmtOpenMP.cpp.

◆ EmitOMPTargetTaskBasedDirective()

void CodeGenFunction::EmitOMPTargetTaskBasedDirective ( const OMPExecutableDirective S,
const RegionCodeGenTy BodyGen,
OMPTargetDataInfo InputInfo 
)

◆ EmitOMPTargetTeamsDeviceFunction()

void CodeGenFunction::EmitOMPTargetTeamsDeviceFunction ( CodeGenModule CGM,
StringRef  ParentName,
const OMPTargetTeamsDirective S 
)
static

Emit device code for the target teams directive.

Definition at line 4070 of file CGStmtOpenMP.cpp.

◆ EmitOMPTargetTeamsDirective()

void CodeGenFunction::EmitOMPTargetTeamsDirective ( const OMPTargetTeamsDirective S)

Definition at line 4084 of file CGStmtOpenMP.cpp.

◆ EmitOMPTargetTeamsDistributeDeviceFunction()

void CodeGenFunction::EmitOMPTargetTeamsDistributeDeviceFunction ( CodeGenModule CGM,
StringRef  ParentName,
const OMPTargetTeamsDistributeDirective S 
)
static

Emit device code for the target teams distribute directive.

Definition at line 4115 of file CGStmtOpenMP.cpp.

◆ EmitOMPTargetTeamsDistributeDirective()

void CodeGenFunction::EmitOMPTargetTeamsDistributeDirective ( const OMPTargetTeamsDistributeDirective S)

Definition at line 4129 of file CGStmtOpenMP.cpp.

◆ EmitOMPTargetTeamsDistributeParallelForDirective()

void CodeGenFunction::EmitOMPTargetTeamsDistributeParallelForDirective ( const OMPTargetTeamsDistributeParallelForDirective S)

◆ EmitOMPTargetTeamsDistributeParallelForSimdDirective()

void CodeGenFunction::EmitOMPTargetTeamsDistributeParallelForSimdDirective ( const OMPTargetTeamsDistributeParallelForSimdDirective S)

◆ EmitOMPTargetTeamsDistributeSimdDeviceFunction()

void CodeGenFunction::EmitOMPTargetTeamsDistributeSimdDeviceFunction ( CodeGenModule CGM,
StringRef  ParentName,
const OMPTargetTeamsDistributeSimdDirective S 
)
static

Emit device code for the target teams distribute simd directive.

Definition at line 4160 of file CGStmtOpenMP.cpp.

◆ EmitOMPTargetTeamsDistributeSimdDirective()

void CodeGenFunction::EmitOMPTargetTeamsDistributeSimdDirective ( const OMPTargetTeamsDistributeSimdDirective S)

Definition at line 4174 of file CGStmtOpenMP.cpp.

◆ EmitOMPTargetUpdateDirective()

void CodeGenFunction::EmitOMPTargetUpdateDirective ( const OMPTargetUpdateDirective S)

◆ EmitOMPTaskBasedDirective()

void CodeGenFunction::EmitOMPTaskBasedDirective ( const OMPExecutableDirective S,
const RegionCodeGenTy BodyGen,
const TaskGenTy TaskGen,
OMPTaskDataTy Data 
)

◆ EmitOMPTaskDirective()

void CodeGenFunction::EmitOMPTaskDirective ( const OMPTaskDirective S)

◆ EmitOMPTaskgroupDirective()

void CodeGenFunction::EmitOMPTaskgroupDirective ( const OMPTaskgroupDirective S)

Definition at line 3169 of file CGStmtOpenMP.cpp.

◆ EmitOMPTaskLoopBasedDirective()

void CodeGenFunction::EmitOMPTaskLoopBasedDirective ( const OMPLoopDirective S)

◆ EmitOMPTaskLoopDirective()

void CodeGenFunction::EmitOMPTaskLoopDirective ( const OMPTaskLoopDirective S)

Definition at line 4765 of file CGStmtOpenMP.cpp.

◆ EmitOMPTaskLoopSimdDirective()

void CodeGenFunction::EmitOMPTaskLoopSimdDirective ( const OMPTaskLoopSimdDirective S)

Definition at line 4769 of file CGStmtOpenMP.cpp.

◆ EmitOMPTaskwaitDirective()

void CodeGenFunction::EmitOMPTaskwaitDirective ( const OMPTaskwaitDirective S)

Definition at line 3165 of file CGStmtOpenMP.cpp.

References clang::OMPExecutableDirective::getLocStart().

◆ EmitOMPTaskyieldDirective()

void CodeGenFunction::EmitOMPTaskyieldDirective ( const OMPTaskyieldDirective S)

Definition at line 3156 of file CGStmtOpenMP.cpp.

References clang::OMPExecutableDirective::getLocStart().

◆ EmitOMPTeamsDirective()

void CodeGenFunction::EmitOMPTeamsDirective ( const OMPTeamsDirective S)

Definition at line 4034 of file CGStmtOpenMP.cpp.

◆ EmitOMPTeamsDistributeDirective()

void CodeGenFunction::EmitOMPTeamsDistributeDirective ( const OMPTeamsDistributeDirective S)

Definition at line 4182 of file CGStmtOpenMP.cpp.

◆ EmitOMPTeamsDistributeParallelForDirective()

void CodeGenFunction::EmitOMPTeamsDistributeParallelForDirective ( const OMPTeamsDistributeParallelForDirective S)

Definition at line 4225 of file CGStmtOpenMP.cpp.

◆ EmitOMPTeamsDistributeParallelForSimdDirective()

void CodeGenFunction::EmitOMPTeamsDistributeParallelForSimdDirective ( const OMPTeamsDistributeParallelForSimdDirective S)

Definition at line 4247 of file CGStmtOpenMP.cpp.

◆ EmitOMPTeamsDistributeSimdDirective()

void CodeGenFunction::EmitOMPTeamsDistributeSimdDirective ( const OMPTeamsDistributeSimdDirective S)

Definition at line 4204 of file CGStmtOpenMP.cpp.

◆ EmitOMPUseDevicePtrClause()

void CodeGenFunction::EmitOMPUseDevicePtrClause ( const OMPClause C,
OMPPrivateScope PrivateScope,
const llvm::DenseMap< const ValueDecl *, Address > &  CaptureDeviceAddrMap 
)

◆ EmitOMPWorksharingLoop()

bool CodeGenFunction::EmitOMPWorksharingLoop ( const OMPLoopDirective S,
Expr EUB,
const CodeGenLoopBoundsTy CodeGenLoopBounds,
const CodeGenDispatchBoundsTy CGDispatchBounds 
)

◆ EmitOpaqueValueLValue()

LValue CodeGenFunction::EmitOpaqueValueLValue ( const OpaqueValueExpr e)

◆ EmitParmDecl()

void CodeGenFunction::EmitParmDecl ( const VarDecl D,
ParamValue  Arg,
unsigned  ArgNo 
)

EmitParmDecl - Emit a ParmVarDecl or an ImplicitParamDecl.

Emit an alloca (or GlobalValue depending on target) for the specified parameter and set up LocalDeclMap.

Definition at line 1781 of file CGDecl.cpp.

References clang::CodeGen::ARCImpreciseLifetime, clang::CodeGen::ARCPreciseLifetime, clang::TargetCXXABI::areArgsDestroyedLeftToRightInCallee(), BlockInfo, Builder, CGM, ConvertTypeForMem(), clang::CodeGen::CGBuilderTy::CreateBitCast(), clang::CodeGen::CGBuilderTy::CreateLoad(), CreateMemTemp(), CurCodeDecl, CurFuncIsThunk, clang::QualType::DK_cxx_destructor, EHStack, EmitARCInitWeak(), EmitARCRetainNonBlock(), EmitARCStoreStrongCall(), EmitAutoVarWithLifetime(), clang::CodeGen::CodeGenModule::EmitNullConstant(), EmitStoreOfScalar(), EmitVarAnnotations(), clang::CodeGen::LValue::getAddress(), clang::CodeGen::CodeGenFunction::ParamValue::getAnyValue(), getARCCleanupKind(), clang::Type::getAsCXXRecordDecl(), clang::CodeGen::CodeGenModule::getCodeGenOpts(), getContext(), clang::TargetInfo::getCXXABI(), getDebugInfo(), getDeclAlign(), clang::CodeGen::CodeGenFunction::ParamValue::getDirectValue(), clang::CodeGen::CodeGenFunction::ParamValue::getIndirectAddress(), clang::ObjCMethodDecl::getMethodFamily(), clang::NamedDecl::getName(), clang::Type::getNullability(), clang::Qualifiers::getObjCLifetime(), clang::CodeGen::Address::getPointer(), clang::QualType::getQualifiers(), clang::ObjCMethodDecl::getSelfDecl(), getTarget(), clang::CodeGen::Address::getType(), clang::ValueDecl::getType(), clang::Decl::hasAttr(), clang::Qualifiers::hasConst(), clang::CXXRecordDecl::hasNonTrivialDestructor(), hasScalarEvaluationKind(), clang::CodeGen::Address::invalid(), clang::VarDecl::isARCPseudoStrong(), clang::CodeGen::CodeGenFunction::ParamValue::isIndirect(), clang::codegenoptions::LimitedDebugInfo, MakeAddrLValue(), clang::NonNull, clang::Qualifiers::OCL_ExplicitNone, clang::Qualifiers::OCL_Strong, clang::Qualifiers::OCL_Weak, clang::OMF_init, pushDestroy(), setBlockContextParameter(), and clang::CodeGen::Type.

◆ EmitPointerToDataMemberBinaryExpr()

LValue CodeGenFunction::EmitPointerToDataMemberBinaryExpr ( const BinaryOperator E)

Definition at line 4639 of file CGExpr.cpp.

◆ EmitPointerWithAlignment()

Address CodeGenFunction::EmitPointerWithAlignment ( const Expr E,
LValueBaseInfo BaseInfo = nullptr,
TBAAAccessInfo TBAAInfo = nullptr 
)

EmitPointerWithAlignment - Given an expression with a pointer type, emit the value and compute our best estimate of the alignment of the pointee.

EmitPointerWithAlignment - Given an expression of pointer type, try to derive a more accurate bound on the alignment of the pointer.

Parameters
BaseInfo- If non-null, this will be initialized with information about the source of the alignment and the may-alias attribute. Note that this function will conservatively fall back on the type when it doesn't recognize the expression and may-alias will be set to false.

One reasonable way to use this information is when there's a language guarantee that the pointer must be aligned to some stricter value, and we're simply trying to ensure that sufficiently obvious uses of under- aligned objects don't get miscompiled; for example, a placement new into the address of a local variable. In such a case, it's quite reasonable to just ignore the returned alignment when it isn't from an explicit source.

Definition at line 967 of file CGExpr.cpp.

Referenced by EmitCheckedMixedSignMultiply(), emitOMPArraySectionBase(), EmitStoreThroughLValue(), emitWritebackArg(), and ShouldNullCheckClassCastValue().

◆ EmitPPCBuiltinExpr()

Value * CodeGenFunction::EmitPPCBuiltinExpr ( unsigned  BuiltinID,
const CallExpr E 
)

Definition at line 8840 of file CGBuiltin.cpp.

References clang::CallExpr::getArg(), and clang::CallExpr::getNumArgs().

Referenced by EmitTargetArchBuiltinExpr().

◆ EmitPredefinedLValue()

LValue CodeGenFunction::EmitPredefinedLValue ( const PredefinedExpr E)

Definition at line 2576 of file CGExpr.cpp.

◆ EmitPseudoObjectLValue()

LValue CodeGenFunction::EmitPseudoObjectLValue ( const PseudoObjectExpr e)

Definition at line 4767 of file CGExpr.cpp.

◆ EmitPseudoObjectRValue()

RValue CodeGenFunction::EmitPseudoObjectRValue ( const PseudoObjectExpr e,
AggValueSlot  slot = AggValueSlot::ignored() 
)

Definition at line 4762 of file CGExpr.cpp.

◆ EmitReferenceBindingToExpr()

RValue CodeGenFunction::EmitReferenceBindingToExpr ( const Expr E)

Emits a reference binding to the passed in expression.

Definition at line 531 of file CGExpr.cpp.

Referenced by EmitCXXGlobalVarDeclInit(), and EmitExprAsInit().

◆ EmitReturnBlock()

llvm::DebugLoc CodeGenFunction::EmitReturnBlock ( )

Emit the unified return block, trying to avoid its emission when possible.

Returns
The debug location of the user written return statement if the return block is is avoided.

Definition at line 262 of file CodeGenFunction.cpp.

References Builder, EmitBlock(), clang::CodeGen::CodeGenFunction::JumpDest::getBlock(), and ReturnBlock.

Referenced by FinishFunction().

◆ EmitReturnStmt()

void CodeGenFunction::EmitReturnStmt ( const ReturnStmt S)

EmitReturnStmt - Note that due to GCC extensions, this can have an operand if the function returns void, or may be missing one if the function returns non-void.

Fun stuff :).

Definition at line 1019 of file CGStmt.cpp.

Referenced by generateObjCGetterBody().

◆ EmitReturnValueCheck()

void CodeGenFunction::EmitReturnValueCheck ( llvm::Value RV)

Emit a test that checks if the return value RV is nonnull.

Definition at line 2944 of file CGCall.cpp.

◆ EmitRuntimeCall() [1/2]

llvm::CallInst* clang::CodeGen::CodeGenFunction::EmitRuntimeCall ( llvm::Value callee,
const Twine &  name = "" 
)

◆ EmitRuntimeCall() [2/2]

llvm::CallInst* clang::CodeGen::CodeGenFunction::EmitRuntimeCall ( llvm::Value callee,
ArrayRef< llvm::Value *>  args,
const Twine &  name = "" 
)

◆ EmitRuntimeCallOrInvoke() [1/2]

llvm::CallSite CodeGenFunction::EmitRuntimeCallOrInvoke ( llvm::Value callee,
ArrayRef< llvm::Value *>  args,
const Twine &  name = "" 
)

Emits a call or invoke instruction to the given runtime function.

Definition at line 3672 of file CGCall.cpp.

Referenced by EmitObjCAutoreleasePoolPop(), emitRTtypeidCall(), clang::CodeGen::CGObjCRuntime::EmitValueForIvarAtOffset(), getBadTypeidFn(), and getGetExceptionPtrFn().

◆ EmitRuntimeCallOrInvoke() [2/2]

llvm::CallSite CodeGenFunction::EmitRuntimeCallOrInvoke ( llvm::Value callee,
const Twine &  name = "" 
)

Emits a call or invoke instruction to the given nullary runtime function.

Definition at line 3665 of file CGCall.cpp.

◆ EmitRValueForField()

RValue CodeGenFunction::EmitRValueForField ( LValue  LV,
const FieldDecl FD,
SourceLocation  Loc 
)

◆ EmitSanitizerStatReport()

void CodeGenFunction::EmitSanitizerStatReport ( llvm::SanitizerStatKind  SSK)

◆ EmitScalarCompoundAssignWithComplex()

LValue CodeGenFunction::EmitScalarCompoundAssignWithComplex ( const CompoundAssignOperator E,
llvm::Value *&  Result 
)

◆ EmitScalarConversion()

Value * CodeGenFunction::EmitScalarConversion ( llvm::Value Src,
QualType  SrcTy,
QualType  DstTy,
SourceLocation  Loc 
)

Emit a conversion from the specified type to the specified destination type, both of which are LLVM scalar types.

Definition at line 3844 of file CGExprScalar.cpp.

Referenced by convertToComplexValue(), convertToScalarValue(), createRuntimeShuffleFunction(), and emitForStaticInitCall().

◆ EmitScalarExpr()

Value * CodeGenFunction::EmitScalarExpr ( const Expr E,
bool  IgnoreResultAssign = false 
)

◆ EmitScalarInit()

void CodeGenFunction::EmitScalarInit ( const Expr init,
const ValueDecl D,
LValue  lvalue,
bool  capturedByInit 
)

◆ EmitScalarPrePostIncDec()

llvm::Value * CodeGenFunction::EmitScalarPrePostIncDec ( const UnaryOperator E,
LValue  LV,
bool  isInc,
bool  isPre 
)

Definition at line 3866 of file CGExprScalar.cpp.

Referenced by EmitComplexToScalarConversion().

◆ EmitScalarRangeCheck()

bool CodeGenFunction::EmitScalarRangeCheck ( llvm::Value Value,
QualType  Ty,
SourceLocation  Loc 
)

Check if the scalar Value is within the valid range for the given type Ty.

Returns true if a check is needed (even if the range is unknown).

Definition at line 1495 of file CGExpr.cpp.

References Builder, CGM, EmitCheck(), EmitCheckSourceLocation(), EmitCheckTypeDescriptor(), EmitCheckValue(), End, clang::Type::getAs(), clang::CodeGen::CodeGenModule::getContext(), getLLVMContext(), getRangeForType(), clang::SanitizerSet::has(), hasBooleanRepresentation(), and SanOpts.

Referenced by EmitLoadOfBitfieldLValue(), and EmitLoadOfScalar().

◆ EmitSEHAbnormalTermination()

llvm::Value * CodeGenFunction::EmitSEHAbnormalTermination ( )

Definition at line 1802 of file CGException.cpp.

◆ EmitSEHExceptionCode()

llvm::Value * CodeGenFunction::EmitSEHExceptionCode ( )

Definition at line 1797 of file CGException.cpp.

◆ EmitSEHExceptionCodeSave()

void CodeGenFunction::EmitSEHExceptionCodeSave ( CodeGenFunction ParentCGF,
llvm::Value ParentFP,
llvm::Value EntryEBP 
)

◆ EmitSEHExceptionInfo()

llvm::Value * CodeGenFunction::EmitSEHExceptionInfo ( )

Definition at line 1788 of file CGException.cpp.

References clang::CodeGen::CodeGenTypeCache::Int8PtrTy.

◆ EmitSEHLeaveStmt()

void CodeGenFunction::EmitSEHLeaveStmt ( const SEHLeaveStmt S)

Definition at line 1915 of file CGException.cpp.

◆ EmitSEHTryStmt()

void CodeGenFunction::EmitSEHTryStmt ( const SEHTryStmt S)

Definition at line 1429 of file CGException.cpp.

◆ EmitSimpleCallExpr()

RValue CodeGenFunction::EmitSimpleCallExpr ( const CallExpr E,
ReturnValueSlot  ReturnValue 
)

Emit a CallExpr without considering whether it might be a subclass.

Definition at line 4225 of file CGExpr.cpp.

◆ EmitSimpleOMPExecutableDirective()

void CodeGenFunction::EmitSimpleOMPExecutableDirective ( const OMPExecutableDirective D)

Emit simple code for OpenMP directives in Simd-only mode.

Definition at line 4796 of file CGStmtOpenMP.cpp.

References clang::OMPExecutableDirective::getAssociatedStmt(), and clang::OMPExecutableDirective::hasAssociatedStmt().

◆ EmitSimpleStmt()

bool CodeGenFunction::EmitSimpleStmt ( const Stmt S)

EmitSimpleStmt - Try to emit a "simple" statement which does not necessarily require an insertion point or debug information; typically because the statement amounts to a jump or a container of other statements.

Returns
True if the statement was handled.

Definition at line 349 of file CGStmt.cpp.

◆ EmitStartEHSpec()

void CodeGenFunction::EmitStartEHSpec ( const Decl D)

◆ EmitStaticVarDecl()

void CodeGenFunction::EmitStaticVarDecl ( const VarDecl D,
llvm::GlobalValue::LinkageTypes  Linkage 
)

◆ EmitStmt()

void CodeGenFunction::EmitStmt ( const Stmt S,
ArrayRef< const Attr *>  Attrs = None 
)

EmitStmt - Emit the code for the statement.

  • S. It is legal to call this function even if there is no current insertion point.

This function may clear the current insertion point; callers should use EnsureInsertPoint if they wish to subsequently generate code without first calling EmitBlock, EmitBranch, or EmitStmt.

Definition at line 48 of file CGStmt.cpp.

Referenced by clang::CodeGen::CodeGenFunction::CGCapturedStmtInfo::EmitBody(), EmitOMPTargetTeamsDistributeParallelForDirective(), EmitOMPTargetTeamsDistributeParallelForSimdDirective(), EmitOMPTaskDirective(), GenerateObjCAtomicSetterCopyHelperFunction(), generateObjCSetterBody(), and getBundlesForCoroEnd().

◆ EmitStmtExprLValue()

LValue CodeGenFunction::EmitStmtExprLValue ( const StmtExpr E)

Definition at line 4452 of file CGExpr.cpp.

◆ EmitStopPoint()

void CodeGenFunction::EmitStopPoint ( const Stmt S)

EmitStopPoint - Emit a debug stoppoint if we are emitting debug info.

Definition at line 38 of file CGStmt.cpp.

Referenced by emitOMPLoopBodyWithStopPoint().

◆ EmitStoreOfComplex()

void CodeGenFunction::EmitStoreOfComplex ( ComplexPairTy  V,
LValue  dest,
bool  isInit 
)

EmitStoreOfComplex - Store a complex number into the specified l-value.

Definition at line 1107 of file CGExprComplex.cpp.

Referenced by EmitAtomicLoad(), EmitAtomicUpdateValue(), EmitExprAsInit(), EmitInitStoreOfNonAggregate(), generateObjCGetterBody(), and InitCatchParam().

◆ EmitStoreOfScalar() [1/3]

void clang::CodeGen::CodeGenFunction::EmitStoreOfScalar ( llvm::Value Value,
Address  Addr,
bool  Volatile,
QualType  Ty,
AlignmentSource  Source = AlignmentSource::Type,
bool  isInit = false,
bool  isNontemporal = false 
)
inline

◆ EmitStoreOfScalar() [2/3]

void CodeGenFunction::EmitStoreOfScalar ( llvm::Value Value,
Address  Addr,
bool  Volatile,
QualType  Ty,
LValueBaseInfo  BaseInfo,
TBAAAccessInfo  TBAAInfo,
bool  isInit = false,
bool  isNontemporal = false 
)

◆ EmitStoreOfScalar() [3/3]

void CodeGenFunction::EmitStoreOfScalar ( llvm::Value value,
LValue  lvalue,
bool  isInit = false 
)

EmitStoreOfScalar - Store a scalar value to an address, taking care to appropriately convert from the memory representation to the LLVM value representation.

The l-value must be a simple l-value. The isInit flag indicates whether this is an initialization. If so, atomic qualifiers are ignored and the store is always non-atomic.

Definition at line 1672 of file CGExpr.cpp.

References EmitStoreOfScalar(), clang::CodeGen::LValue::getAddress(), clang::CodeGen::LValue::getBaseInfo(), clang::CodeGen::LValue::getTBAAInfo(), clang::CodeGen::LValue::getType(), clang::CodeGen::LValue::isNontemporal(), and clang::CodeGen::LValue::isVolatile().

◆ EmitStoreThroughBitfieldLValue()

void CodeGenFunction::EmitStoreThroughBitfieldLValue ( RValue  Src,
LValue  Dst,
llvm::Value **  Result = nullptr 
)

◆ EmitStoreThroughExtVectorComponentLValue()

void CodeGenFunction::EmitStoreThroughExtVectorComponentLValue ( RValue  Src,
LValue  Dst 
)

◆ EmitStoreThroughGlobalRegLValue()

void CodeGenFunction::EmitStoreThroughGlobalRegLValue ( RValue  Src,
LValue  Dst 
)

◆ EmitStoreThroughLValue()

void CodeGenFunction::EmitStoreThroughLValue ( RValue  Src,
LValue  Dst,
bool  isInit = false 
)

EmitStoreThroughLValue - Store the specified rvalue into the specified lvalue, where both are guaranteed to the have the same type, and that type is 'Ty'.

Definition at line 1836 of file CGExpr.cpp.

References Builder, CGM, clang::CodeGen::CGBuilderTy::CreateLoad(), clang::CodeGen::CGBuilderTy::CreateStore(), EmitARCInitWeak(), EmitARCRetain(), EmitARCStoreStrong(), EmitARCStoreWeak(), EmitObjCExtendObjectLifetime(), clang::CodeGen::CGObjCRuntime::EmitObjCGlobalAssign(), clang::CodeGen::CGObjCRuntime::EmitObjCIvarAssign(), clang::CodeGen::CGObjCRuntime::EmitObjCStrongCastAssign(), clang::CodeGen::CGObjCRuntime::EmitObjCWeakAssign(), EmitPointerWithAlignment(), EmitStoreOfScalar(), EmitStoreThroughBitfieldLValue(), EmitStoreThroughExtVectorComponentLValue(), EmitStoreThroughGlobalRegLValue(), clang::CodeGen::RValue::get(), clang::CodeGen::LValue::getAddress(), clang::CodeGen::LValue::getBaseIvarExp(), clang::Qualifiers::getObjCLifetime(), clang::CodeGen::CodeGenModule::getObjCRuntime(), clang::CodeGen::Address::getPointer(), clang::CodeGen::LValue::getQuals(), clang::CodeGen::RValue::getScalarVal(), clang::CodeGen::LValue::getType(), clang::CodeGen::LValue::getVectorAddress(), clang::CodeGen::LValue::getVectorIdx(), clang::CodeGen::CodeGenTypeCache::IntPtrTy, clang::CodeGen::LValue::isBitField(), clang::CodeGen::LValue::isExtVectorElt(), clang::CodeGen::LValue::isGlobalObjCRef(), clang::CodeGen::LValue::isGlobalReg(), clang::CodeGen::LValue::isNonGC(), clang::CodeGen::LValue::isObjCIvar(), clang::CodeGen::LValue::isObjCStrong(), clang::CodeGen::LValue::isObjCWeak(), clang::CodeGen::RValue::isScalar(), clang::CodeGen::LValue::isSimple(), clang::CodeGen::LValue::isThreadLocalRef(), clang::CodeGen::LValue::isVectorElt(), clang::CodeGen::LValue::isVolatileQualified(), clang::Qualifiers::OCL_Autoreleasing, clang::Qualifiers::OCL_ExplicitNone, clang::Qualifiers::OCL_None, clang::Qualifiers::OCL_Strong, clang::Qualifiers::OCL_Weak, and clang::CodeGen::Type.

Referenced by EmitAtomicUpdateValue(), EmitAutoVarInit(), EmitExprAsInit(), emitProxyTaskFunction(), EmitScalarInit(), emitWriteback(), and GetIntrinsic().

◆ EmitStringLiteralLValue()

LValue CodeGenFunction::EmitStringLiteralLValue ( const StringLiteral E)

Definition at line 2566 of file CGExpr.cpp.

◆ EmitSwitchStmt()

void CodeGenFunction::EmitSwitchStmt ( const SwitchStmt S)

Definition at line 1551 of file CGStmt.cpp.

◆ EmitSynthesizedCXXCopyCtor()

void CodeGenFunction::EmitSynthesizedCXXCopyCtor ( Address  Dest,
Address  Src,
const Expr Exp 
)

Definition at line 629 of file CGExprCXX.cpp.

◆ EmitSynthesizedCXXCopyCtorCall()

void CodeGenFunction::EmitSynthesizedCXXCopyCtorCall ( const CXXConstructorDecl D,
Address  This,
Address  Src,
const CXXConstructExpr E 
)

Definition at line 2242 of file CGClass.cpp.

◆ EmitSystemZBuiltinExpr()

Value * CodeGenFunction::EmitSystemZBuiltinExpr ( unsigned  BuiltinID,
const CallExpr E 
)

Definition at line 9447 of file CGBuiltin.cpp.

References clang::CallExpr::getArg().

Referenced by EmitTargetArchBuiltinExpr().

◆ EmitTargetBuiltinExpr()

Value * CodeGenFunction::EmitTargetBuiltinExpr ( unsigned  BuiltinID,
const CallExpr E 
)

EmitTargetBuiltinExpr - Emit the given builtin call.

Returns 0 if the call is unhandled by the current target.

Definition at line 3370 of file CGBuiltin.cpp.

References BuiltinInfo, and EmitTargetArchBuiltinExpr().

◆ EmitToMemory()

llvm::Value * CodeGenFunction::EmitToMemory ( llvm::Value Value,
QualType  Ty 
)

EmitToMemory - Change a scalar value from its value representation to its in-memory representation.

Definition at line 1599 of file CGExpr.cpp.

References Builder, ConvertTypeForMem(), getContext(), getTypeSize(), and hasBooleanRepresentation().

Referenced by EmitAtomicLoad(), EmitCheckedMixedSignMultiply(), EmitStoreOfScalar(), and EmitToInt().

◆ EmitTrapCall()

llvm::CallInst * CodeGenFunction::EmitTrapCall ( llvm::Intrinsic::ID  IntrID)

Emit a call to trap or debugtrap and attach function attribute "trap-func-name" if specified.

Definition at line 3113 of file CGExpr.cpp.

References Builder, CGM, clang::CodeGen::CodeGenModule::getCodeGenOpts(), clang::CodeGen::CodeGenModule::getIntrinsic(), getLLVMContext(), and clang::CodeGenOptions::TrapFuncName.

Referenced by EmitTrapCheck(), and GenerateCode().

◆ EmitTrapCheck()

void CodeGenFunction::EmitTrapCheck ( llvm::Value Checked)

Create a basic block that will call the trap intrinsic, and emit a conditional branch to it, for the -ftrapv checks.

Definition at line 3093 of file CGExpr.cpp.

References Builder, CGM, createBasicBlock(), EmitBlock(), EmitTrapCall(), and clang::CodeGen::CodeGenModule::getCodeGenOpts().

Referenced by EmitCfiCheckFail(), and EmitCheck().

◆ EmitTypeCheck()

void CodeGenFunction::EmitTypeCheck ( TypeCheckKind  TCK,
SourceLocation  Loc,
llvm::Value V,
QualType  Type,
CharUnits  Alignment = CharUnits::Zero(),
SanitizerSet  SkippedChecks = SanitizerSet() 
)

Emit a check that V is the address of storage of the appropriate size and alignment for an object of type Type.

Definition at line 591 of file CGExpr.cpp.

References Builder, CGM, clang::CodeGen::CGBuilderTy::CreateAlignedLoad(), createBasicBlock(), clang::CodeGen::CGBuilderTy::CreateBitCast(), clang::CodeGen::CGBuilderTy::CreateLoad(), clang::CodeGen::CodeGenModule::CreateRuntimeVariable(), EmitBlock(), EmitCheck(), EmitCheckSourceLocation(), EmitCheckTypeDescriptor(), emitHash16Bytes(), clang::CodeGen::CodeGenModule::GetAddrOfRTTIDescriptor(), clang::CodeGen::CodeGenModule::getContext(), getContext(), clang::CodeGen::CodeGenModule::getCXXABI(), clang::CodeGen::CodeGenModule::getIntrinsic(), getLLVMContext(), clang::CodeGen::CGCXXABI::getMangleContext(), clang::CodeGen::CodeGenTypeCache::getPointerAlign(), clang::CharUnits::getQuantity(), clang::ASTContext::getSanitizerBlacklist(), clang::ASTContext::getTypeAlignInChars(), clang::ASTContext::getTypeSizeInChars(), clang::QualType::getUnqualifiedType(), clang::SanitizerSet::has(), clang::CodeGen::CodeGenTypeCache::Int64Ty, clang::CodeGen::CodeGenTypeCache::Int8PtrTy, clang::CodeGen::CodeGenTypeCache::Int8Ty, clang::CodeGen::CodeGenTypeCache::IntPtrTy, clang::SanitizerBlacklist::isBlacklistedType(), clang::Type::isIncompleteType(), isNullPointerAllowed(), clang::QualType::isVolatileQualified(), isVptrCheckRequired(), clang::MangleContext::mangleCXXRTTI(), sanitizePerformTypeCheck(), SanOpts, and clang::CodeGen::Type.

Referenced by EmitObjectDelete(), ShouldNullCheckClassCastValue(), and StartFunction().

◆ EmitTypeMetadataCodeForVCall()

void CodeGenFunction::EmitTypeMetadataCodeForVCall ( const CXXRecordDecl RD,
llvm::Value VTable,
SourceLocation  Loc 
)

If whole-program virtual table optimization is enabled, emit an assumption that VTable is a member of RD's type identifier.

Or, if vptr CFI is enabled, emit a check that VTable is a member of RD's type identifier.

Definition at line 2566 of file CGClass.cpp.

References CFITCK_VCall, and clang::TypeDecl::getTypeForDecl().

◆ EmitUnaryOpLValue()

LValue CodeGenFunction::EmitUnaryOpLValue ( const UnaryOperator E)

Definition at line 2499 of file CGExpr.cpp.

◆ EmitUnreachable()

void CodeGenFunction::EmitUnreachable ( SourceLocation  Loc)

Emit a reached-unreachable diagnostic if Loc is valid and runtime checking is enabled.

Otherwise, just emit an unreachable instruction.

Definition at line 3082 of file CGExpr.cpp.

References Builder, EmitCheck(), EmitCheckSourceLocation(), clang::SanitizerSet::has(), and SanOpts.

◆ EmitUnsupportedLValue()

LValue CodeGenFunction::EmitUnsupportedLValue ( const Expr E,
const char *  Name 
)

EmitUnsupportedLValue - Emit a dummy l-value using the type of E and issue an ErrorUnsupported style diagnostic (using the provided Name).

Definition at line 1103 of file CGExpr.cpp.

Referenced by EmitConditionalOperatorLValue().

◆ EmitUnsupportedRValue()

RValue CodeGenFunction::EmitUnsupportedRValue ( const Expr E,
const char *  Name 
)

EmitUnsupportedRValue - Emit a dummy r-value using the type of E and issue an ErrorUnsupported style diagnostic (using the provided Name).

Definition at line 1097 of file CGExpr.cpp.

◆ EmitVAArg()

Address CodeGenFunction::EmitVAArg ( VAArgExpr VE,
Address VAListAddr 
)

Generate code to get an argument from the passed in pointer and update it accordingly.

Parameters
VEThe VAArgExpr for which to generate code.
VAListAddrReceives a reference to the va_list as emitted by either EmitVAListRef or EmitMSVAListRef.
Returns
A pointer to the argument.

Definition at line 4408 of file CGCall.cpp.

References clang::VAArgExpr::getSubExpr(), clang::Expr::getType(), and clang::VAArgExpr::isMicrosoftABI().

Referenced by isBlockVarRef(), and isCheapEnoughToEvaluateUnconditionally().

◆ EmitVAArgExprLValue()

LValue CodeGenFunction::EmitVAArgExprLValue ( const VAArgExpr E)

Definition at line 4351 of file CGExpr.cpp.

◆ EmitVAListRef()

Address CodeGenFunction::EmitVAListRef ( const Expr E)

Definition at line 2099 of file CodeGenFunction.cpp.

◆ EmitVarAnnotations()

void CodeGenFunction::EmitVarAnnotations ( const VarDecl D,
llvm::Value V 
)

Emit local annotations for the local variable V, declared by D.

Definition at line 2157 of file CodeGenFunction.cpp.

References clang::Decl::hasAttr().

Referenced by EmitParmDecl().

◆ EmitVarDecl()

void CodeGenFunction::EmitVarDecl ( const VarDecl D)

EmitVarDecl - Emit a local variable declaration.

EmitVarDecl - This method handles emission of any variable declaration inside a function, including static vars etc.

This function can be called with a null (unreachable) insert point.

Definition at line 156 of file CGDecl.cpp.

References CGM, EmitAutoVarDecl(), EmitStaticVarDecl(), clang::CodeGen::CGOpenCLRuntime::EmitWorkGroupLocalVarDecl(), clang::QualType::getAddressSpace(), clang::CodeGen::CodeGenModule::getLLVMLinkageVarDefinition(), clang::CodeGen::CodeGenModule::getOpenCLRuntime(), clang::VarDecl::getStorageDuration(), clang::ValueDecl::getType(), clang::VarDecl::hasExternalStorage(), clang::VarDecl::hasLocalStorage(), clang::Type::isSamplerT(), clang::opencl_local, and clang::SD_Automatic.

Referenced by EmitDecl(), and EmitOMPHelperVar().

◆ EmitVariablyModifiedType()

void CodeGenFunction::EmitVariablyModifiedType ( QualType  Ty)

◆ EmitVAStartEnd()

Value * CodeGenFunction::EmitVAStartEnd ( llvm::Value ArgValue,
bool  IsStart 
)

Emits a call to an LLVM variable-argument intrinsic, either llvm.va_start or llvm.va_end.

Parameters
ArgValueA reference to the va_list as emitted by either EmitVAListRef or EmitMSVAListRef.
IsStartIf true, emits a call to llvm.va_start; otherwise, calls llvm.va_end.

Definition at line 401 of file CGBuiltin.cpp.

References clang::CodeGen::Type.

◆ EmitVTableAssumptionLoad()

void CodeGenFunction::EmitVTableAssumptionLoad ( const VPtr vptr,
Address  This 
)

◆ EmitVTableAssumptionLoads()

void CodeGenFunction::EmitVTableAssumptionLoads ( const CXXRecordDecl ClassDecl,
Address  This 
)

Emit assumption load for all bases.

Requires to be be called only on most-derived class and not under construction of the object.

Definition at line 2234 of file CGClass.cpp.

◆ EmitVTablePtrCheck()

void CodeGenFunction::EmitVTablePtrCheck ( const CXXRecordDecl RD,
llvm::Value VTable,
CFITypeCheckKind  TCK,
SourceLocation  Loc 
)

EmitVTablePtrCheck - Emit a check that VTable is a valid virtual table for RD using llvm.type.test.

Definition at line 2642 of file CGClass.cpp.

References clang::CodeGen::CodeGenModule::getContext(), clang::CodeGen::CodeGenModule::getLLVMContext(), clang::NamedDecl::getQualifiedNameAsString(), and clang::TypeDecl::getTypeForDecl().

◆ EmitVTablePtrCheckForCall()

void CodeGenFunction::EmitVTablePtrCheckForCall ( const CXXRecordDecl RD,
llvm::Value VTable,
CFITypeCheckKind  TCK,
SourceLocation  Loc 
)

EmitVTablePtrCheckForCall - Virtual method MD is being called via VTable.

If vptr CFI is enabled, emit a check that VTable is valid.

Definition at line 2586 of file CGClass.cpp.

References LeastDerivedClassWithSameLayout().

◆ EmitVTablePtrCheckForCast()

void CodeGenFunction::EmitVTablePtrCheckForCast ( QualType  T,
llvm::Value Derived,
bool  MayBeNull,
CFITypeCheckKind  TCK,
SourceLocation  Loc 
)

Derived is the presumed address of an object of type T after a cast.

If T is a polymorphic class type, emit a check that the virtual table for Derived belongs to a class derived from T.

Definition at line 2596 of file CGClass.cpp.

References clang::frontend::CPlusPlus, clang::Type::getAs(), clang::CodeGen::CodeGenModule::getLangOpts(), clang::TagDecl::isCompleteDefinition(), clang::CXXRecordDecl::isDynamicClass(), and LeastDerivedClassWithSameLayout().

Referenced by ShouldNullCheckClassCastValue().

◆ EmitVTableTypeCheckedLoad()

llvm::Value * CodeGenFunction::EmitVTableTypeCheckedLoad ( const CXXRecordDecl RD,
llvm::Value VTable,
uint64_t  VTableByteOffset 
)

Emit a type checked load from the given vtable.

Definition at line 2726 of file CGClass.cpp.

References clang::TypeDecl::getTypeForDecl().

◆ EmitWebAssemblyBuiltinExpr()

Value * CodeGenFunction::EmitWebAssemblyBuiltinExpr ( unsigned  BuiltinID,
const CallExpr E 
)

Definition at line 10235 of file CGBuiltin.cpp.

References clang::Expr::getType(), and clang::CodeGen::Type.

Referenced by EmitTargetArchBuiltinExpr().

◆ EmitWhileStmt()

void CodeGenFunction::EmitWhileStmt ( const WhileStmt S,
ArrayRef< const Attr *>  Attrs = None 
)

Definition at line 679 of file CGStmt.cpp.

◆ EmitX86BuiltinExpr()

Value * CodeGenFunction::EmitX86BuiltinExpr ( unsigned  BuiltinID,
const CallExpr E 
)

◆ enableDebugInfo()

void clang::CodeGen::CodeGenFunction::enableDebugInfo ( )
inline

Definition at line 1447 of file CodeGenFunction.h.

◆ EncodeAddrForUseInPrologue()

llvm::Constant * CodeGenFunction::EncodeAddrForUseInPrologue ( llvm::Function *  F,
llvm::Constant *  Addr 
)

Encode an address into a form suitable for use in a function prologue.

Definition at line 474 of file CodeGenFunction.cpp.

References CGM, clang::CodeGen::CodeGenModule::getModule(), clang::CodeGen::CodeGenTypeCache::Int32Ty, and clang::CodeGen::CodeGenTypeCache::IntPtrTy.

Referenced by StartFunction().

◆ EnsureInsertPoint()

void clang::CodeGen::CodeGenFunction::EnsureInsertPoint ( )
inline

EnsureInsertPoint - Ensure that an insertion point is defined so that emitted IR has a place to go.

Note that by definition, if this function creates a block then that block is unreachable; callers may do better to detect when no insertion point is defined and simply skip IR generation.

Definition at line 1902 of file CodeGenFunction.h.

Referenced by EmitAutoVarAlloca(), EmitAutoVarInit(), EmitVariablyModifiedType(), GetIntrinsic(), and clang::CodeGen::CodeGenFunction::StmtExprEvaluation::~StmtExprEvaluation().

◆ enterByrefCleanup()

void CodeGenFunction::enterByrefCleanup ( const AutoVarEmission emission)

Enter a cleanup to destroy a __block variable.

Note that this cleanup should be a no-op if the variable hasn't left the stack yet; if a cleanup is required for the variable itself, that needs to be done externally.

Definition at line 2523 of file CGBlocks.cpp.

References clang::LangOptions::GCOnly, clang::CodeGen::CodeGenModule::getLangOpts(), clang::CodeGen::Address::getPointer(), and clang::CodeGen::NormalAndEHCleanup.

Referenced by EmitAutoVarCleanups().

◆ EnterCXXTryStmt()

void CodeGenFunction::EnterCXXTryStmt ( const CXXTryStmt S,
bool  IsFnTryBlock = false 
)

Definition at line 551 of file CGException.cpp.

◆ EnterDtorCleanups()

void CodeGenFunction::EnterDtorCleanups ( const CXXDestructorDecl DD,
CXXDtorType  DtorType 
)

EnterDtorCleanups - Enter the cleanups necessary to complete the given phase of destruction for a destructor.

Emit all code that comes at the end of class's destructor.

The end result should call destructors on members and base classes in reverse order of their construction.

This is to call destructors on members and base classes in reverse order of their construction.

For a deleting destructor, this also handles the case where a destroying operator delete completely overrides the definition.

Definition at line 1737 of file CGClass.cpp.

References clang::CXXRecordDecl::bases(), clang::Dtor_Base, clang::Dtor_Complete, clang::Dtor_Deleting, clang::CodeGen::EHCleanup, clang::RecordDecl::fields(), clang::Type::getAsUnionType(), clang::CodeGen::CodeGenModule::getContext(), clang::RecordType::getDecl(), clang::CXXRecordDecl::getNumVBases(), clang::CXXDestructorDecl::getOperatorDelete(), clang::CXXMethodDecl::getParent(), clang::ASTContext::getTagDeclType(), clang::ValueDecl::getType(), clang::Decl::hasAttr(), clang::CXXRecordDecl::hasTrivialDestructor(), clang::RecordDecl::isAnonymousStructOrUnion(), clang::FunctionDecl::isDestroyingOperatorDelete(), clang::QualType::isDestructedType(), clang::CXXRecordDecl::isPolymorphic(), clang::FunctionDecl::isTrivial(), clang::TagDecl::isUnion(), clang::CodeGen::NormalAndEHCleanup, and clang::CXXRecordDecl::vbases().

◆ enterFullExpression()

void clang::CodeGen::CodeGenFunction::enterFullExpression ( const ExprWithCleanups E)
inline

◆ enterNonTrivialFullExpression()

void CodeGenFunction::enterNonTrivialFullExpression ( const ExprWithCleanups E)

Enter a full-expression with a non-trivial number of objects to clean up.

This is in this file because, at the moment, the only kind of cleanup object is a BlockDecl*.

Definition at line 706 of file CGBlocks.cpp.

◆ EnterSEHTryStmt()

void CodeGenFunction::EnterSEHTryStmt ( const SEHTryStmt S)

Definition at line 1809 of file CGException.cpp.

◆ ErrorUnsupported()

void CodeGenFunction::ErrorUnsupported ( const Stmt S,
const char *  Type 
)

ErrorUnsupported - Print out an error that codegen doesn't support the specified stmt yet.

Definition at line 1673 of file CodeGenFunction.cpp.

Referenced by getAsInt32(), isBlockVarRef(), and isCheapEnoughToEvaluateUnconditionally().

◆ EvaluateExprAsBool()

llvm::Value * CodeGenFunction::EvaluateExprAsBool ( const Expr E)

EvaluateExprAsBool - Perform the usual unary conversions on the specified expression and compare the result against zero, returning an Int1Ty value.

Definition at line 143 of file CGExpr.cpp.

Referenced by EmitBranchOnBoolExpr(), GetIntrinsic(), and isCheapEnoughToEvaluateUnconditionally().

◆ ExitCXXTryStmt()

void CodeGenFunction::ExitCXXTryStmt ( const CXXTryStmt S,
bool  IsFnTryBlock = false 
)

Definition at line 1016 of file CGException.cpp.

◆ ExitSEHTryStmt()

void CodeGenFunction::ExitSEHTryStmt ( const SEHTryStmt S)

Definition at line 1849 of file CGException.cpp.

◆ FinishFunction()

void CodeGenFunction::FinishFunction ( SourceLocation  EndLoc = SourceLocation())

FinishFunction - Complete IR generation of the current function.

It is legal to call this function even if there is no current insertion point.

Definition at line 313 of file CodeGenFunction.cpp.

References AllocaInsertPt, Builder, CGM, clang::CodeGen::EHScopeStack::containsOnlyLifetimeMarkers(), CurCodeDecl, CurFn, CurFnInfo, EHResumeBlock, EHStack, EmitBlock(), EmitEndEHSpec(), EmitFunctionEpilog(), EmitIfUsed(), EmitReturnBlock(), clang::CodeGen::EHScopeStack::empty(), clang::CodeGen::CodeGenFunction::JumpDest::getBlock(), clang::CodeGen::CodeGenModule::getCodeGenOpts(), getDebugInfo(), clang::CodeGen::CodeGenModule::getModule(), PopCleanupBlocks(), PrologueCleanupDepth, ReturnBlock, ShouldInstrumentFunction(), and clang::CodeGen::EHScopeStack::stable_begin().

Referenced by createAtExitStub(), createOffloadingBinaryDescriptorFunction(), EmitCfiCheckFail(), emitCombinerOrInitializer(), emitCopyToScratchpad(), emitCXXDestructor(), emitDestructorsFunction(), emitInterWarpCopyFunction(), emitProxyTaskFunction(), emitReduceCombFunction(), emitReduceFiniFunction(), emitReduceInitFunction(), emitReduceScratchpadFunction(), emitShuffleAndReduceFunction(), emitTaskDupFunction(), clang::CodeGen::emitThreadPrivateVarInit(), GenerateCode(), GenerateCXXGlobalDtorsFunc(), GenerateCXXGlobalInitFunc(), GenerateCXXGlobalVarDeclInitFunc(), generateDestroyHelper(), GenerateObjCAtomicGetterCopyHelperFunction(), GenerateObjCAtomicSetterCopyHelperFunction(), GenerateObjCCtorDtorMethod(), GenerateObjCGetter(), GenerateObjCMethod(), and GenerateObjCSetter().

◆ FinishThunk()

void CodeGenFunction::FinishThunk ( )

Definition at line 278 of file CGVTables.cpp.

◆ GenerateBlockFunction()

llvm::Function * CodeGenFunction::GenerateBlockFunction ( GlobalDecl  GD,
const CGBlockInfo Info,
const DeclMapTy ldm,
bool  IsLambdaConversionToBlock,
bool  BuildGlobalBlock 
)

◆ generateBuiltinOSLogHelperFunction()

llvm::Function * CodeGenFunction::generateBuiltinOSLogHelperFunction ( const analyze_os_log::OSLogBufferLayout Layout,
CharUnits  BufferAlignment 
)

Definition at line 674 of file CGBuiltin.cpp.

◆ GenerateCapturedStmtArgument()

Address CodeGenFunction::GenerateCapturedStmtArgument ( const CapturedStmt S)

Definition at line 2259 of file CGStmt.cpp.

◆ GenerateCapturedStmtFunction()

llvm::Function * CodeGenFunction::GenerateCapturedStmtFunction ( const CapturedStmt S)

Creates the outlined function for a CapturedStmt.

Definition at line 2266 of file CGStmt.cpp.

◆ GenerateCode()

void CodeGenFunction::GenerateCode ( GlobalDecl  GD,
llvm::Function *  Fn,
const CGFunctionInfo FnInfo 
)

◆ GenerateCopyHelperFunction()

llvm::Constant * CodeGenFunction::GenerateCopyHelperFunction ( const CGBlockInfo blockInfo)

Generate the copy-helper function for a block closure object: static void block_copy_helper(block_t *dst, block_t *src); The runtime will have previously initialized 'dst' by doing a bit-copy of 'src'.

Note that this copies an entire block closure object to the heap; it should not be confused with a 'byref copy helper', which moves the contents of an individual __block variable to the heap.

Definition at line 1614 of file CGBlocks.cpp.

References clang::CodeGen::CodeGenTypes::arrangeBuiltinFunctionDeclaration(), clang::FunctionDecl::Create(), clang::Create(), clang::IdentifierTable::get(), clang::CodeGen::CGBlockInfo::getBlockExpr(), clang::CodeGen::CodeGenModule::getContext(), clang::CodeGen::CodeGenTypes::GetFunctionType(), clang::BlockExpr::getLocStart(), clang::CodeGen::CodeGenModule::getModule(), clang::ASTContext::getTranslationUnitDecl(), clang::CodeGen::CodeGenModule::getTypes(), clang::ASTContext::Idents, clang::InternalLinkage, clang::ImplicitParamDecl::Other, clang::SC_Static, clang::CodeGen::CodeGenModule::SetInternalFunctionAttributes(), clang::CodeGen::CGBlockInfo::StructureType, clang::CodeGen::Type, clang::ASTContext::VoidPtrTy, and clang::ASTContext::VoidTy.

Referenced by buildCopyHelper().

◆ GenerateCXXGlobalDtorsFunc()

void CodeGenFunction::GenerateCXXGlobalDtorsFunc ( llvm::Function *  Fn,
const std::vector< std::pair< llvm::WeakTrackingVH, llvm::Constant *>> &  DtorsAndObjects 
)

◆ GenerateCXXGlobalInitFunc()

void CodeGenFunction::GenerateCXXGlobalInitFunc ( llvm::Function *  Fn,
ArrayRef< llvm::Function *>  CXXThreadLocals,
Address  Guard = Address::invalid() 
)

◆ GenerateCXXGlobalVarDeclInitFunc()

void CodeGenFunction::GenerateCXXGlobalVarDeclInitFunc ( llvm::Function *  Fn,
const VarDecl D,
llvm::GlobalVariable *  Addr,
bool  PerformInit 
)

◆ generateDestroyHelper()

llvm::Function * CodeGenFunction::generateDestroyHelper ( Address  addr,
QualType  type,
Destroyer destroyer,
bool  useEHCleanupForArray,
const VarDecl VD 
)

◆ GenerateDestroyHelperFunction()

llvm::Constant * CodeGenFunction::GenerateDestroyHelperFunction ( const CGBlockInfo blockInfo)

◆ GenerateObjCAtomicGetterCopyHelperFunction()

llvm::Constant * CodeGenFunction::GenerateObjCAtomicGetterCopyHelperFunction ( const ObjCPropertyImplDecl PID)

Definition at line 3293 of file CGObjC.cpp.

References clang::QualType::addConst(), clang::CodeGen::CodeGenTypes::arrangeBuiltinFunctionDeclaration(), clang::frontend::CPlusPlus, clang::CXXConstructExpr::Create(), clang::FunctionDecl::Create(), clang::Create(), clang::CodeGen::AggValueSlot::DoesNotNeedGCBarriers, EmitAggExpr(), EmitAnyExpr(), FinishFunction(), clang::CodeGen::AggValueSlot::forAddr(), clang::IdentifierTable::get(), clang::CodeGen::CodeGenModule::getAtomicGetterHelperFnMap(), clang::CodeGen::CodeGenModule::getContext(), getContext(), clang::CodeGen::CodeGenTypes::GetFunctionType(), clang::ObjCPropertyImplDecl::getGetterCXXConstructor(), getLangOpts(), clang::CodeGen::CodeGenModule::getModule(), clang::Type::getPointeeType(), clang::ASTContext::getPointerType(), clang::ObjCPropertyDecl::getPropertyAttributes(), clang::ObjCPropertyImplDecl::getPropertyDecl(), clang::CodeGen::RValue::getScalarVal(), clang::ASTContext::getTranslationUnitDecl(), clang::Expr::getType(), clang::ObjCPropertyDecl::getType(), clang::ASTContext::getTypeAlignInChars(), clang::CodeGen::CodeGenModule::getTypes(), clang::ObjCRuntime::hasAtomicCopyHelper(), hasTrivialGetExpr(), clang::ASTContext::Idents, clang::InternalLinkage, clang::CodeGen::AggValueSlot::IsDestructed, clang::CodeGen::AggValueSlot::IsNotAliased, clang::Type::isRecordType(), clang::ObjCPropertyDecl::OBJC_PR_atomic, clang::OK_Ordinary, clang::ImplicitParamDecl::Other, clang::SC_Static, clang::CodeGen::CodeGenModule::setAtomicGetterHelperFnMap(), clang::CodeGen::CodeGenModule::SetInternalFunctionAttributes(), StartFunction(), clang::VK_LValue, clang::VK_RValue, clang::CodeGen::CodeGenTypeCache::VoidPtrTy, and clang::ASTContext::VoidTy.

Referenced by GenerateObjCGetter().

◆ GenerateObjCAtomicSetterCopyHelperFunction()

llvm::Constant * CodeGenFunction::GenerateObjCAtomicSetterCopyHelperFunction ( const ObjCPropertyImplDecl PID)

GenerateObjCAtomicSetterCopyHelperFunction - Given a c++ object type with non-trivial copy assignment function, produce following helper function.

static void copyHelper(Ty *dest, const Ty *source) { *dest = *source; }

Definition at line 3212 of file CGObjC.cpp.

References clang::QualType::addConst(), clang::CodeGen::CodeGenTypes::arrangeBuiltinFunctionDeclaration(), clang::frontend::CPlusPlus, clang::FunctionDecl::Create(), clang::Create(), EmitStmt(), FinishFunction(), clang::IdentifierTable::get(), clang::CodeGen::CodeGenModule::getAtomicSetterHelperFnMap(), clang::CallExpr::getCallee(), clang::CodeGen::CodeGenModule::getContext(), getContext(), clang::CodeGen::CodeGenTypes::GetFunctionType(), getLangOpts(), clang::CodeGen::CodeGenModule::getModule(), clang::Type::getPointeeType(), clang::ASTContext::getPointerType(), clang::ObjCPropertyDecl::getPropertyAttributes(), clang::ObjCPropertyImplDecl::getPropertyDecl(), clang::ObjCPropertyImplDecl::getPropertyIvarDecl(), clang::ObjCPropertyImplDecl::getSetterCXXAssignment(), clang::ASTContext::getTranslationUnitDecl(), clang::ValueDecl::getType(), clang::CodeGen::CodeGenModule::getTypes(), clang::ObjCRuntime::hasAtomicCopyHelper(), hasTrivialSetExpr(), clang::ASTContext::Idents, clang::InternalLinkage, clang::Type::isRecordType(), clang::ObjCPropertyDecl::OBJC_PR_atomic, clang::OK_Ordinary, clang::ImplicitParamDecl::Other, clang::SC_Static, clang::CodeGen::CodeGenModule::setAtomicSetterHelperFnMap(), clang::CodeGen::CodeGenModule::SetInternalFunctionAttributes(), StartFunction(), clang::VK_LValue, clang::VK_RValue, clang::CodeGen::CodeGenTypeCache::VoidPtrTy, and clang::ASTContext::VoidTy.

Referenced by GenerateObjCSetter().

◆ GenerateObjCCtorDtorMethod()

void CodeGenFunction::GenerateObjCCtorDtorMethod ( ObjCImplementationDecl IMP,
ObjCMethodDecl MD,
bool  ctor 
)

◆ GenerateObjCGetter()

void CodeGenFunction::GenerateObjCGetter ( ObjCImplementationDecl IMP,
const ObjCPropertyImplDecl PID 
)

GenerateObjCGetter - Synthesize an Objective-C property getter function.

Generate an Objective-C property getter function.

The given Decl must be an ObjCImplementationDecl. @synthesize is illegal within a category.

Definition at line 810 of file CGObjC.cpp.

References FinishFunction(), GenerateObjCAtomicGetterCopyHelperFunction(), generateObjCGetterBody(), clang::ObjCImplDecl::getClassInterface(), clang::ObjCPropertyDecl::getGetterMethodDecl(), clang::ObjCPropertyImplDecl::getPropertyDecl(), and StartObjCMethod().

◆ generateObjCGetterBody()

void CodeGenFunction::generateObjCGetterBody ( const ObjCImplementationDecl classImpl,
const ObjCPropertyImplDecl propImpl,
const ObjCMethodDecl GetterMothodDecl,
llvm::Constant *  AtomicHelperFn 
)

Definition at line 879 of file CGObjC.cpp.

References clang::CodeGen::CallArgList::add(), AutoreleaseResult, clang::ASTContext::BoolTy, Builder, clang::CodeGen::CodeGenTypes::ConvertType(), ConvertType(), clang::CodeGen::CGBuilderTy::CreateBitCast(), clang::CodeGen::CGBuilderTy::CreateLoad(), clang::CodeGen::CGBuilderTy::CreateStore(), EmitAggregateCopy(), EmitARCLoadWeak(), emitARCRetainLoadOfScalar(), EmitCall(), emitCPPObjectAtomicGetterCall(), EmitIvarOffset(), EmitLoadOfComplex(), EmitLoadOfLValue(), EmitLValueForIvar(), EmitReturnStmt(), EmitStoreOfComplex(), emitStructGetterCall(), clang::CodeGen::CodeGenModule::ErrorUnsupported(), clang::CodeGen::CGCallee::forDirect(), clang::CodeGen::RValue::get(), clang::CodeGen::LValue::getAddress(), GetAddrOfLocalVar(), clang::ObjCImplDecl::getClassInterface(), clang::ObjCMethodDecl::getCmdDecl(), getContext(), clang::CodeGen::CodeGenModule::getDataLayout(), getEvaluationKind(), clang::ObjCPropertyImplDecl::getGetterCXXConstructor(), clang::ObjCPropertyDecl::getGetterMethodDecl(), getLangOpts(), getLLVMContext(), clang::Qualifiers::getObjCLifetime(), clang::CodeGen::CodeGenModule::getObjCRuntime(), clang::CodeGen::Address::getPointer(), clang::ObjCPropertyImplDecl::getPropertyDecl(), clang::CodeGen::CGObjCRuntime::GetPropertyGetFunction(), clang::ObjCPropertyImplDecl::getPropertyIvarDecl(), clang::CodeGen::LValue::getQuals(), clang::ObjCMethodDecl::getReturnType(), clang::CodeGen::RValue::getScalarVal(), clang::ValueDecl::getType(), clang::ObjCPropertyDecl::getType(), getTypes(), hasTrivialGetExpr(), clang::Type::isReferenceType(), LoadObjCSelf(), MakeAddrLValue(), clang::Qualifiers::OCL_Weak, ReturnValue, clang::CodeGen::TEK_Aggregate, clang::CodeGen::TEK_Complex, clang::CodeGen::TEK_Scalar, clang::ASTContext::toBits(), clang::CodeGen::Type, TypeOfSelfObject(), and clang::CodeGen::CodeGenTypeCache::VoidPtrTy.

Referenced by GenerateObjCGetter().

◆ GenerateObjCMethod()

void CodeGenFunction::GenerateObjCMethod ( const ObjCMethodDecl OMD)

Generate an Objective-C method.

An Objective-C method is a C function with its pointer, name, and types registered in the class struture.

Definition at line 572 of file CGObjC.cpp.

References CurFn, EmitCompoundStmtWithoutScope(), FinishFunction(), clang::ObjCMethodDecl::getBody(), clang::Decl::getBodyRBrace(), clang::ObjCMethodDecl::getClassInterface(), incrementProfileCounter(), and StartObjCMethod().

◆ GenerateObjCSetter()

void CodeGenFunction::GenerateObjCSetter ( ObjCImplementationDecl IMP,
const ObjCPropertyImplDecl PID 
)

GenerateObjCSetter - Synthesize an Objective-C property setter function for the given property.

Generate an Objective-C property setter function.

The given Decl must be an ObjCImplementationDecl. @synthesize is illegal within a category.

Definition at line 1341 of file CGObjC.cpp.

References emitDestroy(), EmitLValueForIvar(), FinishFunction(), GenerateObjCAtomicSetterCopyHelperFunction(), generateObjCSetterBody(), clang::CodeGen::LValue::getAddress(), clang::ObjCImplDecl::getClassInterface(), clang::ObjCPropertyImplDecl::getPropertyDecl(), clang::ObjCPropertyDecl::getSetterMethodDecl(), clang::CodeGen::Address::getType(), StartObjCMethod(), and TypeOfSelfObject().

◆ generateObjCSetterBody()

void CodeGenFunction::generateObjCSetterBody ( const ObjCImplementationDecl classImpl,
const ObjCPropertyImplDecl propImpl,
llvm::Constant *  AtomicHelperFn 
)

Definition at line 1163 of file CGObjC.cpp.

References clang::CodeGen::CallArgList::add(), clang::ASTContext::BoolTy, Builder, clang::CodeGen::CGBuilderTy::CreateBitCast(), clang::CodeGen::CGBuilderTy::CreateElementBitCast(), clang::CodeGen::CGBuilderTy::CreateLoad(), clang::CodeGen::CGBuilderTy::CreateStore(), EmitCall(), emitCPPObjectAtomicSetterCall(), EmitIvarOffset(), EmitLValueForIvar(), EmitStmt(), emitStructSetterCall(), clang::CodeGen::CodeGenModule::ErrorUnsupported(), clang::CodeGen::CGCallee::forDirect(), clang::CodeGen::RValue::get(), GetAddrOfLocalVar(), clang::ObjCImplDecl::getClassInterface(), clang::ObjCMethodDecl::getCmdDecl(), getContext(), getLLVMContext(), clang::QualType::getNonReferenceType(), clang::CodeGen::CodeGenModule::getObjCRuntime(), clang::CodeGen::CGObjCRuntime::GetOptimizedPropertySetFunction(), clang::ObjCPropertyImplDecl::getPropertyDecl(), clang::ObjCPropertyImplDecl::getPropertyIvarDecl(), clang::CodeGen::CGObjCRuntime::GetPropertySetFunction(), clang::ObjCMethodDecl::getSelfDecl(), clang::ObjCPropertyImplDecl::getSetterCXXAssignment(), clang::ObjCPropertyDecl::getSetterMethodDecl(), clang::Expr::getType(), clang::ValueDecl::getType(), getTypes(), clang::QualType::getUnqualifiedType(), clang::ASTContext::hasSameUnqualifiedType(), hasTrivialSetExpr(), LoadObjCSelf(), clang::OK_Ordinary, clang::ImplicitCastExpr::OnStack, clang::ObjCMethodDecl::param_begin(), clang::CodeGen::Type, TypeOfSelfObject(), UseOptimizedSetter(), clang::VK_LValue, clang::VK_RValue, clang::CodeGen::CodeGenTypeCache::VoidPtrTy, and clang::CodeGen::CodeGenTypeCache::VoidTy.

Referenced by GenerateObjCSetter().

◆ GenerateOpenMPCapturedStmtFunction()

llvm::Function * CodeGenFunction::GenerateOpenMPCapturedStmtFunction ( const CapturedStmt S)

◆ GenerateOpenMPCapturedVars()

void CodeGenFunction::GenerateOpenMPCapturedVars ( const CapturedStmt S,
SmallVectorImpl< llvm::Value *> &  CapturedVars 
)

◆ GenerateSEHFilterFunction()

llvm::Function * CodeGenFunction::GenerateSEHFilterFunction ( CodeGenFunction ParentCGF,
const SEHExceptStmt Except 
)

Create a stub filter function that will ultimately hold the code of the filter expression.

The EH preparation passes in LLVM will outline the code from the main function body into this stub.

Definition at line 1719 of file CGException.cpp.

References clang::SEHExceptStmt::getFilterExpr().

◆ GenerateSEHFinallyFunction()

llvm::Function * CodeGenFunction::GenerateSEHFinallyFunction ( CodeGenFunction ParentCGF,
const SEHFinallyStmt Finally 
)

◆ generateThunk()

void CodeGenFunction::generateThunk ( llvm::Function *  Fn,
const CGFunctionInfo FnInfo,
GlobalDecl  GD,
const ThunkInfo Thunk 
)

◆ GenerateVarArgsThunk()

llvm::Function * CodeGenFunction::GenerateVarArgsThunk ( llvm::Function *  Fn,
const CGFunctionInfo FnInfo,
GlobalDecl  GD,
const ThunkInfo Thunk 
)

◆ getAccessedFieldNo()

unsigned CodeGenFunction::getAccessedFieldNo ( unsigned  Idx,
const llvm::Constant *  Elts 
)
static

getAccessedFieldNo - Given an encoded value and a result number, return the input field number being accessed.

Definition at line 553 of file CGExpr.cpp.

Referenced by EmitExtVectorElementLValue(), EmitLoadOfExtVectorElementLValue(), and EmitStoreThroughExtVectorComponentLValue().

◆ GetAddressOfBaseClass()

Address CodeGenFunction::GetAddressOfBaseClass ( Address  Value,
const CXXRecordDecl Derived,
CastExpr::path_const_iterator  PathBegin,
CastExpr::path_const_iterator  PathEnd,
bool  NullCheckValue,
SourceLocation  Loc 
)

◆ GetAddressOfDerivedClass()

Address CodeGenFunction::GetAddressOfDerivedClass ( Address  Value,
const CXXRecordDecl Derived,
CastExpr::path_const_iterator  PathBegin,
CastExpr::path_const_iterator  PathEnd,
bool  NullCheckValue 
)

◆ GetAddressOfDirectBaseInCompleteClass()

Address CodeGenFunction::GetAddressOfDirectBaseInCompleteClass ( Address  This,
const CXXRecordDecl Derived,
const CXXRecordDecl Base,
bool  BaseIsVirtual 
)

GetAddressOfBaseOfCompleteClass - Convert the given pointer to a complete class to the given direct base.

Gets the address of a direct base class within a complete object.

This should only be used for (1) non-virtual bases or (2) virtual bases when the type is known to be complete (e.g. in complete destructors).

The object pointed to by 'This' is assumed to be non-null.

Definition at line 199 of file CGClass.cpp.

References clang::ASTContext::getASTRecordLayout(), clang::ASTRecordLayout::getBaseClassOffset(), clang::CodeGen::CodeGenModule::getContext(), clang::CodeGen::Address::getElementType(), and clang::ASTRecordLayout::getVBaseClassOffset().

Referenced by EmitBaseInitializer().

◆ GetAddrOfBlockDecl()

Address CodeGenFunction::GetAddrOfBlockDecl ( const VarDecl var,
bool  ByRef 
)

Definition at line 1168 of file CGBlocks.cpp.

References clang::CodeGen::CGBlockInfo::Capture::isConstant().

◆ GetAddrOfLabel()

llvm::BlockAddress * CodeGenFunction::GetAddrOfLabel ( const LabelDecl L)

◆ GetAddrOfLocalVar()

Address clang::CodeGen::CodeGenFunction::GetAddrOfLocalVar ( const VarDecl VD)
inline

◆ getARCCleanupKind()

CleanupKind clang::CodeGen::CodeGenFunction::getARCCleanupKind ( )
inline

Retrieves the default cleanup kind for an ARC cleanup.

Except under -fobjc-arc-eh, ARC cleanups are normal-only.

Definition at line 3485 of file CodeGenFunction.h.

References clang::ast_matchers::expr, clang::CodeGen::CodeGenModule::getCodeGenOpts(), clang::CodeGen::NormalAndEHCleanup, and clang::CodeGen::NormalCleanup.

Referenced by emitAutoVarTypeCleanup(), EmitAutoVarWithLifetime(), EmitObjCConsumeObject(), EmitParmDecl(), and StartObjCMethod().

◆ getArrayInitIndex()

llvm::Value* clang::CodeGen::CodeGenFunction::getArrayInitIndex ( )
inline

Get the index of the current ArrayInitLoopExpr, if any.

Definition at line 2157 of file CodeGenFunction.h.

References clang::ast_matchers::arrayType.

◆ getBlockByrefInfo()

const BlockByrefInfo & CodeGenFunction::getBlockByrefInfo ( const VarDecl D)

BuildByrefInfo - This routine changes a __block variable declared as T x into:

struct { void *__isa; void *__forwarding; int32_t __flags; int32_t __size; void *__copy_helper; // only if needed void *__destroy_helper; // only if needed void *__byref_variable_layout;// only if needed char padding[X]; // only if needed T x; } x

void *__copy_helper;

void *__destroy_helper;

void *__byref_variable_layout;

Definition at line 2302 of file CGBlocks.cpp.

References clang::CharUnits::alignTo(), clang::CodeGen::BlockByrefInfo::ByrefAlignment, clang::serialized_diags::create(), clang::CodeGen::BlockByrefInfo::FieldIndex, clang::CodeGen::BlockByrefInfo::FieldOffset, clang::CharUnits::fromQuantity(), clang::CodeGen::CodeGenModule::getDataLayout(), clang::NamedDecl::getNameAsString(), clang::CharUnits::getQuantity(), clang::ValueDecl::getType(), max(), clang::CodeGen::Type, and clang::CodeGen::BlockByrefInfo::Type.

Referenced by EmitAutoVarAlloca().

◆ getCleanupKind()

CleanupKind clang::CodeGen::CodeGenFunction::getCleanupKind ( QualType::DestructionKind  kind)
inline

◆ getContext()

ASTContext& clang::CodeGen::CodeGenFunction::getContext ( ) const
inline

Definition at line 1440 of file CodeGenFunction.h.

References clang::CodeGen::CodeGenModule::getContext().

Referenced by AddDirectArgument(), AddVariableConstraints(), BuildFunctionArgList(), clang::CodeGen::CGCXXABI::buildThisParam(), CanSkipVTablePointerInitialization(), castToBase(), CheckAggExprForMemSetUse(), commonEmitCXXMemberOrOperatorCall(), ConstantFoldsToSimpleInteger(), createReferenceTemporary(), EmitAArch64TblBuiltinExpr(), emitAddrOfFieldStorage(), emitAddrOfVarFromArray(), clang::CodeGen::ReductionCodeGen::emitAggregateType(), emitArrayLength(), emitArraySubscriptGEP(), EmitAtomicLoad(), EmitAutoVarAlloca(), EmitAutoVarInit(), EmitBaseInitializer(), EmitBlockCopyAndAutorelease(), EmitCapturedFieldLValue(), EmitCfiCheckFail(), EmitCheckSourceLocation(), EmitCheckTypeDescriptor(), EmitConstructorBody(), emitCPPObjectAtomicGetterCall(), emitCPPObjectAtomicSetterCall(), EmitCXXGlobalVarDeclInit(), EmitCXXNewAllocSize(), EmitDeclInvariant(), emitDestroy(), EmitExtVectorElementLValue(), emitForStaticInitCall(), EmitFromMemory(), clang::CodeGen::ReductionCodeGen::emitInitialization(), EmitLoadOfScalar(), EmitLValueForField(), EmitLValueForLambdaField(), EmitMemberInitializer(), emitNonZeroVLAInit(), EmitNullabilityCheck(), EmitNullBaseClassInitialization(), EmitNullInitialization(), EmitObjCMRRAutoreleasePoolPop(), EmitObjCMRRAutoreleasePoolPush(), emitOffloadingArrays(), EmitOMPAggregateInit(), EmitOMPAggregateReduction(), EmitParmDecl(), emitPartialArrayDestroy(), emitPointerArithmetic(), emitPrivatesInit(), EmitStaticVarDecl(), EmitStoreOfScalar(), emitStructSetterCall(), clang::CodeGen::emitThreadIDAddress(), EmitToMemory(), EmitTypeCheck(), clang::CodeGen::CGObjCRuntime::EmitValueForIvarAtOffset(), EmitVariablyModifiedType(), EmitX86_64VAArgFromMemory(), forConstantArrayExpansion(), GenerateCode(), GenerateCXXGlobalDtorsFunc(), GenerateCXXGlobalInitFunc(), GenerateCXXGlobalVarDeclInitFunc(), generateDestroyHelper(), GenerateObjCAtomicGetterCopyHelperFunction(), GenerateObjCAtomicSetterCopyHelperFunction(), generateObjCGetterBody(), generateObjCSetterBody(), getBadTypeidFn(), GetIntrinsic(), getItaniumDynamicCastFn(), getNaturalTypeAlignment(), clang::CodeGen::CGOpenMPRuntimeNVPTX::getParameterAddress(), getRangeForType(), getVLASize(), isBlockVarRef(), isCheapEnoughToEvaluateUnconditionally(), isFullSizeType(), isTrivialFiller(), isWeakLinkedClass(), loadToBegin(), MakeNaturalAlignAddrLValue(), performTypeAdjustment(), rewriteInputConstraintReferences(), ShouldNullCheckClassCastValue(), StartFunction(), tryEmitAsConstant(), tryEmitFMulAdd(), tryToConvertMemberExprToDeclRefExpr(), and TypeOfSelfObject().

◆ getCurrentProfileCount()

uint64_t clang::CodeGen::CodeGenFunction::getCurrentProfileCount ( )
inline

Get the profiler's current count.

This is generally the count for the most recently incremented counter.

Definition at line 1203 of file CodeGenFunction.h.

References clang::CodeGen::CodeGenPGO::getCurrentRegionCount().

Referenced by EmitBranchOnBoolExpr(), and GetIntrinsic().

◆ getDebugInfo()

CGDebugInfo* clang::CodeGen::CodeGenFunction::getDebugInfo ( )
inline

◆ getDestroyer()

CodeGenFunction::Destroyer * CodeGenFunction::getDestroyer ( QualType::DestructionKind  destructionKind)

◆ getEHDispatchBlock()

llvm::BasicBlock * CodeGenFunction::getEHDispatchBlock ( EHScopeStack::stable_iterator  scope)

◆ getEHResumeBlock()

llvm::BasicBlock * CodeGenFunction::getEHResumeBlock ( bool  isCleanup)

Definition at line 1393 of file CGException.cpp.

Referenced by emitFilterDispatchBlock(), and getBundlesForCoroEnd().

◆ getEHSelectorSlot()

Address CodeGenFunction::getEHSelectorSlot ( )

◆ getEvaluationKind()

TypeEvaluationKind CodeGenFunction::getEvaluationKind ( QualType  T)
static

◆ getExceptionFromSlot()

llvm::Value * CodeGenFunction::getExceptionFromSlot ( )

Returns the contents of the function's exception object and selector slots.

Definition at line 404 of file CGException.cpp.

Referenced by emitFilterDispatchBlock(), clang::CodeGen::CodeGenFunction::FinallyInfo::exit(), and InitCatchParam().

◆ getExceptionSlot()

Address CodeGenFunction::getExceptionSlot ( )

Returns a pointer to the function's exception object and selector slot, which is assigned in every landing pad.

Definition at line 392 of file CGException.cpp.

References clang::CodeGen::CodeGenTypeCache::getPointerAlign(), and clang::CodeGen::CodeGenTypeCache::Int8PtrTy.

◆ GetIndirectGotoBlock()

llvm::BasicBlock * CodeGenFunction::GetIndirectGotoBlock ( )

◆ getInvokeDest()

llvm::BasicBlock* clang::CodeGen::CodeGenFunction::getInvokeDest ( )
inline

◆ getInvokeDestImpl()

llvm::BasicBlock * CodeGenFunction::getInvokeDestImpl ( )

◆ getJumpDestForLabel()

CodeGenFunction::JumpDest CodeGenFunction::getJumpDestForLabel ( const LabelDecl S)

getBasicBlockForLabel - Return the LLVM basicblock that the specified label maps to.

Definition at line 500 of file CGStmt.cpp.

References createBasicBlock(), clang::NamedDecl::getName(), clang::CodeGen::EHScopeStack::stable_iterator::invalid(), clang::CodeGen::CodeGenFunction::JumpDest::isValid(), and NextCleanupDestIndex.

Referenced by GetAddrOfLabel().

◆ getJumpDestInCurrentScope() [1/2]

JumpDest clang::CodeGen::CodeGenFunction::getJumpDestInCurrentScope ( llvm::BasicBlock *  Target)
inline

The given basic block lies in the current EH scope, but may be a target of a potentially scope-crossing jump; get a stable handle to which we can perform this jump later.

Definition at line 817 of file CodeGenFunction.h.

References clang::CodeGen::EHScopeStack::getInnermostNormalCleanup().

Referenced by EmitLabel(), clang::CodeGen::CodeGenFunction::FinallyInfo::enter(), and StartFunction().

◆ getJumpDestInCurrentScope() [2/2]

JumpDest clang::CodeGen::CodeGenFunction::getJumpDestInCurrentScope ( StringRef  Name = StringRef())
inline

The given basic block lies in the current EH scope, but may be a target of a potentially scope-crossing jump; get a stable handle to which we can perform this jump later.

Definition at line 826 of file CodeGenFunction.h.

◆ getLangOpts()

const LangOptions& clang::CodeGen::CodeGenFunction::getLangOpts ( ) const
inline

◆ getLLVMContext()

llvm::LLVMContext& clang::CodeGen::CodeGenFunction::getLLVMContext ( )
inline

◆ getMSVCDispatchBlock()

llvm::BasicBlock * CodeGenFunction::getMSVCDispatchBlock ( EHScopeStack::stable_iterator  scope)

◆ getNaturalPointeeTypeAlignment()

CharUnits CodeGenFunction::getNaturalPointeeTypeAlignment ( QualType  T,
LValueBaseInfo BaseInfo = nullptr,
TBAAAccessInfo TBAAInfo = nullptr 
)

◆ getNaturalTypeAlignment()

CharUnits CodeGenFunction::getNaturalTypeAlignment ( QualType  T,
LValueBaseInfo BaseInfo = nullptr,
TBAAAccessInfo TBAAInfo = nullptr,
bool  forPointeeType = false 
)

◆ getNormalCleanupDestSlot()

Address CodeGenFunction::getNormalCleanupDestSlot ( )

Definition at line 1252 of file CGCleanup.cpp.

Referenced by TransitionToCleanupSwitch().

◆ getOMPCancelDestination()

CodeGenFunction::JumpDest CodeGenFunction::getOMPCancelDestination ( OpenMPDirectiveKind  Kind)

Definition at line 4289 of file CGStmtOpenMP.cpp.

◆ getOpaqueLValueMapping()

const LValue& clang::CodeGen::CodeGenFunction::getOpaqueLValueMapping ( const OpaqueValueExpr e)
inline

getOpaqueLValueMapping - Given an opaque value expression (which must be mapped to an l-value), return its mapping.

Definition at line 2136 of file CodeGenFunction.h.

Referenced by EmitOpaqueValueLValue(), and isTrivialFiller().

◆ getOpaqueRValueMapping()

const RValue& clang::CodeGen::CodeGenFunction::getOpaqueRValueMapping ( const OpaqueValueExpr e)
inline

getOpaqueRValueMapping - Given an opaque value expression (which must be mapped to an r-value), return its mapping.

Definition at line 2147 of file CodeGenFunction.h.

◆ getProfileCount()

uint64_t clang::CodeGen::CodeGenFunction::getProfileCount ( const Stmt S)
inline

◆ getSelectorFromSlot()

llvm::Value * CodeGenFunction::getSelectorFromSlot ( )

Definition at line 408 of file CGException.cpp.

Referenced by emitCatchDispatchBlock(), and emitFilterDispatchBlock().

◆ getTarget()

const TargetInfo& clang::CodeGen::CodeGenFunction::getTarget ( ) const
inline

◆ getTargetHooks()

const TargetCodeGenInfo& clang::CodeGen::CodeGenFunction::getTargetHooks ( ) const
inline

◆ getTerminateFunclet()

llvm::BasicBlock * CodeGenFunction::getTerminateFunclet ( )

getTerminateLandingPad - Return a cleanup funclet that just calls terminate.

Definition at line 1357 of file CGException.cpp.

References clang::CodeGen::EHPersonality::get(), and clang::CodeGen::EHPersonality::usesFuncletPads().

◆ getTerminateHandler()

llvm::BasicBlock * CodeGenFunction::getTerminateHandler ( )

getTerminateHandler - Return a handler (not a landing pad, just a catch handler) that just calls terminate.

This is used when a terminate scope encloses a try.

Definition at line 1333 of file CGException.cpp.

◆ getTerminateLandingPad()

llvm::BasicBlock * CodeGenFunction::getTerminateLandingPad ( )

getTerminateLandingPad - Return a landing pad that just calls terminate.

Definition at line 1299 of file CGException.cpp.

◆ getTypes()

CodeGenTypes& clang::CodeGen::CodeGenFunction::getTypes ( ) const
inline

◆ getTypeSize()

llvm::Value * CodeGenFunction::getTypeSize ( QualType  Ty)

◆ GetUndefRValue()

RValue CodeGenFunction::GetUndefRValue ( QualType  Ty)

◆ getUnreachableBlock()

llvm::BasicBlock* clang::CodeGen::CodeGenFunction::getUnreachableBlock ( )
inline

◆ getVLASize() [1/2]

std::pair< llvm::Value *, QualType > CodeGenFunction::getVLASize ( const VariableArrayType vla)

getVLASize - Returns an LLVM value that corresponds to the size, in non-variably-sized elements, of a variable length array type, plus that largest non-variably-sized element type.

Assumes that the type has already been emitted with EmitVariablyModifiedType.

Definition at line 1931 of file CodeGenFunction.cpp.

References Builder, getContext(), clang::ArrayType::getElementType(), clang::VariableArrayType::getSizeExpr(), and clang::CodeGen::CodeGenTypeCache::SizeTy.

Referenced by emitArrayLength(), EmitNullInitialization(), emitPointerArithmetic(), getArrayIndexingBound(), getVLASize(), and tryEmitFMulAdd().

◆ getVLASize() [2/2]

std::pair< llvm::Value *, QualType > CodeGenFunction::getVLASize ( QualType  vla)

◆ getVTablePointers() [1/2]

CodeGenFunction::VPtrsVector CodeGenFunction::getVTablePointers ( const CXXRecordDecl VTableClass)

Definition at line 2434 of file CGClass.cpp.

References clang::CharUnits::Zero().

◆ getVTablePointers() [2/2]

void CodeGenFunction::getVTablePointers ( BaseSubobject  Base,
const CXXRecordDecl NearestVBase,
CharUnits  OffsetFromNearestVBase,
bool  BaseIsNonVirtualPrimaryBase,
const CXXRecordDecl VTableClass,
VisitedVirtualBasesSetTy VBases,
VPtrsVector vptrs 
)

Definition at line 2445 of file CGClass.cpp.

References clang::CodeGen::Base, and clang::BaseSubobject::getBase().

◆ GetVTablePtr()

llvm::Value * CodeGenFunction::GetVTablePtr ( Address  This,
llvm::Type VTableTy,
const CXXRecordDecl VTableClass 
)

GetVTablePtr - Return the Value of the vtable pointer member pointed to by This.

Definition at line 2516 of file CGClass.cpp.

Referenced by emitCXXDestructor(), getBadTypeidFn(), and getClangCallTerminateFn().

◆ GetVTTParameter()

llvm::Value * CodeGenFunction::GetVTTParameter ( GlobalDecl  GD,
bool  ForVirtualBase,
bool  Delegating 
)

GetVTTParameter - Return the VTT parameter that should be passed to a base constructor/destructor with virtual bases.

FIXME: VTTs are Itanium ABI-specific, so the definition should move to ItaniumCXXABI.cpp together with all the references to VTT.

Definition at line 431 of file CGClass.cpp.

References clang::ASTContext::getASTRecordLayout(), clang::ASTRecordLayout::getBaseClassOffset(), clang::CodeGen::CodeGenModule::getContext(), clang::GlobalDecl::getDecl(), and clang::ASTRecordLayout::getVBaseClassOffset().

◆ hasAggregateEvaluationKind()

static bool clang::CodeGen::CodeGenFunction::hasAggregateEvaluationKind ( QualType  T)
inlinestatic

Definition at line 1844 of file CodeGenFunction.h.

References clang::CodeGen::TEK_Aggregate.

Referenced by EmitConditionalOperatorLValue().

◆ hasLabelBeenSeenInCurrentScope()

bool clang::CodeGen::CodeGenFunction::hasLabelBeenSeenInCurrentScope ( ) const
inline

Return true if a label was seen in the current scope.

Definition at line 248 of file CodeGenFunction.h.

Referenced by EmitAutoVarAlloca().

◆ hasScalarEvaluationKind()

static bool clang::CodeGen::CodeGenFunction::hasScalarEvaluationKind ( QualType  T)
inlinestatic

◆ hasVolatileMember()

bool clang::CodeGen::CodeGenFunction::hasVolatileMember ( QualType  T)
inline

hasVolatileMember - returns true if aggregate type has a volatile member.

Definition at line 2093 of file CodeGenFunction.h.

References clang::Type::getAs(), and clang::RecordDecl::hasVolatileMember().

Referenced by isBlockVarRef().

◆ HaveInsertPoint()

bool clang::CodeGen::CodeGenFunction::HaveInsertPoint ( ) const
inline

◆ incrementProfileCounter()

void clang::CodeGen::CodeGenFunction::incrementProfileCounter ( const Stmt S,
llvm::Value StepV = nullptr 
)
inline

◆ InitCapturedStruct()

LValue CodeGenFunction::InitCapturedStruct ( const CapturedStmt S)

Definition at line 2217 of file CGStmt.cpp.

◆ initFullExprCleanup()

void CodeGenFunction::initFullExprCleanup ( )

Set up the last cleaup that was pushed as a conditional full-expression cleanup.

Definition at line 284 of file CGCleanup.cpp.

◆ InitializeVTablePointer()

void CodeGenFunction::InitializeVTablePointer ( const VPtr vptr)

◆ InitializeVTablePointers()

void CodeGenFunction::InitializeVTablePointers ( const CXXRecordDecl ClassDecl)

◆ InitTempAlloca()

void CodeGenFunction::InitTempAlloca ( Address  Alloca,
llvm::Value Value 
)

InitTempAlloca - Provide an initial value for the given alloca which will be observable at all locations in the function.

The address should be something that was returned from one of the CreateTempAlloca or CreateMemTemp routines, and the initializer must be valid in the entry block (i.e. it must either be a constant or an argument value).

Definition at line 114 of file CGExpr.cpp.

References AllocaInsertPt, clang::CodeGen::Address::getAlignment(), clang::CodeGen::Address::getPointer(), and clang::CharUnits::getQuantity().

Referenced by clang::CodeGen::CGOpenMPRuntimeNVPTX::emitTeamsCall(), and StartFunction().

◆ InsertHelper()

void CodeGenFunction::InsertHelper ( llvm::Instruction *  I,
const llvm::Twine &  Name,
llvm::BasicBlock *  BB,
llvm::BasicBlock::iterator  InsertPt 
) const

CGBuilder insert helper.

This function is called after an instruction is created using Builder.

Definition at line 2200 of file CodeGenFunction.cpp.

◆ isCleanupPadScope()

bool clang::CodeGen::CodeGenFunction::isCleanupPadScope ( ) const
inline

Returns true while emitting a cleanuppad.

Definition at line 505 of file CodeGenFunction.h.

References clang::T.

◆ IsConstructorDelegationValid()

bool CodeGenFunction::IsConstructorDelegationValid ( const CXXConstructorDecl Ctor)
static

Checks whether the given constructor is a valid subject for the complete-to-base constructor delegation optimization, i.e.

emitting the complete constructor as a simple call to the base constructor.

Definition at line 694 of file CGClass.cpp.

References clang::Type::getAs(), clang::CXXRecordDecl::getNumVBases(), clang::CXXMethodDecl::getParent(), clang::ValueDecl::getType(), and clang::CXXConstructorDecl::isDelegatingConstructor().

Referenced by clang::CodeGen::CodeGenPGO::assignRegionCounters().

◆ isCoroutine()

bool clang::CodeGen::CodeGenFunction::isCoroutine ( ) const
inline

◆ isInConditionalBranch()

bool clang::CodeGen::CodeGenFunction::isInConditionalBranch ( ) const
inline

isInConditionalBranch - Return true if we're currently emitting one branch or the other of a conditional expression.

Definition at line 878 of file CodeGenFunction.h.

Referenced by pushLifetimeExtendedDestroy(), and SetupCleanupBlockActivation().

◆ isNullPointerAllowed()

bool CodeGenFunction::isNullPointerAllowed ( TypeCheckKind  TCK)
static

Determine whether the pointer type check TCK permits null pointers.

Definition at line 571 of file CGExpr.cpp.

References TCK_DowncastPointer, TCK_DynamicOperation, TCK_Upcast, and TCK_UpcastToVirtualBase.

Referenced by EmitTypeCheck().

◆ isObjCMethodWithTypeParams() [1/2]

static bool clang::CodeGen::CodeGenFunction::isObjCMethodWithTypeParams ( const ObjCMethodDecl method)
inlinestatic

Definition at line 3878 of file CodeGenFunction.h.

References clang::Decl::getDeclContext().

◆ isObjCMethodWithTypeParams() [2/2]

template<typename T >
static bool clang::CodeGen::CodeGenFunction::isObjCMethodWithTypeParams ( const T )
inlinestatic

Definition at line 3892 of file CodeGenFunction.h.

◆ isObviouslyBranchWithoutCleanups()

bool CodeGenFunction::isObviouslyBranchWithoutCleanups ( JumpDest  Dest) const

isObviouslyBranchWithoutCleanups - Return true if a branch to the specified destination obviously has no cleanups to run.

'false' is always a conservatively correct answer for this method.

Definition at line 1009 of file CGCleanup.cpp.

References clang::CodeGen::EHScopeStack::stable_iterator::encloses(), and clang::CodeGen::CodeGenFunction::JumpDest::getScopeDepth().

◆ isSEHTryScope()

bool clang::CodeGen::CodeGenFunction::isSEHTryScope ( ) const
inline

Returns true inside SEH __try blocks.

Definition at line 502 of file CodeGenFunction.h.

◆ isTrivialInitializer()

bool CodeGenFunction::isTrivialInitializer ( const Expr Init)

Determine whether the given initializer is trivial in the sense that it requires no code to be generated.

Definition at line 1197 of file CGDecl.cpp.

Referenced by checkInitIsRequired(), EmitAutoVarInit(), emitCombinerOrInitializer(), clang::CodeGen::ReductionCodeGen::emitInitialization(), and emitPrivatesInit().

◆ isVptrCheckRequired()

bool CodeGenFunction::isVptrCheckRequired ( TypeCheckKind  TCK,
QualType  Ty 
)
static

◆ IsWrappedCXXThis()

bool CodeGenFunction::IsWrappedCXXThis ( const Expr E)
static

Check if E is a C++ "this" pointer wrapped in value-preserving casts.

Definition at line 1111 of file CGExpr.cpp.

◆ LoadBlockStruct()

Address CodeGenFunction::LoadBlockStruct ( )

Definition at line 1326 of file CGBlocks.cpp.

◆ LoadCXXThis()

llvm::Value* clang::CodeGen::CodeGenFunction::LoadCXXThis ( )
inline

LoadCXXThis - Load the value of 'this'.

This function is only valid while generating code for an C++ member function.

Definition at line 2213 of file CodeGenFunction.h.

Referenced by EmitMemberInitializer().

◆ LoadCXXThisAddress()

Address CodeGenFunction::LoadCXXThisAddress ( )

Definition at line 109 of file CGClass.cpp.

Referenced by EmitBaseInitializer(), and EmitConstructorBody().

◆ LoadCXXVTT()

llvm::Value* clang::CodeGen::CodeGenFunction::LoadCXXVTT ( )
inline

LoadCXXVTT - Load the VTT parameter to base constructors/destructors have virtual bases.

Definition at line 2223 of file CodeGenFunction.h.

◆ LoadObjCSelf()

llvm::Value * CodeGenFunction::LoadObjCSelf ( )

LoadObjCSelf - Load the value of self.

This function is only valid while generating code for an Objective-C method.

Definition at line 1457 of file CGObjC.cpp.

References CurCodeDecl, CurFuncDecl, EmitDeclRefLValue(), EmitLoadOfScalar(), clang::ValueDecl::getType(), and clang::VK_LValue.

Referenced by emitCPPObjectAtomicGetterCall(), emitCPPObjectAtomicSetterCall(), emitCXXDestructMethod(), emitStructSetterCall(), GenerateObjCCtorDtorMethod(), generateObjCGetterBody(), and generateObjCSetterBody().

◆ LoadPassedObjectSize()

llvm::Value * CodeGenFunction::LoadPassedObjectSize ( const Expr E,
QualType  EltTy 
)

If E references a parameter with pass_object_size info or a constant array size modifier, emit the object size divided by the size of EltTy.

Otherwise return null.

Definition at line 817 of file CGExpr.cpp.

Referenced by getArrayIndexingBound().

◆ LookupNeonLLVMIntrinsic()

Function * CodeGenFunction::LookupNeonLLVMIntrinsic ( unsigned  IntrinsicID,
unsigned  Modifier,
llvm::Type ArgTy,
const CallExpr E 
)

◆ LValueIsSuitableForInlineAtomic()

bool CodeGenFunction::LValueIsSuitableForInlineAtomic ( LValue  LV)

An LValue is a candidate for having its loads and stores be made atomic if we are operating under /volatile:ms and the LValue itself is volatile and performing such an operation can be performed without a libcall.

Definition at line 1436 of file CGAtomic.cpp.

References clang::CodeGen::LValue::getType(), and clang::CodeGen::LValue::isVolatile().

Referenced by EmitLoadOfScalar(), EmitStoreOfScalar(), and isBlockVarRef().

◆ MakeAddrLValue() [1/4]

LValue clang::CodeGen::CodeGenFunction::MakeAddrLValue ( Address  Addr,
QualType  T,
AlignmentSource  Source = AlignmentSource::Type 
)
inline

◆ MakeAddrLValue() [2/4]

LValue clang::CodeGen::CodeGenFunction::MakeAddrLValue ( Address  Addr,
QualType  T,
LValueBaseInfo  BaseInfo,
TBAAAccessInfo  TBAAInfo 
)
inline

Definition at line 1921 of file CodeGenFunction.h.

◆ MakeAddrLValue() [3/4]

LValue clang::CodeGen::CodeGenFunction::MakeAddrLValue ( llvm::Value V,
QualType  T,
CharUnits  Alignment,
AlignmentSource  Source = AlignmentSource::Type 
)
inline

◆ MakeAddrLValue() [4/4]

LValue clang::CodeGen::CodeGenFunction::MakeAddrLValue ( llvm::Value V,
QualType  T,
CharUnits  Alignment,
LValueBaseInfo  BaseInfo,
TBAAAccessInfo  TBAAInfo 
)
inline

Definition at line 1932 of file CodeGenFunction.h.

◆ MakeNaturalAlignAddrLValue()

LValue CodeGenFunction::MakeNaturalAlignAddrLValue ( llvm::Value V,
QualType  T 
)

◆ MakeNaturalAlignPointeeAddrLValue()

LValue CodeGenFunction::MakeNaturalAlignPointeeAddrLValue ( llvm::Value V,
QualType  T 
)

Given a value of type T* that may not be to a complete object, construct an l-value with the natural pointee alignment of T.

Definition at line 191 of file CodeGenFunction.cpp.

References getNaturalTypeAlignment(), and MakeAddrLValue().

◆ mightAddDeclToScope()

bool CodeGenFunction::mightAddDeclToScope ( const Stmt S)
static

Determine if the given statement might introduce a declaration into the current scope, by being a (possibly-labelled) DeclStmt.

Definition at line 1414 of file CodeGenFunction.cpp.

◆ needsEHCleanup()

bool clang::CodeGen::CodeGenFunction::needsEHCleanup ( QualType::DestructionKind  kind)
inline

Determines whether an EH cleanup is required to destroy a type with the given destruction kind.

Definition at line 1533 of file CodeGenFunction.h.

References clang::CodeGen::CodeGenModule::getCodeGenOpts().

Referenced by EmitConstructorBody(), EmitDeclDestroy(), EmitMemberInitializer(), clang::CodeGen::emitThreadPrivateVarInit(), enterBlockScope(), isTrivialFiller(), and pushEHDestroy().

◆ popCatchScope()

void CodeGenFunction::popCatchScope ( )

popCatchScope - Pops the catch scope at the top of the EHScope stack, emitting any required code (other than the catch handlers themselves).

Definition at line 1009 of file CGException.cpp.

References emitCatchDispatchBlock(), and clang::CodeGen::EHScope::hasEHBranches().

Referenced by clang::CodeGen::CodeGenFunction::FinallyInfo::exit().

◆ PopCleanupBlock()

void CodeGenFunction::PopCleanupBlock ( bool  FallthroughIsBranchThrough = false)

◆ PopCleanupBlocks() [1/2]

void CodeGenFunction::PopCleanupBlocks ( EHScopeStack::stable_iterator  OldCleanupStackSize,
std::initializer_list< llvm::Value **>  ValuesToReload = {} 
)

◆ PopCleanupBlocks() [2/2]

void CodeGenFunction::PopCleanupBlocks ( EHScopeStack::stable_iterator  Old,
size_t  OldLifetimeExtendedSize,
std::initializer_list< llvm::Value **>  ValuesToReload = {} 
)

Takes the old cleanup stack size and emits the cleanup blocks that have been added, then adds all lifetime-extended cleanups from the given position to the stack.

Pops cleanup blocks until the given savepoint is reached, then add the cleanups from the given savepoint in the lifetime-extended cleanups stack.

Definition at line 476 of file CGCleanup.cpp.

◆ protectFromPeepholes()

CodeGenFunction::PeepholeProtection CodeGenFunction::protectFromPeepholes ( RValue  rvalue)

protectFromPeepholes - Protect a value that we're intending to store to the side, but which will probably be used later, from aggressive peepholing optimizations that might delete it.

Pass the result to unprotectFromPeepholes to declare that protection is no longer required.

There's no particular reason why this shouldn't apply to l-values, it's just that no existing peepholes work on pointers.

Definition at line 2118 of file CodeGenFunction.cpp.

References Builder, clang::CodeGen::RValue::getScalarVal(), HaveInsertPoint(), and clang::CodeGen::RValue::isScalar().

Referenced by clang::CodeGen::CodeGenFunction::OpaqueValueMappingData::bind().

◆ pushCallObjectDeleteCleanup()

void CodeGenFunction::pushCallObjectDeleteCleanup ( const FunctionDecl OperatorDelete,
llvm::Value CompletePtr,
QualType  ElementType 
)

Definition at line 1809 of file CGExprCXX.cpp.

References clang::CodeGen::NormalAndEHCleanup.

◆ pushCleanupAfterFullExpr()

template<class T , class... As>
void clang::CodeGen::CodeGenFunction::pushCleanupAfterFullExpr ( CleanupKind  Kind,
As...  A 
)
inline

Queue a cleanup to be pushed after finishing the current full-expression.

Definition at line 531 of file CodeGenFunction.h.

References clang::CodeGen::CodeGenFunction::LifetimeExtendedCleanupHeader::Size, and clang::T.

◆ pushDestroy() [1/2]

void CodeGenFunction::pushDestroy ( QualType::DestructionKind  dtorKind,
Address  addr,
QualType  type 
)

pushDestroy - Push the standard destructor for the given type as at least a normal cleanup.

Definition at line 1486 of file CGDecl.cpp.

References clang::CodeGen::EHCleanup, getCleanupKind(), and getDestroyer().

Referenced by EmitAutoVarWithLifetime(), clang::CodeGen::ReductionCodeGen::emitCleanups(), emitDestructorsFunction(), EmitParmDecl(), enterBlockScope(), and pushEHDestroy().

◆ pushDestroy() [2/2]

void CodeGenFunction::pushDestroy ( CleanupKind  kind,
Address  addr,
QualType  type,
Destroyer destroyer,
bool  useEHCleanupForArray 
)

Definition at line 1495 of file CGDecl.cpp.

References clang::ast_matchers::type.

◆ PushDestructorCleanup() [1/2]

void CodeGenFunction::PushDestructorCleanup ( QualType  T,
Address  Addr 
)

PushDestructorCleanup - Push a cleanup to call the complete-object destructor of an object of the given type at the given address.

Does nothing if T is not a C++ class type with a non-trivial destructor.

Definition at line 2373 of file CGClass.cpp.

References clang::Type::getAsCXXRecordDecl(), clang::CXXRecordDecl::getDestructor(), clang::CXXRecordDecl::hasTrivialDestructor(), and clang::Decl::isUsed().

◆ PushDestructorCleanup() [2/2]

void CodeGenFunction::PushDestructorCleanup ( const CXXDestructorDecl Dtor,
Address  Addr 
)

PushDestructorCleanup - Push a cleanup to call the complete-object variant of the given destructor on the object at the given address.

Definition at line 2368 of file CGClass.cpp.

References clang::CodeGen::NormalAndEHCleanup.

◆ pushEHDestroy()

void CodeGenFunction::pushEHDestroy ( QualType::DestructionKind  dtorKind,
Address  addr,
QualType  type 
)

pushEHDestroy - Push the standard destructor for the given type as an EH-only cleanup.

Definition at line 1476 of file CGDecl.cpp.

References clang::CodeGen::EHCleanup, getDestroyer(), needsEHCleanup(), and pushDestroy().

Referenced by EmitConstructorBody(), and EmitMemberInitializer().

◆ pushFullExprCleanup()

template<class T , class... As>
void clang::CodeGen::CodeGenFunction::pushFullExprCleanup ( CleanupKind  kind,
As...  A 
)
inline

pushFullExprCleanup - Push a cleanup to be run at the end of the current full-expression.

Safe against the possibility that we're currently inside a conditionally-evaluated expression.

Definition at line 513 of file CodeGenFunction.h.

References clang::CodeGen::EHScopeStack::pushCleanupTuple(), and clang::T.

◆ pushIrregularPartialArrayCleanup()

void CodeGenFunction::pushIrregularPartialArrayCleanup ( llvm::Value arrayBegin,
Address  arrayEndPointer,
QualType  elementType,
CharUnits  elementAlign,
Destroyer destroyer 
)

pushIrregularPartialArrayCleanup - Push an EH cleanup to destroy already-constructed elements of the given array.

The cleanup may be popped with DeactivateCleanupBlock or PopCleanupBlock.

Parameters
elementType- the immediate element type of the array; possibly still an array type

Definition at line 1714 of file CGDecl.cpp.

References clang::CodeGen::EHCleanup.

Referenced by isTrivialFiller().

◆ pushLifetimeExtendedDestroy()

void CodeGenFunction::pushLifetimeExtendedDestroy ( CleanupKind  kind,
Address  addr,
QualType  type,
Destroyer destroyer,
bool  useEHCleanupForArray 
)

◆ pushRegularPartialArrayCleanup()

void CodeGenFunction::pushRegularPartialArrayCleanup ( llvm::Value arrayBegin,
llvm::Value arrayEnd,
QualType  elementType,
CharUnits  elementAlign,
Destroyer destroyer 
)

pushRegularPartialArrayCleanup - Push an EH cleanup to destroy already-constructed elements of the given array.

The cleanup may be popped with DeactivateCleanupBlock or PopCleanupBlock.

Parameters
elementType- the immediate element type of the array; possibly still an array type

Definition at line 1731 of file CGDecl.cpp.

References clang::CodeGen::EHCleanup.

Referenced by emitArrayDestroy().

◆ pushStackRestore()

void CodeGenFunction::pushStackRestore ( CleanupKind  kind,
Address  SPMem 
)

Definition at line 1502 of file CGDecl.cpp.

References EHStack.

◆ recoverAddrOfEscapedLocal()

Address CodeGenFunction::recoverAddrOfEscapedLocal ( CodeGenFunction ParentCGF,
Address  ParentVar,
llvm::Value ParentFP 
)

Recovers the address of a local in a parent function.

ParentVar is the address of the variable used in the immediate parent function. It can either be an alloca or a call to llvm.localrecover if there are nested outlined functions. ParentFP is the frame pointer of the outermost parent frame.

Definition at line 1536 of file CGException.cpp.

◆ registerGlobalDtorWithAtExit()

void CodeGenFunction::registerGlobalDtorWithAtExit ( const VarDecl D,
llvm::Constant *  fn,
llvm::Constant *  addr 
)

Call atexit() with a function that passes the given argument to the given function.

Register a global destructor using the C atexit runtime function.

Definition at line 232 of file CGDeclCXX.cpp.

References CGM, createAtExitStub(), clang::CodeGen::CodeGenModule::CreateRuntimeFunction(), EmitNounwindRuntimeCall(), and clang::CodeGen::CodeGenTypeCache::IntTy.

Referenced by emitGlobalDtorWithCXAAtExit(), and emitGlobalDtorWithTLRegDtor().

◆ ResolveBranchFixups()

void CodeGenFunction::ResolveBranchFixups ( llvm::BasicBlock *  Target)

Definition at line 381 of file CGCleanup.cpp.

Referenced by EmitLabel().

◆ sanitizePerformTypeCheck()

bool CodeGenFunction::sanitizePerformTypeCheck ( ) const

Whether any type-checking sanitizers are enabled.

If false, calls to EmitTypeCheck can be skipped.

Definition at line 584 of file CGExpr.cpp.

References clang::SanitizerSet::has(), and SanOpts.

Referenced by EmitTypeCheck(), and ShouldNullCheckClassCastValue().

◆ saveValueInCond()

template<class T >
DominatingValue<T>::saved_type clang::CodeGen::CodeGenFunction::saveValueInCond ( T  value)
inline

Definition at line 469 of file CodeGenFunction.h.

◆ setBeforeOutermostConditional()

void clang::CodeGen::CodeGenFunction::setBeforeOutermostConditional ( llvm::Value value,
Address  addr 
)
inline

◆ setBlockContextParameter()

void CodeGenFunction::setBlockContextParameter ( const ImplicitParamDecl D,
unsigned  argNum,
llvm::Value ptr 
)

Definition at line 1293 of file CGBlocks.cpp.

References clang::NamedDecl::getName(), and clang::ValueDecl::getType().

Referenced by EmitParmDecl().

◆ setCurrentProfileCount()

void clang::CodeGen::CodeGenFunction::setCurrentProfileCount ( uint64_t  Count)
inline

Set the profiler's current count.

Definition at line 1197 of file CodeGenFunction.h.

References clang::CodeGen::CodeGenPGO::setCurrentRegionCount().

Referenced by EmitBranchOnBoolExpr().

◆ SetFPAccuracy()

void CodeGenFunction::SetFPAccuracy ( llvm::Value Val,
float  Accuracy 
)

SetFPAccuracy - Set the minimum required accuracy of the given floating point operation, expressed as the maximum relative error in ulp.

Definition at line 4678 of file CGExpr.cpp.

References getLLVMContext(), and Node.

◆ ShouldEmitVTableTypeCheckedLoad()

bool CodeGenFunction::ShouldEmitVTableTypeCheckedLoad ( const CXXRecordDecl RD)

Returns whether we should perform a type checked load when loading a virtual function for virtual calls to members of RD.

This is generally true when both vcall CFI and whole-program-vtables are enabled.

Definition at line 2714 of file CGClass.cpp.

References clang::CodeGen::CodeGenModule::getContext(), clang::NamedDecl::getQualifiedNameAsString(), clang::ASTContext::getSanitizerBlacklist(), and clang::SanitizerBlacklist::isBlacklistedType().

◆ ShouldInstrumentFunction()

bool CodeGenFunction::ShouldInstrumentFunction ( )

ShouldInstrumentFunction - Return true if the current function should be instrumented with __cyg_profile_func_* calls.

Definition at line 451 of file CodeGenFunction.cpp.

References CGM, CurFuncDecl, clang::CodeGen::CodeGenModule::getCodeGenOpts(), and clang::Decl::hasAttr().

Referenced by FinishFunction(), and StartFunction().

◆ ShouldNullCheckClassCastValue()

bool CodeGenFunction::ShouldNullCheckClassCastValue ( const CastExpr Cast)
static

Definition at line 1551 of file CGExprScalar.cpp.

References CFITCK_DerivedCast, CFITCK_UnrelatedCast, CGM, ConvertTypeForMem(), clang::CodeGen::CGBuilderTy::CreateBitCast(), clang::CodeGen::CGBuilderTy::CreateElementBitCast(), clang::CodeGen::CodeGenModule::createOpenCLIntToSamplerConversion(), EmitARCExtendBlockObject(), EmitARCReclaimReturnedObject(), EmitARCRetainScalarExpr(), EmitArrayToPointerDecay(), EmitBlockCopyAndAutorelease(), EmitComplexExpr(), EmitCompoundStmt(), EmitDynamicCast(), EmitIgnoredExpr(), EmitLoadOfScalar(), clang::CodeGen::CGCXXABI::EmitMemberPointerConversion(), clang::CodeGen::CGCXXABI::EmitMemberPointerIsNotNull(), clang::CodeGen::CGCXXABI::EmitNullMemberPointer(), EmitObjCConsumeObject(), EmitPointerWithAlignment(), EmitTypeCheck(), EmitVTablePtrCheckForCast(), enterFullExpression(), clang::Expr::EvaluateAsRValue(), clang::CodeGen::CodeGenFunction::RunCleanupsScope::ForceCleanup(), GetAddressOfDerivedClass(), clang::QualType::getAddressSpace(), clang::Type::getAs(), clang::CastExpr::getCastKind(), getContext(), clang::CodeGen::CodeGenModule::getCXXABI(), clang::CodeGen::CodeGenModule::getDataLayout(), clang::Expr::getExprLoc(), clang::Stmt::getLocStart(), clang::CodeGen::CodeGenModule::getNullPointer(), clang::Type::getPointeeCXXRecordDecl(), clang::Type::getPointeeType(), clang::CodeGen::Address::getPointer(), clang::CastExpr::getSubExpr(), clang::ExprWithCleanups::getSubExpr(), clang::StmtExpr::getSubStmt(), clang::CodeGen::CodeGenModule::getTargetCodeGenInfo(), clang::Expr::getType(), clang::SanitizerSet::has(), clang::ASTContext::hasSameUnqualifiedType(), clang::Expr::EvalStatus::HasSideEffects, clang::Expr::IgnoreParens(), clang::Type::isBooleanType(), clang::Type::isEventT(), clang::Expr::isGLValue(), clang::APValue::isNullPointer(), clang::Type::isQueueT(), clang::Type::isSignedIntegerOrEnumerationType(), clang::CodeGen::Address::isValid(), clang::Type::isVoidType(), MakeAddrLValue(), clang::CastExpr::path_begin(), clang::CastExpr::path_end(), clang::CodeGen::TargetCodeGenInfo::performAddrSpaceCast(), sanitizePerformTypeCheck(), SanOpts, ShouldNullCheckClassCastValue(), TCK_DowncastPointer, clang::CodeGen::Type, clang::Expr::EvalResult::Val, and clang::VK_RValue.

Referenced by ShouldNullCheckClassCastValue().

◆ shouldUseFusedARCCalls()

bool clang::CodeGen::CodeGenFunction::shouldUseFusedARCCalls ( )
inline

◆ ShouldXRayInstrumentFunction()

bool CodeGenFunction::ShouldXRayInstrumentFunction ( ) const

ShouldXRayInstrument - Return true if the current function should be instrumented with XRay nop sleds.

Definition at line 463 of file CodeGenFunction.cpp.

References CGM, and clang::CodeGen::CodeGenModule::getCodeGenOpts().

Referenced by StartFunction().

◆ SimplifyForwardingBlocks()

void CodeGenFunction::SimplifyForwardingBlocks ( llvm::BasicBlock *  BB)

SimplifyForwardingBlocks - If the given basic block is only a branch to another basic block, simplify it.

This assumes that no other code could potentially reference the basic block.

Definition at line 423 of file CGStmt.cpp.

References EHStack, and clang::CodeGen::EHScopeStack::empty().

◆ SourceLocToDebugLoc()

llvm::DebugLoc CodeGenFunction::SourceLocToDebugLoc ( SourceLocation  Location)

Converts Location to a DebugLoc, if debug information is enabled.

Definition at line 2303 of file CodeGenFunction.cpp.

References getDebugInfo().

◆ StartFunction()

void CodeGenFunction::StartFunction ( GlobalDecl  GD,
QualType  RetTy,
llvm::Function *  Fn,
const CGFunctionInfo FnInfo,
const FunctionArgList Args,
SourceLocation  Loc = SourceLocation(),
SourceLocation  StartLoc = SourceLocation() 
)

Emit code for the start of a function.

Parameters
LocThe location to be associated with the function.
StartLocThe location of the function body.

Definition at line 809 of file CodeGenFunction.cpp.

References AllocaInsertPt, AutoreleaseResult, Builder, clang::CC_C, CGM, clang::frontend::CPlusPlus, clang::CodeGen::CGBuilderTy::CreateAlignedLoad(), createBasicBlock(), CreateDefaultAlignTempAlloca(), CreateIRTemp(), clang::CodeGen::CGBuilderTy::CreateStructGEP(), CurCodeDecl, CurFn, CurFnInfo, CurFuncDecl, CurSEHParent, EHStack, EmitFunctionProlog(), clang::CodeGen::CGCXXABI::EmitInstanceFunctionProlog(), EmitLoadOfLValue(), EmitLValueForLambdaField(), EmitStartEHSpec(), EmitTypeCheck(), EmitVariablyModifiedType(), EncodeAddrForUseInPrologue(), endsWithReturn(), clang::RecordDecl::fields(), FnRetTy, clang::CodeGen::LValue::getAddress(), clang::CodeGen::CodeGenModule::GetAddrOfRTTIDescriptor(), clang::Type::getAs(), clang::Decl::getAttr(), clang::CXXRecordDecl::getCaptureFields(), clang::CodeGen::CodeGenModule::getCodeGenOpts(), getContext(), clang::CodeGen::CodeGenModule::getCXXABI(), getDebugInfo(), clang::GlobalDecl::getDecl(), clang::ASTContext::getFunctionType(), clang::NamedDecl::getIdentifier(), clang::CodeGen::ABIArgInfo::getInAllocaFieldIndex(), clang::CodeGen::ABIArgInfo::getIndirectAlign(), getJumpDestInCurrentScope(), clang::CodeGen::ABIArgInfo::getKind(), getLangOpts(), getLLVMContext(), getNaturalTypeAlignment(), clang::Decl::getNonClosureContext(), clang::Type::getNullability(), clang::FunctionDecl::getOverloadedOperator(), clang::CXXMethodDecl::getParent(), clang::Type::getPointeeType(), clang::CodeGen::Address::getPointer(), clang::CodeGen::CodeGenTypeCache::getPointerAlign(), getPrologueSignature(), clang::CodeGen::CGFunctionInfo::getReturnInfo(), clang::CodeGen::CGFunctionInfo::getReturnType(), clang::CodeGen::RValue::getScalarVal(), getTarget(), clang::CXXMethodDecl::getThisType(), clang::ValueDecl::getType(), clang::SanitizerSet::has(), clang::Decl::hasAttr(), clang::SanitizerSet::hasOneOf(), hasScalarEvaluationKind(), clang::CodeGen::CodeGenModule::imbueXRayAttrs(), clang::CodeGen::ABIArgInfo::InAlloca, clang::CodeGen::ABIArgInfo::Indirect, InitTempAlloca(), clang::CodeGen::CodeGenTypeCache::Int32Ty, clang::CodeGen::CodeGenTypeCache::Int8PtrTy, clang::CodeGen::Address::invalid(), clang::CXXRecordDecl::isLambda(), clang::isLambdaCallOperator(), clang::FunctionDecl::isMain(), clang::Type::isObjCRetainableType(), clang::Type::isPointerType(), clang::CodeGen::CGFunctionInfo::isReturnsRetained(), clang::CodeGen::ABIArgInfo::isSRetAfterThis(), clang::IdentifierInfo::isStr(), clang::Type::isVariablyModifiedType(), clang::Type::isVoidType(), LambdaCaptureFields, LambdaThisCaptureField, clang::LCD_None, markAsIgnoreThreadCheckingAtRuntime(), clang::SanitizerSet::Mask, matchesStlAllocatorFn(), clang::NonNull, clang::OMF_dealloc, clang::OMF_initialize, PrologueCleanupDepth, ReturnBlock, ReturnValue, SanOpts, clang::SanitizerSet::set(), ShouldInstrumentFunction(), ShouldXRayInstrumentFunction(), clang::Decl::specific_attrs(), clang::CodeGen::EHScopeStack::stable_begin(), TCK_ConstructorCall, TCK_MemberCall, and clang::FunctionDecl::usesSEHTry().

Referenced by createAtExitStub(), createOffloadingBinaryDescriptorFunction(), EmitCfiCheckFail(), emitCombinerOrInitializer(), emitCopyprivateCopyFunction(), emitCopyToScratchpad(), emitCXXDestructor(), emitDestructorsFunction(), emitInterWarpCopyFunction(), emitProxyTaskFunction(), emitReduceCombFunction(), emitReduceFiniFunction(), emitReduceInitFunction(), emitReduceScratchpadFunction(), emitReductionCombiner(), emitShuffleAndReduceFunction(), emitTaskDupFunction(), clang::CodeGen::emitThreadPrivateVarInit(), GenerateCode(), GenerateCXXGlobalDtorsFunc(), GenerateCXXGlobalInitFunc(), GenerateCXXGlobalVarDeclInitFunc(), generateDestroyHelper(), GenerateObjCAtomicGetterCopyHelperFunction(), GenerateObjCAtomicSetterCopyHelperFunction(), and StartObjCMethod().

◆ StartObjCMethod()

void CodeGenFunction::StartObjCMethod ( const ObjCMethodDecl OMD,
const ObjCContainerDecl CD 
)

◆ startOutlinedSEHHelper()

void CodeGenFunction::startOutlinedSEHHelper ( CodeGenFunction ParentCGF,
bool  IsFilter,
const Stmt OutlinedStmt 
)

Arrange a function prototype that can be called by Windows exception handling personalities.

On Win64, the prototype looks like: RetTy func(void *EHPtrs, void *ParentFP);

Definition at line 1657 of file CGException.cpp.

References clang::Stmt::getLocStart().

◆ StartThunk()

void CodeGenFunction::StartThunk ( llvm::Function *  Fn,
GlobalDecl  GD,
const CGFunctionInfo FnInfo 
)

◆ tryEmitAsConstant() [1/2]

CodeGenFunction::ConstantEmission CodeGenFunction::tryEmitAsConstant ( DeclRefExpr refExpr)

◆ tryEmitAsConstant() [2/2]

CodeGenFunction::ConstantEmission CodeGenFunction::tryEmitAsConstant ( const MemberExpr ME)

Definition at line 1426 of file CGExpr.cpp.

References tryEmitAsConstant(), and tryToConvertMemberExprToDeclRefExpr().

◆ TypeOfSelfObject()

QualType CodeGenFunction::TypeOfSelfObject ( )

◆ unprotectFromPeepholes()

void CodeGenFunction::unprotectFromPeepholes ( PeepholeProtection  protection)

◆ vectorWrapScalar16()

Value * CodeGenFunction::vectorWrapScalar16 ( llvm::Value Op)

Definition at line 5787 of file CGBuiltin.cpp.

References clang::CodeGen::Type.

Friends And Related Function Documentation

◆ CGCXXABI

friend class CGCXXABI
friend

Definition at line 147 of file CodeGenFunction.h.

Member Data Documentation

◆ AllocaInsertPt

llvm::AssertingVH<llvm::Instruction> clang::CodeGen::CodeGenFunction::AllocaInsertPt

AllocaInsertPoint - This is an instruction in the entry block before which we prefer to insert allocas.

Definition at line 256 of file CodeGenFunction.h.

Referenced by FinishFunction(), InitTempAlloca(), and StartFunction().

◆ AutoreleaseResult

bool clang::CodeGen::CodeGenFunction::AutoreleaseResult

In ARC, whether we should autorelease the return value.

Definition at line 384 of file CodeGenFunction.h.

Referenced by GenerateObjCCtorDtorMethod(), generateObjCGetterBody(), and StartFunction().

◆ BlockInfo

const CodeGen::CGBlockInfo* clang::CodeGen::CodeGenFunction::BlockInfo

Definition at line 396 of file CodeGenFunction.h.

Referenced by EmitParmDecl(), and getCaptureFieldType().

◆ BlockPointer

llvm::Value* clang::CodeGen::CodeGenFunction::BlockPointer

Definition at line 397 of file CodeGenFunction.h.

◆ Builder

CGBuilderTy clang::CodeGen::CodeGenFunction::Builder

Definition at line 179 of file CodeGenFunction.h.

Referenced by AddDirectArgument(), addMonoNonMonoModifier(), clang::CodeGen::CodeGenFunction::OMPPrivateScope::addPrivate(), AddVariableConstraints(), AdjustObjCObjectType(), clang::CodeGen::ReductionCodeGen::adjustPrivateAddress(), clang::CodeGen::CallArgList::allocateArgumentMemory(), clang::CodeGen::ApplyDebugLocation::ApplyDebugLocation(), clang::CodeGen::ApplyInlineDebugLocation::ApplyInlineDebugLocation(), ApplyNonVirtualAndVirtualOffset(), BuildAggStore(), BuildAppleKextVirtualCall(), castToBase(), CheckAggExprForMemSetUse(), CoerceIntOrPtrToIntOrPtr(), createAtExitStub(), CreateCoercedLoad(), CreateCoercedStore(), createPlaceholderSlot(), createRuntimeShuffleFunction(), DecodeAddrUsedInPrologue(), emitAddressAtOffset(), emitAddrOfFieldStorage(), emitAddrOfVarFromArray(), clang::CodeGen::ReductionCodeGen::emitAggregateType(), EmitAnnotationCall(), emitARCCopyOperation(), EmitARCDestroyStrong(), EmitARCDestroyWeak(), EmitARCInitWeak(), emitARCLoadOperation(), emitARCOperationAfterCall(), EmitARCRelease(), EmitARCRetainAutorelease(), EmitARCRetainBlock(), emitARCStoreOperation(), EmitARCStoreStrongCall(), emitARCValueOperation(), emitArgumentDemotion(), emitArrayDestroy(), emitArrayLength(), emitArraySubscriptGEP(), EmitAtomicLoad(), EmitAtomicUpdateValue(), emitAutoreleasedReturnValueMarker(), EmitAutoVarAlloca(), EmitAutoVarInit(), EmitBlock(), EmitBlockAfterUses(), EmitBranch(), EmitBranchOnBoolExpr(), EmitBuiltinAvailable(), EmitCastToVoidPtr(), emitCatchDispatchBlock(), emitCatchPadBlock(), EmitCfiCheckFail(), EmitCfiSlowPathCheck(), EmitCheck(), EmitCheckedMixedSignMultiply(), emitCheckHandlerCall(), EmitCheckValue(), EmitCleanup(), clang::CodeGen::ReductionCodeGen::emitCleanups(), EmitCommonNeonSISDBuiltinExpr(), EmitConditionalOperatorLValue(), EmitConstructorBody(), emitCopyprivateCopyFunction(), emitCopyToScratchpad(), emitCPPObjectAtomicGetterCall(), emitCPPObjectAtomicSetterCall(), emitCXXDestructor(), EmitCXXGuardedInitBranch(), EmitCXXNewAllocSize(), EmitDeclInvariant(), emitDestroy(), EmitExtendGCLifetime(), EmitExtVectorElementLValue(), EmitFAbs(), emitFilterDispatchBlock(), emitForStaticInitCall(), EmitFromInt(), EmitFromMemory(), clang::CodeGen::ReductionCodeGen::emitInitialization(), clang::CodeGen::CGObjCRuntime::EmitInitOfCatchParam(), emitInterWarpCopyFunction(), EmitLifetimeEnd(), EmitLifetimeStart(), EmitLoadOfBitfieldLValue(), EmitLoadOfExtVectorElementLValue(), EmitLoadOfGlobalRegLValue(), EmitLoadOfLValue(), EmitLoadOfPointer(), EmitLoadOfReference(), EmitLoadOfScalar(), EmitLValueForField(), EmitLValueForFieldInitialization(), EmitMemberInitializer(), clang::CodeGen::CGCXXABI::EmitMemberPointerComparison(), clang::CodeGen::CGCXXABI::EmitMemberPointerIsNotNull(), emitNonZeroVLAInit(), EmitNullabilityCheck(), EmitNullBaseClassInitialization(), EmitNullInitialization(), emitNumTeamsForTargetDirective(), emitNumThreadsForTargetDirective(), EmitObjCAutoreleasePoolPop(), EmitObjCMRRAutoreleasePoolPop(), EmitObjCThrowOperand(), emitOffloadingArraysArgument(), EmitOMPAggregateInit(), EmitOMPAggregateReduction(), emitOMPArraySectionBase(), EmitOverflowIntrinsic(), EmitParmDecl(), emitPartialArrayDestroy(), emitPointerArithmetic(), emitPostUpdateForReductionClause(), emitPrivatesInit(), emitProxyTaskFunction(), emitRangedBuiltin(), emitReduceCombFunction(), emitReduceFiniFunction(), emitReduceScratchpadFunction(), emitReductionCombiner(), EmitReturnBlock(), emitRoundPointerUpToAlignment(), emitRTtypeidCall(), EmitSanitizerStatReport(), EmitScalarRangeCheck(), emitShuffleAndReduceFunction(), EmitSignBit(), EmitStaticVarDecl(), EmitStoreOfScalar(), EmitStoreThroughBitfieldLValue(), EmitStoreThroughExtVectorComponentLValue(), EmitStoreThroughGlobalRegLValue(), EmitStoreThroughLValue(), emitStructSetterCall(), clang::CodeGen::CGOpenMPRuntimeNVPTX::emitTeamsCall(), EmitThreadPrivateVarDeclLValue(), clang::CodeGen::emitThreadPrivateVarInit(), EmitToInt(), EmitToMemory(), EmitTrapCall(), EmitTrapCheck(), EmitTypeCheck(), EmitUnreachable(), clang::CodeGen::CGObjCRuntime::EmitValueForIvarAtOffset(), EmitVariablyModifiedType(), emitVoidPtrDirectVAArg(), emitVoidPtrVAArg(), emitWriteback(), emitWritebackArg(), EmitX86_64VAArgFromMemory(), EmitX86Abs(), EmitX86MaskedLoad(), EmitX86MaskedStore(), EmitX86MaskLogic(), EmitX86Select(), EmitX86SExtMask(), EmitX86SubVectorBroadcast(), clang::CodeGen::CodeGenFunction::FinallyInfo::enter(), enterBlockScope(), EnterStructPointerForCoercedAccess(), clang::CodeGen::CodeGenFunction::FinallyInfo::exit(), findDominatingStoreToReturnValue(), FinishFunction(), forConstantArrayExpansion(), clang::CodeGen::CallArgList::freeArgumentMemory(), GenerateCode(), GenerateCXXGlobalDtorsFunc(), GenerateCXXGlobalInitFunc(), GenerateObjCCtorDtorMethod(), generateObjCGetterBody(), generateObjCSetterBody(), getArrayIndexingBound(), getBadTypeidFn(), getBundlesForCoroEnd(), getCancellationKind(), GetGCAttrTypeForType(), getMaskVecValue(), getMasterThreadID(), getNonNullAttr(), getNVPTXBarrier(), getNVPTXLaneID(), getNVPTXWarpID(), clang::CodeGen::getOrCreateThreadPrivateCache(), clang::CodeGen::CGOpenMPRuntimeNVPTX::getParameterAddress(), getThreadLimit(), getVLASize(), hasDefaultCXXMethodCC(), InitCatchParam(), isBlockVarRef(), isDeletingDtor(), isFullSizeType(), isWeakLinkedClass(), clang::CodeGen::CodeGenFunction::LexicalScope::LexicalScope(), clang::CodeGen::CGCXXABI::loadIncomingCXXThis(), loadToBegin(), clang::CodeGen::TargetCodeGenInfo::performAddrSpaceCast(), PerformReturnAdjustment(), performTypeAdjustment(), protectFromPeepholes(), clang::CodeGen::CGCXXABI::ReadArrayCookie(), clang::CodeGen::DominatingLLVMValue::restore(), rewriteInputConstraintReferences(), clang::CodeGen::DominatingLLVMValue::save(), SetupCleanupBlockActivation(), SimplifyCleanupEntry(), StartFunction(), SymbolNameForMethod(), tryEmitARCCopyWeakInit(), tryEmitFMulAdd(), tryEmitFusedAutoreleaseOfResult(), tryRemoveRetainOfSelf(), clang::CodeGen::ApplyDebugLocation::~ApplyDebugLocation(), clang::CodeGen::ApplyInlineDebugLocation::~ApplyInlineDebugLocation(), and clang::CodeGen::CodeGenFunction::LexicalScope::~LexicalScope().

◆ Bypasses

VarBypassDetector clang::CodeGen::CodeGenFunction::Bypasses

Definition at line 183 of file CodeGenFunction.h.

Referenced by EmitAutoVarAlloca(), and GenerateCode().

◆ CapturedStmtInfo

CGCapturedStmtInfo* clang::CodeGen::CodeGenFunction::CapturedStmtInfo

◆ CGM

CodeGenModule& clang::CodeGen::CodeGenFunction::CGM

Definition at line 174 of file CodeGenFunction.h.

Referenced by AddInitializerToStaticVarDecl(), AddVariableConstraints(), clang::CodeGen::CallArgList::allocateArgumentMemory(), AlwaysEmitXRayCustomEvents(), ApplyNonVirtualAndVirtualOffset(), BuildAggStore(), BuildAppleKextVirtualCall(), buildFMulAdd(), BuildFunctionArgList(), CallBeginCatch(), canEmitDelegateCallArgs(), CoerceIntOrPtrToIntOrPtr(), commonEmitCXXMemberOrOperatorCall(), ConvertType(), ConvertTypeForMem(), createAtExitStub(), CreateCoercedLoad(), CreateCoercedStore(), createCoroData(), createReferenceTemporary(), createRuntimeShuffleFunction(), CreateTempAllocaForCoercion(), emitAddrOfFieldStorage(), EmitAnnotationCall(), emitARCCopyOperation(), emitARCLoadOperation(), emitARCStoreOperation(), emitARCValueOperation(), emitAtomicLibcall(), EmitAtomicOp(), emitAutoreleasedReturnValueMarker(), EmitAutoVarAlloca(), EmitAutoVarCleanups(), EmitAutoVarInit(), EmitBaseInitializer(), EmitBranchOnBoolExpr(), emitCatchDispatchBlock(), EmitCfiCheckFail(), EmitCfiCheckStub(), EmitCfiSlowPathCheck(), EmitCheck(), emitCheckHandlerCall(), EmitCheckSourceLocation(), EmitCheckTypeDescriptor(), emitCommonOMPParallelDirective(), emitCommonOMPTargetDirective(), emitCommonOMPTeamsDirective(), EmitConditionalOperatorLValue(), EmitConstructorBody(), emitCPPObjectAtomicGetterCall(), emitCPPObjectAtomicSetterCall(), EmitCXXGlobalVarDeclInit(), EmitCXXGuardedInit(), EmitCXXGuardedInitBranch(), EmitCXXNewAllocSize(), EmitDecl(), EmitDeclDestroy(), EmitDeclInit(), EmitDeclInvariant(), EmitDestroyingObjectDelete(), EmitDirectCallee(), EmitDynamicCastToNull(), EmitExtVectorElementLValue(), EmitFAbs(), EmitFieldAnnotations(), emitFilterDispatchBlock(), emitGlobalDtorWithCXAAtExit(), emitGlobalDtorWithTLRegDtor(), clang::CodeGen::ReductionCodeGen::emitInitialization(), emitInitWithReductionInitializer(), EmitIvarOffset(), EmitLifetimeEnd(), EmitLifetimeStart(), EmitLoadOfGlobalRegLValue(), EmitLoadOfLValue(), EmitLoadOfReference(), EmitLoadOfScalar(), EmitLValueForField(), EmitLValueForFieldInitialization(), EmitLValueForIvar(), EmitMemberInitializer(), EmitNewDeleteCall(), EmitNullBaseClassInitialization(), EmitNullInitialization(), EmitObjectDelete(), emitOffloadingArrays(), emitOffloadingArraysArgument(), emitOMPArraySectionBase(), EmitOMPAtomicCaptureExpr(), EmitOMPAtomicReadExpr(), EmitOMPAtomicUpdateExpr(), emitOutlinedFunctionPrologue(), EmitOverflowIntrinsic(), EmitParmDecl(), emitPointerArithmetic(), emitRangedBuiltin(), emitReductionCombiner(), emitRTtypeidCall(), EmitSanitizerStatReport(), EmitScalarInit(), EmitScalarRangeCheck(), EmitSignBit(), EmitStaticVarDecl(), EmitStoreOfScalar(), EmitStoreThroughGlobalRegLValue(), EmitStoreThroughLValue(), emitStructSetterCall(), clang::CodeGen::CGCXXABI::emitTerminateForUnexpectedException(), EmitThreadPrivateVarDeclLValue(), EmitTrapCall(), EmitTrapCheck(), EmitTypeCheck(), clang::CodeGen::CGObjCRuntime::EmitValueForIvarAtOffset(), EmitVarDecl(), emitVoidPtrDirectVAArg(), emitWriteback(), emitWritebackArg(), EncodeAddrForUseInPrologue(), enterBlockScope(), EnterStructPointerForCoercedAccess(), findPeephole(), FinishFunction(), clang::CodeGen::CallArgList::freeArgumentMemory(), GenerateCode(), generateDestroyHelper(), clang::CodeGen::EHPersonality::get(), getAsmSrcLocInfo(), getBadCastFn(), getBadTypeidFn(), getBundlesForCoroEnd(), getCatchAllValue(), getClangCallTerminateFn(), GetGCAttrTypeForType(), getGetExceptionPtrFn(), getGuardAbortFn(), GetIntrinsic(), getItaniumDynamicCastFn(), getMaxAtomicAccessSize(), getNaturalTypeAlignment(), getNVPTXBarrier(), getNVPTXCTABarrier(), getNVPTXNumThreads(), getNVPTXThreadID(), getNVPTXWarpSize(), getRangeForType(), InitCatchParam(), isFullSizeType(), loadToBegin(), clang::CodeGen::TargetCodeGenInfo::performAddrSpaceCast(), PerformReturnAdjustment(), registerGlobalDtorWithAtExit(), clang::CodeGen::DominatingLLVMValue::save(), ShouldInstrumentFunction(), ShouldNullCheckClassCastValue(), ShouldXRayInstrumentFunction(), StartFunction(), StartObjCMethod(), SymbolNameForMethod(), tryEmitFMulAdd(), tryEmitFusedAutoreleaseOfResult(), tryRemoveRetainOfSelf(), and ~CodeGenFunction().

◆ CurCodeDecl

const Decl* clang::CodeGen::CodeGenFunction::CurCodeDecl

◆ CurCoro

CGCoroInfo clang::CodeGen::CodeGenFunction::CurCoro

Definition at line 227 of file CodeGenFunction.h.

Referenced by getBundlesForCoroEnd().

◆ CurFn

llvm::Function* clang::CodeGen::CodeGenFunction::CurFn

◆ CurFnInfo

const CGFunctionInfo* clang::CodeGen::CodeGenFunction::CurFnInfo

Definition at line 215 of file CodeGenFunction.h.

Referenced by FinishFunction(), and StartFunction().

◆ CurFuncDecl

const Decl* clang::CodeGen::CodeGenFunction::CurFuncDecl

◆ CurFuncIsThunk

bool clang::CodeGen::CodeGenFunction::CurFuncIsThunk

In C++, whether we are code generating a thunk.

This controls whether we should emit cleanups.

Definition at line 381 of file CodeGenFunction.h.

Referenced by EmitParmDecl().

◆ CurGD

GlobalDecl clang::CodeGen::CodeGenFunction::CurGD

◆ CurrentFuncletPad

llvm::Instruction* clang::CodeGen::CodeGenFunction::CurrentFuncletPad = nullptr

Definition at line 410 of file CodeGenFunction.h.

Referenced by emitCatchPadBlock(), and getBundlesForCoroEnd().

◆ CurSEHParent

const FunctionDecl* clang::CodeGen::CodeGenFunction::CurSEHParent = nullptr

Definition at line 390 of file CodeGenFunction.h.

Referenced by clang::CodeGen::EHPersonality::get(), and StartFunction().

◆ destroyARCStrongImprecise

void CodeGenFunction::destroyARCStrongImprecise
static

◆ destroyARCStrongPrecise

void CodeGenFunction::destroyARCStrongPrecise
static

◆ destroyARCWeak

void CodeGenFunction::destroyARCWeak
static

◆ destroyCXXObject

void CodeGenFunction::destroyCXXObject
static

Definition at line 2319 of file CodeGenFunction.h.

Referenced by getDestroyer().

◆ EHResumeBlock

llvm::BasicBlock* clang::CodeGen::CodeGenFunction::EHResumeBlock

EHResumeBlock - Unified block containing a call to llvm.eh.resume.

Definition at line 445 of file CodeGenFunction.h.

Referenced by FinishFunction().

◆ EHSelectorSlot

llvm::AllocaInst* clang::CodeGen::CodeGenFunction::EHSelectorSlot

The selector slot.

Under the MandatoryCleanup model, all landing pads write the current selector value into this alloca.

Definition at line 453 of file CodeGenFunction.h.

◆ EHStack

EHScopeStack clang::CodeGen::CodeGenFunction::EHStack

◆ emitARCIntrinsicUse

void CodeGenFunction::emitARCIntrinsicUse
static

Definition at line 3538 of file CodeGenFunction.h.

Referenced by EmitObjCMRRAutoreleasePoolPop(), and enterBlockScope().

◆ ExceptionSlot

llvm::Value* clang::CodeGen::CodeGenFunction::ExceptionSlot

The exception slot.

All landing pads write the current exception pointer into this alloca.

Definition at line 449 of file CodeGenFunction.h.

◆ FirstBlockInfo

CGBlockInfo* clang::CodeGen::CodeGenFunction::FirstBlockInfo

FirstBlockInfo - The head of a singly-linked-list of block layouts.

Definition at line 442 of file CodeGenFunction.h.

Referenced by enterBlockScope(), and ~CodeGenFunction().

◆ FnRetTy

QualType clang::CodeGen::CodeGenFunction::FnRetTy

◆ IsOutlinedSEHHelper

bool clang::CodeGen::CodeGenFunction::IsOutlinedSEHHelper

True if the current function is an outlined SEH helper.

This can be a finally block or filter expression.

Definition at line 394 of file CodeGenFunction.h.

◆ IsSanitizerScope

bool clang::CodeGen::CodeGenFunction::IsSanitizerScope

True if CodeGen currently emits code implementing sanitizer checks.

Definition at line 369 of file CodeGenFunction.h.

Referenced by EmitCheck(), clang::CodeGen::CodeGenFunction::SanitizerScope::SanitizerScope(), and clang::CodeGen::CodeGenFunction::SanitizerScope::~SanitizerScope().

◆ LambdaCaptureFields

llvm::DenseMap<const VarDecl *, FieldDecl *> clang::CodeGen::CodeGenFunction::LambdaCaptureFields

Definition at line 399 of file CodeGenFunction.h.

Referenced by getCaptureFieldType(), and StartFunction().

◆ LambdaThisCaptureField

FieldDecl* clang::CodeGen::CodeGenFunction::LambdaThisCaptureField

Definition at line 400 of file CodeGenFunction.h.

Referenced by StartFunction().

◆ LifetimeExtendedCleanupStack

llvm::SmallVector<char, 256> clang::CodeGen::CodeGenFunction::LifetimeExtendedCleanupStack

◆ LoopStack

LoopInfoStack clang::CodeGen::CodeGenFunction::LoopStack

Definition at line 178 of file CodeGenFunction.h.

Referenced by emitSimdlenSafelenClause().

◆ NextCleanupDestIndex

unsigned clang::CodeGen::CodeGenFunction::NextCleanupDestIndex

Definition at line 439 of file CodeGenFunction.h.

Referenced by getJumpDestForLabel().

◆ NormalCleanupDest

llvm::AllocaInst* clang::CodeGen::CodeGenFunction::NormalCleanupDest

i32s containing the indexes of the cleanup destinations.

Definition at line 437 of file CodeGenFunction.h.

Referenced by addIfPresent(), and destroyOptimisticNormalEntry().

◆ NRVOFlags

llvm::DenseMap<const VarDecl *, llvm::Value *> clang::CodeGen::CodeGenFunction::NRVOFlags

A mapping from NRVO variables to the flags used to indicate when the NRVO has been applied to this variable.

Definition at line 404 of file CodeGenFunction.h.

Referenced by EmitAutoVarAlloca().

◆ ObjCEHValueStack

SmallVector<llvm::Value*, 8> clang::CodeGen::CodeGenFunction::ObjCEHValueStack

ObjCEHValueStack - Stack of Objective-C exception values, used for rethrows.

Definition at line 476 of file CodeGenFunction.h.

◆ PrologueCleanupDepth

EHScopeStack::stable_iterator clang::CodeGen::CodeGenFunction::PrologueCleanupDepth

PrologueCleanupDepth - The cleanup depth enclosing all the cleanups associated with the parameters.

Definition at line 238 of file CodeGenFunction.h.

Referenced by FinishFunction(), and StartFunction().

◆ ReturnBlock

JumpDest clang::CodeGen::CodeGenFunction::ReturnBlock

ReturnBlock - Unified return block.

Definition at line 241 of file CodeGenFunction.h.

Referenced by EmitReturnBlock(), FinishFunction(), and StartFunction().

◆ ReturnValue

Address clang::CodeGen::CodeGenFunction::ReturnValue

◆ SanOpts

SanitizerSet clang::CodeGen::CodeGenFunction::SanOpts

◆ SawAsmBlock

bool clang::CodeGen::CodeGenFunction::SawAsmBlock

Whether we processed a Microsoft-style asm block during CodeGen.

These can potentially set the return value.

Definition at line 388 of file CodeGenFunction.h.

Referenced by GenerateCode().

◆ SEHCodeSlotStack

SmallVector<Address, 1> clang::CodeGen::CodeGenFunction::SEHCodeSlotStack

A stack of exception code slots.

Entering an __except block pushes a slot on the stack and leaving pops one. The __exception_code() intrinsic loads a value from the top of the stack.

Definition at line 458 of file CodeGenFunction.h.

◆ SEHInfo

llvm::Value* clang::CodeGen::CodeGenFunction::SEHInfo = nullptr

Value returned by __exception_info intrinsic.

Definition at line 461 of file CodeGenFunction.h.

◆ SEHTryEpilogueStack

llvm::SmallVector<const JumpDest *, 2> clang::CodeGen::CodeGenFunction::SEHTryEpilogueStack

Definition at line 408 of file CodeGenFunction.h.

◆ Target

const TargetInfo& clang::CodeGen::CodeGenFunction::Target

Definition at line 175 of file CodeGenFunction.h.

Referenced by EmitBuiltinAvailable().


The documentation for this class was generated from the following files: