forked from OSchip/llvm-project
Make sure that we evaluate __attribute__((enable_if)) on a method with no overloads. Patch by Ettore Speziale!
llvm-svn: 245985
This commit is contained in:
parent
2cd2f39ea5
commit
e283c5529e
|
@ -5826,10 +5826,11 @@ EnableIfAttr *Sema::CheckEnableIf(FunctionDecl *Function, ArrayRef<Expr *> Args,
|
|||
|
||||
SFINAETrap Trap(*this);
|
||||
|
||||
// Convert the arguments.
|
||||
SmallVector<Expr *, 16> ConvertedArgs;
|
||||
bool InitializationFailed = false;
|
||||
bool ContainsValueDependentExpr = false;
|
||||
|
||||
// Convert the arguments.
|
||||
for (unsigned i = 0, e = Args.size(); i != e; ++i) {
|
||||
if (i == 0 && !MissingImplicitThis && isa<CXXMethodDecl>(Function) &&
|
||||
!cast<CXXMethodDecl>(Function)->isStatic() &&
|
||||
|
@ -5863,6 +5864,28 @@ EnableIfAttr *Sema::CheckEnableIf(FunctionDecl *Function, ArrayRef<Expr *> Args,
|
|||
if (InitializationFailed || Trap.hasErrorOccurred())
|
||||
return cast<EnableIfAttr>(Attrs[0]);
|
||||
|
||||
// Push default arguments if needed.
|
||||
if (!Function->isVariadic() && Args.size() < Function->getNumParams()) {
|
||||
for (unsigned i = Args.size(), e = Function->getNumParams(); i != e; ++i) {
|
||||
ParmVarDecl *P = Function->getParamDecl(i);
|
||||
ExprResult R = PerformCopyInitialization(
|
||||
InitializedEntity::InitializeParameter(Context,
|
||||
Function->getParamDecl(i)),
|
||||
SourceLocation(),
|
||||
P->hasUninstantiatedDefaultArg() ? P->getUninstantiatedDefaultArg()
|
||||
: P->getDefaultArg());
|
||||
if (R.isInvalid()) {
|
||||
InitializationFailed = true;
|
||||
break;
|
||||
}
|
||||
ContainsValueDependentExpr |= R.get()->isValueDependent();
|
||||
ConvertedArgs.push_back(R.get());
|
||||
}
|
||||
|
||||
if (InitializationFailed || Trap.hasErrorOccurred())
|
||||
return cast<EnableIfAttr>(Attrs[0]);
|
||||
}
|
||||
|
||||
for (AttrVec::iterator I = Attrs.begin(); I != E; ++I) {
|
||||
APValue Result;
|
||||
EnableIfAttr *EIA = cast<EnableIfAttr>(*I);
|
||||
|
@ -11604,6 +11627,16 @@ Sema::BuildCallToMemberFunction(Scope *S, Expr *MemExprE,
|
|||
FoundDecl = MemExpr->getFoundDecl();
|
||||
Qualifier = MemExpr->getQualifier();
|
||||
UnbridgedCasts.restore();
|
||||
|
||||
if (const EnableIfAttr *Attr = CheckEnableIf(Method, Args, true)) {
|
||||
Diag(MemExprE->getLocStart(),
|
||||
diag::err_ovl_no_viable_member_function_in_call)
|
||||
<< Method << Method->getSourceRange();
|
||||
Diag(Method->getLocation(),
|
||||
diag::note_ovl_candidate_disabled_by_enable_if_attr)
|
||||
<< Attr->getCond()->getSourceRange() << Attr->getMessage();
|
||||
return ExprError();
|
||||
}
|
||||
} else {
|
||||
UnresolvedMemberExpr *UnresExpr = cast<UnresolvedMemberExpr>(NakedMemExpr);
|
||||
Qualifier = UnresExpr->getQualifier();
|
||||
|
|
|
@ -11,6 +11,10 @@ struct X {
|
|||
void f(int n) __attribute__((enable_if(n == 0, "chosen when 'n' is zero")));
|
||||
void f(int n) __attribute__((enable_if(n == 1, "chosen when 'n' is one"))); // expected-note{{member declaration nearly matches}} expected-note{{candidate disabled: chosen when 'n' is one}}
|
||||
|
||||
void g(int n) __attribute__((enable_if(n == 0, "chosen when 'n' is zero"))); // expected-note{{candidate disabled: chosen when 'n' is zero}}
|
||||
|
||||
void h(int n, int m = 0) __attribute((enable_if(m == 0, "chosen when 'm' is zero"))); // expected-note{{candidate disabled: chosen when 'm' is zero}}
|
||||
|
||||
static void s(int n) __attribute__((enable_if(n == 0, "chosen when 'n' is zero"))); // expected-note2{{candidate disabled: chosen when 'n' is zero}}
|
||||
|
||||
void conflict(int n) __attribute__((enable_if(n+n == 10, "chosen when 'n' is five"))); // expected-note{{candidate function}}
|
||||
|
@ -40,6 +44,15 @@ void deprec2(int i) __attribute__((enable_if(old() == 0, "chosen when old() is z
|
|||
void overloaded(int);
|
||||
void overloaded(long);
|
||||
|
||||
struct Int {
|
||||
constexpr Int(int i) : i(i) { }
|
||||
constexpr operator int() const { return i; }
|
||||
int i;
|
||||
};
|
||||
|
||||
void default_argument(int n, int m = 0) __attribute__((enable_if(m == 0, "chosen when 'm' is zero"))); // expected-note{{candidate disabled: chosen when 'm' is zero}}
|
||||
void default_argument_promotion(int n, int m = Int(0)) __attribute__((enable_if(m == 0, "chosen when 'm' is zero"))); // expected-note{{candidate disabled: chosen when 'm' is zero}}
|
||||
|
||||
struct Nothing { };
|
||||
template<typename T> void typedep(T t) __attribute__((enable_if(t, ""))); // expected-note{{candidate disabled:}} expected-error{{value of type 'Nothing' is not contextually convertible to 'bool'}}
|
||||
template<int N> void valuedep() __attribute__((enable_if(N == 1, "")));
|
||||
|
@ -58,6 +71,12 @@ void test() {
|
|||
x.f(2); // no error, suppressed by erroneous out-of-line definition
|
||||
x.f(3); // expected-error{{no matching member function for call to 'f'}}
|
||||
|
||||
x.g(0);
|
||||
x.g(1); // expected-error{{no matching member function for call to 'g'}}
|
||||
|
||||
x.h(0);
|
||||
x.h(1, 2); // expected-error{{no matching member function for call to 'h'}}
|
||||
|
||||
x.s(0);
|
||||
x.s(1); // expected-error{{no matching member function for call to 's'}}
|
||||
|
||||
|
@ -70,6 +89,12 @@ void test() {
|
|||
|
||||
overloaded(x);
|
||||
|
||||
default_argument(0);
|
||||
default_argument(1, 2); // expected-error{{no matching function for call to 'default_argument'}}
|
||||
|
||||
default_argument_promotion(0);
|
||||
default_argument_promotion(1, 2); // expected-error{{no matching function for call to 'default_argument_promotion'}}
|
||||
|
||||
int i = x(1); // expected-error{{no matching function for call to object of type 'X'}}
|
||||
|
||||
Nothing n;
|
||||
|
@ -88,6 +113,18 @@ template <class T> void test3() {
|
|||
fn3(sizeof(T) == 1);
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
struct Y {
|
||||
T h(int n, int m = 0) __attribute__((enable_if(m == 0, "chosen when 'm' is zero"))); // expected-note{{candidate disabled: chosen when 'm' is zero}}
|
||||
};
|
||||
|
||||
void test4() {
|
||||
Y<int> y;
|
||||
|
||||
int t0 = y.h(0);
|
||||
int t1 = y.h(1, 2); // expected-error{{no matching member function for call to 'h'}}
|
||||
}
|
||||
|
||||
// FIXME: issue an error (without instantiation) because ::h(T()) is not
|
||||
// convertible to bool, because return types aren't overloadable.
|
||||
void h(int);
|
||||
|
|
Loading…
Reference in New Issue