Searched refs:CapturedStmtInfo (Results 1 – 6 of 6) sorted by relevance
/external/clang/lib/CodeGen/ |
D | CGStmt.cpp | 2153 CGF.CapturedStmtInfo = new CGCapturedStmtInfo(S, K); in EmitCapturedStmt() 2155 delete CGF.CapturedStmtInfo; in EmitCapturedStmt() 2172 assert(CapturedStmtInfo && in GenerateCapturedStmtFunction() 2193 CapturedStmtInfo->getHelperName(), &CGM.getModule()); in GenerateCapturedStmtFunction() 2205 CapturedStmtInfo->setContextValue(Builder.CreateLoad(DeclPtr)); in GenerateCapturedStmtFunction() 2208 LValue Base = MakeNaturalAlignAddrLValue(CapturedStmtInfo->getContextValue(), in GenerateCapturedStmtFunction() 2220 if (CapturedStmtInfo->isCXXThisExprCaptured()) { in GenerateCapturedStmtFunction() 2221 FieldDecl *FD = CapturedStmtInfo->getThisFieldDecl(); in GenerateCapturedStmtFunction() 2227 CapturedStmtInfo->EmitBody(*this, CD->getBody()); in GenerateCapturedStmtFunction()
|
D | CGOpenMPRuntime.cpp | 213 CGF.CapturedStmtInfo = in InlinedOpenMPRegionRAII() 214 new CGOpenMPInlinedRegionInfo(CGF.CapturedStmtInfo, CodeGen); in InlinedOpenMPRegionRAII() 219 cast<CGOpenMPInlinedRegionInfo>(CGF.CapturedStmtInfo)->getOldCSI(); in ~InlinedOpenMPRegionRAII() 220 delete CGF.CapturedStmtInfo; in ~InlinedOpenMPRegionRAII() 221 CGF.CapturedStmtInfo = OldCSI; in ~InlinedOpenMPRegionRAII() 285 CGF.CapturedStmtInfo = &CGInfo; in emitParallelOutlinedFunction() 298 CGF.CapturedStmtInfo = &CGInfo; in emitTaskOutlinedFunction() 403 dyn_cast_or_null<CGOpenMPRegionInfo>(CGF.CapturedStmtInfo)) { in getThreadID() 985 dyn_cast_or_null<CGOpenMPRegionInfo>(CGF.CapturedStmtInfo)) in emitThreadIDAddress() 1894 CGF.CapturedStmtInfo->EmitBody(CGF, /*S=*/nullptr); in emitInlinedDirective()
|
D | CGStmtOpenMP.cpp | 182 /*RefersToEnclosingVariableOrCapture=*/CapturedStmtInfo->lookup( in EmitOMPFirstprivateClause() 344 /*RefersToEnclosingVariableOrCapture=*/CapturedStmtInfo->lookup( in EmitOMPLastprivateClauseInit() 435 CapturedStmtInfo->lookup(OrigVD) != nullptr, in EmitOMPReductionClauseInit()
|
D | CGExpr.cpp | 1954 else if (CapturedStmtInfo) { in EmitDeclRefLValue() 1958 return EmitCapturedFieldLValue(*this, CapturedStmtInfo->lookup(VD), in EmitDeclRefLValue() 1959 CapturedStmtInfo->getContextValue()); in EmitDeclRefLValue()
|
D | CodeGenFunction.cpp | 40 CurFn(nullptr), CapturedStmtInfo(nullptr), in CodeGenFunction()
|
D | CodeGenFunction.h | 235 CGCapturedStmtInfo *CapturedStmtInfo; variable
|