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

Derived Classes

tools/clang/lib/CodeGen/CGOpenMPRuntime.cpp
   98 class CGOpenMPOutlinedRegionInfo final : public CGOpenMPRegionInfo {
  131 class CGOpenMPTaskOutlinedRegionInfo final : public CGOpenMPRegionInfo {
  221 class CGOpenMPInlinedRegionInfo : public CGOpenMPRegionInfo {
  307 class CGOpenMPTargetRegionInfo final : public CGOpenMPRegionInfo {

References

include/llvm/Support/Casting.h
   58     return To::classof(&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,
  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
  256 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*,
  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;
tools/clang/lib/CodeGen/Address.h
  108 template <class U> inline U cast(CodeGen::Address addr) {
tools/clang/lib/CodeGen/CGOpenMPRuntime.cpp
   98 class CGOpenMPOutlinedRegionInfo final : public CGOpenMPRegionInfo {
  118     return CGOpenMPRegionInfo::classof(Info) &&
  119            cast<CGOpenMPRegionInfo>(Info)->getRegionKind() ==
  131 class CGOpenMPTaskOutlinedRegionInfo final : public CGOpenMPRegionInfo {
  206     return CGOpenMPRegionInfo::classof(Info) &&
  207            cast<CGOpenMPRegionInfo>(Info)->getRegionKind() ==
  221 class CGOpenMPInlinedRegionInfo : public CGOpenMPRegionInfo {
  228         OuterRegionInfo(dyn_cast_or_null<CGOpenMPRegionInfo>(OldCSI)) {}
  290     return CGOpenMPRegionInfo::classof(Info) &&
  291            cast<CGOpenMPRegionInfo>(Info)->getRegionKind() == InlinedRegion;
  299   CGOpenMPRegionInfo *OuterRegionInfo;
  307 class CGOpenMPTargetRegionInfo final : public CGOpenMPRegionInfo {
  323     return CGOpenMPRegionInfo::classof(Info) &&
  324            cast<CGOpenMPRegionInfo>(Info)->getRegionKind() == TargetRegion;
 1700   if (auto *OMPRegionInfo =
 1701           dyn_cast_or_null<CGOpenMPRegionInfo>(CGF.CapturedStmtInfo)) {
 3118   if (auto *OMPRegionInfo =
 3119           dyn_cast_or_null<CGOpenMPRegionInfo>(CGF.CapturedStmtInfo))
 3252   if (auto *Region = dyn_cast_or_null<CGOpenMPRegionInfo>(CGF.CapturedStmtInfo))
 3252   if (auto *Region = dyn_cast_or_null<CGOpenMPRegionInfo>(CGF.CapturedStmtInfo))
 3488   if (auto *OMPRegionInfo =
 3489           dyn_cast_or_null<CGOpenMPRegionInfo>(CGF.CapturedStmtInfo)) {
 5321     if (auto *Region =
 5322             dyn_cast_or_null<CGOpenMPRegionInfo>(CGF.CapturedStmtInfo))
 6345   if (auto *Region = dyn_cast_or_null<CGOpenMPRegionInfo>(CGF.CapturedStmtInfo))
 6345   if (auto *Region = dyn_cast_or_null<CGOpenMPRegionInfo>(CGF.CapturedStmtInfo))
 6391   if (auto *OMPRegionInfo =
 6392           dyn_cast_or_null<CGOpenMPRegionInfo>(CGF.CapturedStmtInfo)) {
 6426   if (auto *OMPRegionInfo =
 6427           dyn_cast_or_null<CGOpenMPRegionInfo>(CGF.CapturedStmtInfo)) {