reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Derived Classes

tools/clang/include/clang/AST/StmtOpenMP.h
 1200 class OMPSimdDirective : public OMPLoopDirective {
 1265 class OMPForDirective : public OMPLoopDirective {
 1342 class OMPForSimdDirective : public OMPLoopDirective {
 1713 class OMPParallelForDirective : public OMPLoopDirective {
 1793 class OMPParallelForSimdDirective : public OMPLoopDirective {
 2742 class OMPTargetParallelForDirective : public OMPLoopDirective {
 3002 class OMPTaskLoopDirective : public OMPLoopDirective {
 3067 class OMPTaskLoopSimdDirective : public OMPLoopDirective {
 3134 class OMPMasterTaskLoopDirective : public OMPLoopDirective {
 3202 class OMPMasterTaskLoopSimdDirective : public OMPLoopDirective {
 3270 class OMPParallelMasterTaskLoopDirective : public OMPLoopDirective {
 3338 class OMPDistributeDirective : public OMPLoopDirective {
 3465 class OMPDistributeParallelForDirective : public OMPLoopDirective {
 3545 class OMPDistributeParallelForSimdDirective final : public OMPLoopDirective {
 3614 class OMPDistributeSimdDirective final : public OMPLoopDirective {
 3682 class OMPTargetParallelForSimdDirective final : public OMPLoopDirective {
 3750 class OMPTargetSimdDirective final : public OMPLoopDirective {
 3816 class OMPTeamsDistributeDirective final : public OMPLoopDirective {
 3884 class OMPTeamsDistributeSimdDirective final : public OMPLoopDirective {
 3954 class OMPTeamsDistributeParallelForSimdDirective final
 4025 class OMPTeamsDistributeParallelForDirective final : public OMPLoopDirective {
 4162 class OMPTargetTeamsDistributeDirective final : public OMPLoopDirective {
 4230 class OMPTargetTeamsDistributeParallelForDirective final
 4314 class OMPTargetTeamsDistributeParallelForSimdDirective final
 4387 class OMPTargetTeamsDistributeSimdDirective final : public OMPLoopDirective {

Declarations

gen/tools/clang/include/clang/AST/StmtNodes.inc
  185 ABSTRACT_STMT(OMPLOOPDIRECTIVE(OMPLoopDirective, OMPExecutableDirective))
tools/clang/lib/CodeGen/CGOpenMPRuntime.h
   42 class OMPLoopDirective;

References

include/llvm/ADT/STLExtras.h
   75       typename std::add_pointer<typename std::add_const<T>::type>::type;
include/llvm/Support/Casting.h
   57   static inline bool doit(const From &Val) {
   58     return To::classof(&Val);
   66   static inline bool doit(const From &) { return true; }
   77     return isa_impl<To, From>::doit(Val);
  104   static inline bool doit(const From *Val) {
  106     return isa_impl<To, From>::doit(*Val);
  106     return isa_impl<To, From>::doit(*Val);
  122     return isa_impl_wrap<To, SimpleFrom,
  132     return isa_impl_cl<To,FromTy>::doit(Val);
  142   return isa_impl_wrap<X, const Y,
  168   using ret_type = const To &; // Normal case, return Ty&
  176   using ret_type = const To *; // Constant pointer arg case, return const Ty*
  198   using ret_type = typename cast_retty<To, SimpleFrom>::ret_type;
  204   using ret_type = typename cast_retty_impl<To,FromTy>::ret_type;
  210       To, From, typename simplify_type<From>::SimpleType>::ret_type;
  227   static typename cast_retty<To, FromTy>::ret_type doit(const FromTy &Val) {
  228     typename cast_retty<To, FromTy>::ret_type Res2
  256 inline typename cast_retty<X, Y>::ret_type cast(Y &Val) {
  258   return cast_convert_val<X, Y,
  263 inline typename cast_retty<X, Y *>::ret_type cast(Y *Val) {
  265   return cast_convert_val<X, Y*,
  337 LLVM_NODISCARD inline typename cast_retty<X, Y>::ret_type dyn_cast(Y &Val) {
  342 LLVM_NODISCARD inline typename cast_retty<X, Y *>::ret_type dyn_cast(Y *Val) {
  343   return isa<X>(Val) ? cast<X>(Val) : nullptr;
  343   return isa<X>(Val) ? cast<X>(Val) : nullptr;
tools/clang/include/clang/AST/RecursiveASTVisitor.h
  529   bool TraverseOMPLoopDirective(OMPLoopDirective *S);
 2706 RecursiveASTVisitor<Derived>::TraverseOMPLoopDirective(OMPLoopDirective *S) {
tools/clang/include/clang/AST/StmtOpenMP.h
 1200 class OMPSimdDirective : public OMPLoopDirective {
 1265 class OMPForDirective : public OMPLoopDirective {
 1342 class OMPForSimdDirective : public OMPLoopDirective {
 1713 class OMPParallelForDirective : public OMPLoopDirective {
 1793 class OMPParallelForSimdDirective : public OMPLoopDirective {
 2742 class OMPTargetParallelForDirective : public OMPLoopDirective {
 3002 class OMPTaskLoopDirective : public OMPLoopDirective {
 3067 class OMPTaskLoopSimdDirective : public OMPLoopDirective {
 3134 class OMPMasterTaskLoopDirective : public OMPLoopDirective {
 3202 class OMPMasterTaskLoopSimdDirective : public OMPLoopDirective {
 3270 class OMPParallelMasterTaskLoopDirective : public OMPLoopDirective {
 3338 class OMPDistributeDirective : public OMPLoopDirective {
 3465 class OMPDistributeParallelForDirective : public OMPLoopDirective {
 3545 class OMPDistributeParallelForSimdDirective final : public OMPLoopDirective {
 3614 class OMPDistributeSimdDirective final : public OMPLoopDirective {
 3682 class OMPTargetParallelForSimdDirective final : public OMPLoopDirective {
 3750 class OMPTargetSimdDirective final : public OMPLoopDirective {
 3816 class OMPTeamsDistributeDirective final : public OMPLoopDirective {
 3884 class OMPTeamsDistributeSimdDirective final : public OMPLoopDirective {
 3955     : public OMPLoopDirective {
 4025 class OMPTeamsDistributeParallelForDirective final : public OMPLoopDirective {
 4162 class OMPTargetTeamsDistributeDirective final : public OMPLoopDirective {
 4231     : public OMPLoopDirective {
 4315     : public OMPLoopDirective {
 4387 class OMPTargetTeamsDistributeSimdDirective final : public OMPLoopDirective {
tools/clang/lib/AST/StmtOpenMP.cpp
   39   if (auto *LD = dyn_cast<OMPLoopDirective>(this))
tools/clang/lib/AST/StmtProfile.cpp
  785 void StmtProfiler::VisitOMPLoopDirective(const OMPLoopDirective *S) {
tools/clang/lib/CodeGen/Address.h
  108 template <class U> inline U cast(CodeGen::Address addr) {
tools/clang/lib/CodeGen/CGOpenMPRuntime.cpp
 3459     CodeGenFunction &CGF, const OMPLoopDirective &S,
 5377                                        const OMPLoopDirective &D,
 9138                                      const OMPLoopDirective &D)>
 9147   const auto *LD = cast<OMPLoopDirective>(TD);
 9147   const auto *LD = cast<OMPLoopDirective>(TD);
 9164                                      const OMPLoopDirective &D)>
10806                                        const OMPLoopDirective &D,
11307     CodeGenFunction &CGF, SourceLocation Loc, const OMPLoopDirective &D,
11371                                      const OMPLoopDirective &D)>
11416                                            const OMPLoopDirective &D,
tools/clang/lib/CodeGen/CGOpenMPRuntime.h
  813                                        const OMPLoopDirective &D)>
 1264                                 const OMPLoopDirective &D,
 1454                                                   const OMPLoopDirective &D)>
 1587   virtual void emitDoacrossInit(CodeGenFunction &CGF, const OMPLoopDirective &D,
 1615       const OMPLoopDirective &S, OpenMPDistScheduleClauseKind &ScheduleKind,
 1621       const OMPLoopDirective &S, OpenMPScheduleClauseKind &ScheduleKind,
 1995                         const OMPLoopDirective &D, llvm::Function *TaskFunction,
 2142                                                   const OMPLoopDirective &D)>
 2208   void emitDoacrossInit(CodeGenFunction &CGF, const OMPLoopDirective &D,
tools/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp
 4617         cast<OMPLoopDirective>(D).getLowerBoundVariable()->getExprLoc());
 4627         cast<OMPLoopDirective>(D).getUpperBoundVariable()->getExprLoc());
 4819     CodeGenFunction &CGF, const OMPLoopDirective &S,
 4834     CodeGenFunction &CGF, const OMPLoopDirective &S,
tools/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.h
  383       const OMPLoopDirective &S, OpenMPDistScheduleClauseKind &ScheduleKind,
  388       const OMPLoopDirective &S, OpenMPScheduleClauseKind &ScheduleKind,
tools/clang/lib/CodeGen/CGStmtOpenMP.cpp
  121   void emitPreInitStmt(CodeGenFunction &CGF, const OMPLoopDirective &S) {
  171   OMPLoopScope(CodeGenFunction &CGF, const OMPLoopDirective &S)
  976     const auto *LoopDirective = cast<OMPLoopDirective>(&D);
  976     const auto *LoopDirective = cast<OMPLoopDirective>(&D);
 1049   if (const auto *LoopDirective = dyn_cast<OMPLoopDirective>(&D)) {
 1049   if (const auto *LoopDirective = dyn_cast<OMPLoopDirective>(&D)) {
 1342 void CodeGenFunction::EmitOMPLoopBody(const OMPLoopDirective &D,
 1442 bool CodeGenFunction::EmitOMPLinearClauseInit(const OMPLoopDirective &D) {
 1480     const OMPLoopDirective &D,
 1553     const OMPLoopDirective &S, CodeGenFunction::OMPPrivateScope &LoopScope) {
 1602 static void emitPreCond(CodeGenFunction &CGF, const OMPLoopDirective &S,
 1641     const OMPLoopDirective &D, CodeGenFunction::OMPPrivateScope &PrivateScope) {
 1646     const auto *LoopDirective = cast<OMPLoopDirective>(&D);
 1646     const auto *LoopDirective = cast<OMPLoopDirective>(&D);
 1702 void CodeGenFunction::EmitOMPSimdInit(const OMPLoopDirective &D,
 1711     const OMPLoopDirective &D,
 1756                                          const OMPLoopDirective &S,
 1770 static void emitOMPSimdRegion(CodeGenFunction &CGF, const OMPLoopDirective &S,
 1866     bool DynamicOrOrdered, bool IsMonotonic, const OMPLoopDirective &S,
 1972     const OMPLoopDirective &S, OMPPrivateScope &LoopScope, bool Ordered,
 2081     OpenMPDistScheduleClauseKind ScheduleKind, const OMPLoopDirective &S,
 2143   const OMPLoopDirective &LS = cast<OMPLoopDirective>(S);
 2143   const OMPLoopDirective &LS = cast<OMPLoopDirective>(S);
 2187   const OMPLoopDirective &LS = cast<OMPLoopDirective>(S);
 2187   const OMPLoopDirective &LS = cast<OMPLoopDirective>(S);
 2204   const auto &Dir = cast<OMPLoopDirective>(S);
 2204   const auto &Dir = cast<OMPLoopDirective>(S);
 2220                                  const OMPLoopDirective &S,
 2313     const OMPLoopDirective &S, Expr *EUB,
 2537   const auto &LS = cast<OMPLoopDirective>(S);
 2537   const auto &LS = cast<OMPLoopDirective>(S);
 2552   const auto &LS = cast<OMPLoopDirective>(S);
 2552   const auto &LS = cast<OMPLoopDirective>(S);
 3373 void CodeGenFunction::EmitOMPDistributeLoop(const OMPLoopDirective &S,
 4964 void CodeGenFunction::EmitOMPTaskLoopBasedDirective(const OMPLoopDirective &S) {
 5178       emitOMPSimdRegion(CGF, cast<OMPLoopDirective>(D), Action);
 5181       if (const auto *LD = dyn_cast<OMPLoopDirective>(&D)) {
 5181       if (const auto *LD = dyn_cast<OMPLoopDirective>(&D)) {
tools/clang/lib/CodeGen/CodeGenFunction.h
  269   typedef llvm::function_ref<void(CodeGenFunction &, const OMPLoopDirective &,
 3068   void EmitOMPLinearClause(const OMPLoopDirective &D,
 3074       const OMPLoopDirective &D,
 3098   bool EmitOMPLinearClauseInit(const OMPLoopDirective &D);
 3155   void EmitOMPTaskLoopBasedDirective(const OMPLoopDirective &S);
 3247   void EmitOMPPrivateLoopCounters(const OMPLoopDirective &S,
 3251   void EmitOMPLoopBody(const OMPLoopDirective &D, JumpDest LoopExit);
 3256   bool EmitOMPWorksharingLoop(const OMPLoopDirective &S, Expr *EUB,
 3261   void EmitOMPDistributeLoop(const OMPLoopDirective &S,
 3265   void EmitOMPSimdInit(const OMPLoopDirective &D, bool IsMonotonic = false);
 3267       const OMPLoopDirective &D,
 3312                         const OMPLoopDirective &S, OMPPrivateScope &LoopScope,
 3317                            bool IsMonotonic, const OMPLoopDirective &S,
 3322                                   const OMPLoopDirective &S,
tools/clang/lib/Sema/SemaOpenMP.cpp
 6901                 OMPLoopDirective::HelperExprs &Built) {
 7652   OMPLoopDirective::HelperExprs B;
 7691   OMPLoopDirective::HelperExprs B;
 7726   OMPLoopDirective::HelperExprs B;
 7928   OMPLoopDirective::HelperExprs B;
 7972   OMPLoopDirective::HelperExprs B;
 8970   OMPLoopDirective::HelperExprs B;
 9256   OMPLoopDirective::HelperExprs B;
 9292   OMPLoopDirective::HelperExprs B;
 9341   OMPLoopDirective::HelperExprs B;
 9377   OMPLoopDirective::HelperExprs B;
 9445   OMPLoopDirective::HelperExprs B;
 9481   OMPLoopDirective::HelperExprs B;
 9524   OMPLoopDirective::HelperExprs B;
 9568   OMPLoopDirective::HelperExprs B;
 9624   OMPLoopDirective::HelperExprs B;
 9680   OMPLoopDirective::HelperExprs B;
 9735   OMPLoopDirective::HelperExprs B;
 9791   OMPLoopDirective::HelperExprs B;
 9838   OMPLoopDirective::HelperExprs B;
 9900   OMPLoopDirective::HelperExprs B;
 9962   OMPLoopDirective::HelperExprs B;
10041   OMPLoopDirective::HelperExprs B;
10084   OMPLoopDirective::HelperExprs B;
10139   OMPLoopDirective::HelperExprs B;
10198   OMPLoopDirective::HelperExprs B;
tools/clang/lib/Serialization/ASTReaderStmt.cpp
 2026 void ASTStmtReader::VisitOMPLoopDirective(OMPLoopDirective *D) {
tools/clang/lib/Serialization/ASTWriterStmt.cpp
 1969 void ASTStmtWriter::VisitOMPLoopDirective(OMPLoopDirective *D) {
tools/clang/tools/libclang/CIndex.cpp
 2016   void VisitOMPLoopDirective(const OMPLoopDirective *D);
 2756 void EnqueueVisitor::VisitOMPLoopDirective(const OMPLoopDirective *D) {
usr/include/c++/7.4.0/bits/move.h
   72     constexpr _Tp&&
   83     constexpr _Tp&&
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_helper<typename remove_cv<_Tp>::type>::type
  326     : public __is_integral_helper<typename remove_cv<_Tp>::type>::type
  354     : public __is_floating_point_helper<typename remove_cv<_Tp>::type>::type
  381     : public __is_pointer_helper<typename remove_cv<_Tp>::type>::type
  567     : public __is_null_pointer_helper<typename remove_cv<_Tp>::type>::type
  581     : public __or_<is_lvalue_reference<_Tp>,
  582                    is_rvalue_reference<_Tp>>::type
  588     : public __or_<is_integral<_Tp>, is_floating_point<_Tp>>::type
  588     : public __or_<is_integral<_Tp>, is_floating_point<_Tp>>::type
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  602                           is_void<_Tp>>>::type
  611     : public __or_<is_arithmetic<_Tp>, is_enum<_Tp>, is_pointer<_Tp>,
  611     : public __or_<is_arithmetic<_Tp>, is_enum<_Tp>, is_pointer<_Tp>,
  611     : public __or_<is_arithmetic<_Tp>, is_enum<_Tp>, is_pointer<_Tp>,
  612                    is_member_pointer<_Tp>, is_null_pointer<_Tp>>::type
  612                    is_member_pointer<_Tp>, is_null_pointer<_Tp>>::type
  631     : public __is_member_pointer_helper<typename remove_cv<_Tp>::type>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  777     : public __and_<is_array<_Tp>, __not_<extent<_Tp>>>
  777     : public __and_<is_array<_Tp>, __not_<extent<_Tp>>>
  798       typedef decltype(__test<_Tp>(0)) type;
  811                remove_all_extents<_Tp>::type>::type
  825     : public __is_destructible_safe<_Tp>::type
 1447     : public __and_<is_destructible<_Tp>, integral_constant<bool,
 1554     { typedef _Tp     type; };
 1558     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1580     { typedef _Tp const     type; };
 1629     { typedef _Tp   type; };
 1659     { typedef _Tp&&   type; };
 1955     { typedef _Tp     type; };
 1999     { typedef typename remove_reference<_Tp>::type*     type; };
 2003     : public __add_pointer_helper<_Tp>