Home
last modified time | relevance | path

Searched refs:ApplyDebugLocation (Results 1 – 20 of 20) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGDebugInfo.h55 friend class ApplyDebugLocation; variable
684 class ApplyDebugLocation {
687 ApplyDebugLocation(CodeGenFunction &CGF, bool DefaultToEmpty,
696 ApplyDebugLocation(CodeGenFunction &CGF, const Expr *E);
697 ApplyDebugLocation(CodeGenFunction &CGF, llvm::DebugLoc Loc);
698 ApplyDebugLocation(ApplyDebugLocation &&Other) : CGF(Other.CGF) { in ApplyDebugLocation() function
702 ~ApplyDebugLocation();
716 return ApplyDebugLocation(CGF, false, SourceLocation()); in CreateArtificial()
721 static ApplyDebugLocation
724 return ApplyDebugLocation(CGF, false, TemporaryLocation); in CreateDefaultArtificial()
[all …]
H A DCGDeclCXX.cpp629 auto NL = ApplyDebugLocation::CreateEmpty(*this); in GenerateCXXGlobalInitFunc()
633 auto AL = ApplyDebugLocation::CreateArtificial(*this); in GenerateCXXGlobalInitFunc()
688 auto NL = ApplyDebugLocation::CreateEmpty(*this); in GenerateCXXGlobalDtorsFunc()
692 auto AL = ApplyDebugLocation::CreateArtificial(*this); in GenerateCXXGlobalDtorsFunc()
H A DCGVTables.cpp260 auto NL = ApplyDebugLocation::CreateEmpty(*this); in StartThunk()
264 auto AL = ApplyDebugLocation::CreateArtificial(*this); in StartThunk()
436 auto AL = ApplyDebugLocation::CreateArtificial(*this); in generateThunk()
H A DCGDebugInfo.cpp79 ApplyDebugLocation::ApplyDebugLocation(CodeGenFunction &CGF, in ApplyDebugLocation() function in ApplyDebugLocation
85 ApplyDebugLocation::ApplyDebugLocation(CodeGenFunction &CGF, in ApplyDebugLocation() function in ApplyDebugLocation
92 void ApplyDebugLocation::init(SourceLocation TemporaryLocation, in init()
121 ApplyDebugLocation::ApplyDebugLocation(CodeGenFunction &CGF, const Expr *E) in ApplyDebugLocation() function in ApplyDebugLocation
126 ApplyDebugLocation::ApplyDebugLocation(CodeGenFunction &CGF, llvm::DebugLoc Loc) in ApplyDebugLocation() function in ApplyDebugLocation
137 ApplyDebugLocation::~ApplyDebugLocation() { in ~ApplyDebugLocation()
H A DCodeGenFunction.cpp358 ApplyDebugLocation AL(*this, Loc); in FinishFunction()
1571 ApplyDebugLocation DL(*this, Cond); in EmitBranchOnBoolExpr()
1620 ApplyDebugLocation DL(*this, Cond); in EmitBranchOnBoolExpr()
1674 ApplyDebugLocation DL(*this, Cond); in EmitBranchOnBoolExpr()
1721 ApplyDebugLocation DL(*this, Cond); in EmitBranchOnBoolExpr()
H A DCGOpenMPRuntimeNVPTX.cpp2129 (void)ApplyDebugLocation::CreateEmpty(CGF); in emitGenericVarsProlog()
2135 (void)ApplyDebugLocation::CreateEmpty(CGF); in emitGenericVarsProlog()
2391 (void)ApplyDebugLocation::CreateEmpty(CGF); in emitGenericVarsEpilog()
2594 (void)ApplyDebugLocation::CreateEmpty(CGF); in emitNonSPMDParallelCall()
2607 (void)ApplyDebugLocation::CreateEmpty(CGF); in emitNonSPMDParallelCall()
2612 (void)ApplyDebugLocation::CreateEmpty(CGF); in emitNonSPMDParallelCall()
3227 (void)ApplyDebugLocation::CreateEmpty(CGF); in emitInterWarpCopyFunction()
3343 (void)ApplyDebugLocation::CreateEmpty(CGF); in emitInterWarpCopyFunction()
3969 (void)ApplyDebugLocation::CreateEmpty(CGF); in emitReduction()
H A DCGBlocks.cpp1504 ApplyDebugLocation Scope(*this, StartLoc); in setBlockContextParameter()
1612 auto NL = ApplyDebugLocation::CreateEmpty(*this); in GenerateBlockFunction()
2047 ApplyDebugLocation NL{*this, blockInfo.getBlockExpr()->getBeginLoc()}; in GenerateCopyHelperFunction()
2239 ApplyDebugLocation NL{*this, blockInfo.getBlockExpr()->getBeginLoc()}; in GenerateDestroyHelperFunction()
H A DCGStmt.cpp659 auto NL = ApplyDebugLocation::CreateEmpty(*this); in EmitIfStmt()
668 auto NL = ApplyDebugLocation::CreateEmpty(*this); in EmitIfStmt()
H A DCGOpenMPRuntime.cpp2583 auto NL = ApplyDebugLocation::CreateEmpty(DtorCGF); in emitThreadPrivateVarDefinition()
2587 auto AL = ApplyDebugLocation::CreateArtificial(DtorCGF); in emitThreadPrivateVarDefinition()
2708 auto NL = ApplyDebugLocation::CreateEmpty(CtorCGF); in emitDeclareTargetVarDefinition()
2711 auto AL = ApplyDebugLocation::CreateArtificial(CtorCGF); in emitDeclareTargetVarDefinition()
2746 auto NL = ApplyDebugLocation::CreateEmpty(DtorCGF); in emitDeclareTargetVarDefinition()
2751 auto AL = ApplyDebugLocation::CreateArtificial(DtorCGF); in emitDeclareTargetVarDefinition()
2828 (void)ApplyDebugLocation::CreateEmpty(CGF); in emitOMPIfClause()
2832 (void)ApplyDebugLocation::CreateEmpty(CGF); in emitOMPIfClause()
9538 auto DL = ApplyDebugLocation::CreateDefaultArtificial(CGF, Loc); in emitCall()
H A DCGExprComplex.cpp95 ApplyDebugLocation DL(CGF, E); in Visit()
H A DCGExprScalar.cpp402 ApplyDebugLocation DL(CGF, E); in Visit()
3880 auto NL = ApplyDebugLocation::CreateEmpty(CGF); in VisitBinLAnd()
3888 auto NL = ApplyDebugLocation::CreateArtificial(CGF); in VisitBinLAnd()
H A DCGExprAgg.cpp105 ApplyDebugLocation DL(CGF, E); in Visit()
H A DCGException.cpp774 auto DL = ApplyDebugLocation::CreateDefaultArtificial(*this, CurEHLocation); in EmitLandingPad()
H A DCGExprCXX.cpp1281 ApplyDebugLocation DL(CGF, E); in EmitNewInitializer()
H A DMicrosoftCXXABI.cpp3917 auto NL = ApplyDebugLocation::CreateEmpty(CGF); in getAddrOfCXXCtorClosure()
3921 auto AL = ApplyDebugLocation::CreateArtificial(CGF); in getAddrOfCXXCtorClosure()
H A DCGDecl.cpp1585 auto DL = ApplyDebugLocation::CreateDefaultArtificial(*this, D.getLocation()); in EmitAutoVarInit()
H A DCGExpr.cpp1237 ApplyDebugLocation DL(*this, E); in EmitLValue()
2886 Optional<ApplyDebugLocation> DL; in emitCheckHandlerCall()
H A DCGClass.cpp610 ApplyDebugLocation Loc(CGF, MemberInit->getSourceLocation()); in EmitMemberInitializer()
H A DCodeGenFunction.h790 ApplyDebugLocation DL(CGF, Range.getEnd());
H A DCGBuiltin.cpp1114 auto NL = ApplyDebugLocation::CreateEmpty(*this); in generateBuiltinOSLogHelperFunction()
1123 auto AL = ApplyDebugLocation::CreateArtificial(*this); in generateBuiltinOSLogHelperFunction()