Home
last modified time | relevance | path

Searched refs:IdentifyCUDATarget (Results 1 – 8 of 8) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaCUDA.cpp68 Sema::IdentifyCUDATarget(const ParsedAttributesView &Attrs) { in IdentifyCUDATarget() function in Sema
183 switch (IdentifyCUDATarget(FD)) { in IdentifyCUDATarget()
237 CUDAFunctionTarget CallerTarget = IdentifyCUDATarget(Caller); in IdentifyCUDAPreference()
238 CUDAFunctionTarget CalleeTarget = IdentifyCUDATarget(Callee); in IdentifyCUDAPreference()
458 IdentifyCUDATarget(SMOR.getMethod()); in inferCUDATargetForImplicitSpecialMember()
679 CUDAFunctionTarget InitFnTarget = IdentifyCUDATarget(InitFn); in checkAllowedCUDAInitializer()
699 CUDAFunctionTarget CallerTarget = IdentifyCUDATarget(Caller); in CUDARecordImplicitHostDeviceFuncUsedByDevice()
911 << IdentifyCUDATarget(Callee) << /*function*/ 0 << Callee in CheckCUDACall()
912 << IdentifyCUDATarget(Caller); in CheckCUDACall()
982 CUDAFunctionTarget NewTarget = IdentifyCUDATarget(NewFD); in checkCUDATargetOverload()
[all …]
H A DSemaTemplate.cpp9688 IdentifyCUDATarget(Specialization, in CheckFunctionTemplateSpecialization()
9690 IdentifyCUDATarget(FD, /* IgnoreImplicitHDAttr = */ true)) { in CheckFunctionTemplateSpecialization()
10862 IdentifyCUDATarget(Specialization, in ActOnExplicitInstantiation()
10864 IdentifyCUDATarget(D.getDeclSpec().getAttributes())) { in ActOnExplicitInstantiation()
H A DSemaType.cpp3594 state, T, SemaRef.IdentifyCUDATarget(D.getAttributes())); in GetDeclSpecTypeForDeclarator()
4115 S.IdentifyCUDATarget(D.getAttributes())) && in getCCForDeclaratorChunk()
5791 S.IdentifyCUDATarget(D.getAttributes())); in GetFullTypeForDeclarator()
H A DSemaOverload.cpp1500 Sema::CUDAFunctionTarget NewTarget = SemaRef.IdentifyCUDATarget(New), in IsOverloadOrOverrideImpl()
1501 OldTarget = SemaRef.IdentifyCUDATarget(Old); in IsOverloadOrOverrideImpl()
11729 Sema::CUDAFunctionTarget CallerTarget = S.IdentifyCUDATarget(Caller), in DiagnoseBadTarget()
11730 CalleeTarget = S.IdentifyCUDATarget(Callee); in DiagnoseBadTarget()
H A DSemaDeclAttr.cpp5158 S.IdentifyCUDATarget(dyn_cast<FunctionDecl>(D)))) in handleCallConvAttr()
5456 auto CudaTarget = FD ? IdentifyCUDATarget(FD) : CFT; in CheckCallingConvAttr()
H A DSemaExpr.cpp17306 CUDAFunctionTarget T = IdentifyCUDATarget(F); in BuildVAArgExpr()
19168 auto VarTarget = SemaRef.IdentifyCUDATarget(Var); in MarkVarDeclODRUsed()
19169 auto UserTarget = SemaRef.IdentifyCUDATarget(FD); in MarkVarDeclODRUsed()
H A DSemaDecl.cpp20545 Sema::CUDAFunctionTarget T = IdentifyCUDATarget(FD); in getEmissionStatus()
20570 IdentifyCUDATarget(Callee) == CFT_Global; in shouldIgnoreInHostDeviceCheck()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h13457 CUDAFunctionTarget IdentifyCUDATarget(const FunctionDecl *D,
13459 CUDAFunctionTarget IdentifyCUDATarget(const ParsedAttributesView &Attrs);
13468 CUDAVariableTarget IdentifyCUDATarget(const VarDecl *D);
13495 return IdentifyCUDATarget(dyn_cast<FunctionDecl>(CurContext)); in CurrentCUDATarget()