Searched refs:ParentCGF (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGException.cpp | 1779 CodeGenFunction &ParentCGF; member 1783 CaptureFinder(CodeGenFunction &ParentCGF, const VarDecl *ParentThis) in CaptureFinder() 1784 : ParentCGF(ParentCGF), ParentThis(ParentThis) {} in CaptureFinder() 1815 if (ParentCGF.getTarget().getTriple().getArch() != llvm::Triple::x86) in VisitCallExpr() 1826 SEHCodeSlot = ParentCGF.SEHCodeSlotStack.back(); in VisitCallExpr() 1833 Address CodeGenFunction::recoverAddrOfEscapedLocal(CodeGenFunction &ParentCGF, in recoverAddrOfEscapedLocal() argument 1842 auto InsertPair = ParentCGF.EscapedLocals.insert( in recoverAddrOfEscapedLocal() 1843 std::make_pair(ParentAlloca, ParentCGF.EscapedLocals.size())); in recoverAddrOfEscapedLocal() 1849 FrameRecoverFn, {ParentCGF.CurFn, ParentFP, in recoverAddrOfEscapedLocal() 1872 void CodeGenFunction::EmitCapturedLocals(CodeGenFunction &ParentCGF, in EmitCapturedLocals() argument [all …]
|
H A D | CodeGenFunction.h | 290 CodeGenFunction *ParentCGF = nullptr; 3601 void startOutlinedSEHHelper(CodeGenFunction &ParentCGF, bool IsFilter, 3604 llvm::Function *GenerateSEHFilterFunction(CodeGenFunction &ParentCGF, 3607 llvm::Function *GenerateSEHFinallyFunction(CodeGenFunction &ParentCGF, 3610 void EmitSEHExceptionCodeSave(CodeGenFunction &ParentCGF, 3623 void EmitCapturedLocals(CodeGenFunction &ParentCGF, const Stmt *OutlinedStmt, 3631 Address recoverAddrOfEscapedLocal(CodeGenFunction &ParentCGF,
|
H A D | CGStmtOpenMP.cpp | 1981 static EmittedClosureTy emitCapturedStmtFunc(CodeGenFunction &ParentCGF, in emitCapturedStmtFunc() argument 1983 LValue CapStruct = ParentCGF.InitCapturedStruct(*S); in emitCapturedStmtFunc() 1984 CodeGenFunction CGF(ParentCGF.CGM, /*suppressNewContext=*/true); in emitCapturedStmtFunc() 1990 return {F, CapStruct.getPointer(ParentCGF)}; in emitCapturedStmtFunc() 1995 emitCapturedStmtCall(CodeGenFunction &ParentCGF, EmittedClosureTy Cap, in emitCapturedStmtCall() argument 2003 return ParentCGF.Builder.CreateCall(Cap.first, EffectiveArgs); in emitCapturedStmtCall()
|