Searched refs:Evt (Results 1 – 7 of 7) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | PPCFastISel.cpp | 270 EVT Evt = TLI.getValueType(DL, Ty, true); in isTypeLegal() local 273 if (Evt == MVT::Other || !Evt.isSimple()) return false; in isTypeLegal() 274 VT = Evt.getSimpleVT(); in isTypeLegal()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | StmtProfile.cpp | 514 if (Expr *Evt = C->getEventHandler()) in VisitOMPDetachClause() local 515 Profiler->VisitStmt(Evt); in VisitOMPDetachClause()
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | SemaOpenMP.h | 906 OMPClause *ActOnOpenMPDetachClause(Expr *Evt, SourceLocation StartLoc,
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaOpenMP.cpp | 21882 OMPClause *SemaOpenMP::ActOnOpenMPDetachClause(Expr *Evt, in ActOnOpenMPDetachClause() argument 21886 if (!Evt->isValueDependent() && !Evt->isTypeDependent() && in ActOnOpenMPDetachClause() 21887 !Evt->isInstantiationDependent() && in ActOnOpenMPDetachClause() 21888 !Evt->containsUnexpandedParameterPack()) { in ActOnOpenMPDetachClause() 21889 if (!findOMPEventHandleT(SemaRef, Evt->getExprLoc(), DSAStack)) in ActOnOpenMPDetachClause() 21893 auto *Ref = dyn_cast<DeclRefExpr>(Evt->IgnoreParenImpCasts()); in ActOnOpenMPDetachClause() 21895 Diag(Evt->getExprLoc(), diag::err_omp_var_expected) in ActOnOpenMPDetachClause() 21896 << "omp_event_handle_t" << 0 << Evt->getSourceRange(); in ActOnOpenMPDetachClause() 21901 Diag(Evt->getExprLoc(), diag::err_omp_var_expected) in ActOnOpenMPDetachClause() 21902 << "omp_event_handle_t" << 0 << Evt->getSourceRange(); in ActOnOpenMPDetachClause() [all …]
|
H A D | TreeTransform.h | 2139 OMPClause *RebuildOMPDetachClause(Expr *Evt, SourceLocation StartLoc, in RebuildOMPDetachClause() argument 2142 return getSema().OpenMP().ActOnOpenMPDetachClause(Evt, StartLoc, LParenLoc, in RebuildOMPDetachClause() 10175 if (Expr *Evt = C->getEventHandler()) { in TransformOMPDetachClause() local 10176 E = getDerived().TransformExpr(Evt); in TransformOMPDetachClause()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | OpenMPClause.h | 8345 OMPDetachClause(Expr *Evt, SourceLocation StartLoc, SourceLocation LParenLoc, in OMPDetachClause() argument 8347 : OMPOneStmtClause(Evt, StartLoc, LParenLoc, EndLoc) {} in OMPDetachClause()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGOpenMPRuntime.cpp | 3782 const Expr *Evt = DC->getEventHandler()->IgnoreParenImpCasts(); in emitTaskInit() local 3783 LValue EvtLVal = CGF.EmitLValue(Evt); in emitTaskInit() 3794 EvtVal = CGF.EmitScalarConversion(EvtVal, C.VoidPtrTy, Evt->getType(), in emitTaskInit() 3795 Evt->getExprLoc()); in emitTaskInit()
|