Searched defs:CancelRegion (Results 1 - 6 of 6) sorted by relevance

/external/clang/lib/AST/
H A DStmtOpenMP.cpp549 OpenMPDirectiveKind CancelRegion) {
555 Dir->setCancelRegion(CancelRegion);
570 OpenMPDirectiveKind CancelRegion) {
578 Dir->setCancelRegion(CancelRegion);
547 Create( const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, OpenMPDirectiveKind CancelRegion) argument
568 Create(const ASTContext &C, SourceLocation StartLoc, SourceLocation EndLoc, ArrayRef<OMPClause *> Clauses, OpenMPDirectiveKind CancelRegion) argument
/external/clang/lib/Parse/
H A DParseOpenMP.cpp180 OpenMPDirectiveKind CancelRegion = OMPD_unknown; local
260 CancelRegion = ParseOpenMPDirectiveKind(*this);
322 DKind, DirName, CancelRegion, Clauses, AssociatedStmt.get(), Loc,
/external/clang/lib/Sema/
H A DSemaOpenMP.cpp113 bool CancelRegion; member in struct:__anon1543::DSAStackTy::SharingMapTy
121 CancelRegion(false), CollapseNumber(1), InnerTeamsRegionLoc() {}
126 CancelRegion(false), CollapseNumber(1), InnerTeamsRegionLoc() {}
297 Stack[Stack.size() - 2].CancelRegion =
298 Stack[Stack.size() - 2].CancelRegion || Cancel;
302 return Stack.back().CancelRegion;
1630 OpenMPDirectiveKind CancelRegion,
2272 !((CancelRegion == OMPD_parallel && ParentRegion == OMPD_parallel) ||
2273 (CancelRegion == OMPD_for &&
2275 (CancelRegion
[all...]
H A DTreeTransform.h1374 OpenMPDirectiveKind CancelRegion,
1379 Kind, DirName, CancelRegion, Clauses, AStmt, StartLoc, EndLoc);
7099 OpenMPDirectiveKind CancelRegion = OMPD_unknown; local
7101 CancelRegion = cast<OMPCancellationPointDirective>(D)->getCancelRegion();
7103 CancelRegion = cast<OMPCancelDirective>(D)->getCancelRegion();
7107 D->getDirectiveKind(), DirName, CancelRegion, TClauses,
1372 RebuildOMPExecutableDirective(OpenMPDirectiveKind Kind, DeclarationNameInfo DirName, OpenMPDirectiveKind CancelRegion, ArrayRef<OMPClause *> Clauses, Stmt *AStmt, SourceLocation StartLoc, SourceLocation EndLoc) argument
/external/clang/include/clang/AST/
H A DStmtOpenMP.h2109 OpenMPDirectiveKind CancelRegion; member in class:clang::OMPCancellationPointDirective
2118 CancelRegion(OMPD_unknown) {}
2126 CancelRegion(OMPD_unknown) {}
2130 void setCancelRegion(OpenMPDirectiveKind CR) { CancelRegion = CR; }
2141 OpenMPDirectiveKind CancelRegion);
2151 OpenMPDirectiveKind getCancelRegion() const { return CancelRegion; }
2167 OpenMPDirectiveKind CancelRegion; member in class:clang::OMPCancelDirective
2178 CancelRegion(OMPD_unknown) {}
2187 CancelRegion(OMPD_unknown) {}
2191 void setCancelRegion(OpenMPDirectiveKind CR) { CancelRegion
[all...]
/external/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp3144 static RTCancelKind getCancellationKind(OpenMPDirectiveKind CancelRegion) { argument
3146 if (CancelRegion == OMPD_parallel)
3148 else if (CancelRegion == OMPD_for)
3150 else if (CancelRegion == OMPD_sections)
3153 assert(CancelRegion == OMPD_taskgroup);
3161 OpenMPDirectiveKind CancelRegion) {
3173 CGF.Builder.getInt32(getCancellationKind(CancelRegion))};
3199 OpenMPDirectiveKind CancelRegion) {
3208 auto &&ThenGen = [this, Loc, CancelRegion,
3212 CGF.Builder.getInt32(getCancellationKind(CancelRegion))};
3159 emitCancellationPointCall( CodeGenFunction &CGF, SourceLocation Loc, OpenMPDirectiveKind CancelRegion) argument
3197 emitCancelCall(CodeGenFunction &CGF, SourceLocation Loc, const Expr *IfCond, OpenMPDirectiveKind CancelRegion) argument
[all...]

Completed in 96 milliseconds