clang 20.0.0git
|
#include "clang/Sema/SemaSYCL.h"
Additional Inherited Members | |
Public Attributes inherited from clang::SemaBase | |
Sema & | SemaRef |
Definition at line 27 of file SemaSYCL.h.
SemaSYCL::SemaSYCL | ( | Sema & | S | ) |
Definition at line 25 of file SemaSYCL.cpp.
ExprResult SemaSYCL::ActOnUniqueStableNameExpr | ( | SourceLocation | OpLoc, |
SourceLocation | LParen, | ||
SourceLocation | RParen, | ||
ParsedType | ParsedTy | ||
) |
Definition at line 148 of file SemaSYCL.cpp.
References BuildUniqueStableNameExpr(), clang::ExprError(), clang::SemaBase::getASTContext(), clang::ASTContext::getTrivialTypeSourceInfo(), clang::Sema::GetTypeFromParser(), clang::QualType::isNull(), and clang::SemaBase::SemaRef.
ExprResult SemaSYCL::BuildUniqueStableNameExpr | ( | SourceLocation | OpLoc, |
SourceLocation | LParen, | ||
SourceLocation | RParen, | ||
TypeSourceInfo * | TSI | ||
) |
Definition at line 140 of file SemaSYCL.cpp.
References clang::SYCLUniqueStableNameExpr::Create(), and clang::SemaBase::getASTContext().
Referenced by ActOnUniqueStableNameExpr(), and clang::TreeTransform< Derived >::RebuildSYCLUniqueStableNameExpr().
void SemaSYCL::deepTypeCheckForDevice | ( | SourceLocation | UsedAt, |
llvm::DenseSet< QualType > | Visited, | ||
ValueDecl * | DeclToCheck | ||
) |
Definition at line 48 of file SemaSYCL.cpp.
References D, DiagIfDeviceCode(), clang::Type::getArrayElementTypeNoTypeQual(), clang::Type::getAsRecordDecl(), clang::SemaBase::getLangOpts(), clang::Decl::getLocation(), clang::Type::getPointeeType(), clang::Type::isAnyPointerType(), clang::Type::isArrayType(), clang::Type::isReferenceType(), isZeroSizedArray(), and Visited.
Sema::SemaDiagnosticBuilder SemaSYCL::DiagIfDeviceCode | ( | SourceLocation | Loc, |
unsigned | DiagID | ||
) |
Creates a SemaDiagnosticBuilder that emits the diagnostic if the current context is "used as device code".
Example usage:
Diagnose __float128 type usage only from SYCL device code if the current target doesn't support it if (!S.Context.getTargetInfo().hasFloat128Type() && S.getLangOpts().SYCLIsDevice) DiagIfDeviceCode(Loc, diag::err_type_unsupported) << "__float128";
Definition at line 27 of file SemaSYCL.cpp.
References clang::Sema::Emitted, clang::Sema::getCurLexicalContext(), clang::Sema::getEmissionStatus(), clang::SemaBase::getLangOpts(), Loc, and clang::SemaBase::SemaRef.
Referenced by deepTypeCheckForDevice().
void SemaSYCL::handleKernelAttr | ( | Decl * | D, |
const ParsedAttr & | AL | ||
) |
Definition at line 163 of file SemaSYCL.cpp.
References D, clang::SemaBase::Diag(), clang::getFunctionOrMethodNumParams(), clang::getFunctionOrMethodResultType(), clang::Decl::getLocation(), clang::TemplateParameterList::getParam(), clang::TemplateDecl::getTemplateParameters(), clang::Type::isVoidType(), and clang::TemplateParameterList::size().
Referenced by ProcessDeclAttribute().