2014-09-03 23:27:03 +08:00
|
|
|
//===--- SemaCUDA.cpp - Semantic Analysis for CUDA constructs -------------===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2014-09-03 23:27:03 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
/// \file
|
2018-05-09 09:00:01 +08:00
|
|
|
/// This file implements semantic analysis for CUDA constructs.
|
2014-09-03 23:27:03 +08:00
|
|
|
///
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "clang/AST/ASTContext.h"
|
|
|
|
#include "clang/AST/Decl.h"
|
2016-02-03 06:29:48 +08:00
|
|
|
#include "clang/AST/ExprCXX.h"
|
2019-02-01 05:34:03 +08:00
|
|
|
#include "clang/Basic/Cuda.h"
|
2020-03-12 11:43:59 +08:00
|
|
|
#include "clang/Basic/TargetInfo.h"
|
2014-12-04 05:53:36 +08:00
|
|
|
#include "clang/Lex/Preprocessor.h"
|
2016-03-31 07:30:21 +08:00
|
|
|
#include "clang/Sema/Lookup.h"
|
2020-04-17 11:51:40 +08:00
|
|
|
#include "clang/Sema/ScopeInfo.h"
|
2016-03-31 07:30:21 +08:00
|
|
|
#include "clang/Sema/Sema.h"
|
2014-09-03 23:27:03 +08:00
|
|
|
#include "clang/Sema/SemaDiagnostic.h"
|
2016-10-14 02:45:08 +08:00
|
|
|
#include "clang/Sema/SemaInternal.h"
|
2016-03-31 07:30:21 +08:00
|
|
|
#include "clang/Sema/Template.h"
|
2014-09-30 04:38:29 +08:00
|
|
|
#include "llvm/ADT/Optional.h"
|
|
|
|
#include "llvm/ADT/SmallVector.h"
|
2014-09-03 23:27:03 +08:00
|
|
|
using namespace clang;
|
|
|
|
|
2016-10-09 06:15:58 +08:00
|
|
|
void Sema::PushForceCUDAHostDevice() {
|
|
|
|
assert(getLangOpts().CUDA && "Should only be called during CUDA compilation");
|
|
|
|
ForceCUDAHostDeviceDepth++;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Sema::PopForceCUDAHostDevice() {
|
|
|
|
assert(getLangOpts().CUDA && "Should only be called during CUDA compilation");
|
|
|
|
if (ForceCUDAHostDeviceDepth == 0)
|
|
|
|
return false;
|
|
|
|
ForceCUDAHostDeviceDepth--;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-09-03 23:27:03 +08:00
|
|
|
ExprResult Sema::ActOnCUDAExecConfigExpr(Scope *S, SourceLocation LLLLoc,
|
|
|
|
MultiExprArg ExecConfig,
|
|
|
|
SourceLocation GGGLoc) {
|
|
|
|
FunctionDecl *ConfigDecl = Context.getcudaConfigureCallDecl();
|
|
|
|
if (!ConfigDecl)
|
2019-02-01 05:34:03 +08:00
|
|
|
return ExprError(Diag(LLLLoc, diag::err_undeclared_var_use)
|
|
|
|
<< getCudaConfigureFuncName());
|
2014-09-03 23:27:03 +08:00
|
|
|
QualType ConfigQTy = ConfigDecl->getType();
|
|
|
|
|
|
|
|
DeclRefExpr *ConfigDR = new (Context)
|
2018-12-21 22:10:18 +08:00
|
|
|
DeclRefExpr(Context, ConfigDecl, false, ConfigQTy, VK_LValue, LLLLoc);
|
2014-09-03 23:27:03 +08:00
|
|
|
MarkFunctionReferenced(LLLLoc, ConfigDecl);
|
|
|
|
|
2019-05-08 09:36:36 +08:00
|
|
|
return BuildCallExpr(S, ConfigDR, LLLLoc, ExecConfig, GGGLoc, nullptr,
|
2014-09-03 23:27:03 +08:00
|
|
|
/*IsExecConfig=*/true);
|
|
|
|
}
|
|
|
|
|
2018-07-13 05:09:05 +08:00
|
|
|
Sema::CUDAFunctionTarget
|
|
|
|
Sema::IdentifyCUDATarget(const ParsedAttributesView &Attrs) {
|
2016-12-08 03:27:16 +08:00
|
|
|
bool HasHostAttr = false;
|
|
|
|
bool HasDeviceAttr = false;
|
|
|
|
bool HasGlobalAttr = false;
|
|
|
|
bool HasInvalidTargetAttr = false;
|
2018-07-13 23:07:47 +08:00
|
|
|
for (const ParsedAttr &AL : Attrs) {
|
2018-07-13 05:09:05 +08:00
|
|
|
switch (AL.getKind()) {
|
2018-07-13 23:07:47 +08:00
|
|
|
case ParsedAttr::AT_CUDAGlobal:
|
2016-12-08 03:27:16 +08:00
|
|
|
HasGlobalAttr = true;
|
|
|
|
break;
|
2018-07-13 23:07:47 +08:00
|
|
|
case ParsedAttr::AT_CUDAHost:
|
2016-12-08 03:27:16 +08:00
|
|
|
HasHostAttr = true;
|
|
|
|
break;
|
2018-07-13 23:07:47 +08:00
|
|
|
case ParsedAttr::AT_CUDADevice:
|
2016-12-08 03:27:16 +08:00
|
|
|
HasDeviceAttr = true;
|
|
|
|
break;
|
2018-07-13 23:07:47 +08:00
|
|
|
case ParsedAttr::AT_CUDAInvalidTarget:
|
2016-12-08 03:27:16 +08:00
|
|
|
HasInvalidTargetAttr = true;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2018-07-13 05:09:05 +08:00
|
|
|
|
2016-12-08 03:27:16 +08:00
|
|
|
if (HasInvalidTargetAttr)
|
|
|
|
return CFT_InvalidTarget;
|
|
|
|
|
|
|
|
if (HasGlobalAttr)
|
|
|
|
return CFT_Global;
|
|
|
|
|
|
|
|
if (HasHostAttr && HasDeviceAttr)
|
|
|
|
return CFT_HostDevice;
|
|
|
|
|
|
|
|
if (HasDeviceAttr)
|
|
|
|
return CFT_Device;
|
|
|
|
|
|
|
|
return CFT_Host;
|
|
|
|
}
|
|
|
|
|
2016-12-09 03:38:13 +08:00
|
|
|
template <typename A>
|
|
|
|
static bool hasAttr(const FunctionDecl *D, bool IgnoreImplicitAttr) {
|
|
|
|
return D->hasAttrs() && llvm::any_of(D->getAttrs(), [&](Attr *Attribute) {
|
|
|
|
return isa<A>(Attribute) &&
|
|
|
|
!(IgnoreImplicitAttr && Attribute->isImplicit());
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2014-09-03 23:27:03 +08:00
|
|
|
/// IdentifyCUDATarget - Determine the CUDA compilation target for this function
|
2016-12-09 03:38:13 +08:00
|
|
|
Sema::CUDAFunctionTarget Sema::IdentifyCUDATarget(const FunctionDecl *D,
|
|
|
|
bool IgnoreImplicitHDAttr) {
|
2016-10-14 02:45:08 +08:00
|
|
|
// Code that lives outside a function is run on the host.
|
|
|
|
if (D == nullptr)
|
|
|
|
return CFT_Host;
|
|
|
|
|
2014-09-30 04:38:29 +08:00
|
|
|
if (D->hasAttr<CUDAInvalidTargetAttr>())
|
|
|
|
return CFT_InvalidTarget;
|
2014-09-03 23:27:03 +08:00
|
|
|
|
|
|
|
if (D->hasAttr<CUDAGlobalAttr>())
|
|
|
|
return CFT_Global;
|
|
|
|
|
2016-12-09 03:38:13 +08:00
|
|
|
if (hasAttr<CUDADeviceAttr>(D, IgnoreImplicitHDAttr)) {
|
|
|
|
if (hasAttr<CUDAHostAttr>(D, IgnoreImplicitHDAttr))
|
2014-09-03 23:27:03 +08:00
|
|
|
return CFT_HostDevice;
|
|
|
|
return CFT_Device;
|
2016-12-09 03:38:13 +08:00
|
|
|
} else if (hasAttr<CUDAHostAttr>(D, IgnoreImplicitHDAttr)) {
|
2014-10-01 01:38:34 +08:00
|
|
|
return CFT_Host;
|
2016-12-09 03:38:13 +08:00
|
|
|
} else if (D->isImplicit() && !IgnoreImplicitHDAttr) {
|
2014-10-01 01:38:34 +08:00
|
|
|
// Some implicit declarations (like intrinsic functions) are not marked.
|
|
|
|
// Set the most lenient target on them for maximal flexibility.
|
|
|
|
return CFT_HostDevice;
|
2014-09-03 23:27:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return CFT_Host;
|
|
|
|
}
|
|
|
|
|
2015-09-23 01:22:59 +08:00
|
|
|
// * CUDA Call preference table
|
|
|
|
//
|
|
|
|
// F - from,
|
|
|
|
// T - to
|
|
|
|
// Ph - preference in host mode
|
|
|
|
// Pd - preference in device mode
|
|
|
|
// H - handled in (x)
|
2016-03-30 00:24:22 +08:00
|
|
|
// Preferences: N:native, SS:same side, HD:host-device, WS:wrong side, --:never.
|
2015-09-23 01:22:59 +08:00
|
|
|
//
|
2016-02-13 02:29:18 +08:00
|
|
|
// | F | T | Ph | Pd | H |
|
|
|
|
// |----+----+-----+-----+-----+
|
|
|
|
// | d | d | N | N | (c) |
|
|
|
|
// | d | g | -- | -- | (a) |
|
|
|
|
// | d | h | -- | -- | (e) |
|
|
|
|
// | d | hd | HD | HD | (b) |
|
|
|
|
// | g | d | N | N | (c) |
|
|
|
|
// | g | g | -- | -- | (a) |
|
|
|
|
// | g | h | -- | -- | (e) |
|
|
|
|
// | g | hd | HD | HD | (b) |
|
|
|
|
// | h | d | -- | -- | (e) |
|
|
|
|
// | h | g | N | N | (c) |
|
|
|
|
// | h | h | N | N | (c) |
|
|
|
|
// | h | hd | HD | HD | (b) |
|
|
|
|
// | hd | d | WS | SS | (d) |
|
|
|
|
// | hd | g | SS | -- |(d/a)|
|
|
|
|
// | hd | h | SS | WS | (d) |
|
|
|
|
// | hd | hd | HD | HD | (b) |
|
2015-09-23 01:22:59 +08:00
|
|
|
|
|
|
|
Sema::CUDAFunctionPreference
|
|
|
|
Sema::IdentifyCUDAPreference(const FunctionDecl *Caller,
|
|
|
|
const FunctionDecl *Callee) {
|
|
|
|
assert(Callee && "Callee must be valid.");
|
2016-10-14 02:45:08 +08:00
|
|
|
CUDAFunctionTarget CallerTarget = IdentifyCUDATarget(Caller);
|
2015-09-23 01:22:59 +08:00
|
|
|
CUDAFunctionTarget CalleeTarget = IdentifyCUDATarget(Callee);
|
|
|
|
|
|
|
|
// If one of the targets is invalid, the check always fails, no matter what
|
|
|
|
// the other target is.
|
|
|
|
if (CallerTarget == CFT_InvalidTarget || CalleeTarget == CFT_InvalidTarget)
|
|
|
|
return CFP_Never;
|
|
|
|
|
|
|
|
// (a) Can't call global from some contexts until we support CUDA's
|
|
|
|
// dynamic parallelism.
|
|
|
|
if (CalleeTarget == CFT_Global &&
|
2016-10-12 09:30:08 +08:00
|
|
|
(CallerTarget == CFT_Global || CallerTarget == CFT_Device))
|
2015-09-23 01:22:59 +08:00
|
|
|
return CFP_Never;
|
|
|
|
|
2016-02-13 02:29:18 +08:00
|
|
|
// (b) Calling HostDevice is OK for everyone.
|
|
|
|
if (CalleeTarget == CFT_HostDevice)
|
|
|
|
return CFP_HostDevice;
|
|
|
|
|
|
|
|
// (c) Best case scenarios
|
2015-09-23 01:22:59 +08:00
|
|
|
if (CalleeTarget == CallerTarget ||
|
|
|
|
(CallerTarget == CFT_Host && CalleeTarget == CFT_Global) ||
|
|
|
|
(CallerTarget == CFT_Global && CalleeTarget == CFT_Device))
|
2016-02-13 02:29:18 +08:00
|
|
|
return CFP_Native;
|
2015-09-23 01:22:59 +08:00
|
|
|
|
|
|
|
// (d) HostDevice behavior depends on compilation mode.
|
|
|
|
if (CallerTarget == CFT_HostDevice) {
|
2016-02-13 02:29:18 +08:00
|
|
|
// It's OK to call a compilation-mode matching function from an HD one.
|
|
|
|
if ((getLangOpts().CUDAIsDevice && CalleeTarget == CFT_Device) ||
|
|
|
|
(!getLangOpts().CUDAIsDevice &&
|
|
|
|
(CalleeTarget == CFT_Host || CalleeTarget == CFT_Global)))
|
|
|
|
return CFP_SameSide;
|
|
|
|
|
2016-03-30 00:24:16 +08:00
|
|
|
// Calls from HD to non-mode-matching functions (i.e., to host functions
|
|
|
|
// when compiling in device mode or to device functions when compiling in
|
|
|
|
// host mode) are allowed at the sema level, but eventually rejected if
|
|
|
|
// they're ever codegened. TODO: Reject said calls earlier.
|
|
|
|
return CFP_WrongSide;
|
2015-09-23 01:22:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// (e) Calling across device/host boundary is not something you should do.
|
|
|
|
if ((CallerTarget == CFT_Host && CalleeTarget == CFT_Device) ||
|
|
|
|
(CallerTarget == CFT_Device && CalleeTarget == CFT_Host) ||
|
|
|
|
(CallerTarget == CFT_Global && CalleeTarget == CFT_Host))
|
2016-02-13 02:29:18 +08:00
|
|
|
return CFP_Never;
|
2015-09-23 01:22:59 +08:00
|
|
|
|
|
|
|
llvm_unreachable("All cases should've been handled by now.");
|
|
|
|
}
|
|
|
|
|
2020-06-11 13:32:43 +08:00
|
|
|
template <typename AttrT> static bool hasImplicitAttr(const FunctionDecl *D) {
|
|
|
|
if (!D)
|
|
|
|
return false;
|
|
|
|
if (auto *A = D->getAttr<AttrT>())
|
|
|
|
return A->isImplicit();
|
|
|
|
return D->isImplicit();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Sema::isCUDAImplicitHostDeviceFunction(const FunctionDecl *D) {
|
|
|
|
bool IsImplicitDevAttr = hasImplicitAttr<CUDADeviceAttr>(D);
|
|
|
|
bool IsImplicitHostAttr = hasImplicitAttr<CUDAHostAttr>(D);
|
|
|
|
return IsImplicitDevAttr && IsImplicitHostAttr;
|
|
|
|
}
|
|
|
|
|
2016-10-11 08:21:10 +08:00
|
|
|
void Sema::EraseUnwantedCUDAMatches(
|
|
|
|
const FunctionDecl *Caller,
|
|
|
|
SmallVectorImpl<std::pair<DeclAccessPair, FunctionDecl *>> &Matches) {
|
2015-09-23 01:22:59 +08:00
|
|
|
if (Matches.size() <= 1)
|
|
|
|
return;
|
|
|
|
|
2016-10-11 08:21:10 +08:00
|
|
|
using Pair = std::pair<DeclAccessPair, FunctionDecl*>;
|
|
|
|
|
2016-03-22 08:09:25 +08:00
|
|
|
// Gets the CUDA function preference for a call from Caller to Match.
|
2016-10-11 08:21:10 +08:00
|
|
|
auto GetCFP = [&](const Pair &Match) {
|
|
|
|
return IdentifyCUDAPreference(Caller, Match.second);
|
2016-03-22 08:09:25 +08:00
|
|
|
};
|
|
|
|
|
2015-09-23 01:22:59 +08:00
|
|
|
// Find the best call preference among the functions in Matches.
|
2016-10-11 08:21:10 +08:00
|
|
|
CUDAFunctionPreference BestCFP = GetCFP(*std::max_element(
|
2016-03-22 08:09:25 +08:00
|
|
|
Matches.begin(), Matches.end(),
|
2016-10-11 08:21:10 +08:00
|
|
|
[&](const Pair &M1, const Pair &M2) { return GetCFP(M1) < GetCFP(M2); }));
|
2015-09-23 01:22:59 +08:00
|
|
|
|
|
|
|
// Erase all functions with lower priority.
|
2017-01-05 03:16:29 +08:00
|
|
|
llvm::erase_if(Matches,
|
|
|
|
[&](const Pair &Match) { return GetCFP(Match) < BestCFP; });
|
2015-09-23 01:22:59 +08:00
|
|
|
}
|
|
|
|
|
2014-09-30 04:38:29 +08:00
|
|
|
/// When an implicitly-declared special member has to invoke more than one
|
|
|
|
/// base/field special member, conflicts may occur in the targets of these
|
|
|
|
/// members. For example, if one base's member __host__ and another's is
|
|
|
|
/// __device__, it's a conflict.
|
|
|
|
/// This function figures out if the given targets \param Target1 and
|
|
|
|
/// \param Target2 conflict, and if they do not it fills in
|
|
|
|
/// \param ResolvedTarget with a target that resolves for both calls.
|
|
|
|
/// \return true if there's a conflict, false otherwise.
|
|
|
|
static bool
|
|
|
|
resolveCalleeCUDATargetConflict(Sema::CUDAFunctionTarget Target1,
|
|
|
|
Sema::CUDAFunctionTarget Target2,
|
|
|
|
Sema::CUDAFunctionTarget *ResolvedTarget) {
|
2016-01-20 08:26:57 +08:00
|
|
|
// Only free functions and static member functions may be global.
|
|
|
|
assert(Target1 != Sema::CFT_Global);
|
|
|
|
assert(Target2 != Sema::CFT_Global);
|
2014-09-30 04:38:29 +08:00
|
|
|
|
|
|
|
if (Target1 == Sema::CFT_HostDevice) {
|
|
|
|
*ResolvedTarget = Target2;
|
|
|
|
} else if (Target2 == Sema::CFT_HostDevice) {
|
|
|
|
*ResolvedTarget = Target1;
|
|
|
|
} else if (Target1 != Target2) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
*ResolvedTarget = Target1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Sema::inferCUDATargetForImplicitSpecialMember(CXXRecordDecl *ClassDecl,
|
|
|
|
CXXSpecialMember CSM,
|
|
|
|
CXXMethodDecl *MemberDecl,
|
|
|
|
bool ConstRHS,
|
|
|
|
bool Diagnose) {
|
2019-09-20 22:28:09 +08:00
|
|
|
// If the defaulted special member is defined lexically outside of its
|
|
|
|
// owning class, or the special member already has explicit device or host
|
|
|
|
// attributes, do not infer.
|
|
|
|
bool InClass = MemberDecl->getLexicalParent() == MemberDecl->getParent();
|
|
|
|
bool HasH = MemberDecl->hasAttr<CUDAHostAttr>();
|
|
|
|
bool HasD = MemberDecl->hasAttr<CUDADeviceAttr>();
|
|
|
|
bool HasExplicitAttr =
|
|
|
|
(HasD && !MemberDecl->getAttr<CUDADeviceAttr>()->isImplicit()) ||
|
|
|
|
(HasH && !MemberDecl->getAttr<CUDAHostAttr>()->isImplicit());
|
|
|
|
if (!InClass || HasExplicitAttr)
|
|
|
|
return false;
|
|
|
|
|
2014-09-30 04:38:29 +08:00
|
|
|
llvm::Optional<CUDAFunctionTarget> InferredTarget;
|
|
|
|
|
|
|
|
// We're going to invoke special member lookup; mark that these special
|
|
|
|
// members are called from this one, and not from its caller.
|
|
|
|
ContextRAII MethodContext(*this, MemberDecl);
|
|
|
|
|
|
|
|
// Look for special members in base classes that should be invoked from here.
|
|
|
|
// Infer the target of this member base on the ones it should call.
|
|
|
|
// Skip direct and indirect virtual bases for abstract classes.
|
|
|
|
llvm::SmallVector<const CXXBaseSpecifier *, 16> Bases;
|
|
|
|
for (const auto &B : ClassDecl->bases()) {
|
|
|
|
if (!B.isVirtual()) {
|
|
|
|
Bases.push_back(&B);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ClassDecl->isAbstract()) {
|
|
|
|
for (const auto &VB : ClassDecl->vbases()) {
|
|
|
|
Bases.push_back(&VB);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const auto *B : Bases) {
|
|
|
|
const RecordType *BaseType = B->getType()->getAs<RecordType>();
|
|
|
|
if (!BaseType) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
CXXRecordDecl *BaseClassDecl = cast<CXXRecordDecl>(BaseType->getDecl());
|
2017-02-24 10:07:20 +08:00
|
|
|
Sema::SpecialMemberOverloadResult SMOR =
|
2014-09-30 04:38:29 +08:00
|
|
|
LookupSpecialMember(BaseClassDecl, CSM,
|
|
|
|
/* ConstArg */ ConstRHS,
|
|
|
|
/* VolatileArg */ false,
|
|
|
|
/* RValueThis */ false,
|
|
|
|
/* ConstThis */ false,
|
|
|
|
/* VolatileThis */ false);
|
|
|
|
|
2017-02-24 10:07:20 +08:00
|
|
|
if (!SMOR.getMethod())
|
2014-09-30 04:38:29 +08:00
|
|
|
continue;
|
|
|
|
|
2017-02-24 10:07:20 +08:00
|
|
|
CUDAFunctionTarget BaseMethodTarget = IdentifyCUDATarget(SMOR.getMethod());
|
2014-09-30 04:38:29 +08:00
|
|
|
if (!InferredTarget.hasValue()) {
|
|
|
|
InferredTarget = BaseMethodTarget;
|
|
|
|
} else {
|
|
|
|
bool ResolutionError = resolveCalleeCUDATargetConflict(
|
|
|
|
InferredTarget.getValue(), BaseMethodTarget,
|
|
|
|
InferredTarget.getPointer());
|
|
|
|
if (ResolutionError) {
|
|
|
|
if (Diagnose) {
|
|
|
|
Diag(ClassDecl->getLocation(),
|
|
|
|
diag::note_implicit_member_target_infer_collision)
|
|
|
|
<< (unsigned)CSM << InferredTarget.getValue() << BaseMethodTarget;
|
|
|
|
}
|
|
|
|
MemberDecl->addAttr(CUDAInvalidTargetAttr::CreateImplicit(Context));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Same as for bases, but now for special members of fields.
|
|
|
|
for (const auto *F : ClassDecl->fields()) {
|
|
|
|
if (F->isInvalidDecl()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
const RecordType *FieldType =
|
|
|
|
Context.getBaseElementType(F->getType())->getAs<RecordType>();
|
|
|
|
if (!FieldType) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
CXXRecordDecl *FieldRecDecl = cast<CXXRecordDecl>(FieldType->getDecl());
|
2017-02-24 10:07:20 +08:00
|
|
|
Sema::SpecialMemberOverloadResult SMOR =
|
2014-09-30 04:38:29 +08:00
|
|
|
LookupSpecialMember(FieldRecDecl, CSM,
|
|
|
|
/* ConstArg */ ConstRHS && !F->isMutable(),
|
|
|
|
/* VolatileArg */ false,
|
|
|
|
/* RValueThis */ false,
|
|
|
|
/* ConstThis */ false,
|
|
|
|
/* VolatileThis */ false);
|
|
|
|
|
2017-02-24 10:07:20 +08:00
|
|
|
if (!SMOR.getMethod())
|
2014-09-30 04:38:29 +08:00
|
|
|
continue;
|
|
|
|
|
|
|
|
CUDAFunctionTarget FieldMethodTarget =
|
2017-02-24 10:07:20 +08:00
|
|
|
IdentifyCUDATarget(SMOR.getMethod());
|
2014-09-30 04:38:29 +08:00
|
|
|
if (!InferredTarget.hasValue()) {
|
|
|
|
InferredTarget = FieldMethodTarget;
|
|
|
|
} else {
|
|
|
|
bool ResolutionError = resolveCalleeCUDATargetConflict(
|
|
|
|
InferredTarget.getValue(), FieldMethodTarget,
|
|
|
|
InferredTarget.getPointer());
|
|
|
|
if (ResolutionError) {
|
|
|
|
if (Diagnose) {
|
|
|
|
Diag(ClassDecl->getLocation(),
|
|
|
|
diag::note_implicit_member_target_infer_collision)
|
|
|
|
<< (unsigned)CSM << InferredTarget.getValue()
|
|
|
|
<< FieldMethodTarget;
|
|
|
|
}
|
|
|
|
MemberDecl->addAttr(CUDAInvalidTargetAttr::CreateImplicit(Context));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-20 22:28:09 +08:00
|
|
|
|
|
|
|
// If no target was inferred, mark this member as __host__ __device__;
|
|
|
|
// it's the least restrictive option that can be invoked from any target.
|
|
|
|
bool NeedsH = true, NeedsD = true;
|
2014-09-30 04:38:29 +08:00
|
|
|
if (InferredTarget.hasValue()) {
|
2019-09-20 22:28:09 +08:00
|
|
|
if (InferredTarget.getValue() == CFT_Device)
|
|
|
|
NeedsH = false;
|
|
|
|
else if (InferredTarget.getValue() == CFT_Host)
|
|
|
|
NeedsD = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We either setting attributes first time, or the inferred ones must match
|
|
|
|
// previously set ones.
|
|
|
|
if (NeedsD && !HasD)
|
2014-09-30 04:38:29 +08:00
|
|
|
MemberDecl->addAttr(CUDADeviceAttr::CreateImplicit(Context));
|
2019-09-20 22:28:09 +08:00
|
|
|
if (NeedsH && !HasH)
|
2014-09-30 04:38:29 +08:00
|
|
|
MemberDecl->addAttr(CUDAHostAttr::CreateImplicit(Context));
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2016-02-03 06:29:48 +08:00
|
|
|
|
|
|
|
bool Sema::isEmptyCudaConstructor(SourceLocation Loc, CXXConstructorDecl *CD) {
|
|
|
|
if (!CD->isDefined() && CD->isTemplateInstantiation())
|
|
|
|
InstantiateFunctionDefinition(Loc, CD->getFirstDecl());
|
|
|
|
|
|
|
|
// (E.2.3.1, CUDA 7.5) A constructor for a class type is considered
|
|
|
|
// empty at a point in the translation unit, if it is either a
|
|
|
|
// trivial constructor
|
|
|
|
if (CD->isTrivial())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// ... or it satisfies all of the following conditions:
|
|
|
|
// The constructor function has been defined.
|
|
|
|
// The constructor function has no parameters,
|
|
|
|
// and the function body is an empty compound statement.
|
|
|
|
if (!(CD->hasTrivialBody() && CD->getNumParams() == 0))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Its class has no virtual functions and no virtual base classes.
|
|
|
|
if (CD->getParent()->isDynamicClass())
|
|
|
|
return false;
|
|
|
|
|
2020-05-05 05:27:41 +08:00
|
|
|
// Union ctor does not call ctors of its data members.
|
|
|
|
if (CD->getParent()->isUnion())
|
|
|
|
return true;
|
|
|
|
|
2016-02-03 06:29:48 +08:00
|
|
|
// The only form of initializer allowed is an empty constructor.
|
2016-05-20 04:13:53 +08:00
|
|
|
// This will recursively check all base classes and member initializers
|
2016-02-03 06:29:48 +08:00
|
|
|
if (!llvm::all_of(CD->inits(), [&](const CXXCtorInitializer *CI) {
|
|
|
|
if (const CXXConstructExpr *CE =
|
|
|
|
dyn_cast<CXXConstructExpr>(CI->getInit()))
|
|
|
|
return isEmptyCudaConstructor(Loc, CE->getConstructor());
|
|
|
|
return false;
|
|
|
|
}))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2016-03-31 07:30:21 +08:00
|
|
|
|
2016-05-20 04:13:53 +08:00
|
|
|
bool Sema::isEmptyCudaDestructor(SourceLocation Loc, CXXDestructorDecl *DD) {
|
|
|
|
// No destructor -> no problem.
|
|
|
|
if (!DD)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (!DD->isDefined() && DD->isTemplateInstantiation())
|
|
|
|
InstantiateFunctionDefinition(Loc, DD->getFirstDecl());
|
|
|
|
|
|
|
|
// (E.2.3.1, CUDA 7.5) A destructor for a class type is considered
|
|
|
|
// empty at a point in the translation unit, if it is either a
|
|
|
|
// trivial constructor
|
|
|
|
if (DD->isTrivial())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// ... or it satisfies all of the following conditions:
|
|
|
|
// The destructor function has been defined.
|
|
|
|
// and the function body is an empty compound statement.
|
|
|
|
if (!DD->hasTrivialBody())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
const CXXRecordDecl *ClassDecl = DD->getParent();
|
|
|
|
|
|
|
|
// Its class has no virtual functions and no virtual base classes.
|
|
|
|
if (ClassDecl->isDynamicClass())
|
|
|
|
return false;
|
|
|
|
|
2020-05-05 05:27:41 +08:00
|
|
|
// Union does not have base class and union dtor does not call dtors of its
|
|
|
|
// data members.
|
|
|
|
if (DD->getParent()->isUnion())
|
|
|
|
return true;
|
|
|
|
|
2016-05-20 04:13:53 +08:00
|
|
|
// Only empty destructors are allowed. This will recursively check
|
|
|
|
// destructors for all base classes...
|
|
|
|
if (!llvm::all_of(ClassDecl->bases(), [&](const CXXBaseSpecifier &BS) {
|
|
|
|
if (CXXRecordDecl *RD = BS.getType()->getAsCXXRecordDecl())
|
|
|
|
return isEmptyCudaDestructor(Loc, RD->getDestructor());
|
|
|
|
return true;
|
|
|
|
}))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// ... and member fields.
|
|
|
|
if (!llvm::all_of(ClassDecl->fields(), [&](const FieldDecl *Field) {
|
|
|
|
if (CXXRecordDecl *RD = Field->getType()
|
|
|
|
->getBaseElementTypeUnsafe()
|
|
|
|
->getAsCXXRecordDecl())
|
|
|
|
return isEmptyCudaDestructor(Loc, RD->getDestructor());
|
|
|
|
return true;
|
|
|
|
}))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-06-07 06:37:25 +08:00
|
|
|
void Sema::checkAllowedCUDAInitializer(VarDecl *VD) {
|
|
|
|
if (VD->isInvalidDecl() || !VD->hasInit() || !VD->hasGlobalStorage())
|
|
|
|
return;
|
|
|
|
const Expr *Init = VD->getInit();
|
|
|
|
if (VD->hasAttr<CUDADeviceAttr>() || VD->hasAttr<CUDAConstantAttr>() ||
|
|
|
|
VD->hasAttr<CUDASharedAttr>()) {
|
2019-10-23 01:41:25 +08:00
|
|
|
if (LangOpts.GPUAllowDeviceInit)
|
|
|
|
return;
|
2018-06-07 06:37:25 +08:00
|
|
|
assert(!VD->isStaticLocal() || VD->hasAttr<CUDASharedAttr>());
|
|
|
|
bool AllowedInit = false;
|
|
|
|
if (const CXXConstructExpr *CE = dyn_cast<CXXConstructExpr>(Init))
|
|
|
|
AllowedInit =
|
|
|
|
isEmptyCudaConstructor(VD->getLocation(), CE->getConstructor());
|
|
|
|
// We'll allow constant initializers even if it's a non-empty
|
|
|
|
// constructor according to CUDA rules. This deviates from NVCC,
|
|
|
|
// but allows us to handle things like constexpr constructors.
|
|
|
|
if (!AllowedInit &&
|
2020-05-01 23:30:24 +08:00
|
|
|
(VD->hasAttr<CUDADeviceAttr>() || VD->hasAttr<CUDAConstantAttr>())) {
|
|
|
|
auto *Init = VD->getInit();
|
|
|
|
AllowedInit =
|
|
|
|
((VD->getType()->isDependentType() || Init->isValueDependent()) &&
|
|
|
|
VD->isConstexpr()) ||
|
|
|
|
Init->isConstantInitializer(Context,
|
|
|
|
VD->getType()->isReferenceType());
|
|
|
|
}
|
2018-06-07 06:37:25 +08:00
|
|
|
|
|
|
|
// Also make sure that destructor, if there is one, is empty.
|
|
|
|
if (AllowedInit)
|
|
|
|
if (CXXRecordDecl *RD = VD->getType()->getAsCXXRecordDecl())
|
|
|
|
AllowedInit =
|
|
|
|
isEmptyCudaDestructor(VD->getLocation(), RD->getDestructor());
|
|
|
|
|
|
|
|
if (!AllowedInit) {
|
|
|
|
Diag(VD->getLocation(), VD->hasAttr<CUDASharedAttr>()
|
|
|
|
? diag::err_shared_var_init
|
|
|
|
: diag::err_dynamic_var_init)
|
|
|
|
<< Init->getSourceRange();
|
|
|
|
VD->setInvalidDecl();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// This is a host-side global variable. Check that the initializer is
|
|
|
|
// callable from the host side.
|
|
|
|
const FunctionDecl *InitFn = nullptr;
|
|
|
|
if (const CXXConstructExpr *CE = dyn_cast<CXXConstructExpr>(Init)) {
|
|
|
|
InitFn = CE->getConstructor();
|
|
|
|
} else if (const CallExpr *CE = dyn_cast<CallExpr>(Init)) {
|
|
|
|
InitFn = CE->getDirectCallee();
|
|
|
|
}
|
|
|
|
if (InitFn) {
|
|
|
|
CUDAFunctionTarget InitFnTarget = IdentifyCUDATarget(InitFn);
|
|
|
|
if (InitFnTarget != CFT_Host && InitFnTarget != CFT_HostDevice) {
|
|
|
|
Diag(VD->getLocation(), diag::err_ref_bad_target_global_initializer)
|
|
|
|
<< InitFnTarget << InitFn;
|
|
|
|
Diag(InitFn->getLocation(), diag::note_previous_decl) << InitFn;
|
|
|
|
VD->setInvalidDecl();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-31 07:30:21 +08:00
|
|
|
// With -fcuda-host-device-constexpr, an unattributed constexpr function is
|
|
|
|
// treated as implicitly __host__ __device__, unless:
|
|
|
|
// * it is a variadic function (device-side variadic functions are not
|
|
|
|
// allowed), or
|
|
|
|
// * a __device__ function with this signature was already declared, in which
|
|
|
|
// case in which case we output an error, unless the __device__ decl is in a
|
|
|
|
// system header, in which case we leave the constexpr function unattributed.
|
2016-10-09 06:15:58 +08:00
|
|
|
//
|
|
|
|
// In addition, all function decls are treated as __host__ __device__ when
|
|
|
|
// ForceCUDAHostDeviceDepth > 0 (corresponding to code within a
|
|
|
|
// #pragma clang force_cuda_host_device_begin/end
|
|
|
|
// pair).
|
2016-10-22 01:15:46 +08:00
|
|
|
void Sema::maybeAddCUDAHostDeviceAttrs(FunctionDecl *NewD,
|
2016-03-31 07:30:21 +08:00
|
|
|
const LookupResult &Previous) {
|
2016-10-01 07:57:38 +08:00
|
|
|
assert(getLangOpts().CUDA && "Should only be called during CUDA compilation");
|
2016-10-09 06:15:58 +08:00
|
|
|
|
|
|
|
if (ForceCUDAHostDeviceDepth > 0) {
|
|
|
|
if (!NewD->hasAttr<CUDAHostAttr>())
|
|
|
|
NewD->addAttr(CUDAHostAttr::CreateImplicit(Context));
|
|
|
|
if (!NewD->hasAttr<CUDADeviceAttr>())
|
|
|
|
NewD->addAttr(CUDADeviceAttr::CreateImplicit(Context));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-03-31 07:30:21 +08:00
|
|
|
if (!getLangOpts().CUDAHostDeviceConstexpr || !NewD->isConstexpr() ||
|
|
|
|
NewD->isVariadic() || NewD->hasAttr<CUDAHostAttr>() ||
|
|
|
|
NewD->hasAttr<CUDADeviceAttr>() || NewD->hasAttr<CUDAGlobalAttr>())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Is D a __device__ function with the same signature as NewD, ignoring CUDA
|
|
|
|
// attributes?
|
|
|
|
auto IsMatchingDeviceFn = [&](NamedDecl *D) {
|
|
|
|
if (UsingShadowDecl *Using = dyn_cast<UsingShadowDecl>(D))
|
|
|
|
D = Using->getTargetDecl();
|
|
|
|
FunctionDecl *OldD = D->getAsFunction();
|
|
|
|
return OldD && OldD->hasAttr<CUDADeviceAttr>() &&
|
|
|
|
!OldD->hasAttr<CUDAHostAttr>() &&
|
|
|
|
!IsOverload(NewD, OldD, /* UseMemberUsingDeclRules = */ false,
|
|
|
|
/* ConsiderCudaAttrs = */ false);
|
|
|
|
};
|
|
|
|
auto It = llvm::find_if(Previous, IsMatchingDeviceFn);
|
|
|
|
if (It != Previous.end()) {
|
|
|
|
// We found a __device__ function with the same name and signature as NewD
|
|
|
|
// (ignoring CUDA attrs). This is an error unless that function is defined
|
|
|
|
// in a system header, in which case we simply return without making NewD
|
|
|
|
// host+device.
|
|
|
|
NamedDecl *Match = *It;
|
|
|
|
if (!getSourceManager().isInSystemHeader(Match->getLocation())) {
|
|
|
|
Diag(NewD->getLocation(),
|
|
|
|
diag::err_cuda_unattributed_constexpr_cannot_overload_device)
|
2018-03-28 12:16:13 +08:00
|
|
|
<< NewD;
|
2016-03-31 07:30:21 +08:00
|
|
|
Diag(Match->getLocation(),
|
|
|
|
diag::note_cuda_conflicting_device_function_declared_here);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
NewD->addAttr(CUDAHostAttr::CreateImplicit(Context));
|
|
|
|
NewD->addAttr(CUDADeviceAttr::CreateImplicit(Context));
|
|
|
|
}
|
2016-08-16 07:00:49 +08:00
|
|
|
|
2020-05-01 23:30:24 +08:00
|
|
|
void Sema::MaybeAddCUDAConstantAttr(VarDecl *VD) {
|
|
|
|
if (getLangOpts().CUDAIsDevice && VD->isConstexpr() &&
|
|
|
|
(VD->isFileVarDecl() || VD->isStaticDataMember())) {
|
|
|
|
VD->addAttr(CUDAConstantAttr::CreateImplicit(getASTContext()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-08 03:46:42 +08:00
|
|
|
Sema::DeviceDiagBuilder Sema::CUDADiagIfDeviceCode(SourceLocation Loc,
|
|
|
|
unsigned DiagID) {
|
2016-10-14 02:45:08 +08:00
|
|
|
assert(getLangOpts().CUDA && "Should only be called during CUDA compilation");
|
2019-02-08 03:46:42 +08:00
|
|
|
DeviceDiagBuilder::Kind DiagKind = [this] {
|
[CUDA] Emit deferred diagnostics during Sema rather than during codegen.
Summary:
Emitting deferred diagnostics during codegen was a hack. It did work,
but usability was poor, both for us as compiler devs and for users. We
don't codegen if there are any sema errors, so for users this meant that
they wouldn't see deferred errors if there were any non-deferred errors.
For devs, this meant that we had to carefully split up our tests so that
when we tested deferred errors, we didn't emit any non-deferred errors.
This change moves checking for deferred errors into Sema. See the big
comment in SemaCUDA.cpp for an overview of the idea.
This checking adds overhead to compilation, because we have to maintain
a partial call graph. As a result, this change makes deferred errors a
CUDA-only concept (whereas before they were a general concept). If
anyone else wants to use this framework for something other than CUDA,
we can generalize at that time.
This patch makes the minimal set of test changes -- after this lands,
I'll go back through and do a cleanup of the tests that we no longer
have to split up.
Reviewers: rnk
Subscribers: cfe-commits, rsmith, tra
Differential Revision: https://reviews.llvm.org/D25541
llvm-svn: 284158
2016-10-14 04:52:12 +08:00
|
|
|
switch (CurrentCUDATarget()) {
|
|
|
|
case CFT_Global:
|
|
|
|
case CFT_Device:
|
2019-02-08 03:46:42 +08:00
|
|
|
return DeviceDiagBuilder::K_Immediate;
|
[CUDA] Emit deferred diagnostics during Sema rather than during codegen.
Summary:
Emitting deferred diagnostics during codegen was a hack. It did work,
but usability was poor, both for us as compiler devs and for users. We
don't codegen if there are any sema errors, so for users this meant that
they wouldn't see deferred errors if there were any non-deferred errors.
For devs, this meant that we had to carefully split up our tests so that
when we tested deferred errors, we didn't emit any non-deferred errors.
This change moves checking for deferred errors into Sema. See the big
comment in SemaCUDA.cpp for an overview of the idea.
This checking adds overhead to compilation, because we have to maintain
a partial call graph. As a result, this change makes deferred errors a
CUDA-only concept (whereas before they were a general concept). If
anyone else wants to use this framework for something other than CUDA,
we can generalize at that time.
This patch makes the minimal set of test changes -- after this lands,
I'll go back through and do a cleanup of the tests that we no longer
have to split up.
Reviewers: rnk
Subscribers: cfe-commits, rsmith, tra
Differential Revision: https://reviews.llvm.org/D25541
llvm-svn: 284158
2016-10-14 04:52:12 +08:00
|
|
|
case CFT_HostDevice:
|
|
|
|
// An HD function counts as host code if we're compiling for host, and
|
|
|
|
// device code if we're compiling for device. Defer any errors in device
|
|
|
|
// mode until the function is known-emitted.
|
|
|
|
if (getLangOpts().CUDAIsDevice) {
|
2019-10-10 07:54:10 +08:00
|
|
|
return (getEmissionStatus(cast<FunctionDecl>(CurContext)) ==
|
|
|
|
FunctionEmissionStatus::Emitted)
|
2019-02-08 03:46:42 +08:00
|
|
|
? DeviceDiagBuilder::K_ImmediateWithCallStack
|
|
|
|
: DeviceDiagBuilder::K_Deferred;
|
[CUDA] Emit deferred diagnostics during Sema rather than during codegen.
Summary:
Emitting deferred diagnostics during codegen was a hack. It did work,
but usability was poor, both for us as compiler devs and for users. We
don't codegen if there are any sema errors, so for users this meant that
they wouldn't see deferred errors if there were any non-deferred errors.
For devs, this meant that we had to carefully split up our tests so that
when we tested deferred errors, we didn't emit any non-deferred errors.
This change moves checking for deferred errors into Sema. See the big
comment in SemaCUDA.cpp for an overview of the idea.
This checking adds overhead to compilation, because we have to maintain
a partial call graph. As a result, this change makes deferred errors a
CUDA-only concept (whereas before they were a general concept). If
anyone else wants to use this framework for something other than CUDA,
we can generalize at that time.
This patch makes the minimal set of test changes -- after this lands,
I'll go back through and do a cleanup of the tests that we no longer
have to split up.
Reviewers: rnk
Subscribers: cfe-commits, rsmith, tra
Differential Revision: https://reviews.llvm.org/D25541
llvm-svn: 284158
2016-10-14 04:52:12 +08:00
|
|
|
}
|
2019-02-08 03:46:42 +08:00
|
|
|
return DeviceDiagBuilder::K_Nop;
|
[CUDA] Emit deferred diagnostics during Sema rather than during codegen.
Summary:
Emitting deferred diagnostics during codegen was a hack. It did work,
but usability was poor, both for us as compiler devs and for users. We
don't codegen if there are any sema errors, so for users this meant that
they wouldn't see deferred errors if there were any non-deferred errors.
For devs, this meant that we had to carefully split up our tests so that
when we tested deferred errors, we didn't emit any non-deferred errors.
This change moves checking for deferred errors into Sema. See the big
comment in SemaCUDA.cpp for an overview of the idea.
This checking adds overhead to compilation, because we have to maintain
a partial call graph. As a result, this change makes deferred errors a
CUDA-only concept (whereas before they were a general concept). If
anyone else wants to use this framework for something other than CUDA,
we can generalize at that time.
This patch makes the minimal set of test changes -- after this lands,
I'll go back through and do a cleanup of the tests that we no longer
have to split up.
Reviewers: rnk
Subscribers: cfe-commits, rsmith, tra
Differential Revision: https://reviews.llvm.org/D25541
llvm-svn: 284158
2016-10-14 04:52:12 +08:00
|
|
|
|
|
|
|
default:
|
2019-02-08 03:46:42 +08:00
|
|
|
return DeviceDiagBuilder::K_Nop;
|
[CUDA] Emit deferred diagnostics during Sema rather than during codegen.
Summary:
Emitting deferred diagnostics during codegen was a hack. It did work,
but usability was poor, both for us as compiler devs and for users. We
don't codegen if there are any sema errors, so for users this meant that
they wouldn't see deferred errors if there were any non-deferred errors.
For devs, this meant that we had to carefully split up our tests so that
when we tested deferred errors, we didn't emit any non-deferred errors.
This change moves checking for deferred errors into Sema. See the big
comment in SemaCUDA.cpp for an overview of the idea.
This checking adds overhead to compilation, because we have to maintain
a partial call graph. As a result, this change makes deferred errors a
CUDA-only concept (whereas before they were a general concept). If
anyone else wants to use this framework for something other than CUDA,
we can generalize at that time.
This patch makes the minimal set of test changes -- after this lands,
I'll go back through and do a cleanup of the tests that we no longer
have to split up.
Reviewers: rnk
Subscribers: cfe-commits, rsmith, tra
Differential Revision: https://reviews.llvm.org/D25541
llvm-svn: 284158
2016-10-14 04:52:12 +08:00
|
|
|
}
|
|
|
|
}();
|
2019-02-08 03:46:42 +08:00
|
|
|
return DeviceDiagBuilder(DiagKind, Loc, DiagID,
|
|
|
|
dyn_cast<FunctionDecl>(CurContext), *this);
|
2016-08-16 07:00:49 +08:00
|
|
|
}
|
2016-09-29 06:45:54 +08:00
|
|
|
|
2019-02-08 03:46:42 +08:00
|
|
|
Sema::DeviceDiagBuilder Sema::CUDADiagIfHostCode(SourceLocation Loc,
|
|
|
|
unsigned DiagID) {
|
2016-09-29 06:45:54 +08:00
|
|
|
assert(getLangOpts().CUDA && "Should only be called during CUDA compilation");
|
2019-02-08 03:46:42 +08:00
|
|
|
DeviceDiagBuilder::Kind DiagKind = [this] {
|
[CUDA] Emit deferred diagnostics during Sema rather than during codegen.
Summary:
Emitting deferred diagnostics during codegen was a hack. It did work,
but usability was poor, both for us as compiler devs and for users. We
don't codegen if there are any sema errors, so for users this meant that
they wouldn't see deferred errors if there were any non-deferred errors.
For devs, this meant that we had to carefully split up our tests so that
when we tested deferred errors, we didn't emit any non-deferred errors.
This change moves checking for deferred errors into Sema. See the big
comment in SemaCUDA.cpp for an overview of the idea.
This checking adds overhead to compilation, because we have to maintain
a partial call graph. As a result, this change makes deferred errors a
CUDA-only concept (whereas before they were a general concept). If
anyone else wants to use this framework for something other than CUDA,
we can generalize at that time.
This patch makes the minimal set of test changes -- after this lands,
I'll go back through and do a cleanup of the tests that we no longer
have to split up.
Reviewers: rnk
Subscribers: cfe-commits, rsmith, tra
Differential Revision: https://reviews.llvm.org/D25541
llvm-svn: 284158
2016-10-14 04:52:12 +08:00
|
|
|
switch (CurrentCUDATarget()) {
|
|
|
|
case CFT_Host:
|
2019-02-08 03:46:42 +08:00
|
|
|
return DeviceDiagBuilder::K_Immediate;
|
[CUDA] Emit deferred diagnostics during Sema rather than during codegen.
Summary:
Emitting deferred diagnostics during codegen was a hack. It did work,
but usability was poor, both for us as compiler devs and for users. We
don't codegen if there are any sema errors, so for users this meant that
they wouldn't see deferred errors if there were any non-deferred errors.
For devs, this meant that we had to carefully split up our tests so that
when we tested deferred errors, we didn't emit any non-deferred errors.
This change moves checking for deferred errors into Sema. See the big
comment in SemaCUDA.cpp for an overview of the idea.
This checking adds overhead to compilation, because we have to maintain
a partial call graph. As a result, this change makes deferred errors a
CUDA-only concept (whereas before they were a general concept). If
anyone else wants to use this framework for something other than CUDA,
we can generalize at that time.
This patch makes the minimal set of test changes -- after this lands,
I'll go back through and do a cleanup of the tests that we no longer
have to split up.
Reviewers: rnk
Subscribers: cfe-commits, rsmith, tra
Differential Revision: https://reviews.llvm.org/D25541
llvm-svn: 284158
2016-10-14 04:52:12 +08:00
|
|
|
case CFT_HostDevice:
|
|
|
|
// An HD function counts as host code if we're compiling for host, and
|
|
|
|
// device code if we're compiling for device. Defer any errors in device
|
|
|
|
// mode until the function is known-emitted.
|
|
|
|
if (getLangOpts().CUDAIsDevice)
|
2019-02-08 03:46:42 +08:00
|
|
|
return DeviceDiagBuilder::K_Nop;
|
[CUDA] Emit deferred diagnostics during Sema rather than during codegen.
Summary:
Emitting deferred diagnostics during codegen was a hack. It did work,
but usability was poor, both for us as compiler devs and for users. We
don't codegen if there are any sema errors, so for users this meant that
they wouldn't see deferred errors if there were any non-deferred errors.
For devs, this meant that we had to carefully split up our tests so that
when we tested deferred errors, we didn't emit any non-deferred errors.
This change moves checking for deferred errors into Sema. See the big
comment in SemaCUDA.cpp for an overview of the idea.
This checking adds overhead to compilation, because we have to maintain
a partial call graph. As a result, this change makes deferred errors a
CUDA-only concept (whereas before they were a general concept). If
anyone else wants to use this framework for something other than CUDA,
we can generalize at that time.
This patch makes the minimal set of test changes -- after this lands,
I'll go back through and do a cleanup of the tests that we no longer
have to split up.
Reviewers: rnk
Subscribers: cfe-commits, rsmith, tra
Differential Revision: https://reviews.llvm.org/D25541
llvm-svn: 284158
2016-10-14 04:52:12 +08:00
|
|
|
|
2019-10-10 07:54:10 +08:00
|
|
|
return (getEmissionStatus(cast<FunctionDecl>(CurContext)) ==
|
|
|
|
FunctionEmissionStatus::Emitted)
|
2019-02-08 03:46:42 +08:00
|
|
|
? DeviceDiagBuilder::K_ImmediateWithCallStack
|
|
|
|
: DeviceDiagBuilder::K_Deferred;
|
[CUDA] Emit deferred diagnostics during Sema rather than during codegen.
Summary:
Emitting deferred diagnostics during codegen was a hack. It did work,
but usability was poor, both for us as compiler devs and for users. We
don't codegen if there are any sema errors, so for users this meant that
they wouldn't see deferred errors if there were any non-deferred errors.
For devs, this meant that we had to carefully split up our tests so that
when we tested deferred errors, we didn't emit any non-deferred errors.
This change moves checking for deferred errors into Sema. See the big
comment in SemaCUDA.cpp for an overview of the idea.
This checking adds overhead to compilation, because we have to maintain
a partial call graph. As a result, this change makes deferred errors a
CUDA-only concept (whereas before they were a general concept). If
anyone else wants to use this framework for something other than CUDA,
we can generalize at that time.
This patch makes the minimal set of test changes -- after this lands,
I'll go back through and do a cleanup of the tests that we no longer
have to split up.
Reviewers: rnk
Subscribers: cfe-commits, rsmith, tra
Differential Revision: https://reviews.llvm.org/D25541
llvm-svn: 284158
2016-10-14 04:52:12 +08:00
|
|
|
default:
|
2019-02-08 03:46:42 +08:00
|
|
|
return DeviceDiagBuilder::K_Nop;
|
[CUDA] Emit deferred diagnostics during Sema rather than during codegen.
Summary:
Emitting deferred diagnostics during codegen was a hack. It did work,
but usability was poor, both for us as compiler devs and for users. We
don't codegen if there are any sema errors, so for users this meant that
they wouldn't see deferred errors if there were any non-deferred errors.
For devs, this meant that we had to carefully split up our tests so that
when we tested deferred errors, we didn't emit any non-deferred errors.
This change moves checking for deferred errors into Sema. See the big
comment in SemaCUDA.cpp for an overview of the idea.
This checking adds overhead to compilation, because we have to maintain
a partial call graph. As a result, this change makes deferred errors a
CUDA-only concept (whereas before they were a general concept). If
anyone else wants to use this framework for something other than CUDA,
we can generalize at that time.
This patch makes the minimal set of test changes -- after this lands,
I'll go back through and do a cleanup of the tests that we no longer
have to split up.
Reviewers: rnk
Subscribers: cfe-commits, rsmith, tra
Differential Revision: https://reviews.llvm.org/D25541
llvm-svn: 284158
2016-10-14 04:52:12 +08:00
|
|
|
}
|
|
|
|
}();
|
2019-02-08 03:46:42 +08:00
|
|
|
return DeviceDiagBuilder(DiagKind, Loc, DiagID,
|
|
|
|
dyn_cast<FunctionDecl>(CurContext), *this);
|
[CUDA] Emit deferred diagnostics during Sema rather than during codegen.
Summary:
Emitting deferred diagnostics during codegen was a hack. It did work,
but usability was poor, both for us as compiler devs and for users. We
don't codegen if there are any sema errors, so for users this meant that
they wouldn't see deferred errors if there were any non-deferred errors.
For devs, this meant that we had to carefully split up our tests so that
when we tested deferred errors, we didn't emit any non-deferred errors.
This change moves checking for deferred errors into Sema. See the big
comment in SemaCUDA.cpp for an overview of the idea.
This checking adds overhead to compilation, because we have to maintain
a partial call graph. As a result, this change makes deferred errors a
CUDA-only concept (whereas before they were a general concept). If
anyone else wants to use this framework for something other than CUDA,
we can generalize at that time.
This patch makes the minimal set of test changes -- after this lands,
I'll go back through and do a cleanup of the tests that we no longer
have to split up.
Reviewers: rnk
Subscribers: cfe-commits, rsmith, tra
Differential Revision: https://reviews.llvm.org/D25541
llvm-svn: 284158
2016-10-14 04:52:12 +08:00
|
|
|
}
|
|
|
|
|
2016-10-14 02:45:08 +08:00
|
|
|
bool Sema::CheckCUDACall(SourceLocation Loc, FunctionDecl *Callee) {
|
2016-09-29 06:45:58 +08:00
|
|
|
assert(getLangOpts().CUDA && "Should only be called during CUDA compilation");
|
2016-10-14 02:45:08 +08:00
|
|
|
assert(Callee && "Callee may not be null.");
|
2019-03-06 02:19:35 +08:00
|
|
|
|
|
|
|
auto &ExprEvalCtx = ExprEvalContexts.back();
|
|
|
|
if (ExprEvalCtx.isUnevaluated() || ExprEvalCtx.isConstantEvaluated())
|
|
|
|
return true;
|
|
|
|
|
[CUDA] Emit deferred diagnostics during Sema rather than during codegen.
Summary:
Emitting deferred diagnostics during codegen was a hack. It did work,
but usability was poor, both for us as compiler devs and for users. We
don't codegen if there are any sema errors, so for users this meant that
they wouldn't see deferred errors if there were any non-deferred errors.
For devs, this meant that we had to carefully split up our tests so that
when we tested deferred errors, we didn't emit any non-deferred errors.
This change moves checking for deferred errors into Sema. See the big
comment in SemaCUDA.cpp for an overview of the idea.
This checking adds overhead to compilation, because we have to maintain
a partial call graph. As a result, this change makes deferred errors a
CUDA-only concept (whereas before they were a general concept). If
anyone else wants to use this framework for something other than CUDA,
we can generalize at that time.
This patch makes the minimal set of test changes -- after this lands,
I'll go back through and do a cleanup of the tests that we no longer
have to split up.
Reviewers: rnk
Subscribers: cfe-commits, rsmith, tra
Differential Revision: https://reviews.llvm.org/D25541
llvm-svn: 284158
2016-10-14 04:52:12 +08:00
|
|
|
// FIXME: Is bailing out early correct here? Should we instead assume that
|
|
|
|
// the caller is a global initializer?
|
2016-10-14 02:45:08 +08:00
|
|
|
FunctionDecl *Caller = dyn_cast<FunctionDecl>(CurContext);
|
|
|
|
if (!Caller)
|
2016-09-29 06:45:58 +08:00
|
|
|
return true;
|
2016-10-14 02:45:08 +08:00
|
|
|
|
2016-10-17 10:25:55 +08:00
|
|
|
// If the caller is known-emitted, mark the callee as known-emitted.
|
|
|
|
// Otherwise, mark the call in our call graph so we can traverse it later.
|
2019-10-10 07:54:10 +08:00
|
|
|
bool CallerKnownEmitted =
|
|
|
|
getEmissionStatus(Caller) == FunctionEmissionStatus::Emitted;
|
2019-02-08 03:46:42 +08:00
|
|
|
DeviceDiagBuilder::Kind DiagKind = [this, Caller, Callee,
|
|
|
|
CallerKnownEmitted] {
|
[CUDA] Emit deferred diagnostics during Sema rather than during codegen.
Summary:
Emitting deferred diagnostics during codegen was a hack. It did work,
but usability was poor, both for us as compiler devs and for users. We
don't codegen if there are any sema errors, so for users this meant that
they wouldn't see deferred errors if there were any non-deferred errors.
For devs, this meant that we had to carefully split up our tests so that
when we tested deferred errors, we didn't emit any non-deferred errors.
This change moves checking for deferred errors into Sema. See the big
comment in SemaCUDA.cpp for an overview of the idea.
This checking adds overhead to compilation, because we have to maintain
a partial call graph. As a result, this change makes deferred errors a
CUDA-only concept (whereas before they were a general concept). If
anyone else wants to use this framework for something other than CUDA,
we can generalize at that time.
This patch makes the minimal set of test changes -- after this lands,
I'll go back through and do a cleanup of the tests that we no longer
have to split up.
Reviewers: rnk
Subscribers: cfe-commits, rsmith, tra
Differential Revision: https://reviews.llvm.org/D25541
llvm-svn: 284158
2016-10-14 04:52:12 +08:00
|
|
|
switch (IdentifyCUDAPreference(Caller, Callee)) {
|
|
|
|
case CFP_Never:
|
|
|
|
case CFP_WrongSide:
|
2020-07-16 01:25:32 +08:00
|
|
|
assert(Caller && "Never/wrongSide calls require a non-null caller");
|
[CUDA] Emit deferred diagnostics during Sema rather than during codegen.
Summary:
Emitting deferred diagnostics during codegen was a hack. It did work,
but usability was poor, both for us as compiler devs and for users. We
don't codegen if there are any sema errors, so for users this meant that
they wouldn't see deferred errors if there were any non-deferred errors.
For devs, this meant that we had to carefully split up our tests so that
when we tested deferred errors, we didn't emit any non-deferred errors.
This change moves checking for deferred errors into Sema. See the big
comment in SemaCUDA.cpp for an overview of the idea.
This checking adds overhead to compilation, because we have to maintain
a partial call graph. As a result, this change makes deferred errors a
CUDA-only concept (whereas before they were a general concept). If
anyone else wants to use this framework for something other than CUDA,
we can generalize at that time.
This patch makes the minimal set of test changes -- after this lands,
I'll go back through and do a cleanup of the tests that we no longer
have to split up.
Reviewers: rnk
Subscribers: cfe-commits, rsmith, tra
Differential Revision: https://reviews.llvm.org/D25541
llvm-svn: 284158
2016-10-14 04:52:12 +08:00
|
|
|
// If we know the caller will be emitted, we know this wrong-side call
|
|
|
|
// will be emitted, so it's an immediate error. Otherwise, defer the
|
|
|
|
// error until we know the caller is emitted.
|
2019-02-08 03:46:42 +08:00
|
|
|
return CallerKnownEmitted ? DeviceDiagBuilder::K_ImmediateWithCallStack
|
|
|
|
: DeviceDiagBuilder::K_Deferred;
|
[CUDA] Emit deferred diagnostics during Sema rather than during codegen.
Summary:
Emitting deferred diagnostics during codegen was a hack. It did work,
but usability was poor, both for us as compiler devs and for users. We
don't codegen if there are any sema errors, so for users this meant that
they wouldn't see deferred errors if there were any non-deferred errors.
For devs, this meant that we had to carefully split up our tests so that
when we tested deferred errors, we didn't emit any non-deferred errors.
This change moves checking for deferred errors into Sema. See the big
comment in SemaCUDA.cpp for an overview of the idea.
This checking adds overhead to compilation, because we have to maintain
a partial call graph. As a result, this change makes deferred errors a
CUDA-only concept (whereas before they were a general concept). If
anyone else wants to use this framework for something other than CUDA,
we can generalize at that time.
This patch makes the minimal set of test changes -- after this lands,
I'll go back through and do a cleanup of the tests that we no longer
have to split up.
Reviewers: rnk
Subscribers: cfe-commits, rsmith, tra
Differential Revision: https://reviews.llvm.org/D25541
llvm-svn: 284158
2016-10-14 04:52:12 +08:00
|
|
|
default:
|
2019-02-08 03:46:42 +08:00
|
|
|
return DeviceDiagBuilder::K_Nop;
|
[CUDA] Emit deferred diagnostics during Sema rather than during codegen.
Summary:
Emitting deferred diagnostics during codegen was a hack. It did work,
but usability was poor, both for us as compiler devs and for users. We
don't codegen if there are any sema errors, so for users this meant that
they wouldn't see deferred errors if there were any non-deferred errors.
For devs, this meant that we had to carefully split up our tests so that
when we tested deferred errors, we didn't emit any non-deferred errors.
This change moves checking for deferred errors into Sema. See the big
comment in SemaCUDA.cpp for an overview of the idea.
This checking adds overhead to compilation, because we have to maintain
a partial call graph. As a result, this change makes deferred errors a
CUDA-only concept (whereas before they were a general concept). If
anyone else wants to use this framework for something other than CUDA,
we can generalize at that time.
This patch makes the minimal set of test changes -- after this lands,
I'll go back through and do a cleanup of the tests that we no longer
have to split up.
Reviewers: rnk
Subscribers: cfe-commits, rsmith, tra
Differential Revision: https://reviews.llvm.org/D25541
llvm-svn: 284158
2016-10-14 04:52:12 +08:00
|
|
|
}
|
|
|
|
}();
|
2016-10-14 02:45:08 +08:00
|
|
|
|
2019-02-08 03:46:42 +08:00
|
|
|
if (DiagKind == DeviceDiagBuilder::K_Nop)
|
2016-10-20 05:03:38 +08:00
|
|
|
return true;
|
|
|
|
|
2016-10-14 02:45:08 +08:00
|
|
|
// Avoid emitting this error twice for the same location. Using a hashtable
|
|
|
|
// like this is unfortunate, but because we must continue parsing as normal
|
|
|
|
// after encountering a deferred error, it's otherwise very tricky for us to
|
|
|
|
// ensure that we only emit this deferred error once.
|
2016-10-22 04:08:52 +08:00
|
|
|
if (!LocsWithCUDACallDiags.insert({Caller, Loc}).second)
|
2016-10-14 02:45:08 +08:00
|
|
|
return true;
|
|
|
|
|
2019-02-08 03:46:42 +08:00
|
|
|
DeviceDiagBuilder(DiagKind, Loc, diag::err_ref_bad_target, Caller, *this)
|
2016-10-14 02:45:08 +08:00
|
|
|
<< IdentifyCUDATarget(Callee) << Callee << IdentifyCUDATarget(Caller);
|
2020-07-16 01:25:32 +08:00
|
|
|
if (!Callee->getBuiltinID())
|
|
|
|
DeviceDiagBuilder(DiagKind, Callee->getLocation(), diag::note_previous_decl,
|
|
|
|
Caller, *this)
|
|
|
|
<< Callee;
|
2019-02-08 03:46:42 +08:00
|
|
|
return DiagKind != DeviceDiagBuilder::K_Immediate &&
|
|
|
|
DiagKind != DeviceDiagBuilder::K_ImmediateWithCallStack;
|
2016-09-29 06:45:58 +08:00
|
|
|
}
|
2016-10-01 01:14:53 +08:00
|
|
|
|
2020-04-17 11:51:40 +08:00
|
|
|
// Check the wrong-sided reference capture of lambda for CUDA/HIP.
|
|
|
|
// A lambda function may capture a stack variable by reference when it is
|
|
|
|
// defined and uses the capture by reference when the lambda is called. When
|
|
|
|
// the capture and use happen on different sides, the capture is invalid and
|
|
|
|
// should be diagnosed.
|
|
|
|
void Sema::CUDACheckLambdaCapture(CXXMethodDecl *Callee,
|
|
|
|
const sema::Capture &Capture) {
|
|
|
|
// In host compilation we only need to check lambda functions emitted on host
|
|
|
|
// side. In such lambda functions, a reference capture is invalid only
|
|
|
|
// if the lambda structure is populated by a device function or kernel then
|
|
|
|
// is passed to and called by a host function. However that is impossible,
|
|
|
|
// since a device function or kernel can only call a device function, also a
|
|
|
|
// kernel cannot pass a lambda back to a host function since we cannot
|
|
|
|
// define a kernel argument type which can hold the lambda before the lambda
|
|
|
|
// itself is defined.
|
|
|
|
if (!LangOpts.CUDAIsDevice)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// File-scope lambda can only do init captures for global variables, which
|
|
|
|
// results in passing by value for these global variables.
|
|
|
|
FunctionDecl *Caller = dyn_cast<FunctionDecl>(CurContext);
|
|
|
|
if (!Caller)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// In device compilation, we only need to check lambda functions which are
|
|
|
|
// emitted on device side. For such lambdas, a reference capture is invalid
|
|
|
|
// only if the lambda structure is populated by a host function then passed
|
|
|
|
// to and called in a device function or kernel.
|
|
|
|
bool CalleeIsDevice = Callee->hasAttr<CUDADeviceAttr>();
|
|
|
|
bool CallerIsHost =
|
|
|
|
!Caller->hasAttr<CUDAGlobalAttr>() && !Caller->hasAttr<CUDADeviceAttr>();
|
|
|
|
bool ShouldCheck = CalleeIsDevice && CallerIsHost;
|
|
|
|
if (!ShouldCheck || !Capture.isReferenceCapture())
|
|
|
|
return;
|
|
|
|
auto DiagKind = DeviceDiagBuilder::K_Deferred;
|
|
|
|
if (Capture.isVariableCapture()) {
|
|
|
|
DeviceDiagBuilder(DiagKind, Capture.getLocation(),
|
|
|
|
diag::err_capture_bad_target, Callee, *this)
|
|
|
|
<< Capture.getVariable();
|
|
|
|
} else if (Capture.isThisCapture()) {
|
|
|
|
DeviceDiagBuilder(DiagKind, Capture.getLocation(),
|
|
|
|
diag::err_capture_bad_target_this_ptr, Callee, *this);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-10-01 01:14:53 +08:00
|
|
|
void Sema::CUDASetLambdaAttrs(CXXMethodDecl *Method) {
|
2016-10-01 07:57:38 +08:00
|
|
|
assert(getLangOpts().CUDA && "Should only be called during CUDA compilation");
|
2016-10-01 01:14:53 +08:00
|
|
|
if (Method->hasAttr<CUDAHostAttr>() || Method->hasAttr<CUDADeviceAttr>())
|
|
|
|
return;
|
2020-04-17 11:51:40 +08:00
|
|
|
Method->addAttr(CUDADeviceAttr::CreateImplicit(Context));
|
|
|
|
Method->addAttr(CUDAHostAttr::CreateImplicit(Context));
|
2016-10-01 01:14:53 +08:00
|
|
|
}
|
2016-12-08 03:27:16 +08:00
|
|
|
|
|
|
|
void Sema::checkCUDATargetOverload(FunctionDecl *NewFD,
|
2016-12-09 03:38:13 +08:00
|
|
|
const LookupResult &Previous) {
|
2016-12-08 03:27:16 +08:00
|
|
|
assert(getLangOpts().CUDA && "Should only be called during CUDA compilation");
|
|
|
|
CUDAFunctionTarget NewTarget = IdentifyCUDATarget(NewFD);
|
|
|
|
for (NamedDecl *OldND : Previous) {
|
|
|
|
FunctionDecl *OldFD = OldND->getAsFunction();
|
|
|
|
if (!OldFD)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
CUDAFunctionTarget OldTarget = IdentifyCUDATarget(OldFD);
|
|
|
|
// Don't allow HD and global functions to overload other functions with the
|
|
|
|
// same signature. We allow overloading based on CUDA attributes so that
|
|
|
|
// functions can have different implementations on the host and device, but
|
|
|
|
// HD/global functions "exist" in some sense on both the host and device, so
|
|
|
|
// should have the same implementation on both sides.
|
|
|
|
if (NewTarget != OldTarget &&
|
|
|
|
((NewTarget == CFT_HostDevice) || (OldTarget == CFT_HostDevice) ||
|
|
|
|
(NewTarget == CFT_Global) || (OldTarget == CFT_Global)) &&
|
|
|
|
!IsOverload(NewFD, OldFD, /* UseMemberUsingDeclRules = */ false,
|
|
|
|
/* ConsiderCudaAttrs = */ false)) {
|
|
|
|
Diag(NewFD->getLocation(), diag::err_cuda_ovl_target)
|
|
|
|
<< NewTarget << NewFD->getDeclName() << OldTarget << OldFD;
|
|
|
|
Diag(OldFD->getLocation(), diag::note_previous_declaration);
|
|
|
|
NewFD->setInvalidDecl();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-12-09 03:38:13 +08:00
|
|
|
|
|
|
|
template <typename AttrTy>
|
|
|
|
static void copyAttrIfPresent(Sema &S, FunctionDecl *FD,
|
|
|
|
const FunctionDecl &TemplateFD) {
|
|
|
|
if (AttrTy *Attribute = TemplateFD.getAttr<AttrTy>()) {
|
|
|
|
AttrTy *Clone = Attribute->clone(S.Context);
|
|
|
|
Clone->setInherited(true);
|
|
|
|
FD->addAttr(Clone);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sema::inheritCUDATargetAttrs(FunctionDecl *FD,
|
|
|
|
const FunctionTemplateDecl &TD) {
|
|
|
|
const FunctionDecl &TemplateFD = *TD.getTemplatedDecl();
|
|
|
|
copyAttrIfPresent<CUDAGlobalAttr>(*this, FD, TemplateFD);
|
|
|
|
copyAttrIfPresent<CUDAHostAttr>(*this, FD, TemplateFD);
|
|
|
|
copyAttrIfPresent<CUDADeviceAttr>(*this, FD, TemplateFD);
|
|
|
|
}
|
2019-02-01 05:34:03 +08:00
|
|
|
|
|
|
|
std::string Sema::getCudaConfigureFuncName() const {
|
|
|
|
if (getLangOpts().HIP)
|
2019-09-25 03:16:40 +08:00
|
|
|
return getLangOpts().HIPUseNewLaunchAPI ? "__hipPushCallConfiguration"
|
|
|
|
: "hipConfigureCall";
|
2019-02-01 05:34:03 +08:00
|
|
|
|
|
|
|
// New CUDA kernel launch sequence.
|
|
|
|
if (CudaFeatureEnabled(Context.getTargetInfo().getSDKVersion(),
|
|
|
|
CudaFeature::CUDA_USES_NEW_LAUNCH))
|
|
|
|
return "__cudaPushCallConfiguration";
|
|
|
|
|
|
|
|
// Legacy CUDA kernel configuration call
|
|
|
|
return "cudaConfigureCall";
|
|
|
|
}
|