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

Derived Classes

tools/clang/include/clang/AST/StmtOpenMP.h
  357 class OMPParallelDirective : public OMPExecutableDirective {
  419 class OMPLoopDirective : public OMPExecutableDirective {
 1407 class OMPSectionsDirective : public OMPExecutableDirective {
 1475 class OMPSectionDirective : public OMPExecutableDirective {
 1537 class OMPSingleDirective : public OMPExecutableDirective {
 1592 class OMPMasterDirective : public OMPExecutableDirective {
 1639 class OMPCriticalDirective : public OMPExecutableDirective {
 1861 class OMPParallelSectionsDirective : public OMPExecutableDirective {
 1932 class OMPTaskDirective : public OMPExecutableDirective {
 2000 class OMPTaskyieldDirective : public OMPExecutableDirective {
 2044 class OMPBarrierDirective : public OMPExecutableDirective {
 2088 class OMPTaskwaitDirective : public OMPExecutableDirective {
 2132 class OMPTaskgroupDirective : public OMPExecutableDirective {
 2205 class OMPFlushDirective : public OMPExecutableDirective {
 2260 class OMPOrderedDirective : public OMPExecutableDirective {
 2315 class OMPAtomicDirective : public OMPExecutableDirective {
 2449 class OMPTargetDirective : public OMPExecutableDirective {
 2507 class OMPTargetDataDirective : public OMPExecutableDirective {
 2565 class OMPTargetEnterDataDirective : public OMPExecutableDirective {
 2624 class OMPTargetExitDataDirective : public OMPExecutableDirective {
 2682 class OMPTargetParallelDirective : public OMPExecutableDirective {
 2822 class OMPTeamsDirective : public OMPExecutableDirective {
 2879 class OMPCancellationPointDirective : public OMPExecutableDirective {
 2937 class OMPCancelDirective : public OMPExecutableDirective {
 3406 class OMPTargetUpdateDirective : public OMPExecutableDirective {
 4103 class OMPTargetTeamsDirective final : public OMPExecutableDirective {

Declarations

gen/tools/clang/include/clang/AST/StmtNodes.inc
  145 ABSTRACT_STMT(OMPEXECUTABLEDIRECTIVE(OMPExecutableDirective, Stmt))
tools/clang/lib/CodeGen/CGOpenMPRuntime.h
   41 class OMPExecutableDirective;

References

include/llvm/ADT/STLExtras.h
   75       typename std::add_pointer<typename std::add_const<T>::type>::type;
include/llvm/Support/Casting.h
   34   using SimpleType = From; // The real type this represents...
   37   static SimpleType &getSimplifiedValue(From &Val) { return Val; }
   41   using NonConstSimpleType = typename simplify_type<From>::SimpleType;
   47   static RetType getSimplifiedValue(const From& Val) {
   57   static inline bool doit(const From &Val) {
   58     return To::classof(&Val);
   76   static inline bool doit(const From &Val) {
   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);
  141 template <class X, class Y> LLVM_NODISCARD inline bool isa(const Y &Val) {
  142   return isa_impl_wrap<X, const Y,
  142   return isa_impl_wrap<X, const Y,
  143                        typename simplify_type<const Y>::SimpleType>::doit(Val);
  172   using ret_type = To *;       // Pointer arg 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
  236       std::is_same<X, typename simplify_type<X>::SimpleType>::value;
  236       std::is_same<X, typename simplify_type<X>::SimpleType>::value;
  256 inline typename cast_retty<X, Y>::ret_type cast(Y &Val) {
  263 inline typename cast_retty<X, Y *>::ret_type cast(Y *Val) {
  263 inline typename cast_retty<X, Y *>::ret_type cast(Y *Val) {
  263 inline typename cast_retty<X, Y *>::ret_type cast(Y *Val) {
  265   return cast_convert_val<X, Y*,
  265   return cast_convert_val<X, Y*,
  266                           typename simplify_type<Y*>::SimpleType>::doit(Val);
  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;
  366 LLVM_NODISCARD inline typename cast_retty<X, Y *>::ret_type
  368   return (Val && isa<X>(Val)) ? cast<X>(Val) : nullptr;
  368   return (Val && isa<X>(Val)) ? cast<X>(Val) : nullptr;
include/llvm/Support/PointerLikeTypeTraits.h
   56   static inline void *getAsVoidPointer(T *P) { return P; }
   57   static inline T *getFromVoidPointer(void *P) { return static_cast<T *>(P); }
   59   enum { NumLowBitsAvailable = detail::ConstantLog2<alignof(T)>::value };
   91   typedef PointerLikeTypeTraits<T *> NonConst;
   93   static inline const void *getAsVoidPointer(const T *P) {
   96   static inline const T *getFromVoidPointer(const void *P) {
include/llvm/Support/type_traits.h
   55 struct add_const_past_pointer { using type = const T; };
tools/clang/include/clang/AST/ASTNodeTraverser.h
  601   void VisitOMPExecutableDirective(const OMPExecutableDirective *Node) {
tools/clang/include/clang/AST/ASTTypeTraits.h
   65     return ASTNodeKind(KindToKindId<T>::Id);
  251   const T *get() const {
  252     return BaseConverter<T>::get(NodeKind, Storage.buffer);
  259   const T &getUnchecked() const {
  260     return BaseConverter<T>::getUnchecked(NodeKind, Storage.buffer);
  394     static const T *get(ASTNodeKind NodeKind, const char Storage[]) {
  395       if (ASTNodeKind::getFromNodeKind<T>().isBaseOf(NodeKind))
  399     static const T &getUnchecked(ASTNodeKind NodeKind, const char Storage[]) {
  401       return *cast<T>(static_cast<const BaseT *>(
  474     : public DynCastPtrConverter<T, Stmt> {};
tools/clang/include/clang/AST/RecursiveASTVisitor.h
  528   bool TraverseOMPExecutableDirective(OMPExecutableDirective *S);
 2697     OMPExecutableDirective *S) {
tools/clang/include/clang/AST/StmtOpenMP.h
  357 class OMPParallelDirective : public OMPExecutableDirective {
  419 class OMPLoopDirective : public OMPExecutableDirective {
 1407 class OMPSectionsDirective : public OMPExecutableDirective {
 1475 class OMPSectionDirective : public OMPExecutableDirective {
 1537 class OMPSingleDirective : public OMPExecutableDirective {
 1592 class OMPMasterDirective : public OMPExecutableDirective {
 1639 class OMPCriticalDirective : public OMPExecutableDirective {
 1861 class OMPParallelSectionsDirective : public OMPExecutableDirective {
 1932 class OMPTaskDirective : public OMPExecutableDirective {
 2000 class OMPTaskyieldDirective : public OMPExecutableDirective {
 2044 class OMPBarrierDirective : public OMPExecutableDirective {
 2088 class OMPTaskwaitDirective : public OMPExecutableDirective {
 2132 class OMPTaskgroupDirective : public OMPExecutableDirective {
 2205 class OMPFlushDirective : public OMPExecutableDirective {
 2260 class OMPOrderedDirective : public OMPExecutableDirective {
 2315 class OMPAtomicDirective : public OMPExecutableDirective {
 2449 class OMPTargetDirective : public OMPExecutableDirective {
 2507 class OMPTargetDataDirective : public OMPExecutableDirective {
 2565 class OMPTargetEnterDataDirective : public OMPExecutableDirective {
 2624 class OMPTargetExitDataDirective : public OMPExecutableDirective {
 2682 class OMPTargetParallelDirective : public OMPExecutableDirective {
 2822 class OMPTeamsDirective : public OMPExecutableDirective {
 2879 class OMPCancellationPointDirective : public OMPExecutableDirective {
 2937 class OMPCancelDirective : public OMPExecutableDirective {
 3406 class OMPTargetUpdateDirective : public OMPExecutableDirective {
 4103 class OMPTargetTeamsDirective final : public OMPExecutableDirective {
tools/clang/include/clang/AST/TextNodeDumper.h
  311   void VisitOMPExecutableDirective(const OMPExecutableDirective *D);
tools/clang/include/clang/ASTMatchers/ASTMatchers.h
  110   const T *getNodeAs(StringRef ID) const {
  111     return MyBoundNodes.getNodeAs<T>(ID);
 6648 extern const internal::VariadicDynCastAllOfMatcher<Stmt, OMPExecutableDirective>
tools/clang/include/clang/ASTMatchers/ASTMatchersInternal.h
  160   const T *getNodeAs(StringRef ID) const {
  165     return It->second.get<T>();
  302   virtual bool matches(const T &Node,
  309     return matches(DynNode.getUnchecked<T>(), Finder, Builder);
  345   DynTypedMatcher(MatcherInterface<T> *Implementation)
  346       : SupportedKind(ast_type_traits::ASTNodeKind::getFromNodeKind<T>()),
  436     return canConvertTo(ast_type_traits::ASTNodeKind::getFromNodeKind<T>());
  445   template <typename T> Matcher<T> convertTo() const {
  447     return unconditionalConvertTo<T>();
  499   explicit Matcher(MatcherInterface<T> *Implementation)
  520             std::is_same<T, QualType>::value &&
  528   Matcher<To> dynCastTo() const {
  529     static_assert(std::is_base_of<To, T>::value, "Invalid dynCast call.");
  529     static_assert(std::is_base_of<To, T>::value, "Invalid dynCast call.");
  534   bool matches(const T &Node,
  581     return Other.dynCastTo(ast_type_traits::ASTNodeKind::getFromNodeKind<T>());
  596 inline Matcher<T> makeMatcher(MatcherInterface<T> *Implementation) {
  596 inline Matcher<T> makeMatcher(MatcherInterface<T> *Implementation) {
 1243   operator Matcher<T>() const {
 1245                ast_type_traits::ASTNodeKind::getFromNodeKind<T>())
 1246         .template unconditionalConvertTo<T>();
 1255 class BindableMatcher : public Matcher<T> {
 1257   explicit BindableMatcher(const Matcher<T> &M) : Matcher<T>(M) {}
 1258   explicit BindableMatcher(MatcherInterface<T> *Implementation)
 1265   Matcher<T> bind(StringRef ID) const {
 1335   template <typename T> operator Matcher<T>() const {
 1337                Op, ast_type_traits::ASTNodeKind::getFromNodeKind<T>(),
 1338                getMatchers<T>(std::index_sequence_for<Ps...>()))
 1339         .template unconditionalConvertTo<T>();
 1370 inline Matcher<T> DynTypedMatcher::unconditionalConvertTo() const {
 1376 BindableMatcher<T> makeAllOfComposite(
 1377     ArrayRef<const Matcher<T> *> InnerMatchers) {
 1388   using PI = llvm::pointee_iterator<const Matcher<T> *const *>;
 1395           ast_type_traits::ASTNodeKind::getFromNodeKind<T>(),
 1397           .template unconditionalConvertTo<T>());
 1407 BindableMatcher<T> makeDynCastAllOfComposite(
 1408     ArrayRef<const Matcher<InnerT> *> InnerMatchers) {
 1410       makeAllOfComposite(InnerMatchers).template dynCastTo<T>());
 1557     : public VariadicFunction<BindableMatcher<SourceT>, Matcher<TargetT>,
 1557     : public VariadicFunction<BindableMatcher<SourceT>, Matcher<TargetT>,
 1558                               makeDynCastAllOfComposite<SourceT, TargetT>> {
 1558                               makeDynCastAllOfComposite<SourceT, TargetT>> {
tools/clang/include/clang/ASTMatchers/Dynamic/VariantValue.h
  199   ast_matchers::internal::Matcher<T> getTypedMatcher() const {
  202         ->template convertTo<T>();
  227       : MatcherOps(ast_type_traits::ASTNodeKind::getFromNodeKind<T>()) {}
  228   typedef ast_matchers::internal::Matcher<T> MatcherT;
  232     return DynTypedMatcher(Matcher.convertTo<T>());
tools/clang/include/clang/Sema/Ownership.h
  217     template <typename T> T *getAs() { return static_cast<T*>(get()); }
tools/clang/lib/AST/StmtPrinter.cpp
  132     void PrintOMPExecutableDirective(OMPExecutableDirective *S,
  642 void StmtPrinter::PrintOMPExecutableDirective(OMPExecutableDirective *S,
tools/clang/lib/AST/StmtProfile.cpp
  775 StmtProfiler::VisitOMPExecutableDirective(const OMPExecutableDirective *S) {
tools/clang/lib/AST/TextNodeDumper.cpp
 1443     const OMPExecutableDirective *D) {
tools/clang/lib/ASTMatchers/ASTMatchersInternal.cpp
  848 const internal::VariadicDynCastAllOfMatcher<Stmt, OMPExecutableDirective>
tools/clang/lib/ASTMatchers/Dynamic/Marshallers.h
   75     return Value.isMatcher() && Value.getMatcher().hasTypedMatcher<T>();
   78   static ast_matchers::internal::Matcher<T> get(const VariantValue &Value) {
   79     return Value.getMatcher().getTypedMatcher<T>();
   83     return ArgKind(ast_type_traits::ASTNodeKind::getFromNodeKind<T>());
  361     RetTypes.push_back(ast_type_traits::ASTNodeKind::getFromNodeKind<T>());
  466       ast_matchers::internal::VariadicDynCastAllOfMatcher<BaseT, DerivedT> Func,
  469         DerivedKind(ast_type_traits::ASTNodeKind::getFromNodeKind<DerivedT>()) {
  778     ast_matchers::internal::VariadicDynCastAllOfMatcher<BaseT, DerivedT>
tools/clang/lib/Analysis/CFG.cpp
  617   CFGBlock *VisitOMPExecutableDirective(OMPExecutableDirective *D,
 2131     if (auto *D = dyn_cast<OMPExecutableDirective>(S))
 2131     if (auto *D = dyn_cast<OMPExecutableDirective>(S))
 4845 CFGBlock *CFGBuilder::VisitOMPExecutableDirective(OMPExecutableDirective *D,
 4858       OMPExecutableDirective::used_clauses_children(D->clauses()));
tools/clang/lib/Analysis/UninitializedValues.cpp
  353   void VisitOMPExecutableDirective(OMPExecutableDirective *ED);
  459 void ClassifyRefs::VisitOMPExecutableDirective(OMPExecutableDirective *ED) {
  460   for (Stmt *S : OMPExecutableDirective::used_clauses_children(ED->clauses()))
  541   void VisitOMPExecutableDirective(OMPExecutableDirective *ED);
  718     OMPExecutableDirective *ED) {
  719   for (Stmt *S : OMPExecutableDirective::used_clauses_children(ED->clauses())) {
tools/clang/lib/CodeGen/Address.h
  108 template <class U> inline U cast(CodeGen::Address addr) {
tools/clang/lib/CodeGen/CGOpenMPRuntime.cpp
 1440     CodeGenModule &CGM, const OMPExecutableDirective &D, const CapturedStmt *CS,
 1470     const OMPExecutableDirective &D, const VarDecl *ThreadIDVar,
 1478     const OMPExecutableDirective &D, const VarDecl *ThreadIDVar,
 1486     const OMPExecutableDirective &D, const VarDecl *ThreadIDVar,
 4748                              const OMPExecutableDirective &D,
 4879                     const OMPExecutableDirective &D,
 4963                               const OMPExecutableDirective &D,
 5182                                    const OMPExecutableDirective &D,
 6462     const OMPExecutableDirective &D, StringRef ParentName,
 6472     const OMPExecutableDirective &D, StringRef ParentName,
 6603                                const OMPExecutableDirective &D) {
 6618     if (const auto *NestedDir =
 6619             dyn_cast_or_null<OMPExecutableDirective>(ChildStmt)) {
 6722   if (const auto *Dir = dyn_cast_or_null<OMPExecutableDirective>(Child)) {
 6722   if (const auto *Dir = dyn_cast_or_null<OMPExecutableDirective>(Child)) {
 6820                                  const OMPExecutableDirective &D) {
 6837     if (const auto *Dir = dyn_cast_or_null<OMPExecutableDirective>(Child)) {
 6837     if (const auto *Dir = dyn_cast_or_null<OMPExecutableDirective>(Child)) {
 6867         Dir = dyn_cast_or_null<OMPExecutableDirective>(Child);
 6894     if (const auto *Dir = dyn_cast_or_null<OMPExecutableDirective>(Child)) {
 6894     if (const auto *Dir = dyn_cast_or_null<OMPExecutableDirective>(Child)) {
 7151   llvm::PointerUnion<const OMPExecutableDirective *,
 7859   MappableExprsHandler(const OMPExecutableDirective &Dir, CodeGenFunction &CGF)
 7939     const auto *CurExecDir = CurDir.get<const OMPExecutableDirective *>();
 7939     const auto *CurExecDir = CurDir.get<const OMPExecutableDirective *>();
 8287     const auto *CurExecDir = CurDir.get<const OMPExecutableDirective *>();
 8287     const auto *CurExecDir = CurDir.get<const OMPExecutableDirective *>();
 8438     const auto *CurExecDir = CurDir.get<const OMPExecutableDirective *>();
 8438     const auto *CurExecDir = CurDir.get<const OMPExecutableDirective *>();
 8704 static const OMPExecutableDirective *
 8705 getNestedDistributeDirective(ASTContext &Ctx, const OMPExecutableDirective &D) {
 8712   if (const auto *NestedDir =
 8713           dyn_cast_or_null<OMPExecutableDirective>(ChildStmt)) {
 8725         if (const auto *NND =
 8726                 dyn_cast_or_null<OMPExecutableDirective>(ChildStmt)) {
 9135     CodeGenFunction &CGF, const OMPExecutableDirective &D,
 9141   const OMPExecutableDirective *TD = &D;
 9160     CodeGenFunction &CGF, const OMPExecutableDirective &D,
 9444       isa<OMPExecutableDirective>(S) &&
 9446           cast<OMPExecutableDirective>(S)->getDirectiveKind());
 9449     const auto &E = *cast<OMPExecutableDirective>(S);
 9449     const auto &E = *cast<OMPExecutableDirective>(S);
 9561   if (const auto *E = dyn_cast<OMPExecutableDirective>(S)) {
 9561   if (const auto *E = dyn_cast<OMPExecutableDirective>(S)) {
 9777     CodeGenFunction &CGF, const OMPExecutableDirective &D) const {
 9896                                     const OMPExecutableDirective &D,
 9948     CodeGenFunction &CGF, const OMPExecutableDirective &D, const Expr *IfCond,
10075     CodeGenFunction &CGF, const OMPExecutableDirective &D, const Expr *IfCond,
11147     const OMPExecutableDirective &D, const VarDecl *ThreadIDVar,
11153     const OMPExecutableDirective &D, const VarDecl *ThreadIDVar,
11159     const OMPExecutableDirective &D, const VarDecl *ThreadIDVar,
11298                                        const OMPExecutableDirective &D,
11360     const OMPExecutableDirective &D, StringRef ParentName,
11367     CodeGenFunction &CGF, const OMPExecutableDirective &D,
11389                                         const OMPExecutableDirective &D,
11404     CodeGenFunction &CGF, const OMPExecutableDirective &D, const Expr *IfCond,
11410     CodeGenFunction &CGF, const OMPExecutableDirective &D, const Expr *IfCond,
tools/clang/lib/CodeGen/CGOpenMPRuntime.h
  237   virtual void emitTargetOutlinedFunctionHelper(const OMPExecutableDirective &D,
  797                             const OMPExecutableDirective &D,
  810       CodeGenFunction &CGF, const OMPExecutableDirective &D,
  850       const OMPExecutableDirective &D, const VarDecl *ThreadIDVar,
  862       const OMPExecutableDirective &D, const VarDecl *ThreadIDVar,
  881       const OMPExecutableDirective &D, const VarDecl *ThreadIDVar,
 1229                             const OMPExecutableDirective &D,
 1430   virtual void emitTargetOutlinedFunction(const OMPExecutableDirective &D,
 1450   emitTargetCall(CodeGenFunction &CGF, const OMPExecutableDirective &D,
 1500                              const OMPExecutableDirective &D,
 1561                                    const OMPExecutableDirective &D,
 1574                                             const OMPExecutableDirective &D,
 1650                                      const OMPExecutableDirective &D) const;
 1683   emitParallelOutlinedFunction(const OMPExecutableDirective &D,
 1697   emitTeamsOutlinedFunction(const OMPExecutableDirective &D,
 1718       const OMPExecutableDirective &D, const VarDecl *ThreadIDVar,
 1960                     const OMPExecutableDirective &D,
 2120   void emitTargetOutlinedFunction(const OMPExecutableDirective &D,
 2138   emitTargetCall(CodeGenFunction &CGF, const OMPExecutableDirective &D,
 2169   void emitTeamsCall(CodeGenFunction &CGF, const OMPExecutableDirective &D,
 2190                            const OMPExecutableDirective &D, const Expr *IfCond,
 2202                                     const OMPExecutableDirective &D,
tools/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp
  452   void VisitOMPExecutableDirective(const OMPExecutableDirective *D) {
  724                                    const OMPExecutableDirective &D) {
  730   if (const auto *NestedDir =
  731           dyn_cast_or_null<OMPExecutableDirective>(ChildStmt)) {
  743         if (const auto *NND =
  744                 dyn_cast_or_null<OMPExecutableDirective>(ChildStmt)) {
  819                                       const OMPExecutableDirective &D) {
  893 static bool hasStaticScheduling(const OMPExecutableDirective &D) {
  907                                           const OMPExecutableDirective &D) {
  914   if (const auto *NestedDir =
  915           dyn_cast_or_null<OMPExecutableDirective>(ChildStmt)) {
  931         if (const auto *NND =
  932                 dyn_cast_or_null<OMPExecutableDirective>(ChildStmt)) {
  944         if (const auto *NND =
  945                 dyn_cast_or_null<OMPExecutableDirective>(ChildStmt)) {
  957             if (const auto *NND =
  958                     dyn_cast_or_null<OMPExecutableDirective>(ChildStmt)) {
  981         if (const auto *NND =
  982                 dyn_cast_or_null<OMPExecutableDirective>(ChildStmt)) {
 1062                                        const OMPExecutableDirective &D) {
 1138 void CGOpenMPRuntimeNVPTX::emitNonSPMDKernel(const OMPExecutableDirective &D,
 1270 void CGOpenMPRuntimeNVPTX::emitSPMDKernel(const OMPExecutableDirective &D,
 1286     const OMPExecutableDirective &D;
 1291                          const OMPExecutableDirective &D)
 1323     const OMPExecutableDirective &D) {
 1857     const OMPExecutableDirective &D, StringRef ParentName,
 1952     const OMPExecutableDirective &D, const VarDecl *ThreadIDVar,
 1998 getDistributeLastprivateVars(ASTContext &Ctx, const OMPExecutableDirective &D,
 2002   const OMPExecutableDirective *Dir = &D;
 2008       Dir = dyn_cast_or_null<OMPExecutableDirective>(S);
 2023 getTeamsReductionVars(ASTContext &Ctx, const OMPExecutableDirective &D,
 2034     const OMPExecutableDirective &D, const VarDecl *ThreadIDVar,
 2456                                          const OMPExecutableDirective &D,
 4539     llvm::Function *OutlinedParallelFn, const OMPExecutableDirective &D) {
 4846     CodeGenFunction &CGF, const OMPExecutableDirective &D) const {
tools/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.h
   86                            const OMPExecutableDirective &D);
  110   void emitNonSPMDKernel(const OMPExecutableDirective &D, StringRef ParentName,
  126   void emitSPMDKernel(const OMPExecutableDirective &D, StringRef ParentName,
  140   void emitTargetOutlinedFunction(const OMPExecutableDirective &D,
  244   emitParallelOutlinedFunction(const OMPExecutableDirective &D,
  259   emitTeamsOutlinedFunction(const OMPExecutableDirective &D,
  272   void emitTeamsCall(CodeGenFunction &CGF, const OMPExecutableDirective &D,
  394       CodeGenFunction &CGF, const OMPExecutableDirective &D) const override;
  436       llvm::Function *OutlinedParallelFn, const OMPExecutableDirective &D);
tools/clang/lib/CodeGen/CGStmt.cpp
   76     if (const auto *D = dyn_cast<OMPExecutableDirective>(S)) {
   76     if (const auto *D = dyn_cast<OMPExecutableDirective>(S)) {
tools/clang/lib/CodeGen/CGStmtOpenMP.cpp
   28   void emitPreInitStmt(CodeGenFunction &CGF, const OMPExecutableDirective &S) {
   56       CodeGenFunction &CGF, const OMPExecutableDirective &S,
   90   bool EmitPreInitStmt(const OMPExecutableDirective &S) {
   98   OMPParallelScope(CodeGenFunction &CGF, const OMPExecutableDirective &S)
  106   bool EmitPreInitStmt(const OMPExecutableDirective &S) {
  113   OMPTeamsScope(CodeGenFunction &CGF, const OMPExecutableDirective &S)
  188   OMPSimdLexicalScope(CodeGenFunction &CGF, const OMPExecutableDirective &S)
  246                                          const OMPExecutableDirective &S,
  737 bool CodeGenFunction::EmitOMPFirstprivateClause(const OMPExecutableDirective &D,
  875     const OMPExecutableDirective &D,
  900 bool CodeGenFunction::EmitOMPCopyinClause(const OMPExecutableDirective &D) {
  970     const OMPExecutableDirective &D, OMPPrivateScope &PrivateScope) {
 1029     const OMPExecutableDirective &D, bool NoFinals,
 1102     const OMPExecutableDirective &D,
 1206     const OMPExecutableDirective &D, const OpenMPDirectiveKind ReductionKind) {
 1235     CodeGenFunction &CGF, const OMPExecutableDirective &D,
 1264                                 const OMPExecutableDirective &,
 1270     CodeGenFunction &CGF, const OMPExecutableDirective &S,
 1312                                      const OMPExecutableDirective &,
 1518                               const OMPExecutableDirective &D) {
 1676                                      const OMPExecutableDirective &D,
 2142                                      const OMPExecutableDirective &S) {
 2185                                         const OMPExecutableDirective &S,
 2202     CodeGenFunction &CGF, const OMPExecutableDirective &S,
 2536 emitForLoopBounds(CodeGenFunction &CGF, const OMPExecutableDirective &S) {
 2550 emitDispatchForLoopBounds(CodeGenFunction &CGF, const OMPExecutableDirective &S,
 2607 void CodeGenFunction::EmitSections(const OMPExecutableDirective &S) {
 2875     const OMPExecutableDirective &S, const OpenMPDirectiveKind CapturedRegion,
 3163     const OMPExecutableDirective &S, const RegionCodeGenTy &BodyGen,
 4115                                          const OMPExecutableDirective &S,
 4228                                         const OMPExecutableDirective &S,
 5173     const OMPExecutableDirective &D) {
tools/clang/lib/CodeGen/CodeGenFunction.h
  278       CodeGenFunction &, const OMPExecutableDirective &S)>
  283       CodeGenFunction &, const OMPExecutableDirective &S, Address LB,
 2937   void EmitSimpleOMPExecutableDirective(const OMPExecutableDirective &D);
 3025   bool EmitOMPFirstprivateClause(const OMPExecutableDirective &D,
 3027   void EmitOMPPrivateClause(const OMPExecutableDirective &D,
 3043   bool EmitOMPCopyinClause(const OMPExecutableDirective &D);
 3055   bool EmitOMPLastprivateClauseInit(const OMPExecutableDirective &D,
 3064   void EmitOMPLastprivateClauseFinal(const OMPExecutableDirective &D,
 3083   void EmitOMPReductionClauseInit(const OMPExecutableDirective &D,
 3090   void EmitOMPReductionClauseFinal(const OMPExecutableDirective &D,
 3104   void EmitOMPTaskBasedDirective(const OMPExecutableDirective &S,
 3119   void EmitOMPTargetTaskBasedDirective(const OMPExecutableDirective &S,
 3327   void EmitSections(const OMPExecutableDirective &S);
tools/clang/lib/Sema/SemaOpenMP.cpp
 2155   if (const auto *D = dyn_cast_or_null<OMPExecutableDirective>(CurDirective)) {
 2155   if (const auto *D = dyn_cast_or_null<OMPExecutableDirective>(CurDirective)) {
 2777   void VisitSubCaptures(OMPExecutableDirective *S) {
 3025   void VisitOMPExecutableDirective(OMPExecutableDirective *S) {
 4690   if (!(Res.getAs<OMPExecutableDirective>()->isStandaloneDirective())) {
 4691     Res.getAs<OMPExecutableDirective>()
 7586       OMPExecutableDirective::getClausesOfKind<OMPCollapseClause>(Clauses);
 7594       OMPExecutableDirective::getClausesOfKind<OMPOrderedClause>(Clauses);
 8885         const auto *OED = dyn_cast<OMPExecutableDirective>(*I);
 8885         const auto *OED = dyn_cast<OMPExecutableDirective>(*I);
 8897       const auto *OED = dyn_cast<OMPExecutableDirective>(S);
 8897       const auto *OED = dyn_cast<OMPExecutableDirective>(S);
 8905           << isa<OMPExecutableDirective>(S);
tools/clang/lib/Sema/TreeTransform.h
  688   StmtResult TransformOMPExecutableDirective(OMPExecutableDirective *S);
 7872     OMPExecutableDirective *D) {
tools/clang/lib/Serialization/ASTReaderStmt.cpp
 2014 void ASTStmtReader::VisitOMPExecutableDirective(OMPExecutableDirective *E) {
tools/clang/lib/Serialization/ASTWriterStmt.cpp
 1958 void ASTStmtWriter::VisitOMPExecutableDirective(OMPExecutableDirective *E) {
tools/clang/tools/extra/clang-tidy/openmp/ExceptionEscapeCheck.cpp
   62   const auto *Directive =
   63       Result.Nodes.getNodeAs<OMPExecutableDirective>("directive");
tools/clang/tools/extra/clang-tidy/openmp/UseDefaultNoneCheck.cpp
   41   const auto *Directive =
   42       Result.Nodes.getNodeAs<OMPExecutableDirective>("directive");
tools/clang/tools/libclang/CIndex.cpp
 2015   void VisitOMPExecutableDirective(const OMPExecutableDirective *D);
 2748   const OMPExecutableDirective *D) {
tools/clang/unittests/AST/OMPStructuredBlockTest.cpp
   30     OMPExecutableDirective, OMPTargetDirective>
  351     OMPExecutableDirective, OMPSectionsDirective>
  355     OMPExecutableDirective, OMPSectionDirective>
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; };
 1983     { typedef _Up     type; };
 1999     { typedef typename remove_reference<_Tp>::type*     type; };
 2003     : public __add_pointer_helper<_Tp>