/external/clang/include/clang/AST/ |
D | StmtOpenMP.h | 234 bool HasCancel; variable 245 HasCancel(false) {} in OMPParallelDirective() 255 HasCancel(false) {} in OMPParallelDirective() 258 void setHasCancel(bool Has) { HasCancel = Has; } in setHasCancel() 272 ArrayRef<OMPClause *> Clauses, Stmt *AssociatedStmt, bool HasCancel); 283 bool hasCancel() const { return HasCancel; } in hasCancel() 858 bool HasCancel; variable 871 HasCancel(false) {} in OMPForDirective() 881 HasCancel(false) {} in OMPForDirective() 884 void setHasCancel(bool Has) { HasCancel = Has; } in setHasCancel() [all …]
|
/external/llvm-project/clang/include/clang/AST/ |
D | StmtOpenMP.h | 378 bool HasCancel = false; variable 400 void setHasCancel(bool Has) { HasCancel = Has; } in setHasCancel() 417 bool HasCancel); 436 bool hasCancel() const { return HasCancel; } in hasCancel() 1243 bool HasCancel = false; variable 1271 void setHasCancel(bool Has) { HasCancel = Has; } in setHasCancel() 1291 Expr *TaskRedRef, bool HasCancel); 1313 bool hasCancel() const { return HasCancel; } in hasCancel() 1397 bool HasCancel = false; variable 1419 void setHasCancel(bool Has) { HasCancel = Has; } in setHasCancel() [all …]
|
/external/llvm-project/clang/lib/AST/ |
D | StmtOpenMP.cpp | 197 bool HasCancel) { in Create() argument 201 Dir->setHasCancel(HasCancel); in Create() 252 const HelperExprs &Exprs, Expr *TaskRedRef, bool HasCancel) { in Create() argument 281 Dir->setHasCancel(HasCancel); in Create() 341 bool HasCancel) { in Create() argument 346 Dir->setHasCancel(HasCancel); in Create() 362 bool HasCancel) { in Create() argument 366 Dir->setHasCancel(HasCancel); in Create() 427 const HelperExprs &Exprs, Expr *TaskRedRef, bool HasCancel) { in Create() argument 457 Dir->setHasCancel(HasCancel); in Create() [all …]
|
/external/clang/lib/AST/ |
D | StmtOpenMP.cpp | 59 ArrayRef<OMPClause *> Clauses, Stmt *AssociatedStmt, bool HasCancel) { in Create() argument 68 Dir->setHasCancel(HasCancel); in Create() 128 const HelperExprs &Exprs, bool HasCancel) { in Create() argument 161 Dir->setHasCancel(HasCancel); in Create() 231 ArrayRef<OMPClause *> Clauses, Stmt *AssociatedStmt, bool HasCancel) { in Create() argument 240 Dir->setHasCancel(HasCancel); in Create() 258 bool HasCancel) { in Create() argument 264 Dir->setHasCancel(HasCancel); in Create() 350 const HelperExprs &Exprs, bool HasCancel) { in Create() argument 383 Dir->setHasCancel(HasCancel); in Create() [all …]
|
/external/clang/lib/CodeGen/ |
D | CGOpenMPRuntime.cpp | 54 bool HasCancel) in CGOpenMPRegionInfo() argument 56 CodeGen(CodeGen), Kind(Kind), HasCancel(HasCancel) {} in CGOpenMPRegionInfo() 60 bool HasCancel) in CGOpenMPRegionInfo() argument 62 Kind(Kind), HasCancel(HasCancel) {} in CGOpenMPRegionInfo() 81 bool hasCancel() const { return HasCancel; } in hasCancel() 93 bool HasCancel; member in __anondef231dd0111::CGOpenMPRegionInfo 101 OpenMPDirectiveKind Kind, bool HasCancel) in CGOpenMPOutlinedRegionInfo() argument 103 HasCancel), in CGOpenMPOutlinedRegionInfo() 180 OpenMPDirectiveKind Kind, bool HasCancel, in CGOpenMPTaskOutlinedRegionInfo() argument 182 : CGOpenMPRegionInfo(CS, TaskOutlinedRegion, CodeGen, Kind, HasCancel), in CGOpenMPTaskOutlinedRegionInfo() [all …]
|
D | CGOpenMPRuntime.h | 858 bool HasCancel = false);
|
D | CGStmtOpenMP.cpp | 2270 bool HasCancel = false; in EmitSections() local 2272 HasCancel = OSD->hasCancel(); in EmitSections() 2274 HasCancel = OPSD->hasCancel(); in EmitSections() 2276 HasCancel); in EmitSections()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGOpenMPRuntime.cpp | 67 bool HasCancel) in CGOpenMPRegionInfo() argument 69 CodeGen(CodeGen), Kind(Kind), HasCancel(HasCancel) {} in CGOpenMPRegionInfo() 73 bool HasCancel) in CGOpenMPRegionInfo() argument 75 Kind(Kind), HasCancel(HasCancel) {} in CGOpenMPRegionInfo() 94 bool hasCancel() const { return HasCancel; } in hasCancel() 106 bool HasCancel; member in __anonbe229beb0111::CGOpenMPRegionInfo 114 OpenMPDirectiveKind Kind, bool HasCancel, in CGOpenMPOutlinedRegionInfo() argument 117 HasCancel), in CGOpenMPOutlinedRegionInfo() 196 OpenMPDirectiveKind Kind, bool HasCancel, in CGOpenMPTaskOutlinedRegionInfo() argument 198 : CGOpenMPRegionInfo(CS, TaskOutlinedRegion, CodeGen, Kind, HasCancel), in CGOpenMPTaskOutlinedRegionInfo() [all …]
|
D | CGStmtOpenMP.cpp | 2780 bool HasCancel = false; in emitInnerParallelForWhenCombined() local 2783 HasCancel = D->hasCancel(); in emitInnerParallelForWhenCombined() 2785 HasCancel = D->hasCancel(); in emitInnerParallelForWhenCombined() 2788 HasCancel = D->hasCancel(); in emitInnerParallelForWhenCombined() 2791 HasCancel); in emitInnerParallelForWhenCombined() 3312 bool HasCancel) { in emitWorksharingDirective() argument 3323 const auto &&FirstGen = [&S, HasCancel](CodeGenFunction &CGF) { in emitWorksharingDirective() 3325 CGF, S.getDirectiveKind(), HasCancel); in emitWorksharingDirective() 3333 const auto &&SecondGen = [&S, HasCancel, in emitWorksharingDirective() 3336 CGF, S.getDirectiveKind(), HasCancel); in emitWorksharingDirective() [all …]
|
D | CodeGenFunction.h | 1392 void enter(CodeGenFunction &CGF, OpenMPDirectiveKind Kind, bool HasCancel) { 1394 HasCancel ? CGF.getJumpDestInCurrentScope("cancel.exit") 1396 HasCancel ? CGF.getJumpDestInCurrentScope("cancel.cont") 3222 bool HasCancel) 3224 CGF.OMPCancelStack.enter(CGF, Kind, HasCancel);
|
D | CGOpenMPRuntime.h | 1371 bool HasCancel = false);
|