Home
last modified time | relevance | path

Searched refs:CapturedStmtInfo (Results 1 – 6 of 6) sorted by relevance

/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp51 (CGF.CapturedStmtInfo && CGF.CapturedStmtInfo->lookup(VD)) || in isCapturedVar()
69 (CGF.CapturedStmtInfo && in OMPLexicalScope()
200 CapturedStmtInfo && in GenerateOpenMPCapturedStmtFunction()
253 CapturedStmtInfo->getHelperName(), &CGM.getModule()); in GenerateOpenMPCapturedStmtFunction()
314 CapturedStmtInfo->EmitBody(*this, CD->getBody()); in GenerateOpenMPCapturedStmtFunction()
593 auto *FD = CapturedStmtInfo->lookup(OrigVD); in EmitOMPFirstprivateClause()
715 assert(CapturedStmtInfo->lookup(VD) && in EmitOMPCopyinClause()
789 /*RefersToEnclosingVariableOrCapture=*/CapturedStmtInfo->lookup( in EmitOMPLastprivateClauseInit()
1058 CapturedStmtInfo->lookup(OrigVD) != nullptr, in EmitOMPReductionClauseInit()
1101 CapturedStmtInfo->lookup(OrigVD) != nullptr, in EmitOMPReductionClauseInit()
[all …]
DCGStmt.cpp2184 delete CGF.CapturedStmtInfo; in EmitCapturedStmt()
2200 assert(CapturedStmtInfo && in GenerateCapturedStmtFunction()
2220 CapturedStmtInfo->getHelperName(), &CGM.getModule()); in GenerateCapturedStmtFunction()
2231 CapturedStmtInfo->setContextValue(Builder.CreateLoad(DeclPtr)); in GenerateCapturedStmtFunction()
2234 LValue Base = MakeNaturalAlignAddrLValue(CapturedStmtInfo->getContextValue(), in GenerateCapturedStmtFunction()
2246 if (CapturedStmtInfo->isCXXThisExprCaptured()) { in GenerateCapturedStmtFunction()
2247 FieldDecl *FD = CapturedStmtInfo->getThisFieldDecl(); in GenerateCapturedStmtFunction()
2253 CapturedStmtInfo->EmitBody(*this, CD->getBody()); in GenerateCapturedStmtFunction()
DCGOpenMPRuntime.cpp328 : CGOpenMPInlinedRegionInfo(CGF.CapturedStmtInfo, EmptyCodeGen, in CGOpenMPInnerExprInfo()
399 CGF.CapturedStmtInfo = new CGOpenMPInlinedRegionInfo( in InlinedOpenMPRegionRAII()
400 CGF.CapturedStmtInfo, CodeGen, Kind, HasCancel); in InlinedOpenMPRegionRAII()
409 cast<CGOpenMPInlinedRegionInfo>(CGF.CapturedStmtInfo)->getOldCSI(); in ~InlinedOpenMPRegionRAII()
410 delete CGF.CapturedStmtInfo; in ~InlinedOpenMPRegionRAII()
411 CGF.CapturedStmtInfo = OldCSI; in ~InlinedOpenMPRegionRAII()
998 dyn_cast_or_null<CGOpenMPRegionInfo>(CGF.CapturedStmtInfo)) { in getThreadID()
1998 dyn_cast_or_null<CGOpenMPRegionInfo>(CGF.CapturedStmtInfo)) in emitThreadIDAddress()
2129 if (auto *Region = dyn_cast_or_null<CGOpenMPRegionInfo>(CGF.CapturedStmtInfo)) in emitTaskyieldCall()
2337 dyn_cast_or_null<CGOpenMPRegionInfo>(CGF.CapturedStmtInfo)) { in emitBarrierCall()
[all …]
DCodeGenFunction.h242 CGCapturedStmtInfo *CapturedStmtInfo; variable
252 : CGF(CGF), PrevCapturedStmtInfo(CGF.CapturedStmtInfo) { in CGCapturedStmtRAII()
253 CGF.CapturedStmtInfo = NewCapturedStmtInfo; in CGCapturedStmtRAII()
255 ~CGCapturedStmtRAII() { CGF.CapturedStmtInfo = PrevCapturedStmtInfo; } in ~CGCapturedStmtRAII()
DCGExpr.cpp2089 !(E->refersToEnclosingVariableOrCapture() && CapturedStmtInfo && in EmitDeclRefLValue()
2107 else if (CapturedStmtInfo) { in EmitDeclRefLValue()
2116 EmitCapturedFieldLValue(*this, CapturedStmtInfo->lookup(VD), in EmitDeclRefLValue()
2117 CapturedStmtInfo->getContextValue()); in EmitDeclRefLValue()
DCodeGenFunction.cpp45 CapturedStmtInfo(nullptr), in CodeGenFunction()