2008-10-22 00:13:35 +08:00
|
|
|
//===--- SemaOverload.cpp - C++ Overloading ---------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file provides Sema routines for C++ overloading.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "Sema.h"
|
2009-11-18 15:57:50 +08:00
|
|
|
#include "Lookup.h"
|
2009-12-23 05:44:34 +08:00
|
|
|
#include "SemaInit.h"
|
2008-10-22 00:13:35 +08:00
|
|
|
#include "clang/Basic/Diagnostic.h"
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
#include "clang/Lex/Preprocessor.h"
|
2008-10-22 00:13:35 +08:00
|
|
|
#include "clang/AST/ASTContext.h"
|
2009-10-07 01:59:45 +08:00
|
|
|
#include "clang/AST/CXXInheritance.h"
|
2008-10-22 00:13:35 +08:00
|
|
|
#include "clang/AST/Expr.h"
|
2008-11-20 05:05:33 +08:00
|
|
|
#include "clang/AST/ExprCXX.h"
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
#include "clang/AST/TypeOrdering.h"
|
2009-08-27 07:45:07 +08:00
|
|
|
#include "clang/Basic/PartialDiagnostic.h"
|
2008-11-14 04:12:29 +08:00
|
|
|
#include "llvm/ADT/SmallPtrSet.h"
|
2008-12-23 08:26:44 +08:00
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2008-10-22 00:13:35 +08:00
|
|
|
#include <algorithm>
|
2009-08-24 21:25:12 +08:00
|
|
|
#include <cstdio>
|
2008-10-22 00:13:35 +08:00
|
|
|
|
|
|
|
namespace clang {
|
|
|
|
|
|
|
|
/// GetConversionCategory - Retrieve the implicit conversion
|
|
|
|
/// category corresponding to the given implicit conversion kind.
|
2009-09-09 23:08:12 +08:00
|
|
|
ImplicitConversionCategory
|
2008-10-22 00:13:35 +08:00
|
|
|
GetConversionCategory(ImplicitConversionKind Kind) {
|
|
|
|
static const ImplicitConversionCategory
|
|
|
|
Category[(int)ICK_Num_Conversion_Kinds] = {
|
|
|
|
ICC_Identity,
|
|
|
|
ICC_Lvalue_Transformation,
|
|
|
|
ICC_Lvalue_Transformation,
|
|
|
|
ICC_Lvalue_Transformation,
|
2009-12-09 08:47:37 +08:00
|
|
|
ICC_Identity,
|
2008-10-22 00:13:35 +08:00
|
|
|
ICC_Qualification_Adjustment,
|
|
|
|
ICC_Promotion,
|
|
|
|
ICC_Promotion,
|
2009-02-12 08:15:05 +08:00
|
|
|
ICC_Promotion,
|
|
|
|
ICC_Conversion,
|
|
|
|
ICC_Conversion,
|
2008-10-22 00:13:35 +08:00
|
|
|
ICC_Conversion,
|
|
|
|
ICC_Conversion,
|
|
|
|
ICC_Conversion,
|
|
|
|
ICC_Conversion,
|
|
|
|
ICC_Conversion,
|
2008-10-29 10:00:59 +08:00
|
|
|
ICC_Conversion,
|
Initial implementation of function overloading in C.
This commit adds a new attribute, "overloadable", that enables C++
function overloading in C. The attribute can only be added to function
declarations, e.g.,
int *f(int) __attribute__((overloadable));
If the "overloadable" attribute exists on a function with a given
name, *all* functions with that name (and in that scope) must have the
"overloadable" attribute. Sets of overloaded functions with the
"overloadable" attribute then follow the normal C++ rules for
overloaded functions, e.g., overloads must have different
parameter-type-lists from each other.
When calling an overloaded function in C, we follow the same
overloading rules as C++, with three extensions to the set of standard
conversions:
- A value of a given struct or union type T can be converted to the
type T. This is just the identity conversion. (In C++, this would
go through a copy constructor).
- A value of pointer type T* can be converted to a value of type U*
if T and U are compatible types. This conversion has Conversion
rank (it's considered a pointer conversion in C).
- A value of type T can be converted to a value of type U if T and U
are compatible (and are not both pointer types). This conversion
has Conversion rank (it's considered to be a new kind of
conversion unique to C, a "compatible" conversion).
Known defects (and, therefore, next steps):
1) The standard-conversion handling does not understand conversions
involving _Complex or vector extensions, so it is likely to get
these wrong. We need to add these conversions.
2) All overloadable functions with the same name will have the same
linkage name, which means we'll get a collision in the linker (if
not sooner). We'll need to mangle the names of these functions.
llvm-svn: 64336
2009-02-12 07:02:49 +08:00
|
|
|
ICC_Conversion,
|
2008-10-22 00:13:35 +08:00
|
|
|
ICC_Conversion
|
|
|
|
};
|
|
|
|
return Category[(int)Kind];
|
|
|
|
}
|
|
|
|
|
|
|
|
/// GetConversionRank - Retrieve the implicit conversion rank
|
|
|
|
/// corresponding to the given implicit conversion kind.
|
|
|
|
ImplicitConversionRank GetConversionRank(ImplicitConversionKind Kind) {
|
|
|
|
static const ImplicitConversionRank
|
|
|
|
Rank[(int)ICK_Num_Conversion_Kinds] = {
|
|
|
|
ICR_Exact_Match,
|
|
|
|
ICR_Exact_Match,
|
|
|
|
ICR_Exact_Match,
|
|
|
|
ICR_Exact_Match,
|
|
|
|
ICR_Exact_Match,
|
2009-12-09 08:47:37 +08:00
|
|
|
ICR_Exact_Match,
|
2008-10-22 00:13:35 +08:00
|
|
|
ICR_Promotion,
|
|
|
|
ICR_Promotion,
|
2009-02-12 08:15:05 +08:00
|
|
|
ICR_Promotion,
|
|
|
|
ICR_Conversion,
|
|
|
|
ICR_Conversion,
|
2008-10-22 00:13:35 +08:00
|
|
|
ICR_Conversion,
|
|
|
|
ICR_Conversion,
|
|
|
|
ICR_Conversion,
|
|
|
|
ICR_Conversion,
|
|
|
|
ICR_Conversion,
|
2008-10-29 10:00:59 +08:00
|
|
|
ICR_Conversion,
|
Initial implementation of function overloading in C.
This commit adds a new attribute, "overloadable", that enables C++
function overloading in C. The attribute can only be added to function
declarations, e.g.,
int *f(int) __attribute__((overloadable));
If the "overloadable" attribute exists on a function with a given
name, *all* functions with that name (and in that scope) must have the
"overloadable" attribute. Sets of overloaded functions with the
"overloadable" attribute then follow the normal C++ rules for
overloaded functions, e.g., overloads must have different
parameter-type-lists from each other.
When calling an overloaded function in C, we follow the same
overloading rules as C++, with three extensions to the set of standard
conversions:
- A value of a given struct or union type T can be converted to the
type T. This is just the identity conversion. (In C++, this would
go through a copy constructor).
- A value of pointer type T* can be converted to a value of type U*
if T and U are compatible types. This conversion has Conversion
rank (it's considered a pointer conversion in C).
- A value of type T can be converted to a value of type U if T and U
are compatible (and are not both pointer types). This conversion
has Conversion rank (it's considered to be a new kind of
conversion unique to C, a "compatible" conversion).
Known defects (and, therefore, next steps):
1) The standard-conversion handling does not understand conversions
involving _Complex or vector extensions, so it is likely to get
these wrong. We need to add these conversions.
2) All overloadable functions with the same name will have the same
linkage name, which means we'll get a collision in the linker (if
not sooner). We'll need to mangle the names of these functions.
llvm-svn: 64336
2009-02-12 07:02:49 +08:00
|
|
|
ICR_Conversion,
|
2008-10-22 00:13:35 +08:00
|
|
|
ICR_Conversion
|
|
|
|
};
|
|
|
|
return Rank[(int)Kind];
|
|
|
|
}
|
|
|
|
|
|
|
|
/// GetImplicitConversionName - Return the name of this kind of
|
|
|
|
/// implicit conversion.
|
|
|
|
const char* GetImplicitConversionName(ImplicitConversionKind Kind) {
|
2009-12-24 01:49:57 +08:00
|
|
|
static const char* const Name[(int)ICK_Num_Conversion_Kinds] = {
|
2008-10-22 00:13:35 +08:00
|
|
|
"No conversion",
|
|
|
|
"Lvalue-to-rvalue",
|
|
|
|
"Array-to-pointer",
|
|
|
|
"Function-to-pointer",
|
2009-12-09 08:47:37 +08:00
|
|
|
"Noreturn adjustment",
|
2008-10-22 00:13:35 +08:00
|
|
|
"Qualification",
|
|
|
|
"Integral promotion",
|
|
|
|
"Floating point promotion",
|
2009-02-12 08:15:05 +08:00
|
|
|
"Complex promotion",
|
2008-10-22 00:13:35 +08:00
|
|
|
"Integral conversion",
|
|
|
|
"Floating conversion",
|
2009-02-12 08:15:05 +08:00
|
|
|
"Complex conversion",
|
2008-10-22 00:13:35 +08:00
|
|
|
"Floating-integral conversion",
|
2009-02-12 08:15:05 +08:00
|
|
|
"Complex-real conversion",
|
2008-10-22 00:13:35 +08:00
|
|
|
"Pointer conversion",
|
|
|
|
"Pointer-to-member conversion",
|
2008-10-29 10:00:59 +08:00
|
|
|
"Boolean conversion",
|
Initial implementation of function overloading in C.
This commit adds a new attribute, "overloadable", that enables C++
function overloading in C. The attribute can only be added to function
declarations, e.g.,
int *f(int) __attribute__((overloadable));
If the "overloadable" attribute exists on a function with a given
name, *all* functions with that name (and in that scope) must have the
"overloadable" attribute. Sets of overloaded functions with the
"overloadable" attribute then follow the normal C++ rules for
overloaded functions, e.g., overloads must have different
parameter-type-lists from each other.
When calling an overloaded function in C, we follow the same
overloading rules as C++, with three extensions to the set of standard
conversions:
- A value of a given struct or union type T can be converted to the
type T. This is just the identity conversion. (In C++, this would
go through a copy constructor).
- A value of pointer type T* can be converted to a value of type U*
if T and U are compatible types. This conversion has Conversion
rank (it's considered a pointer conversion in C).
- A value of type T can be converted to a value of type U if T and U
are compatible (and are not both pointer types). This conversion
has Conversion rank (it's considered to be a new kind of
conversion unique to C, a "compatible" conversion).
Known defects (and, therefore, next steps):
1) The standard-conversion handling does not understand conversions
involving _Complex or vector extensions, so it is likely to get
these wrong. We need to add these conversions.
2) All overloadable functions with the same name will have the same
linkage name, which means we'll get a collision in the linker (if
not sooner). We'll need to mangle the names of these functions.
llvm-svn: 64336
2009-02-12 07:02:49 +08:00
|
|
|
"Compatible-types conversion",
|
2008-10-29 10:00:59 +08:00
|
|
|
"Derived-to-base conversion"
|
2008-10-22 00:13:35 +08:00
|
|
|
};
|
|
|
|
return Name[Kind];
|
|
|
|
}
|
|
|
|
|
2008-11-01 00:23:19 +08:00
|
|
|
/// StandardConversionSequence - Set the standard conversion
|
|
|
|
/// sequence to the identity conversion.
|
|
|
|
void StandardConversionSequence::setAsIdentityConversion() {
|
|
|
|
First = ICK_Identity;
|
|
|
|
Second = ICK_Identity;
|
|
|
|
Third = ICK_Identity;
|
|
|
|
Deprecated = false;
|
|
|
|
ReferenceBinding = false;
|
|
|
|
DirectBinding = false;
|
2009-03-30 06:46:24 +08:00
|
|
|
RRefBinding = false;
|
2008-11-04 03:09:14 +08:00
|
|
|
CopyConstructor = 0;
|
2008-11-01 00:23:19 +08:00
|
|
|
}
|
|
|
|
|
2008-10-22 00:13:35 +08:00
|
|
|
/// getRank - Retrieve the rank of this standard conversion sequence
|
|
|
|
/// (C++ 13.3.3.1.1p3). The rank is the largest rank of each of the
|
|
|
|
/// implicit conversions.
|
|
|
|
ImplicitConversionRank StandardConversionSequence::getRank() const {
|
|
|
|
ImplicitConversionRank Rank = ICR_Exact_Match;
|
|
|
|
if (GetConversionRank(First) > Rank)
|
|
|
|
Rank = GetConversionRank(First);
|
|
|
|
if (GetConversionRank(Second) > Rank)
|
|
|
|
Rank = GetConversionRank(Second);
|
|
|
|
if (GetConversionRank(Third) > Rank)
|
|
|
|
Rank = GetConversionRank(Third);
|
|
|
|
return Rank;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// isPointerConversionToBool - Determines whether this conversion is
|
|
|
|
/// a conversion of a pointer or pointer-to-member to bool. This is
|
2009-09-09 23:08:12 +08:00
|
|
|
/// used as part of the ranking of standard conversion sequences
|
2008-10-22 00:13:35 +08:00
|
|
|
/// (C++ 13.3.3.2p4).
|
2009-09-09 23:08:12 +08:00
|
|
|
bool StandardConversionSequence::isPointerConversionToBool() const {
|
2008-10-22 00:13:35 +08:00
|
|
|
QualType FromType = QualType::getFromOpaquePtr(FromTypePtr);
|
|
|
|
QualType ToType = QualType::getFromOpaquePtr(ToTypePtr);
|
|
|
|
|
|
|
|
// Note that FromType has not necessarily been transformed by the
|
|
|
|
// array-to-pointer or function-to-pointer implicit conversions, so
|
|
|
|
// check for their presence as well as checking whether FromType is
|
|
|
|
// a pointer.
|
|
|
|
if (ToType->isBooleanType() &&
|
2008-12-23 08:53:59 +08:00
|
|
|
(FromType->isPointerType() || FromType->isBlockPointerType() ||
|
2008-10-22 00:13:35 +08:00
|
|
|
First == ICK_Array_To_Pointer || First == ICK_Function_To_Pointer))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-10-23 08:40:37 +08:00
|
|
|
/// isPointerConversionToVoidPointer - Determines whether this
|
|
|
|
/// conversion is a conversion of a pointer to a void pointer. This is
|
|
|
|
/// used as part of the ranking of standard conversion sequences (C++
|
|
|
|
/// 13.3.3.2p4).
|
2009-09-09 23:08:12 +08:00
|
|
|
bool
|
2008-10-23 08:40:37 +08:00
|
|
|
StandardConversionSequence::
|
2009-09-09 23:08:12 +08:00
|
|
|
isPointerConversionToVoidPointer(ASTContext& Context) const {
|
2008-10-23 08:40:37 +08:00
|
|
|
QualType FromType = QualType::getFromOpaquePtr(FromTypePtr);
|
|
|
|
QualType ToType = QualType::getFromOpaquePtr(ToTypePtr);
|
|
|
|
|
|
|
|
// Note that FromType has not necessarily been transformed by the
|
|
|
|
// array-to-pointer implicit conversion, so check for its presence
|
|
|
|
// and redo the conversion to get a pointer.
|
|
|
|
if (First == ICK_Array_To_Pointer)
|
|
|
|
FromType = Context.getArrayDecayedType(FromType);
|
|
|
|
|
2009-12-14 05:37:05 +08:00
|
|
|
if (Second == ICK_Pointer_Conversion && FromType->isPointerType())
|
2009-07-30 05:53:49 +08:00
|
|
|
if (const PointerType* ToPtrType = ToType->getAs<PointerType>())
|
2008-10-23 08:40:37 +08:00
|
|
|
return ToPtrType->getPointeeType()->isVoidType();
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-10-22 00:13:35 +08:00
|
|
|
/// DebugPrint - Print this standard conversion sequence to standard
|
|
|
|
/// error. Useful for debugging overloading issues.
|
|
|
|
void StandardConversionSequence::DebugPrint() const {
|
|
|
|
bool PrintedSomething = false;
|
|
|
|
if (First != ICK_Identity) {
|
|
|
|
fprintf(stderr, "%s", GetImplicitConversionName(First));
|
|
|
|
PrintedSomething = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Second != ICK_Identity) {
|
|
|
|
if (PrintedSomething) {
|
|
|
|
fprintf(stderr, " -> ");
|
|
|
|
}
|
|
|
|
fprintf(stderr, "%s", GetImplicitConversionName(Second));
|
2008-11-04 03:09:14 +08:00
|
|
|
|
|
|
|
if (CopyConstructor) {
|
|
|
|
fprintf(stderr, " (by copy constructor)");
|
|
|
|
} else if (DirectBinding) {
|
|
|
|
fprintf(stderr, " (direct reference binding)");
|
|
|
|
} else if (ReferenceBinding) {
|
|
|
|
fprintf(stderr, " (reference binding)");
|
|
|
|
}
|
2008-10-22 00:13:35 +08:00
|
|
|
PrintedSomething = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Third != ICK_Identity) {
|
|
|
|
if (PrintedSomething) {
|
|
|
|
fprintf(stderr, " -> ");
|
|
|
|
}
|
|
|
|
fprintf(stderr, "%s", GetImplicitConversionName(Third));
|
|
|
|
PrintedSomething = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!PrintedSomething) {
|
|
|
|
fprintf(stderr, "No conversions required");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// DebugPrint - Print this user-defined conversion sequence to standard
|
|
|
|
/// error. Useful for debugging overloading issues.
|
|
|
|
void UserDefinedConversionSequence::DebugPrint() const {
|
|
|
|
if (Before.First || Before.Second || Before.Third) {
|
|
|
|
Before.DebugPrint();
|
|
|
|
fprintf(stderr, " -> ");
|
|
|
|
}
|
2008-11-24 13:29:24 +08:00
|
|
|
fprintf(stderr, "'%s'", ConversionFunction->getNameAsString().c_str());
|
2008-10-22 00:13:35 +08:00
|
|
|
if (After.First || After.Second || After.Third) {
|
|
|
|
fprintf(stderr, " -> ");
|
|
|
|
After.DebugPrint();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// DebugPrint - Print this implicit conversion sequence to standard
|
|
|
|
/// error. Useful for debugging overloading issues.
|
|
|
|
void ImplicitConversionSequence::DebugPrint() const {
|
|
|
|
switch (ConversionKind) {
|
|
|
|
case StandardConversion:
|
|
|
|
fprintf(stderr, "Standard conversion: ");
|
|
|
|
Standard.DebugPrint();
|
|
|
|
break;
|
|
|
|
case UserDefinedConversion:
|
|
|
|
fprintf(stderr, "User-defined conversion: ");
|
|
|
|
UserDefined.DebugPrint();
|
|
|
|
break;
|
|
|
|
case EllipsisConversion:
|
|
|
|
fprintf(stderr, "Ellipsis conversion");
|
|
|
|
break;
|
|
|
|
case BadConversion:
|
|
|
|
fprintf(stderr, "Bad conversion");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsOverload - Determine whether the given New declaration is an
|
2009-12-02 16:47:38 +08:00
|
|
|
// overload of the declarations in Old. This routine returns false if
|
|
|
|
// New and Old cannot be overloaded, e.g., if New has the same
|
|
|
|
// signature as some function in Old (C++ 1.3.10) or if the Old
|
|
|
|
// declarations aren't functions (or function templates) at all. When
|
2009-12-09 11:35:25 +08:00
|
|
|
// it does return false, MatchedDecl will point to the decl that New
|
|
|
|
// cannot be overloaded with. This decl may be a UsingShadowDecl on
|
|
|
|
// top of the underlying declaration.
|
2008-10-22 00:13:35 +08:00
|
|
|
//
|
|
|
|
// Example: Given the following input:
|
|
|
|
//
|
|
|
|
// void f(int, float); // #1
|
|
|
|
// void f(int, int); // #2
|
|
|
|
// int f(int, int); // #3
|
|
|
|
//
|
|
|
|
// When we process #1, there is no previous declaration of "f",
|
2009-09-09 23:08:12 +08:00
|
|
|
// so IsOverload will not be used.
|
2008-10-22 00:13:35 +08:00
|
|
|
//
|
2009-12-02 16:47:38 +08:00
|
|
|
// When we process #2, Old contains only the FunctionDecl for #1. By
|
|
|
|
// comparing the parameter types, we see that #1 and #2 are overloaded
|
|
|
|
// (since they have different signatures), so this routine returns
|
|
|
|
// false; MatchedDecl is unchanged.
|
2008-10-22 00:13:35 +08:00
|
|
|
//
|
2009-12-02 16:47:38 +08:00
|
|
|
// When we process #3, Old is an overload set containing #1 and #2. We
|
|
|
|
// compare the signatures of #3 to #1 (they're overloaded, so we do
|
|
|
|
// nothing) and then #3 to #2. Since the signatures of #3 and #2 are
|
|
|
|
// identical (return types of functions are not part of the
|
2008-10-22 00:13:35 +08:00
|
|
|
// signature), IsOverload returns false and MatchedDecl will be set to
|
|
|
|
// point to the FunctionDecl for #2.
|
2009-12-09 11:35:25 +08:00
|
|
|
Sema::OverloadKind
|
2009-12-10 17:41:52 +08:00
|
|
|
Sema::CheckOverload(FunctionDecl *New, const LookupResult &Old,
|
|
|
|
NamedDecl *&Match) {
|
2009-12-02 16:47:38 +08:00
|
|
|
for (LookupResult::iterator I = Old.begin(), E = Old.end();
|
2009-11-19 06:49:29 +08:00
|
|
|
I != E; ++I) {
|
2009-12-02 16:47:38 +08:00
|
|
|
NamedDecl *OldD = (*I)->getUnderlyingDecl();
|
|
|
|
if (FunctionTemplateDecl *OldT = dyn_cast<FunctionTemplateDecl>(OldD)) {
|
2009-11-19 06:49:29 +08:00
|
|
|
if (!IsOverload(New, OldT->getTemplatedDecl())) {
|
2009-12-09 11:35:25 +08:00
|
|
|
Match = *I;
|
|
|
|
return Ovl_Match;
|
2008-10-22 00:13:35 +08:00
|
|
|
}
|
2009-12-02 16:47:38 +08:00
|
|
|
} else if (FunctionDecl *OldF = dyn_cast<FunctionDecl>(OldD)) {
|
2009-11-19 06:49:29 +08:00
|
|
|
if (!IsOverload(New, OldF)) {
|
2009-12-09 11:35:25 +08:00
|
|
|
Match = *I;
|
|
|
|
return Ovl_Match;
|
2009-11-19 06:49:29 +08:00
|
|
|
}
|
2009-12-10 17:41:52 +08:00
|
|
|
} else if (isa<UsingDecl>(OldD) || isa<TagDecl>(OldD)) {
|
|
|
|
// We can overload with these, which can show up when doing
|
|
|
|
// redeclaration checks for UsingDecls.
|
|
|
|
assert(Old.getLookupKind() == LookupUsingDeclName);
|
|
|
|
} else if (isa<UnresolvedUsingValueDecl>(OldD)) {
|
|
|
|
// Optimistically assume that an unresolved using decl will
|
|
|
|
// overload; if it doesn't, we'll have to diagnose during
|
|
|
|
// template instantiation.
|
|
|
|
} else {
|
2009-11-19 06:49:29 +08:00
|
|
|
// (C++ 13p1):
|
|
|
|
// Only function declarations can be overloaded; object and type
|
|
|
|
// declarations cannot be overloaded.
|
2009-12-09 11:35:25 +08:00
|
|
|
Match = *I;
|
|
|
|
return Ovl_NonFunction;
|
2008-10-22 00:13:35 +08:00
|
|
|
}
|
2009-11-19 06:49:29 +08:00
|
|
|
}
|
|
|
|
|
2009-12-09 11:35:25 +08:00
|
|
|
return Ovl_Overload;
|
2009-11-19 06:49:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Sema::IsOverload(FunctionDecl *New, FunctionDecl *Old) {
|
|
|
|
FunctionTemplateDecl *OldTemplate = Old->getDescribedFunctionTemplate();
|
|
|
|
FunctionTemplateDecl *NewTemplate = New->getDescribedFunctionTemplate();
|
2008-10-22 00:13:35 +08:00
|
|
|
|
2009-11-19 06:49:29 +08:00
|
|
|
// C++ [temp.fct]p2:
|
|
|
|
// A function template can be overloaded with other function templates
|
|
|
|
// and with normal (non-template) functions.
|
|
|
|
if ((OldTemplate == 0) != (NewTemplate == 0))
|
2008-10-22 00:13:35 +08:00
|
|
|
return true;
|
|
|
|
|
2009-11-19 06:49:29 +08:00
|
|
|
// Is the function New an overload of the function Old?
|
|
|
|
QualType OldQType = Context.getCanonicalType(Old->getType());
|
|
|
|
QualType NewQType = Context.getCanonicalType(New->getType());
|
|
|
|
|
|
|
|
// Compare the signatures (C++ 1.3.10) of the two functions to
|
|
|
|
// determine whether they are overloads. If we find any mismatch
|
|
|
|
// in the signature, they are overloads.
|
|
|
|
|
|
|
|
// If either of these functions is a K&R-style function (no
|
|
|
|
// prototype), then we consider them to have matching signatures.
|
|
|
|
if (isa<FunctionNoProtoType>(OldQType.getTypePtr()) ||
|
|
|
|
isa<FunctionNoProtoType>(NewQType.getTypePtr()))
|
2008-10-22 00:13:35 +08:00
|
|
|
return false;
|
2009-11-19 06:49:29 +08:00
|
|
|
|
|
|
|
FunctionProtoType* OldType = cast<FunctionProtoType>(OldQType);
|
|
|
|
FunctionProtoType* NewType = cast<FunctionProtoType>(NewQType);
|
|
|
|
|
|
|
|
// The signature of a function includes the types of its
|
|
|
|
// parameters (C++ 1.3.10), which includes the presence or absence
|
|
|
|
// of the ellipsis; see C++ DR 357).
|
|
|
|
if (OldQType != NewQType &&
|
|
|
|
(OldType->getNumArgs() != NewType->getNumArgs() ||
|
|
|
|
OldType->isVariadic() != NewType->isVariadic() ||
|
|
|
|
!std::equal(OldType->arg_type_begin(), OldType->arg_type_end(),
|
|
|
|
NewType->arg_type_begin())))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// C++ [temp.over.link]p4:
|
|
|
|
// The signature of a function template consists of its function
|
|
|
|
// signature, its return type and its template parameter list. The names
|
|
|
|
// of the template parameters are significant only for establishing the
|
|
|
|
// relationship between the template parameters and the rest of the
|
|
|
|
// signature.
|
|
|
|
//
|
|
|
|
// We check the return type and template parameter lists for function
|
|
|
|
// templates first; the remaining checks follow.
|
|
|
|
if (NewTemplate &&
|
|
|
|
(!TemplateParameterListsAreEqual(NewTemplate->getTemplateParameters(),
|
|
|
|
OldTemplate->getTemplateParameters(),
|
|
|
|
false, TPL_TemplateMatch) ||
|
|
|
|
OldType->getResultType() != NewType->getResultType()))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// If the function is a class member, its signature includes the
|
|
|
|
// cv-qualifiers (if any) on the function itself.
|
|
|
|
//
|
|
|
|
// As part of this, also check whether one of the member functions
|
|
|
|
// is static, in which case they are not overloads (C++
|
|
|
|
// 13.1p2). While not part of the definition of the signature,
|
|
|
|
// this check is important to determine whether these functions
|
|
|
|
// can be overloaded.
|
|
|
|
CXXMethodDecl* OldMethod = dyn_cast<CXXMethodDecl>(Old);
|
|
|
|
CXXMethodDecl* NewMethod = dyn_cast<CXXMethodDecl>(New);
|
|
|
|
if (OldMethod && NewMethod &&
|
|
|
|
!OldMethod->isStatic() && !NewMethod->isStatic() &&
|
|
|
|
OldMethod->getTypeQualifiers() != NewMethod->getTypeQualifiers())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// The signatures match; this is not an overload.
|
|
|
|
return false;
|
2008-10-22 00:13:35 +08:00
|
|
|
}
|
|
|
|
|
2008-10-29 08:13:59 +08:00
|
|
|
/// TryImplicitConversion - Attempt to perform an implicit conversion
|
|
|
|
/// from the given expression (Expr) to the given type (ToType). This
|
|
|
|
/// function returns an implicit conversion sequence that can be used
|
|
|
|
/// to perform the initialization. Given
|
2008-10-22 00:13:35 +08:00
|
|
|
///
|
|
|
|
/// void f(float f);
|
|
|
|
/// void g(int i) { f(i); }
|
|
|
|
///
|
|
|
|
/// this routine would produce an implicit conversion sequence to
|
|
|
|
/// describe the initialization of f from i, which will be a standard
|
|
|
|
/// conversion sequence containing an lvalue-to-rvalue conversion (C++
|
|
|
|
/// 4.1) followed by a floating-integral conversion (C++ 4.9).
|
|
|
|
//
|
|
|
|
/// Note that this routine only determines how the conversion can be
|
|
|
|
/// performed; it does not actually perform the conversion. As such,
|
|
|
|
/// it will not produce any diagnostics if no conversion is available,
|
|
|
|
/// but will instead return an implicit conversion sequence of kind
|
|
|
|
/// "BadConversion".
|
2008-11-04 03:09:14 +08:00
|
|
|
///
|
|
|
|
/// If @p SuppressUserConversions, then user-defined conversions are
|
|
|
|
/// not permitted.
|
2009-01-14 23:45:31 +08:00
|
|
|
/// If @p AllowExplicit, then explicit user-defined conversions are
|
|
|
|
/// permitted.
|
2009-04-13 01:16:29 +08:00
|
|
|
/// If @p ForceRValue, then overloading is performed as if From was an rvalue,
|
|
|
|
/// no matter its actual lvalueness.
|
2009-10-02 04:39:51 +08:00
|
|
|
/// If @p UserCast, the implicit conversion is being done for a user-specified
|
|
|
|
/// cast.
|
2008-10-22 00:13:35 +08:00
|
|
|
ImplicitConversionSequence
|
2009-08-28 01:14:02 +08:00
|
|
|
Sema::TryImplicitConversion(Expr* From, QualType ToType,
|
|
|
|
bool SuppressUserConversions,
|
2009-08-28 23:33:32 +08:00
|
|
|
bool AllowExplicit, bool ForceRValue,
|
2009-10-02 04:39:51 +08:00
|
|
|
bool InOverloadResolution,
|
|
|
|
bool UserCast) {
|
2008-10-22 00:13:35 +08:00
|
|
|
ImplicitConversionSequence ICS;
|
2009-09-15 08:10:11 +08:00
|
|
|
OverloadCandidateSet Conversions;
|
2009-09-23 08:58:07 +08:00
|
|
|
OverloadingResult UserDefResult = OR_Success;
|
2009-08-28 23:33:32 +08:00
|
|
|
if (IsStandardConversion(From, ToType, InOverloadResolution, ICS.Standard))
|
2008-11-01 00:23:19 +08:00
|
|
|
ICS.ConversionKind = ImplicitConversionSequence::StandardConversion;
|
Initial implementation of function overloading in C.
This commit adds a new attribute, "overloadable", that enables C++
function overloading in C. The attribute can only be added to function
declarations, e.g.,
int *f(int) __attribute__((overloadable));
If the "overloadable" attribute exists on a function with a given
name, *all* functions with that name (and in that scope) must have the
"overloadable" attribute. Sets of overloaded functions with the
"overloadable" attribute then follow the normal C++ rules for
overloaded functions, e.g., overloads must have different
parameter-type-lists from each other.
When calling an overloaded function in C, we follow the same
overloading rules as C++, with three extensions to the set of standard
conversions:
- A value of a given struct or union type T can be converted to the
type T. This is just the identity conversion. (In C++, this would
go through a copy constructor).
- A value of pointer type T* can be converted to a value of type U*
if T and U are compatible types. This conversion has Conversion
rank (it's considered a pointer conversion in C).
- A value of type T can be converted to a value of type U if T and U
are compatible (and are not both pointer types). This conversion
has Conversion rank (it's considered to be a new kind of
conversion unique to C, a "compatible" conversion).
Known defects (and, therefore, next steps):
1) The standard-conversion handling does not understand conversions
involving _Complex or vector extensions, so it is likely to get
these wrong. We need to add these conversions.
2) All overloadable functions with the same name will have the same
linkage name, which means we'll get a collision in the linker (if
not sooner). We'll need to mangle the names of these functions.
llvm-svn: 64336
2009-02-12 07:02:49 +08:00
|
|
|
else if (getLangOptions().CPlusPlus &&
|
2009-09-23 08:58:07 +08:00
|
|
|
(UserDefResult = IsUserDefinedConversion(From, ToType,
|
|
|
|
ICS.UserDefined,
|
2009-09-15 08:10:11 +08:00
|
|
|
Conversions,
|
2009-04-13 01:16:29 +08:00
|
|
|
!SuppressUserConversions, AllowExplicit,
|
2009-10-02 04:39:51 +08:00
|
|
|
ForceRValue, UserCast)) == OR_Success) {
|
2008-11-01 00:23:19 +08:00
|
|
|
ICS.ConversionKind = ImplicitConversionSequence::UserDefinedConversion;
|
2008-11-04 01:51:48 +08:00
|
|
|
// C++ [over.ics.user]p4:
|
|
|
|
// A conversion of an expression of class type to the same class
|
|
|
|
// type is given Exact Match rank, and a conversion of an
|
|
|
|
// expression of class type to a base class of that type is
|
|
|
|
// given Conversion rank, in spite of the fact that a copy
|
|
|
|
// constructor (i.e., a user-defined conversion function) is
|
|
|
|
// called for those cases.
|
2009-09-09 23:08:12 +08:00
|
|
|
if (CXXConstructorDecl *Constructor
|
2008-11-04 01:51:48 +08:00
|
|
|
= dyn_cast<CXXConstructorDecl>(ICS.UserDefined.ConversionFunction)) {
|
2009-09-09 23:08:12 +08:00
|
|
|
QualType FromCanon
|
2009-02-03 06:11:10 +08:00
|
|
|
= Context.getCanonicalType(From->getType().getUnqualifiedType());
|
|
|
|
QualType ToCanon = Context.getCanonicalType(ToType).getUnqualifiedType();
|
2009-12-22 08:34:07 +08:00
|
|
|
if (Constructor->isCopyConstructor() &&
|
2009-12-22 08:21:20 +08:00
|
|
|
(FromCanon == ToCanon || IsDerivedFrom(FromCanon, ToCanon))) {
|
2008-11-04 03:09:14 +08:00
|
|
|
// Turn this into a "standard" conversion sequence, so that it
|
|
|
|
// gets ranked with standard conversion sequences.
|
2008-11-04 01:51:48 +08:00
|
|
|
ICS.ConversionKind = ImplicitConversionSequence::StandardConversion;
|
|
|
|
ICS.Standard.setAsIdentityConversion();
|
|
|
|
ICS.Standard.FromTypePtr = From->getType().getAsOpaquePtr();
|
|
|
|
ICS.Standard.ToTypePtr = ToType.getAsOpaquePtr();
|
2008-11-04 03:09:14 +08:00
|
|
|
ICS.Standard.CopyConstructor = Constructor;
|
2009-02-03 06:11:10 +08:00
|
|
|
if (ToCanon != FromCanon)
|
2008-11-04 01:51:48 +08:00
|
|
|
ICS.Standard.Second = ICK_Derived_To_Base;
|
|
|
|
}
|
2008-11-01 00:23:19 +08:00
|
|
|
}
|
2009-01-31 07:27:23 +08:00
|
|
|
|
|
|
|
// C++ [over.best.ics]p4:
|
|
|
|
// However, when considering the argument of a user-defined
|
|
|
|
// conversion function that is a candidate by 13.3.1.3 when
|
|
|
|
// invoked for the copying of the temporary in the second step
|
|
|
|
// of a class copy-initialization, or by 13.3.1.4, 13.3.1.5, or
|
|
|
|
// 13.3.1.6 in all cases, only standard conversion sequences and
|
|
|
|
// ellipsis conversion sequences are allowed.
|
|
|
|
if (SuppressUserConversions &&
|
|
|
|
ICS.ConversionKind == ImplicitConversionSequence::UserDefinedConversion)
|
|
|
|
ICS.ConversionKind = ImplicitConversionSequence::BadConversion;
|
2009-09-23 08:58:07 +08:00
|
|
|
} else {
|
2008-11-01 00:23:19 +08:00
|
|
|
ICS.ConversionKind = ImplicitConversionSequence::BadConversion;
|
2009-09-23 08:58:07 +08:00
|
|
|
if (UserDefResult == OR_Ambiguous) {
|
|
|
|
for (OverloadCandidateSet::iterator Cand = Conversions.begin();
|
|
|
|
Cand != Conversions.end(); ++Cand)
|
2009-10-13 01:51:19 +08:00
|
|
|
if (Cand->Viable)
|
|
|
|
ICS.ConversionFunctionSet.push_back(Cand->Function);
|
2009-09-23 08:58:07 +08:00
|
|
|
}
|
|
|
|
}
|
2008-11-01 00:23:19 +08:00
|
|
|
|
|
|
|
return ICS;
|
|
|
|
}
|
2008-10-22 00:13:35 +08:00
|
|
|
|
2009-12-09 08:47:37 +08:00
|
|
|
/// \brief Determine whether the conversion from FromType to ToType is a valid
|
|
|
|
/// conversion that strips "noreturn" off the nested function type.
|
|
|
|
static bool IsNoReturnConversion(ASTContext &Context, QualType FromType,
|
|
|
|
QualType ToType, QualType &ResultTy) {
|
|
|
|
if (Context.hasSameUnqualifiedType(FromType, ToType))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Strip the noreturn off the type we're converting from; noreturn can
|
|
|
|
// safely be removed.
|
|
|
|
FromType = Context.getNoReturnType(FromType, false);
|
|
|
|
if (!Context.hasSameUnqualifiedType(FromType, ToType))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
ResultTy = FromType;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-11-01 00:23:19 +08:00
|
|
|
/// IsStandardConversion - Determines whether there is a standard
|
|
|
|
/// conversion sequence (C++ [conv], C++ [over.ics.scs]) from the
|
|
|
|
/// expression From to the type ToType. Standard conversion sequences
|
|
|
|
/// only consider non-class types; for conversions that involve class
|
|
|
|
/// types, use TryImplicitConversion. If a conversion exists, SCS will
|
|
|
|
/// contain the standard conversion sequence required to perform this
|
|
|
|
/// conversion and this routine will return true. Otherwise, this
|
|
|
|
/// routine will return false and the value of SCS is unspecified.
|
2009-09-09 23:08:12 +08:00
|
|
|
bool
|
|
|
|
Sema::IsStandardConversion(Expr* From, QualType ToType,
|
2009-08-28 23:33:32 +08:00
|
|
|
bool InOverloadResolution,
|
2009-09-09 23:08:12 +08:00
|
|
|
StandardConversionSequence &SCS) {
|
2008-10-22 00:13:35 +08:00
|
|
|
QualType FromType = From->getType();
|
|
|
|
|
2008-11-01 00:23:19 +08:00
|
|
|
// Standard conversions (C++ [conv])
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
SCS.setAsIdentityConversion();
|
2008-11-01 00:23:19 +08:00
|
|
|
SCS.Deprecated = false;
|
2008-12-20 01:40:08 +08:00
|
|
|
SCS.IncompatibleObjC = false;
|
2008-11-01 00:23:19 +08:00
|
|
|
SCS.FromTypePtr = FromType.getAsOpaquePtr();
|
2008-11-04 03:09:14 +08:00
|
|
|
SCS.CopyConstructor = 0;
|
2008-10-22 00:13:35 +08:00
|
|
|
|
Initial implementation of function overloading in C.
This commit adds a new attribute, "overloadable", that enables C++
function overloading in C. The attribute can only be added to function
declarations, e.g.,
int *f(int) __attribute__((overloadable));
If the "overloadable" attribute exists on a function with a given
name, *all* functions with that name (and in that scope) must have the
"overloadable" attribute. Sets of overloaded functions with the
"overloadable" attribute then follow the normal C++ rules for
overloaded functions, e.g., overloads must have different
parameter-type-lists from each other.
When calling an overloaded function in C, we follow the same
overloading rules as C++, with three extensions to the set of standard
conversions:
- A value of a given struct or union type T can be converted to the
type T. This is just the identity conversion. (In C++, this would
go through a copy constructor).
- A value of pointer type T* can be converted to a value of type U*
if T and U are compatible types. This conversion has Conversion
rank (it's considered a pointer conversion in C).
- A value of type T can be converted to a value of type U if T and U
are compatible (and are not both pointer types). This conversion
has Conversion rank (it's considered to be a new kind of
conversion unique to C, a "compatible" conversion).
Known defects (and, therefore, next steps):
1) The standard-conversion handling does not understand conversions
involving _Complex or vector extensions, so it is likely to get
these wrong. We need to add these conversions.
2) All overloadable functions with the same name will have the same
linkage name, which means we'll get a collision in the linker (if
not sooner). We'll need to mangle the names of these functions.
llvm-svn: 64336
2009-02-12 07:02:49 +08:00
|
|
|
// There are no standard conversions for class types in C++, so
|
2009-09-09 23:08:12 +08:00
|
|
|
// abort early. When overloading in C, however, we do permit
|
Initial implementation of function overloading in C.
This commit adds a new attribute, "overloadable", that enables C++
function overloading in C. The attribute can only be added to function
declarations, e.g.,
int *f(int) __attribute__((overloadable));
If the "overloadable" attribute exists on a function with a given
name, *all* functions with that name (and in that scope) must have the
"overloadable" attribute. Sets of overloaded functions with the
"overloadable" attribute then follow the normal C++ rules for
overloaded functions, e.g., overloads must have different
parameter-type-lists from each other.
When calling an overloaded function in C, we follow the same
overloading rules as C++, with three extensions to the set of standard
conversions:
- A value of a given struct or union type T can be converted to the
type T. This is just the identity conversion. (In C++, this would
go through a copy constructor).
- A value of pointer type T* can be converted to a value of type U*
if T and U are compatible types. This conversion has Conversion
rank (it's considered a pointer conversion in C).
- A value of type T can be converted to a value of type U if T and U
are compatible (and are not both pointer types). This conversion
has Conversion rank (it's considered to be a new kind of
conversion unique to C, a "compatible" conversion).
Known defects (and, therefore, next steps):
1) The standard-conversion handling does not understand conversions
involving _Complex or vector extensions, so it is likely to get
these wrong. We need to add these conversions.
2) All overloadable functions with the same name will have the same
linkage name, which means we'll get a collision in the linker (if
not sooner). We'll need to mangle the names of these functions.
llvm-svn: 64336
2009-02-12 07:02:49 +08:00
|
|
|
if (FromType->isRecordType() || ToType->isRecordType()) {
|
|
|
|
if (getLangOptions().CPlusPlus)
|
|
|
|
return false;
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
// When we're overloading in C, we allow, as standard conversions,
|
Initial implementation of function overloading in C.
This commit adds a new attribute, "overloadable", that enables C++
function overloading in C. The attribute can only be added to function
declarations, e.g.,
int *f(int) __attribute__((overloadable));
If the "overloadable" attribute exists on a function with a given
name, *all* functions with that name (and in that scope) must have the
"overloadable" attribute. Sets of overloaded functions with the
"overloadable" attribute then follow the normal C++ rules for
overloaded functions, e.g., overloads must have different
parameter-type-lists from each other.
When calling an overloaded function in C, we follow the same
overloading rules as C++, with three extensions to the set of standard
conversions:
- A value of a given struct or union type T can be converted to the
type T. This is just the identity conversion. (In C++, this would
go through a copy constructor).
- A value of pointer type T* can be converted to a value of type U*
if T and U are compatible types. This conversion has Conversion
rank (it's considered a pointer conversion in C).
- A value of type T can be converted to a value of type U if T and U
are compatible (and are not both pointer types). This conversion
has Conversion rank (it's considered to be a new kind of
conversion unique to C, a "compatible" conversion).
Known defects (and, therefore, next steps):
1) The standard-conversion handling does not understand conversions
involving _Complex or vector extensions, so it is likely to get
these wrong. We need to add these conversions.
2) All overloadable functions with the same name will have the same
linkage name, which means we'll get a collision in the linker (if
not sooner). We'll need to mangle the names of these functions.
llvm-svn: 64336
2009-02-12 07:02:49 +08:00
|
|
|
}
|
|
|
|
|
2008-10-22 00:13:35 +08:00
|
|
|
// The first conversion can be an lvalue-to-rvalue conversion,
|
|
|
|
// array-to-pointer conversion, or function-to-pointer conversion
|
|
|
|
// (C++ 4p1).
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
// Lvalue-to-rvalue conversion (C++ 4.1):
|
2008-10-22 00:13:35 +08:00
|
|
|
// An lvalue (3.10) of a non-function, non-array type T can be
|
|
|
|
// converted to an rvalue.
|
|
|
|
Expr::isLvalueResult argIsLvalue = From->isLvalue(Context);
|
2009-09-09 23:08:12 +08:00
|
|
|
if (argIsLvalue == Expr::LV_Valid &&
|
2008-11-11 04:40:00 +08:00
|
|
|
!FromType->isFunctionType() && !FromType->isArrayType() &&
|
2009-03-14 02:40:31 +08:00
|
|
|
Context.getCanonicalType(FromType) != Context.OverloadTy) {
|
2008-11-01 00:23:19 +08:00
|
|
|
SCS.First = ICK_Lvalue_To_Rvalue;
|
2008-10-22 00:13:35 +08:00
|
|
|
|
|
|
|
// If T is a non-class type, the type of the rvalue is the
|
|
|
|
// cv-unqualified version of T. Otherwise, the type of the rvalue
|
Initial implementation of function overloading in C.
This commit adds a new attribute, "overloadable", that enables C++
function overloading in C. The attribute can only be added to function
declarations, e.g.,
int *f(int) __attribute__((overloadable));
If the "overloadable" attribute exists on a function with a given
name, *all* functions with that name (and in that scope) must have the
"overloadable" attribute. Sets of overloaded functions with the
"overloadable" attribute then follow the normal C++ rules for
overloaded functions, e.g., overloads must have different
parameter-type-lists from each other.
When calling an overloaded function in C, we follow the same
overloading rules as C++, with three extensions to the set of standard
conversions:
- A value of a given struct or union type T can be converted to the
type T. This is just the identity conversion. (In C++, this would
go through a copy constructor).
- A value of pointer type T* can be converted to a value of type U*
if T and U are compatible types. This conversion has Conversion
rank (it's considered a pointer conversion in C).
- A value of type T can be converted to a value of type U if T and U
are compatible (and are not both pointer types). This conversion
has Conversion rank (it's considered to be a new kind of
conversion unique to C, a "compatible" conversion).
Known defects (and, therefore, next steps):
1) The standard-conversion handling does not understand conversions
involving _Complex or vector extensions, so it is likely to get
these wrong. We need to add these conversions.
2) All overloadable functions with the same name will have the same
linkage name, which means we'll get a collision in the linker (if
not sooner). We'll need to mangle the names of these functions.
llvm-svn: 64336
2009-02-12 07:02:49 +08:00
|
|
|
// is T (C++ 4.1p1). C++ can't get here with class types; in C, we
|
|
|
|
// just strip the qualifiers because they don't matter.
|
2008-11-01 00:23:19 +08:00
|
|
|
FromType = FromType.getUnqualifiedType();
|
2009-08-05 05:02:39 +08:00
|
|
|
} else if (FromType->isArrayType()) {
|
|
|
|
// Array-to-pointer conversion (C++ 4.2)
|
2008-11-01 00:23:19 +08:00
|
|
|
SCS.First = ICK_Array_To_Pointer;
|
2008-10-22 00:13:35 +08:00
|
|
|
|
|
|
|
// An lvalue or rvalue of type "array of N T" or "array of unknown
|
|
|
|
// bound of T" can be converted to an rvalue of type "pointer to
|
|
|
|
// T" (C++ 4.2p1).
|
|
|
|
FromType = Context.getArrayDecayedType(FromType);
|
|
|
|
|
|
|
|
if (IsStringLiteralToNonConstPointerConversion(From, ToType)) {
|
|
|
|
// This conversion is deprecated. (C++ D.4).
|
2008-11-01 00:23:19 +08:00
|
|
|
SCS.Deprecated = true;
|
2008-10-22 00:13:35 +08:00
|
|
|
|
|
|
|
// For the purpose of ranking in overload resolution
|
|
|
|
// (13.3.3.1.1), this conversion is considered an
|
|
|
|
// array-to-pointer conversion followed by a qualification
|
|
|
|
// conversion (4.4). (C++ 4.2p2)
|
2008-11-01 00:23:19 +08:00
|
|
|
SCS.Second = ICK_Identity;
|
|
|
|
SCS.Third = ICK_Qualification;
|
|
|
|
SCS.ToTypePtr = ToType.getAsOpaquePtr();
|
|
|
|
return true;
|
2008-10-22 00:13:35 +08:00
|
|
|
}
|
2009-08-05 05:02:39 +08:00
|
|
|
} else if (FromType->isFunctionType() && argIsLvalue == Expr::LV_Valid) {
|
|
|
|
// Function-to-pointer conversion (C++ 4.3).
|
2008-11-01 00:23:19 +08:00
|
|
|
SCS.First = ICK_Function_To_Pointer;
|
2008-10-22 00:13:35 +08:00
|
|
|
|
|
|
|
// An lvalue of function type T can be converted to an rvalue of
|
|
|
|
// type "pointer to T." The result is a pointer to the
|
|
|
|
// function. (C++ 4.3p1).
|
|
|
|
FromType = Context.getPointerType(FromType);
|
2009-09-09 23:08:12 +08:00
|
|
|
} else if (FunctionDecl *Fn
|
2009-12-09 08:47:37 +08:00
|
|
|
= ResolveAddressOfOverloadedFunction(From, ToType, false)) {
|
2009-08-05 05:02:39 +08:00
|
|
|
// Address of overloaded function (C++ [over.over]).
|
2008-11-11 04:40:00 +08:00
|
|
|
SCS.First = ICK_Function_To_Pointer;
|
|
|
|
|
|
|
|
// We were able to resolve the address of the overloaded function,
|
|
|
|
// so we can convert to the type of that function.
|
|
|
|
FromType = Fn->getType();
|
2009-03-17 07:22:08 +08:00
|
|
|
if (ToType->isLValueReferenceType())
|
|
|
|
FromType = Context.getLValueReferenceType(FromType);
|
|
|
|
else if (ToType->isRValueReferenceType())
|
|
|
|
FromType = Context.getRValueReferenceType(FromType);
|
2009-02-05 05:23:32 +08:00
|
|
|
else if (ToType->isMemberPointerType()) {
|
|
|
|
// Resolve address only succeeds if both sides are member pointers,
|
|
|
|
// but it doesn't have to be the same class. See DR 247.
|
|
|
|
// Note that this means that the type of &Derived::fn can be
|
|
|
|
// Ret (Base::*)(Args) if the fn overload actually found is from the
|
|
|
|
// base class, even if it was brought into the derived class via a
|
|
|
|
// using declaration. The standard isn't clear on this issue at all.
|
|
|
|
CXXMethodDecl *M = cast<CXXMethodDecl>(Fn);
|
|
|
|
FromType = Context.getMemberPointerType(FromType,
|
|
|
|
Context.getTypeDeclType(M->getParent()).getTypePtr());
|
|
|
|
} else
|
2008-11-11 04:40:00 +08:00
|
|
|
FromType = Context.getPointerType(FromType);
|
2009-08-05 05:02:39 +08:00
|
|
|
} else {
|
|
|
|
// We don't require any conversions for the first step.
|
2008-11-01 00:23:19 +08:00
|
|
|
SCS.First = ICK_Identity;
|
2008-10-22 00:13:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// The second conversion can be an integral promotion, floating
|
|
|
|
// point promotion, integral conversion, floating point conversion,
|
|
|
|
// floating-integral conversion, pointer conversion,
|
|
|
|
// pointer-to-member conversion, or boolean conversion (C++ 4p1).
|
Initial implementation of function overloading in C.
This commit adds a new attribute, "overloadable", that enables C++
function overloading in C. The attribute can only be added to function
declarations, e.g.,
int *f(int) __attribute__((overloadable));
If the "overloadable" attribute exists on a function with a given
name, *all* functions with that name (and in that scope) must have the
"overloadable" attribute. Sets of overloaded functions with the
"overloadable" attribute then follow the normal C++ rules for
overloaded functions, e.g., overloads must have different
parameter-type-lists from each other.
When calling an overloaded function in C, we follow the same
overloading rules as C++, with three extensions to the set of standard
conversions:
- A value of a given struct or union type T can be converted to the
type T. This is just the identity conversion. (In C++, this would
go through a copy constructor).
- A value of pointer type T* can be converted to a value of type U*
if T and U are compatible types. This conversion has Conversion
rank (it's considered a pointer conversion in C).
- A value of type T can be converted to a value of type U if T and U
are compatible (and are not both pointer types). This conversion
has Conversion rank (it's considered to be a new kind of
conversion unique to C, a "compatible" conversion).
Known defects (and, therefore, next steps):
1) The standard-conversion handling does not understand conversions
involving _Complex or vector extensions, so it is likely to get
these wrong. We need to add these conversions.
2) All overloadable functions with the same name will have the same
linkage name, which means we'll get a collision in the linker (if
not sooner). We'll need to mangle the names of these functions.
llvm-svn: 64336
2009-02-12 07:02:49 +08:00
|
|
|
// For overloading in C, this can also be a "compatible-type"
|
|
|
|
// conversion.
|
2008-12-20 01:40:08 +08:00
|
|
|
bool IncompatibleObjC = false;
|
Initial implementation of function overloading in C.
This commit adds a new attribute, "overloadable", that enables C++
function overloading in C. The attribute can only be added to function
declarations, e.g.,
int *f(int) __attribute__((overloadable));
If the "overloadable" attribute exists on a function with a given
name, *all* functions with that name (and in that scope) must have the
"overloadable" attribute. Sets of overloaded functions with the
"overloadable" attribute then follow the normal C++ rules for
overloaded functions, e.g., overloads must have different
parameter-type-lists from each other.
When calling an overloaded function in C, we follow the same
overloading rules as C++, with three extensions to the set of standard
conversions:
- A value of a given struct or union type T can be converted to the
type T. This is just the identity conversion. (In C++, this would
go through a copy constructor).
- A value of pointer type T* can be converted to a value of type U*
if T and U are compatible types. This conversion has Conversion
rank (it's considered a pointer conversion in C).
- A value of type T can be converted to a value of type U if T and U
are compatible (and are not both pointer types). This conversion
has Conversion rank (it's considered to be a new kind of
conversion unique to C, a "compatible" conversion).
Known defects (and, therefore, next steps):
1) The standard-conversion handling does not understand conversions
involving _Complex or vector extensions, so it is likely to get
these wrong. We need to add these conversions.
2) All overloadable functions with the same name will have the same
linkage name, which means we'll get a collision in the linker (if
not sooner). We'll need to mangle the names of these functions.
llvm-svn: 64336
2009-02-12 07:02:49 +08:00
|
|
|
if (Context.hasSameUnqualifiedType(FromType, ToType)) {
|
2008-10-22 00:13:35 +08:00
|
|
|
// The unqualified versions of the types are the same: there's no
|
|
|
|
// conversion to do.
|
2008-11-01 00:23:19 +08:00
|
|
|
SCS.Second = ICK_Identity;
|
2009-08-05 05:02:39 +08:00
|
|
|
} else if (IsIntegralPromotion(From, FromType, ToType)) {
|
2009-09-09 23:08:12 +08:00
|
|
|
// Integral promotion (C++ 4.5).
|
2008-11-01 00:23:19 +08:00
|
|
|
SCS.Second = ICK_Integral_Promotion;
|
2008-10-22 00:13:35 +08:00
|
|
|
FromType = ToType.getUnqualifiedType();
|
2009-08-05 05:02:39 +08:00
|
|
|
} else if (IsFloatingPointPromotion(FromType, ToType)) {
|
|
|
|
// Floating point promotion (C++ 4.6).
|
2008-11-01 00:23:19 +08:00
|
|
|
SCS.Second = ICK_Floating_Promotion;
|
2008-10-22 00:13:35 +08:00
|
|
|
FromType = ToType.getUnqualifiedType();
|
2009-08-05 05:02:39 +08:00
|
|
|
} else if (IsComplexPromotion(FromType, ToType)) {
|
|
|
|
// Complex promotion (Clang extension)
|
2009-02-12 08:15:05 +08:00
|
|
|
SCS.Second = ICK_Complex_Promotion;
|
|
|
|
FromType = ToType.getUnqualifiedType();
|
2009-08-05 05:02:39 +08:00
|
|
|
} else if ((FromType->isIntegralType() || FromType->isEnumeralType()) &&
|
2008-10-31 22:43:28 +08:00
|
|
|
(ToType->isIntegralType() && !ToType->isEnumeralType())) {
|
2009-08-05 05:02:39 +08:00
|
|
|
// Integral conversions (C++ 4.7).
|
2008-11-01 00:23:19 +08:00
|
|
|
SCS.Second = ICK_Integral_Conversion;
|
2008-10-22 00:13:35 +08:00
|
|
|
FromType = ToType.getUnqualifiedType();
|
2009-08-05 05:02:39 +08:00
|
|
|
} else if (FromType->isFloatingType() && ToType->isFloatingType()) {
|
|
|
|
// Floating point conversions (C++ 4.8).
|
2008-11-01 00:23:19 +08:00
|
|
|
SCS.Second = ICK_Floating_Conversion;
|
2008-10-22 00:13:35 +08:00
|
|
|
FromType = ToType.getUnqualifiedType();
|
2009-08-05 05:02:39 +08:00
|
|
|
} else if (FromType->isComplexType() && ToType->isComplexType()) {
|
|
|
|
// Complex conversions (C99 6.3.1.6)
|
2009-02-12 08:15:05 +08:00
|
|
|
SCS.Second = ICK_Complex_Conversion;
|
|
|
|
FromType = ToType.getUnqualifiedType();
|
2009-08-05 05:02:39 +08:00
|
|
|
} else if ((FromType->isFloatingType() &&
|
|
|
|
ToType->isIntegralType() && (!ToType->isBooleanType() &&
|
|
|
|
!ToType->isEnumeralType())) ||
|
2009-09-09 23:08:12 +08:00
|
|
|
((FromType->isIntegralType() || FromType->isEnumeralType()) &&
|
2009-08-05 05:02:39 +08:00
|
|
|
ToType->isFloatingType())) {
|
|
|
|
// Floating-integral conversions (C++ 4.9).
|
2008-11-01 00:23:19 +08:00
|
|
|
SCS.Second = ICK_Floating_Integral;
|
2008-10-22 00:13:35 +08:00
|
|
|
FromType = ToType.getUnqualifiedType();
|
2009-08-05 05:02:39 +08:00
|
|
|
} else if ((FromType->isComplexType() && ToType->isArithmeticType()) ||
|
|
|
|
(ToType->isComplexType() && FromType->isArithmeticType())) {
|
|
|
|
// Complex-real conversions (C99 6.3.1.7)
|
2009-02-12 08:15:05 +08:00
|
|
|
SCS.Second = ICK_Complex_Real;
|
|
|
|
FromType = ToType.getUnqualifiedType();
|
2009-08-28 23:33:32 +08:00
|
|
|
} else if (IsPointerConversion(From, FromType, ToType, InOverloadResolution,
|
|
|
|
FromType, IncompatibleObjC)) {
|
2009-08-05 05:02:39 +08:00
|
|
|
// Pointer conversions (C++ 4.10).
|
2008-11-01 00:23:19 +08:00
|
|
|
SCS.Second = ICK_Pointer_Conversion;
|
2008-12-20 01:40:08 +08:00
|
|
|
SCS.IncompatibleObjC = IncompatibleObjC;
|
2009-09-25 12:25:58 +08:00
|
|
|
} else if (IsMemberPointerConversion(From, FromType, ToType,
|
|
|
|
InOverloadResolution, FromType)) {
|
2009-08-05 05:02:39 +08:00
|
|
|
// Pointer to member conversions (4.11).
|
2009-01-26 03:43:20 +08:00
|
|
|
SCS.Second = ICK_Pointer_Member;
|
2009-08-05 05:02:39 +08:00
|
|
|
} else if (ToType->isBooleanType() &&
|
|
|
|
(FromType->isArithmeticType() ||
|
|
|
|
FromType->isEnumeralType() ||
|
2009-12-12 05:23:13 +08:00
|
|
|
FromType->isAnyPointerType() ||
|
2009-08-05 05:02:39 +08:00
|
|
|
FromType->isBlockPointerType() ||
|
|
|
|
FromType->isMemberPointerType() ||
|
|
|
|
FromType->isNullPtrType())) {
|
|
|
|
// Boolean conversions (C++ 4.12).
|
2008-11-01 00:23:19 +08:00
|
|
|
SCS.Second = ICK_Boolean_Conversion;
|
2008-10-22 00:13:35 +08:00
|
|
|
FromType = Context.BoolTy;
|
2009-09-09 23:08:12 +08:00
|
|
|
} else if (!getLangOptions().CPlusPlus &&
|
2009-08-05 05:02:39 +08:00
|
|
|
Context.typesAreCompatible(ToType, FromType)) {
|
|
|
|
// Compatible conversions (Clang extension for C function overloading)
|
Initial implementation of function overloading in C.
This commit adds a new attribute, "overloadable", that enables C++
function overloading in C. The attribute can only be added to function
declarations, e.g.,
int *f(int) __attribute__((overloadable));
If the "overloadable" attribute exists on a function with a given
name, *all* functions with that name (and in that scope) must have the
"overloadable" attribute. Sets of overloaded functions with the
"overloadable" attribute then follow the normal C++ rules for
overloaded functions, e.g., overloads must have different
parameter-type-lists from each other.
When calling an overloaded function in C, we follow the same
overloading rules as C++, with three extensions to the set of standard
conversions:
- A value of a given struct or union type T can be converted to the
type T. This is just the identity conversion. (In C++, this would
go through a copy constructor).
- A value of pointer type T* can be converted to a value of type U*
if T and U are compatible types. This conversion has Conversion
rank (it's considered a pointer conversion in C).
- A value of type T can be converted to a value of type U if T and U
are compatible (and are not both pointer types). This conversion
has Conversion rank (it's considered to be a new kind of
conversion unique to C, a "compatible" conversion).
Known defects (and, therefore, next steps):
1) The standard-conversion handling does not understand conversions
involving _Complex or vector extensions, so it is likely to get
these wrong. We need to add these conversions.
2) All overloadable functions with the same name will have the same
linkage name, which means we'll get a collision in the linker (if
not sooner). We'll need to mangle the names of these functions.
llvm-svn: 64336
2009-02-12 07:02:49 +08:00
|
|
|
SCS.Second = ICK_Compatible_Conversion;
|
2009-12-09 08:47:37 +08:00
|
|
|
} else if (IsNoReturnConversion(Context, FromType, ToType, FromType)) {
|
|
|
|
// Treat a conversion that strips "noreturn" as an identity conversion.
|
|
|
|
SCS.Second = ICK_NoReturn_Adjustment;
|
2008-10-22 00:13:35 +08:00
|
|
|
} else {
|
|
|
|
// No second conversion required.
|
2008-11-01 00:23:19 +08:00
|
|
|
SCS.Second = ICK_Identity;
|
2008-10-22 00:13:35 +08:00
|
|
|
}
|
|
|
|
|
2008-10-29 08:13:59 +08:00
|
|
|
QualType CanonFrom;
|
|
|
|
QualType CanonTo;
|
2008-10-22 00:13:35 +08:00
|
|
|
// The third conversion can be a qualification conversion (C++ 4p1).
|
2008-10-22 07:43:52 +08:00
|
|
|
if (IsQualificationConversion(FromType, ToType)) {
|
2008-11-01 00:23:19 +08:00
|
|
|
SCS.Third = ICK_Qualification;
|
2008-10-22 00:13:35 +08:00
|
|
|
FromType = ToType;
|
2008-10-29 08:13:59 +08:00
|
|
|
CanonFrom = Context.getCanonicalType(FromType);
|
|
|
|
CanonTo = Context.getCanonicalType(ToType);
|
2008-10-22 00:13:35 +08:00
|
|
|
} else {
|
|
|
|
// No conversion required
|
2008-11-01 00:23:19 +08:00
|
|
|
SCS.Third = ICK_Identity;
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
// C++ [over.best.ics]p6:
|
2008-11-01 00:23:19 +08:00
|
|
|
// [...] Any difference in top-level cv-qualification is
|
|
|
|
// subsumed by the initialization itself and does not constitute
|
|
|
|
// a conversion. [...]
|
2008-10-29 08:13:59 +08:00
|
|
|
CanonFrom = Context.getCanonicalType(FromType);
|
2009-09-09 23:08:12 +08:00
|
|
|
CanonTo = Context.getCanonicalType(ToType);
|
First part of changes to eliminate problems with cv-qualifiers and
sugared types. The basic problem is that our qualifier accessors
(getQualifiers, getCVRQualifiers, isConstQualified, etc.) only look at
the current QualType and not at any qualifiers that come from sugared
types, meaning that we won't see these qualifiers through, e.g.,
typedefs:
typedef const int CInt;
typedef CInt Self;
Self.isConstQualified() currently returns false!
Various bugs (e.g., PR5383) have cropped up all over the front end due
to such problems. I'm addressing this problem by splitting each
qualifier accessor into two versions:
- the "local" version only returns qualifiers on this particular
QualType instance
- the "normal" version that will eventually combine qualifiers from this
QualType instance with the qualifiers on the canonical type to
produce the full set of qualifiers.
This commit adds the local versions and switches a few callers from
the "normal" version (e.g., isConstQualified) over to the "local"
version (e.g., isLocalConstQualified) when that is the right thing to
do, e.g., because we're printing or serializing the qualifiers. Also,
switch a bunch of
Context.getCanonicalType(T1).getUnqualifiedType() == Context.getCanonicalType(T2).getQualifiedType()
expressions over to
Context.hasSameUnqualifiedType(T1, T2)
llvm-svn: 88969
2009-11-17 05:35:15 +08:00
|
|
|
if (CanonFrom.getLocalUnqualifiedType()
|
|
|
|
== CanonTo.getLocalUnqualifiedType() &&
|
|
|
|
CanonFrom.getLocalCVRQualifiers() != CanonTo.getLocalCVRQualifiers()) {
|
2008-10-29 08:13:59 +08:00
|
|
|
FromType = ToType;
|
|
|
|
CanonFrom = CanonTo;
|
|
|
|
}
|
2008-10-22 00:13:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// If we have not converted the argument type to the parameter type,
|
|
|
|
// this is a bad conversion sequence.
|
2008-10-29 08:13:59 +08:00
|
|
|
if (CanonFrom != CanonTo)
|
2008-11-01 00:23:19 +08:00
|
|
|
return false;
|
2008-10-22 00:13:35 +08:00
|
|
|
|
2008-11-01 00:23:19 +08:00
|
|
|
SCS.ToTypePtr = FromType.getAsOpaquePtr();
|
|
|
|
return true;
|
2008-10-22 00:13:35 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// IsIntegralPromotion - Determines whether the conversion from the
|
|
|
|
/// expression From (whose potentially-adjusted type is FromType) to
|
|
|
|
/// ToType is an integral promotion (C++ 4.5). If so, returns true and
|
|
|
|
/// sets PromotedType to the promoted type.
|
2009-09-09 23:08:12 +08:00
|
|
|
bool Sema::IsIntegralPromotion(Expr *From, QualType FromType, QualType ToType) {
|
2009-09-22 07:43:11 +08:00
|
|
|
const BuiltinType *To = ToType->getAs<BuiltinType>();
|
2008-11-04 23:59:10 +08:00
|
|
|
// All integers are built-in.
|
2008-10-31 22:43:28 +08:00
|
|
|
if (!To) {
|
|
|
|
return false;
|
|
|
|
}
|
2008-10-22 00:13:35 +08:00
|
|
|
|
|
|
|
// An rvalue of type char, signed char, unsigned char, short int, or
|
|
|
|
// unsigned short int can be converted to an rvalue of type int if
|
|
|
|
// int can represent all the values of the source type; otherwise,
|
|
|
|
// the source rvalue can be converted to an rvalue of type unsigned
|
|
|
|
// int (C++ 4.5p1).
|
2008-10-31 22:43:28 +08:00
|
|
|
if (FromType->isPromotableIntegerType() && !FromType->isBooleanType()) {
|
2008-10-22 00:13:35 +08:00
|
|
|
if (// We can promote any signed, promotable integer type to an int
|
|
|
|
(FromType->isSignedIntegerType() ||
|
|
|
|
// We can promote any unsigned integer type whose size is
|
|
|
|
// less than int to an int.
|
2009-09-09 23:08:12 +08:00
|
|
|
(!FromType->isSignedIntegerType() &&
|
2008-10-31 22:43:28 +08:00
|
|
|
Context.getTypeSize(FromType) < Context.getTypeSize(ToType)))) {
|
2008-10-22 00:13:35 +08:00
|
|
|
return To->getKind() == BuiltinType::Int;
|
2008-10-31 22:43:28 +08:00
|
|
|
}
|
|
|
|
|
2008-10-22 00:13:35 +08:00
|
|
|
return To->getKind() == BuiltinType::UInt;
|
|
|
|
}
|
|
|
|
|
|
|
|
// An rvalue of type wchar_t (3.9.1) or an enumeration type (7.2)
|
|
|
|
// can be converted to an rvalue of the first of the following types
|
|
|
|
// that can represent all the values of its underlying type: int,
|
|
|
|
// unsigned int, long, or unsigned long (C++ 4.5p2).
|
2009-12-09 17:09:27 +08:00
|
|
|
|
|
|
|
// We pre-calculate the promotion type for enum types.
|
|
|
|
if (const EnumType *FromEnumType = FromType->getAs<EnumType>())
|
|
|
|
if (ToType->isIntegerType())
|
|
|
|
return Context.hasSameUnqualifiedType(ToType,
|
|
|
|
FromEnumType->getDecl()->getPromotionType());
|
|
|
|
|
|
|
|
if (FromType->isWideCharType() && ToType->isIntegerType()) {
|
2008-10-22 00:13:35 +08:00
|
|
|
// Determine whether the type we're converting from is signed or
|
|
|
|
// unsigned.
|
|
|
|
bool FromIsSigned;
|
|
|
|
uint64_t FromSize = Context.getTypeSize(FromType);
|
2009-12-09 17:09:27 +08:00
|
|
|
|
|
|
|
// FIXME: Is wchar_t signed or unsigned? We assume it's signed for now.
|
|
|
|
FromIsSigned = true;
|
2008-10-22 00:13:35 +08:00
|
|
|
|
|
|
|
// The types we'll try to promote to, in the appropriate
|
|
|
|
// order. Try each of these types.
|
2009-09-09 23:08:12 +08:00
|
|
|
QualType PromoteTypes[6] = {
|
|
|
|
Context.IntTy, Context.UnsignedIntTy,
|
2008-12-12 10:00:36 +08:00
|
|
|
Context.LongTy, Context.UnsignedLongTy ,
|
|
|
|
Context.LongLongTy, Context.UnsignedLongLongTy
|
2008-10-22 00:13:35 +08:00
|
|
|
};
|
2008-12-12 10:00:36 +08:00
|
|
|
for (int Idx = 0; Idx < 6; ++Idx) {
|
2008-10-22 00:13:35 +08:00
|
|
|
uint64_t ToSize = Context.getTypeSize(PromoteTypes[Idx]);
|
|
|
|
if (FromSize < ToSize ||
|
2009-09-09 23:08:12 +08:00
|
|
|
(FromSize == ToSize &&
|
2008-10-22 00:13:35 +08:00
|
|
|
FromIsSigned == PromoteTypes[Idx]->isSignedIntegerType())) {
|
|
|
|
// We found the type that we can promote to. If this is the
|
|
|
|
// type we wanted, we have a promotion. Otherwise, no
|
|
|
|
// promotion.
|
First part of changes to eliminate problems with cv-qualifiers and
sugared types. The basic problem is that our qualifier accessors
(getQualifiers, getCVRQualifiers, isConstQualified, etc.) only look at
the current QualType and not at any qualifiers that come from sugared
types, meaning that we won't see these qualifiers through, e.g.,
typedefs:
typedef const int CInt;
typedef CInt Self;
Self.isConstQualified() currently returns false!
Various bugs (e.g., PR5383) have cropped up all over the front end due
to such problems. I'm addressing this problem by splitting each
qualifier accessor into two versions:
- the "local" version only returns qualifiers on this particular
QualType instance
- the "normal" version that will eventually combine qualifiers from this
QualType instance with the qualifiers on the canonical type to
produce the full set of qualifiers.
This commit adds the local versions and switches a few callers from
the "normal" version (e.g., isConstQualified) over to the "local"
version (e.g., isLocalConstQualified) when that is the right thing to
do, e.g., because we're printing or serializing the qualifiers. Also,
switch a bunch of
Context.getCanonicalType(T1).getUnqualifiedType() == Context.getCanonicalType(T2).getQualifiedType()
expressions over to
Context.hasSameUnqualifiedType(T1, T2)
llvm-svn: 88969
2009-11-17 05:35:15 +08:00
|
|
|
return Context.hasSameUnqualifiedType(ToType, PromoteTypes[Idx]);
|
2008-10-22 00:13:35 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// An rvalue for an integral bit-field (9.6) can be converted to an
|
|
|
|
// rvalue of type int if int can represent all the values of the
|
|
|
|
// bit-field; otherwise, it can be converted to unsigned int if
|
|
|
|
// unsigned int can represent all the values of the bit-field. If
|
|
|
|
// the bit-field is larger yet, no integral promotion applies to
|
|
|
|
// it. If the bit-field has an enumerated type, it is treated as any
|
|
|
|
// other value of that type for promotion purposes (C++ 4.5p3).
|
2009-05-16 15:39:55 +08:00
|
|
|
// FIXME: We should delay checking of bit-fields until we actually perform the
|
|
|
|
// conversion.
|
2009-05-02 10:18:30 +08:00
|
|
|
using llvm::APSInt;
|
|
|
|
if (From)
|
|
|
|
if (FieldDecl *MemberDecl = From->getBitField()) {
|
2008-12-21 07:49:58 +08:00
|
|
|
APSInt BitWidth;
|
2009-05-02 10:18:30 +08:00
|
|
|
if (FromType->isIntegralType() && !FromType->isEnumeralType() &&
|
|
|
|
MemberDecl->getBitWidth()->isIntegerConstantExpr(BitWidth, Context)) {
|
|
|
|
APSInt ToSize(BitWidth.getBitWidth(), BitWidth.isUnsigned());
|
|
|
|
ToSize = Context.getTypeSize(ToType);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-12-21 07:49:58 +08:00
|
|
|
// Are we promoting to an int from a bitfield that fits in an int?
|
|
|
|
if (BitWidth < ToSize ||
|
|
|
|
(FromType->isSignedIntegerType() && BitWidth <= ToSize)) {
|
|
|
|
return To->getKind() == BuiltinType::Int;
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-12-21 07:49:58 +08:00
|
|
|
// Are we promoting to an unsigned int from an unsigned bitfield
|
|
|
|
// that fits into an unsigned int?
|
|
|
|
if (FromType->isUnsignedIntegerType() && BitWidth <= ToSize) {
|
|
|
|
return To->getKind() == BuiltinType::UInt;
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-12-21 07:49:58 +08:00
|
|
|
return false;
|
2008-10-31 22:43:28 +08:00
|
|
|
}
|
2008-10-22 00:13:35 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-10-22 00:13:35 +08:00
|
|
|
// An rvalue of type bool can be converted to an rvalue of type int,
|
|
|
|
// with false becoming zero and true becoming one (C++ 4.5p4).
|
2008-10-31 22:43:28 +08:00
|
|
|
if (FromType->isBooleanType() && To->getKind() == BuiltinType::Int) {
|
2008-10-22 00:13:35 +08:00
|
|
|
return true;
|
2008-10-31 22:43:28 +08:00
|
|
|
}
|
2008-10-22 00:13:35 +08:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// IsFloatingPointPromotion - Determines whether the conversion from
|
|
|
|
/// FromType to ToType is a floating point promotion (C++ 4.6). If so,
|
|
|
|
/// returns true and sets PromotedType to the promoted type.
|
2009-09-09 23:08:12 +08:00
|
|
|
bool Sema::IsFloatingPointPromotion(QualType FromType, QualType ToType) {
|
2008-10-22 00:13:35 +08:00
|
|
|
/// An rvalue of type float can be converted to an rvalue of type
|
|
|
|
/// double. (C++ 4.6p1).
|
2009-09-22 07:43:11 +08:00
|
|
|
if (const BuiltinType *FromBuiltin = FromType->getAs<BuiltinType>())
|
|
|
|
if (const BuiltinType *ToBuiltin = ToType->getAs<BuiltinType>()) {
|
2008-10-22 00:13:35 +08:00
|
|
|
if (FromBuiltin->getKind() == BuiltinType::Float &&
|
|
|
|
ToBuiltin->getKind() == BuiltinType::Double)
|
|
|
|
return true;
|
|
|
|
|
2009-02-12 08:15:05 +08:00
|
|
|
// C99 6.3.1.5p1:
|
|
|
|
// When a float is promoted to double or long double, or a
|
|
|
|
// double is promoted to long double [...].
|
|
|
|
if (!getLangOptions().CPlusPlus &&
|
|
|
|
(FromBuiltin->getKind() == BuiltinType::Float ||
|
|
|
|
FromBuiltin->getKind() == BuiltinType::Double) &&
|
|
|
|
(ToBuiltin->getKind() == BuiltinType::LongDouble))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-10-22 00:13:35 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-02-12 08:15:05 +08:00
|
|
|
/// \brief Determine if a conversion is a complex promotion.
|
|
|
|
///
|
|
|
|
/// A complex promotion is defined as a complex -> complex conversion
|
|
|
|
/// where the conversion between the underlying real types is a
|
2009-02-12 08:26:06 +08:00
|
|
|
/// floating-point or integral promotion.
|
2009-02-12 08:15:05 +08:00
|
|
|
bool Sema::IsComplexPromotion(QualType FromType, QualType ToType) {
|
2009-09-22 07:43:11 +08:00
|
|
|
const ComplexType *FromComplex = FromType->getAs<ComplexType>();
|
2009-02-12 08:15:05 +08:00
|
|
|
if (!FromComplex)
|
|
|
|
return false;
|
|
|
|
|
2009-09-22 07:43:11 +08:00
|
|
|
const ComplexType *ToComplex = ToType->getAs<ComplexType>();
|
2009-02-12 08:15:05 +08:00
|
|
|
if (!ToComplex)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return IsFloatingPointPromotion(FromComplex->getElementType(),
|
2009-02-12 08:26:06 +08:00
|
|
|
ToComplex->getElementType()) ||
|
|
|
|
IsIntegralPromotion(0, FromComplex->getElementType(),
|
|
|
|
ToComplex->getElementType());
|
2009-02-12 08:15:05 +08:00
|
|
|
}
|
|
|
|
|
2008-11-27 07:31:11 +08:00
|
|
|
/// BuildSimilarlyQualifiedPointerType - In a pointer conversion from
|
|
|
|
/// the pointer type FromPtr to a pointer to type ToPointee, with the
|
|
|
|
/// same type qualifiers as FromPtr has on its pointee type. ToType,
|
|
|
|
/// if non-empty, will be a pointer to ToType that may or may not have
|
|
|
|
/// the right set of qualifiers on its pointee.
|
2009-09-09 23:08:12 +08:00
|
|
|
static QualType
|
|
|
|
BuildSimilarlyQualifiedPointerType(const PointerType *FromPtr,
|
2008-11-27 07:31:11 +08:00
|
|
|
QualType ToPointee, QualType ToType,
|
|
|
|
ASTContext &Context) {
|
|
|
|
QualType CanonFromPointee = Context.getCanonicalType(FromPtr->getPointeeType());
|
|
|
|
QualType CanonToPointee = Context.getCanonicalType(ToPointee);
|
2009-09-25 03:53:00 +08:00
|
|
|
Qualifiers Quals = CanonFromPointee.getQualifiers();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
// Exact qualifier match -> return the pointer type we're converting to.
|
First part of changes to eliminate problems with cv-qualifiers and
sugared types. The basic problem is that our qualifier accessors
(getQualifiers, getCVRQualifiers, isConstQualified, etc.) only look at
the current QualType and not at any qualifiers that come from sugared
types, meaning that we won't see these qualifiers through, e.g.,
typedefs:
typedef const int CInt;
typedef CInt Self;
Self.isConstQualified() currently returns false!
Various bugs (e.g., PR5383) have cropped up all over the front end due
to such problems. I'm addressing this problem by splitting each
qualifier accessor into two versions:
- the "local" version only returns qualifiers on this particular
QualType instance
- the "normal" version that will eventually combine qualifiers from this
QualType instance with the qualifiers on the canonical type to
produce the full set of qualifiers.
This commit adds the local versions and switches a few callers from
the "normal" version (e.g., isConstQualified) over to the "local"
version (e.g., isLocalConstQualified) when that is the right thing to
do, e.g., because we're printing or serializing the qualifiers. Also,
switch a bunch of
Context.getCanonicalType(T1).getUnqualifiedType() == Context.getCanonicalType(T2).getQualifiedType()
expressions over to
Context.hasSameUnqualifiedType(T1, T2)
llvm-svn: 88969
2009-11-17 05:35:15 +08:00
|
|
|
if (CanonToPointee.getLocalQualifiers() == Quals) {
|
2008-11-27 07:31:11 +08:00
|
|
|
// ToType is exactly what we need. Return it.
|
2009-09-25 03:53:00 +08:00
|
|
|
if (!ToType.isNull())
|
2008-11-27 07:31:11 +08:00
|
|
|
return ToType;
|
|
|
|
|
|
|
|
// Build a pointer to ToPointee. It has the right qualifiers
|
|
|
|
// already.
|
|
|
|
return Context.getPointerType(ToPointee);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Just build a canonical type that has the right qualifiers.
|
2009-09-25 03:53:00 +08:00
|
|
|
return Context.getPointerType(
|
First part of changes to eliminate problems with cv-qualifiers and
sugared types. The basic problem is that our qualifier accessors
(getQualifiers, getCVRQualifiers, isConstQualified, etc.) only look at
the current QualType and not at any qualifiers that come from sugared
types, meaning that we won't see these qualifiers through, e.g.,
typedefs:
typedef const int CInt;
typedef CInt Self;
Self.isConstQualified() currently returns false!
Various bugs (e.g., PR5383) have cropped up all over the front end due
to such problems. I'm addressing this problem by splitting each
qualifier accessor into two versions:
- the "local" version only returns qualifiers on this particular
QualType instance
- the "normal" version that will eventually combine qualifiers from this
QualType instance with the qualifiers on the canonical type to
produce the full set of qualifiers.
This commit adds the local versions and switches a few callers from
the "normal" version (e.g., isConstQualified) over to the "local"
version (e.g., isLocalConstQualified) when that is the right thing to
do, e.g., because we're printing or serializing the qualifiers. Also,
switch a bunch of
Context.getCanonicalType(T1).getUnqualifiedType() == Context.getCanonicalType(T2).getQualifiedType()
expressions over to
Context.hasSameUnqualifiedType(T1, T2)
llvm-svn: 88969
2009-11-17 05:35:15 +08:00
|
|
|
Context.getQualifiedType(CanonToPointee.getLocalUnqualifiedType(),
|
|
|
|
Quals));
|
2008-11-27 07:31:11 +08:00
|
|
|
}
|
|
|
|
|
2009-12-17 07:13:33 +08:00
|
|
|
/// BuildSimilarlyQualifiedObjCObjectPointerType - In a pointer conversion from
|
|
|
|
/// the FromType, which is an objective-c pointer, to ToType, which may or may
|
|
|
|
/// not have the right set of qualifiers.
|
|
|
|
static QualType
|
|
|
|
BuildSimilarlyQualifiedObjCObjectPointerType(QualType FromType,
|
|
|
|
QualType ToType,
|
|
|
|
ASTContext &Context) {
|
|
|
|
QualType CanonFromType = Context.getCanonicalType(FromType);
|
|
|
|
QualType CanonToType = Context.getCanonicalType(ToType);
|
|
|
|
Qualifiers Quals = CanonFromType.getQualifiers();
|
|
|
|
|
|
|
|
// Exact qualifier match -> return the pointer type we're converting to.
|
|
|
|
if (CanonToType.getLocalQualifiers() == Quals)
|
|
|
|
return ToType;
|
|
|
|
|
|
|
|
// Just build a canonical type that has the right qualifiers.
|
|
|
|
return Context.getQualifiedType(CanonToType.getLocalUnqualifiedType(), Quals);
|
|
|
|
}
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
static bool isNullPointerConstantForConversion(Expr *Expr,
|
2009-08-28 23:55:56 +08:00
|
|
|
bool InOverloadResolution,
|
|
|
|
ASTContext &Context) {
|
|
|
|
// Handle value-dependent integral null pointer constants correctly.
|
|
|
|
// http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#903
|
|
|
|
if (Expr->isValueDependent() && !Expr->isTypeDependent() &&
|
|
|
|
Expr->getType()->isIntegralType())
|
|
|
|
return !InOverloadResolution;
|
|
|
|
|
2009-09-25 12:25:58 +08:00
|
|
|
return Expr->isNullPointerConstant(Context,
|
|
|
|
InOverloadResolution? Expr::NPC_ValueDependentIsNotNull
|
|
|
|
: Expr::NPC_ValueDependentIsNull);
|
2009-08-28 23:55:56 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-10-22 00:13:35 +08:00
|
|
|
/// IsPointerConversion - Determines whether the conversion of the
|
|
|
|
/// expression From, which has the (possibly adjusted) type FromType,
|
|
|
|
/// can be converted to the type ToType via a pointer conversion (C++
|
|
|
|
/// 4.10). If so, returns true and places the converted type (that
|
|
|
|
/// might differ from ToType in its cv-qualifiers at some level) into
|
|
|
|
/// ConvertedType.
|
2008-11-27 08:15:41 +08:00
|
|
|
///
|
2008-11-27 09:19:21 +08:00
|
|
|
/// This routine also supports conversions to and from block pointers
|
|
|
|
/// and conversions with Objective-C's 'id', 'id<protocols...>', and
|
|
|
|
/// pointers to interfaces. FIXME: Once we've determined the
|
|
|
|
/// appropriate overloading rules for Objective-C, we may want to
|
|
|
|
/// split the Objective-C checks into a different routine; however,
|
|
|
|
/// GCC seems to consider all of these conversions to be pointer
|
2008-12-20 01:40:08 +08:00
|
|
|
/// conversions, so for now they live here. IncompatibleObjC will be
|
|
|
|
/// set if the conversion is an allowed Objective-C conversion that
|
|
|
|
/// should result in a warning.
|
2008-10-22 00:13:35 +08:00
|
|
|
bool Sema::IsPointerConversion(Expr *From, QualType FromType, QualType ToType,
|
2009-08-28 23:33:32 +08:00
|
|
|
bool InOverloadResolution,
|
2008-12-20 01:40:08 +08:00
|
|
|
QualType& ConvertedType,
|
2009-09-09 23:08:12 +08:00
|
|
|
bool &IncompatibleObjC) {
|
2008-12-20 01:40:08 +08:00
|
|
|
IncompatibleObjC = false;
|
2008-12-20 03:13:09 +08:00
|
|
|
if (isObjCPointerConversion(FromType, ToType, ConvertedType, IncompatibleObjC))
|
|
|
|
return true;
|
2008-12-20 01:40:08 +08:00
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
// Conversion from a null pointer constant to any Objective-C pointer type.
|
|
|
|
if (ToType->isObjCObjectPointerType() &&
|
2009-08-28 23:55:56 +08:00
|
|
|
isNullPointerConstantForConversion(From, InOverloadResolution, Context)) {
|
2008-12-23 04:51:52 +08:00
|
|
|
ConvertedType = ToType;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-11-27 08:15:41 +08:00
|
|
|
// Blocks: Block pointers can be converted to void*.
|
|
|
|
if (FromType->isBlockPointerType() && ToType->isPointerType() &&
|
2009-07-30 05:53:49 +08:00
|
|
|
ToType->getAs<PointerType>()->getPointeeType()->isVoidType()) {
|
2008-11-27 08:15:41 +08:00
|
|
|
ConvertedType = ToType;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
// Blocks: A null pointer constant can be converted to a block
|
|
|
|
// pointer type.
|
2009-09-09 23:08:12 +08:00
|
|
|
if (ToType->isBlockPointerType() &&
|
2009-08-28 23:55:56 +08:00
|
|
|
isNullPointerConstantForConversion(From, InOverloadResolution, Context)) {
|
2008-11-27 08:15:41 +08:00
|
|
|
ConvertedType = ToType;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-05-11 02:38:11 +08:00
|
|
|
// If the left-hand-side is nullptr_t, the right side can be a null
|
|
|
|
// pointer constant.
|
2009-09-09 23:08:12 +08:00
|
|
|
if (ToType->isNullPtrType() &&
|
2009-08-28 23:55:56 +08:00
|
|
|
isNullPointerConstantForConversion(From, InOverloadResolution, Context)) {
|
2009-05-11 02:38:11 +08:00
|
|
|
ConvertedType = ToType;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-07-30 05:53:49 +08:00
|
|
|
const PointerType* ToTypePtr = ToType->getAs<PointerType>();
|
2008-10-22 00:13:35 +08:00
|
|
|
if (!ToTypePtr)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// A null pointer constant can be converted to a pointer type (C++ 4.10p1).
|
2009-08-28 23:55:56 +08:00
|
|
|
if (isNullPointerConstantForConversion(From, InOverloadResolution, Context)) {
|
2008-10-22 00:13:35 +08:00
|
|
|
ConvertedType = ToType;
|
|
|
|
return true;
|
|
|
|
}
|
2008-10-31 22:43:28 +08:00
|
|
|
|
2009-12-17 07:13:33 +08:00
|
|
|
// Beyond this point, both types need to be pointers
|
|
|
|
// , including objective-c pointers.
|
|
|
|
QualType ToPointeeType = ToTypePtr->getPointeeType();
|
|
|
|
if (FromType->isObjCObjectPointerType() && ToPointeeType->isVoidType()) {
|
|
|
|
ConvertedType = BuildSimilarlyQualifiedObjCObjectPointerType(FromType,
|
|
|
|
ToType, Context);
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
2009-07-30 05:53:49 +08:00
|
|
|
const PointerType *FromTypePtr = FromType->getAs<PointerType>();
|
2008-11-27 07:31:11 +08:00
|
|
|
if (!FromTypePtr)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
QualType FromPointeeType = FromTypePtr->getPointeeType();
|
|
|
|
|
2008-10-22 00:13:35 +08:00
|
|
|
// An rvalue of type "pointer to cv T," where T is an object type,
|
|
|
|
// can be converted to an rvalue of type "pointer to cv void" (C++
|
|
|
|
// 4.10p2).
|
2009-03-25 04:32:41 +08:00
|
|
|
if (FromPointeeType->isObjectType() && ToPointeeType->isVoidType()) {
|
2009-09-09 23:08:12 +08:00
|
|
|
ConvertedType = BuildSimilarlyQualifiedPointerType(FromTypePtr,
|
2008-11-27 08:52:49 +08:00
|
|
|
ToPointeeType,
|
2008-11-27 07:31:11 +08:00
|
|
|
ToType, Context);
|
2008-10-22 00:13:35 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
Initial implementation of function overloading in C.
This commit adds a new attribute, "overloadable", that enables C++
function overloading in C. The attribute can only be added to function
declarations, e.g.,
int *f(int) __attribute__((overloadable));
If the "overloadable" attribute exists on a function with a given
name, *all* functions with that name (and in that scope) must have the
"overloadable" attribute. Sets of overloaded functions with the
"overloadable" attribute then follow the normal C++ rules for
overloaded functions, e.g., overloads must have different
parameter-type-lists from each other.
When calling an overloaded function in C, we follow the same
overloading rules as C++, with three extensions to the set of standard
conversions:
- A value of a given struct or union type T can be converted to the
type T. This is just the identity conversion. (In C++, this would
go through a copy constructor).
- A value of pointer type T* can be converted to a value of type U*
if T and U are compatible types. This conversion has Conversion
rank (it's considered a pointer conversion in C).
- A value of type T can be converted to a value of type U if T and U
are compatible (and are not both pointer types). This conversion
has Conversion rank (it's considered to be a new kind of
conversion unique to C, a "compatible" conversion).
Known defects (and, therefore, next steps):
1) The standard-conversion handling does not understand conversions
involving _Complex or vector extensions, so it is likely to get
these wrong. We need to add these conversions.
2) All overloadable functions with the same name will have the same
linkage name, which means we'll get a collision in the linker (if
not sooner). We'll need to mangle the names of these functions.
llvm-svn: 64336
2009-02-12 07:02:49 +08:00
|
|
|
// When we're overloading in C, we allow a special kind of pointer
|
|
|
|
// conversion for compatible-but-not-identical pointee types.
|
2009-09-09 23:08:12 +08:00
|
|
|
if (!getLangOptions().CPlusPlus &&
|
Initial implementation of function overloading in C.
This commit adds a new attribute, "overloadable", that enables C++
function overloading in C. The attribute can only be added to function
declarations, e.g.,
int *f(int) __attribute__((overloadable));
If the "overloadable" attribute exists on a function with a given
name, *all* functions with that name (and in that scope) must have the
"overloadable" attribute. Sets of overloaded functions with the
"overloadable" attribute then follow the normal C++ rules for
overloaded functions, e.g., overloads must have different
parameter-type-lists from each other.
When calling an overloaded function in C, we follow the same
overloading rules as C++, with three extensions to the set of standard
conversions:
- A value of a given struct or union type T can be converted to the
type T. This is just the identity conversion. (In C++, this would
go through a copy constructor).
- A value of pointer type T* can be converted to a value of type U*
if T and U are compatible types. This conversion has Conversion
rank (it's considered a pointer conversion in C).
- A value of type T can be converted to a value of type U if T and U
are compatible (and are not both pointer types). This conversion
has Conversion rank (it's considered to be a new kind of
conversion unique to C, a "compatible" conversion).
Known defects (and, therefore, next steps):
1) The standard-conversion handling does not understand conversions
involving _Complex or vector extensions, so it is likely to get
these wrong. We need to add these conversions.
2) All overloadable functions with the same name will have the same
linkage name, which means we'll get a collision in the linker (if
not sooner). We'll need to mangle the names of these functions.
llvm-svn: 64336
2009-02-12 07:02:49 +08:00
|
|
|
Context.typesAreCompatible(FromPointeeType, ToPointeeType)) {
|
2009-09-09 23:08:12 +08:00
|
|
|
ConvertedType = BuildSimilarlyQualifiedPointerType(FromTypePtr,
|
Initial implementation of function overloading in C.
This commit adds a new attribute, "overloadable", that enables C++
function overloading in C. The attribute can only be added to function
declarations, e.g.,
int *f(int) __attribute__((overloadable));
If the "overloadable" attribute exists on a function with a given
name, *all* functions with that name (and in that scope) must have the
"overloadable" attribute. Sets of overloaded functions with the
"overloadable" attribute then follow the normal C++ rules for
overloaded functions, e.g., overloads must have different
parameter-type-lists from each other.
When calling an overloaded function in C, we follow the same
overloading rules as C++, with three extensions to the set of standard
conversions:
- A value of a given struct or union type T can be converted to the
type T. This is just the identity conversion. (In C++, this would
go through a copy constructor).
- A value of pointer type T* can be converted to a value of type U*
if T and U are compatible types. This conversion has Conversion
rank (it's considered a pointer conversion in C).
- A value of type T can be converted to a value of type U if T and U
are compatible (and are not both pointer types). This conversion
has Conversion rank (it's considered to be a new kind of
conversion unique to C, a "compatible" conversion).
Known defects (and, therefore, next steps):
1) The standard-conversion handling does not understand conversions
involving _Complex or vector extensions, so it is likely to get
these wrong. We need to add these conversions.
2) All overloadable functions with the same name will have the same
linkage name, which means we'll get a collision in the linker (if
not sooner). We'll need to mangle the names of these functions.
llvm-svn: 64336
2009-02-12 07:02:49 +08:00
|
|
|
ToPointeeType,
|
2009-09-09 23:08:12 +08:00
|
|
|
ToType, Context);
|
Initial implementation of function overloading in C.
This commit adds a new attribute, "overloadable", that enables C++
function overloading in C. The attribute can only be added to function
declarations, e.g.,
int *f(int) __attribute__((overloadable));
If the "overloadable" attribute exists on a function with a given
name, *all* functions with that name (and in that scope) must have the
"overloadable" attribute. Sets of overloaded functions with the
"overloadable" attribute then follow the normal C++ rules for
overloaded functions, e.g., overloads must have different
parameter-type-lists from each other.
When calling an overloaded function in C, we follow the same
overloading rules as C++, with three extensions to the set of standard
conversions:
- A value of a given struct or union type T can be converted to the
type T. This is just the identity conversion. (In C++, this would
go through a copy constructor).
- A value of pointer type T* can be converted to a value of type U*
if T and U are compatible types. This conversion has Conversion
rank (it's considered a pointer conversion in C).
- A value of type T can be converted to a value of type U if T and U
are compatible (and are not both pointer types). This conversion
has Conversion rank (it's considered to be a new kind of
conversion unique to C, a "compatible" conversion).
Known defects (and, therefore, next steps):
1) The standard-conversion handling does not understand conversions
involving _Complex or vector extensions, so it is likely to get
these wrong. We need to add these conversions.
2) All overloadable functions with the same name will have the same
linkage name, which means we'll get a collision in the linker (if
not sooner). We'll need to mangle the names of these functions.
llvm-svn: 64336
2009-02-12 07:02:49 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-10-23 08:40:37 +08:00
|
|
|
// C++ [conv.ptr]p3:
|
2009-09-09 23:08:12 +08:00
|
|
|
//
|
2008-10-23 08:40:37 +08:00
|
|
|
// An rvalue of type "pointer to cv D," where D is a class type,
|
|
|
|
// can be converted to an rvalue of type "pointer to cv B," where
|
|
|
|
// B is a base class (clause 10) of D. If B is an inaccessible
|
|
|
|
// (clause 11) or ambiguous (10.2) base class of D, a program that
|
|
|
|
// necessitates this conversion is ill-formed. The result of the
|
|
|
|
// conversion is a pointer to the base class sub-object of the
|
|
|
|
// derived class object. The null pointer value is converted to
|
|
|
|
// the null pointer value of the destination type.
|
|
|
|
//
|
2008-10-24 12:54:22 +08:00
|
|
|
// Note that we do not check for ambiguity or inaccessibility
|
|
|
|
// here. That is handled by CheckPointerConversion.
|
Initial implementation of function overloading in C.
This commit adds a new attribute, "overloadable", that enables C++
function overloading in C. The attribute can only be added to function
declarations, e.g.,
int *f(int) __attribute__((overloadable));
If the "overloadable" attribute exists on a function with a given
name, *all* functions with that name (and in that scope) must have the
"overloadable" attribute. Sets of overloaded functions with the
"overloadable" attribute then follow the normal C++ rules for
overloaded functions, e.g., overloads must have different
parameter-type-lists from each other.
When calling an overloaded function in C, we follow the same
overloading rules as C++, with three extensions to the set of standard
conversions:
- A value of a given struct or union type T can be converted to the
type T. This is just the identity conversion. (In C++, this would
go through a copy constructor).
- A value of pointer type T* can be converted to a value of type U*
if T and U are compatible types. This conversion has Conversion
rank (it's considered a pointer conversion in C).
- A value of type T can be converted to a value of type U if T and U
are compatible (and are not both pointer types). This conversion
has Conversion rank (it's considered to be a new kind of
conversion unique to C, a "compatible" conversion).
Known defects (and, therefore, next steps):
1) The standard-conversion handling does not understand conversions
involving _Complex or vector extensions, so it is likely to get
these wrong. We need to add these conversions.
2) All overloadable functions with the same name will have the same
linkage name, which means we'll get a collision in the linker (if
not sooner). We'll need to mangle the names of these functions.
llvm-svn: 64336
2009-02-12 07:02:49 +08:00
|
|
|
if (getLangOptions().CPlusPlus &&
|
|
|
|
FromPointeeType->isRecordType() && ToPointeeType->isRecordType() &&
|
2009-10-30 07:08:22 +08:00
|
|
|
!RequireCompleteType(From->getLocStart(), FromPointeeType, PDiag()) &&
|
2008-11-27 07:31:11 +08:00
|
|
|
IsDerivedFrom(FromPointeeType, ToPointeeType)) {
|
2009-09-09 23:08:12 +08:00
|
|
|
ConvertedType = BuildSimilarlyQualifiedPointerType(FromTypePtr,
|
2008-11-27 08:52:49 +08:00
|
|
|
ToPointeeType,
|
2008-11-27 07:31:11 +08:00
|
|
|
ToType, Context);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-12-20 03:13:09 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// isObjCPointerConversion - Determines whether this is an
|
|
|
|
/// Objective-C pointer conversion. Subroutine of IsPointerConversion,
|
|
|
|
/// with the same arguments and return values.
|
2009-09-09 23:08:12 +08:00
|
|
|
bool Sema::isObjCPointerConversion(QualType FromType, QualType ToType,
|
2008-12-20 03:13:09 +08:00
|
|
|
QualType& ConvertedType,
|
|
|
|
bool &IncompatibleObjC) {
|
|
|
|
if (!getLangOptions().ObjC1)
|
|
|
|
return false;
|
|
|
|
|
2009-07-11 07:34:53 +08:00
|
|
|
// First, we handle all conversions on ObjC object pointer types.
|
2009-09-22 07:43:11 +08:00
|
|
|
const ObjCObjectPointerType* ToObjCPtr = ToType->getAs<ObjCObjectPointerType>();
|
2009-09-09 23:08:12 +08:00
|
|
|
const ObjCObjectPointerType *FromObjCPtr =
|
2009-09-22 07:43:11 +08:00
|
|
|
FromType->getAs<ObjCObjectPointerType>();
|
2009-07-11 07:34:53 +08:00
|
|
|
|
|
|
|
if (ToObjCPtr && FromObjCPtr) {
|
2009-07-16 02:40:39 +08:00
|
|
|
// Objective C++: We're able to convert between "id" or "Class" and a
|
2009-07-11 07:34:53 +08:00
|
|
|
// pointer to any interface (in both directions).
|
2009-07-16 02:40:39 +08:00
|
|
|
if (ToObjCPtr->isObjCBuiltinType() && FromObjCPtr->isObjCBuiltinType()) {
|
2009-07-11 07:34:53 +08:00
|
|
|
ConvertedType = ToType;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
// Conversions with Objective-C's id<...>.
|
2009-09-09 23:08:12 +08:00
|
|
|
if ((FromObjCPtr->isObjCQualifiedIdType() ||
|
2009-07-11 07:34:53 +08:00
|
|
|
ToObjCPtr->isObjCQualifiedIdType()) &&
|
2009-09-09 23:08:12 +08:00
|
|
|
Context.ObjCQualifiedIdTypesAreCompatible(ToType, FromType,
|
2009-07-23 09:01:38 +08:00
|
|
|
/*compare=*/false)) {
|
2009-07-11 07:34:53 +08:00
|
|
|
ConvertedType = ToType;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
// Objective C++: We're able to convert from a pointer to an
|
|
|
|
// interface to a pointer to a different interface.
|
|
|
|
if (Context.canAssignObjCInterfaces(ToObjCPtr, FromObjCPtr)) {
|
|
|
|
ConvertedType = ToType;
|
|
|
|
return true;
|
|
|
|
}
|
2008-12-20 03:13:09 +08:00
|
|
|
|
2009-07-11 07:34:53 +08:00
|
|
|
if (Context.canAssignObjCInterfaces(FromObjCPtr, ToObjCPtr)) {
|
|
|
|
// Okay: this is some kind of implicit downcast of Objective-C
|
|
|
|
// interfaces, which is permitted. However, we're going to
|
|
|
|
// complain about it.
|
|
|
|
IncompatibleObjC = true;
|
|
|
|
ConvertedType = FromType;
|
|
|
|
return true;
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
}
|
2009-07-11 07:34:53 +08:00
|
|
|
// Beyond this point, both types need to be C pointers or block pointers.
|
2008-12-23 08:53:59 +08:00
|
|
|
QualType ToPointeeType;
|
2009-07-30 05:53:49 +08:00
|
|
|
if (const PointerType *ToCPtr = ToType->getAs<PointerType>())
|
2009-07-11 07:34:53 +08:00
|
|
|
ToPointeeType = ToCPtr->getPointeeType();
|
2009-07-30 05:53:49 +08:00
|
|
|
else if (const BlockPointerType *ToBlockPtr = ToType->getAs<BlockPointerType>())
|
2008-12-23 08:53:59 +08:00
|
|
|
ToPointeeType = ToBlockPtr->getPointeeType();
|
|
|
|
else
|
2008-12-20 03:13:09 +08:00
|
|
|
return false;
|
|
|
|
|
2008-12-23 08:53:59 +08:00
|
|
|
QualType FromPointeeType;
|
2009-07-30 05:53:49 +08:00
|
|
|
if (const PointerType *FromCPtr = FromType->getAs<PointerType>())
|
2009-07-11 07:34:53 +08:00
|
|
|
FromPointeeType = FromCPtr->getPointeeType();
|
2009-07-30 05:53:49 +08:00
|
|
|
else if (const BlockPointerType *FromBlockPtr = FromType->getAs<BlockPointerType>())
|
2008-12-23 08:53:59 +08:00
|
|
|
FromPointeeType = FromBlockPtr->getPointeeType();
|
|
|
|
else
|
2008-12-20 03:13:09 +08:00
|
|
|
return false;
|
|
|
|
|
|
|
|
// If we have pointers to pointers, recursively check whether this
|
|
|
|
// is an Objective-C conversion.
|
|
|
|
if (FromPointeeType->isPointerType() && ToPointeeType->isPointerType() &&
|
|
|
|
isObjCPointerConversion(FromPointeeType, ToPointeeType, ConvertedType,
|
|
|
|
IncompatibleObjC)) {
|
|
|
|
// We always complain about this conversion.
|
|
|
|
IncompatibleObjC = true;
|
|
|
|
ConvertedType = ToType;
|
|
|
|
return true;
|
|
|
|
}
|
2008-12-23 08:53:59 +08:00
|
|
|
// If we have pointers to functions or blocks, check whether the only
|
2008-12-20 03:13:09 +08:00
|
|
|
// differences in the argument and result types are in Objective-C
|
|
|
|
// pointer conversions. If so, we permit the conversion (but
|
|
|
|
// complain about it).
|
2009-09-09 23:08:12 +08:00
|
|
|
const FunctionProtoType *FromFunctionType
|
2009-09-22 07:43:11 +08:00
|
|
|
= FromPointeeType->getAs<FunctionProtoType>();
|
2009-02-27 07:50:07 +08:00
|
|
|
const FunctionProtoType *ToFunctionType
|
2009-09-22 07:43:11 +08:00
|
|
|
= ToPointeeType->getAs<FunctionProtoType>();
|
2008-12-20 03:13:09 +08:00
|
|
|
if (FromFunctionType && ToFunctionType) {
|
|
|
|
// If the function types are exactly the same, this isn't an
|
|
|
|
// Objective-C pointer conversion.
|
|
|
|
if (Context.getCanonicalType(FromPointeeType)
|
|
|
|
== Context.getCanonicalType(ToPointeeType))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Perform the quick checks that will tell us whether these
|
|
|
|
// function types are obviously different.
|
|
|
|
if (FromFunctionType->getNumArgs() != ToFunctionType->getNumArgs() ||
|
|
|
|
FromFunctionType->isVariadic() != ToFunctionType->isVariadic() ||
|
|
|
|
FromFunctionType->getTypeQuals() != ToFunctionType->getTypeQuals())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
bool HasObjCConversion = false;
|
|
|
|
if (Context.getCanonicalType(FromFunctionType->getResultType())
|
|
|
|
== Context.getCanonicalType(ToFunctionType->getResultType())) {
|
|
|
|
// Okay, the types match exactly. Nothing to do.
|
|
|
|
} else if (isObjCPointerConversion(FromFunctionType->getResultType(),
|
|
|
|
ToFunctionType->getResultType(),
|
|
|
|
ConvertedType, IncompatibleObjC)) {
|
|
|
|
// Okay, we have an Objective-C pointer conversion.
|
|
|
|
HasObjCConversion = true;
|
|
|
|
} else {
|
|
|
|
// Function types are too different. Abort.
|
|
|
|
return false;
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-12-20 03:13:09 +08:00
|
|
|
// Check argument types.
|
|
|
|
for (unsigned ArgIdx = 0, NumArgs = FromFunctionType->getNumArgs();
|
|
|
|
ArgIdx != NumArgs; ++ArgIdx) {
|
|
|
|
QualType FromArgType = FromFunctionType->getArgType(ArgIdx);
|
|
|
|
QualType ToArgType = ToFunctionType->getArgType(ArgIdx);
|
|
|
|
if (Context.getCanonicalType(FromArgType)
|
|
|
|
== Context.getCanonicalType(ToArgType)) {
|
|
|
|
// Okay, the types match exactly. Nothing to do.
|
|
|
|
} else if (isObjCPointerConversion(FromArgType, ToArgType,
|
|
|
|
ConvertedType, IncompatibleObjC)) {
|
|
|
|
// Okay, we have an Objective-C pointer conversion.
|
|
|
|
HasObjCConversion = true;
|
|
|
|
} else {
|
|
|
|
// Argument types are too different. Abort.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (HasObjCConversion) {
|
|
|
|
// We had an Objective-C conversion. Allow this pointer
|
|
|
|
// conversion, but complain about it.
|
|
|
|
ConvertedType = ToType;
|
|
|
|
IncompatibleObjC = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-26 03:43:20 +08:00
|
|
|
return false;
|
2008-10-22 00:13:35 +08:00
|
|
|
}
|
|
|
|
|
2008-10-24 12:54:22 +08:00
|
|
|
/// CheckPointerConversion - Check the pointer conversion from the
|
|
|
|
/// expression From to the type ToType. This routine checks for
|
2009-07-25 23:41:38 +08:00
|
|
|
/// ambiguous or inaccessible derived-to-base pointer
|
2008-10-24 12:54:22 +08:00
|
|
|
/// conversions for which IsPointerConversion has already returned
|
|
|
|
/// true. It returns true and produces a diagnostic if there was an
|
|
|
|
/// error, or returns false otherwise.
|
2009-09-12 12:46:44 +08:00
|
|
|
bool Sema::CheckPointerConversion(Expr *From, QualType ToType,
|
2009-11-15 05:15:49 +08:00
|
|
|
CastExpr::CastKind &Kind,
|
|
|
|
bool IgnoreBaseAccess) {
|
2008-10-24 12:54:22 +08:00
|
|
|
QualType FromType = From->getType();
|
|
|
|
|
2009-07-30 05:53:49 +08:00
|
|
|
if (const PointerType *FromPtrType = FromType->getAs<PointerType>())
|
|
|
|
if (const PointerType *ToPtrType = ToType->getAs<PointerType>()) {
|
2008-10-24 12:54:22 +08:00
|
|
|
QualType FromPointeeType = FromPtrType->getPointeeType(),
|
|
|
|
ToPointeeType = ToPtrType->getPointeeType();
|
2008-12-19 07:43:31 +08:00
|
|
|
|
2008-10-24 12:54:22 +08:00
|
|
|
if (FromPointeeType->isRecordType() &&
|
|
|
|
ToPointeeType->isRecordType()) {
|
|
|
|
// We must have a derived-to-base conversion. Check an
|
|
|
|
// ambiguous or inaccessible conversion.
|
2009-09-12 12:46:44 +08:00
|
|
|
if (CheckDerivedToBaseConversion(FromPointeeType, ToPointeeType,
|
|
|
|
From->getExprLoc(),
|
2009-11-15 05:15:49 +08:00
|
|
|
From->getSourceRange(),
|
|
|
|
IgnoreBaseAccess))
|
2009-09-12 12:46:44 +08:00
|
|
|
return true;
|
|
|
|
|
|
|
|
// The conversion was successful.
|
|
|
|
Kind = CastExpr::CK_DerivedToBase;
|
2008-10-24 12:54:22 +08:00
|
|
|
}
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
if (const ObjCObjectPointerType *FromPtrType =
|
2009-09-22 07:43:11 +08:00
|
|
|
FromType->getAs<ObjCObjectPointerType>())
|
2009-09-09 23:08:12 +08:00
|
|
|
if (const ObjCObjectPointerType *ToPtrType =
|
2009-09-22 07:43:11 +08:00
|
|
|
ToType->getAs<ObjCObjectPointerType>()) {
|
2009-07-11 07:34:53 +08:00
|
|
|
// Objective-C++ conversions are always okay.
|
|
|
|
// FIXME: We should have a different class of conversions for the
|
|
|
|
// Objective-C++ implicit conversions.
|
2009-07-16 02:40:39 +08:00
|
|
|
if (FromPtrType->isObjCBuiltinType() || ToPtrType->isObjCBuiltinType())
|
2009-07-11 07:34:53 +08:00
|
|
|
return false;
|
2008-10-24 12:54:22 +08:00
|
|
|
|
2009-07-11 07:34:53 +08:00
|
|
|
}
|
2008-10-24 12:54:22 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-01-26 03:43:20 +08:00
|
|
|
/// IsMemberPointerConversion - Determines whether the conversion of the
|
|
|
|
/// expression From, which has the (possibly adjusted) type FromType, can be
|
|
|
|
/// converted to the type ToType via a member pointer conversion (C++ 4.11).
|
|
|
|
/// If so, returns true and places the converted type (that might differ from
|
|
|
|
/// ToType in its cv-qualifiers at some level) into ConvertedType.
|
|
|
|
bool Sema::IsMemberPointerConversion(Expr *From, QualType FromType,
|
2009-09-25 12:25:58 +08:00
|
|
|
QualType ToType,
|
|
|
|
bool InOverloadResolution,
|
|
|
|
QualType &ConvertedType) {
|
2009-07-30 05:53:49 +08:00
|
|
|
const MemberPointerType *ToTypePtr = ToType->getAs<MemberPointerType>();
|
2009-01-26 03:43:20 +08:00
|
|
|
if (!ToTypePtr)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// A null pointer constant can be converted to a member pointer (C++ 4.11p1)
|
2009-09-25 12:25:58 +08:00
|
|
|
if (From->isNullPointerConstant(Context,
|
|
|
|
InOverloadResolution? Expr::NPC_ValueDependentIsNotNull
|
|
|
|
: Expr::NPC_ValueDependentIsNull)) {
|
2009-01-26 03:43:20 +08:00
|
|
|
ConvertedType = ToType;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, both types have to be member pointers.
|
2009-07-30 05:53:49 +08:00
|
|
|
const MemberPointerType *FromTypePtr = FromType->getAs<MemberPointerType>();
|
2009-01-26 03:43:20 +08:00
|
|
|
if (!FromTypePtr)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// A pointer to member of B can be converted to a pointer to member of D,
|
|
|
|
// where D is derived from B (C++ 4.11p2).
|
|
|
|
QualType FromClass(FromTypePtr->getClass(), 0);
|
|
|
|
QualType ToClass(ToTypePtr->getClass(), 0);
|
|
|
|
// FIXME: What happens when these are dependent? Is this function even called?
|
|
|
|
|
|
|
|
if (IsDerivedFrom(ToClass, FromClass)) {
|
|
|
|
ConvertedType = Context.getMemberPointerType(FromTypePtr->getPointeeType(),
|
|
|
|
ToClass.getTypePtr());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2009-12-09 08:47:37 +08:00
|
|
|
|
2009-01-26 03:43:20 +08:00
|
|
|
/// CheckMemberPointerConversion - Check the member pointer conversion from the
|
|
|
|
/// expression From to the type ToType. This routine checks for ambiguous or
|
|
|
|
/// virtual (FIXME: or inaccessible) base-to-derived member pointer conversions
|
|
|
|
/// for which IsMemberPointerConversion has already returned true. It returns
|
|
|
|
/// true and produces a diagnostic if there was an error, or returns false
|
|
|
|
/// otherwise.
|
2009-09-09 23:08:12 +08:00
|
|
|
bool Sema::CheckMemberPointerConversion(Expr *From, QualType ToType,
|
2009-11-15 05:15:49 +08:00
|
|
|
CastExpr::CastKind &Kind,
|
|
|
|
bool IgnoreBaseAccess) {
|
|
|
|
(void)IgnoreBaseAccess;
|
2009-01-26 03:43:20 +08:00
|
|
|
QualType FromType = From->getType();
|
2009-07-30 05:53:49 +08:00
|
|
|
const MemberPointerType *FromPtrType = FromType->getAs<MemberPointerType>();
|
2009-08-23 07:33:40 +08:00
|
|
|
if (!FromPtrType) {
|
|
|
|
// This must be a null pointer to member pointer conversion
|
2009-09-25 12:25:58 +08:00
|
|
|
assert(From->isNullPointerConstant(Context,
|
|
|
|
Expr::NPC_ValueDependentIsNull) &&
|
2009-08-23 07:33:40 +08:00
|
|
|
"Expr must be null pointer constant!");
|
|
|
|
Kind = CastExpr::CK_NullToMemberPointer;
|
2009-01-29 02:33:18 +08:00
|
|
|
return false;
|
2009-08-23 07:33:40 +08:00
|
|
|
}
|
2009-01-26 03:43:20 +08:00
|
|
|
|
2009-07-30 05:53:49 +08:00
|
|
|
const MemberPointerType *ToPtrType = ToType->getAs<MemberPointerType>();
|
2009-01-29 02:33:18 +08:00
|
|
|
assert(ToPtrType && "No member pointer cast has a target type "
|
|
|
|
"that is not a member pointer.");
|
|
|
|
|
|
|
|
QualType FromClass = QualType(FromPtrType->getClass(), 0);
|
|
|
|
QualType ToClass = QualType(ToPtrType->getClass(), 0);
|
|
|
|
|
|
|
|
// FIXME: What about dependent types?
|
|
|
|
assert(FromClass->isRecordType() && "Pointer into non-class.");
|
|
|
|
assert(ToClass->isRecordType() && "Pointer into non-class.");
|
|
|
|
|
2009-10-07 01:59:45 +08:00
|
|
|
CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/false,
|
|
|
|
/*DetectVirtual=*/true);
|
2009-01-29 02:33:18 +08:00
|
|
|
bool DerivationOkay = IsDerivedFrom(ToClass, FromClass, Paths);
|
|
|
|
assert(DerivationOkay &&
|
|
|
|
"Should not have been called if derivation isn't OK.");
|
|
|
|
(void)DerivationOkay;
|
|
|
|
|
|
|
|
if (Paths.isAmbiguous(Context.getCanonicalType(FromClass).
|
|
|
|
getUnqualifiedType())) {
|
|
|
|
// Derivation is ambiguous. Redo the check to find the exact paths.
|
|
|
|
Paths.clear();
|
|
|
|
Paths.setRecordingPaths(true);
|
|
|
|
bool StillOkay = IsDerivedFrom(ToClass, FromClass, Paths);
|
|
|
|
assert(StillOkay && "Derivation changed due to quantum fluctuation.");
|
|
|
|
(void)StillOkay;
|
|
|
|
|
|
|
|
std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths);
|
|
|
|
Diag(From->getExprLoc(), diag::err_ambiguous_memptr_conv)
|
|
|
|
<< 0 << FromClass << ToClass << PathDisplayStr << From->getSourceRange();
|
|
|
|
return true;
|
|
|
|
}
|
2009-01-26 03:43:20 +08:00
|
|
|
|
2009-02-28 09:32:25 +08:00
|
|
|
if (const RecordType *VBase = Paths.getDetectedVirtual()) {
|
2009-01-29 02:33:18 +08:00
|
|
|
Diag(From->getExprLoc(), diag::err_memptr_conv_via_virtual)
|
|
|
|
<< FromClass << ToClass << QualType(VBase, 0)
|
|
|
|
<< From->getSourceRange();
|
|
|
|
return true;
|
2009-01-26 03:43:20 +08:00
|
|
|
}
|
2009-01-29 02:33:18 +08:00
|
|
|
|
2009-08-23 07:33:40 +08:00
|
|
|
// Must be a base to derived member conversion.
|
|
|
|
Kind = CastExpr::CK_BaseToDerivedMemberPointer;
|
2009-01-26 03:43:20 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-10-22 07:43:52 +08:00
|
|
|
/// IsQualificationConversion - Determines whether the conversion from
|
|
|
|
/// an rvalue of type FromType to ToType is a qualification conversion
|
|
|
|
/// (C++ 4.4).
|
2009-09-09 23:08:12 +08:00
|
|
|
bool
|
|
|
|
Sema::IsQualificationConversion(QualType FromType, QualType ToType) {
|
2008-10-22 07:43:52 +08:00
|
|
|
FromType = Context.getCanonicalType(FromType);
|
|
|
|
ToType = Context.getCanonicalType(ToType);
|
|
|
|
|
|
|
|
// If FromType and ToType are the same type, this is not a
|
|
|
|
// qualification conversion.
|
|
|
|
if (FromType == ToType)
|
|
|
|
return false;
|
2009-01-29 02:33:18 +08:00
|
|
|
|
2008-10-22 07:43:52 +08:00
|
|
|
// (C++ 4.4p4):
|
|
|
|
// A conversion can add cv-qualifiers at levels other than the first
|
|
|
|
// in multi-level pointers, subject to the following rules: [...]
|
|
|
|
bool PreviousToQualsIncludeConst = true;
|
|
|
|
bool UnwrappedAnyPointer = false;
|
2008-10-22 22:17:15 +08:00
|
|
|
while (UnwrapSimilarPointerTypes(FromType, ToType)) {
|
2008-10-22 07:43:52 +08:00
|
|
|
// Within each iteration of the loop, we check the qualifiers to
|
|
|
|
// determine if this still looks like a qualification
|
|
|
|
// conversion. Then, if all is well, we unwrap one more level of
|
2008-10-23 01:49:05 +08:00
|
|
|
// pointers or pointers-to-members and do it all again
|
2008-10-22 07:43:52 +08:00
|
|
|
// until there are no more pointers or pointers-to-members left to
|
|
|
|
// unwrap.
|
2008-10-22 22:17:15 +08:00
|
|
|
UnwrappedAnyPointer = true;
|
2008-10-22 07:43:52 +08:00
|
|
|
|
|
|
|
// -- for every j > 0, if const is in cv 1,j then const is in cv
|
|
|
|
// 2,j, and similarly for volatile.
|
2008-10-22 08:38:21 +08:00
|
|
|
if (!ToType.isAtLeastAsQualifiedAs(FromType))
|
2008-10-22 07:43:52 +08:00
|
|
|
return false;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-10-22 07:43:52 +08:00
|
|
|
// -- if the cv 1,j and cv 2,j are different, then const is in
|
|
|
|
// every cv for 0 < k < j.
|
|
|
|
if (FromType.getCVRQualifiers() != ToType.getCVRQualifiers()
|
2008-10-22 22:17:15 +08:00
|
|
|
&& !PreviousToQualsIncludeConst)
|
2008-10-22 07:43:52 +08:00
|
|
|
return false;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-10-22 07:43:52 +08:00
|
|
|
// Keep track of whether all prior cv-qualifiers in the "to" type
|
|
|
|
// include const.
|
2009-09-09 23:08:12 +08:00
|
|
|
PreviousToQualsIncludeConst
|
2008-10-22 07:43:52 +08:00
|
|
|
= PreviousToQualsIncludeConst && ToType.isConstQualified();
|
2008-10-22 22:17:15 +08:00
|
|
|
}
|
2008-10-22 07:43:52 +08:00
|
|
|
|
|
|
|
// We are left with FromType and ToType being the pointee types
|
|
|
|
// after unwrapping the original FromType and ToType the same number
|
|
|
|
// of types. If we unwrapped any pointers, and if FromType and
|
|
|
|
// ToType have the same unqualified type (since we checked
|
|
|
|
// qualifiers above), then this is a qualification conversion.
|
First part of changes to eliminate problems with cv-qualifiers and
sugared types. The basic problem is that our qualifier accessors
(getQualifiers, getCVRQualifiers, isConstQualified, etc.) only look at
the current QualType and not at any qualifiers that come from sugared
types, meaning that we won't see these qualifiers through, e.g.,
typedefs:
typedef const int CInt;
typedef CInt Self;
Self.isConstQualified() currently returns false!
Various bugs (e.g., PR5383) have cropped up all over the front end due
to such problems. I'm addressing this problem by splitting each
qualifier accessor into two versions:
- the "local" version only returns qualifiers on this particular
QualType instance
- the "normal" version that will eventually combine qualifiers from this
QualType instance with the qualifiers on the canonical type to
produce the full set of qualifiers.
This commit adds the local versions and switches a few callers from
the "normal" version (e.g., isConstQualified) over to the "local"
version (e.g., isLocalConstQualified) when that is the right thing to
do, e.g., because we're printing or serializing the qualifiers. Also,
switch a bunch of
Context.getCanonicalType(T1).getUnqualifiedType() == Context.getCanonicalType(T2).getQualifiedType()
expressions over to
Context.hasSameUnqualifiedType(T1, T2)
llvm-svn: 88969
2009-11-17 05:35:15 +08:00
|
|
|
return UnwrappedAnyPointer && Context.hasSameUnqualifiedType(FromType,ToType);
|
2008-10-22 07:43:52 +08:00
|
|
|
}
|
|
|
|
|
2009-01-31 07:27:23 +08:00
|
|
|
/// Determines whether there is a user-defined conversion sequence
|
|
|
|
/// (C++ [over.ics.user]) that converts expression From to the type
|
|
|
|
/// ToType. If such a conversion exists, User will contain the
|
|
|
|
/// user-defined conversion sequence that performs such a conversion
|
|
|
|
/// and this routine will return true. Otherwise, this routine returns
|
|
|
|
/// false and User is unspecified.
|
|
|
|
///
|
|
|
|
/// \param AllowConversionFunctions true if the conversion should
|
|
|
|
/// consider conversion functions at all. If false, only constructors
|
|
|
|
/// will be considered.
|
|
|
|
///
|
|
|
|
/// \param AllowExplicit true if the conversion should consider C++0x
|
|
|
|
/// "explicit" conversion functions as well as non-explicit conversion
|
|
|
|
/// functions (C++0x [class.conv.fct]p2).
|
2009-04-13 01:16:29 +08:00
|
|
|
///
|
|
|
|
/// \param ForceRValue true if the expression should be treated as an rvalue
|
|
|
|
/// for overload resolution.
|
2009-10-02 04:39:51 +08:00
|
|
|
/// \param UserCast true if looking for user defined conversion for a static
|
|
|
|
/// cast.
|
2009-12-10 07:02:17 +08:00
|
|
|
OverloadingResult Sema::IsUserDefinedConversion(Expr *From, QualType ToType,
|
|
|
|
UserDefinedConversionSequence& User,
|
|
|
|
OverloadCandidateSet& CandidateSet,
|
|
|
|
bool AllowConversionFunctions,
|
|
|
|
bool AllowExplicit,
|
|
|
|
bool ForceRValue,
|
|
|
|
bool UserCast) {
|
2009-07-30 05:53:49 +08:00
|
|
|
if (const RecordType *ToRecordType = ToType->getAs<RecordType>()) {
|
2009-11-05 21:06:35 +08:00
|
|
|
if (RequireCompleteType(From->getLocStart(), ToType, PDiag())) {
|
|
|
|
// We're not going to find any constructors.
|
|
|
|
} else if (CXXRecordDecl *ToRecordDecl
|
|
|
|
= dyn_cast<CXXRecordDecl>(ToRecordType->getDecl())) {
|
2009-02-28 09:32:25 +08:00
|
|
|
// C++ [over.match.ctor]p1:
|
|
|
|
// When objects of class type are direct-initialized (8.5), or
|
|
|
|
// copy-initialized from an expression of the same or a
|
|
|
|
// derived class type (8.5), overload resolution selects the
|
|
|
|
// constructor. [...] For copy-initialization, the candidate
|
|
|
|
// functions are all the converting constructors (12.3.1) of
|
|
|
|
// that class. The argument list is the expression-list within
|
|
|
|
// the parentheses of the initializer.
|
2009-11-14 02:44:21 +08:00
|
|
|
bool SuppressUserConversions = !UserCast;
|
|
|
|
if (Context.hasSameUnqualifiedType(ToType, From->getType()) ||
|
|
|
|
IsDerivedFrom(From->getType(), ToType)) {
|
|
|
|
SuppressUserConversions = false;
|
|
|
|
AllowConversionFunctions = false;
|
|
|
|
}
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
DeclarationName ConstructorName
|
2009-02-28 09:32:25 +08:00
|
|
|
= Context.DeclarationNames.getCXXConstructorName(
|
|
|
|
Context.getCanonicalType(ToType).getUnqualifiedType());
|
|
|
|
DeclContext::lookup_iterator Con, ConEnd;
|
2009-09-09 23:08:12 +08:00
|
|
|
for (llvm::tie(Con, ConEnd)
|
2009-06-30 10:36:12 +08:00
|
|
|
= ToRecordDecl->lookup(ConstructorName);
|
2009-02-28 09:32:25 +08:00
|
|
|
Con != ConEnd; ++Con) {
|
2009-08-22 02:42:58 +08:00
|
|
|
// Find the constructor (which may be a template).
|
|
|
|
CXXConstructorDecl *Constructor = 0;
|
|
|
|
FunctionTemplateDecl *ConstructorTmpl
|
|
|
|
= dyn_cast<FunctionTemplateDecl>(*Con);
|
|
|
|
if (ConstructorTmpl)
|
2009-09-09 23:08:12 +08:00
|
|
|
Constructor
|
2009-08-22 02:42:58 +08:00
|
|
|
= cast<CXXConstructorDecl>(ConstructorTmpl->getTemplatedDecl());
|
|
|
|
else
|
|
|
|
Constructor = cast<CXXConstructorDecl>(*Con);
|
2009-11-14 09:20:54 +08:00
|
|
|
|
2009-08-07 01:22:51 +08:00
|
|
|
if (!Constructor->isInvalidDecl() &&
|
2009-08-29 00:57:08 +08:00
|
|
|
Constructor->isConvertingConstructor(AllowExplicit)) {
|
2009-08-22 02:42:58 +08:00
|
|
|
if (ConstructorTmpl)
|
2009-11-23 09:53:49 +08:00
|
|
|
AddTemplateOverloadCandidate(ConstructorTmpl, /*ExplicitArgs*/ 0,
|
|
|
|
&From, 1, CandidateSet,
|
2009-11-14 02:44:21 +08:00
|
|
|
SuppressUserConversions, ForceRValue);
|
2009-08-22 02:42:58 +08:00
|
|
|
else
|
2009-10-02 04:39:51 +08:00
|
|
|
// Allow one user-defined conversion when user specifies a
|
|
|
|
// From->ToType conversion via an static cast (c-style, etc).
|
2009-08-22 02:42:58 +08:00
|
|
|
AddOverloadCandidate(Constructor, &From, 1, CandidateSet,
|
2009-11-14 02:44:21 +08:00
|
|
|
SuppressUserConversions, ForceRValue);
|
2009-08-22 02:42:58 +08:00
|
|
|
}
|
2009-02-28 09:32:25 +08:00
|
|
|
}
|
2008-11-01 00:23:19 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-31 07:27:23 +08:00
|
|
|
if (!AllowConversionFunctions) {
|
|
|
|
// Don't allow any conversion functions to enter the overload set.
|
2009-09-09 23:08:12 +08:00
|
|
|
} else if (RequireCompleteType(From->getLocStart(), From->getType(),
|
|
|
|
PDiag(0)
|
2009-08-27 07:45:07 +08:00
|
|
|
<< From->getSourceRange())) {
|
2009-08-24 23:23:48 +08:00
|
|
|
// No conversion functions from incomplete types.
|
2009-09-09 23:08:12 +08:00
|
|
|
} else if (const RecordType *FromRecordType
|
2009-07-30 05:53:49 +08:00
|
|
|
= From->getType()->getAs<RecordType>()) {
|
2009-09-09 23:08:12 +08:00
|
|
|
if (CXXRecordDecl *FromRecordDecl
|
2009-09-12 02:46:22 +08:00
|
|
|
= dyn_cast<CXXRecordDecl>(FromRecordType->getDecl())) {
|
|
|
|
// Add all of the conversion functions as candidates.
|
2009-11-21 16:51:07 +08:00
|
|
|
const UnresolvedSet *Conversions
|
2009-09-15 04:41:01 +08:00
|
|
|
= FromRecordDecl->getVisibleConversionFunctions();
|
2009-11-21 16:51:07 +08:00
|
|
|
for (UnresolvedSet::iterator I = Conversions->begin(),
|
|
|
|
E = Conversions->end(); I != E; ++I) {
|
2009-12-03 12:06:58 +08:00
|
|
|
NamedDecl *D = *I;
|
|
|
|
CXXRecordDecl *ActingContext = cast<CXXRecordDecl>(D->getDeclContext());
|
|
|
|
if (isa<UsingShadowDecl>(D))
|
|
|
|
D = cast<UsingShadowDecl>(D)->getTargetDecl();
|
|
|
|
|
2009-09-12 02:46:22 +08:00
|
|
|
CXXConversionDecl *Conv;
|
|
|
|
FunctionTemplateDecl *ConvTemplate;
|
2009-11-21 16:51:07 +08:00
|
|
|
if ((ConvTemplate = dyn_cast<FunctionTemplateDecl>(*I)))
|
2009-09-12 02:46:22 +08:00
|
|
|
Conv = dyn_cast<CXXConversionDecl>(ConvTemplate->getTemplatedDecl());
|
|
|
|
else
|
2009-11-21 16:51:07 +08:00
|
|
|
Conv = dyn_cast<CXXConversionDecl>(*I);
|
2009-09-12 02:46:22 +08:00
|
|
|
|
|
|
|
if (AllowExplicit || !Conv->isExplicit()) {
|
|
|
|
if (ConvTemplate)
|
2009-12-03 12:06:58 +08:00
|
|
|
AddTemplateConversionCandidate(ConvTemplate, ActingContext,
|
|
|
|
From, ToType, CandidateSet);
|
2009-09-12 02:46:22 +08:00
|
|
|
else
|
2009-12-03 12:06:58 +08:00
|
|
|
AddConversionCandidate(Conv, ActingContext, From, ToType,
|
|
|
|
CandidateSet);
|
2009-09-12 02:46:22 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-11-08 06:36:19 +08:00
|
|
|
}
|
2008-11-01 00:23:19 +08:00
|
|
|
|
|
|
|
OverloadCandidateSet::iterator Best;
|
2009-06-20 07:52:42 +08:00
|
|
|
switch (BestViableFunction(CandidateSet, From->getLocStart(), Best)) {
|
2008-11-01 00:23:19 +08:00
|
|
|
case OR_Success:
|
|
|
|
// Record the standard conversion we used and the conversion function.
|
2009-09-09 23:08:12 +08:00
|
|
|
if (CXXConstructorDecl *Constructor
|
2008-11-01 00:23:19 +08:00
|
|
|
= dyn_cast<CXXConstructorDecl>(Best->Function)) {
|
|
|
|
// C++ [over.ics.user]p1:
|
|
|
|
// If the user-defined conversion is specified by a
|
|
|
|
// constructor (12.3.1), the initial standard conversion
|
|
|
|
// sequence converts the source type to the type required by
|
|
|
|
// the argument of the constructor.
|
|
|
|
//
|
|
|
|
QualType ThisType = Constructor->getThisType(Context);
|
2009-11-06 08:23:08 +08:00
|
|
|
if (Best->Conversions[0].ConversionKind ==
|
|
|
|
ImplicitConversionSequence::EllipsisConversion)
|
|
|
|
User.EllipsisConversion = true;
|
|
|
|
else {
|
|
|
|
User.Before = Best->Conversions[0].Standard;
|
|
|
|
User.EllipsisConversion = false;
|
|
|
|
}
|
2008-11-01 00:23:19 +08:00
|
|
|
User.ConversionFunction = Constructor;
|
|
|
|
User.After.setAsIdentityConversion();
|
2009-09-09 23:08:12 +08:00
|
|
|
User.After.FromTypePtr
|
2009-07-30 05:53:49 +08:00
|
|
|
= ThisType->getAs<PointerType>()->getPointeeType().getAsOpaquePtr();
|
2008-11-01 00:23:19 +08:00
|
|
|
User.After.ToTypePtr = ToType.getAsOpaquePtr();
|
2009-09-16 03:12:21 +08:00
|
|
|
return OR_Success;
|
2008-11-08 06:36:19 +08:00
|
|
|
} else if (CXXConversionDecl *Conversion
|
|
|
|
= dyn_cast<CXXConversionDecl>(Best->Function)) {
|
|
|
|
// C++ [over.ics.user]p1:
|
|
|
|
//
|
|
|
|
// [...] If the user-defined conversion is specified by a
|
|
|
|
// conversion function (12.3.2), the initial standard
|
|
|
|
// conversion sequence converts the source type to the
|
|
|
|
// implicit object parameter of the conversion function.
|
|
|
|
User.Before = Best->Conversions[0].Standard;
|
|
|
|
User.ConversionFunction = Conversion;
|
2009-11-06 08:23:08 +08:00
|
|
|
User.EllipsisConversion = false;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
// C++ [over.ics.user]p2:
|
2008-11-08 06:36:19 +08:00
|
|
|
// The second standard conversion sequence converts the
|
|
|
|
// result of the user-defined conversion to the target type
|
|
|
|
// for the sequence. Since an implicit conversion sequence
|
|
|
|
// is an initialization, the special rules for
|
|
|
|
// initialization by user-defined conversion apply when
|
|
|
|
// selecting the best user-defined conversion for a
|
|
|
|
// user-defined conversion sequence (see 13.3.3 and
|
|
|
|
// 13.3.3.1).
|
|
|
|
User.After = Best->FinalConversion;
|
2009-09-16 03:12:21 +08:00
|
|
|
return OR_Success;
|
2008-11-01 00:23:19 +08:00
|
|
|
} else {
|
2008-11-08 06:36:19 +08:00
|
|
|
assert(false && "Not a constructor or conversion function?");
|
2009-09-16 03:12:21 +08:00
|
|
|
return OR_No_Viable_Function;
|
2008-11-01 00:23:19 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-11-01 00:23:19 +08:00
|
|
|
case OR_No_Viable_Function:
|
2009-09-16 03:12:21 +08:00
|
|
|
return OR_No_Viable_Function;
|
2009-02-19 05:56:37 +08:00
|
|
|
case OR_Deleted:
|
2008-11-01 00:23:19 +08:00
|
|
|
// No conversion here! We're done.
|
2009-09-16 03:12:21 +08:00
|
|
|
return OR_Deleted;
|
2008-11-01 00:23:19 +08:00
|
|
|
|
|
|
|
case OR_Ambiguous:
|
2009-09-16 03:12:21 +08:00
|
|
|
return OR_Ambiguous;
|
2008-11-01 00:23:19 +08:00
|
|
|
}
|
|
|
|
|
2009-09-16 03:12:21 +08:00
|
|
|
return OR_No_Viable_Function;
|
2008-11-01 00:23:19 +08:00
|
|
|
}
|
2009-09-23 04:24:30 +08:00
|
|
|
|
|
|
|
bool
|
2009-11-19 02:26:29 +08:00
|
|
|
Sema::DiagnoseMultipleUserDefinedConversion(Expr *From, QualType ToType) {
|
2009-09-23 04:24:30 +08:00
|
|
|
ImplicitConversionSequence ICS;
|
|
|
|
OverloadCandidateSet CandidateSet;
|
|
|
|
OverloadingResult OvResult =
|
|
|
|
IsUserDefinedConversion(From, ToType, ICS.UserDefined,
|
|
|
|
CandidateSet, true, false, false);
|
2009-11-19 02:26:29 +08:00
|
|
|
if (OvResult == OR_Ambiguous)
|
|
|
|
Diag(From->getSourceRange().getBegin(),
|
|
|
|
diag::err_typecheck_ambiguous_condition)
|
|
|
|
<< From->getType() << ToType << From->getSourceRange();
|
|
|
|
else if (OvResult == OR_No_Viable_Function && !CandidateSet.empty())
|
|
|
|
Diag(From->getSourceRange().getBegin(),
|
|
|
|
diag::err_typecheck_nonviable_condition)
|
|
|
|
<< From->getType() << ToType << From->getSourceRange();
|
|
|
|
else
|
2009-09-23 04:24:30 +08:00
|
|
|
return false;
|
2010-01-08 12:41:39 +08:00
|
|
|
PrintOverloadCandidates(CandidateSet, OCD_AllCandidates);
|
2009-09-23 04:24:30 +08:00
|
|
|
return true;
|
|
|
|
}
|
2008-11-01 00:23:19 +08:00
|
|
|
|
2008-10-22 00:13:35 +08:00
|
|
|
/// CompareImplicitConversionSequences - Compare two implicit
|
|
|
|
/// conversion sequences to determine whether one is better than the
|
|
|
|
/// other or if they are indistinguishable (C++ 13.3.3.2).
|
2009-09-09 23:08:12 +08:00
|
|
|
ImplicitConversionSequence::CompareKind
|
2008-10-22 00:13:35 +08:00
|
|
|
Sema::CompareImplicitConversionSequences(const ImplicitConversionSequence& ICS1,
|
|
|
|
const ImplicitConversionSequence& ICS2)
|
|
|
|
{
|
|
|
|
// (C++ 13.3.3.2p2): When comparing the basic forms of implicit
|
|
|
|
// conversion sequences (as defined in 13.3.3.1)
|
|
|
|
// -- a standard conversion sequence (13.3.3.1.1) is a better
|
|
|
|
// conversion sequence than a user-defined conversion sequence or
|
|
|
|
// an ellipsis conversion sequence, and
|
|
|
|
// -- a user-defined conversion sequence (13.3.3.1.2) is a better
|
|
|
|
// conversion sequence than an ellipsis conversion sequence
|
|
|
|
// (13.3.3.1.3).
|
2009-09-09 23:08:12 +08:00
|
|
|
//
|
2008-10-22 00:13:35 +08:00
|
|
|
if (ICS1.ConversionKind < ICS2.ConversionKind)
|
|
|
|
return ImplicitConversionSequence::Better;
|
|
|
|
else if (ICS2.ConversionKind < ICS1.ConversionKind)
|
|
|
|
return ImplicitConversionSequence::Worse;
|
|
|
|
|
|
|
|
// Two implicit conversion sequences of the same form are
|
|
|
|
// indistinguishable conversion sequences unless one of the
|
|
|
|
// following rules apply: (C++ 13.3.3.2p3):
|
|
|
|
if (ICS1.ConversionKind == ImplicitConversionSequence::StandardConversion)
|
|
|
|
return CompareStandardConversionSequences(ICS1.Standard, ICS2.Standard);
|
2009-09-09 23:08:12 +08:00
|
|
|
else if (ICS1.ConversionKind ==
|
2008-10-22 00:13:35 +08:00
|
|
|
ImplicitConversionSequence::UserDefinedConversion) {
|
|
|
|
// User-defined conversion sequence U1 is a better conversion
|
|
|
|
// sequence than another user-defined conversion sequence U2 if
|
|
|
|
// they contain the same user-defined conversion function or
|
|
|
|
// constructor and if the second standard conversion sequence of
|
|
|
|
// U1 is better than the second standard conversion sequence of
|
|
|
|
// U2 (C++ 13.3.3.2p3).
|
2009-09-09 23:08:12 +08:00
|
|
|
if (ICS1.UserDefined.ConversionFunction ==
|
2008-10-22 00:13:35 +08:00
|
|
|
ICS2.UserDefined.ConversionFunction)
|
|
|
|
return CompareStandardConversionSequences(ICS1.UserDefined.After,
|
|
|
|
ICS2.UserDefined.After);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ImplicitConversionSequence::Indistinguishable;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// CompareStandardConversionSequences - Compare two standard
|
|
|
|
/// conversion sequences to determine whether one is better than the
|
|
|
|
/// other or if they are indistinguishable (C++ 13.3.3.2p3).
|
2009-09-09 23:08:12 +08:00
|
|
|
ImplicitConversionSequence::CompareKind
|
2008-10-22 00:13:35 +08:00
|
|
|
Sema::CompareStandardConversionSequences(const StandardConversionSequence& SCS1,
|
|
|
|
const StandardConversionSequence& SCS2)
|
|
|
|
{
|
|
|
|
// Standard conversion sequence S1 is a better conversion sequence
|
|
|
|
// than standard conversion sequence S2 if (C++ 13.3.3.2p3):
|
|
|
|
|
|
|
|
// -- S1 is a proper subsequence of S2 (comparing the conversion
|
|
|
|
// sequences in the canonical form defined by 13.3.3.1.1,
|
|
|
|
// excluding any Lvalue Transformation; the identity conversion
|
|
|
|
// sequence is considered to be a subsequence of any
|
|
|
|
// non-identity conversion sequence) or, if not that,
|
|
|
|
if (SCS1.Second == SCS2.Second && SCS1.Third == SCS2.Third)
|
|
|
|
// Neither is a proper subsequence of the other. Do nothing.
|
|
|
|
;
|
|
|
|
else if ((SCS1.Second == ICK_Identity && SCS1.Third == SCS2.Third) ||
|
|
|
|
(SCS1.Third == ICK_Identity && SCS1.Second == SCS2.Second) ||
|
2009-09-09 23:08:12 +08:00
|
|
|
(SCS1.Second == ICK_Identity &&
|
2008-10-22 00:13:35 +08:00
|
|
|
SCS1.Third == ICK_Identity))
|
|
|
|
// SCS1 is a proper subsequence of SCS2.
|
|
|
|
return ImplicitConversionSequence::Better;
|
|
|
|
else if ((SCS2.Second == ICK_Identity && SCS2.Third == SCS1.Third) ||
|
|
|
|
(SCS2.Third == ICK_Identity && SCS2.Second == SCS1.Second) ||
|
2009-09-09 23:08:12 +08:00
|
|
|
(SCS2.Second == ICK_Identity &&
|
2008-10-22 00:13:35 +08:00
|
|
|
SCS2.Third == ICK_Identity))
|
|
|
|
// SCS2 is a proper subsequence of SCS1.
|
|
|
|
return ImplicitConversionSequence::Worse;
|
|
|
|
|
|
|
|
// -- the rank of S1 is better than the rank of S2 (by the rules
|
|
|
|
// defined below), or, if not that,
|
|
|
|
ImplicitConversionRank Rank1 = SCS1.getRank();
|
|
|
|
ImplicitConversionRank Rank2 = SCS2.getRank();
|
|
|
|
if (Rank1 < Rank2)
|
|
|
|
return ImplicitConversionSequence::Better;
|
|
|
|
else if (Rank2 < Rank1)
|
|
|
|
return ImplicitConversionSequence::Worse;
|
|
|
|
|
2008-10-22 22:17:15 +08:00
|
|
|
// (C++ 13.3.3.2p4): Two conversion sequences with the same rank
|
|
|
|
// are indistinguishable unless one of the following rules
|
|
|
|
// applies:
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-10-22 22:17:15 +08:00
|
|
|
// A conversion that is not a conversion of a pointer, or
|
|
|
|
// pointer to member, to bool is better than another conversion
|
|
|
|
// that is such a conversion.
|
|
|
|
if (SCS1.isPointerConversionToBool() != SCS2.isPointerConversionToBool())
|
|
|
|
return SCS2.isPointerConversionToBool()
|
|
|
|
? ImplicitConversionSequence::Better
|
|
|
|
: ImplicitConversionSequence::Worse;
|
|
|
|
|
2008-10-23 08:40:37 +08:00
|
|
|
// C++ [over.ics.rank]p4b2:
|
|
|
|
//
|
|
|
|
// If class B is derived directly or indirectly from class A,
|
2008-10-29 22:50:44 +08:00
|
|
|
// conversion of B* to A* is better than conversion of B* to
|
|
|
|
// void*, and conversion of A* to void* is better than conversion
|
|
|
|
// of B* to void*.
|
2009-09-09 23:08:12 +08:00
|
|
|
bool SCS1ConvertsToVoid
|
2008-10-23 08:40:37 +08:00
|
|
|
= SCS1.isPointerConversionToVoidPointer(Context);
|
2009-09-09 23:08:12 +08:00
|
|
|
bool SCS2ConvertsToVoid
|
2008-10-23 08:40:37 +08:00
|
|
|
= SCS2.isPointerConversionToVoidPointer(Context);
|
2008-10-29 22:50:44 +08:00
|
|
|
if (SCS1ConvertsToVoid != SCS2ConvertsToVoid) {
|
|
|
|
// Exactly one of the conversion sequences is a conversion to
|
|
|
|
// a void pointer; it's the worse conversion.
|
2008-10-23 08:40:37 +08:00
|
|
|
return SCS2ConvertsToVoid ? ImplicitConversionSequence::Better
|
|
|
|
: ImplicitConversionSequence::Worse;
|
2008-10-29 22:50:44 +08:00
|
|
|
} else if (!SCS1ConvertsToVoid && !SCS2ConvertsToVoid) {
|
|
|
|
// Neither conversion sequence converts to a void pointer; compare
|
|
|
|
// their derived-to-base conversions.
|
2008-10-23 08:40:37 +08:00
|
|
|
if (ImplicitConversionSequence::CompareKind DerivedCK
|
|
|
|
= CompareDerivedToBaseConversions(SCS1, SCS2))
|
|
|
|
return DerivedCK;
|
2008-10-29 22:50:44 +08:00
|
|
|
} else if (SCS1ConvertsToVoid && SCS2ConvertsToVoid) {
|
|
|
|
// Both conversion sequences are conversions to void
|
|
|
|
// pointers. Compare the source types to determine if there's an
|
|
|
|
// inheritance relationship in their sources.
|
|
|
|
QualType FromType1 = QualType::getFromOpaquePtr(SCS1.FromTypePtr);
|
|
|
|
QualType FromType2 = QualType::getFromOpaquePtr(SCS2.FromTypePtr);
|
|
|
|
|
|
|
|
// Adjust the types we're converting from via the array-to-pointer
|
|
|
|
// conversion, if we need to.
|
|
|
|
if (SCS1.First == ICK_Array_To_Pointer)
|
|
|
|
FromType1 = Context.getArrayDecayedType(FromType1);
|
|
|
|
if (SCS2.First == ICK_Array_To_Pointer)
|
|
|
|
FromType2 = Context.getArrayDecayedType(FromType2);
|
|
|
|
|
2009-12-14 05:37:05 +08:00
|
|
|
QualType FromPointee1
|
|
|
|
= FromType1->getAs<PointerType>()->getPointeeType().getUnqualifiedType();
|
|
|
|
QualType FromPointee2
|
|
|
|
= FromType2->getAs<PointerType>()->getPointeeType().getUnqualifiedType();
|
|
|
|
|
|
|
|
if (IsDerivedFrom(FromPointee2, FromPointee1))
|
|
|
|
return ImplicitConversionSequence::Better;
|
|
|
|
else if (IsDerivedFrom(FromPointee1, FromPointee2))
|
|
|
|
return ImplicitConversionSequence::Worse;
|
|
|
|
|
|
|
|
// Objective-C++: If one interface is more specific than the
|
|
|
|
// other, it is the better one.
|
|
|
|
const ObjCInterfaceType* FromIface1 = FromPointee1->getAs<ObjCInterfaceType>();
|
|
|
|
const ObjCInterfaceType* FromIface2 = FromPointee2->getAs<ObjCInterfaceType>();
|
|
|
|
if (FromIface1 && FromIface1) {
|
|
|
|
if (Context.canAssignObjCInterfaces(FromIface2, FromIface1))
|
|
|
|
return ImplicitConversionSequence::Better;
|
|
|
|
else if (Context.canAssignObjCInterfaces(FromIface1, FromIface2))
|
|
|
|
return ImplicitConversionSequence::Worse;
|
|
|
|
}
|
2008-10-29 22:50:44 +08:00
|
|
|
}
|
2008-10-22 22:17:15 +08:00
|
|
|
|
|
|
|
// Compare based on qualification conversions (C++ 13.3.3.2p3,
|
|
|
|
// bullet 3).
|
2009-09-09 23:08:12 +08:00
|
|
|
if (ImplicitConversionSequence::CompareKind QualCK
|
2008-10-22 22:17:15 +08:00
|
|
|
= CompareQualificationConversions(SCS1, SCS2))
|
2008-10-23 08:40:37 +08:00
|
|
|
return QualCK;
|
2008-10-22 22:17:15 +08:00
|
|
|
|
2008-10-29 22:50:44 +08:00
|
|
|
if (SCS1.ReferenceBinding && SCS2.ReferenceBinding) {
|
2009-03-23 07:49:27 +08:00
|
|
|
// C++0x [over.ics.rank]p3b4:
|
|
|
|
// -- S1 and S2 are reference bindings (8.5.3) and neither refers to an
|
|
|
|
// implicit object parameter of a non-static member function declared
|
|
|
|
// without a ref-qualifier, and S1 binds an rvalue reference to an
|
|
|
|
// rvalue and S2 binds an lvalue reference.
|
2009-03-29 23:27:50 +08:00
|
|
|
// FIXME: We don't know if we're dealing with the implicit object parameter,
|
|
|
|
// or if the member function in this case has a ref qualifier.
|
|
|
|
// (Of course, we don't have ref qualifiers yet.)
|
|
|
|
if (SCS1.RRefBinding != SCS2.RRefBinding)
|
|
|
|
return SCS1.RRefBinding ? ImplicitConversionSequence::Better
|
|
|
|
: ImplicitConversionSequence::Worse;
|
2009-03-23 07:49:27 +08:00
|
|
|
|
|
|
|
// C++ [over.ics.rank]p3b4:
|
|
|
|
// -- S1 and S2 are reference bindings (8.5.3), and the types to
|
|
|
|
// which the references refer are the same type except for
|
|
|
|
// top-level cv-qualifiers, and the type to which the reference
|
|
|
|
// initialized by S2 refers is more cv-qualified than the type
|
|
|
|
// to which the reference initialized by S1 refers.
|
2009-03-29 23:27:50 +08:00
|
|
|
QualType T1 = QualType::getFromOpaquePtr(SCS1.ToTypePtr);
|
|
|
|
QualType T2 = QualType::getFromOpaquePtr(SCS2.ToTypePtr);
|
2008-10-29 22:50:44 +08:00
|
|
|
T1 = Context.getCanonicalType(T1);
|
|
|
|
T2 = Context.getCanonicalType(T2);
|
2009-12-29 15:16:59 +08:00
|
|
|
Qualifiers T1Quals, T2Quals;
|
|
|
|
QualType UnqualT1 = Context.getUnqualifiedArrayType(T1, T1Quals);
|
|
|
|
QualType UnqualT2 = Context.getUnqualifiedArrayType(T2, T2Quals);
|
|
|
|
if (UnqualT1 == UnqualT2) {
|
|
|
|
// If the type is an array type, promote the element qualifiers to the type
|
|
|
|
// for comparison.
|
|
|
|
if (isa<ArrayType>(T1) && T1Quals)
|
|
|
|
T1 = Context.getQualifiedType(UnqualT1, T1Quals);
|
|
|
|
if (isa<ArrayType>(T2) && T2Quals)
|
|
|
|
T2 = Context.getQualifiedType(UnqualT2, T2Quals);
|
2008-10-29 22:50:44 +08:00
|
|
|
if (T2.isMoreQualifiedThan(T1))
|
|
|
|
return ImplicitConversionSequence::Better;
|
|
|
|
else if (T1.isMoreQualifiedThan(T2))
|
|
|
|
return ImplicitConversionSequence::Worse;
|
|
|
|
}
|
|
|
|
}
|
2008-10-22 22:17:15 +08:00
|
|
|
|
2008-10-22 00:13:35 +08:00
|
|
|
return ImplicitConversionSequence::Indistinguishable;
|
|
|
|
}
|
|
|
|
|
2008-10-22 22:17:15 +08:00
|
|
|
/// CompareQualificationConversions - Compares two standard conversion
|
|
|
|
/// sequences to determine whether they can be ranked based on their
|
2009-09-09 23:08:12 +08:00
|
|
|
/// qualification conversions (C++ 13.3.3.2p3 bullet 3).
|
|
|
|
ImplicitConversionSequence::CompareKind
|
2008-10-22 22:17:15 +08:00
|
|
|
Sema::CompareQualificationConversions(const StandardConversionSequence& SCS1,
|
2009-09-09 23:08:12 +08:00
|
|
|
const StandardConversionSequence& SCS2) {
|
2008-10-22 23:04:37 +08:00
|
|
|
// C++ 13.3.3.2p3:
|
2008-10-22 22:17:15 +08:00
|
|
|
// -- S1 and S2 differ only in their qualification conversion and
|
|
|
|
// yield similar types T1 and T2 (C++ 4.4), respectively, and the
|
|
|
|
// cv-qualification signature of type T1 is a proper subset of
|
|
|
|
// the cv-qualification signature of type T2, and S1 is not the
|
|
|
|
// deprecated string literal array-to-pointer conversion (4.2).
|
|
|
|
if (SCS1.First != SCS2.First || SCS1.Second != SCS2.Second ||
|
|
|
|
SCS1.Third != SCS2.Third || SCS1.Third != ICK_Qualification)
|
|
|
|
return ImplicitConversionSequence::Indistinguishable;
|
|
|
|
|
|
|
|
// FIXME: the example in the standard doesn't use a qualification
|
|
|
|
// conversion (!)
|
|
|
|
QualType T1 = QualType::getFromOpaquePtr(SCS1.ToTypePtr);
|
|
|
|
QualType T2 = QualType::getFromOpaquePtr(SCS2.ToTypePtr);
|
|
|
|
T1 = Context.getCanonicalType(T1);
|
|
|
|
T2 = Context.getCanonicalType(T2);
|
2009-12-29 15:16:59 +08:00
|
|
|
Qualifiers T1Quals, T2Quals;
|
|
|
|
QualType UnqualT1 = Context.getUnqualifiedArrayType(T1, T1Quals);
|
|
|
|
QualType UnqualT2 = Context.getUnqualifiedArrayType(T2, T2Quals);
|
2008-10-22 22:17:15 +08:00
|
|
|
|
|
|
|
// If the types are the same, we won't learn anything by unwrapped
|
|
|
|
// them.
|
2009-12-29 15:16:59 +08:00
|
|
|
if (UnqualT1 == UnqualT2)
|
2008-10-22 22:17:15 +08:00
|
|
|
return ImplicitConversionSequence::Indistinguishable;
|
|
|
|
|
2009-12-29 15:16:59 +08:00
|
|
|
// If the type is an array type, promote the element qualifiers to the type
|
|
|
|
// for comparison.
|
|
|
|
if (isa<ArrayType>(T1) && T1Quals)
|
|
|
|
T1 = Context.getQualifiedType(UnqualT1, T1Quals);
|
|
|
|
if (isa<ArrayType>(T2) && T2Quals)
|
|
|
|
T2 = Context.getQualifiedType(UnqualT2, T2Quals);
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
ImplicitConversionSequence::CompareKind Result
|
2008-10-22 22:17:15 +08:00
|
|
|
= ImplicitConversionSequence::Indistinguishable;
|
|
|
|
while (UnwrapSimilarPointerTypes(T1, T2)) {
|
|
|
|
// Within each iteration of the loop, we check the qualifiers to
|
|
|
|
// determine if this still looks like a qualification
|
|
|
|
// conversion. Then, if all is well, we unwrap one more level of
|
2008-10-23 01:49:05 +08:00
|
|
|
// pointers or pointers-to-members and do it all again
|
2008-10-22 22:17:15 +08:00
|
|
|
// until there are no more pointers or pointers-to-members left
|
|
|
|
// to unwrap. This essentially mimics what
|
|
|
|
// IsQualificationConversion does, but here we're checking for a
|
|
|
|
// strict subset of qualifiers.
|
|
|
|
if (T1.getCVRQualifiers() == T2.getCVRQualifiers())
|
|
|
|
// The qualifiers are the same, so this doesn't tell us anything
|
|
|
|
// about how the sequences rank.
|
|
|
|
;
|
|
|
|
else if (T2.isMoreQualifiedThan(T1)) {
|
|
|
|
// T1 has fewer qualifiers, so it could be the better sequence.
|
|
|
|
if (Result == ImplicitConversionSequence::Worse)
|
|
|
|
// Neither has qualifiers that are a subset of the other's
|
|
|
|
// qualifiers.
|
|
|
|
return ImplicitConversionSequence::Indistinguishable;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-10-22 22:17:15 +08:00
|
|
|
Result = ImplicitConversionSequence::Better;
|
|
|
|
} else if (T1.isMoreQualifiedThan(T2)) {
|
|
|
|
// T2 has fewer qualifiers, so it could be the better sequence.
|
|
|
|
if (Result == ImplicitConversionSequence::Better)
|
|
|
|
// Neither has qualifiers that are a subset of the other's
|
|
|
|
// qualifiers.
|
|
|
|
return ImplicitConversionSequence::Indistinguishable;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-10-22 22:17:15 +08:00
|
|
|
Result = ImplicitConversionSequence::Worse;
|
|
|
|
} else {
|
|
|
|
// Qualifiers are disjoint.
|
|
|
|
return ImplicitConversionSequence::Indistinguishable;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the types after this point are equivalent, we're done.
|
First part of changes to eliminate problems with cv-qualifiers and
sugared types. The basic problem is that our qualifier accessors
(getQualifiers, getCVRQualifiers, isConstQualified, etc.) only look at
the current QualType and not at any qualifiers that come from sugared
types, meaning that we won't see these qualifiers through, e.g.,
typedefs:
typedef const int CInt;
typedef CInt Self;
Self.isConstQualified() currently returns false!
Various bugs (e.g., PR5383) have cropped up all over the front end due
to such problems. I'm addressing this problem by splitting each
qualifier accessor into two versions:
- the "local" version only returns qualifiers on this particular
QualType instance
- the "normal" version that will eventually combine qualifiers from this
QualType instance with the qualifiers on the canonical type to
produce the full set of qualifiers.
This commit adds the local versions and switches a few callers from
the "normal" version (e.g., isConstQualified) over to the "local"
version (e.g., isLocalConstQualified) when that is the right thing to
do, e.g., because we're printing or serializing the qualifiers. Also,
switch a bunch of
Context.getCanonicalType(T1).getUnqualifiedType() == Context.getCanonicalType(T2).getQualifiedType()
expressions over to
Context.hasSameUnqualifiedType(T1, T2)
llvm-svn: 88969
2009-11-17 05:35:15 +08:00
|
|
|
if (Context.hasSameUnqualifiedType(T1, T2))
|
2008-10-22 22:17:15 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that the winning standard conversion sequence isn't using
|
|
|
|
// the deprecated string literal array to pointer conversion.
|
|
|
|
switch (Result) {
|
|
|
|
case ImplicitConversionSequence::Better:
|
|
|
|
if (SCS1.Deprecated)
|
|
|
|
Result = ImplicitConversionSequence::Indistinguishable;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ImplicitConversionSequence::Indistinguishable:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ImplicitConversionSequence::Worse:
|
|
|
|
if (SCS2.Deprecated)
|
|
|
|
Result = ImplicitConversionSequence::Indistinguishable;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
2008-10-23 08:40:37 +08:00
|
|
|
/// CompareDerivedToBaseConversions - Compares two standard conversion
|
|
|
|
/// sequences to determine whether they can be ranked based on their
|
2008-11-27 07:31:11 +08:00
|
|
|
/// various kinds of derived-to-base conversions (C++
|
|
|
|
/// [over.ics.rank]p4b3). As part of these checks, we also look at
|
|
|
|
/// conversions between Objective-C interface types.
|
2008-10-23 08:40:37 +08:00
|
|
|
ImplicitConversionSequence::CompareKind
|
|
|
|
Sema::CompareDerivedToBaseConversions(const StandardConversionSequence& SCS1,
|
|
|
|
const StandardConversionSequence& SCS2) {
|
|
|
|
QualType FromType1 = QualType::getFromOpaquePtr(SCS1.FromTypePtr);
|
|
|
|
QualType ToType1 = QualType::getFromOpaquePtr(SCS1.ToTypePtr);
|
|
|
|
QualType FromType2 = QualType::getFromOpaquePtr(SCS2.FromTypePtr);
|
|
|
|
QualType ToType2 = QualType::getFromOpaquePtr(SCS2.ToTypePtr);
|
|
|
|
|
|
|
|
// Adjust the types we're converting from via the array-to-pointer
|
|
|
|
// conversion, if we need to.
|
|
|
|
if (SCS1.First == ICK_Array_To_Pointer)
|
|
|
|
FromType1 = Context.getArrayDecayedType(FromType1);
|
|
|
|
if (SCS2.First == ICK_Array_To_Pointer)
|
|
|
|
FromType2 = Context.getArrayDecayedType(FromType2);
|
|
|
|
|
|
|
|
// Canonicalize all of the types.
|
|
|
|
FromType1 = Context.getCanonicalType(FromType1);
|
|
|
|
ToType1 = Context.getCanonicalType(ToType1);
|
|
|
|
FromType2 = Context.getCanonicalType(FromType2);
|
|
|
|
ToType2 = Context.getCanonicalType(ToType2);
|
|
|
|
|
2008-10-29 22:50:44 +08:00
|
|
|
// C++ [over.ics.rank]p4b3:
|
2008-10-23 08:40:37 +08:00
|
|
|
//
|
|
|
|
// If class B is derived directly or indirectly from class A and
|
|
|
|
// class C is derived directly or indirectly from B,
|
2008-11-27 07:31:11 +08:00
|
|
|
//
|
|
|
|
// For Objective-C, we let A, B, and C also be Objective-C
|
|
|
|
// interfaces.
|
2008-10-29 22:50:44 +08:00
|
|
|
|
|
|
|
// Compare based on pointer conversions.
|
2009-09-09 23:08:12 +08:00
|
|
|
if (SCS1.Second == ICK_Pointer_Conversion &&
|
2008-11-27 09:19:21 +08:00
|
|
|
SCS2.Second == ICK_Pointer_Conversion &&
|
|
|
|
/*FIXME: Remove if Objective-C id conversions get their own rank*/
|
|
|
|
FromType1->isPointerType() && FromType2->isPointerType() &&
|
|
|
|
ToType1->isPointerType() && ToType2->isPointerType()) {
|
2009-09-09 23:08:12 +08:00
|
|
|
QualType FromPointee1
|
2009-07-30 05:53:49 +08:00
|
|
|
= FromType1->getAs<PointerType>()->getPointeeType().getUnqualifiedType();
|
2009-09-09 23:08:12 +08:00
|
|
|
QualType ToPointee1
|
2009-07-30 05:53:49 +08:00
|
|
|
= ToType1->getAs<PointerType>()->getPointeeType().getUnqualifiedType();
|
2008-10-23 08:40:37 +08:00
|
|
|
QualType FromPointee2
|
2009-07-30 05:53:49 +08:00
|
|
|
= FromType2->getAs<PointerType>()->getPointeeType().getUnqualifiedType();
|
2008-10-23 08:40:37 +08:00
|
|
|
QualType ToPointee2
|
2009-07-30 05:53:49 +08:00
|
|
|
= ToType2->getAs<PointerType>()->getPointeeType().getUnqualifiedType();
|
2008-11-27 07:31:11 +08:00
|
|
|
|
2009-09-22 07:43:11 +08:00
|
|
|
const ObjCInterfaceType* FromIface1 = FromPointee1->getAs<ObjCInterfaceType>();
|
|
|
|
const ObjCInterfaceType* FromIface2 = FromPointee2->getAs<ObjCInterfaceType>();
|
|
|
|
const ObjCInterfaceType* ToIface1 = ToPointee1->getAs<ObjCInterfaceType>();
|
|
|
|
const ObjCInterfaceType* ToIface2 = ToPointee2->getAs<ObjCInterfaceType>();
|
2008-11-27 07:31:11 +08:00
|
|
|
|
2008-10-29 22:50:44 +08:00
|
|
|
// -- conversion of C* to B* is better than conversion of C* to A*,
|
2008-10-23 08:40:37 +08:00
|
|
|
if (FromPointee1 == FromPointee2 && ToPointee1 != ToPointee2) {
|
|
|
|
if (IsDerivedFrom(ToPointee1, ToPointee2))
|
|
|
|
return ImplicitConversionSequence::Better;
|
|
|
|
else if (IsDerivedFrom(ToPointee2, ToPointee1))
|
|
|
|
return ImplicitConversionSequence::Worse;
|
2008-11-27 07:31:11 +08:00
|
|
|
|
|
|
|
if (ToIface1 && ToIface2) {
|
|
|
|
if (Context.canAssignObjCInterfaces(ToIface2, ToIface1))
|
|
|
|
return ImplicitConversionSequence::Better;
|
|
|
|
else if (Context.canAssignObjCInterfaces(ToIface1, ToIface2))
|
|
|
|
return ImplicitConversionSequence::Worse;
|
|
|
|
}
|
2008-10-23 08:40:37 +08:00
|
|
|
}
|
2008-10-29 22:50:44 +08:00
|
|
|
|
|
|
|
// -- conversion of B* to A* is better than conversion of C* to A*,
|
|
|
|
if (FromPointee1 != FromPointee2 && ToPointee1 == ToPointee2) {
|
|
|
|
if (IsDerivedFrom(FromPointee2, FromPointee1))
|
|
|
|
return ImplicitConversionSequence::Better;
|
|
|
|
else if (IsDerivedFrom(FromPointee1, FromPointee2))
|
|
|
|
return ImplicitConversionSequence::Worse;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-11-27 07:31:11 +08:00
|
|
|
if (FromIface1 && FromIface2) {
|
|
|
|
if (Context.canAssignObjCInterfaces(FromIface1, FromIface2))
|
|
|
|
return ImplicitConversionSequence::Better;
|
|
|
|
else if (Context.canAssignObjCInterfaces(FromIface2, FromIface1))
|
|
|
|
return ImplicitConversionSequence::Worse;
|
|
|
|
}
|
2008-10-29 22:50:44 +08:00
|
|
|
}
|
2008-10-23 08:40:37 +08:00
|
|
|
}
|
|
|
|
|
2008-10-29 22:50:44 +08:00
|
|
|
// Compare based on reference bindings.
|
|
|
|
if (SCS1.ReferenceBinding && SCS2.ReferenceBinding &&
|
|
|
|
SCS1.Second == ICK_Derived_To_Base) {
|
|
|
|
// -- binding of an expression of type C to a reference of type
|
|
|
|
// B& is better than binding an expression of type C to a
|
|
|
|
// reference of type A&,
|
First part of changes to eliminate problems with cv-qualifiers and
sugared types. The basic problem is that our qualifier accessors
(getQualifiers, getCVRQualifiers, isConstQualified, etc.) only look at
the current QualType and not at any qualifiers that come from sugared
types, meaning that we won't see these qualifiers through, e.g.,
typedefs:
typedef const int CInt;
typedef CInt Self;
Self.isConstQualified() currently returns false!
Various bugs (e.g., PR5383) have cropped up all over the front end due
to such problems. I'm addressing this problem by splitting each
qualifier accessor into two versions:
- the "local" version only returns qualifiers on this particular
QualType instance
- the "normal" version that will eventually combine qualifiers from this
QualType instance with the qualifiers on the canonical type to
produce the full set of qualifiers.
This commit adds the local versions and switches a few callers from
the "normal" version (e.g., isConstQualified) over to the "local"
version (e.g., isLocalConstQualified) when that is the right thing to
do, e.g., because we're printing or serializing the qualifiers. Also,
switch a bunch of
Context.getCanonicalType(T1).getUnqualifiedType() == Context.getCanonicalType(T2).getQualifiedType()
expressions over to
Context.hasSameUnqualifiedType(T1, T2)
llvm-svn: 88969
2009-11-17 05:35:15 +08:00
|
|
|
if (Context.hasSameUnqualifiedType(FromType1, FromType2) &&
|
|
|
|
!Context.hasSameUnqualifiedType(ToType1, ToType2)) {
|
2008-10-29 22:50:44 +08:00
|
|
|
if (IsDerivedFrom(ToType1, ToType2))
|
|
|
|
return ImplicitConversionSequence::Better;
|
|
|
|
else if (IsDerivedFrom(ToType2, ToType1))
|
|
|
|
return ImplicitConversionSequence::Worse;
|
|
|
|
}
|
|
|
|
|
2008-11-04 03:09:14 +08:00
|
|
|
// -- binding of an expression of type B to a reference of type
|
|
|
|
// A& is better than binding an expression of type C to a
|
|
|
|
// reference of type A&,
|
First part of changes to eliminate problems with cv-qualifiers and
sugared types. The basic problem is that our qualifier accessors
(getQualifiers, getCVRQualifiers, isConstQualified, etc.) only look at
the current QualType and not at any qualifiers that come from sugared
types, meaning that we won't see these qualifiers through, e.g.,
typedefs:
typedef const int CInt;
typedef CInt Self;
Self.isConstQualified() currently returns false!
Various bugs (e.g., PR5383) have cropped up all over the front end due
to such problems. I'm addressing this problem by splitting each
qualifier accessor into two versions:
- the "local" version only returns qualifiers on this particular
QualType instance
- the "normal" version that will eventually combine qualifiers from this
QualType instance with the qualifiers on the canonical type to
produce the full set of qualifiers.
This commit adds the local versions and switches a few callers from
the "normal" version (e.g., isConstQualified) over to the "local"
version (e.g., isLocalConstQualified) when that is the right thing to
do, e.g., because we're printing or serializing the qualifiers. Also,
switch a bunch of
Context.getCanonicalType(T1).getUnqualifiedType() == Context.getCanonicalType(T2).getQualifiedType()
expressions over to
Context.hasSameUnqualifiedType(T1, T2)
llvm-svn: 88969
2009-11-17 05:35:15 +08:00
|
|
|
if (!Context.hasSameUnqualifiedType(FromType1, FromType2) &&
|
|
|
|
Context.hasSameUnqualifiedType(ToType1, ToType2)) {
|
2008-10-29 22:50:44 +08:00
|
|
|
if (IsDerivedFrom(FromType2, FromType1))
|
|
|
|
return ImplicitConversionSequence::Better;
|
|
|
|
else if (IsDerivedFrom(FromType1, FromType2))
|
|
|
|
return ImplicitConversionSequence::Worse;
|
|
|
|
}
|
|
|
|
}
|
2009-10-21 04:07:35 +08:00
|
|
|
|
|
|
|
// Ranking of member-pointer types.
|
2009-10-21 04:04:46 +08:00
|
|
|
if (SCS1.Second == ICK_Pointer_Member && SCS2.Second == ICK_Pointer_Member &&
|
|
|
|
FromType1->isMemberPointerType() && FromType2->isMemberPointerType() &&
|
|
|
|
ToType1->isMemberPointerType() && ToType2->isMemberPointerType()) {
|
|
|
|
const MemberPointerType * FromMemPointer1 =
|
|
|
|
FromType1->getAs<MemberPointerType>();
|
|
|
|
const MemberPointerType * ToMemPointer1 =
|
|
|
|
ToType1->getAs<MemberPointerType>();
|
|
|
|
const MemberPointerType * FromMemPointer2 =
|
|
|
|
FromType2->getAs<MemberPointerType>();
|
|
|
|
const MemberPointerType * ToMemPointer2 =
|
|
|
|
ToType2->getAs<MemberPointerType>();
|
|
|
|
const Type *FromPointeeType1 = FromMemPointer1->getClass();
|
|
|
|
const Type *ToPointeeType1 = ToMemPointer1->getClass();
|
|
|
|
const Type *FromPointeeType2 = FromMemPointer2->getClass();
|
|
|
|
const Type *ToPointeeType2 = ToMemPointer2->getClass();
|
|
|
|
QualType FromPointee1 = QualType(FromPointeeType1, 0).getUnqualifiedType();
|
|
|
|
QualType ToPointee1 = QualType(ToPointeeType1, 0).getUnqualifiedType();
|
|
|
|
QualType FromPointee2 = QualType(FromPointeeType2, 0).getUnqualifiedType();
|
|
|
|
QualType ToPointee2 = QualType(ToPointeeType2, 0).getUnqualifiedType();
|
2009-10-21 04:07:35 +08:00
|
|
|
// conversion of A::* to B::* is better than conversion of A::* to C::*,
|
2009-10-21 04:04:46 +08:00
|
|
|
if (FromPointee1 == FromPointee2 && ToPointee1 != ToPointee2) {
|
|
|
|
if (IsDerivedFrom(ToPointee1, ToPointee2))
|
|
|
|
return ImplicitConversionSequence::Worse;
|
|
|
|
else if (IsDerivedFrom(ToPointee2, ToPointee1))
|
|
|
|
return ImplicitConversionSequence::Better;
|
|
|
|
}
|
|
|
|
// conversion of B::* to C::* is better than conversion of A::* to C::*
|
|
|
|
if (ToPointee1 == ToPointee2 && FromPointee1 != FromPointee2) {
|
|
|
|
if (IsDerivedFrom(FromPointee1, FromPointee2))
|
|
|
|
return ImplicitConversionSequence::Better;
|
|
|
|
else if (IsDerivedFrom(FromPointee2, FromPointee1))
|
|
|
|
return ImplicitConversionSequence::Worse;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-04 03:09:14 +08:00
|
|
|
if (SCS1.CopyConstructor && SCS2.CopyConstructor &&
|
|
|
|
SCS1.Second == ICK_Derived_To_Base) {
|
|
|
|
// -- conversion of C to B is better than conversion of C to A,
|
First part of changes to eliminate problems with cv-qualifiers and
sugared types. The basic problem is that our qualifier accessors
(getQualifiers, getCVRQualifiers, isConstQualified, etc.) only look at
the current QualType and not at any qualifiers that come from sugared
types, meaning that we won't see these qualifiers through, e.g.,
typedefs:
typedef const int CInt;
typedef CInt Self;
Self.isConstQualified() currently returns false!
Various bugs (e.g., PR5383) have cropped up all over the front end due
to such problems. I'm addressing this problem by splitting each
qualifier accessor into two versions:
- the "local" version only returns qualifiers on this particular
QualType instance
- the "normal" version that will eventually combine qualifiers from this
QualType instance with the qualifiers on the canonical type to
produce the full set of qualifiers.
This commit adds the local versions and switches a few callers from
the "normal" version (e.g., isConstQualified) over to the "local"
version (e.g., isLocalConstQualified) when that is the right thing to
do, e.g., because we're printing or serializing the qualifiers. Also,
switch a bunch of
Context.getCanonicalType(T1).getUnqualifiedType() == Context.getCanonicalType(T2).getQualifiedType()
expressions over to
Context.hasSameUnqualifiedType(T1, T2)
llvm-svn: 88969
2009-11-17 05:35:15 +08:00
|
|
|
if (Context.hasSameUnqualifiedType(FromType1, FromType2) &&
|
|
|
|
!Context.hasSameUnqualifiedType(ToType1, ToType2)) {
|
2008-11-04 03:09:14 +08:00
|
|
|
if (IsDerivedFrom(ToType1, ToType2))
|
|
|
|
return ImplicitConversionSequence::Better;
|
|
|
|
else if (IsDerivedFrom(ToType2, ToType1))
|
|
|
|
return ImplicitConversionSequence::Worse;
|
|
|
|
}
|
2008-10-29 22:50:44 +08:00
|
|
|
|
2008-11-04 03:09:14 +08:00
|
|
|
// -- conversion of B to A is better than conversion of C to A.
|
First part of changes to eliminate problems with cv-qualifiers and
sugared types. The basic problem is that our qualifier accessors
(getQualifiers, getCVRQualifiers, isConstQualified, etc.) only look at
the current QualType and not at any qualifiers that come from sugared
types, meaning that we won't see these qualifiers through, e.g.,
typedefs:
typedef const int CInt;
typedef CInt Self;
Self.isConstQualified() currently returns false!
Various bugs (e.g., PR5383) have cropped up all over the front end due
to such problems. I'm addressing this problem by splitting each
qualifier accessor into two versions:
- the "local" version only returns qualifiers on this particular
QualType instance
- the "normal" version that will eventually combine qualifiers from this
QualType instance with the qualifiers on the canonical type to
produce the full set of qualifiers.
This commit adds the local versions and switches a few callers from
the "normal" version (e.g., isConstQualified) over to the "local"
version (e.g., isLocalConstQualified) when that is the right thing to
do, e.g., because we're printing or serializing the qualifiers. Also,
switch a bunch of
Context.getCanonicalType(T1).getUnqualifiedType() == Context.getCanonicalType(T2).getQualifiedType()
expressions over to
Context.hasSameUnqualifiedType(T1, T2)
llvm-svn: 88969
2009-11-17 05:35:15 +08:00
|
|
|
if (!Context.hasSameUnqualifiedType(FromType1, FromType2) &&
|
|
|
|
Context.hasSameUnqualifiedType(ToType1, ToType2)) {
|
2008-11-04 03:09:14 +08:00
|
|
|
if (IsDerivedFrom(FromType2, FromType1))
|
|
|
|
return ImplicitConversionSequence::Better;
|
|
|
|
else if (IsDerivedFrom(FromType1, FromType2))
|
|
|
|
return ImplicitConversionSequence::Worse;
|
|
|
|
}
|
|
|
|
}
|
2008-10-29 22:50:44 +08:00
|
|
|
|
2008-10-23 08:40:37 +08:00
|
|
|
return ImplicitConversionSequence::Indistinguishable;
|
|
|
|
}
|
|
|
|
|
2008-10-29 08:13:59 +08:00
|
|
|
/// TryCopyInitialization - Try to copy-initialize a value of type
|
|
|
|
/// ToType from the expression From. Return the implicit conversion
|
|
|
|
/// sequence required to pass this argument, which may be a bad
|
|
|
|
/// conversion sequence (meaning that the argument cannot be passed to
|
2008-11-04 03:09:14 +08:00
|
|
|
/// a parameter of this type). If @p SuppressUserConversions, then we
|
2009-04-13 01:16:29 +08:00
|
|
|
/// do not permit any user-defined conversion sequences. If @p ForceRValue,
|
|
|
|
/// then we treat @p From as an rvalue, even if it is an lvalue.
|
2009-09-09 23:08:12 +08:00
|
|
|
ImplicitConversionSequence
|
|
|
|
Sema::TryCopyInitialization(Expr *From, QualType ToType,
|
2009-08-28 01:37:39 +08:00
|
|
|
bool SuppressUserConversions, bool ForceRValue,
|
|
|
|
bool InOverloadResolution) {
|
Initial implementation of function overloading in C.
This commit adds a new attribute, "overloadable", that enables C++
function overloading in C. The attribute can only be added to function
declarations, e.g.,
int *f(int) __attribute__((overloadable));
If the "overloadable" attribute exists on a function with a given
name, *all* functions with that name (and in that scope) must have the
"overloadable" attribute. Sets of overloaded functions with the
"overloadable" attribute then follow the normal C++ rules for
overloaded functions, e.g., overloads must have different
parameter-type-lists from each other.
When calling an overloaded function in C, we follow the same
overloading rules as C++, with three extensions to the set of standard
conversions:
- A value of a given struct or union type T can be converted to the
type T. This is just the identity conversion. (In C++, this would
go through a copy constructor).
- A value of pointer type T* can be converted to a value of type U*
if T and U are compatible types. This conversion has Conversion
rank (it's considered a pointer conversion in C).
- A value of type T can be converted to a value of type U if T and U
are compatible (and are not both pointer types). This conversion
has Conversion rank (it's considered to be a new kind of
conversion unique to C, a "compatible" conversion).
Known defects (and, therefore, next steps):
1) The standard-conversion handling does not understand conversions
involving _Complex or vector extensions, so it is likely to get
these wrong. We need to add these conversions.
2) All overloadable functions with the same name will have the same
linkage name, which means we'll get a collision in the linker (if
not sooner). We'll need to mangle the names of these functions.
llvm-svn: 64336
2009-02-12 07:02:49 +08:00
|
|
|
if (ToType->isReferenceType()) {
|
2008-10-29 08:13:59 +08:00
|
|
|
ImplicitConversionSequence ICS;
|
2009-09-09 23:08:12 +08:00
|
|
|
CheckReferenceInit(From, ToType,
|
2009-09-24 07:04:10 +08:00
|
|
|
/*FIXME:*/From->getLocStart(),
|
2009-08-28 01:30:43 +08:00
|
|
|
SuppressUserConversions,
|
|
|
|
/*AllowExplicit=*/false,
|
|
|
|
ForceRValue,
|
|
|
|
&ICS);
|
2008-10-29 08:13:59 +08:00
|
|
|
return ICS;
|
|
|
|
} else {
|
2009-09-09 23:08:12 +08:00
|
|
|
return TryImplicitConversion(From, ToType,
|
2009-08-28 01:24:15 +08:00
|
|
|
SuppressUserConversions,
|
|
|
|
/*AllowExplicit=*/false,
|
2009-08-28 23:33:32 +08:00
|
|
|
ForceRValue,
|
|
|
|
InOverloadResolution);
|
2008-10-29 08:13:59 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-13 01:16:29 +08:00
|
|
|
/// PerformCopyInitialization - Copy-initialize an object of type @p ToType with
|
|
|
|
/// the expression @p From. Returns true (and emits a diagnostic) if there was
|
|
|
|
/// an error, returns false if the initialization succeeded. Elidable should
|
|
|
|
/// be true when the copy may be elided (C++ 12.8p15). Overload resolution works
|
|
|
|
/// differently in C++0x for this case.
|
2009-09-09 23:08:12 +08:00
|
|
|
bool Sema::PerformCopyInitialization(Expr *&From, QualType ToType,
|
2009-12-16 11:45:30 +08:00
|
|
|
AssignmentAction Action, bool Elidable) {
|
2008-10-29 08:13:59 +08:00
|
|
|
if (!getLangOptions().CPlusPlus) {
|
|
|
|
// In C, argument passing is the same as performing an assignment.
|
|
|
|
QualType FromType = From->getType();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-10-29 08:13:59 +08:00
|
|
|
AssignConvertType ConvTy =
|
|
|
|
CheckSingleAssignmentConstraints(ToType, From);
|
2009-04-30 06:16:16 +08:00
|
|
|
if (ConvTy != Compatible &&
|
|
|
|
CheckTransparentUnionArgumentConstraints(ToType, From) == Compatible)
|
|
|
|
ConvTy = Compatible;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-10-29 08:13:59 +08:00
|
|
|
return DiagnoseAssignmentResult(ConvTy, From->getLocStart(), ToType,
|
2009-12-16 11:45:30 +08:00
|
|
|
FromType, From, Action);
|
2008-10-29 08:13:59 +08:00
|
|
|
}
|
2009-04-13 01:16:29 +08:00
|
|
|
|
2008-11-24 13:29:24 +08:00
|
|
|
if (ToType->isReferenceType())
|
2009-08-28 01:30:43 +08:00
|
|
|
return CheckReferenceInit(From, ToType,
|
2009-09-24 07:04:10 +08:00
|
|
|
/*FIXME:*/From->getLocStart(),
|
2009-08-28 01:30:43 +08:00
|
|
|
/*SuppressUserConversions=*/false,
|
|
|
|
/*AllowExplicit=*/false,
|
|
|
|
/*ForceRValue=*/false);
|
2008-11-24 13:29:24 +08:00
|
|
|
|
2009-12-16 11:45:30 +08:00
|
|
|
if (!PerformImplicitConversion(From, ToType, Action,
|
2009-04-13 01:16:29 +08:00
|
|
|
/*AllowExplicit=*/false, Elidable))
|
2008-11-24 13:29:24 +08:00
|
|
|
return false;
|
2009-11-19 02:26:29 +08:00
|
|
|
if (!DiagnoseMultipleUserDefinedConversion(From, ToType))
|
2009-09-23 03:53:15 +08:00
|
|
|
return Diag(From->getSourceRange().getBegin(),
|
|
|
|
diag::err_typecheck_convert_incompatible)
|
2009-12-16 11:45:30 +08:00
|
|
|
<< ToType << From->getType() << Action << From->getSourceRange();
|
2009-09-23 03:53:15 +08:00
|
|
|
return true;
|
2008-10-29 08:13:59 +08:00
|
|
|
}
|
|
|
|
|
2008-11-19 07:14:02 +08:00
|
|
|
/// TryObjectArgumentInitialization - Try to initialize the object
|
|
|
|
/// parameter of the given member function (@c Method) from the
|
|
|
|
/// expression @p From.
|
|
|
|
ImplicitConversionSequence
|
2009-12-03 12:06:58 +08:00
|
|
|
Sema::TryObjectArgumentInitialization(QualType FromType,
|
|
|
|
CXXMethodDecl *Method,
|
|
|
|
CXXRecordDecl *ActingContext) {
|
|
|
|
QualType ClassType = Context.getTypeDeclType(ActingContext);
|
2009-11-19 04:55:52 +08:00
|
|
|
// [class.dtor]p2: A destructor can be invoked for a const, volatile or
|
|
|
|
// const volatile object.
|
|
|
|
unsigned Quals = isa<CXXDestructorDecl>(Method) ?
|
|
|
|
Qualifiers::Const | Qualifiers::Volatile : Method->getTypeQualifiers();
|
|
|
|
QualType ImplicitParamType = Context.getCVRQualifiedType(ClassType, Quals);
|
2008-11-19 07:14:02 +08:00
|
|
|
|
|
|
|
// Set up the conversion sequence as a "bad" conversion, to allow us
|
|
|
|
// to exit early.
|
|
|
|
ImplicitConversionSequence ICS;
|
|
|
|
ICS.Standard.setAsIdentityConversion();
|
|
|
|
ICS.ConversionKind = ImplicitConversionSequence::BadConversion;
|
|
|
|
|
|
|
|
// We need to have an object of class type.
|
2009-07-30 05:53:49 +08:00
|
|
|
if (const PointerType *PT = FromType->getAs<PointerType>())
|
2009-05-02 02:34:30 +08:00
|
|
|
FromType = PT->getPointeeType();
|
|
|
|
|
|
|
|
assert(FromType->isRecordType());
|
2008-11-19 07:14:02 +08:00
|
|
|
|
2009-11-19 04:55:52 +08:00
|
|
|
// The implicit object parameter is has the type "reference to cv X",
|
2008-11-19 07:14:02 +08:00
|
|
|
// where X is the class of which the function is a member
|
|
|
|
// (C++ [over.match.funcs]p4). However, when finding an implicit
|
|
|
|
// conversion sequence for the argument, we are not allowed to
|
2009-09-09 23:08:12 +08:00
|
|
|
// create temporaries or perform user-defined conversions
|
2008-11-19 07:14:02 +08:00
|
|
|
// (C++ [over.match.funcs]p5). We perform a simplified version of
|
|
|
|
// reference binding here, that allows class rvalues to bind to
|
|
|
|
// non-constant references.
|
|
|
|
|
|
|
|
// First check the qualifiers. We don't care about lvalue-vs-rvalue
|
|
|
|
// with the implicit object parameter (C++ [over.match.funcs]p5).
|
|
|
|
QualType FromTypeCanon = Context.getCanonicalType(FromType);
|
First part of changes to eliminate problems with cv-qualifiers and
sugared types. The basic problem is that our qualifier accessors
(getQualifiers, getCVRQualifiers, isConstQualified, etc.) only look at
the current QualType and not at any qualifiers that come from sugared
types, meaning that we won't see these qualifiers through, e.g.,
typedefs:
typedef const int CInt;
typedef CInt Self;
Self.isConstQualified() currently returns false!
Various bugs (e.g., PR5383) have cropped up all over the front end due
to such problems. I'm addressing this problem by splitting each
qualifier accessor into two versions:
- the "local" version only returns qualifiers on this particular
QualType instance
- the "normal" version that will eventually combine qualifiers from this
QualType instance with the qualifiers on the canonical type to
produce the full set of qualifiers.
This commit adds the local versions and switches a few callers from
the "normal" version (e.g., isConstQualified) over to the "local"
version (e.g., isLocalConstQualified) when that is the right thing to
do, e.g., because we're printing or serializing the qualifiers. Also,
switch a bunch of
Context.getCanonicalType(T1).getUnqualifiedType() == Context.getCanonicalType(T2).getQualifiedType()
expressions over to
Context.hasSameUnqualifiedType(T1, T2)
llvm-svn: 88969
2009-11-17 05:35:15 +08:00
|
|
|
if (ImplicitParamType.getCVRQualifiers()
|
|
|
|
!= FromTypeCanon.getLocalCVRQualifiers() &&
|
2009-11-05 08:07:36 +08:00
|
|
|
!ImplicitParamType.isAtLeastAsQualifiedAs(FromTypeCanon))
|
2008-11-19 07:14:02 +08:00
|
|
|
return ICS;
|
|
|
|
|
|
|
|
// Check that we have either the same type or a derived type. It
|
|
|
|
// affects the conversion rank.
|
|
|
|
QualType ClassTypeCanon = Context.getCanonicalType(ClassType);
|
First part of changes to eliminate problems with cv-qualifiers and
sugared types. The basic problem is that our qualifier accessors
(getQualifiers, getCVRQualifiers, isConstQualified, etc.) only look at
the current QualType and not at any qualifiers that come from sugared
types, meaning that we won't see these qualifiers through, e.g.,
typedefs:
typedef const int CInt;
typedef CInt Self;
Self.isConstQualified() currently returns false!
Various bugs (e.g., PR5383) have cropped up all over the front end due
to such problems. I'm addressing this problem by splitting each
qualifier accessor into two versions:
- the "local" version only returns qualifiers on this particular
QualType instance
- the "normal" version that will eventually combine qualifiers from this
QualType instance with the qualifiers on the canonical type to
produce the full set of qualifiers.
This commit adds the local versions and switches a few callers from
the "normal" version (e.g., isConstQualified) over to the "local"
version (e.g., isLocalConstQualified) when that is the right thing to
do, e.g., because we're printing or serializing the qualifiers. Also,
switch a bunch of
Context.getCanonicalType(T1).getUnqualifiedType() == Context.getCanonicalType(T2).getQualifiedType()
expressions over to
Context.hasSameUnqualifiedType(T1, T2)
llvm-svn: 88969
2009-11-17 05:35:15 +08:00
|
|
|
if (ClassTypeCanon == FromTypeCanon.getLocalUnqualifiedType())
|
2008-11-19 07:14:02 +08:00
|
|
|
ICS.Standard.Second = ICK_Identity;
|
|
|
|
else if (IsDerivedFrom(FromType, ClassType))
|
|
|
|
ICS.Standard.Second = ICK_Derived_To_Base;
|
|
|
|
else
|
|
|
|
return ICS;
|
|
|
|
|
|
|
|
// Success. Mark this as a reference binding.
|
|
|
|
ICS.ConversionKind = ImplicitConversionSequence::StandardConversion;
|
|
|
|
ICS.Standard.FromTypePtr = FromType.getAsOpaquePtr();
|
|
|
|
ICS.Standard.ToTypePtr = ImplicitParamType.getAsOpaquePtr();
|
|
|
|
ICS.Standard.ReferenceBinding = true;
|
|
|
|
ICS.Standard.DirectBinding = true;
|
2009-03-30 06:46:24 +08:00
|
|
|
ICS.Standard.RRefBinding = false;
|
2008-11-19 07:14:02 +08:00
|
|
|
return ICS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// PerformObjectArgumentInitialization - Perform initialization of
|
|
|
|
/// the implicit object parameter for the given Method with the given
|
|
|
|
/// expression.
|
|
|
|
bool
|
|
|
|
Sema::PerformObjectArgumentInitialization(Expr *&From, CXXMethodDecl *Method) {
|
2009-05-02 02:34:30 +08:00
|
|
|
QualType FromRecordType, DestType;
|
2009-09-09 23:08:12 +08:00
|
|
|
QualType ImplicitParamRecordType =
|
2009-07-30 05:53:49 +08:00
|
|
|
Method->getThisType(Context)->getAs<PointerType>()->getPointeeType();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-30 05:53:49 +08:00
|
|
|
if (const PointerType *PT = From->getType()->getAs<PointerType>()) {
|
2009-05-02 02:34:30 +08:00
|
|
|
FromRecordType = PT->getPointeeType();
|
|
|
|
DestType = Method->getThisType(Context);
|
|
|
|
} else {
|
|
|
|
FromRecordType = From->getType();
|
|
|
|
DestType = ImplicitParamRecordType;
|
|
|
|
}
|
|
|
|
|
2009-12-03 12:06:58 +08:00
|
|
|
// Note that we always use the true parent context when performing
|
|
|
|
// the actual argument initialization.
|
2009-09-09 23:08:12 +08:00
|
|
|
ImplicitConversionSequence ICS
|
2009-12-03 12:06:58 +08:00
|
|
|
= TryObjectArgumentInitialization(From->getType(), Method,
|
|
|
|
Method->getParent());
|
2008-11-19 07:14:02 +08:00
|
|
|
if (ICS.ConversionKind == ImplicitConversionSequence::BadConversion)
|
|
|
|
return Diag(From->getSourceRange().getBegin(),
|
2008-11-19 13:08:23 +08:00
|
|
|
diag::err_implicit_object_parameter_init)
|
2009-05-02 02:34:30 +08:00
|
|
|
<< ImplicitParamRecordType << FromRecordType << From->getSourceRange();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-11-19 07:14:02 +08:00
|
|
|
if (ICS.Standard.Second == ICK_Derived_To_Base &&
|
2009-05-02 02:34:30 +08:00
|
|
|
CheckDerivedToBaseConversion(FromRecordType,
|
|
|
|
ImplicitParamRecordType,
|
2008-11-19 07:14:02 +08:00
|
|
|
From->getSourceRange().getBegin(),
|
|
|
|
From->getSourceRange()))
|
|
|
|
return true;
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
ImpCastExprToType(From, DestType, CastExpr::CK_DerivedToBase,
|
2009-08-08 02:45:49 +08:00
|
|
|
/*isLvalue=*/true);
|
2008-11-19 07:14:02 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-01-14 23:45:31 +08:00
|
|
|
/// TryContextuallyConvertToBool - Attempt to contextually convert the
|
|
|
|
/// expression From to bool (C++0x [conv]p3).
|
|
|
|
ImplicitConversionSequence Sema::TryContextuallyConvertToBool(Expr *From) {
|
2009-09-09 23:08:12 +08:00
|
|
|
return TryImplicitConversion(From, Context.BoolTy,
|
2009-08-28 01:24:15 +08:00
|
|
|
// FIXME: Are these flags correct?
|
|
|
|
/*SuppressUserConversions=*/false,
|
2009-09-09 23:08:12 +08:00
|
|
|
/*AllowExplicit=*/true,
|
2009-08-28 23:33:32 +08:00
|
|
|
/*ForceRValue=*/false,
|
|
|
|
/*InOverloadResolution=*/false);
|
2009-01-14 23:45:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// PerformContextuallyConvertToBool - Perform a contextual conversion
|
|
|
|
/// of the expression From to bool (C++0x [conv]p3).
|
|
|
|
bool Sema::PerformContextuallyConvertToBool(Expr *&From) {
|
|
|
|
ImplicitConversionSequence ICS = TryContextuallyConvertToBool(From);
|
2009-12-16 11:45:30 +08:00
|
|
|
if (!PerformImplicitConversion(From, Context.BoolTy, ICS, AA_Converting))
|
2009-01-14 23:45:31 +08:00
|
|
|
return false;
|
2009-09-23 04:24:30 +08:00
|
|
|
|
2009-11-19 02:26:29 +08:00
|
|
|
if (!DiagnoseMultipleUserDefinedConversion(From, Context.BoolTy))
|
2009-09-23 04:24:30 +08:00
|
|
|
return Diag(From->getSourceRange().getBegin(),
|
|
|
|
diag::err_typecheck_bool_condition)
|
|
|
|
<< From->getType() << From->getSourceRange();
|
|
|
|
return true;
|
2009-01-14 23:45:31 +08:00
|
|
|
}
|
|
|
|
|
2008-10-22 00:13:35 +08:00
|
|
|
/// AddOverloadCandidate - Adds the given function to the set of
|
2008-11-04 03:09:14 +08:00
|
|
|
/// candidate functions, using the given function call arguments. If
|
|
|
|
/// @p SuppressUserConversions, then don't allow user-defined
|
|
|
|
/// conversions via constructors or conversion operators.
|
2009-04-13 01:16:29 +08:00
|
|
|
/// If @p ForceRValue, treat all arguments as rvalues. This is a slightly
|
|
|
|
/// hacky way to implement the overloading rules for elidable copy
|
|
|
|
/// initialization in C++0x (C++0x 12.8p15).
|
2009-09-22 23:41:20 +08:00
|
|
|
///
|
|
|
|
/// \para PartialOverloading true if we are performing "partial" overloading
|
|
|
|
/// based on an incomplete set of function arguments. This feature is used by
|
|
|
|
/// code completion.
|
2009-09-09 23:08:12 +08:00
|
|
|
void
|
|
|
|
Sema::AddOverloadCandidate(FunctionDecl *Function,
|
2008-10-22 00:13:35 +08:00
|
|
|
Expr **Args, unsigned NumArgs,
|
2008-11-04 03:09:14 +08:00
|
|
|
OverloadCandidateSet& CandidateSet,
|
2009-04-13 01:16:29 +08:00
|
|
|
bool SuppressUserConversions,
|
2009-09-22 23:41:20 +08:00
|
|
|
bool ForceRValue,
|
|
|
|
bool PartialOverloading) {
|
2009-09-09 23:08:12 +08:00
|
|
|
const FunctionProtoType* Proto
|
2009-09-22 07:43:11 +08:00
|
|
|
= dyn_cast<FunctionProtoType>(Function->getType()->getAs<FunctionType>());
|
2008-10-22 00:13:35 +08:00
|
|
|
assert(Proto && "Functions without a prototype cannot be overloaded");
|
2009-09-09 23:08:12 +08:00
|
|
|
assert(!Function->getDescribedFunctionTemplate() &&
|
2009-06-26 06:08:12 +08:00
|
|
|
"Use AddTemplateOverloadCandidate for function templates");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-12-22 13:46:06 +08:00
|
|
|
if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Function)) {
|
2009-04-17 01:51:27 +08:00
|
|
|
if (!isa<CXXConstructorDecl>(Method)) {
|
|
|
|
// If we get here, it's because we're calling a member function
|
|
|
|
// that is named without a member access expression (e.g.,
|
|
|
|
// "this->f") that was either written explicitly or created
|
|
|
|
// implicitly. This can happen with a qualified call to a member
|
2009-12-03 12:06:58 +08:00
|
|
|
// function, e.g., X::f(). We use an empty type for the implied
|
|
|
|
// object argument (C++ [over.call.func]p3), and the acting context
|
|
|
|
// is irrelevant.
|
|
|
|
AddMethodCandidate(Method, Method->getParent(),
|
|
|
|
QualType(), Args, NumArgs, CandidateSet,
|
2009-04-17 01:51:27 +08:00
|
|
|
SuppressUserConversions, ForceRValue);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// We treat a constructor like a non-member function, since its object
|
|
|
|
// argument doesn't participate in overload resolution.
|
2008-12-22 13:46:06 +08:00
|
|
|
}
|
|
|
|
|
2009-11-14 07:59:09 +08:00
|
|
|
if (!CandidateSet.isNewCandidate(Function))
|
2009-09-28 12:47:19 +08:00
|
|
|
return;
|
2009-11-14 09:20:54 +08:00
|
|
|
|
2009-11-23 20:27:39 +08:00
|
|
|
// Overload resolution is always an unevaluated context.
|
|
|
|
EnterExpressionEvaluationContext Unevaluated(*this, Action::Unevaluated);
|
|
|
|
|
2009-11-14 09:20:54 +08:00
|
|
|
if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Function)){
|
|
|
|
// C++ [class.copy]p3:
|
|
|
|
// A member function template is never instantiated to perform the copy
|
|
|
|
// of a class object to an object of its class type.
|
|
|
|
QualType ClassType = Context.getTypeDeclType(Constructor->getParent());
|
|
|
|
if (NumArgs == 1 &&
|
|
|
|
Constructor->isCopyConstructorLikeSpecialization() &&
|
|
|
|
Context.hasSameUnqualifiedType(ClassType, Args[0]->getType()))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-10-22 00:13:35 +08:00
|
|
|
// Add this candidate
|
|
|
|
CandidateSet.push_back(OverloadCandidate());
|
|
|
|
OverloadCandidate& Candidate = CandidateSet.back();
|
|
|
|
Candidate.Function = Function;
|
2008-12-22 13:46:06 +08:00
|
|
|
Candidate.Viable = true;
|
2008-11-20 06:57:39 +08:00
|
|
|
Candidate.IsSurrogate = false;
|
2008-12-22 13:46:06 +08:00
|
|
|
Candidate.IgnoreObjectArgument = false;
|
2008-10-22 00:13:35 +08:00
|
|
|
|
|
|
|
unsigned NumArgsInProto = Proto->getNumArgs();
|
|
|
|
|
|
|
|
// (C++ 13.3.2p2): A candidate function having fewer than m
|
|
|
|
// parameters is viable only if it has an ellipsis in its parameter
|
|
|
|
// list (8.3.5).
|
2009-09-23 22:56:09 +08:00
|
|
|
if ((NumArgs + (PartialOverloading && NumArgs)) > NumArgsInProto &&
|
|
|
|
!Proto->isVariadic()) {
|
2008-10-22 00:13:35 +08:00
|
|
|
Candidate.Viable = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// (C++ 13.3.2p2): A candidate function having more than m parameters
|
|
|
|
// is viable only if the (m+1)st parameter has a default argument
|
|
|
|
// (8.3.6). For the purposes of overload resolution, the
|
|
|
|
// parameter list is truncated on the right, so that there are
|
|
|
|
// exactly m parameters.
|
|
|
|
unsigned MinRequiredArgs = Function->getMinRequiredArguments();
|
2009-09-22 23:41:20 +08:00
|
|
|
if (NumArgs < MinRequiredArgs && !PartialOverloading) {
|
2008-10-22 00:13:35 +08:00
|
|
|
// Not enough arguments.
|
|
|
|
Candidate.Viable = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Determine the implicit conversion sequences for each of the
|
|
|
|
// arguments.
|
|
|
|
Candidate.Conversions.resize(NumArgs);
|
|
|
|
for (unsigned ArgIdx = 0; ArgIdx < NumArgs; ++ArgIdx) {
|
|
|
|
if (ArgIdx < NumArgsInProto) {
|
|
|
|
// (C++ 13.3.2p3): for F to be a viable function, there shall
|
|
|
|
// exist for each argument an implicit conversion sequence
|
|
|
|
// (13.3.3.1) that converts that argument to the corresponding
|
|
|
|
// parameter of F.
|
|
|
|
QualType ParamType = Proto->getArgType(ArgIdx);
|
2009-09-09 23:08:12 +08:00
|
|
|
Candidate.Conversions[ArgIdx]
|
|
|
|
= TryCopyInitialization(Args[ArgIdx], ParamType,
|
2009-08-28 01:37:39 +08:00
|
|
|
SuppressUserConversions, ForceRValue,
|
|
|
|
/*InOverloadResolution=*/true);
|
2009-09-09 23:08:12 +08:00
|
|
|
if (Candidate.Conversions[ArgIdx].ConversionKind
|
2008-11-19 07:14:02 +08:00
|
|
|
== ImplicitConversionSequence::BadConversion) {
|
2009-09-29 03:06:58 +08:00
|
|
|
// 13.3.3.1-p10 If several different sequences of conversions exist that
|
|
|
|
// each convert the argument to the parameter type, the implicit conversion
|
|
|
|
// sequence associated with the parameter is defined to be the unique conversion
|
|
|
|
// sequence designated the ambiguous conversion sequence. For the purpose of
|
|
|
|
// ranking implicit conversion sequences as described in 13.3.3.2, the ambiguous
|
|
|
|
// conversion sequence is treated as a user-defined sequence that is
|
|
|
|
// indistinguishable from any other user-defined conversion sequence
|
2009-09-30 01:31:54 +08:00
|
|
|
if (!Candidate.Conversions[ArgIdx].ConversionFunctionSet.empty()) {
|
2009-09-29 03:06:58 +08:00
|
|
|
Candidate.Conversions[ArgIdx].ConversionKind =
|
|
|
|
ImplicitConversionSequence::UserDefinedConversion;
|
2009-09-30 01:31:54 +08:00
|
|
|
// Set the conversion function to one of them. As due to ambiguity,
|
|
|
|
// they carry the same weight and is needed for overload resolution
|
|
|
|
// later.
|
|
|
|
Candidate.Conversions[ArgIdx].UserDefined.ConversionFunction =
|
|
|
|
Candidate.Conversions[ArgIdx].ConversionFunctionSet[0];
|
|
|
|
}
|
2009-09-29 03:06:58 +08:00
|
|
|
else {
|
|
|
|
Candidate.Viable = false;
|
|
|
|
break;
|
|
|
|
}
|
2008-11-19 07:14:02 +08:00
|
|
|
}
|
2008-10-22 00:13:35 +08:00
|
|
|
} else {
|
|
|
|
// (C++ 13.3.2p2): For the purposes of overload resolution, any
|
|
|
|
// argument for which there is no corresponding parameter is
|
|
|
|
// considered to ""match the ellipsis" (C+ 13.3.3.1.3).
|
2009-09-09 23:08:12 +08:00
|
|
|
Candidate.Conversions[ArgIdx].ConversionKind
|
2008-10-22 00:13:35 +08:00
|
|
|
= ImplicitConversionSequence::EllipsisConversion;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-14 02:40:31 +08:00
|
|
|
/// \brief Add all of the function declarations in the given function set to
|
|
|
|
/// the overload canddiate set.
|
|
|
|
void Sema::AddFunctionCandidates(const FunctionSet &Functions,
|
|
|
|
Expr **Args, unsigned NumArgs,
|
|
|
|
OverloadCandidateSet& CandidateSet,
|
|
|
|
bool SuppressUserConversions) {
|
2009-09-09 23:08:12 +08:00
|
|
|
for (FunctionSet::const_iterator F = Functions.begin(),
|
2009-03-14 02:40:31 +08:00
|
|
|
FEnd = Functions.end();
|
2009-06-28 05:05:07 +08:00
|
|
|
F != FEnd; ++F) {
|
2009-12-03 12:06:58 +08:00
|
|
|
// FIXME: using declarations
|
2009-09-28 12:47:19 +08:00
|
|
|
if (FunctionDecl *FD = dyn_cast<FunctionDecl>(*F)) {
|
|
|
|
if (isa<CXXMethodDecl>(FD) && !cast<CXXMethodDecl>(FD)->isStatic())
|
|
|
|
AddMethodCandidate(cast<CXXMethodDecl>(FD),
|
2009-12-03 12:06:58 +08:00
|
|
|
cast<CXXMethodDecl>(FD)->getParent(),
|
|
|
|
Args[0]->getType(), Args + 1, NumArgs - 1,
|
2009-09-28 12:47:19 +08:00
|
|
|
CandidateSet, SuppressUserConversions);
|
|
|
|
else
|
|
|
|
AddOverloadCandidate(FD, Args, NumArgs, CandidateSet,
|
|
|
|
SuppressUserConversions);
|
|
|
|
} else {
|
|
|
|
FunctionTemplateDecl *FunTmpl = cast<FunctionTemplateDecl>(*F);
|
|
|
|
if (isa<CXXMethodDecl>(FunTmpl->getTemplatedDecl()) &&
|
|
|
|
!cast<CXXMethodDecl>(FunTmpl->getTemplatedDecl())->isStatic())
|
|
|
|
AddMethodTemplateCandidate(FunTmpl,
|
2009-12-03 12:06:58 +08:00
|
|
|
cast<CXXRecordDecl>(FunTmpl->getDeclContext()),
|
2009-11-23 09:53:49 +08:00
|
|
|
/*FIXME: explicit args */ 0,
|
2009-12-03 12:06:58 +08:00
|
|
|
Args[0]->getType(), Args + 1, NumArgs - 1,
|
2009-09-28 12:47:19 +08:00
|
|
|
CandidateSet,
|
2009-06-28 05:05:07 +08:00
|
|
|
SuppressUserConversions);
|
2009-09-28 12:47:19 +08:00
|
|
|
else
|
|
|
|
AddTemplateOverloadCandidate(FunTmpl,
|
2009-11-23 09:53:49 +08:00
|
|
|
/*FIXME: explicit args */ 0,
|
2009-09-28 12:47:19 +08:00
|
|
|
Args, NumArgs, CandidateSet,
|
|
|
|
SuppressUserConversions);
|
|
|
|
}
|
2009-06-28 05:05:07 +08:00
|
|
|
}
|
2009-03-14 02:40:31 +08:00
|
|
|
}
|
|
|
|
|
2009-11-17 15:50:12 +08:00
|
|
|
/// AddMethodCandidate - Adds a named decl (which is some kind of
|
|
|
|
/// method) as a method candidate to the given overload set.
|
2009-12-03 12:06:58 +08:00
|
|
|
void Sema::AddMethodCandidate(NamedDecl *Decl,
|
|
|
|
QualType ObjectType,
|
2009-11-17 15:50:12 +08:00
|
|
|
Expr **Args, unsigned NumArgs,
|
|
|
|
OverloadCandidateSet& CandidateSet,
|
|
|
|
bool SuppressUserConversions, bool ForceRValue) {
|
2009-12-03 12:06:58 +08:00
|
|
|
CXXRecordDecl *ActingContext = cast<CXXRecordDecl>(Decl->getDeclContext());
|
2009-11-17 15:50:12 +08:00
|
|
|
|
|
|
|
if (isa<UsingShadowDecl>(Decl))
|
|
|
|
Decl = cast<UsingShadowDecl>(Decl)->getTargetDecl();
|
|
|
|
|
|
|
|
if (FunctionTemplateDecl *TD = dyn_cast<FunctionTemplateDecl>(Decl)) {
|
|
|
|
assert(isa<CXXMethodDecl>(TD->getTemplatedDecl()) &&
|
|
|
|
"Expected a member function template");
|
2009-12-03 12:06:58 +08:00
|
|
|
AddMethodTemplateCandidate(TD, ActingContext, /*ExplicitArgs*/ 0,
|
|
|
|
ObjectType, Args, NumArgs,
|
2009-11-17 15:50:12 +08:00
|
|
|
CandidateSet,
|
|
|
|
SuppressUserConversions,
|
|
|
|
ForceRValue);
|
|
|
|
} else {
|
2009-12-03 12:06:58 +08:00
|
|
|
AddMethodCandidate(cast<CXXMethodDecl>(Decl), ActingContext,
|
|
|
|
ObjectType, Args, NumArgs,
|
2009-11-17 15:50:12 +08:00
|
|
|
CandidateSet, SuppressUserConversions, ForceRValue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-19 07:14:02 +08:00
|
|
|
/// AddMethodCandidate - Adds the given C++ member function to the set
|
|
|
|
/// of candidate functions, using the given function call arguments
|
|
|
|
/// and the object argument (@c Object). For example, in a call
|
|
|
|
/// @c o.f(a1,a2), @c Object will contain @c o and @c Args will contain
|
|
|
|
/// both @c a1 and @c a2. If @p SuppressUserConversions, then don't
|
|
|
|
/// allow user-defined conversions via constructors or conversion
|
2009-04-13 01:16:29 +08:00
|
|
|
/// operators. If @p ForceRValue, treat all arguments as rvalues. This is
|
|
|
|
/// a slightly hacky way to implement the overloading rules for elidable copy
|
|
|
|
/// initialization in C++0x (C++0x 12.8p15).
|
2009-09-09 23:08:12 +08:00
|
|
|
void
|
2009-12-03 12:06:58 +08:00
|
|
|
Sema::AddMethodCandidate(CXXMethodDecl *Method, CXXRecordDecl *ActingContext,
|
|
|
|
QualType ObjectType, Expr **Args, unsigned NumArgs,
|
2008-11-19 07:14:02 +08:00
|
|
|
OverloadCandidateSet& CandidateSet,
|
2009-09-09 23:08:12 +08:00
|
|
|
bool SuppressUserConversions, bool ForceRValue) {
|
|
|
|
const FunctionProtoType* Proto
|
2009-09-22 07:43:11 +08:00
|
|
|
= dyn_cast<FunctionProtoType>(Method->getType()->getAs<FunctionType>());
|
2008-11-19 07:14:02 +08:00
|
|
|
assert(Proto && "Methods without a prototype cannot be overloaded");
|
2009-04-17 01:51:27 +08:00
|
|
|
assert(!isa<CXXConstructorDecl>(Method) &&
|
|
|
|
"Use AddOverloadCandidate for constructors");
|
2008-11-19 07:14:02 +08:00
|
|
|
|
2009-09-28 12:47:19 +08:00
|
|
|
if (!CandidateSet.isNewCandidate(Method))
|
|
|
|
return;
|
|
|
|
|
2009-11-23 20:27:39 +08:00
|
|
|
// Overload resolution is always an unevaluated context.
|
|
|
|
EnterExpressionEvaluationContext Unevaluated(*this, Action::Unevaluated);
|
|
|
|
|
2008-11-19 07:14:02 +08:00
|
|
|
// Add this candidate
|
|
|
|
CandidateSet.push_back(OverloadCandidate());
|
|
|
|
OverloadCandidate& Candidate = CandidateSet.back();
|
|
|
|
Candidate.Function = Method;
|
2008-11-20 06:57:39 +08:00
|
|
|
Candidate.IsSurrogate = false;
|
2008-12-22 13:46:06 +08:00
|
|
|
Candidate.IgnoreObjectArgument = false;
|
2008-11-19 07:14:02 +08:00
|
|
|
|
|
|
|
unsigned NumArgsInProto = Proto->getNumArgs();
|
|
|
|
|
|
|
|
// (C++ 13.3.2p2): A candidate function having fewer than m
|
|
|
|
// parameters is viable only if it has an ellipsis in its parameter
|
|
|
|
// list (8.3.5).
|
|
|
|
if (NumArgs > NumArgsInProto && !Proto->isVariadic()) {
|
|
|
|
Candidate.Viable = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// (C++ 13.3.2p2): A candidate function having more than m parameters
|
|
|
|
// is viable only if the (m+1)st parameter has a default argument
|
|
|
|
// (8.3.6). For the purposes of overload resolution, the
|
|
|
|
// parameter list is truncated on the right, so that there are
|
|
|
|
// exactly m parameters.
|
|
|
|
unsigned MinRequiredArgs = Method->getMinRequiredArguments();
|
|
|
|
if (NumArgs < MinRequiredArgs) {
|
|
|
|
// Not enough arguments.
|
|
|
|
Candidate.Viable = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Candidate.Viable = true;
|
|
|
|
Candidate.Conversions.resize(NumArgs + 1);
|
|
|
|
|
2009-12-03 12:06:58 +08:00
|
|
|
if (Method->isStatic() || ObjectType.isNull())
|
2008-12-22 13:46:06 +08:00
|
|
|
// The implicit object argument is ignored.
|
|
|
|
Candidate.IgnoreObjectArgument = true;
|
|
|
|
else {
|
|
|
|
// Determine the implicit conversion sequence for the object
|
|
|
|
// parameter.
|
2009-12-03 12:06:58 +08:00
|
|
|
Candidate.Conversions[0]
|
|
|
|
= TryObjectArgumentInitialization(ObjectType, Method, ActingContext);
|
2009-09-09 23:08:12 +08:00
|
|
|
if (Candidate.Conversions[0].ConversionKind
|
2008-12-22 13:46:06 +08:00
|
|
|
== ImplicitConversionSequence::BadConversion) {
|
|
|
|
Candidate.Viable = false;
|
|
|
|
return;
|
|
|
|
}
|
2008-11-19 07:14:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Determine the implicit conversion sequences for each of the
|
|
|
|
// arguments.
|
|
|
|
for (unsigned ArgIdx = 0; ArgIdx < NumArgs; ++ArgIdx) {
|
|
|
|
if (ArgIdx < NumArgsInProto) {
|
|
|
|
// (C++ 13.3.2p3): for F to be a viable function, there shall
|
|
|
|
// exist for each argument an implicit conversion sequence
|
|
|
|
// (13.3.3.1) that converts that argument to the corresponding
|
|
|
|
// parameter of F.
|
|
|
|
QualType ParamType = Proto->getArgType(ArgIdx);
|
2009-09-09 23:08:12 +08:00
|
|
|
Candidate.Conversions[ArgIdx + 1]
|
|
|
|
= TryCopyInitialization(Args[ArgIdx], ParamType,
|
2009-08-28 01:37:39 +08:00
|
|
|
SuppressUserConversions, ForceRValue,
|
2009-08-28 23:33:32 +08:00
|
|
|
/*InOverloadResolution=*/true);
|
2009-09-09 23:08:12 +08:00
|
|
|
if (Candidate.Conversions[ArgIdx + 1].ConversionKind
|
2008-11-19 07:14:02 +08:00
|
|
|
== ImplicitConversionSequence::BadConversion) {
|
|
|
|
Candidate.Viable = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// (C++ 13.3.2p2): For the purposes of overload resolution, any
|
|
|
|
// argument for which there is no corresponding parameter is
|
|
|
|
// considered to ""match the ellipsis" (C+ 13.3.3.1.3).
|
2009-09-09 23:08:12 +08:00
|
|
|
Candidate.Conversions[ArgIdx + 1].ConversionKind
|
2008-11-19 07:14:02 +08:00
|
|
|
= ImplicitConversionSequence::EllipsisConversion;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-21 08:16:32 +08:00
|
|
|
/// \brief Add a C++ member function template as a candidate to the candidate
|
|
|
|
/// set, using template argument deduction to produce an appropriate member
|
|
|
|
/// function template specialization.
|
2009-09-09 23:08:12 +08:00
|
|
|
void
|
2009-08-21 08:16:32 +08:00
|
|
|
Sema::AddMethodTemplateCandidate(FunctionTemplateDecl *MethodTmpl,
|
2009-12-03 12:06:58 +08:00
|
|
|
CXXRecordDecl *ActingContext,
|
2009-11-23 09:53:49 +08:00
|
|
|
const TemplateArgumentListInfo *ExplicitTemplateArgs,
|
2009-12-03 12:06:58 +08:00
|
|
|
QualType ObjectType,
|
|
|
|
Expr **Args, unsigned NumArgs,
|
2009-08-21 08:16:32 +08:00
|
|
|
OverloadCandidateSet& CandidateSet,
|
|
|
|
bool SuppressUserConversions,
|
|
|
|
bool ForceRValue) {
|
2009-09-28 12:47:19 +08:00
|
|
|
if (!CandidateSet.isNewCandidate(MethodTmpl))
|
|
|
|
return;
|
|
|
|
|
2009-08-21 08:16:32 +08:00
|
|
|
// C++ [over.match.funcs]p7:
|
2009-09-09 23:08:12 +08:00
|
|
|
// In each case where a candidate is a function template, candidate
|
2009-08-21 08:16:32 +08:00
|
|
|
// function template specializations are generated using template argument
|
2009-09-09 23:08:12 +08:00
|
|
|
// deduction (14.8.3, 14.8.2). Those candidates are then handled as
|
2009-08-21 08:16:32 +08:00
|
|
|
// candidate functions in the usual way.113) A given name can refer to one
|
|
|
|
// or more function templates and also to a set of overloaded non-template
|
|
|
|
// functions. In such a case, the candidate functions generated from each
|
|
|
|
// function template are combined with the set of non-template candidate
|
|
|
|
// functions.
|
|
|
|
TemplateDeductionInfo Info(Context);
|
|
|
|
FunctionDecl *Specialization = 0;
|
|
|
|
if (TemplateDeductionResult Result
|
2009-11-23 09:53:49 +08:00
|
|
|
= DeduceTemplateArguments(MethodTmpl, ExplicitTemplateArgs,
|
2009-08-21 08:16:32 +08:00
|
|
|
Args, NumArgs, Specialization, Info)) {
|
|
|
|
// FIXME: Record what happened with template argument deduction, so
|
|
|
|
// that we can give the user a beautiful diagnostic.
|
|
|
|
(void)Result;
|
|
|
|
return;
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-21 08:16:32 +08:00
|
|
|
// Add the function template specialization produced by template argument
|
|
|
|
// deduction as a candidate.
|
|
|
|
assert(Specialization && "Missing member function template specialization?");
|
2009-09-09 23:08:12 +08:00
|
|
|
assert(isa<CXXMethodDecl>(Specialization) &&
|
2009-08-21 08:16:32 +08:00
|
|
|
"Specialization is not a member function?");
|
2009-12-03 12:06:58 +08:00
|
|
|
AddMethodCandidate(cast<CXXMethodDecl>(Specialization), ActingContext,
|
|
|
|
ObjectType, Args, NumArgs,
|
2009-08-21 08:16:32 +08:00
|
|
|
CandidateSet, SuppressUserConversions, ForceRValue);
|
|
|
|
}
|
|
|
|
|
2009-08-22 07:19:43 +08:00
|
|
|
/// \brief Add a C++ function template specialization as a candidate
|
|
|
|
/// in the candidate set, using template argument deduction to produce
|
|
|
|
/// an appropriate function template specialization.
|
2009-09-09 23:08:12 +08:00
|
|
|
void
|
2009-06-26 06:08:12 +08:00
|
|
|
Sema::AddTemplateOverloadCandidate(FunctionTemplateDecl *FunctionTemplate,
|
2009-11-23 09:53:49 +08:00
|
|
|
const TemplateArgumentListInfo *ExplicitTemplateArgs,
|
2009-06-26 06:08:12 +08:00
|
|
|
Expr **Args, unsigned NumArgs,
|
|
|
|
OverloadCandidateSet& CandidateSet,
|
|
|
|
bool SuppressUserConversions,
|
|
|
|
bool ForceRValue) {
|
2009-09-28 12:47:19 +08:00
|
|
|
if (!CandidateSet.isNewCandidate(FunctionTemplate))
|
|
|
|
return;
|
|
|
|
|
2009-06-26 06:08:12 +08:00
|
|
|
// C++ [over.match.funcs]p7:
|
2009-09-09 23:08:12 +08:00
|
|
|
// In each case where a candidate is a function template, candidate
|
2009-06-26 06:08:12 +08:00
|
|
|
// function template specializations are generated using template argument
|
2009-09-09 23:08:12 +08:00
|
|
|
// deduction (14.8.3, 14.8.2). Those candidates are then handled as
|
2009-06-26 06:08:12 +08:00
|
|
|
// candidate functions in the usual way.113) A given name can refer to one
|
|
|
|
// or more function templates and also to a set of overloaded non-template
|
|
|
|
// functions. In such a case, the candidate functions generated from each
|
|
|
|
// function template are combined with the set of non-template candidate
|
|
|
|
// functions.
|
|
|
|
TemplateDeductionInfo Info(Context);
|
|
|
|
FunctionDecl *Specialization = 0;
|
|
|
|
if (TemplateDeductionResult Result
|
2009-11-23 09:53:49 +08:00
|
|
|
= DeduceTemplateArguments(FunctionTemplate, ExplicitTemplateArgs,
|
2009-07-01 07:57:56 +08:00
|
|
|
Args, NumArgs, Specialization, Info)) {
|
2009-06-26 06:08:12 +08:00
|
|
|
// FIXME: Record what happened with template argument deduction, so
|
|
|
|
// that we can give the user a beautiful diagnostic.
|
2009-12-16 16:11:27 +08:00
|
|
|
(void) Result;
|
|
|
|
|
|
|
|
CandidateSet.push_back(OverloadCandidate());
|
|
|
|
OverloadCandidate &Candidate = CandidateSet.back();
|
|
|
|
Candidate.Function = FunctionTemplate->getTemplatedDecl();
|
|
|
|
Candidate.Viable = false;
|
|
|
|
Candidate.IsSurrogate = false;
|
|
|
|
Candidate.IgnoreObjectArgument = false;
|
2009-06-26 06:08:12 +08:00
|
|
|
return;
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-06-26 06:08:12 +08:00
|
|
|
// Add the function template specialization produced by template argument
|
|
|
|
// deduction as a candidate.
|
|
|
|
assert(Specialization && "Missing function template specialization?");
|
|
|
|
AddOverloadCandidate(Specialization, Args, NumArgs, CandidateSet,
|
|
|
|
SuppressUserConversions, ForceRValue);
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-11-08 06:36:19 +08:00
|
|
|
/// AddConversionCandidate - Add a C++ conversion function as a
|
2009-09-09 23:08:12 +08:00
|
|
|
/// candidate in the candidate set (C++ [over.match.conv],
|
2008-11-08 06:36:19 +08:00
|
|
|
/// C++ [over.match.copy]). From is the expression we're converting from,
|
2009-09-09 23:08:12 +08:00
|
|
|
/// and ToType is the type that we're eventually trying to convert to
|
2008-11-08 06:36:19 +08:00
|
|
|
/// (which may or may not be the same type as the type that the
|
|
|
|
/// conversion function produces).
|
|
|
|
void
|
|
|
|
Sema::AddConversionCandidate(CXXConversionDecl *Conversion,
|
2009-12-03 12:06:58 +08:00
|
|
|
CXXRecordDecl *ActingContext,
|
2008-11-08 06:36:19 +08:00
|
|
|
Expr *From, QualType ToType,
|
|
|
|
OverloadCandidateSet& CandidateSet) {
|
2009-08-22 07:19:43 +08:00
|
|
|
assert(!Conversion->getDescribedFunctionTemplate() &&
|
|
|
|
"Conversion function templates use AddTemplateConversionCandidate");
|
|
|
|
|
2009-09-28 12:47:19 +08:00
|
|
|
if (!CandidateSet.isNewCandidate(Conversion))
|
|
|
|
return;
|
|
|
|
|
2009-11-23 20:27:39 +08:00
|
|
|
// Overload resolution is always an unevaluated context.
|
|
|
|
EnterExpressionEvaluationContext Unevaluated(*this, Action::Unevaluated);
|
|
|
|
|
2008-11-08 06:36:19 +08:00
|
|
|
// Add this candidate
|
|
|
|
CandidateSet.push_back(OverloadCandidate());
|
|
|
|
OverloadCandidate& Candidate = CandidateSet.back();
|
|
|
|
Candidate.Function = Conversion;
|
2008-11-20 06:57:39 +08:00
|
|
|
Candidate.IsSurrogate = false;
|
2008-12-22 13:46:06 +08:00
|
|
|
Candidate.IgnoreObjectArgument = false;
|
2008-11-08 06:36:19 +08:00
|
|
|
Candidate.FinalConversion.setAsIdentityConversion();
|
2009-09-09 23:08:12 +08:00
|
|
|
Candidate.FinalConversion.FromTypePtr
|
2008-11-08 06:36:19 +08:00
|
|
|
= Conversion->getConversionType().getAsOpaquePtr();
|
|
|
|
Candidate.FinalConversion.ToTypePtr = ToType.getAsOpaquePtr();
|
|
|
|
|
2008-11-19 07:14:02 +08:00
|
|
|
// Determine the implicit conversion sequence for the implicit
|
|
|
|
// object parameter.
|
2008-11-08 06:36:19 +08:00
|
|
|
Candidate.Viable = true;
|
|
|
|
Candidate.Conversions.resize(1);
|
2009-12-03 12:06:58 +08:00
|
|
|
Candidate.Conversions[0]
|
|
|
|
= TryObjectArgumentInitialization(From->getType(), Conversion,
|
|
|
|
ActingContext);
|
2009-09-15 04:41:01 +08:00
|
|
|
// Conversion functions to a different type in the base class is visible in
|
|
|
|
// the derived class. So, a derived to base conversion should not participate
|
|
|
|
// in overload resolution.
|
|
|
|
if (Candidate.Conversions[0].Standard.Second == ICK_Derived_To_Base)
|
|
|
|
Candidate.Conversions[0].Standard.Second = ICK_Identity;
|
2009-09-09 23:08:12 +08:00
|
|
|
if (Candidate.Conversions[0].ConversionKind
|
2008-11-08 06:36:19 +08:00
|
|
|
== ImplicitConversionSequence::BadConversion) {
|
|
|
|
Candidate.Viable = false;
|
|
|
|
return;
|
|
|
|
}
|
2009-10-20 03:18:20 +08:00
|
|
|
|
|
|
|
// We won't go through a user-define type conversion function to convert a
|
|
|
|
// derived to base as such conversions are given Conversion Rank. They only
|
|
|
|
// go through a copy constructor. 13.3.3.1.2-p4 [over.ics.user]
|
|
|
|
QualType FromCanon
|
|
|
|
= Context.getCanonicalType(From->getType().getUnqualifiedType());
|
|
|
|
QualType ToCanon = Context.getCanonicalType(ToType).getUnqualifiedType();
|
|
|
|
if (FromCanon == ToCanon || IsDerivedFrom(FromCanon, ToCanon)) {
|
|
|
|
Candidate.Viable = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-11-08 06:36:19 +08:00
|
|
|
|
|
|
|
// To determine what the conversion from the result of calling the
|
|
|
|
// conversion function to the type we're eventually trying to
|
|
|
|
// convert to (ToType), we need to synthesize a call to the
|
|
|
|
// conversion function and attempt copy initialization from it. This
|
|
|
|
// makes sure that we get the right semantics with respect to
|
|
|
|
// lvalues/rvalues and the type. Fortunately, we can allocate this
|
|
|
|
// call on the stack and we don't need its arguments to be
|
|
|
|
// well-formed.
|
2009-09-09 23:08:12 +08:00
|
|
|
DeclRefExpr ConversionRef(Conversion, Conversion->getType(),
|
2009-11-18 05:16:22 +08:00
|
|
|
From->getLocStart());
|
2008-11-08 06:36:19 +08:00
|
|
|
ImplicitCastExpr ConversionFn(Context.getPointerType(Conversion->getType()),
|
2009-10-20 16:27:19 +08:00
|
|
|
CastExpr::CK_FunctionToPointerDecay,
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
&ConversionRef, false);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
// Note that it is safe to allocate CallExpr on the stack here because
|
2009-02-10 04:51:47 +08:00
|
|
|
// there are 0 arguments (i.e., nothing is allocated using ASTContext's
|
|
|
|
// allocator).
|
2009-09-09 23:08:12 +08:00
|
|
|
CallExpr Call(Context, &ConversionFn, 0, 0,
|
2008-11-08 06:36:19 +08:00
|
|
|
Conversion->getConversionType().getNonReferenceType(),
|
2009-11-18 05:16:22 +08:00
|
|
|
From->getLocStart());
|
2009-09-09 23:08:12 +08:00
|
|
|
ImplicitConversionSequence ICS =
|
|
|
|
TryCopyInitialization(&Call, ToType,
|
2009-08-28 01:18:13 +08:00
|
|
|
/*SuppressUserConversions=*/true,
|
2009-08-28 01:37:39 +08:00
|
|
|
/*ForceRValue=*/false,
|
|
|
|
/*InOverloadResolution=*/false);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-11-08 06:36:19 +08:00
|
|
|
switch (ICS.ConversionKind) {
|
|
|
|
case ImplicitConversionSequence::StandardConversion:
|
|
|
|
Candidate.FinalConversion = ICS.Standard;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ImplicitConversionSequence::BadConversion:
|
|
|
|
Candidate.Viable = false;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2009-09-09 23:08:12 +08:00
|
|
|
assert(false &&
|
2008-11-08 06:36:19 +08:00
|
|
|
"Can only end up with a standard conversion sequence or failure");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-22 07:19:43 +08:00
|
|
|
/// \brief Adds a conversion function template specialization
|
|
|
|
/// candidate to the overload set, using template argument deduction
|
|
|
|
/// to deduce the template arguments of the conversion function
|
|
|
|
/// template from the type that we are converting to (C++
|
|
|
|
/// [temp.deduct.conv]).
|
2009-09-09 23:08:12 +08:00
|
|
|
void
|
2009-08-22 07:19:43 +08:00
|
|
|
Sema::AddTemplateConversionCandidate(FunctionTemplateDecl *FunctionTemplate,
|
2009-12-03 12:06:58 +08:00
|
|
|
CXXRecordDecl *ActingDC,
|
2009-08-22 07:19:43 +08:00
|
|
|
Expr *From, QualType ToType,
|
|
|
|
OverloadCandidateSet &CandidateSet) {
|
|
|
|
assert(isa<CXXConversionDecl>(FunctionTemplate->getTemplatedDecl()) &&
|
|
|
|
"Only conversion function templates permitted here");
|
|
|
|
|
2009-09-28 12:47:19 +08:00
|
|
|
if (!CandidateSet.isNewCandidate(FunctionTemplate))
|
|
|
|
return;
|
|
|
|
|
2009-08-22 07:19:43 +08:00
|
|
|
TemplateDeductionInfo Info(Context);
|
|
|
|
CXXConversionDecl *Specialization = 0;
|
|
|
|
if (TemplateDeductionResult Result
|
2009-09-09 23:08:12 +08:00
|
|
|
= DeduceTemplateArguments(FunctionTemplate, ToType,
|
2009-08-22 07:19:43 +08:00
|
|
|
Specialization, Info)) {
|
|
|
|
// FIXME: Record what happened with template argument deduction, so
|
|
|
|
// that we can give the user a beautiful diagnostic.
|
|
|
|
(void)Result;
|
|
|
|
return;
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-22 07:19:43 +08:00
|
|
|
// Add the conversion function template specialization produced by
|
|
|
|
// template argument deduction as a candidate.
|
|
|
|
assert(Specialization && "Missing function template specialization?");
|
2009-12-03 12:06:58 +08:00
|
|
|
AddConversionCandidate(Specialization, ActingDC, From, ToType, CandidateSet);
|
2009-08-22 07:19:43 +08:00
|
|
|
}
|
|
|
|
|
2008-11-20 06:57:39 +08:00
|
|
|
/// AddSurrogateCandidate - Adds a "surrogate" candidate function that
|
|
|
|
/// converts the given @c Object to a function pointer via the
|
|
|
|
/// conversion function @c Conversion, and then attempts to call it
|
|
|
|
/// with the given arguments (C++ [over.call.object]p2-4). Proto is
|
|
|
|
/// the type of function that we'll eventually be calling.
|
|
|
|
void Sema::AddSurrogateCandidate(CXXConversionDecl *Conversion,
|
2009-12-03 12:06:58 +08:00
|
|
|
CXXRecordDecl *ActingContext,
|
2009-02-27 07:50:07 +08:00
|
|
|
const FunctionProtoType *Proto,
|
2009-12-03 12:06:58 +08:00
|
|
|
QualType ObjectType,
|
|
|
|
Expr **Args, unsigned NumArgs,
|
2008-11-20 06:57:39 +08:00
|
|
|
OverloadCandidateSet& CandidateSet) {
|
2009-09-28 12:47:19 +08:00
|
|
|
if (!CandidateSet.isNewCandidate(Conversion))
|
|
|
|
return;
|
|
|
|
|
2009-11-23 20:27:39 +08:00
|
|
|
// Overload resolution is always an unevaluated context.
|
|
|
|
EnterExpressionEvaluationContext Unevaluated(*this, Action::Unevaluated);
|
|
|
|
|
2008-11-20 06:57:39 +08:00
|
|
|
CandidateSet.push_back(OverloadCandidate());
|
|
|
|
OverloadCandidate& Candidate = CandidateSet.back();
|
|
|
|
Candidate.Function = 0;
|
|
|
|
Candidate.Surrogate = Conversion;
|
|
|
|
Candidate.Viable = true;
|
|
|
|
Candidate.IsSurrogate = true;
|
2008-12-22 13:46:06 +08:00
|
|
|
Candidate.IgnoreObjectArgument = false;
|
2008-11-20 06:57:39 +08:00
|
|
|
Candidate.Conversions.resize(NumArgs + 1);
|
|
|
|
|
|
|
|
// Determine the implicit conversion sequence for the implicit
|
|
|
|
// object parameter.
|
2009-09-09 23:08:12 +08:00
|
|
|
ImplicitConversionSequence ObjectInit
|
2009-12-03 12:06:58 +08:00
|
|
|
= TryObjectArgumentInitialization(ObjectType, Conversion, ActingContext);
|
2008-11-20 06:57:39 +08:00
|
|
|
if (ObjectInit.ConversionKind == ImplicitConversionSequence::BadConversion) {
|
|
|
|
Candidate.Viable = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The first conversion is actually a user-defined conversion whose
|
|
|
|
// first conversion is ObjectInit's standard conversion (which is
|
|
|
|
// effectively a reference binding). Record it as such.
|
2009-09-09 23:08:12 +08:00
|
|
|
Candidate.Conversions[0].ConversionKind
|
2008-11-20 06:57:39 +08:00
|
|
|
= ImplicitConversionSequence::UserDefinedConversion;
|
|
|
|
Candidate.Conversions[0].UserDefined.Before = ObjectInit.Standard;
|
2009-11-06 08:23:08 +08:00
|
|
|
Candidate.Conversions[0].UserDefined.EllipsisConversion = false;
|
2008-11-20 06:57:39 +08:00
|
|
|
Candidate.Conversions[0].UserDefined.ConversionFunction = Conversion;
|
2009-09-09 23:08:12 +08:00
|
|
|
Candidate.Conversions[0].UserDefined.After
|
2008-11-20 06:57:39 +08:00
|
|
|
= Candidate.Conversions[0].UserDefined.Before;
|
|
|
|
Candidate.Conversions[0].UserDefined.After.setAsIdentityConversion();
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
// Find the
|
2008-11-20 06:57:39 +08:00
|
|
|
unsigned NumArgsInProto = Proto->getNumArgs();
|
|
|
|
|
|
|
|
// (C++ 13.3.2p2): A candidate function having fewer than m
|
|
|
|
// parameters is viable only if it has an ellipsis in its parameter
|
|
|
|
// list (8.3.5).
|
|
|
|
if (NumArgs > NumArgsInProto && !Proto->isVariadic()) {
|
|
|
|
Candidate.Viable = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Function types don't have any default arguments, so just check if
|
|
|
|
// we have enough arguments.
|
|
|
|
if (NumArgs < NumArgsInProto) {
|
|
|
|
// Not enough arguments.
|
|
|
|
Candidate.Viable = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Determine the implicit conversion sequences for each of the
|
|
|
|
// arguments.
|
|
|
|
for (unsigned ArgIdx = 0; ArgIdx < NumArgs; ++ArgIdx) {
|
|
|
|
if (ArgIdx < NumArgsInProto) {
|
|
|
|
// (C++ 13.3.2p3): for F to be a viable function, there shall
|
|
|
|
// exist for each argument an implicit conversion sequence
|
|
|
|
// (13.3.3.1) that converts that argument to the corresponding
|
|
|
|
// parameter of F.
|
|
|
|
QualType ParamType = Proto->getArgType(ArgIdx);
|
2009-09-09 23:08:12 +08:00
|
|
|
Candidate.Conversions[ArgIdx + 1]
|
|
|
|
= TryCopyInitialization(Args[ArgIdx], ParamType,
|
2009-08-28 01:18:13 +08:00
|
|
|
/*SuppressUserConversions=*/false,
|
2009-08-28 01:37:39 +08:00
|
|
|
/*ForceRValue=*/false,
|
|
|
|
/*InOverloadResolution=*/false);
|
2009-09-09 23:08:12 +08:00
|
|
|
if (Candidate.Conversions[ArgIdx + 1].ConversionKind
|
2008-11-20 06:57:39 +08:00
|
|
|
== ImplicitConversionSequence::BadConversion) {
|
|
|
|
Candidate.Viable = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// (C++ 13.3.2p2): For the purposes of overload resolution, any
|
|
|
|
// argument for which there is no corresponding parameter is
|
|
|
|
// considered to ""match the ellipsis" (C+ 13.3.3.1.3).
|
2009-09-09 23:08:12 +08:00
|
|
|
Candidate.Conversions[ArgIdx + 1].ConversionKind
|
2008-11-20 06:57:39 +08:00
|
|
|
= ImplicitConversionSequence::EllipsisConversion;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-16 15:39:55 +08:00
|
|
|
// FIXME: This will eventually be removed, once we've migrated all of the
|
|
|
|
// operator overloading logic over to the scheme used by binary operators, which
|
|
|
|
// works for template instantiation.
|
2009-03-14 02:40:31 +08:00
|
|
|
void Sema::AddOperatorCandidates(OverloadedOperatorKind Op, Scope *S,
|
2009-02-05 00:44:47 +08:00
|
|
|
SourceLocation OpLoc,
|
2008-11-19 07:14:02 +08:00
|
|
|
Expr **Args, unsigned NumArgs,
|
2009-02-05 00:44:47 +08:00
|
|
|
OverloadCandidateSet& CandidateSet,
|
|
|
|
SourceRange OpRange) {
|
2009-03-14 02:40:31 +08:00
|
|
|
FunctionSet Functions;
|
|
|
|
|
|
|
|
QualType T1 = Args[0]->getType();
|
|
|
|
QualType T2;
|
|
|
|
if (NumArgs > 1)
|
|
|
|
T2 = Args[1]->getType();
|
|
|
|
|
|
|
|
DeclarationName OpName = Context.DeclarationNames.getCXXOperatorName(Op);
|
2009-05-19 08:01:19 +08:00
|
|
|
if (S)
|
|
|
|
LookupOverloadedOperatorName(Op, S, T1, T2, Functions);
|
2009-10-24 03:23:15 +08:00
|
|
|
ArgumentDependentLookup(OpName, /*Operator*/true, Args, NumArgs, Functions);
|
2009-03-14 02:40:31 +08:00
|
|
|
AddFunctionCandidates(Functions, Args, NumArgs, CandidateSet);
|
|
|
|
AddMemberOperatorCandidates(Op, OpLoc, Args, NumArgs, CandidateSet, OpRange);
|
2009-10-22 07:19:44 +08:00
|
|
|
AddBuiltinOperatorCandidates(Op, OpLoc, Args, NumArgs, CandidateSet);
|
2009-03-14 02:40:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// \brief Add overload candidates for overloaded operators that are
|
|
|
|
/// member functions.
|
|
|
|
///
|
|
|
|
/// Add the overloaded operator candidates that are member functions
|
|
|
|
/// for the operator Op that was used in an operator expression such
|
|
|
|
/// as "x Op y". , Args/NumArgs provides the operator arguments, and
|
|
|
|
/// CandidateSet will store the added overload candidates. (C++
|
|
|
|
/// [over.match.oper]).
|
|
|
|
void Sema::AddMemberOperatorCandidates(OverloadedOperatorKind Op,
|
|
|
|
SourceLocation OpLoc,
|
|
|
|
Expr **Args, unsigned NumArgs,
|
|
|
|
OverloadCandidateSet& CandidateSet,
|
|
|
|
SourceRange OpRange) {
|
2008-11-19 07:14:02 +08:00
|
|
|
DeclarationName OpName = Context.DeclarationNames.getCXXOperatorName(Op);
|
|
|
|
|
|
|
|
// C++ [over.match.oper]p3:
|
|
|
|
// For a unary operator @ with an operand of a type whose
|
|
|
|
// cv-unqualified version is T1, and for a binary operator @ with
|
|
|
|
// a left operand of a type whose cv-unqualified version is T1 and
|
|
|
|
// a right operand of a type whose cv-unqualified version is T2,
|
|
|
|
// three sets of candidate functions, designated member
|
|
|
|
// candidates, non-member candidates and built-in candidates, are
|
|
|
|
// constructed as follows:
|
|
|
|
QualType T1 = Args[0]->getType();
|
|
|
|
QualType T2;
|
|
|
|
if (NumArgs > 1)
|
|
|
|
T2 = Args[1]->getType();
|
|
|
|
|
|
|
|
// -- If T1 is a class type, the set of member candidates is the
|
|
|
|
// result of the qualified lookup of T1::operator@
|
|
|
|
// (13.3.1.1.1); otherwise, the set of member candidates is
|
|
|
|
// empty.
|
2009-07-30 05:53:49 +08:00
|
|
|
if (const RecordType *T1Rec = T1->getAs<RecordType>()) {
|
2009-08-28 07:35:55 +08:00
|
|
|
// Complete the type if it can be completed. Otherwise, we're done.
|
2009-10-10 07:51:55 +08:00
|
|
|
if (RequireCompleteType(OpLoc, T1, PDiag()))
|
2009-08-28 07:35:55 +08:00
|
|
|
return;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-11-17 10:14:36 +08:00
|
|
|
LookupResult Operators(*this, OpName, OpLoc, LookupOrdinaryName);
|
|
|
|
LookupQualifiedName(Operators, T1Rec->getDecl());
|
|
|
|
Operators.suppressDiagnostics();
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
for (LookupResult::iterator Oper = Operators.begin(),
|
2009-08-28 07:35:55 +08:00
|
|
|
OperEnd = Operators.end();
|
|
|
|
Oper != OperEnd;
|
2009-11-17 15:50:12 +08:00
|
|
|
++Oper)
|
2009-12-03 12:06:58 +08:00
|
|
|
AddMethodCandidate(*Oper, Args[0]->getType(),
|
|
|
|
Args + 1, NumArgs - 1, CandidateSet,
|
2009-11-17 15:50:12 +08:00
|
|
|
/* SuppressUserConversions = */ false);
|
2008-11-19 07:14:02 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
/// AddBuiltinCandidate - Add a candidate for a built-in
|
|
|
|
/// operator. ResultTy and ParamTys are the result and parameter types
|
|
|
|
/// of the built-in candidate, respectively. Args and NumArgs are the
|
2009-01-13 08:52:54 +08:00
|
|
|
/// arguments being passed to the candidate. IsAssignmentOperator
|
|
|
|
/// should be true when this built-in candidate is an assignment
|
2009-01-14 23:45:31 +08:00
|
|
|
/// operator. NumContextualBoolArguments is the number of arguments
|
|
|
|
/// (at the beginning of the argument list) that will be contextually
|
|
|
|
/// converted to bool.
|
2009-09-09 23:08:12 +08:00
|
|
|
void Sema::AddBuiltinCandidate(QualType ResultTy, QualType *ParamTys,
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
Expr **Args, unsigned NumArgs,
|
2009-01-13 08:52:54 +08:00
|
|
|
OverloadCandidateSet& CandidateSet,
|
2009-01-14 23:45:31 +08:00
|
|
|
bool IsAssignmentOperator,
|
|
|
|
unsigned NumContextualBoolArguments) {
|
2009-11-23 20:27:39 +08:00
|
|
|
// Overload resolution is always an unevaluated context.
|
|
|
|
EnterExpressionEvaluationContext Unevaluated(*this, Action::Unevaluated);
|
|
|
|
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
// Add this candidate
|
|
|
|
CandidateSet.push_back(OverloadCandidate());
|
|
|
|
OverloadCandidate& Candidate = CandidateSet.back();
|
|
|
|
Candidate.Function = 0;
|
2008-12-12 10:00:36 +08:00
|
|
|
Candidate.IsSurrogate = false;
|
2008-12-22 13:46:06 +08:00
|
|
|
Candidate.IgnoreObjectArgument = false;
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
Candidate.BuiltinTypes.ResultTy = ResultTy;
|
|
|
|
for (unsigned ArgIdx = 0; ArgIdx < NumArgs; ++ArgIdx)
|
|
|
|
Candidate.BuiltinTypes.ParamTypes[ArgIdx] = ParamTys[ArgIdx];
|
|
|
|
|
|
|
|
// Determine the implicit conversion sequences for each of the
|
|
|
|
// arguments.
|
|
|
|
Candidate.Viable = true;
|
|
|
|
Candidate.Conversions.resize(NumArgs);
|
|
|
|
for (unsigned ArgIdx = 0; ArgIdx < NumArgs; ++ArgIdx) {
|
2009-01-13 08:52:54 +08:00
|
|
|
// C++ [over.match.oper]p4:
|
|
|
|
// For the built-in assignment operators, conversions of the
|
|
|
|
// left operand are restricted as follows:
|
|
|
|
// -- no temporaries are introduced to hold the left operand, and
|
|
|
|
// -- no user-defined conversions are applied to the left
|
|
|
|
// operand to achieve a type match with the left-most
|
2009-09-09 23:08:12 +08:00
|
|
|
// parameter of a built-in candidate.
|
2009-01-13 08:52:54 +08:00
|
|
|
//
|
|
|
|
// We block these conversions by turning off user-defined
|
|
|
|
// conversions, since that is the only way that initialization of
|
|
|
|
// a reference to a non-class type can occur from something that
|
|
|
|
// is not of the same type.
|
2009-01-14 23:45:31 +08:00
|
|
|
if (ArgIdx < NumContextualBoolArguments) {
|
2009-09-09 23:08:12 +08:00
|
|
|
assert(ParamTys[ArgIdx] == Context.BoolTy &&
|
2009-01-14 23:45:31 +08:00
|
|
|
"Contextual conversion to bool requires bool type");
|
|
|
|
Candidate.Conversions[ArgIdx] = TryContextuallyConvertToBool(Args[ArgIdx]);
|
|
|
|
} else {
|
2009-09-09 23:08:12 +08:00
|
|
|
Candidate.Conversions[ArgIdx]
|
|
|
|
= TryCopyInitialization(Args[ArgIdx], ParamTys[ArgIdx],
|
2009-08-28 01:18:13 +08:00
|
|
|
ArgIdx == 0 && IsAssignmentOperator,
|
2009-08-28 01:37:39 +08:00
|
|
|
/*ForceRValue=*/false,
|
|
|
|
/*InOverloadResolution=*/false);
|
2009-01-14 23:45:31 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
if (Candidate.Conversions[ArgIdx].ConversionKind
|
2008-11-19 07:14:02 +08:00
|
|
|
== ImplicitConversionSequence::BadConversion) {
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
Candidate.Viable = false;
|
2008-11-19 07:14:02 +08:00
|
|
|
break;
|
|
|
|
}
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// BuiltinCandidateTypeSet - A set of types that will be used for the
|
|
|
|
/// candidate operator functions for built-in operators (C++
|
|
|
|
/// [over.built]). The types are separated into pointer types and
|
|
|
|
/// enumeration types.
|
|
|
|
class BuiltinCandidateTypeSet {
|
|
|
|
/// TypeSet - A set of types.
|
2009-03-29 08:04:01 +08:00
|
|
|
typedef llvm::SmallPtrSet<QualType, 8> TypeSet;
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
|
|
|
|
/// PointerTypes - The set of pointer types that will be used in the
|
|
|
|
/// built-in candidates.
|
|
|
|
TypeSet PointerTypes;
|
|
|
|
|
2009-04-20 05:53:20 +08:00
|
|
|
/// MemberPointerTypes - The set of member pointer types that will be
|
|
|
|
/// used in the built-in candidates.
|
|
|
|
TypeSet MemberPointerTypes;
|
|
|
|
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
/// EnumerationTypes - The set of enumeration types that will be
|
|
|
|
/// used in the built-in candidates.
|
|
|
|
TypeSet EnumerationTypes;
|
|
|
|
|
2009-08-24 23:23:48 +08:00
|
|
|
/// Sema - The semantic analysis instance where we are building the
|
|
|
|
/// candidate type set.
|
|
|
|
Sema &SemaRef;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
/// Context - The AST context in which we will build the type sets.
|
|
|
|
ASTContext &Context;
|
|
|
|
|
2009-10-17 06:08:05 +08:00
|
|
|
bool AddPointerWithMoreQualifiedTypeVariants(QualType Ty,
|
|
|
|
const Qualifiers &VisibleQuals);
|
2009-04-20 05:53:20 +08:00
|
|
|
bool AddMemberPointerWithMoreQualifiedTypeVariants(QualType Ty);
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
|
|
|
|
public:
|
|
|
|
/// iterator - Iterates through the types that are part of the set.
|
2009-03-29 08:04:01 +08:00
|
|
|
typedef TypeSet::iterator iterator;
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
BuiltinCandidateTypeSet(Sema &SemaRef)
|
2009-08-24 23:23:48 +08:00
|
|
|
: SemaRef(SemaRef), Context(SemaRef.Context) { }
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
|
2009-10-22 07:19:44 +08:00
|
|
|
void AddTypesConvertedFrom(QualType Ty,
|
|
|
|
SourceLocation Loc,
|
|
|
|
bool AllowUserConversions,
|
2009-10-16 01:14:05 +08:00
|
|
|
bool AllowExplicitConversions,
|
|
|
|
const Qualifiers &VisibleTypeConversionsQuals);
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
|
|
|
|
/// pointer_begin - First pointer type found;
|
|
|
|
iterator pointer_begin() { return PointerTypes.begin(); }
|
|
|
|
|
2009-04-20 05:53:20 +08:00
|
|
|
/// pointer_end - Past the last pointer type found;
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
iterator pointer_end() { return PointerTypes.end(); }
|
|
|
|
|
2009-04-20 05:53:20 +08:00
|
|
|
/// member_pointer_begin - First member pointer type found;
|
|
|
|
iterator member_pointer_begin() { return MemberPointerTypes.begin(); }
|
|
|
|
|
|
|
|
/// member_pointer_end - Past the last member pointer type found;
|
|
|
|
iterator member_pointer_end() { return MemberPointerTypes.end(); }
|
|
|
|
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
/// enumeration_begin - First enumeration type found;
|
|
|
|
iterator enumeration_begin() { return EnumerationTypes.begin(); }
|
|
|
|
|
2009-04-20 05:53:20 +08:00
|
|
|
/// enumeration_end - Past the last enumeration type found;
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
iterator enumeration_end() { return EnumerationTypes.end(); }
|
|
|
|
};
|
|
|
|
|
2009-04-20 05:53:20 +08:00
|
|
|
/// AddPointerWithMoreQualifiedTypeVariants - Add the pointer type @p Ty to
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
/// the set of pointer types along with any more-qualified variants of
|
|
|
|
/// that type. For example, if @p Ty is "int const *", this routine
|
|
|
|
/// will add "int const *", "int const volatile *", "int const
|
|
|
|
/// restrict *", and "int const volatile restrict *" to the set of
|
|
|
|
/// pointer types. Returns true if the add of @p Ty itself succeeded,
|
|
|
|
/// false otherwise.
|
2009-09-25 03:53:00 +08:00
|
|
|
///
|
|
|
|
/// FIXME: what to do about extended qualifiers?
|
2009-04-20 05:53:20 +08:00
|
|
|
bool
|
2009-10-22 07:19:44 +08:00
|
|
|
BuiltinCandidateTypeSet::AddPointerWithMoreQualifiedTypeVariants(QualType Ty,
|
|
|
|
const Qualifiers &VisibleQuals) {
|
2009-09-25 03:53:00 +08:00
|
|
|
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
// Insert this type.
|
2009-03-29 08:04:01 +08:00
|
|
|
if (!PointerTypes.insert(Ty))
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
return false;
|
|
|
|
|
2009-09-25 03:53:00 +08:00
|
|
|
const PointerType *PointerTy = Ty->getAs<PointerType>();
|
|
|
|
assert(PointerTy && "type was not a pointer type!");
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
|
2009-09-25 03:53:00 +08:00
|
|
|
QualType PointeeTy = PointerTy->getPointeeType();
|
2009-11-19 04:39:26 +08:00
|
|
|
// Don't add qualified variants of arrays. For one, they're not allowed
|
|
|
|
// (the qualifier would sink to the element type), and for another, the
|
|
|
|
// only overload situation where it matters is subscript or pointer +- int,
|
|
|
|
// and those shouldn't have qualifier variants anyway.
|
|
|
|
if (PointeeTy->isArrayType())
|
|
|
|
return true;
|
2009-09-25 03:53:00 +08:00
|
|
|
unsigned BaseCVR = PointeeTy.getCVRQualifiers();
|
2009-11-10 06:08:55 +08:00
|
|
|
if (const ConstantArrayType *Array =Context.getAsConstantArrayType(PointeeTy))
|
2009-11-10 05:02:05 +08:00
|
|
|
BaseCVR = Array->getElementType().getCVRQualifiers();
|
2009-10-17 06:08:05 +08:00
|
|
|
bool hasVolatile = VisibleQuals.hasVolatile();
|
|
|
|
bool hasRestrict = VisibleQuals.hasRestrict();
|
|
|
|
|
2009-09-25 03:53:00 +08:00
|
|
|
// Iterate through all strict supersets of BaseCVR.
|
|
|
|
for (unsigned CVR = BaseCVR+1; CVR <= Qualifiers::CVRMask; ++CVR) {
|
|
|
|
if ((CVR | BaseCVR) != CVR) continue;
|
2009-10-17 06:08:05 +08:00
|
|
|
// Skip over Volatile/Restrict if no Volatile/Restrict found anywhere
|
|
|
|
// in the types.
|
|
|
|
if ((CVR & Qualifiers::Volatile) && !hasVolatile) continue;
|
|
|
|
if ((CVR & Qualifiers::Restrict) && !hasRestrict) continue;
|
2009-09-25 03:53:00 +08:00
|
|
|
QualType QPointeeTy = Context.getCVRQualifiedType(PointeeTy, CVR);
|
|
|
|
PointerTypes.insert(Context.getPointerType(QPointeeTy));
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-04-20 05:53:20 +08:00
|
|
|
/// AddMemberPointerWithMoreQualifiedTypeVariants - Add the pointer type @p Ty
|
|
|
|
/// to the set of pointer types along with any more-qualified variants of
|
|
|
|
/// that type. For example, if @p Ty is "int const *", this routine
|
|
|
|
/// will add "int const *", "int const volatile *", "int const
|
|
|
|
/// restrict *", and "int const volatile restrict *" to the set of
|
|
|
|
/// pointer types. Returns true if the add of @p Ty itself succeeded,
|
|
|
|
/// false otherwise.
|
2009-09-25 03:53:00 +08:00
|
|
|
///
|
|
|
|
/// FIXME: what to do about extended qualifiers?
|
2009-04-20 05:53:20 +08:00
|
|
|
bool
|
|
|
|
BuiltinCandidateTypeSet::AddMemberPointerWithMoreQualifiedTypeVariants(
|
|
|
|
QualType Ty) {
|
|
|
|
// Insert this type.
|
|
|
|
if (!MemberPointerTypes.insert(Ty))
|
|
|
|
return false;
|
|
|
|
|
2009-09-25 03:53:00 +08:00
|
|
|
const MemberPointerType *PointerTy = Ty->getAs<MemberPointerType>();
|
|
|
|
assert(PointerTy && "type was not a member pointer type!");
|
|
|
|
|
|
|
|
QualType PointeeTy = PointerTy->getPointeeType();
|
2009-11-19 04:39:26 +08:00
|
|
|
// Don't add qualified variants of arrays. For one, they're not allowed
|
|
|
|
// (the qualifier would sink to the element type), and for another, the
|
|
|
|
// only overload situation where it matters is subscript or pointer +- int,
|
|
|
|
// and those shouldn't have qualifier variants anyway.
|
|
|
|
if (PointeeTy->isArrayType())
|
|
|
|
return true;
|
2009-09-25 03:53:00 +08:00
|
|
|
const Type *ClassTy = PointerTy->getClass();
|
2009-04-20 05:53:20 +08:00
|
|
|
|
2009-09-25 03:53:00 +08:00
|
|
|
// Iterate through all strict supersets of the pointee type's CVR
|
|
|
|
// qualifiers.
|
|
|
|
unsigned BaseCVR = PointeeTy.getCVRQualifiers();
|
|
|
|
for (unsigned CVR = BaseCVR+1; CVR <= Qualifiers::CVRMask; ++CVR) {
|
|
|
|
if ((CVR | BaseCVR) != CVR) continue;
|
|
|
|
|
|
|
|
QualType QPointeeTy = Context.getCVRQualifiedType(PointeeTy, CVR);
|
|
|
|
MemberPointerTypes.insert(Context.getMemberPointerType(QPointeeTy, ClassTy));
|
2009-04-20 05:53:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
/// AddTypesConvertedFrom - Add each of the types to which the type @p
|
|
|
|
/// Ty can be implicit converted to the given set of @p Types. We're
|
2009-04-20 05:53:20 +08:00
|
|
|
/// primarily interested in pointer types and enumeration types. We also
|
|
|
|
/// take member pointer types, for the conditional operator.
|
2009-01-14 23:45:31 +08:00
|
|
|
/// AllowUserConversions is true if we should look at the conversion
|
|
|
|
/// functions of a class type, and AllowExplicitConversions if we
|
|
|
|
/// should also include the explicit conversion functions of a class
|
|
|
|
/// type.
|
2009-09-09 23:08:12 +08:00
|
|
|
void
|
2009-01-14 23:45:31 +08:00
|
|
|
BuiltinCandidateTypeSet::AddTypesConvertedFrom(QualType Ty,
|
2009-10-22 07:19:44 +08:00
|
|
|
SourceLocation Loc,
|
2009-01-14 23:45:31 +08:00
|
|
|
bool AllowUserConversions,
|
2009-10-16 01:14:05 +08:00
|
|
|
bool AllowExplicitConversions,
|
|
|
|
const Qualifiers &VisibleQuals) {
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
// Only deal with canonical types.
|
|
|
|
Ty = Context.getCanonicalType(Ty);
|
|
|
|
|
|
|
|
// Look through reference types; they aren't part of the type of an
|
|
|
|
// expression for the purposes of conversions.
|
2009-07-30 05:53:49 +08:00
|
|
|
if (const ReferenceType *RefTy = Ty->getAs<ReferenceType>())
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
Ty = RefTy->getPointeeType();
|
|
|
|
|
|
|
|
// We don't care about qualifiers on the type.
|
First part of changes to eliminate problems with cv-qualifiers and
sugared types. The basic problem is that our qualifier accessors
(getQualifiers, getCVRQualifiers, isConstQualified, etc.) only look at
the current QualType and not at any qualifiers that come from sugared
types, meaning that we won't see these qualifiers through, e.g.,
typedefs:
typedef const int CInt;
typedef CInt Self;
Self.isConstQualified() currently returns false!
Various bugs (e.g., PR5383) have cropped up all over the front end due
to such problems. I'm addressing this problem by splitting each
qualifier accessor into two versions:
- the "local" version only returns qualifiers on this particular
QualType instance
- the "normal" version that will eventually combine qualifiers from this
QualType instance with the qualifiers on the canonical type to
produce the full set of qualifiers.
This commit adds the local versions and switches a few callers from
the "normal" version (e.g., isConstQualified) over to the "local"
version (e.g., isLocalConstQualified) when that is the right thing to
do, e.g., because we're printing or serializing the qualifiers. Also,
switch a bunch of
Context.getCanonicalType(T1).getUnqualifiedType() == Context.getCanonicalType(T2).getQualifiedType()
expressions over to
Context.hasSameUnqualifiedType(T1, T2)
llvm-svn: 88969
2009-11-17 05:35:15 +08:00
|
|
|
Ty = Ty.getLocalUnqualifiedType();
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
|
2009-11-06 00:36:20 +08:00
|
|
|
// If we're dealing with an array type, decay to the pointer.
|
|
|
|
if (Ty->isArrayType())
|
|
|
|
Ty = SemaRef.Context.getArrayDecayedType(Ty);
|
|
|
|
|
2009-07-30 05:53:49 +08:00
|
|
|
if (const PointerType *PointerTy = Ty->getAs<PointerType>()) {
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
QualType PointeeTy = PointerTy->getPointeeType();
|
|
|
|
|
|
|
|
// Insert our type, and its more-qualified variants, into the set
|
|
|
|
// of types.
|
2009-10-17 06:08:05 +08:00
|
|
|
if (!AddPointerWithMoreQualifiedTypeVariants(Ty, VisibleQuals))
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
return;
|
2009-04-20 05:53:20 +08:00
|
|
|
} else if (Ty->isMemberPointerType()) {
|
|
|
|
// Member pointers are far easier, since the pointee can't be converted.
|
|
|
|
if (!AddMemberPointerWithMoreQualifiedTypeVariants(Ty))
|
|
|
|
return;
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
} else if (Ty->isEnumeralType()) {
|
2009-03-29 08:04:01 +08:00
|
|
|
EnumerationTypes.insert(Ty);
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
} else if (AllowUserConversions) {
|
2009-07-30 05:53:49 +08:00
|
|
|
if (const RecordType *TyRec = Ty->getAs<RecordType>()) {
|
2009-10-22 07:19:44 +08:00
|
|
|
if (SemaRef.RequireCompleteType(Loc, Ty, 0)) {
|
2009-08-24 23:23:48 +08:00
|
|
|
// No conversion functions in incomplete types.
|
|
|
|
return;
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(TyRec->getDecl());
|
2009-11-21 16:51:07 +08:00
|
|
|
const UnresolvedSet *Conversions
|
2009-10-08 01:26:09 +08:00
|
|
|
= ClassDecl->getVisibleConversionFunctions();
|
2009-11-21 16:51:07 +08:00
|
|
|
for (UnresolvedSet::iterator I = Conversions->begin(),
|
|
|
|
E = Conversions->end(); I != E; ++I) {
|
2009-08-22 07:19:43 +08:00
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
// Skip conversion function templates; they don't tell us anything
|
2009-08-22 07:19:43 +08:00
|
|
|
// about which builtin types we can convert to.
|
2009-11-21 16:51:07 +08:00
|
|
|
if (isa<FunctionTemplateDecl>(*I))
|
2009-08-22 07:19:43 +08:00
|
|
|
continue;
|
|
|
|
|
2009-11-21 16:51:07 +08:00
|
|
|
CXXConversionDecl *Conv = cast<CXXConversionDecl>(*I);
|
2009-10-16 01:14:05 +08:00
|
|
|
if (AllowExplicitConversions || !Conv->isExplicit()) {
|
2009-10-22 07:19:44 +08:00
|
|
|
AddTypesConvertedFrom(Conv->getConversionType(), Loc, false, false,
|
2009-10-16 01:14:05 +08:00
|
|
|
VisibleQuals);
|
|
|
|
}
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-24 21:43:27 +08:00
|
|
|
/// \brief Helper function for AddBuiltinOperatorCandidates() that adds
|
|
|
|
/// the volatile- and non-volatile-qualified assignment operators for the
|
|
|
|
/// given type to the candidate set.
|
|
|
|
static void AddBuiltinAssignmentOperatorCandidates(Sema &S,
|
|
|
|
QualType T,
|
2009-09-09 23:08:12 +08:00
|
|
|
Expr **Args,
|
2009-08-24 21:43:27 +08:00
|
|
|
unsigned NumArgs,
|
|
|
|
OverloadCandidateSet &CandidateSet) {
|
|
|
|
QualType ParamTypes[2];
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-24 21:43:27 +08:00
|
|
|
// T& operator=(T&, T)
|
|
|
|
ParamTypes[0] = S.Context.getLValueReferenceType(T);
|
|
|
|
ParamTypes[1] = T;
|
|
|
|
S.AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, 2, CandidateSet,
|
|
|
|
/*IsAssignmentOperator=*/true);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-24 21:43:27 +08:00
|
|
|
if (!S.Context.getCanonicalType(T).isVolatileQualified()) {
|
|
|
|
// volatile T& operator=(volatile T&, T)
|
2009-09-25 03:53:00 +08:00
|
|
|
ParamTypes[0]
|
|
|
|
= S.Context.getLValueReferenceType(S.Context.getVolatileType(T));
|
2009-08-24 21:43:27 +08:00
|
|
|
ParamTypes[1] = T;
|
|
|
|
S.AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, 2, CandidateSet,
|
2009-09-09 23:08:12 +08:00
|
|
|
/*IsAssignmentOperator=*/true);
|
2009-08-24 21:43:27 +08:00
|
|
|
}
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-10-26 01:03:50 +08:00
|
|
|
/// CollectVRQualifiers - This routine returns Volatile/Restrict qualifiers,
|
|
|
|
/// if any, found in visible type conversion functions found in ArgExpr's type.
|
2009-10-16 01:14:05 +08:00
|
|
|
static Qualifiers CollectVRQualifiers(ASTContext &Context, Expr* ArgExpr) {
|
|
|
|
Qualifiers VRQuals;
|
|
|
|
const RecordType *TyRec;
|
|
|
|
if (const MemberPointerType *RHSMPType =
|
|
|
|
ArgExpr->getType()->getAs<MemberPointerType>())
|
|
|
|
TyRec = cast<RecordType>(RHSMPType->getClass());
|
|
|
|
else
|
|
|
|
TyRec = ArgExpr->getType()->getAs<RecordType>();
|
|
|
|
if (!TyRec) {
|
2009-10-17 06:08:05 +08:00
|
|
|
// Just to be safe, assume the worst case.
|
2009-10-16 01:14:05 +08:00
|
|
|
VRQuals.addVolatile();
|
|
|
|
VRQuals.addRestrict();
|
|
|
|
return VRQuals;
|
|
|
|
}
|
|
|
|
|
|
|
|
CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(TyRec->getDecl());
|
2009-11-21 16:51:07 +08:00
|
|
|
const UnresolvedSet *Conversions =
|
2009-10-26 01:03:50 +08:00
|
|
|
ClassDecl->getVisibleConversionFunctions();
|
2009-10-16 01:14:05 +08:00
|
|
|
|
2009-11-21 16:51:07 +08:00
|
|
|
for (UnresolvedSet::iterator I = Conversions->begin(),
|
|
|
|
E = Conversions->end(); I != E; ++I) {
|
|
|
|
if (CXXConversionDecl *Conv = dyn_cast<CXXConversionDecl>(*I)) {
|
2009-10-16 01:14:05 +08:00
|
|
|
QualType CanTy = Context.getCanonicalType(Conv->getConversionType());
|
|
|
|
if (const ReferenceType *ResTypeRef = CanTy->getAs<ReferenceType>())
|
|
|
|
CanTy = ResTypeRef->getPointeeType();
|
|
|
|
// Need to go down the pointer/mempointer chain and add qualifiers
|
|
|
|
// as see them.
|
|
|
|
bool done = false;
|
|
|
|
while (!done) {
|
|
|
|
if (const PointerType *ResTypePtr = CanTy->getAs<PointerType>())
|
|
|
|
CanTy = ResTypePtr->getPointeeType();
|
|
|
|
else if (const MemberPointerType *ResTypeMPtr =
|
|
|
|
CanTy->getAs<MemberPointerType>())
|
|
|
|
CanTy = ResTypeMPtr->getPointeeType();
|
|
|
|
else
|
|
|
|
done = true;
|
|
|
|
if (CanTy.isVolatileQualified())
|
|
|
|
VRQuals.addVolatile();
|
|
|
|
if (CanTy.isRestrictQualified())
|
|
|
|
VRQuals.addRestrict();
|
|
|
|
if (VRQuals.hasRestrict() && VRQuals.hasVolatile())
|
|
|
|
return VRQuals;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return VRQuals;
|
|
|
|
}
|
|
|
|
|
2008-11-19 23:42:04 +08:00
|
|
|
/// AddBuiltinOperatorCandidates - Add the appropriate built-in
|
|
|
|
/// operator overloads to the candidate set (C++ [over.built]), based
|
|
|
|
/// on the operator @p Op and the arguments given. For example, if the
|
|
|
|
/// operator is a binary '+', this routine might add "int
|
|
|
|
/// operator+(int, int)" to cover integer addition.
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
void
|
2009-09-09 23:08:12 +08:00
|
|
|
Sema::AddBuiltinOperatorCandidates(OverloadedOperatorKind Op,
|
2009-10-22 07:19:44 +08:00
|
|
|
SourceLocation OpLoc,
|
2008-11-19 23:42:04 +08:00
|
|
|
Expr **Args, unsigned NumArgs,
|
|
|
|
OverloadCandidateSet& CandidateSet) {
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
// The set of "promoted arithmetic types", which are the arithmetic
|
|
|
|
// types are that preserved by promotion (C++ [over.built]p2). Note
|
|
|
|
// that the first few of these types are the promoted integral
|
|
|
|
// types; these types need to be first.
|
|
|
|
// FIXME: What about complex?
|
|
|
|
const unsigned FirstIntegralType = 0;
|
|
|
|
const unsigned LastIntegralType = 13;
|
2009-09-09 23:08:12 +08:00
|
|
|
const unsigned FirstPromotedIntegralType = 7,
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
LastPromotedIntegralType = 13;
|
|
|
|
const unsigned FirstPromotedArithmeticType = 7,
|
|
|
|
LastPromotedArithmeticType = 16;
|
|
|
|
const unsigned NumArithmeticTypes = 16;
|
|
|
|
QualType ArithmeticTypes[NumArithmeticTypes] = {
|
2009-09-09 23:08:12 +08:00
|
|
|
Context.BoolTy, Context.CharTy, Context.WCharTy,
|
|
|
|
// FIXME: Context.Char16Ty, Context.Char32Ty,
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
Context.SignedCharTy, Context.ShortTy,
|
|
|
|
Context.UnsignedCharTy, Context.UnsignedShortTy,
|
|
|
|
Context.IntTy, Context.LongTy, Context.LongLongTy,
|
|
|
|
Context.UnsignedIntTy, Context.UnsignedLongTy, Context.UnsignedLongLongTy,
|
|
|
|
Context.FloatTy, Context.DoubleTy, Context.LongDoubleTy
|
|
|
|
};
|
2009-10-22 06:01:30 +08:00
|
|
|
assert(ArithmeticTypes[FirstPromotedIntegralType] == Context.IntTy &&
|
|
|
|
"Invalid first promoted integral type");
|
|
|
|
assert(ArithmeticTypes[LastPromotedIntegralType - 1]
|
|
|
|
== Context.UnsignedLongLongTy &&
|
|
|
|
"Invalid last promoted integral type");
|
|
|
|
assert(ArithmeticTypes[FirstPromotedArithmeticType] == Context.IntTy &&
|
|
|
|
"Invalid first promoted arithmetic type");
|
|
|
|
assert(ArithmeticTypes[LastPromotedArithmeticType - 1]
|
|
|
|
== Context.LongDoubleTy &&
|
|
|
|
"Invalid last promoted arithmetic type");
|
|
|
|
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
// Find all of the types that the arguments can convert to, but only
|
|
|
|
// if the operator we're looking at has built-in operator candidates
|
|
|
|
// that make use of these types.
|
2009-10-16 01:14:05 +08:00
|
|
|
Qualifiers VisibleTypeConversionsQuals;
|
|
|
|
VisibleTypeConversionsQuals.addConst();
|
2009-10-20 05:30:45 +08:00
|
|
|
for (unsigned ArgIdx = 0; ArgIdx < NumArgs; ++ArgIdx)
|
|
|
|
VisibleTypeConversionsQuals += CollectVRQualifiers(Context, Args[ArgIdx]);
|
|
|
|
|
2009-08-24 23:23:48 +08:00
|
|
|
BuiltinCandidateTypeSet CandidateTypes(*this);
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
if (Op == OO_Less || Op == OO_Greater || Op == OO_LessEqual ||
|
|
|
|
Op == OO_GreaterEqual || Op == OO_EqualEqual || Op == OO_ExclaimEqual ||
|
2008-11-19 23:42:04 +08:00
|
|
|
Op == OO_Plus || (Op == OO_Minus && NumArgs == 2) || Op == OO_Equal ||
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
Op == OO_PlusEqual || Op == OO_MinusEqual || Op == OO_Subscript ||
|
2008-11-19 23:42:04 +08:00
|
|
|
Op == OO_ArrowStar || Op == OO_PlusPlus || Op == OO_MinusMinus ||
|
2009-04-17 01:51:27 +08:00
|
|
|
(Op == OO_Star && NumArgs == 1) || Op == OO_Conditional) {
|
2008-11-19 23:42:04 +08:00
|
|
|
for (unsigned ArgIdx = 0; ArgIdx < NumArgs; ++ArgIdx)
|
2009-01-14 23:45:31 +08:00
|
|
|
CandidateTypes.AddTypesConvertedFrom(Args[ArgIdx]->getType(),
|
2009-10-22 07:19:44 +08:00
|
|
|
OpLoc,
|
2009-01-14 23:45:31 +08:00
|
|
|
true,
|
|
|
|
(Op == OO_Exclaim ||
|
|
|
|
Op == OO_AmpAmp ||
|
2009-10-16 01:14:05 +08:00
|
|
|
Op == OO_PipePipe),
|
|
|
|
VisibleTypeConversionsQuals);
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool isComparison = false;
|
|
|
|
switch (Op) {
|
|
|
|
case OO_None:
|
|
|
|
case NUM_OVERLOADED_OPERATORS:
|
|
|
|
assert(false && "Expected an overloaded operator");
|
|
|
|
break;
|
|
|
|
|
2008-11-19 23:42:04 +08:00
|
|
|
case OO_Star: // '*' is either unary or binary
|
2009-09-09 23:08:12 +08:00
|
|
|
if (NumArgs == 1)
|
2008-11-19 23:42:04 +08:00
|
|
|
goto UnaryStar;
|
|
|
|
else
|
|
|
|
goto BinaryStar;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OO_Plus: // '+' is either unary or binary
|
|
|
|
if (NumArgs == 1)
|
|
|
|
goto UnaryPlus;
|
|
|
|
else
|
|
|
|
goto BinaryPlus;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OO_Minus: // '-' is either unary or binary
|
|
|
|
if (NumArgs == 1)
|
|
|
|
goto UnaryMinus;
|
|
|
|
else
|
|
|
|
goto BinaryMinus;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OO_Amp: // '&' is either unary or binary
|
|
|
|
if (NumArgs == 1)
|
|
|
|
goto UnaryAmp;
|
|
|
|
else
|
|
|
|
goto BinaryAmp;
|
|
|
|
|
|
|
|
case OO_PlusPlus:
|
|
|
|
case OO_MinusMinus:
|
|
|
|
// C++ [over.built]p3:
|
|
|
|
//
|
|
|
|
// For every pair (T, VQ), where T is an arithmetic type, and VQ
|
|
|
|
// is either volatile or empty, there exist candidate operator
|
|
|
|
// functions of the form
|
|
|
|
//
|
|
|
|
// VQ T& operator++(VQ T&);
|
|
|
|
// T operator++(VQ T&, int);
|
|
|
|
//
|
|
|
|
// C++ [over.built]p4:
|
|
|
|
//
|
|
|
|
// For every pair (T, VQ), where T is an arithmetic type other
|
|
|
|
// than bool, and VQ is either volatile or empty, there exist
|
|
|
|
// candidate operator functions of the form
|
|
|
|
//
|
|
|
|
// VQ T& operator--(VQ T&);
|
|
|
|
// T operator--(VQ T&, int);
|
2009-09-09 23:08:12 +08:00
|
|
|
for (unsigned Arith = (Op == OO_PlusPlus? 0 : 1);
|
2008-11-19 23:42:04 +08:00
|
|
|
Arith < NumArithmeticTypes; ++Arith) {
|
|
|
|
QualType ArithTy = ArithmeticTypes[Arith];
|
2009-09-09 23:08:12 +08:00
|
|
|
QualType ParamTypes[2]
|
2009-03-17 07:22:08 +08:00
|
|
|
= { Context.getLValueReferenceType(ArithTy), Context.IntTy };
|
2008-11-19 23:42:04 +08:00
|
|
|
|
|
|
|
// Non-volatile version.
|
|
|
|
if (NumArgs == 1)
|
|
|
|
AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, 1, CandidateSet);
|
|
|
|
else
|
|
|
|
AddBuiltinCandidate(ArithTy, ParamTypes, Args, 2, CandidateSet);
|
2009-10-16 01:14:05 +08:00
|
|
|
// heuristic to reduce number of builtin candidates in the set.
|
|
|
|
// Add volatile version only if there are conversions to a volatile type.
|
|
|
|
if (VisibleTypeConversionsQuals.hasVolatile()) {
|
|
|
|
// Volatile version
|
|
|
|
ParamTypes[0]
|
|
|
|
= Context.getLValueReferenceType(Context.getVolatileType(ArithTy));
|
|
|
|
if (NumArgs == 1)
|
|
|
|
AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, 1, CandidateSet);
|
|
|
|
else
|
|
|
|
AddBuiltinCandidate(ArithTy, ParamTypes, Args, 2, CandidateSet);
|
|
|
|
}
|
2008-11-19 23:42:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// C++ [over.built]p5:
|
|
|
|
//
|
|
|
|
// For every pair (T, VQ), where T is a cv-qualified or
|
|
|
|
// cv-unqualified object type, and VQ is either volatile or
|
|
|
|
// empty, there exist candidate operator functions of the form
|
|
|
|
//
|
|
|
|
// T*VQ& operator++(T*VQ&);
|
|
|
|
// T*VQ& operator--(T*VQ&);
|
|
|
|
// T* operator++(T*VQ&, int);
|
|
|
|
// T* operator--(T*VQ&, int);
|
|
|
|
for (BuiltinCandidateTypeSet::iterator Ptr = CandidateTypes.pointer_begin();
|
|
|
|
Ptr != CandidateTypes.pointer_end(); ++Ptr) {
|
|
|
|
// Skip pointer types that aren't pointers to object types.
|
2009-07-30 05:53:49 +08:00
|
|
|
if (!(*Ptr)->getAs<PointerType>()->getPointeeType()->isObjectType())
|
2008-11-19 23:42:04 +08:00
|
|
|
continue;
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
QualType ParamTypes[2] = {
|
|
|
|
Context.getLValueReferenceType(*Ptr), Context.IntTy
|
2008-11-19 23:42:04 +08:00
|
|
|
};
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-11-19 23:42:04 +08:00
|
|
|
// Without volatile
|
|
|
|
if (NumArgs == 1)
|
|
|
|
AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, 1, CandidateSet);
|
|
|
|
else
|
|
|
|
AddBuiltinCandidate(*Ptr, ParamTypes, Args, 2, CandidateSet);
|
|
|
|
|
2009-10-16 01:14:05 +08:00
|
|
|
if (!Context.getCanonicalType(*Ptr).isVolatileQualified() &&
|
|
|
|
VisibleTypeConversionsQuals.hasVolatile()) {
|
2008-11-19 23:42:04 +08:00
|
|
|
// With volatile
|
2009-09-25 03:53:00 +08:00
|
|
|
ParamTypes[0]
|
|
|
|
= Context.getLValueReferenceType(Context.getVolatileType(*Ptr));
|
2008-11-19 23:42:04 +08:00
|
|
|
if (NumArgs == 1)
|
|
|
|
AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, 1, CandidateSet);
|
|
|
|
else
|
|
|
|
AddBuiltinCandidate(*Ptr, ParamTypes, Args, 2, CandidateSet);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
UnaryStar:
|
|
|
|
// C++ [over.built]p6:
|
|
|
|
// For every cv-qualified or cv-unqualified object type T, there
|
|
|
|
// exist candidate operator functions of the form
|
|
|
|
//
|
|
|
|
// T& operator*(T*);
|
|
|
|
//
|
|
|
|
// C++ [over.built]p7:
|
|
|
|
// For every function type T, there exist candidate operator
|
|
|
|
// functions of the form
|
|
|
|
// T& operator*(T*);
|
|
|
|
for (BuiltinCandidateTypeSet::iterator Ptr = CandidateTypes.pointer_begin();
|
|
|
|
Ptr != CandidateTypes.pointer_end(); ++Ptr) {
|
|
|
|
QualType ParamTy = *Ptr;
|
2009-07-30 05:53:49 +08:00
|
|
|
QualType PointeeTy = ParamTy->getAs<PointerType>()->getPointeeType();
|
2009-09-09 23:08:12 +08:00
|
|
|
AddBuiltinCandidate(Context.getLValueReferenceType(PointeeTy),
|
2008-11-19 23:42:04 +08:00
|
|
|
&ParamTy, Args, 1, CandidateSet);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
UnaryPlus:
|
|
|
|
// C++ [over.built]p8:
|
|
|
|
// For every type T, there exist candidate operator functions of
|
|
|
|
// the form
|
|
|
|
//
|
|
|
|
// T* operator+(T*);
|
|
|
|
for (BuiltinCandidateTypeSet::iterator Ptr = CandidateTypes.pointer_begin();
|
|
|
|
Ptr != CandidateTypes.pointer_end(); ++Ptr) {
|
|
|
|
QualType ParamTy = *Ptr;
|
|
|
|
AddBuiltinCandidate(ParamTy, &ParamTy, Args, 1, CandidateSet);
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-11-19 23:42:04 +08:00
|
|
|
// Fall through
|
|
|
|
|
|
|
|
UnaryMinus:
|
|
|
|
// C++ [over.built]p9:
|
|
|
|
// For every promoted arithmetic type T, there exist candidate
|
|
|
|
// operator functions of the form
|
|
|
|
//
|
|
|
|
// T operator+(T);
|
|
|
|
// T operator-(T);
|
2009-09-09 23:08:12 +08:00
|
|
|
for (unsigned Arith = FirstPromotedArithmeticType;
|
2008-11-19 23:42:04 +08:00
|
|
|
Arith < LastPromotedArithmeticType; ++Arith) {
|
|
|
|
QualType ArithTy = ArithmeticTypes[Arith];
|
|
|
|
AddBuiltinCandidate(ArithTy, &ArithTy, Args, 1, CandidateSet);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OO_Tilde:
|
|
|
|
// C++ [over.built]p10:
|
|
|
|
// For every promoted integral type T, there exist candidate
|
|
|
|
// operator functions of the form
|
|
|
|
//
|
|
|
|
// T operator~(T);
|
2009-09-09 23:08:12 +08:00
|
|
|
for (unsigned Int = FirstPromotedIntegralType;
|
2008-11-19 23:42:04 +08:00
|
|
|
Int < LastPromotedIntegralType; ++Int) {
|
|
|
|
QualType IntTy = ArithmeticTypes[Int];
|
|
|
|
AddBuiltinCandidate(IntTy, &IntTy, Args, 1, CandidateSet);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
case OO_New:
|
|
|
|
case OO_Delete:
|
|
|
|
case OO_Array_New:
|
|
|
|
case OO_Array_Delete:
|
|
|
|
case OO_Call:
|
2008-11-19 23:42:04 +08:00
|
|
|
assert(false && "Special operators don't use AddBuiltinOperatorCandidates");
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case OO_Comma:
|
2008-11-19 23:42:04 +08:00
|
|
|
UnaryAmp:
|
|
|
|
case OO_Arrow:
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
// C++ [over.match.oper]p3:
|
|
|
|
// -- For the operator ',', the unary operator '&', or the
|
|
|
|
// operator '->', the built-in candidates set is empty.
|
|
|
|
break;
|
|
|
|
|
2009-08-24 21:43:27 +08:00
|
|
|
case OO_EqualEqual:
|
|
|
|
case OO_ExclaimEqual:
|
|
|
|
// C++ [over.match.oper]p16:
|
2009-09-09 23:08:12 +08:00
|
|
|
// For every pointer to member type T, there exist candidate operator
|
|
|
|
// functions of the form
|
2009-08-24 21:43:27 +08:00
|
|
|
//
|
|
|
|
// bool operator==(T,T);
|
|
|
|
// bool operator!=(T,T);
|
2009-09-09 23:08:12 +08:00
|
|
|
for (BuiltinCandidateTypeSet::iterator
|
2009-08-24 21:43:27 +08:00
|
|
|
MemPtr = CandidateTypes.member_pointer_begin(),
|
|
|
|
MemPtrEnd = CandidateTypes.member_pointer_end();
|
|
|
|
MemPtr != MemPtrEnd;
|
|
|
|
++MemPtr) {
|
|
|
|
QualType ParamTypes[2] = { *MemPtr, *MemPtr };
|
|
|
|
AddBuiltinCandidate(Context.BoolTy, ParamTypes, Args, 2, CandidateSet);
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-08-24 21:43:27 +08:00
|
|
|
// Fall through
|
2009-09-09 23:08:12 +08:00
|
|
|
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
case OO_Less:
|
|
|
|
case OO_Greater:
|
|
|
|
case OO_LessEqual:
|
|
|
|
case OO_GreaterEqual:
|
|
|
|
// C++ [over.built]p15:
|
|
|
|
//
|
|
|
|
// For every pointer or enumeration type T, there exist
|
|
|
|
// candidate operator functions of the form
|
2009-09-09 23:08:12 +08:00
|
|
|
//
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
// bool operator<(T, T);
|
|
|
|
// bool operator>(T, T);
|
|
|
|
// bool operator<=(T, T);
|
|
|
|
// bool operator>=(T, T);
|
|
|
|
// bool operator==(T, T);
|
|
|
|
// bool operator!=(T, T);
|
|
|
|
for (BuiltinCandidateTypeSet::iterator Ptr = CandidateTypes.pointer_begin();
|
|
|
|
Ptr != CandidateTypes.pointer_end(); ++Ptr) {
|
|
|
|
QualType ParamTypes[2] = { *Ptr, *Ptr };
|
|
|
|
AddBuiltinCandidate(Context.BoolTy, ParamTypes, Args, 2, CandidateSet);
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
for (BuiltinCandidateTypeSet::iterator Enum
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
= CandidateTypes.enumeration_begin();
|
|
|
|
Enum != CandidateTypes.enumeration_end(); ++Enum) {
|
|
|
|
QualType ParamTypes[2] = { *Enum, *Enum };
|
|
|
|
AddBuiltinCandidate(Context.BoolTy, ParamTypes, Args, 2, CandidateSet);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fall through.
|
|
|
|
isComparison = true;
|
|
|
|
|
2008-11-19 23:42:04 +08:00
|
|
|
BinaryPlus:
|
|
|
|
BinaryMinus:
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
if (!isComparison) {
|
|
|
|
// We didn't fall through, so we must have OO_Plus or OO_Minus.
|
|
|
|
|
|
|
|
// C++ [over.built]p13:
|
|
|
|
//
|
|
|
|
// For every cv-qualified or cv-unqualified object type T
|
|
|
|
// there exist candidate operator functions of the form
|
2009-09-09 23:08:12 +08:00
|
|
|
//
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
// T* operator+(T*, ptrdiff_t);
|
|
|
|
// T& operator[](T*, ptrdiff_t); [BELOW]
|
|
|
|
// T* operator-(T*, ptrdiff_t);
|
|
|
|
// T* operator+(ptrdiff_t, T*);
|
|
|
|
// T& operator[](ptrdiff_t, T*); [BELOW]
|
|
|
|
//
|
|
|
|
// C++ [over.built]p14:
|
|
|
|
//
|
|
|
|
// For every T, where T is a pointer to object type, there
|
|
|
|
// exist candidate operator functions of the form
|
|
|
|
//
|
|
|
|
// ptrdiff_t operator-(T, T);
|
2009-09-09 23:08:12 +08:00
|
|
|
for (BuiltinCandidateTypeSet::iterator Ptr
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
= CandidateTypes.pointer_begin();
|
|
|
|
Ptr != CandidateTypes.pointer_end(); ++Ptr) {
|
|
|
|
QualType ParamTypes[2] = { *Ptr, Context.getPointerDiffType() };
|
|
|
|
|
|
|
|
// operator+(T*, ptrdiff_t) or operator-(T*, ptrdiff_t)
|
|
|
|
AddBuiltinCandidate(*Ptr, ParamTypes, Args, 2, CandidateSet);
|
|
|
|
|
|
|
|
if (Op == OO_Plus) {
|
|
|
|
// T* operator+(ptrdiff_t, T*);
|
|
|
|
ParamTypes[0] = ParamTypes[1];
|
|
|
|
ParamTypes[1] = *Ptr;
|
|
|
|
AddBuiltinCandidate(*Ptr, ParamTypes, Args, 2, CandidateSet);
|
|
|
|
} else {
|
|
|
|
// ptrdiff_t operator-(T, T);
|
|
|
|
ParamTypes[1] = *Ptr;
|
|
|
|
AddBuiltinCandidate(Context.getPointerDiffType(), ParamTypes,
|
|
|
|
Args, 2, CandidateSet);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Fall through
|
|
|
|
|
|
|
|
case OO_Slash:
|
2008-11-19 23:42:04 +08:00
|
|
|
BinaryStar:
|
2009-04-17 01:51:27 +08:00
|
|
|
Conditional:
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
// C++ [over.built]p12:
|
|
|
|
//
|
|
|
|
// For every pair of promoted arithmetic types L and R, there
|
|
|
|
// exist candidate operator functions of the form
|
|
|
|
//
|
|
|
|
// LR operator*(L, R);
|
|
|
|
// LR operator/(L, R);
|
|
|
|
// LR operator+(L, R);
|
|
|
|
// LR operator-(L, R);
|
|
|
|
// bool operator<(L, R);
|
|
|
|
// bool operator>(L, R);
|
|
|
|
// bool operator<=(L, R);
|
|
|
|
// bool operator>=(L, R);
|
|
|
|
// bool operator==(L, R);
|
|
|
|
// bool operator!=(L, R);
|
|
|
|
//
|
|
|
|
// where LR is the result of the usual arithmetic conversions
|
|
|
|
// between types L and R.
|
2009-04-17 01:51:27 +08:00
|
|
|
//
|
|
|
|
// C++ [over.built]p24:
|
|
|
|
//
|
|
|
|
// For every pair of promoted arithmetic types L and R, there exist
|
|
|
|
// candidate operator functions of the form
|
|
|
|
//
|
|
|
|
// LR operator?(bool, L, R);
|
|
|
|
//
|
|
|
|
// where LR is the result of the usual arithmetic conversions
|
|
|
|
// between types L and R.
|
|
|
|
// Our candidates ignore the first parameter.
|
2009-09-09 23:08:12 +08:00
|
|
|
for (unsigned Left = FirstPromotedArithmeticType;
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
Left < LastPromotedArithmeticType; ++Left) {
|
2009-09-09 23:08:12 +08:00
|
|
|
for (unsigned Right = FirstPromotedArithmeticType;
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
Right < LastPromotedArithmeticType; ++Right) {
|
|
|
|
QualType LandR[2] = { ArithmeticTypes[Left], ArithmeticTypes[Right] };
|
2009-08-19 15:44:53 +08:00
|
|
|
QualType Result
|
|
|
|
= isComparison
|
|
|
|
? Context.BoolTy
|
|
|
|
: Context.UsualArithmeticConversionsType(LandR[0], LandR[1]);
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
AddBuiltinCandidate(Result, LandR, Args, 2, CandidateSet);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OO_Percent:
|
2008-11-19 23:42:04 +08:00
|
|
|
BinaryAmp:
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
case OO_Caret:
|
|
|
|
case OO_Pipe:
|
|
|
|
case OO_LessLess:
|
|
|
|
case OO_GreaterGreater:
|
|
|
|
// C++ [over.built]p17:
|
|
|
|
//
|
|
|
|
// For every pair of promoted integral types L and R, there
|
|
|
|
// exist candidate operator functions of the form
|
|
|
|
//
|
|
|
|
// LR operator%(L, R);
|
|
|
|
// LR operator&(L, R);
|
|
|
|
// LR operator^(L, R);
|
|
|
|
// LR operator|(L, R);
|
|
|
|
// L operator<<(L, R);
|
|
|
|
// L operator>>(L, R);
|
|
|
|
//
|
|
|
|
// where LR is the result of the usual arithmetic conversions
|
|
|
|
// between types L and R.
|
2009-09-09 23:08:12 +08:00
|
|
|
for (unsigned Left = FirstPromotedIntegralType;
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
Left < LastPromotedIntegralType; ++Left) {
|
2009-09-09 23:08:12 +08:00
|
|
|
for (unsigned Right = FirstPromotedIntegralType;
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
Right < LastPromotedIntegralType; ++Right) {
|
|
|
|
QualType LandR[2] = { ArithmeticTypes[Left], ArithmeticTypes[Right] };
|
|
|
|
QualType Result = (Op == OO_LessLess || Op == OO_GreaterGreater)
|
|
|
|
? LandR[0]
|
2009-08-19 15:44:53 +08:00
|
|
|
: Context.UsualArithmeticConversionsType(LandR[0], LandR[1]);
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
AddBuiltinCandidate(Result, LandR, Args, 2, CandidateSet);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OO_Equal:
|
|
|
|
// C++ [over.built]p20:
|
|
|
|
//
|
|
|
|
// For every pair (T, VQ), where T is an enumeration or
|
2009-08-24 21:43:27 +08:00
|
|
|
// pointer to member type and VQ is either volatile or
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
// empty, there exist candidate operator functions of the form
|
|
|
|
//
|
|
|
|
// VQ T& operator=(VQ T&, T);
|
2009-08-24 21:43:27 +08:00
|
|
|
for (BuiltinCandidateTypeSet::iterator
|
|
|
|
Enum = CandidateTypes.enumeration_begin(),
|
|
|
|
EnumEnd = CandidateTypes.enumeration_end();
|
|
|
|
Enum != EnumEnd; ++Enum)
|
2009-09-09 23:08:12 +08:00
|
|
|
AddBuiltinAssignmentOperatorCandidates(*this, *Enum, Args, 2,
|
2009-08-24 21:43:27 +08:00
|
|
|
CandidateSet);
|
|
|
|
for (BuiltinCandidateTypeSet::iterator
|
|
|
|
MemPtr = CandidateTypes.member_pointer_begin(),
|
|
|
|
MemPtrEnd = CandidateTypes.member_pointer_end();
|
|
|
|
MemPtr != MemPtrEnd; ++MemPtr)
|
2009-09-09 23:08:12 +08:00
|
|
|
AddBuiltinAssignmentOperatorCandidates(*this, *MemPtr, Args, 2,
|
2009-08-24 21:43:27 +08:00
|
|
|
CandidateSet);
|
|
|
|
// Fall through.
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
|
|
|
|
case OO_PlusEqual:
|
|
|
|
case OO_MinusEqual:
|
|
|
|
// C++ [over.built]p19:
|
|
|
|
//
|
|
|
|
// For every pair (T, VQ), where T is any type and VQ is either
|
|
|
|
// volatile or empty, there exist candidate operator functions
|
|
|
|
// of the form
|
|
|
|
//
|
|
|
|
// T*VQ& operator=(T*VQ&, T*);
|
|
|
|
//
|
|
|
|
// C++ [over.built]p21:
|
|
|
|
//
|
|
|
|
// For every pair (T, VQ), where T is a cv-qualified or
|
|
|
|
// cv-unqualified object type and VQ is either volatile or
|
|
|
|
// empty, there exist candidate operator functions of the form
|
|
|
|
//
|
|
|
|
// T*VQ& operator+=(T*VQ&, ptrdiff_t);
|
|
|
|
// T*VQ& operator-=(T*VQ&, ptrdiff_t);
|
|
|
|
for (BuiltinCandidateTypeSet::iterator Ptr = CandidateTypes.pointer_begin();
|
|
|
|
Ptr != CandidateTypes.pointer_end(); ++Ptr) {
|
|
|
|
QualType ParamTypes[2];
|
|
|
|
ParamTypes[1] = (Op == OO_Equal)? *Ptr : Context.getPointerDiffType();
|
|
|
|
|
|
|
|
// non-volatile version
|
2009-03-17 07:22:08 +08:00
|
|
|
ParamTypes[0] = Context.getLValueReferenceType(*Ptr);
|
2009-01-13 08:52:54 +08:00
|
|
|
AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, 2, CandidateSet,
|
|
|
|
/*IsAssigmentOperator=*/Op == OO_Equal);
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
|
2009-10-20 05:30:45 +08:00
|
|
|
if (!Context.getCanonicalType(*Ptr).isVolatileQualified() &&
|
|
|
|
VisibleTypeConversionsQuals.hasVolatile()) {
|
2008-11-19 23:42:04 +08:00
|
|
|
// volatile version
|
2009-09-25 03:53:00 +08:00
|
|
|
ParamTypes[0]
|
|
|
|
= Context.getLValueReferenceType(Context.getVolatileType(*Ptr));
|
2009-01-13 08:52:54 +08:00
|
|
|
AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, 2, CandidateSet,
|
|
|
|
/*IsAssigmentOperator=*/Op == OO_Equal);
|
2008-11-19 23:42:04 +08:00
|
|
|
}
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
}
|
|
|
|
// Fall through.
|
|
|
|
|
|
|
|
case OO_StarEqual:
|
|
|
|
case OO_SlashEqual:
|
|
|
|
// C++ [over.built]p18:
|
|
|
|
//
|
|
|
|
// For every triple (L, VQ, R), where L is an arithmetic type,
|
|
|
|
// VQ is either volatile or empty, and R is a promoted
|
|
|
|
// arithmetic type, there exist candidate operator functions of
|
|
|
|
// the form
|
|
|
|
//
|
|
|
|
// VQ L& operator=(VQ L&, R);
|
|
|
|
// VQ L& operator*=(VQ L&, R);
|
|
|
|
// VQ L& operator/=(VQ L&, R);
|
|
|
|
// VQ L& operator+=(VQ L&, R);
|
|
|
|
// VQ L& operator-=(VQ L&, R);
|
|
|
|
for (unsigned Left = 0; Left < NumArithmeticTypes; ++Left) {
|
2009-09-09 23:08:12 +08:00
|
|
|
for (unsigned Right = FirstPromotedArithmeticType;
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
Right < LastPromotedArithmeticType; ++Right) {
|
|
|
|
QualType ParamTypes[2];
|
|
|
|
ParamTypes[1] = ArithmeticTypes[Right];
|
|
|
|
|
|
|
|
// Add this built-in operator as a candidate (VQ is empty).
|
2009-03-17 07:22:08 +08:00
|
|
|
ParamTypes[0] = Context.getLValueReferenceType(ArithmeticTypes[Left]);
|
2009-01-13 08:52:54 +08:00
|
|
|
AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, 2, CandidateSet,
|
|
|
|
/*IsAssigmentOperator=*/Op == OO_Equal);
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
|
|
|
|
// Add this built-in operator as a candidate (VQ is 'volatile').
|
2009-10-20 05:30:45 +08:00
|
|
|
if (VisibleTypeConversionsQuals.hasVolatile()) {
|
|
|
|
ParamTypes[0] = Context.getVolatileType(ArithmeticTypes[Left]);
|
|
|
|
ParamTypes[0] = Context.getLValueReferenceType(ParamTypes[0]);
|
|
|
|
AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, 2, CandidateSet,
|
|
|
|
/*IsAssigmentOperator=*/Op == OO_Equal);
|
|
|
|
}
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OO_PercentEqual:
|
|
|
|
case OO_LessLessEqual:
|
|
|
|
case OO_GreaterGreaterEqual:
|
|
|
|
case OO_AmpEqual:
|
|
|
|
case OO_CaretEqual:
|
|
|
|
case OO_PipeEqual:
|
|
|
|
// C++ [over.built]p22:
|
|
|
|
//
|
|
|
|
// For every triple (L, VQ, R), where L is an integral type, VQ
|
|
|
|
// is either volatile or empty, and R is a promoted integral
|
|
|
|
// type, there exist candidate operator functions of the form
|
|
|
|
//
|
|
|
|
// VQ L& operator%=(VQ L&, R);
|
|
|
|
// VQ L& operator<<=(VQ L&, R);
|
|
|
|
// VQ L& operator>>=(VQ L&, R);
|
|
|
|
// VQ L& operator&=(VQ L&, R);
|
|
|
|
// VQ L& operator^=(VQ L&, R);
|
|
|
|
// VQ L& operator|=(VQ L&, R);
|
|
|
|
for (unsigned Left = FirstIntegralType; Left < LastIntegralType; ++Left) {
|
2009-09-09 23:08:12 +08:00
|
|
|
for (unsigned Right = FirstPromotedIntegralType;
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
Right < LastPromotedIntegralType; ++Right) {
|
|
|
|
QualType ParamTypes[2];
|
|
|
|
ParamTypes[1] = ArithmeticTypes[Right];
|
|
|
|
|
|
|
|
// Add this built-in operator as a candidate (VQ is empty).
|
2009-03-17 07:22:08 +08:00
|
|
|
ParamTypes[0] = Context.getLValueReferenceType(ArithmeticTypes[Left]);
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, 2, CandidateSet);
|
2009-10-20 08:04:40 +08:00
|
|
|
if (VisibleTypeConversionsQuals.hasVolatile()) {
|
|
|
|
// Add this built-in operator as a candidate (VQ is 'volatile').
|
|
|
|
ParamTypes[0] = ArithmeticTypes[Left];
|
|
|
|
ParamTypes[0] = Context.getVolatileType(ParamTypes[0]);
|
|
|
|
ParamTypes[0] = Context.getLValueReferenceType(ParamTypes[0]);
|
|
|
|
AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, 2, CandidateSet);
|
|
|
|
}
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2008-11-19 23:42:04 +08:00
|
|
|
case OO_Exclaim: {
|
|
|
|
// C++ [over.operator]p23:
|
|
|
|
//
|
|
|
|
// There also exist candidate operator functions of the form
|
|
|
|
//
|
2009-09-09 23:08:12 +08:00
|
|
|
// bool operator!(bool);
|
2008-11-19 23:42:04 +08:00
|
|
|
// bool operator&&(bool, bool); [BELOW]
|
|
|
|
// bool operator||(bool, bool); [BELOW]
|
|
|
|
QualType ParamTy = Context.BoolTy;
|
2009-01-14 23:45:31 +08:00
|
|
|
AddBuiltinCandidate(ParamTy, &ParamTy, Args, 1, CandidateSet,
|
|
|
|
/*IsAssignmentOperator=*/false,
|
|
|
|
/*NumContextualBoolArguments=*/1);
|
2008-11-19 23:42:04 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
case OO_AmpAmp:
|
|
|
|
case OO_PipePipe: {
|
|
|
|
// C++ [over.operator]p23:
|
|
|
|
//
|
|
|
|
// There also exist candidate operator functions of the form
|
|
|
|
//
|
2008-11-19 23:42:04 +08:00
|
|
|
// bool operator!(bool); [ABOVE]
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
// bool operator&&(bool, bool);
|
|
|
|
// bool operator||(bool, bool);
|
|
|
|
QualType ParamTypes[2] = { Context.BoolTy, Context.BoolTy };
|
2009-01-14 23:45:31 +08:00
|
|
|
AddBuiltinCandidate(Context.BoolTy, ParamTypes, Args, 2, CandidateSet,
|
|
|
|
/*IsAssignmentOperator=*/false,
|
|
|
|
/*NumContextualBoolArguments=*/2);
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case OO_Subscript:
|
|
|
|
// C++ [over.built]p13:
|
|
|
|
//
|
|
|
|
// For every cv-qualified or cv-unqualified object type T there
|
|
|
|
// exist candidate operator functions of the form
|
2009-09-09 23:08:12 +08:00
|
|
|
//
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
// T* operator+(T*, ptrdiff_t); [ABOVE]
|
|
|
|
// T& operator[](T*, ptrdiff_t);
|
|
|
|
// T* operator-(T*, ptrdiff_t); [ABOVE]
|
|
|
|
// T* operator+(ptrdiff_t, T*); [ABOVE]
|
|
|
|
// T& operator[](ptrdiff_t, T*);
|
|
|
|
for (BuiltinCandidateTypeSet::iterator Ptr = CandidateTypes.pointer_begin();
|
|
|
|
Ptr != CandidateTypes.pointer_end(); ++Ptr) {
|
|
|
|
QualType ParamTypes[2] = { *Ptr, Context.getPointerDiffType() };
|
2009-07-30 05:53:49 +08:00
|
|
|
QualType PointeeType = (*Ptr)->getAs<PointerType>()->getPointeeType();
|
2009-03-17 07:22:08 +08:00
|
|
|
QualType ResultTy = Context.getLValueReferenceType(PointeeType);
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
|
|
|
|
// T& operator[](T*, ptrdiff_t)
|
|
|
|
AddBuiltinCandidate(ResultTy, ParamTypes, Args, 2, CandidateSet);
|
|
|
|
|
|
|
|
// T& operator[](ptrdiff_t, T*);
|
|
|
|
ParamTypes[0] = ParamTypes[1];
|
|
|
|
ParamTypes[1] = *Ptr;
|
|
|
|
AddBuiltinCandidate(ResultTy, ParamTypes, Args, 2, CandidateSet);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OO_ArrowStar:
|
2009-10-07 07:08:05 +08:00
|
|
|
// C++ [over.built]p11:
|
|
|
|
// For every quintuple (C1, C2, T, CV1, CV2), where C2 is a class type,
|
|
|
|
// C1 is the same type as C2 or is a derived class of C2, T is an object
|
|
|
|
// type or a function type, and CV1 and CV2 are cv-qualifier-seqs,
|
|
|
|
// there exist candidate operator functions of the form
|
|
|
|
// CV12 T& operator->*(CV1 C1*, CV2 T C2::*);
|
|
|
|
// where CV12 is the union of CV1 and CV2.
|
|
|
|
{
|
|
|
|
for (BuiltinCandidateTypeSet::iterator Ptr =
|
|
|
|
CandidateTypes.pointer_begin();
|
|
|
|
Ptr != CandidateTypes.pointer_end(); ++Ptr) {
|
|
|
|
QualType C1Ty = (*Ptr);
|
|
|
|
QualType C1;
|
2009-10-10 00:34:40 +08:00
|
|
|
QualifierCollector Q1;
|
2009-10-07 07:08:05 +08:00
|
|
|
if (const PointerType *PointerTy = C1Ty->getAs<PointerType>()) {
|
2009-10-10 00:34:40 +08:00
|
|
|
C1 = QualType(Q1.strip(PointerTy->getPointeeType()), 0);
|
2009-10-07 07:08:05 +08:00
|
|
|
if (!isa<RecordType>(C1))
|
|
|
|
continue;
|
2009-10-16 01:14:05 +08:00
|
|
|
// heuristic to reduce number of builtin candidates in the set.
|
|
|
|
// Add volatile/restrict version only if there are conversions to a
|
|
|
|
// volatile/restrict type.
|
|
|
|
if (!VisibleTypeConversionsQuals.hasVolatile() && Q1.hasVolatile())
|
|
|
|
continue;
|
|
|
|
if (!VisibleTypeConversionsQuals.hasRestrict() && Q1.hasRestrict())
|
|
|
|
continue;
|
2009-10-07 07:08:05 +08:00
|
|
|
}
|
|
|
|
for (BuiltinCandidateTypeSet::iterator
|
|
|
|
MemPtr = CandidateTypes.member_pointer_begin(),
|
|
|
|
MemPtrEnd = CandidateTypes.member_pointer_end();
|
|
|
|
MemPtr != MemPtrEnd; ++MemPtr) {
|
|
|
|
const MemberPointerType *mptr = cast<MemberPointerType>(*MemPtr);
|
|
|
|
QualType C2 = QualType(mptr->getClass(), 0);
|
2009-10-08 00:56:50 +08:00
|
|
|
C2 = C2.getUnqualifiedType();
|
2009-10-07 07:08:05 +08:00
|
|
|
if (C1 != C2 && !IsDerivedFrom(C1, C2))
|
|
|
|
break;
|
|
|
|
QualType ParamTypes[2] = { *Ptr, *MemPtr };
|
|
|
|
// build CV12 T&
|
|
|
|
QualType T = mptr->getPointeeType();
|
2009-10-16 01:14:05 +08:00
|
|
|
if (!VisibleTypeConversionsQuals.hasVolatile() &&
|
|
|
|
T.isVolatileQualified())
|
|
|
|
continue;
|
|
|
|
if (!VisibleTypeConversionsQuals.hasRestrict() &&
|
|
|
|
T.isRestrictQualified())
|
|
|
|
continue;
|
2009-10-10 00:34:40 +08:00
|
|
|
T = Q1.apply(T);
|
2009-10-07 07:08:05 +08:00
|
|
|
QualType ResultTy = Context.getLValueReferenceType(T);
|
|
|
|
AddBuiltinCandidate(ResultTy, ParamTypes, Args, 2, CandidateSet);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
break;
|
2009-04-17 01:51:27 +08:00
|
|
|
|
|
|
|
case OO_Conditional:
|
|
|
|
// Note that we don't consider the first argument, since it has been
|
|
|
|
// contextually converted to bool long ago. The candidates below are
|
|
|
|
// therefore added as binary.
|
|
|
|
//
|
|
|
|
// C++ [over.built]p24:
|
|
|
|
// For every type T, where T is a pointer or pointer-to-member type,
|
|
|
|
// there exist candidate operator functions of the form
|
|
|
|
//
|
|
|
|
// T operator?(bool, T, T);
|
|
|
|
//
|
|
|
|
for (BuiltinCandidateTypeSet::iterator Ptr = CandidateTypes.pointer_begin(),
|
|
|
|
E = CandidateTypes.pointer_end(); Ptr != E; ++Ptr) {
|
|
|
|
QualType ParamTypes[2] = { *Ptr, *Ptr };
|
|
|
|
AddBuiltinCandidate(*Ptr, ParamTypes, Args, 2, CandidateSet);
|
|
|
|
}
|
2009-04-20 05:53:20 +08:00
|
|
|
for (BuiltinCandidateTypeSet::iterator Ptr =
|
|
|
|
CandidateTypes.member_pointer_begin(),
|
|
|
|
E = CandidateTypes.member_pointer_end(); Ptr != E; ++Ptr) {
|
|
|
|
QualType ParamTypes[2] = { *Ptr, *Ptr };
|
|
|
|
AddBuiltinCandidate(*Ptr, ParamTypes, Args, 2, CandidateSet);
|
|
|
|
}
|
2009-04-17 01:51:27 +08:00
|
|
|
goto Conditional;
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-04 08:32:51 +08:00
|
|
|
/// \brief Add function candidates found via argument-dependent lookup
|
|
|
|
/// to the set of overloading candidates.
|
|
|
|
///
|
|
|
|
/// This routine performs argument-dependent name lookup based on the
|
|
|
|
/// given function name (which may also be an operator name) and adds
|
|
|
|
/// all of the overload candidates found by ADL to the overload
|
|
|
|
/// candidate set (C++ [basic.lookup.argdep]).
|
2009-09-09 23:08:12 +08:00
|
|
|
void
|
2009-02-04 08:32:51 +08:00
|
|
|
Sema::AddArgumentDependentLookupCandidates(DeclarationName Name,
|
|
|
|
Expr **Args, unsigned NumArgs,
|
2009-11-23 09:53:49 +08:00
|
|
|
const TemplateArgumentListInfo *ExplicitTemplateArgs,
|
2009-09-22 23:41:20 +08:00
|
|
|
OverloadCandidateSet& CandidateSet,
|
|
|
|
bool PartialOverloading) {
|
2009-03-13 08:33:25 +08:00
|
|
|
FunctionSet Functions;
|
|
|
|
|
2009-09-22 23:41:20 +08:00
|
|
|
// FIXME: Should we be trafficking in canonical function decls throughout?
|
|
|
|
|
2009-03-13 08:33:25 +08:00
|
|
|
// Record all of the function candidates that we've already
|
|
|
|
// added to the overload set, so that we don't add those same
|
|
|
|
// candidates a second time.
|
|
|
|
for (OverloadCandidateSet::iterator Cand = CandidateSet.begin(),
|
|
|
|
CandEnd = CandidateSet.end();
|
|
|
|
Cand != CandEnd; ++Cand)
|
2009-06-28 05:05:07 +08:00
|
|
|
if (Cand->Function) {
|
2009-03-13 08:33:25 +08:00
|
|
|
Functions.insert(Cand->Function);
|
2009-06-28 05:05:07 +08:00
|
|
|
if (FunctionTemplateDecl *FunTmpl = Cand->Function->getPrimaryTemplate())
|
|
|
|
Functions.insert(FunTmpl);
|
|
|
|
}
|
2009-03-13 08:33:25 +08:00
|
|
|
|
2009-09-22 23:41:20 +08:00
|
|
|
// FIXME: Pass in the explicit template arguments?
|
2009-10-24 03:23:15 +08:00
|
|
|
ArgumentDependentLookup(Name, /*Operator*/false, Args, NumArgs, Functions);
|
2009-03-13 08:33:25 +08:00
|
|
|
|
|
|
|
// Erase all of the candidates we already knew about.
|
|
|
|
// FIXME: This is suboptimal. Is there a better way?
|
|
|
|
for (OverloadCandidateSet::iterator Cand = CandidateSet.begin(),
|
|
|
|
CandEnd = CandidateSet.end();
|
|
|
|
Cand != CandEnd; ++Cand)
|
2009-06-28 05:05:07 +08:00
|
|
|
if (Cand->Function) {
|
2009-03-13 08:33:25 +08:00
|
|
|
Functions.erase(Cand->Function);
|
2009-06-28 05:05:07 +08:00
|
|
|
if (FunctionTemplateDecl *FunTmpl = Cand->Function->getPrimaryTemplate())
|
|
|
|
Functions.erase(FunTmpl);
|
|
|
|
}
|
2009-03-13 08:33:25 +08:00
|
|
|
|
|
|
|
// For each of the ADL candidates we found, add it to the overload
|
|
|
|
// set.
|
|
|
|
for (FunctionSet::iterator Func = Functions.begin(),
|
|
|
|
FuncEnd = Functions.end();
|
2009-06-28 05:05:07 +08:00
|
|
|
Func != FuncEnd; ++Func) {
|
2009-09-22 23:41:20 +08:00
|
|
|
if (FunctionDecl *FD = dyn_cast<FunctionDecl>(*Func)) {
|
2009-11-23 09:53:49 +08:00
|
|
|
if (ExplicitTemplateArgs)
|
2009-09-22 23:41:20 +08:00
|
|
|
continue;
|
|
|
|
|
|
|
|
AddOverloadCandidate(FD, Args, NumArgs, CandidateSet,
|
|
|
|
false, false, PartialOverloading);
|
|
|
|
} else
|
2009-09-09 23:08:12 +08:00
|
|
|
AddTemplateOverloadCandidate(cast<FunctionTemplateDecl>(*Func),
|
2009-09-22 23:41:20 +08:00
|
|
|
ExplicitTemplateArgs,
|
2009-07-01 07:57:56 +08:00
|
|
|
Args, NumArgs, CandidateSet);
|
2009-06-28 05:05:07 +08:00
|
|
|
}
|
2009-02-04 08:32:51 +08:00
|
|
|
}
|
|
|
|
|
2008-10-22 00:13:35 +08:00
|
|
|
/// isBetterOverloadCandidate - Determines whether the first overload
|
|
|
|
/// candidate is a better candidate than the second (C++ 13.3.3p1).
|
2009-09-09 23:08:12 +08:00
|
|
|
bool
|
2008-10-22 00:13:35 +08:00
|
|
|
Sema::isBetterOverloadCandidate(const OverloadCandidate& Cand1,
|
2009-09-09 23:08:12 +08:00
|
|
|
const OverloadCandidate& Cand2) {
|
2008-10-22 00:13:35 +08:00
|
|
|
// Define viable functions to be better candidates than non-viable
|
|
|
|
// functions.
|
|
|
|
if (!Cand2.Viable)
|
|
|
|
return Cand1.Viable;
|
|
|
|
else if (!Cand1.Viable)
|
|
|
|
return false;
|
|
|
|
|
2008-12-22 13:46:06 +08:00
|
|
|
// C++ [over.match.best]p1:
|
|
|
|
//
|
|
|
|
// -- if F is a static member function, ICS1(F) is defined such
|
|
|
|
// that ICS1(F) is neither better nor worse than ICS1(G) for
|
|
|
|
// any function G, and, symmetrically, ICS1(G) is neither
|
|
|
|
// better nor worse than ICS1(F).
|
|
|
|
unsigned StartArg = 0;
|
|
|
|
if (Cand1.IgnoreObjectArgument || Cand2.IgnoreObjectArgument)
|
|
|
|
StartArg = 1;
|
2008-10-22 00:13:35 +08:00
|
|
|
|
2009-07-08 07:38:56 +08:00
|
|
|
// C++ [over.match.best]p1:
|
2009-09-09 23:08:12 +08:00
|
|
|
// A viable function F1 is defined to be a better function than another
|
|
|
|
// viable function F2 if for all arguments i, ICSi(F1) is not a worse
|
2009-07-08 07:38:56 +08:00
|
|
|
// conversion sequence than ICSi(F2), and then...
|
2008-10-22 00:13:35 +08:00
|
|
|
unsigned NumArgs = Cand1.Conversions.size();
|
|
|
|
assert(Cand2.Conversions.size() == NumArgs && "Overload candidate mismatch");
|
|
|
|
bool HasBetterConversion = false;
|
2008-12-22 13:46:06 +08:00
|
|
|
for (unsigned ArgIdx = StartArg; ArgIdx < NumArgs; ++ArgIdx) {
|
2008-10-22 00:13:35 +08:00
|
|
|
switch (CompareImplicitConversionSequences(Cand1.Conversions[ArgIdx],
|
|
|
|
Cand2.Conversions[ArgIdx])) {
|
|
|
|
case ImplicitConversionSequence::Better:
|
|
|
|
// Cand1 has a better conversion sequence.
|
|
|
|
HasBetterConversion = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ImplicitConversionSequence::Worse:
|
|
|
|
// Cand1 can't be better than Cand2.
|
|
|
|
return false;
|
|
|
|
|
|
|
|
case ImplicitConversionSequence::Indistinguishable:
|
|
|
|
// Do nothing.
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
// -- for some argument j, ICSj(F1) is a better conversion sequence than
|
2009-07-08 07:38:56 +08:00
|
|
|
// ICSj(F2), or, if not that,
|
2008-10-22 00:13:35 +08:00
|
|
|
if (HasBetterConversion)
|
|
|
|
return true;
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
// - F1 is a non-template function and F2 is a function template
|
2009-07-08 07:38:56 +08:00
|
|
|
// specialization, or, if not that,
|
|
|
|
if (Cand1.Function && !Cand1.Function->getPrimaryTemplate() &&
|
|
|
|
Cand2.Function && Cand2.Function->getPrimaryTemplate())
|
|
|
|
return true;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
// -- F1 and F2 are function template specializations, and the function
|
|
|
|
// template for F1 is more specialized than the template for F2
|
|
|
|
// according to the partial ordering rules described in 14.5.5.2, or,
|
2009-07-08 07:38:56 +08:00
|
|
|
// if not that,
|
2009-08-03 07:46:29 +08:00
|
|
|
if (Cand1.Function && Cand1.Function->getPrimaryTemplate() &&
|
|
|
|
Cand2.Function && Cand2.Function->getPrimaryTemplate())
|
2009-08-22 07:19:43 +08:00
|
|
|
if (FunctionTemplateDecl *BetterTemplate
|
|
|
|
= getMoreSpecializedTemplate(Cand1.Function->getPrimaryTemplate(),
|
|
|
|
Cand2.Function->getPrimaryTemplate(),
|
2009-09-15 07:02:14 +08:00
|
|
|
isa<CXXConversionDecl>(Cand1.Function)? TPOC_Conversion
|
|
|
|
: TPOC_Call))
|
2009-08-22 07:19:43 +08:00
|
|
|
return BetterTemplate == Cand1.Function->getPrimaryTemplate();
|
2008-10-22 00:13:35 +08:00
|
|
|
|
2008-11-08 06:36:19 +08:00
|
|
|
// -- the context is an initialization by user-defined conversion
|
|
|
|
// (see 8.5, 13.3.1.5) and the standard conversion sequence
|
|
|
|
// from the return type of F1 to the destination type (i.e.,
|
|
|
|
// the type of the entity being initialized) is a better
|
|
|
|
// conversion sequence than the standard conversion sequence
|
|
|
|
// from the return type of F2 to the destination type.
|
2009-09-09 23:08:12 +08:00
|
|
|
if (Cand1.Function && Cand2.Function &&
|
|
|
|
isa<CXXConversionDecl>(Cand1.Function) &&
|
2008-11-08 06:36:19 +08:00
|
|
|
isa<CXXConversionDecl>(Cand2.Function)) {
|
|
|
|
switch (CompareStandardConversionSequences(Cand1.FinalConversion,
|
|
|
|
Cand2.FinalConversion)) {
|
|
|
|
case ImplicitConversionSequence::Better:
|
|
|
|
// Cand1 has a better conversion sequence.
|
|
|
|
return true;
|
|
|
|
|
|
|
|
case ImplicitConversionSequence::Worse:
|
|
|
|
// Cand1 can't be better than Cand2.
|
|
|
|
return false;
|
|
|
|
|
|
|
|
case ImplicitConversionSequence::Indistinguishable:
|
|
|
|
// Do nothing
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-10-22 00:13:35 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
/// \brief Computes the best viable function (C++ 13.3.3)
|
2009-06-20 07:52:42 +08:00
|
|
|
/// within an overload candidate set.
|
|
|
|
///
|
|
|
|
/// \param CandidateSet the set of candidate functions.
|
|
|
|
///
|
|
|
|
/// \param Loc the location of the function name (or operator symbol) for
|
|
|
|
/// which overload resolution occurs.
|
|
|
|
///
|
2009-09-09 23:08:12 +08:00
|
|
|
/// \param Best f overload resolution was successful or found a deleted
|
2009-06-20 07:52:42 +08:00
|
|
|
/// function, Best points to the candidate function found.
|
|
|
|
///
|
|
|
|
/// \returns The result of overload resolution.
|
2009-12-10 07:02:17 +08:00
|
|
|
OverloadingResult Sema::BestViableFunction(OverloadCandidateSet& CandidateSet,
|
|
|
|
SourceLocation Loc,
|
|
|
|
OverloadCandidateSet::iterator& Best) {
|
2008-10-22 00:13:35 +08:00
|
|
|
// Find the best viable function.
|
|
|
|
Best = CandidateSet.end();
|
|
|
|
for (OverloadCandidateSet::iterator Cand = CandidateSet.begin();
|
|
|
|
Cand != CandidateSet.end(); ++Cand) {
|
|
|
|
if (Cand->Viable) {
|
|
|
|
if (Best == CandidateSet.end() || isBetterOverloadCandidate(*Cand, *Best))
|
|
|
|
Best = Cand;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we didn't find any viable functions, abort.
|
|
|
|
if (Best == CandidateSet.end())
|
|
|
|
return OR_No_Viable_Function;
|
|
|
|
|
|
|
|
// Make sure that this function is better than every other viable
|
|
|
|
// function. If not, we have an ambiguity.
|
|
|
|
for (OverloadCandidateSet::iterator Cand = CandidateSet.begin();
|
|
|
|
Cand != CandidateSet.end(); ++Cand) {
|
2009-09-09 23:08:12 +08:00
|
|
|
if (Cand->Viable &&
|
2008-10-22 00:13:35 +08:00
|
|
|
Cand != Best &&
|
2008-11-20 06:57:39 +08:00
|
|
|
!isBetterOverloadCandidate(*Best, *Cand)) {
|
|
|
|
Best = CandidateSet.end();
|
2008-10-22 00:13:35 +08:00
|
|
|
return OR_Ambiguous;
|
2008-11-20 06:57:39 +08:00
|
|
|
}
|
2008-10-22 00:13:35 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-10-22 00:13:35 +08:00
|
|
|
// Best is the best viable function.
|
2009-02-19 05:56:37 +08:00
|
|
|
if (Best->Function &&
|
2009-09-09 23:08:12 +08:00
|
|
|
(Best->Function->isDeleted() ||
|
2009-06-30 10:34:44 +08:00
|
|
|
Best->Function->getAttr<UnavailableAttr>()))
|
2009-02-19 05:56:37 +08:00
|
|
|
return OR_Deleted;
|
|
|
|
|
2009-06-20 07:52:42 +08:00
|
|
|
// C++ [basic.def.odr]p2:
|
|
|
|
// An overloaded function is used if it is selected by overload resolution
|
2009-09-09 23:08:12 +08:00
|
|
|
// when referred to from a potentially-evaluated expression. [Note: this
|
|
|
|
// covers calls to named functions (5.2.2), operator overloading
|
2009-06-20 07:52:42 +08:00
|
|
|
// (clause 13), user-defined conversions (12.3.2), allocation function for
|
|
|
|
// placement new (5.3.4), as well as non-default initialization (8.5).
|
|
|
|
if (Best->Function)
|
|
|
|
MarkDeclarationReferenced(Loc, Best->Function);
|
2008-10-22 00:13:35 +08:00
|
|
|
return OR_Success;
|
|
|
|
}
|
|
|
|
|
2010-01-06 17:43:14 +08:00
|
|
|
/// Notes the location of an overload candidate.
|
|
|
|
void Sema::NoteOverloadCandidate(FunctionDecl *Fn) {
|
|
|
|
|
|
|
|
if (CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(Fn)) {
|
|
|
|
// At least call it a 'constructor'.
|
|
|
|
if (!Ctor->isImplicit()) {
|
|
|
|
Diag(Ctor->getLocation(), diag::note_ovl_candidate_ctor);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
CXXRecordDecl *Record = Ctor->getParent();
|
|
|
|
if (Ctor->isCopyConstructor()) {
|
|
|
|
Diag(Record->getLocation(), diag::note_ovl_candidate_implicit_copy_ctor);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Diag(Record->getLocation(), diag::note_ovl_candidate_implicit_default_ctor);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (CXXMethodDecl *Meth = dyn_cast<CXXMethodDecl>(Fn)) {
|
|
|
|
// This actually gets spelled 'candidate function' for now, but
|
|
|
|
// it doesn't hurt to split it out.
|
|
|
|
if (!Meth->isImplicit()) {
|
|
|
|
Diag(Meth->getLocation(), diag::note_ovl_candidate_meth);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(Meth->isCopyAssignment()
|
|
|
|
&& "implicit method is not copy assignment operator?");
|
|
|
|
Diag(Meth->getParent()->getLocation(),
|
|
|
|
diag::note_ovl_candidate_implicit_copy_assign);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Diag(Fn->getLocation(), diag::note_ovl_candidate);
|
|
|
|
}
|
|
|
|
|
2010-01-08 08:58:21 +08:00
|
|
|
namespace {
|
|
|
|
|
2010-01-08 12:41:39 +08:00
|
|
|
void NoteDeletedCandidate(Sema &S, OverloadCandidate *Cand) {
|
|
|
|
}
|
|
|
|
|
2010-01-08 08:58:21 +08:00
|
|
|
void NoteFunctionCandidate(Sema &S, OverloadCandidate *Cand) {
|
2010-01-08 12:41:39 +08:00
|
|
|
// Note deleted candidates, but only if they're viable.
|
|
|
|
if (Cand->Viable &&
|
|
|
|
(Cand->Function->isDeleted() ||
|
|
|
|
Cand->Function->hasAttr<UnavailableAttr>())) {
|
2010-01-08 08:58:21 +08:00
|
|
|
S.Diag(Cand->Function->getLocation(), diag::note_ovl_candidate_deleted)
|
|
|
|
<< Cand->Function->isDeleted();
|
|
|
|
return;
|
2010-01-08 12:41:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (FunctionTemplateDecl *FunTmpl
|
2010-01-08 08:58:21 +08:00
|
|
|
= Cand->Function->getPrimaryTemplate()) {
|
|
|
|
// Function template specialization
|
|
|
|
// FIXME: Give a better reason!
|
|
|
|
S.Diag(Cand->Function->getLocation(), diag::note_ovl_template_candidate)
|
|
|
|
<< S.getTemplateArgumentBindingsText(FunTmpl->getTemplateParameters(),
|
|
|
|
*Cand->Function->getTemplateSpecializationArgs());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Normal function
|
|
|
|
bool errReported = false;
|
|
|
|
if (!Cand->Viable && Cand->Conversions.size() > 0) {
|
|
|
|
for (int i = Cand->Conversions.size()-1; i >= 0; i--) {
|
|
|
|
const ImplicitConversionSequence &Conversion =
|
|
|
|
Cand->Conversions[i];
|
|
|
|
if ((Conversion.ConversionKind !=
|
|
|
|
ImplicitConversionSequence::BadConversion) ||
|
|
|
|
Conversion.ConversionFunctionSet.size() == 0)
|
|
|
|
continue;
|
|
|
|
S.Diag(Cand->Function->getLocation(),
|
|
|
|
diag::note_ovl_candidate_not_viable) << (i+1);
|
|
|
|
errReported = true;
|
|
|
|
for (int j = Conversion.ConversionFunctionSet.size()-1;
|
|
|
|
j >= 0; j--) {
|
|
|
|
FunctionDecl *Func = Conversion.ConversionFunctionSet[j];
|
|
|
|
S.NoteOverloadCandidate(Func);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!errReported)
|
|
|
|
S.NoteOverloadCandidate(Cand->Function);
|
|
|
|
}
|
|
|
|
|
|
|
|
void NoteSurrogateCandidate(Sema &S, OverloadCandidate *Cand) {
|
|
|
|
// Desugar the type of the surrogate down to a function type,
|
|
|
|
// retaining as many typedefs as possible while still showing
|
|
|
|
// the function type (and, therefore, its parameter types).
|
|
|
|
QualType FnType = Cand->Surrogate->getConversionType();
|
|
|
|
bool isLValueReference = false;
|
|
|
|
bool isRValueReference = false;
|
|
|
|
bool isPointer = false;
|
|
|
|
if (const LValueReferenceType *FnTypeRef =
|
|
|
|
FnType->getAs<LValueReferenceType>()) {
|
|
|
|
FnType = FnTypeRef->getPointeeType();
|
|
|
|
isLValueReference = true;
|
|
|
|
} else if (const RValueReferenceType *FnTypeRef =
|
|
|
|
FnType->getAs<RValueReferenceType>()) {
|
|
|
|
FnType = FnTypeRef->getPointeeType();
|
|
|
|
isRValueReference = true;
|
|
|
|
}
|
|
|
|
if (const PointerType *FnTypePtr = FnType->getAs<PointerType>()) {
|
|
|
|
FnType = FnTypePtr->getPointeeType();
|
|
|
|
isPointer = true;
|
|
|
|
}
|
|
|
|
// Desugar down to a function type.
|
|
|
|
FnType = QualType(FnType->getAs<FunctionType>(), 0);
|
|
|
|
// Reconstruct the pointer/reference as appropriate.
|
|
|
|
if (isPointer) FnType = S.Context.getPointerType(FnType);
|
|
|
|
if (isRValueReference) FnType = S.Context.getRValueReferenceType(FnType);
|
|
|
|
if (isLValueReference) FnType = S.Context.getLValueReferenceType(FnType);
|
|
|
|
|
|
|
|
S.Diag(Cand->Surrogate->getLocation(), diag::note_ovl_surrogate_cand)
|
|
|
|
<< FnType;
|
|
|
|
}
|
|
|
|
|
|
|
|
void NoteBuiltinOperatorCandidate(Sema &S,
|
|
|
|
const char *Opc,
|
|
|
|
SourceLocation OpLoc,
|
|
|
|
OverloadCandidate *Cand) {
|
|
|
|
assert(Cand->Conversions.size() <= 2 && "builtin operator is not binary");
|
|
|
|
std::string TypeStr("operator");
|
|
|
|
TypeStr += Opc;
|
|
|
|
TypeStr += "(";
|
|
|
|
TypeStr += Cand->BuiltinTypes.ParamTypes[0].getAsString();
|
|
|
|
if (Cand->Conversions.size() == 1) {
|
|
|
|
TypeStr += ")";
|
|
|
|
S.Diag(OpLoc, diag::note_ovl_builtin_unary_candidate) << TypeStr;
|
|
|
|
} else {
|
|
|
|
TypeStr += ", ";
|
|
|
|
TypeStr += Cand->BuiltinTypes.ParamTypes[1].getAsString();
|
|
|
|
TypeStr += ")";
|
|
|
|
S.Diag(OpLoc, diag::note_ovl_builtin_binary_candidate) << TypeStr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void NoteAmbiguousUserConversions(Sema &S, SourceLocation OpLoc,
|
|
|
|
OverloadCandidate *Cand) {
|
|
|
|
unsigned NoOperands = Cand->Conversions.size();
|
|
|
|
for (unsigned ArgIdx = 0; ArgIdx < NoOperands; ++ArgIdx) {
|
|
|
|
const ImplicitConversionSequence &ICS = Cand->Conversions[ArgIdx];
|
|
|
|
if (ICS.ConversionKind != ImplicitConversionSequence::BadConversion ||
|
|
|
|
ICS.ConversionFunctionSet.empty())
|
|
|
|
continue;
|
|
|
|
if (CXXConversionDecl *Func = dyn_cast<CXXConversionDecl>(
|
|
|
|
Cand->Conversions[ArgIdx].ConversionFunctionSet[0])) {
|
|
|
|
QualType FromTy =
|
|
|
|
QualType(static_cast<Type*>(ICS.UserDefined.Before.FromTypePtr),0);
|
|
|
|
S.Diag(OpLoc, diag::note_ambiguous_type_conversion)
|
|
|
|
<< FromTy << Func->getConversionType();
|
|
|
|
}
|
|
|
|
for (unsigned j = 0; j < ICS.ConversionFunctionSet.size(); j++) {
|
|
|
|
FunctionDecl *Func =
|
|
|
|
Cand->Conversions[ArgIdx].ConversionFunctionSet[j];
|
|
|
|
S.NoteOverloadCandidate(Func);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-01-08 12:41:39 +08:00
|
|
|
struct CompareOverloadCandidates {
|
|
|
|
SourceManager &SM;
|
|
|
|
CompareOverloadCandidates(SourceManager &SM) : SM(SM) {}
|
|
|
|
|
|
|
|
bool operator()(const OverloadCandidate *L,
|
|
|
|
const OverloadCandidate *R) {
|
|
|
|
// Order first by viability.
|
|
|
|
if (L->Viable != R->Viable)
|
|
|
|
return L->Viable;
|
|
|
|
|
|
|
|
// Put declared functions first.
|
|
|
|
if (L->Function) {
|
|
|
|
if (!R->Function) return true;
|
|
|
|
return SM.isBeforeInTranslationUnit(L->Function->getLocation(),
|
|
|
|
R->Function->getLocation());
|
|
|
|
} else if (R->Function) return false;
|
|
|
|
|
|
|
|
// Then surrogates.
|
|
|
|
if (L->IsSurrogate) {
|
|
|
|
if (!R->IsSurrogate) return true;
|
|
|
|
return SM.isBeforeInTranslationUnit(L->Surrogate->getLocation(),
|
|
|
|
R->Surrogate->getLocation());
|
|
|
|
} else if (R->IsSurrogate) return false;
|
|
|
|
|
|
|
|
// And builtins just come in a jumble.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2010-01-08 08:58:21 +08:00
|
|
|
} // end anonymous namespace
|
|
|
|
|
2008-10-22 00:13:35 +08:00
|
|
|
/// PrintOverloadCandidates - When overload resolution fails, prints
|
|
|
|
/// diagnostic messages containing the candidates in the candidate
|
2010-01-08 12:41:39 +08:00
|
|
|
/// set.
|
2009-09-09 23:08:12 +08:00
|
|
|
void
|
2008-10-22 00:13:35 +08:00
|
|
|
Sema::PrintOverloadCandidates(OverloadCandidateSet& CandidateSet,
|
2010-01-08 12:41:39 +08:00
|
|
|
OverloadCandidateDisplayKind OCD,
|
2009-10-13 04:11:40 +08:00
|
|
|
const char *Opc,
|
2009-10-09 08:13:15 +08:00
|
|
|
SourceLocation OpLoc) {
|
2010-01-08 12:41:39 +08:00
|
|
|
// Sort the candidates by viability and position. Sorting directly would
|
|
|
|
// be prohibitive, so we make a set of pointers and sort those.
|
|
|
|
llvm::SmallVector<OverloadCandidate*, 32> Cands;
|
|
|
|
if (OCD == OCD_AllCandidates) Cands.reserve(CandidateSet.size());
|
|
|
|
for (OverloadCandidateSet::iterator Cand = CandidateSet.begin(),
|
|
|
|
LastCand = CandidateSet.end();
|
|
|
|
Cand != LastCand; ++Cand)
|
|
|
|
if (Cand->Viable || OCD == OCD_AllCandidates)
|
|
|
|
Cands.push_back(Cand);
|
|
|
|
std::sort(Cands.begin(), Cands.end(), CompareOverloadCandidates(SourceMgr));
|
|
|
|
|
2010-01-08 08:58:21 +08:00
|
|
|
bool ReportedNonViableOperator = false;
|
|
|
|
|
2010-01-08 12:41:39 +08:00
|
|
|
llvm::SmallVectorImpl<OverloadCandidate*>::iterator I, E;
|
|
|
|
for (I = Cands.begin(), E = Cands.end(); I != E; ++I) {
|
|
|
|
OverloadCandidate *Cand = *I;
|
2010-01-08 08:58:21 +08:00
|
|
|
|
|
|
|
if (Cand->Function)
|
|
|
|
NoteFunctionCandidate(*this, Cand);
|
|
|
|
else if (Cand->IsSurrogate)
|
|
|
|
NoteSurrogateCandidate(*this, Cand);
|
|
|
|
|
|
|
|
// This a builtin candidate. We do not, in general, want to list
|
|
|
|
// every possible builtin candidate.
|
|
|
|
|
2010-01-08 12:41:39 +08:00
|
|
|
// If this is a viable builtin, print it.
|
|
|
|
else if (Cand->Viable)
|
2010-01-08 08:58:21 +08:00
|
|
|
NoteBuiltinOperatorCandidate(*this, Opc, OpLoc, Cand);
|
|
|
|
|
|
|
|
// Otherwise, non-viability might be due to ambiguous user-defined
|
|
|
|
// conversions. Report them exactly once.
|
2010-01-08 12:41:39 +08:00
|
|
|
else if (!ReportedNonViableOperator) {
|
2010-01-08 08:58:21 +08:00
|
|
|
NoteAmbiguousUserConversions(*this, OpLoc, Cand);
|
|
|
|
ReportedNonViableOperator = true;
|
Implement support for operator overloading using candidate operator
functions for built-in operators, e.g., the builtin
bool operator==(int const*, int const*)
can be used for the expression "x1 == x2" given:
struct X {
operator int const*();
} x1, x2;
The scheme for handling these built-in operators is relatively simple:
for each candidate required by the standard, create a special kind of
candidate function for the built-in. If overload resolution picks the
built-in operator, we perform the appropriate conversions on the
arguments and then let the normal built-in operator take care of it.
There may be some optimization opportunity left: if we can reduce the
number of built-in operator overloads we generate, overload resolution
for these cases will go faster. However, one must be careful when
doing this: GCC generates too few operator overloads in our little
test program, and fails to compile it because none of the overloads it
generates match.
Note that we only support operator overload for non-member binary
operators at the moment. The other operators will follow.
As part of this change, ImplicitCastExpr can now be an lvalue.
llvm-svn: 59148
2008-11-13 01:17:38 +08:00
|
|
|
}
|
2008-10-22 00:13:35 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-11-11 04:40:00 +08:00
|
|
|
/// ResolveAddressOfOverloadedFunction - Try to resolve the address of
|
|
|
|
/// an overloaded function (C++ [over.over]), where @p From is an
|
|
|
|
/// expression with overloaded function type and @p ToType is the type
|
|
|
|
/// we're trying to resolve to. For example:
|
|
|
|
///
|
|
|
|
/// @code
|
|
|
|
/// int f(double);
|
|
|
|
/// int f(int);
|
2009-09-09 23:08:12 +08:00
|
|
|
///
|
2008-11-11 04:40:00 +08:00
|
|
|
/// int (*pfd)(double) = f; // selects f(double)
|
|
|
|
/// @endcode
|
|
|
|
///
|
|
|
|
/// This routine returns the resulting FunctionDecl if it could be
|
|
|
|
/// resolved, and NULL otherwise. When @p Complain is true, this
|
|
|
|
/// routine will emit diagnostics if there is an error.
|
|
|
|
FunctionDecl *
|
2009-02-05 05:23:32 +08:00
|
|
|
Sema::ResolveAddressOfOverloadedFunction(Expr *From, QualType ToType,
|
2008-11-11 04:40:00 +08:00
|
|
|
bool Complain) {
|
|
|
|
QualType FunctionType = ToType;
|
2009-02-05 05:23:32 +08:00
|
|
|
bool IsMember = false;
|
2009-07-30 05:53:49 +08:00
|
|
|
if (const PointerType *ToTypePtr = ToType->getAs<PointerType>())
|
2008-11-11 04:40:00 +08:00
|
|
|
FunctionType = ToTypePtr->getPointeeType();
|
2009-07-30 05:53:49 +08:00
|
|
|
else if (const ReferenceType *ToTypeRef = ToType->getAs<ReferenceType>())
|
2009-02-27 03:13:44 +08:00
|
|
|
FunctionType = ToTypeRef->getPointeeType();
|
2009-02-05 05:23:32 +08:00
|
|
|
else if (const MemberPointerType *MemTypePtr =
|
2009-07-30 05:53:49 +08:00
|
|
|
ToType->getAs<MemberPointerType>()) {
|
2009-02-05 05:23:32 +08:00
|
|
|
FunctionType = MemTypePtr->getPointeeType();
|
|
|
|
IsMember = true;
|
|
|
|
}
|
2008-11-11 04:40:00 +08:00
|
|
|
|
|
|
|
// We only look at pointers or references to functions.
|
2009-07-10 01:16:51 +08:00
|
|
|
FunctionType = Context.getCanonicalType(FunctionType).getUnqualifiedType();
|
2009-07-09 04:55:45 +08:00
|
|
|
if (!FunctionType->isFunctionType())
|
2008-11-11 04:40:00 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
// Find the actual overloaded function declaration.
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-11-11 04:40:00 +08:00
|
|
|
// C++ [over.over]p1:
|
|
|
|
// [...] [Note: any redundant set of parentheses surrounding the
|
|
|
|
// overloaded function name is ignored (5.1). ]
|
|
|
|
Expr *OvlExpr = From->IgnoreParens();
|
|
|
|
|
|
|
|
// C++ [over.over]p1:
|
|
|
|
// [...] The overloaded function name can be preceded by the &
|
|
|
|
// operator.
|
|
|
|
if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(OvlExpr)) {
|
|
|
|
if (UnOp->getOpcode() == UnaryOperator::AddrOf)
|
|
|
|
OvlExpr = UnOp->getSubExpr()->IgnoreParens();
|
|
|
|
}
|
|
|
|
|
2009-10-21 06:53:47 +08:00
|
|
|
bool HasExplicitTemplateArgs = false;
|
2009-11-23 09:53:49 +08:00
|
|
|
TemplateArgumentListInfo ExplicitTemplateArgs;
|
2009-11-21 16:51:07 +08:00
|
|
|
|
|
|
|
llvm::SmallVector<NamedDecl*,8> Fns;
|
2009-10-21 06:53:47 +08:00
|
|
|
|
2009-12-01 06:42:35 +08:00
|
|
|
// Look into the overloaded expression.
|
2009-11-25 03:00:30 +08:00
|
|
|
if (UnresolvedLookupExpr *UL
|
2009-11-21 16:51:07 +08:00
|
|
|
= dyn_cast<UnresolvedLookupExpr>(OvlExpr)) {
|
|
|
|
Fns.append(UL->decls_begin(), UL->decls_end());
|
2009-11-25 03:00:30 +08:00
|
|
|
if (UL->hasExplicitTemplateArgs()) {
|
|
|
|
HasExplicitTemplateArgs = true;
|
|
|
|
UL->copyTemplateArgumentsInto(ExplicitTemplateArgs);
|
|
|
|
}
|
2009-12-01 06:42:35 +08:00
|
|
|
} else if (UnresolvedMemberExpr *ME
|
|
|
|
= dyn_cast<UnresolvedMemberExpr>(OvlExpr)) {
|
|
|
|
Fns.append(ME->decls_begin(), ME->decls_end());
|
|
|
|
if (ME->hasExplicitTemplateArgs()) {
|
|
|
|
HasExplicitTemplateArgs = true;
|
2009-11-23 09:53:49 +08:00
|
|
|
ME->copyTemplateArgumentsInto(ExplicitTemplateArgs);
|
2009-12-01 06:42:35 +08:00
|
|
|
}
|
2009-07-09 04:55:45 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-11-21 16:51:07 +08:00
|
|
|
// If we didn't actually find anything, we're done.
|
|
|
|
if (Fns.empty())
|
|
|
|
return 0;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-11-11 04:40:00 +08:00
|
|
|
// Look through all of the overloaded functions, searching for one
|
|
|
|
// whose type matches exactly.
|
2009-07-09 07:33:52 +08:00
|
|
|
llvm::SmallPtrSet<FunctionDecl *, 4> Matches;
|
|
|
|
bool FoundNonTemplateFunction = false;
|
2009-11-21 16:51:07 +08:00
|
|
|
for (llvm::SmallVectorImpl<NamedDecl*>::iterator I = Fns.begin(),
|
|
|
|
E = Fns.end(); I != E; ++I) {
|
2009-12-29 14:17:27 +08:00
|
|
|
// Look through any using declarations to find the underlying function.
|
|
|
|
NamedDecl *Fn = (*I)->getUnderlyingDecl();
|
|
|
|
|
2008-11-11 04:40:00 +08:00
|
|
|
// C++ [over.over]p3:
|
|
|
|
// Non-member functions and static member functions match
|
2009-02-05 20:33:33 +08:00
|
|
|
// targets of type "pointer-to-function" or "reference-to-function."
|
|
|
|
// Nonstatic member functions match targets of
|
2009-02-05 05:23:32 +08:00
|
|
|
// type "pointer-to-member-function."
|
|
|
|
// Note that according to DR 247, the containing class does not matter.
|
2009-07-09 04:55:45 +08:00
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
if (FunctionTemplateDecl *FunctionTemplate
|
2009-12-29 14:17:27 +08:00
|
|
|
= dyn_cast<FunctionTemplateDecl>(Fn)) {
|
2009-09-09 23:08:12 +08:00
|
|
|
if (CXXMethodDecl *Method
|
2009-07-09 07:33:52 +08:00
|
|
|
= dyn_cast<CXXMethodDecl>(FunctionTemplate->getTemplatedDecl())) {
|
2009-09-09 23:08:12 +08:00
|
|
|
// Skip non-static function templates when converting to pointer, and
|
2009-07-09 07:33:52 +08:00
|
|
|
// static when converting to member pointer.
|
|
|
|
if (Method->isStatic() == IsMember)
|
|
|
|
continue;
|
|
|
|
} else if (IsMember)
|
|
|
|
continue;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-09 07:33:52 +08:00
|
|
|
// C++ [over.over]p2:
|
2009-09-09 23:08:12 +08:00
|
|
|
// If the name is a function template, template argument deduction is
|
|
|
|
// done (14.8.2.2), and if the argument deduction succeeds, the
|
|
|
|
// resulting template argument list is used to generate a single
|
|
|
|
// function template specialization, which is added to the set of
|
2009-07-09 07:33:52 +08:00
|
|
|
// overloaded functions considered.
|
2009-09-25 07:14:47 +08:00
|
|
|
// FIXME: We don't really want to build the specialization here, do we?
|
2009-07-09 04:55:45 +08:00
|
|
|
FunctionDecl *Specialization = 0;
|
|
|
|
TemplateDeductionInfo Info(Context);
|
|
|
|
if (TemplateDeductionResult Result
|
2009-11-23 09:53:49 +08:00
|
|
|
= DeduceTemplateArguments(FunctionTemplate,
|
|
|
|
(HasExplicitTemplateArgs ? &ExplicitTemplateArgs : 0),
|
2009-07-09 04:55:45 +08:00
|
|
|
FunctionType, Specialization, Info)) {
|
|
|
|
// FIXME: make a note of the failed deduction for diagnostics.
|
|
|
|
(void)Result;
|
|
|
|
} else {
|
2009-09-25 07:14:47 +08:00
|
|
|
// FIXME: If the match isn't exact, shouldn't we just drop this as
|
|
|
|
// a candidate? Find a testcase before changing the code.
|
2009-09-09 23:08:12 +08:00
|
|
|
assert(FunctionType
|
2009-07-09 04:55:45 +08:00
|
|
|
== Context.getCanonicalType(Specialization->getType()));
|
2009-07-09 07:33:52 +08:00
|
|
|
Matches.insert(
|
2009-07-18 08:34:25 +08:00
|
|
|
cast<FunctionDecl>(Specialization->getCanonicalDecl()));
|
2009-07-09 04:55:45 +08:00
|
|
|
}
|
2009-11-21 16:51:07 +08:00
|
|
|
|
|
|
|
continue;
|
2009-07-09 04:55:45 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-12-29 14:17:27 +08:00
|
|
|
if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Fn)) {
|
2009-02-05 05:23:32 +08:00
|
|
|
// Skip non-static functions when converting to pointer, and static
|
|
|
|
// when converting to member pointer.
|
|
|
|
if (Method->isStatic() == IsMember)
|
2008-11-11 04:40:00 +08:00
|
|
|
continue;
|
2009-10-24 12:59:53 +08:00
|
|
|
|
|
|
|
// If we have explicit template arguments, skip non-templates.
|
|
|
|
if (HasExplicitTemplateArgs)
|
|
|
|
continue;
|
2009-07-09 07:33:52 +08:00
|
|
|
} else if (IsMember)
|
2009-02-05 05:23:32 +08:00
|
|
|
continue;
|
2008-11-11 04:40:00 +08:00
|
|
|
|
2009-12-29 14:17:27 +08:00
|
|
|
if (FunctionDecl *FunDecl = dyn_cast<FunctionDecl>(Fn)) {
|
2009-12-09 08:47:37 +08:00
|
|
|
QualType ResultTy;
|
|
|
|
if (Context.hasSameUnqualifiedType(FunctionType, FunDecl->getType()) ||
|
|
|
|
IsNoReturnConversion(Context, FunDecl->getType(), FunctionType,
|
|
|
|
ResultTy)) {
|
2009-11-21 16:51:07 +08:00
|
|
|
Matches.insert(cast<FunctionDecl>(FunDecl->getCanonicalDecl()));
|
2009-07-09 07:33:52 +08:00
|
|
|
FoundNonTemplateFunction = true;
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
}
|
2008-11-11 04:40:00 +08:00
|
|
|
}
|
|
|
|
|
2009-07-09 07:33:52 +08:00
|
|
|
// If there were 0 or 1 matches, we're done.
|
|
|
|
if (Matches.empty())
|
|
|
|
return 0;
|
2009-10-18 05:12:09 +08:00
|
|
|
else if (Matches.size() == 1) {
|
|
|
|
FunctionDecl *Result = *Matches.begin();
|
|
|
|
MarkDeclarationReferenced(From->getLocStart(), Result);
|
|
|
|
return Result;
|
|
|
|
}
|
2009-07-09 07:33:52 +08:00
|
|
|
|
|
|
|
// C++ [over.over]p4:
|
|
|
|
// If more than one function is selected, [...]
|
2009-08-22 07:19:43 +08:00
|
|
|
typedef llvm::SmallPtrSet<FunctionDecl *, 4>::iterator MatchIter;
|
2009-09-26 11:56:17 +08:00
|
|
|
if (!FoundNonTemplateFunction) {
|
2009-08-22 07:19:43 +08:00
|
|
|
// [...] and any given function template specialization F1 is
|
|
|
|
// eliminated if the set contains a second function template
|
|
|
|
// specialization whose function template is more specialized
|
|
|
|
// than the function template of F1 according to the partial
|
|
|
|
// ordering rules of 14.5.5.2.
|
|
|
|
|
|
|
|
// The algorithm specified above is quadratic. We instead use a
|
|
|
|
// two-pass algorithm (similar to the one used to identify the
|
|
|
|
// best viable function in an overload set) that identifies the
|
|
|
|
// best function template (if it exists).
|
2009-10-18 05:12:09 +08:00
|
|
|
llvm::SmallVector<FunctionDecl *, 8> TemplateMatches(Matches.begin(),
|
2009-09-26 11:56:17 +08:00
|
|
|
Matches.end());
|
2009-10-18 05:12:09 +08:00
|
|
|
FunctionDecl *Result =
|
|
|
|
getMostSpecialized(TemplateMatches.data(), TemplateMatches.size(),
|
|
|
|
TPOC_Other, From->getLocStart(),
|
|
|
|
PDiag(),
|
|
|
|
PDiag(diag::err_addr_ovl_ambiguous)
|
|
|
|
<< TemplateMatches[0]->getDeclName(),
|
2010-01-06 17:43:14 +08:00
|
|
|
PDiag(diag::note_ovl_template_candidate));
|
2009-10-18 05:12:09 +08:00
|
|
|
MarkDeclarationReferenced(From->getLocStart(), Result);
|
|
|
|
return Result;
|
2009-07-09 07:33:52 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-09-26 11:56:17 +08:00
|
|
|
// [...] any function template specializations in the set are
|
|
|
|
// eliminated if the set also contains a non-template function, [...]
|
|
|
|
llvm::SmallVector<FunctionDecl *, 4> RemainingMatches;
|
|
|
|
for (MatchIter M = Matches.begin(), MEnd = Matches.end(); M != MEnd; ++M)
|
|
|
|
if ((*M)->getPrimaryTemplate() == 0)
|
|
|
|
RemainingMatches.push_back(*M);
|
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
// [...] After such eliminations, if any, there shall remain exactly one
|
2009-07-09 07:33:52 +08:00
|
|
|
// selected function.
|
2009-10-18 05:12:09 +08:00
|
|
|
if (RemainingMatches.size() == 1) {
|
|
|
|
FunctionDecl *Result = RemainingMatches.front();
|
|
|
|
MarkDeclarationReferenced(From->getLocStart(), Result);
|
|
|
|
return Result;
|
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-07-09 07:33:52 +08:00
|
|
|
// FIXME: We should probably return the same thing that BestViableFunction
|
|
|
|
// returns (even if we issue the diagnostics here).
|
|
|
|
Diag(From->getLocStart(), diag::err_addr_ovl_ambiguous)
|
|
|
|
<< RemainingMatches[0]->getDeclName();
|
|
|
|
for (unsigned I = 0, N = RemainingMatches.size(); I != N; ++I)
|
2010-01-06 17:43:14 +08:00
|
|
|
NoteOverloadCandidate(RemainingMatches[I]);
|
2008-11-11 04:40:00 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-12-22 07:17:24 +08:00
|
|
|
/// \brief Given an expression that refers to an overloaded function, try to
|
|
|
|
/// resolve that overloaded function expression down to a single function.
|
|
|
|
///
|
|
|
|
/// This routine can only resolve template-ids that refer to a single function
|
|
|
|
/// template, where that template-id refers to a single template whose template
|
|
|
|
/// arguments are either provided by the template-id or have defaults,
|
|
|
|
/// as described in C++0x [temp.arg.explicit]p3.
|
|
|
|
FunctionDecl *Sema::ResolveSingleFunctionTemplateSpecialization(Expr *From) {
|
|
|
|
// C++ [over.over]p1:
|
|
|
|
// [...] [Note: any redundant set of parentheses surrounding the
|
|
|
|
// overloaded function name is ignored (5.1). ]
|
|
|
|
Expr *OvlExpr = From->IgnoreParens();
|
|
|
|
|
|
|
|
// C++ [over.over]p1:
|
|
|
|
// [...] The overloaded function name can be preceded by the &
|
|
|
|
// operator.
|
|
|
|
if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(OvlExpr)) {
|
|
|
|
if (UnOp->getOpcode() == UnaryOperator::AddrOf)
|
|
|
|
OvlExpr = UnOp->getSubExpr()->IgnoreParens();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool HasExplicitTemplateArgs = false;
|
|
|
|
TemplateArgumentListInfo ExplicitTemplateArgs;
|
|
|
|
|
|
|
|
llvm::SmallVector<NamedDecl*,8> Fns;
|
|
|
|
|
|
|
|
// Look into the overloaded expression.
|
|
|
|
if (UnresolvedLookupExpr *UL
|
|
|
|
= dyn_cast<UnresolvedLookupExpr>(OvlExpr)) {
|
|
|
|
Fns.append(UL->decls_begin(), UL->decls_end());
|
|
|
|
if (UL->hasExplicitTemplateArgs()) {
|
|
|
|
HasExplicitTemplateArgs = true;
|
|
|
|
UL->copyTemplateArgumentsInto(ExplicitTemplateArgs);
|
|
|
|
}
|
|
|
|
} else if (UnresolvedMemberExpr *ME
|
|
|
|
= dyn_cast<UnresolvedMemberExpr>(OvlExpr)) {
|
|
|
|
Fns.append(ME->decls_begin(), ME->decls_end());
|
|
|
|
if (ME->hasExplicitTemplateArgs()) {
|
|
|
|
HasExplicitTemplateArgs = true;
|
|
|
|
ME->copyTemplateArgumentsInto(ExplicitTemplateArgs);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we didn't actually find any template-ids, we're done.
|
|
|
|
if (Fns.empty() || !HasExplicitTemplateArgs)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
// Look through all of the overloaded functions, searching for one
|
|
|
|
// whose type matches exactly.
|
|
|
|
FunctionDecl *Matched = 0;
|
|
|
|
for (llvm::SmallVectorImpl<NamedDecl*>::iterator I = Fns.begin(),
|
|
|
|
E = Fns.end(); I != E; ++I) {
|
|
|
|
// C++0x [temp.arg.explicit]p3:
|
|
|
|
// [...] In contexts where deduction is done and fails, or in contexts
|
|
|
|
// where deduction is not done, if a template argument list is
|
|
|
|
// specified and it, along with any default template arguments,
|
|
|
|
// identifies a single function template specialization, then the
|
|
|
|
// template-id is an lvalue for the function template specialization.
|
|
|
|
FunctionTemplateDecl *FunctionTemplate = cast<FunctionTemplateDecl>(*I);
|
|
|
|
|
|
|
|
// C++ [over.over]p2:
|
|
|
|
// If the name is a function template, template argument deduction is
|
|
|
|
// done (14.8.2.2), and if the argument deduction succeeds, the
|
|
|
|
// resulting template argument list is used to generate a single
|
|
|
|
// function template specialization, which is added to the set of
|
|
|
|
// overloaded functions considered.
|
|
|
|
FunctionDecl *Specialization = 0;
|
|
|
|
TemplateDeductionInfo Info(Context);
|
|
|
|
if (TemplateDeductionResult Result
|
|
|
|
= DeduceTemplateArguments(FunctionTemplate, &ExplicitTemplateArgs,
|
|
|
|
Specialization, Info)) {
|
|
|
|
// FIXME: make a note of the failed deduction for diagnostics.
|
|
|
|
(void)Result;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Multiple matches; we can't resolve to a single declaration.
|
|
|
|
if (Matched)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
Matched = Specialization;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Matched;
|
|
|
|
}
|
|
|
|
|
2009-09-22 23:41:20 +08:00
|
|
|
/// \brief Add a single candidate to the overload set.
|
|
|
|
static void AddOverloadedCallCandidate(Sema &S,
|
2009-11-21 16:51:07 +08:00
|
|
|
NamedDecl *Callee,
|
2009-11-23 09:53:49 +08:00
|
|
|
const TemplateArgumentListInfo *ExplicitTemplateArgs,
|
2009-09-22 23:41:20 +08:00
|
|
|
Expr **Args, unsigned NumArgs,
|
|
|
|
OverloadCandidateSet &CandidateSet,
|
|
|
|
bool PartialOverloading) {
|
2009-11-21 16:51:07 +08:00
|
|
|
if (isa<UsingShadowDecl>(Callee))
|
|
|
|
Callee = cast<UsingShadowDecl>(Callee)->getTargetDecl();
|
|
|
|
|
2009-09-22 23:41:20 +08:00
|
|
|
if (FunctionDecl *Func = dyn_cast<FunctionDecl>(Callee)) {
|
2009-11-23 09:53:49 +08:00
|
|
|
assert(!ExplicitTemplateArgs && "Explicit template arguments?");
|
2009-09-22 23:41:20 +08:00
|
|
|
S.AddOverloadCandidate(Func, Args, NumArgs, CandidateSet, false, false,
|
|
|
|
PartialOverloading);
|
|
|
|
return;
|
2009-11-21 16:51:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (FunctionTemplateDecl *FuncTemplate
|
|
|
|
= dyn_cast<FunctionTemplateDecl>(Callee)) {
|
2009-11-23 09:53:49 +08:00
|
|
|
S.AddTemplateOverloadCandidate(FuncTemplate, ExplicitTemplateArgs,
|
2009-11-21 16:51:07 +08:00
|
|
|
Args, NumArgs, CandidateSet);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(false && "unhandled case in overloaded call candidate");
|
|
|
|
|
|
|
|
// do nothing?
|
2009-09-22 23:41:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// \brief Add the overload candidates named by callee and/or found by argument
|
|
|
|
/// dependent lookup to the given overload set.
|
2009-12-16 20:17:52 +08:00
|
|
|
void Sema::AddOverloadedCallCandidates(UnresolvedLookupExpr *ULE,
|
2009-09-22 23:41:20 +08:00
|
|
|
Expr **Args, unsigned NumArgs,
|
|
|
|
OverloadCandidateSet &CandidateSet,
|
|
|
|
bool PartialOverloading) {
|
2009-11-21 16:51:07 +08:00
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
// Verify that ArgumentDependentLookup is consistent with the rules
|
|
|
|
// in C++0x [basic.lookup.argdep]p3:
|
2009-02-04 23:01:18 +08:00
|
|
|
//
|
|
|
|
// Let X be the lookup set produced by unqualified lookup (3.4.1)
|
|
|
|
// and let Y be the lookup set produced by argument dependent
|
|
|
|
// lookup (defined as follows). If X contains
|
|
|
|
//
|
2009-09-09 23:08:12 +08:00
|
|
|
// -- a declaration of a class member, or
|
2009-02-04 23:01:18 +08:00
|
|
|
//
|
|
|
|
// -- a block-scope function declaration that is not a
|
2009-11-21 16:51:07 +08:00
|
|
|
// using-declaration, or
|
2009-09-09 23:08:12 +08:00
|
|
|
//
|
2009-02-04 23:01:18 +08:00
|
|
|
// -- a declaration that is neither a function or a function
|
|
|
|
// template
|
|
|
|
//
|
2009-09-09 23:08:12 +08:00
|
|
|
// then Y is empty.
|
2009-11-21 16:51:07 +08:00
|
|
|
|
2009-12-16 20:17:52 +08:00
|
|
|
if (ULE->requiresADL()) {
|
|
|
|
for (UnresolvedLookupExpr::decls_iterator I = ULE->decls_begin(),
|
|
|
|
E = ULE->decls_end(); I != E; ++I) {
|
|
|
|
assert(!(*I)->getDeclContext()->isRecord());
|
|
|
|
assert(isa<UsingShadowDecl>(*I) ||
|
|
|
|
!(*I)->getDeclContext()->isFunctionOrMethod());
|
|
|
|
assert((*I)->getUnderlyingDecl()->isFunctionOrFunctionTemplate());
|
2009-11-21 16:51:07 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-12-16 20:17:52 +08:00
|
|
|
// It would be nice to avoid this copy.
|
|
|
|
TemplateArgumentListInfo TABuffer;
|
|
|
|
const TemplateArgumentListInfo *ExplicitTemplateArgs = 0;
|
|
|
|
if (ULE->hasExplicitTemplateArgs()) {
|
|
|
|
ULE->copyTemplateArgumentsInto(TABuffer);
|
|
|
|
ExplicitTemplateArgs = &TABuffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (UnresolvedLookupExpr::decls_iterator I = ULE->decls_begin(),
|
|
|
|
E = ULE->decls_end(); I != E; ++I)
|
2009-11-23 09:53:49 +08:00
|
|
|
AddOverloadedCallCandidate(*this, *I, ExplicitTemplateArgs,
|
2009-11-21 16:51:07 +08:00
|
|
|
Args, NumArgs, CandidateSet,
|
2009-09-22 23:41:20 +08:00
|
|
|
PartialOverloading);
|
2009-11-21 16:51:07 +08:00
|
|
|
|
2009-12-16 20:17:52 +08:00
|
|
|
if (ULE->requiresADL())
|
|
|
|
AddArgumentDependentLookupCandidates(ULE->getName(), Args, NumArgs,
|
2009-09-22 23:41:20 +08:00
|
|
|
ExplicitTemplateArgs,
|
|
|
|
CandidateSet,
|
|
|
|
PartialOverloading);
|
|
|
|
}
|
2009-12-16 16:11:27 +08:00
|
|
|
|
2009-12-16 20:17:52 +08:00
|
|
|
static Sema::OwningExprResult Destroy(Sema &SemaRef, Expr *Fn,
|
|
|
|
Expr **Args, unsigned NumArgs) {
|
|
|
|
Fn->Destroy(SemaRef.Context);
|
|
|
|
for (unsigned Arg = 0; Arg < NumArgs; ++Arg)
|
|
|
|
Args[Arg]->Destroy(SemaRef.Context);
|
|
|
|
return SemaRef.ExprError();
|
|
|
|
}
|
|
|
|
|
2009-12-16 16:11:27 +08:00
|
|
|
/// Attempts to recover from a call where no functions were found.
|
|
|
|
///
|
|
|
|
/// Returns true if new candidates were found.
|
2009-12-16 20:17:52 +08:00
|
|
|
static Sema::OwningExprResult
|
|
|
|
BuildRecoveryCallExpr(Sema &SemaRef, Expr *Fn,
|
|
|
|
UnresolvedLookupExpr *ULE,
|
|
|
|
SourceLocation LParenLoc,
|
|
|
|
Expr **Args, unsigned NumArgs,
|
|
|
|
SourceLocation *CommaLocs,
|
|
|
|
SourceLocation RParenLoc) {
|
2009-12-16 16:11:27 +08:00
|
|
|
|
|
|
|
CXXScopeSpec SS;
|
|
|
|
if (ULE->getQualifier()) {
|
|
|
|
SS.setScopeRep(ULE->getQualifier());
|
|
|
|
SS.setRange(ULE->getQualifierRange());
|
|
|
|
}
|
|
|
|
|
2009-12-16 20:17:52 +08:00
|
|
|
TemplateArgumentListInfo TABuffer;
|
|
|
|
const TemplateArgumentListInfo *ExplicitTemplateArgs = 0;
|
|
|
|
if (ULE->hasExplicitTemplateArgs()) {
|
|
|
|
ULE->copyTemplateArgumentsInto(TABuffer);
|
|
|
|
ExplicitTemplateArgs = &TABuffer;
|
|
|
|
}
|
|
|
|
|
2009-12-16 16:11:27 +08:00
|
|
|
LookupResult R(SemaRef, ULE->getName(), ULE->getNameLoc(),
|
|
|
|
Sema::LookupOrdinaryName);
|
2009-12-31 13:20:13 +08:00
|
|
|
if (SemaRef.DiagnoseEmptyLookup(/*Scope=*/0, SS, R))
|
2009-12-16 20:17:52 +08:00
|
|
|
return Destroy(SemaRef, Fn, Args, NumArgs);
|
2009-12-16 16:11:27 +08:00
|
|
|
|
2009-12-16 20:17:52 +08:00
|
|
|
assert(!R.empty() && "lookup results empty despite recovery");
|
|
|
|
|
|
|
|
// Build an implicit member call if appropriate. Just drop the
|
|
|
|
// casts and such from the call, we don't really care.
|
|
|
|
Sema::OwningExprResult NewFn = SemaRef.ExprError();
|
|
|
|
if ((*R.begin())->isCXXClassMember())
|
|
|
|
NewFn = SemaRef.BuildPossibleImplicitMemberExpr(SS, R, ExplicitTemplateArgs);
|
|
|
|
else if (ExplicitTemplateArgs)
|
|
|
|
NewFn = SemaRef.BuildTemplateIdExpr(SS, R, false, *ExplicitTemplateArgs);
|
|
|
|
else
|
|
|
|
NewFn = SemaRef.BuildDeclarationNameExpr(SS, R, false);
|
|
|
|
|
|
|
|
if (NewFn.isInvalid())
|
|
|
|
return Destroy(SemaRef, Fn, Args, NumArgs);
|
|
|
|
|
|
|
|
Fn->Destroy(SemaRef.Context);
|
|
|
|
|
|
|
|
// This shouldn't cause an infinite loop because we're giving it
|
|
|
|
// an expression with non-empty lookup results, which should never
|
|
|
|
// end up here.
|
|
|
|
return SemaRef.ActOnCallExpr(/*Scope*/ 0, move(NewFn), LParenLoc,
|
|
|
|
Sema::MultiExprArg(SemaRef, (void**) Args, NumArgs),
|
|
|
|
CommaLocs, RParenLoc);
|
2009-12-16 16:11:27 +08:00
|
|
|
}
|
2009-09-22 23:41:20 +08:00
|
|
|
|
|
|
|
/// ResolveOverloadedCallFn - Given the call expression that calls Fn
|
|
|
|
/// (which eventually refers to the declaration Func) and the call
|
|
|
|
/// arguments Args/NumArgs, attempt to resolve the function call down
|
|
|
|
/// to a specific function. If overload resolution succeeds, returns
|
|
|
|
/// the function declaration produced by overload
|
|
|
|
/// resolution. Otherwise, emits diagnostics, deletes all of the
|
|
|
|
/// arguments and Fn, and returns NULL.
|
2009-12-16 20:17:52 +08:00
|
|
|
Sema::OwningExprResult
|
|
|
|
Sema::BuildOverloadedCallExpr(Expr *Fn, UnresolvedLookupExpr *ULE,
|
|
|
|
SourceLocation LParenLoc,
|
|
|
|
Expr **Args, unsigned NumArgs,
|
|
|
|
SourceLocation *CommaLocs,
|
|
|
|
SourceLocation RParenLoc) {
|
|
|
|
#ifndef NDEBUG
|
|
|
|
if (ULE->requiresADL()) {
|
|
|
|
// To do ADL, we must have found an unqualified name.
|
|
|
|
assert(!ULE->getQualifier() && "qualified name with ADL");
|
|
|
|
|
|
|
|
// We don't perform ADL for implicit declarations of builtins.
|
|
|
|
// Verify that this was correctly set up.
|
|
|
|
FunctionDecl *F;
|
|
|
|
if (ULE->decls_begin() + 1 == ULE->decls_end() &&
|
|
|
|
(F = dyn_cast<FunctionDecl>(*ULE->decls_begin())) &&
|
|
|
|
F->getBuiltinID() && F->isImplicit())
|
|
|
|
assert(0 && "performing ADL for builtin");
|
|
|
|
|
|
|
|
// We don't perform ADL in C.
|
|
|
|
assert(getLangOptions().CPlusPlus && "ADL enabled in C");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-09-22 23:41:20 +08:00
|
|
|
OverloadCandidateSet CandidateSet;
|
2009-02-04 08:32:51 +08:00
|
|
|
|
2009-12-16 20:17:52 +08:00
|
|
|
// Add the functions denoted by the callee to the set of candidate
|
|
|
|
// functions, including those from argument-dependent lookup.
|
|
|
|
AddOverloadedCallCandidates(ULE, Args, NumArgs, CandidateSet);
|
2009-12-16 16:11:27 +08:00
|
|
|
|
|
|
|
// If we found nothing, try to recover.
|
|
|
|
// AddRecoveryCallCandidates diagnoses the error itself, so we just
|
|
|
|
// bailout out if it fails.
|
2009-12-16 20:17:52 +08:00
|
|
|
if (CandidateSet.empty())
|
|
|
|
return BuildRecoveryCallExpr(*this, Fn, ULE, LParenLoc, Args, NumArgs,
|
|
|
|
CommaLocs, RParenLoc);
|
2009-12-16 16:11:27 +08:00
|
|
|
|
2008-11-26 13:54:23 +08:00
|
|
|
OverloadCandidateSet::iterator Best;
|
2009-06-20 07:52:42 +08:00
|
|
|
switch (BestViableFunction(CandidateSet, Fn->getLocStart(), Best)) {
|
2009-12-16 20:17:52 +08:00
|
|
|
case OR_Success: {
|
|
|
|
FunctionDecl *FDecl = Best->Function;
|
|
|
|
Fn = FixOverloadedFunctionReference(Fn, FDecl);
|
|
|
|
return BuildResolvedCallExpr(Fn, FDecl, LParenLoc, Args, NumArgs, RParenLoc);
|
|
|
|
}
|
2008-11-26 13:54:23 +08:00
|
|
|
|
|
|
|
case OR_No_Viable_Function:
|
2009-02-17 15:29:20 +08:00
|
|
|
Diag(Fn->getSourceRange().getBegin(),
|
2008-11-26 13:54:23 +08:00
|
|
|
diag::err_ovl_no_viable_function_in_call)
|
2009-12-16 20:17:52 +08:00
|
|
|
<< ULE->getName() << Fn->getSourceRange();
|
2010-01-08 12:41:39 +08:00
|
|
|
PrintOverloadCandidates(CandidateSet, OCD_AllCandidates);
|
2008-11-26 13:54:23 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case OR_Ambiguous:
|
|
|
|
Diag(Fn->getSourceRange().getBegin(), diag::err_ovl_ambiguous_call)
|
2009-12-16 20:17:52 +08:00
|
|
|
<< ULE->getName() << Fn->getSourceRange();
|
2010-01-08 12:41:39 +08:00
|
|
|
PrintOverloadCandidates(CandidateSet, OCD_ViableCandidates);
|
2008-11-26 13:54:23 +08:00
|
|
|
break;
|
2009-02-19 05:56:37 +08:00
|
|
|
|
|
|
|
case OR_Deleted:
|
|
|
|
Diag(Fn->getSourceRange().getBegin(), diag::err_ovl_deleted_call)
|
|
|
|
<< Best->Function->isDeleted()
|
2009-12-16 20:17:52 +08:00
|
|
|
<< ULE->getName()
|
2009-02-19 05:56:37 +08:00
|
|
|
<< Fn->getSourceRange();
|
2010-01-08 12:41:39 +08:00
|
|
|
PrintOverloadCandidates(CandidateSet, OCD_AllCandidates);
|
2009-02-19 05:56:37 +08:00
|
|
|
break;
|
2008-11-26 13:54:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Overload resolution failed. Destroy all of the subexpressions and
|
|
|
|
// return NULL.
|
|
|
|
Fn->Destroy(Context);
|
|
|
|
for (unsigned Arg = 0; Arg < NumArgs; ++Arg)
|
|
|
|
Args[Arg]->Destroy(Context);
|
2009-12-16 20:17:52 +08:00
|
|
|
return ExprError();
|
2008-11-26 13:54:23 +08:00
|
|
|
}
|
|
|
|
|
2009-11-22 08:44:51 +08:00
|
|
|
static bool IsOverloaded(const Sema::FunctionSet &Functions) {
|
|
|
|
return Functions.size() > 1 ||
|
|
|
|
(Functions.size() == 1 && isa<FunctionTemplateDecl>(*Functions.begin()));
|
|
|
|
}
|
|
|
|
|
2009-03-14 07:49:33 +08:00
|
|
|
/// \brief Create a unary operation that may resolve to an overloaded
|
|
|
|
/// operator.
|
|
|
|
///
|
|
|
|
/// \param OpLoc The location of the operator itself (e.g., '*').
|
|
|
|
///
|
|
|
|
/// \param OpcIn The UnaryOperator::Opcode that describes this
|
|
|
|
/// operator.
|
|
|
|
///
|
|
|
|
/// \param Functions The set of non-member functions that will be
|
|
|
|
/// considered by overload resolution. The caller needs to build this
|
|
|
|
/// set based on the context using, e.g.,
|
|
|
|
/// LookupOverloadedOperatorName() and ArgumentDependentLookup(). This
|
|
|
|
/// set should not contain any member functions; those will be added
|
|
|
|
/// by CreateOverloadedUnaryOp().
|
|
|
|
///
|
|
|
|
/// \param input The input argument.
|
|
|
|
Sema::OwningExprResult Sema::CreateOverloadedUnaryOp(SourceLocation OpLoc,
|
|
|
|
unsigned OpcIn,
|
|
|
|
FunctionSet &Functions,
|
2009-09-09 23:08:12 +08:00
|
|
|
ExprArg input) {
|
2009-03-14 07:49:33 +08:00
|
|
|
UnaryOperator::Opcode Opc = static_cast<UnaryOperator::Opcode>(OpcIn);
|
|
|
|
Expr *Input = (Expr *)input.get();
|
|
|
|
|
|
|
|
OverloadedOperatorKind Op = UnaryOperator::getOverloadedOperator(Opc);
|
|
|
|
assert(Op != OO_None && "Invalid opcode for overloaded unary operator");
|
|
|
|
DeclarationName OpName = Context.DeclarationNames.getCXXOperatorName(Op);
|
|
|
|
|
|
|
|
Expr *Args[2] = { Input, 0 };
|
|
|
|
unsigned NumArgs = 1;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-03-14 07:49:33 +08:00
|
|
|
// For post-increment and post-decrement, add the implicit '0' as
|
|
|
|
// the second argument, so that we know this is a post-increment or
|
|
|
|
// post-decrement.
|
|
|
|
if (Opc == UnaryOperator::PostInc || Opc == UnaryOperator::PostDec) {
|
|
|
|
llvm::APSInt Zero(Context.getTypeSize(Context.IntTy), false);
|
2009-09-09 23:08:12 +08:00
|
|
|
Args[1] = new (Context) IntegerLiteral(Zero, Context.IntTy,
|
2009-03-14 07:49:33 +08:00
|
|
|
SourceLocation());
|
|
|
|
NumArgs = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Input->isTypeDependent()) {
|
2009-11-21 16:51:07 +08:00
|
|
|
UnresolvedLookupExpr *Fn
|
2009-11-25 03:00:30 +08:00
|
|
|
= UnresolvedLookupExpr::Create(Context, /*Dependent*/ true,
|
|
|
|
0, SourceRange(), OpName, OpLoc,
|
2009-11-22 08:44:51 +08:00
|
|
|
/*ADL*/ true, IsOverloaded(Functions));
|
2009-09-09 23:08:12 +08:00
|
|
|
for (FunctionSet::iterator Func = Functions.begin(),
|
2009-03-14 07:49:33 +08:00
|
|
|
FuncEnd = Functions.end();
|
|
|
|
Func != FuncEnd; ++Func)
|
2009-11-21 16:51:07 +08:00
|
|
|
Fn->addDecl(*Func);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-03-14 07:49:33 +08:00
|
|
|
input.release();
|
|
|
|
return Owned(new (Context) CXXOperatorCallExpr(Context, Op, Fn,
|
|
|
|
&Args[0], NumArgs,
|
|
|
|
Context.DependentTy,
|
|
|
|
OpLoc));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build an empty overload set.
|
|
|
|
OverloadCandidateSet CandidateSet;
|
|
|
|
|
|
|
|
// Add the candidates from the given function set.
|
|
|
|
AddFunctionCandidates(Functions, &Args[0], NumArgs, CandidateSet, false);
|
|
|
|
|
|
|
|
// Add operator candidates that are member functions.
|
|
|
|
AddMemberOperatorCandidates(Op, OpLoc, &Args[0], NumArgs, CandidateSet);
|
|
|
|
|
|
|
|
// Add builtin operator candidates.
|
2009-10-22 07:19:44 +08:00
|
|
|
AddBuiltinOperatorCandidates(Op, OpLoc, &Args[0], NumArgs, CandidateSet);
|
2009-03-14 07:49:33 +08:00
|
|
|
|
|
|
|
// Perform overload resolution.
|
|
|
|
OverloadCandidateSet::iterator Best;
|
2009-06-20 07:52:42 +08:00
|
|
|
switch (BestViableFunction(CandidateSet, OpLoc, Best)) {
|
2009-03-14 07:49:33 +08:00
|
|
|
case OR_Success: {
|
|
|
|
// We found a built-in operator or an overloaded operator.
|
|
|
|
FunctionDecl *FnDecl = Best->Function;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-03-14 07:49:33 +08:00
|
|
|
if (FnDecl) {
|
|
|
|
// We matched an overloaded operator. Build a call to that
|
|
|
|
// operator.
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-03-14 07:49:33 +08:00
|
|
|
// Convert the arguments.
|
|
|
|
if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) {
|
|
|
|
if (PerformObjectArgumentInitialization(Input, Method))
|
|
|
|
return ExprError();
|
|
|
|
} else {
|
|
|
|
// Convert the arguments.
|
2009-12-24 01:40:29 +08:00
|
|
|
OwningExprResult InputInit
|
|
|
|
= PerformCopyInitialization(InitializedEntity::InitializeParameter(
|
2009-12-23 08:02:00 +08:00
|
|
|
FnDecl->getParamDecl(0)),
|
2009-12-24 01:40:29 +08:00
|
|
|
SourceLocation(),
|
|
|
|
move(input));
|
|
|
|
if (InputInit.isInvalid())
|
2009-03-14 07:49:33 +08:00
|
|
|
return ExprError();
|
2009-12-23 08:02:00 +08:00
|
|
|
|
2009-12-24 01:40:29 +08:00
|
|
|
input = move(InputInit);
|
2009-12-23 08:02:00 +08:00
|
|
|
Input = (Expr *)input.get();
|
2009-03-14 07:49:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Determine the result type
|
2009-10-14 05:19:37 +08:00
|
|
|
QualType ResultTy = FnDecl->getResultType().getNonReferenceType();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-03-14 07:49:33 +08:00
|
|
|
// Build the actual expression node.
|
|
|
|
Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(),
|
|
|
|
SourceLocation());
|
|
|
|
UsualUnaryConversions(FnExpr);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-03-14 07:49:33 +08:00
|
|
|
input.release();
|
2009-11-18 11:58:17 +08:00
|
|
|
Args[0] = Input;
|
2009-10-14 05:19:37 +08:00
|
|
|
ExprOwningPtr<CallExpr> TheCall(this,
|
|
|
|
new (Context) CXXOperatorCallExpr(Context, Op, FnExpr,
|
2009-11-18 11:58:17 +08:00
|
|
|
Args, NumArgs, ResultTy, OpLoc));
|
2009-10-14 05:19:37 +08:00
|
|
|
|
|
|
|
if (CheckCallReturnType(FnDecl->getResultType(), OpLoc, TheCall.get(),
|
|
|
|
FnDecl))
|
|
|
|
return ExprError();
|
|
|
|
|
|
|
|
return MaybeBindToTemporary(TheCall.release());
|
2009-03-14 07:49:33 +08:00
|
|
|
} else {
|
|
|
|
// We matched a built-in operator. Convert the arguments, then
|
|
|
|
// break out so that we will build the appropriate built-in
|
|
|
|
// operator node.
|
|
|
|
if (PerformImplicitConversion(Input, Best->BuiltinTypes.ParamTypes[0],
|
2009-12-16 11:45:30 +08:00
|
|
|
Best->Conversions[0], AA_Passing))
|
2009-03-14 07:49:33 +08:00
|
|
|
return ExprError();
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
case OR_No_Viable_Function:
|
|
|
|
// No viable function; fall through to handling this as a
|
|
|
|
// built-in operator, which will produce an error message for us.
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OR_Ambiguous:
|
|
|
|
Diag(OpLoc, diag::err_ovl_ambiguous_oper)
|
|
|
|
<< UnaryOperator::getOpcodeStr(Opc)
|
|
|
|
<< Input->getSourceRange();
|
2010-01-08 12:41:39 +08:00
|
|
|
PrintOverloadCandidates(CandidateSet, OCD_ViableCandidates,
|
2009-10-13 04:11:40 +08:00
|
|
|
UnaryOperator::getOpcodeStr(Opc), OpLoc);
|
2009-03-14 07:49:33 +08:00
|
|
|
return ExprError();
|
|
|
|
|
|
|
|
case OR_Deleted:
|
|
|
|
Diag(OpLoc, diag::err_ovl_deleted_oper)
|
|
|
|
<< Best->Function->isDeleted()
|
|
|
|
<< UnaryOperator::getOpcodeStr(Opc)
|
|
|
|
<< Input->getSourceRange();
|
2010-01-08 12:41:39 +08:00
|
|
|
PrintOverloadCandidates(CandidateSet, OCD_AllCandidates);
|
2009-03-14 07:49:33 +08:00
|
|
|
return ExprError();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Either we found no viable overloaded operator or we matched a
|
|
|
|
// built-in operator. In either case, fall through to trying to
|
|
|
|
// build a built-in operation.
|
|
|
|
input.release();
|
|
|
|
return CreateBuiltinUnaryOp(OpLoc, Opc, Owned(Input));
|
|
|
|
}
|
|
|
|
|
2009-03-14 02:40:31 +08:00
|
|
|
/// \brief Create a binary operation that may resolve to an overloaded
|
|
|
|
/// operator.
|
|
|
|
///
|
|
|
|
/// \param OpLoc The location of the operator itself (e.g., '+').
|
|
|
|
///
|
|
|
|
/// \param OpcIn The BinaryOperator::Opcode that describes this
|
|
|
|
/// operator.
|
|
|
|
///
|
|
|
|
/// \param Functions The set of non-member functions that will be
|
|
|
|
/// considered by overload resolution. The caller needs to build this
|
|
|
|
/// set based on the context using, e.g.,
|
|
|
|
/// LookupOverloadedOperatorName() and ArgumentDependentLookup(). This
|
|
|
|
/// set should not contain any member functions; those will be added
|
|
|
|
/// by CreateOverloadedBinOp().
|
|
|
|
///
|
|
|
|
/// \param LHS Left-hand argument.
|
|
|
|
/// \param RHS Right-hand argument.
|
2009-09-09 23:08:12 +08:00
|
|
|
Sema::OwningExprResult
|
2009-03-14 02:40:31 +08:00
|
|
|
Sema::CreateOverloadedBinOp(SourceLocation OpLoc,
|
2009-09-09 23:08:12 +08:00
|
|
|
unsigned OpcIn,
|
2009-03-14 02:40:31 +08:00
|
|
|
FunctionSet &Functions,
|
|
|
|
Expr *LHS, Expr *RHS) {
|
|
|
|
Expr *Args[2] = { LHS, RHS };
|
2009-08-27 01:08:25 +08:00
|
|
|
LHS=RHS=0; //Please use only Args instead of LHS/RHS couple
|
2009-03-14 02:40:31 +08:00
|
|
|
|
|
|
|
BinaryOperator::Opcode Opc = static_cast<BinaryOperator::Opcode>(OpcIn);
|
|
|
|
OverloadedOperatorKind Op = BinaryOperator::getOverloadedOperator(Opc);
|
|
|
|
DeclarationName OpName = Context.DeclarationNames.getCXXOperatorName(Op);
|
|
|
|
|
|
|
|
// If either side is type-dependent, create an appropriate dependent
|
|
|
|
// expression.
|
2009-08-27 01:08:25 +08:00
|
|
|
if (Args[0]->isTypeDependent() || Args[1]->isTypeDependent()) {
|
2009-11-05 08:51:44 +08:00
|
|
|
if (Functions.empty()) {
|
|
|
|
// If there are no functions to store, just build a dependent
|
|
|
|
// BinaryOperator or CompoundAssignment.
|
|
|
|
if (Opc <= BinaryOperator::Assign || Opc > BinaryOperator::OrAssign)
|
|
|
|
return Owned(new (Context) BinaryOperator(Args[0], Args[1], Opc,
|
|
|
|
Context.DependentTy, OpLoc));
|
|
|
|
|
|
|
|
return Owned(new (Context) CompoundAssignOperator(Args[0], Args[1], Opc,
|
|
|
|
Context.DependentTy,
|
|
|
|
Context.DependentTy,
|
|
|
|
Context.DependentTy,
|
|
|
|
OpLoc));
|
|
|
|
}
|
|
|
|
|
2009-11-21 16:51:07 +08:00
|
|
|
UnresolvedLookupExpr *Fn
|
2009-11-25 03:00:30 +08:00
|
|
|
= UnresolvedLookupExpr::Create(Context, /*Dependent*/ true,
|
|
|
|
0, SourceRange(), OpName, OpLoc,
|
2009-11-22 08:44:51 +08:00
|
|
|
/* ADL */ true, IsOverloaded(Functions));
|
2009-11-21 16:51:07 +08:00
|
|
|
|
2009-09-09 23:08:12 +08:00
|
|
|
for (FunctionSet::iterator Func = Functions.begin(),
|
2009-03-14 02:40:31 +08:00
|
|
|
FuncEnd = Functions.end();
|
|
|
|
Func != FuncEnd; ++Func)
|
2009-11-21 16:51:07 +08:00
|
|
|
Fn->addDecl(*Func);
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-03-14 02:40:31 +08:00
|
|
|
return Owned(new (Context) CXXOperatorCallExpr(Context, Op, Fn,
|
2009-09-09 23:08:12 +08:00
|
|
|
Args, 2,
|
2009-03-14 02:40:31 +08:00
|
|
|
Context.DependentTy,
|
|
|
|
OpLoc));
|
|
|
|
}
|
|
|
|
|
|
|
|
// If this is the .* operator, which is not overloadable, just
|
|
|
|
// create a built-in binary operator.
|
|
|
|
if (Opc == BinaryOperator::PtrMemD)
|
2009-08-27 01:08:25 +08:00
|
|
|
return CreateBuiltinBinOp(OpLoc, Opc, Args[0], Args[1]);
|
2009-03-14 02:40:31 +08:00
|
|
|
|
2009-11-19 07:10:33 +08:00
|
|
|
// If this is the assignment operator, we only perform overload resolution
|
|
|
|
// if the left-hand side is a class or enumeration type. This is actually
|
|
|
|
// a hack. The standard requires that we do overload resolution between the
|
|
|
|
// various built-in candidates, but as DR507 points out, this can lead to
|
|
|
|
// problems. So we do it this way, which pretty much follows what GCC does.
|
|
|
|
// Note that we go the traditional code path for compound assignment forms.
|
|
|
|
if (Opc==BinaryOperator::Assign && !Args[0]->getType()->isOverloadableType())
|
2009-08-27 01:08:25 +08:00
|
|
|
return CreateBuiltinBinOp(OpLoc, Opc, Args[0], Args[1]);
|
2009-03-14 02:40:31 +08:00
|
|
|
|
2009-03-14 07:49:33 +08:00
|
|
|
// Build an empty overload set.
|
|
|
|
OverloadCandidateSet CandidateSet;
|
2009-03-14 02:40:31 +08:00
|
|
|
|
|
|
|
// Add the candidates from the given function set.
|
|
|
|
AddFunctionCandidates(Functions, Args, 2, CandidateSet, false);
|
|
|
|
|
|
|
|
// Add operator candidates that are member functions.
|
|
|
|
AddMemberOperatorCandidates(Op, OpLoc, Args, 2, CandidateSet);
|
|
|
|
|
|
|
|
// Add builtin operator candidates.
|
2009-10-22 07:19:44 +08:00
|
|
|
AddBuiltinOperatorCandidates(Op, OpLoc, Args, 2, CandidateSet);
|
2009-03-14 02:40:31 +08:00
|
|
|
|
|
|
|
// Perform overload resolution.
|
|
|
|
OverloadCandidateSet::iterator Best;
|
2009-06-20 07:52:42 +08:00
|
|
|
switch (BestViableFunction(CandidateSet, OpLoc, Best)) {
|
2009-04-17 01:51:27 +08:00
|
|
|
case OR_Success: {
|
2009-03-14 02:40:31 +08:00
|
|
|
// We found a built-in operator or an overloaded operator.
|
|
|
|
FunctionDecl *FnDecl = Best->Function;
|
|
|
|
|
|
|
|
if (FnDecl) {
|
|
|
|
// We matched an overloaded operator. Build a call to that
|
|
|
|
// operator.
|
|
|
|
|
|
|
|
// Convert the arguments.
|
|
|
|
if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) {
|
2009-12-23 05:44:34 +08:00
|
|
|
OwningExprResult Arg1
|
|
|
|
= PerformCopyInitialization(
|
|
|
|
InitializedEntity::InitializeParameter(
|
|
|
|
FnDecl->getParamDecl(0)),
|
|
|
|
SourceLocation(),
|
|
|
|
Owned(Args[1]));
|
|
|
|
if (Arg1.isInvalid())
|
2009-03-14 02:40:31 +08:00
|
|
|
return ExprError();
|
2009-12-23 05:44:34 +08:00
|
|
|
|
|
|
|
if (PerformObjectArgumentInitialization(Args[0], Method))
|
|
|
|
return ExprError();
|
|
|
|
|
|
|
|
Args[1] = RHS = Arg1.takeAs<Expr>();
|
2009-03-14 02:40:31 +08:00
|
|
|
} else {
|
|
|
|
// Convert the arguments.
|
2009-12-23 05:44:34 +08:00
|
|
|
OwningExprResult Arg0
|
|
|
|
= PerformCopyInitialization(
|
|
|
|
InitializedEntity::InitializeParameter(
|
|
|
|
FnDecl->getParamDecl(0)),
|
|
|
|
SourceLocation(),
|
|
|
|
Owned(Args[0]));
|
|
|
|
if (Arg0.isInvalid())
|
|
|
|
return ExprError();
|
|
|
|
|
|
|
|
OwningExprResult Arg1
|
|
|
|
= PerformCopyInitialization(
|
|
|
|
InitializedEntity::InitializeParameter(
|
|
|
|
FnDecl->getParamDecl(1)),
|
|
|
|
SourceLocation(),
|
|
|
|
Owned(Args[1]));
|
|
|
|
if (Arg1.isInvalid())
|
2009-03-14 02:40:31 +08:00
|
|
|
return ExprError();
|
2009-12-23 05:44:34 +08:00
|
|
|
Args[0] = LHS = Arg0.takeAs<Expr>();
|
|
|
|
Args[1] = RHS = Arg1.takeAs<Expr>();
|
2009-03-14 02:40:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Determine the result type
|
|
|
|
QualType ResultTy
|
2009-09-22 07:43:11 +08:00
|
|
|
= FnDecl->getType()->getAs<FunctionType>()->getResultType();
|
2009-03-14 02:40:31 +08:00
|
|
|
ResultTy = ResultTy.getNonReferenceType();
|
|
|
|
|
|
|
|
// Build the actual expression node.
|
|
|
|
Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(),
|
2009-07-14 11:19:38 +08:00
|
|
|
OpLoc);
|
2009-03-14 02:40:31 +08:00
|
|
|
UsualUnaryConversions(FnExpr);
|
|
|
|
|
2009-10-14 06:43:21 +08:00
|
|
|
ExprOwningPtr<CXXOperatorCallExpr>
|
|
|
|
TheCall(this, new (Context) CXXOperatorCallExpr(Context, Op, FnExpr,
|
|
|
|
Args, 2, ResultTy,
|
|
|
|
OpLoc));
|
|
|
|
|
|
|
|
if (CheckCallReturnType(FnDecl->getResultType(), OpLoc, TheCall.get(),
|
|
|
|
FnDecl))
|
|
|
|
return ExprError();
|
|
|
|
|
|
|
|
return MaybeBindToTemporary(TheCall.release());
|
2009-03-14 02:40:31 +08:00
|
|
|
} else {
|
|
|
|
// We matched a built-in operator. Convert the arguments, then
|
|
|
|
// break out so that we will build the appropriate built-in
|
|
|
|
// operator node.
|
2009-08-27 01:08:25 +08:00
|
|
|
if (PerformImplicitConversion(Args[0], Best->BuiltinTypes.ParamTypes[0],
|
2009-12-16 11:45:30 +08:00
|
|
|
Best->Conversions[0], AA_Passing) ||
|
2009-08-27 01:08:25 +08:00
|
|
|
PerformImplicitConversion(Args[1], Best->BuiltinTypes.ParamTypes[1],
|
2009-12-16 11:45:30 +08:00
|
|
|
Best->Conversions[1], AA_Passing))
|
2009-03-14 02:40:31 +08:00
|
|
|
return ExprError();
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-01 05:46:01 +08:00
|
|
|
case OR_No_Viable_Function: {
|
|
|
|
// C++ [over.match.oper]p9:
|
|
|
|
// If the operator is the operator , [...] and there are no
|
|
|
|
// viable functions, then the operator is assumed to be the
|
|
|
|
// built-in operator and interpreted according to clause 5.
|
|
|
|
if (Opc == BinaryOperator::Comma)
|
|
|
|
break;
|
|
|
|
|
2009-05-21 19:50:50 +08:00
|
|
|
// For class as left operand for assignment or compound assigment operator
|
|
|
|
// do not fall through to handling in built-in, but report that no overloaded
|
|
|
|
// assignment operator found
|
2009-10-01 05:46:01 +08:00
|
|
|
OwningExprResult Result = ExprError();
|
|
|
|
if (Args[0]->getType()->isRecordType() &&
|
|
|
|
Opc >= BinaryOperator::Assign && Opc <= BinaryOperator::OrAssign) {
|
2009-05-21 19:50:50 +08:00
|
|
|
Diag(OpLoc, diag::err_ovl_no_viable_oper)
|
|
|
|
<< BinaryOperator::getOpcodeStr(Opc)
|
2009-08-27 01:08:25 +08:00
|
|
|
<< Args[0]->getSourceRange() << Args[1]->getSourceRange();
|
2009-10-01 05:46:01 +08:00
|
|
|
} else {
|
|
|
|
// No viable function; try to create a built-in operation, which will
|
|
|
|
// produce an error. Then, show the non-viable candidates.
|
|
|
|
Result = CreateBuiltinBinOp(OpLoc, Opc, Args[0], Args[1]);
|
2009-05-21 19:50:50 +08:00
|
|
|
}
|
2009-10-01 05:46:01 +08:00
|
|
|
assert(Result.isInvalid() &&
|
|
|
|
"C++ binary operator overloading is missing candidates!");
|
|
|
|
if (Result.isInvalid())
|
2010-01-08 12:41:39 +08:00
|
|
|
PrintOverloadCandidates(CandidateSet, OCD_AllCandidates,
|
2009-10-13 04:11:40 +08:00
|
|
|
BinaryOperator::getOpcodeStr(Opc), OpLoc);
|
2009-10-01 05:46:01 +08:00
|
|
|
return move(Result);
|
|
|
|
}
|
2009-03-14 02:40:31 +08:00
|
|
|
|
|
|
|
case OR_Ambiguous:
|
|
|
|
Diag(OpLoc, diag::err_ovl_ambiguous_oper)
|
|
|
|
<< BinaryOperator::getOpcodeStr(Opc)
|
2009-08-27 01:08:25 +08:00
|
|
|
<< Args[0]->getSourceRange() << Args[1]->getSourceRange();
|
2010-01-08 12:41:39 +08:00
|
|
|
PrintOverloadCandidates(CandidateSet, OCD_ViableCandidates,
|
2009-10-13 04:11:40 +08:00
|
|
|
BinaryOperator::getOpcodeStr(Opc), OpLoc);
|
2009-03-14 02:40:31 +08:00
|
|
|
return ExprError();
|
|
|
|
|
|
|
|
case OR_Deleted:
|
|
|
|
Diag(OpLoc, diag::err_ovl_deleted_oper)
|
|
|
|
<< Best->Function->isDeleted()
|
|
|
|
<< BinaryOperator::getOpcodeStr(Opc)
|
2009-08-27 01:08:25 +08:00
|
|
|
<< Args[0]->getSourceRange() << Args[1]->getSourceRange();
|
2010-01-08 12:41:39 +08:00
|
|
|
PrintOverloadCandidates(CandidateSet, OCD_AllCandidates);
|
2009-03-14 02:40:31 +08:00
|
|
|
return ExprError();
|
|
|
|
}
|
|
|
|
|
2009-10-01 05:46:01 +08:00
|
|
|
// We matched a built-in operator; build it.
|
2009-08-27 01:08:25 +08:00
|
|
|
return CreateBuiltinBinOp(OpLoc, Opc, Args[0], Args[1]);
|
2009-03-14 02:40:31 +08:00
|
|
|
}
|
|
|
|
|
2009-10-30 04:17:01 +08:00
|
|
|
Action::OwningExprResult
|
|
|
|
Sema::CreateOverloadedArraySubscriptExpr(SourceLocation LLoc,
|
|
|
|
SourceLocation RLoc,
|
|
|
|
ExprArg Base, ExprArg Idx) {
|
|
|
|
Expr *Args[2] = { static_cast<Expr*>(Base.get()),
|
|
|
|
static_cast<Expr*>(Idx.get()) };
|
|
|
|
DeclarationName OpName =
|
|
|
|
Context.DeclarationNames.getCXXOperatorName(OO_Subscript);
|
|
|
|
|
|
|
|
// If either side is type-dependent, create an appropriate dependent
|
|
|
|
// expression.
|
|
|
|
if (Args[0]->isTypeDependent() || Args[1]->isTypeDependent()) {
|
|
|
|
|
2009-11-21 16:51:07 +08:00
|
|
|
UnresolvedLookupExpr *Fn
|
2009-11-25 03:00:30 +08:00
|
|
|
= UnresolvedLookupExpr::Create(Context, /*Dependent*/ true,
|
|
|
|
0, SourceRange(), OpName, LLoc,
|
2009-11-22 08:44:51 +08:00
|
|
|
/*ADL*/ true, /*Overloaded*/ false);
|
2009-11-25 03:00:30 +08:00
|
|
|
// Can't add any actual overloads yet
|
2009-10-30 04:17:01 +08:00
|
|
|
|
|
|
|
Base.release();
|
|
|
|
Idx.release();
|
|
|
|
return Owned(new (Context) CXXOperatorCallExpr(Context, OO_Subscript, Fn,
|
|
|
|
Args, 2,
|
|
|
|
Context.DependentTy,
|
|
|
|
RLoc));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build an empty overload set.
|
|
|
|
OverloadCandidateSet CandidateSet;
|
|
|
|
|
|
|
|
// Subscript can only be overloaded as a member function.
|
|
|
|
|
|
|
|
// Add operator candidates that are member functions.
|
|
|
|
AddMemberOperatorCandidates(OO_Subscript, LLoc, Args, 2, CandidateSet);
|
|
|
|
|
|
|
|
// Add builtin operator candidates.
|
|
|
|
AddBuiltinOperatorCandidates(OO_Subscript, LLoc, Args, 2, CandidateSet);
|
|
|
|
|
|
|
|
// Perform overload resolution.
|
|
|
|
OverloadCandidateSet::iterator Best;
|
|
|
|
switch (BestViableFunction(CandidateSet, LLoc, Best)) {
|
|
|
|
case OR_Success: {
|
|
|
|
// We found a built-in operator or an overloaded operator.
|
|
|
|
FunctionDecl *FnDecl = Best->Function;
|
|
|
|
|
|
|
|
if (FnDecl) {
|
|
|
|
// We matched an overloaded operator. Build a call to that
|
|
|
|
// operator.
|
|
|
|
|
|
|
|
// Convert the arguments.
|
|
|
|
CXXMethodDecl *Method = cast<CXXMethodDecl>(FnDecl);
|
|
|
|
if (PerformObjectArgumentInitialization(Args[0], Method) ||
|
|
|
|
PerformCopyInitialization(Args[1],
|
|
|
|
FnDecl->getParamDecl(0)->getType(),
|
2009-12-16 11:45:30 +08:00
|
|
|
AA_Passing))
|
2009-10-30 04:17:01 +08:00
|
|
|
return ExprError();
|
|
|
|
|
|
|
|
// Determine the result type
|
|
|
|
QualType ResultTy
|
|
|
|
= FnDecl->getType()->getAs<FunctionType>()->getResultType();
|
|
|
|
ResultTy = ResultTy.getNonReferenceType();
|
|
|
|
|
|
|
|
// Build the actual expression node.
|
|
|
|
Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(),
|
|
|
|
LLoc);
|
|
|
|
UsualUnaryConversions(FnExpr);
|
|
|
|
|
|
|
|
Base.release();
|
|
|
|
Idx.release();
|
|
|
|
ExprOwningPtr<CXXOperatorCallExpr>
|
|
|
|
TheCall(this, new (Context) CXXOperatorCallExpr(Context, OO_Subscript,
|
|
|
|
FnExpr, Args, 2,
|
|
|
|
ResultTy, RLoc));
|
|
|
|
|
|
|
|
if (CheckCallReturnType(FnDecl->getResultType(), LLoc, TheCall.get(),
|
|
|
|
FnDecl))
|
|
|
|
return ExprError();
|
|
|
|
|
|
|
|
return MaybeBindToTemporary(TheCall.release());
|
|
|
|
} else {
|
|
|
|
// We matched a built-in operator. Convert the arguments, then
|
|
|
|
// break out so that we will build the appropriate built-in
|
|
|
|
// operator node.
|
|
|
|
if (PerformImplicitConversion(Args[0], Best->BuiltinTypes.ParamTypes[0],
|
2009-12-16 11:45:30 +08:00
|
|
|
Best->Conversions[0], AA_Passing) ||
|
2009-10-30 04:17:01 +08:00
|
|
|
PerformImplicitConversion(Args[1], Best->BuiltinTypes.ParamTypes[1],
|
2009-12-16 11:45:30 +08:00
|
|
|
Best->Conversions[1], AA_Passing))
|
2009-10-30 04:17:01 +08:00
|
|
|
return ExprError();
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
case OR_No_Viable_Function: {
|
2010-01-07 10:04:15 +08:00
|
|
|
if (CandidateSet.empty())
|
|
|
|
Diag(LLoc, diag::err_ovl_no_oper)
|
|
|
|
<< Args[0]->getType() << /*subscript*/ 0
|
|
|
|
<< Args[0]->getSourceRange() << Args[1]->getSourceRange();
|
|
|
|
else
|
|
|
|
Diag(LLoc, diag::err_ovl_no_viable_subscript)
|
|
|
|
<< Args[0]->getType()
|
|
|
|
<< Args[0]->getSourceRange() << Args[1]->getSourceRange();
|
2010-01-08 12:41:39 +08:00
|
|
|
PrintOverloadCandidates(CandidateSet, OCD_AllCandidates,
|
2010-01-07 10:04:15 +08:00
|
|
|
"[]", LLoc);
|
|
|
|
return ExprError();
|
2009-10-30 04:17:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
case OR_Ambiguous:
|
|
|
|
Diag(LLoc, diag::err_ovl_ambiguous_oper)
|
|
|
|
<< "[]" << Args[0]->getSourceRange() << Args[1]->getSourceRange();
|
2010-01-08 12:41:39 +08:00
|
|
|
PrintOverloadCandidates(CandidateSet, OCD_ViableCandidates,
|
2009-10-30 04:17:01 +08:00
|
|
|
"[]", LLoc);
|
|
|
|
return ExprError();
|
|
|
|
|
|
|
|
case OR_Deleted:
|
|
|
|
Diag(LLoc, diag::err_ovl_deleted_oper)
|
|
|
|
<< Best->Function->isDeleted() << "[]"
|
|
|
|
<< Args[0]->getSourceRange() << Args[1]->getSourceRange();
|
2010-01-08 12:41:39 +08:00
|
|
|
PrintOverloadCandidates(CandidateSet, OCD_AllCandidates,
|
|
|
|
"[]", LLoc);
|
2009-10-30 04:17:01 +08:00
|
|
|
return ExprError();
|
|
|
|
}
|
|
|
|
|
|
|
|
// We matched a built-in operator; build it.
|
|
|
|
Base.release();
|
|
|
|
Idx.release();
|
|
|
|
return CreateBuiltinArraySubscriptExpr(Owned(Args[0]), LLoc,
|
|
|
|
Owned(Args[1]), RLoc);
|
|
|
|
}
|
|
|
|
|
2008-12-22 13:46:06 +08:00
|
|
|
/// BuildCallToMemberFunction - Build a call to a member
|
|
|
|
/// function. MemExpr is the expression that refers to the member
|
|
|
|
/// function (and includes the object parameter), Args/NumArgs are the
|
|
|
|
/// arguments to the function call (not including the object
|
|
|
|
/// parameter). The caller needs to validate that the member
|
|
|
|
/// expression refers to a member function or an overloaded member
|
|
|
|
/// function.
|
2009-12-02 06:10:20 +08:00
|
|
|
Sema::OwningExprResult
|
2009-09-09 23:08:12 +08:00
|
|
|
Sema::BuildCallToMemberFunction(Scope *S, Expr *MemExprE,
|
|
|
|
SourceLocation LParenLoc, Expr **Args,
|
2008-12-22 13:46:06 +08:00
|
|
|
unsigned NumArgs, SourceLocation *CommaLocs,
|
|
|
|
SourceLocation RParenLoc) {
|
|
|
|
// Dig out the member expression. This holds both the object
|
|
|
|
// argument and the member function we're referring to.
|
2009-12-01 06:42:35 +08:00
|
|
|
Expr *NakedMemExpr = MemExprE->IgnoreParens();
|
|
|
|
|
|
|
|
MemberExpr *MemExpr;
|
2008-12-22 13:46:06 +08:00
|
|
|
CXXMethodDecl *Method = 0;
|
2009-12-01 06:42:35 +08:00
|
|
|
if (isa<MemberExpr>(NakedMemExpr)) {
|
|
|
|
MemExpr = cast<MemberExpr>(NakedMemExpr);
|
|
|
|
Method = cast<CXXMethodDecl>(MemExpr->getMemberDecl());
|
|
|
|
} else {
|
|
|
|
UnresolvedMemberExpr *UnresExpr = cast<UnresolvedMemberExpr>(NakedMemExpr);
|
2009-12-02 06:10:20 +08:00
|
|
|
|
2009-12-03 12:06:58 +08:00
|
|
|
QualType ObjectType = UnresExpr->getBaseType();
|
2009-12-01 06:42:35 +08:00
|
|
|
|
2008-12-22 13:46:06 +08:00
|
|
|
// Add overload candidates
|
|
|
|
OverloadCandidateSet CandidateSet;
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-12-02 06:10:20 +08:00
|
|
|
// FIXME: avoid copy.
|
|
|
|
TemplateArgumentListInfo TemplateArgsBuffer, *TemplateArgs = 0;
|
|
|
|
if (UnresExpr->hasExplicitTemplateArgs()) {
|
|
|
|
UnresExpr->copyTemplateArgumentsInto(TemplateArgsBuffer);
|
|
|
|
TemplateArgs = &TemplateArgsBuffer;
|
|
|
|
}
|
|
|
|
|
2009-12-01 06:42:35 +08:00
|
|
|
for (UnresolvedMemberExpr::decls_iterator I = UnresExpr->decls_begin(),
|
|
|
|
E = UnresExpr->decls_end(); I != E; ++I) {
|
|
|
|
|
2009-12-03 12:06:58 +08:00
|
|
|
NamedDecl *Func = *I;
|
|
|
|
CXXRecordDecl *ActingDC = cast<CXXRecordDecl>(Func->getDeclContext());
|
|
|
|
if (isa<UsingShadowDecl>(Func))
|
|
|
|
Func = cast<UsingShadowDecl>(Func)->getTargetDecl();
|
|
|
|
|
2009-12-01 06:42:35 +08:00
|
|
|
if ((Method = dyn_cast<CXXMethodDecl>(Func))) {
|
2009-10-24 12:59:53 +08:00
|
|
|
// If explicit template arguments were provided, we can't call a
|
|
|
|
// non-template member function.
|
2009-12-02 06:10:20 +08:00
|
|
|
if (TemplateArgs)
|
2009-10-24 12:59:53 +08:00
|
|
|
continue;
|
|
|
|
|
2009-12-03 12:06:58 +08:00
|
|
|
AddMethodCandidate(Method, ActingDC, ObjectType, Args, NumArgs,
|
|
|
|
CandidateSet, /*SuppressUserConversions=*/false);
|
2009-11-23 09:53:49 +08:00
|
|
|
} else {
|
2009-12-01 06:42:35 +08:00
|
|
|
AddMethodTemplateCandidate(cast<FunctionTemplateDecl>(Func),
|
2009-12-03 12:06:58 +08:00
|
|
|
ActingDC, TemplateArgs,
|
|
|
|
ObjectType, Args, NumArgs,
|
2009-08-22 02:42:58 +08:00
|
|
|
CandidateSet,
|
|
|
|
/*SuppressUsedConversions=*/false);
|
2009-11-23 09:53:49 +08:00
|
|
|
}
|
2009-08-22 02:42:58 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-12-01 06:42:35 +08:00
|
|
|
DeclarationName DeclName = UnresExpr->getMemberName();
|
|
|
|
|
2008-12-22 13:46:06 +08:00
|
|
|
OverloadCandidateSet::iterator Best;
|
2009-12-01 06:42:35 +08:00
|
|
|
switch (BestViableFunction(CandidateSet, UnresExpr->getLocStart(), Best)) {
|
2008-12-22 13:46:06 +08:00
|
|
|
case OR_Success:
|
|
|
|
Method = cast<CXXMethodDecl>(Best->Function);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OR_No_Viable_Function:
|
2009-12-01 06:42:35 +08:00
|
|
|
Diag(UnresExpr->getMemberLoc(),
|
2008-12-22 13:46:06 +08:00
|
|
|
diag::err_ovl_no_viable_member_function_in_call)
|
2009-08-21 08:16:32 +08:00
|
|
|
<< DeclName << MemExprE->getSourceRange();
|
2010-01-08 12:41:39 +08:00
|
|
|
PrintOverloadCandidates(CandidateSet, OCD_AllCandidates);
|
2008-12-22 13:46:06 +08:00
|
|
|
// FIXME: Leaking incoming expressions!
|
2009-12-02 06:10:20 +08:00
|
|
|
return ExprError();
|
2008-12-22 13:46:06 +08:00
|
|
|
|
|
|
|
case OR_Ambiguous:
|
2009-12-01 06:42:35 +08:00
|
|
|
Diag(UnresExpr->getMemberLoc(), diag::err_ovl_ambiguous_member_call)
|
2009-08-21 08:16:32 +08:00
|
|
|
<< DeclName << MemExprE->getSourceRange();
|
2010-01-08 12:41:39 +08:00
|
|
|
PrintOverloadCandidates(CandidateSet, OCD_AllCandidates);
|
2008-12-22 13:46:06 +08:00
|
|
|
// FIXME: Leaking incoming expressions!
|
2009-12-02 06:10:20 +08:00
|
|
|
return ExprError();
|
2009-02-19 05:56:37 +08:00
|
|
|
|
|
|
|
case OR_Deleted:
|
2009-12-01 06:42:35 +08:00
|
|
|
Diag(UnresExpr->getMemberLoc(), diag::err_ovl_deleted_member_call)
|
2009-02-19 05:56:37 +08:00
|
|
|
<< Best->Function->isDeleted()
|
2009-08-21 08:16:32 +08:00
|
|
|
<< DeclName << MemExprE->getSourceRange();
|
2010-01-08 12:41:39 +08:00
|
|
|
PrintOverloadCandidates(CandidateSet, OCD_AllCandidates);
|
2009-02-19 05:56:37 +08:00
|
|
|
// FIXME: Leaking incoming expressions!
|
2009-12-02 06:10:20 +08:00
|
|
|
return ExprError();
|
2008-12-22 13:46:06 +08:00
|
|
|
}
|
|
|
|
|
2009-11-21 03:42:02 +08:00
|
|
|
MemExprE = FixOverloadedFunctionReference(MemExprE, Method);
|
2009-12-02 06:10:20 +08:00
|
|
|
|
|
|
|
// If overload resolution picked a static member, build a
|
|
|
|
// non-member call based on that function.
|
|
|
|
if (Method->isStatic()) {
|
|
|
|
return BuildResolvedCallExpr(MemExprE, Method, LParenLoc,
|
|
|
|
Args, NumArgs, RParenLoc);
|
|
|
|
}
|
|
|
|
|
2009-12-01 06:42:35 +08:00
|
|
|
MemExpr = cast<MemberExpr>(MemExprE->IgnoreParens());
|
2008-12-22 13:46:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
assert(Method && "Member call to something that isn't a method?");
|
2009-09-09 23:08:12 +08:00
|
|
|
ExprOwningPtr<CXXMemberCallExpr>
|
2009-12-02 06:10:20 +08:00
|
|
|
TheCall(this, new (Context) CXXMemberCallExpr(Context, MemExprE, Args,
|
2009-09-09 23:08:12 +08:00
|
|
|
NumArgs,
|
2008-12-22 13:46:06 +08:00
|
|
|
Method->getResultType().getNonReferenceType(),
|
|
|
|
RParenLoc));
|
|
|
|
|
2009-10-10 08:06:20 +08:00
|
|
|
// Check for a valid return type.
|
|
|
|
if (CheckCallReturnType(Method->getResultType(), MemExpr->getMemberLoc(),
|
|
|
|
TheCall.get(), Method))
|
2009-12-02 06:10:20 +08:00
|
|
|
return ExprError();
|
2009-10-10 08:06:20 +08:00
|
|
|
|
2008-12-22 13:46:06 +08:00
|
|
|
// Convert the object argument (for a non-static member function call).
|
2009-12-02 06:10:20 +08:00
|
|
|
Expr *ObjectArg = MemExpr->getBase();
|
2009-09-09 23:08:12 +08:00
|
|
|
if (!Method->isStatic() &&
|
2008-12-22 13:46:06 +08:00
|
|
|
PerformObjectArgumentInitialization(ObjectArg, Method))
|
2009-12-02 06:10:20 +08:00
|
|
|
return ExprError();
|
2008-12-22 13:46:06 +08:00
|
|
|
MemExpr->setBase(ObjectArg);
|
|
|
|
|
|
|
|
// Convert the rest of the arguments
|
2009-02-27 07:50:07 +08:00
|
|
|
const FunctionProtoType *Proto = cast<FunctionProtoType>(Method->getType());
|
2009-09-09 23:08:12 +08:00
|
|
|
if (ConvertArgumentsForCall(&*TheCall, MemExpr, Method, Proto, Args, NumArgs,
|
2008-12-22 13:46:06 +08:00
|
|
|
RParenLoc))
|
2009-12-02 06:10:20 +08:00
|
|
|
return ExprError();
|
2008-12-22 13:46:06 +08:00
|
|
|
|
2009-08-16 09:56:34 +08:00
|
|
|
if (CheckFunctionCall(Method, TheCall.get()))
|
2009-12-02 06:10:20 +08:00
|
|
|
return ExprError();
|
2009-08-16 11:42:12 +08:00
|
|
|
|
2009-12-02 06:10:20 +08:00
|
|
|
return MaybeBindToTemporary(TheCall.release());
|
2008-12-22 13:46:06 +08:00
|
|
|
}
|
|
|
|
|
2008-11-20 05:05:33 +08:00
|
|
|
/// BuildCallToObjectOfClassType - Build a call to an object of class
|
|
|
|
/// type (C++ [over.call.object]), which can end up invoking an
|
|
|
|
/// overloaded function call operator (@c operator()) or performing a
|
|
|
|
/// user-defined conversion on the object argument.
|
2009-09-09 23:08:12 +08:00
|
|
|
Sema::ExprResult
|
|
|
|
Sema::BuildCallToObjectOfClassType(Scope *S, Expr *Object,
|
2008-12-06 08:22:45 +08:00
|
|
|
SourceLocation LParenLoc,
|
2008-11-20 05:05:33 +08:00
|
|
|
Expr **Args, unsigned NumArgs,
|
2009-09-09 23:08:12 +08:00
|
|
|
SourceLocation *CommaLocs,
|
2008-11-20 05:05:33 +08:00
|
|
|
SourceLocation RParenLoc) {
|
|
|
|
assert(Object->getType()->isRecordType() && "Requires object type argument");
|
2009-07-30 05:53:49 +08:00
|
|
|
const RecordType *Record = Object->getType()->getAs<RecordType>();
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-11-20 05:05:33 +08:00
|
|
|
// C++ [over.call.object]p1:
|
|
|
|
// If the primary-expression E in the function call syntax
|
2009-08-06 03:21:58 +08:00
|
|
|
// evaluates to a class object of type "cv T", then the set of
|
2008-11-20 05:05:33 +08:00
|
|
|
// candidate functions includes at least the function call
|
|
|
|
// operators of T. The function call operators of T are obtained by
|
|
|
|
// ordinary lookup of the name operator() in the context of
|
|
|
|
// (E).operator().
|
|
|
|
OverloadCandidateSet CandidateSet;
|
2008-12-12 00:49:14 +08:00
|
|
|
DeclarationName OpName = Context.DeclarationNames.getCXXOperatorName(OO_Call);
|
2009-11-15 15:48:03 +08:00
|
|
|
|
|
|
|
if (RequireCompleteType(LParenLoc, Object->getType(),
|
|
|
|
PartialDiagnostic(diag::err_incomplete_object_call)
|
|
|
|
<< Object->getSourceRange()))
|
|
|
|
return true;
|
|
|
|
|
2009-11-17 10:14:36 +08:00
|
|
|
LookupResult R(*this, OpName, LParenLoc, LookupOrdinaryName);
|
|
|
|
LookupQualifiedName(R, Record->getDecl());
|
|
|
|
R.suppressDiagnostics();
|
|
|
|
|
2009-11-15 15:48:03 +08:00
|
|
|
for (LookupResult::iterator Oper = R.begin(), OperEnd = R.end();
|
2009-11-08 01:23:56 +08:00
|
|
|
Oper != OperEnd; ++Oper) {
|
2009-12-03 12:06:58 +08:00
|
|
|
AddMethodCandidate(*Oper, Object->getType(), Args, NumArgs, CandidateSet,
|
2009-11-17 15:50:12 +08:00
|
|
|
/*SuppressUserConversions=*/ false);
|
2009-11-08 01:23:56 +08:00
|
|
|
}
|
2009-10-21 14:18:39 +08:00
|
|
|
|
2008-11-20 06:57:39 +08:00
|
|
|
// C++ [over.call.object]p2:
|
|
|
|
// In addition, for each conversion function declared in T of the
|
|
|
|
// form
|
|
|
|
//
|
|
|
|
// operator conversion-type-id () cv-qualifier;
|
|
|
|
//
|
|
|
|
// where cv-qualifier is the same cv-qualification as, or a
|
|
|
|
// greater cv-qualification than, cv, and where conversion-type-id
|
2008-11-20 21:33:37 +08:00
|
|
|
// denotes the type "pointer to function of (P1,...,Pn) returning
|
|
|
|
// R", or the type "reference to pointer to function of
|
|
|
|
// (P1,...,Pn) returning R", or the type "reference to function
|
|
|
|
// of (P1,...,Pn) returning R", a surrogate call function [...]
|
2008-11-20 06:57:39 +08:00
|
|
|
// is also considered as a candidate function. Similarly,
|
|
|
|
// surrogate call functions are added to the set of candidate
|
|
|
|
// functions for each conversion function declared in an
|
|
|
|
// accessible base class provided the function is not hidden
|
|
|
|
// within T by another intervening declaration.
|
2009-10-21 14:18:39 +08:00
|
|
|
// FIXME: Look in base classes for more conversion operators!
|
2009-11-21 16:51:07 +08:00
|
|
|
const UnresolvedSet *Conversions
|
2009-10-21 14:18:39 +08:00
|
|
|
= cast<CXXRecordDecl>(Record->getDecl())->getConversionFunctions();
|
2009-11-21 16:51:07 +08:00
|
|
|
for (UnresolvedSet::iterator I = Conversions->begin(),
|
|
|
|
E = Conversions->end(); I != E; ++I) {
|
2009-12-03 12:06:58 +08:00
|
|
|
NamedDecl *D = *I;
|
|
|
|
CXXRecordDecl *ActingContext = cast<CXXRecordDecl>(D->getDeclContext());
|
|
|
|
if (isa<UsingShadowDecl>(D))
|
|
|
|
D = cast<UsingShadowDecl>(D)->getTargetDecl();
|
|
|
|
|
2009-10-21 14:18:39 +08:00
|
|
|
// Skip over templated conversion functions; they aren't
|
|
|
|
// surrogates.
|
2009-12-03 12:06:58 +08:00
|
|
|
if (isa<FunctionTemplateDecl>(D))
|
2009-10-21 14:18:39 +08:00
|
|
|
continue;
|
2008-11-20 06:57:39 +08:00
|
|
|
|
2009-12-03 12:06:58 +08:00
|
|
|
CXXConversionDecl *Conv = cast<CXXConversionDecl>(D);
|
2009-11-21 16:51:07 +08:00
|
|
|
|
2009-10-21 14:18:39 +08:00
|
|
|
// Strip the reference type (if any) and then the pointer type (if
|
|
|
|
// any) to get down to what might be a function type.
|
|
|
|
QualType ConvType = Conv->getConversionType().getNonReferenceType();
|
|
|
|
if (const PointerType *ConvPtrType = ConvType->getAs<PointerType>())
|
|
|
|
ConvType = ConvPtrType->getPointeeType();
|
2008-11-20 06:57:39 +08:00
|
|
|
|
2009-10-21 14:18:39 +08:00
|
|
|
if (const FunctionProtoType *Proto = ConvType->getAs<FunctionProtoType>())
|
2009-12-03 12:06:58 +08:00
|
|
|
AddSurrogateCandidate(Conv, ActingContext, Proto,
|
|
|
|
Object->getType(), Args, NumArgs,
|
|
|
|
CandidateSet);
|
2008-11-20 06:57:39 +08:00
|
|
|
}
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-11-20 05:05:33 +08:00
|
|
|
// Perform overload resolution.
|
|
|
|
OverloadCandidateSet::iterator Best;
|
2009-06-20 07:52:42 +08:00
|
|
|
switch (BestViableFunction(CandidateSet, Object->getLocStart(), Best)) {
|
2008-11-20 05:05:33 +08:00
|
|
|
case OR_Success:
|
2008-11-20 06:57:39 +08:00
|
|
|
// Overload resolution succeeded; we'll build the appropriate call
|
|
|
|
// below.
|
2008-11-20 05:05:33 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case OR_No_Viable_Function:
|
2010-01-07 10:04:15 +08:00
|
|
|
if (CandidateSet.empty())
|
|
|
|
Diag(Object->getSourceRange().getBegin(), diag::err_ovl_no_oper)
|
|
|
|
<< Object->getType() << /*call*/ 1
|
|
|
|
<< Object->getSourceRange();
|
|
|
|
else
|
|
|
|
Diag(Object->getSourceRange().getBegin(),
|
|
|
|
diag::err_ovl_no_viable_object_call)
|
|
|
|
<< Object->getType() << Object->getSourceRange();
|
2010-01-08 12:41:39 +08:00
|
|
|
PrintOverloadCandidates(CandidateSet, OCD_AllCandidates);
|
2008-11-20 05:05:33 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case OR_Ambiguous:
|
|
|
|
Diag(Object->getSourceRange().getBegin(),
|
|
|
|
diag::err_ovl_ambiguous_object_call)
|
2008-11-24 14:25:27 +08:00
|
|
|
<< Object->getType() << Object->getSourceRange();
|
2010-01-08 12:41:39 +08:00
|
|
|
PrintOverloadCandidates(CandidateSet, OCD_ViableCandidates);
|
2008-11-20 05:05:33 +08:00
|
|
|
break;
|
2009-02-19 05:56:37 +08:00
|
|
|
|
|
|
|
case OR_Deleted:
|
|
|
|
Diag(Object->getSourceRange().getBegin(),
|
|
|
|
diag::err_ovl_deleted_object_call)
|
|
|
|
<< Best->Function->isDeleted()
|
|
|
|
<< Object->getType() << Object->getSourceRange();
|
2010-01-08 12:41:39 +08:00
|
|
|
PrintOverloadCandidates(CandidateSet, OCD_AllCandidates);
|
2009-02-19 05:56:37 +08:00
|
|
|
break;
|
2009-09-09 23:08:12 +08:00
|
|
|
}
|
2008-11-20 05:05:33 +08:00
|
|
|
|
2008-11-20 06:57:39 +08:00
|
|
|
if (Best == CandidateSet.end()) {
|
2008-11-20 05:05:33 +08:00
|
|
|
// We had an error; delete all of the subexpressions and return
|
|
|
|
// the error.
|
2009-02-07 09:47:29 +08:00
|
|
|
Object->Destroy(Context);
|
2008-11-20 05:05:33 +08:00
|
|
|
for (unsigned ArgIdx = 0; ArgIdx < NumArgs; ++ArgIdx)
|
2009-02-07 09:47:29 +08:00
|
|
|
Args[ArgIdx]->Destroy(Context);
|
2008-11-20 05:05:33 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-11-20 06:57:39 +08:00
|
|
|
if (Best->Function == 0) {
|
|
|
|
// Since there is no function declaration, this is one of the
|
|
|
|
// surrogate candidates. Dig out the conversion function.
|
2009-09-09 23:08:12 +08:00
|
|
|
CXXConversionDecl *Conv
|
2008-11-20 06:57:39 +08:00
|
|
|
= cast<CXXConversionDecl>(
|
|
|
|
Best->Conversions[0].UserDefined.ConversionFunction);
|
|
|
|
|
|
|
|
// We selected one of the surrogate functions that converts the
|
|
|
|
// object parameter to a function pointer. Perform the conversion
|
|
|
|
// on the object argument, then let ActOnCallExpr finish the job.
|
2009-09-29 02:35:46 +08:00
|
|
|
|
|
|
|
// Create an implicit member expr to refer to the conversion operator.
|
2009-09-29 07:23:40 +08:00
|
|
|
// and then call it.
|
2009-12-09 12:52:43 +08:00
|
|
|
CXXMemberCallExpr *CE = BuildCXXMemberCallExpr(Object, Conv);
|
2009-09-29 07:23:40 +08:00
|
|
|
|
2009-09-29 02:35:46 +08:00
|
|
|
return ActOnCallExpr(S, ExprArg(*this, CE), LParenLoc,
|
2009-01-19 08:08:26 +08:00
|
|
|
MultiExprArg(*this, (ExprTy**)Args, NumArgs),
|
|
|
|
CommaLocs, RParenLoc).release();
|
2008-11-20 06:57:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// We found an overloaded operator(). Build a CXXOperatorCallExpr
|
|
|
|
// that calls this method, using Object for the implicit object
|
|
|
|
// parameter and passing along the remaining arguments.
|
|
|
|
CXXMethodDecl *Method = cast<CXXMethodDecl>(Best->Function);
|
2009-09-22 07:43:11 +08:00
|
|
|
const FunctionProtoType *Proto = Method->getType()->getAs<FunctionProtoType>();
|
2008-11-20 05:05:33 +08:00
|
|
|
|
|
|
|
unsigned NumArgsInProto = Proto->getNumArgs();
|
|
|
|
unsigned NumArgsToCheck = NumArgs;
|
|
|
|
|
|
|
|
// Build the full argument list for the method call (the
|
|
|
|
// implicit object parameter is placed at the beginning of the
|
|
|
|
// list).
|
|
|
|
Expr **MethodArgs;
|
|
|
|
if (NumArgs < NumArgsInProto) {
|
|
|
|
NumArgsToCheck = NumArgsInProto;
|
|
|
|
MethodArgs = new Expr*[NumArgsInProto + 1];
|
|
|
|
} else {
|
|
|
|
MethodArgs = new Expr*[NumArgs + 1];
|
|
|
|
}
|
|
|
|
MethodArgs[0] = Object;
|
|
|
|
for (unsigned ArgIdx = 0; ArgIdx < NumArgs; ++ArgIdx)
|
|
|
|
MethodArgs[ArgIdx + 1] = Args[ArgIdx];
|
2009-09-09 23:08:12 +08:00
|
|
|
|
|
|
|
Expr *NewFn = new (Context) DeclRefExpr(Method, Method->getType(),
|
2009-02-07 09:47:29 +08:00
|
|
|
SourceLocation());
|
2008-11-20 05:05:33 +08:00
|
|
|
UsualUnaryConversions(NewFn);
|
|
|
|
|
|
|
|
// Once we've built TheCall, all of the expressions are properly
|
|
|
|
// owned.
|
|
|
|
QualType ResultTy = Method->getResultType().getNonReferenceType();
|
2009-09-09 23:08:12 +08:00
|
|
|
ExprOwningPtr<CXXOperatorCallExpr>
|
|
|
|
TheCall(this, new (Context) CXXOperatorCallExpr(Context, OO_Call, NewFn,
|
2009-03-14 02:40:31 +08:00
|
|
|
MethodArgs, NumArgs + 1,
|
2009-02-07 09:47:29 +08:00
|
|
|
ResultTy, RParenLoc));
|
2008-11-20 05:05:33 +08:00
|
|
|
delete [] MethodArgs;
|
|
|
|
|
2009-10-14 05:49:31 +08:00
|
|
|
if (CheckCallReturnType(Method->getResultType(), LParenLoc, TheCall.get(),
|
|
|
|
Method))
|
|
|
|
return true;
|
|
|
|
|
2009-01-13 13:10:00 +08:00
|
|
|
// We may have default arguments. If so, we need to allocate more
|
|
|
|
// slots in the call for them.
|
|
|
|
if (NumArgs < NumArgsInProto)
|
2009-02-07 09:47:29 +08:00
|
|
|
TheCall->setNumArgs(Context, NumArgsInProto + 1);
|
2009-01-13 13:10:00 +08:00
|
|
|
else if (NumArgs > NumArgsInProto)
|
|
|
|
NumArgsToCheck = NumArgsInProto;
|
|
|
|
|
2009-04-12 16:11:20 +08:00
|
|
|
bool IsError = false;
|
|
|
|
|
2008-11-20 05:05:33 +08:00
|
|
|
// Initialize the implicit object parameter.
|
2009-04-12 16:11:20 +08:00
|
|
|
IsError |= PerformObjectArgumentInitialization(Object, Method);
|
2008-11-20 05:05:33 +08:00
|
|
|
TheCall->setArg(0, Object);
|
|
|
|
|
2009-04-12 16:11:20 +08:00
|
|
|
|
2008-11-20 05:05:33 +08:00
|
|
|
// Check the argument types.
|
|
|
|
for (unsigned i = 0; i != NumArgsToCheck; i++) {
|
|
|
|
Expr *Arg;
|
2009-01-13 13:10:00 +08:00
|
|
|
if (i < NumArgs) {
|
2008-11-20 05:05:33 +08:00
|
|
|
Arg = Args[i];
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2009-01-13 13:10:00 +08:00
|
|
|
// Pass the argument.
|
|
|
|
QualType ProtoArgType = Proto->getArgType(i);
|
2009-12-16 11:45:30 +08:00
|
|
|
IsError |= PerformCopyInitialization(Arg, ProtoArgType, AA_Passing);
|
2009-01-13 13:10:00 +08:00
|
|
|
} else {
|
2009-11-10 03:27:57 +08:00
|
|
|
OwningExprResult DefArg
|
|
|
|
= BuildCXXDefaultArgExpr(LParenLoc, Method, Method->getParamDecl(i));
|
|
|
|
if (DefArg.isInvalid()) {
|
|
|
|
IsError = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
Arg = DefArg.takeAs<Expr>();
|
2009-01-13 13:10:00 +08:00
|
|
|
}
|
2008-11-20 05:05:33 +08:00
|
|
|
|
|
|
|
TheCall->setArg(i + 1, Arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
// If this is a variadic call, handle args passed through "...".
|
|
|
|
if (Proto->isVariadic()) {
|
|
|
|
// Promote the arguments (C99 6.5.2.2p7).
|
|
|
|
for (unsigned i = NumArgsInProto; i != NumArgs; i++) {
|
|
|
|
Expr *Arg = Args[i];
|
2009-04-12 16:11:20 +08:00
|
|
|
IsError |= DefaultVariadicArgumentPromotion(Arg, VariadicMethod);
|
2008-11-20 05:05:33 +08:00
|
|
|
TheCall->setArg(i + 1, Arg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-12 16:11:20 +08:00
|
|
|
if (IsError) return true;
|
|
|
|
|
2009-08-16 09:56:34 +08:00
|
|
|
if (CheckFunctionCall(Method, TheCall.get()))
|
|
|
|
return true;
|
|
|
|
|
2009-08-16 11:53:54 +08:00
|
|
|
return MaybeBindToTemporary(TheCall.release()).release();
|
2008-11-20 05:05:33 +08:00
|
|
|
}
|
|
|
|
|
2008-11-21 00:27:02 +08:00
|
|
|
/// BuildOverloadedArrowExpr - Build a call to an overloaded @c operator->
|
2009-09-09 23:08:12 +08:00
|
|
|
/// (if one exists), where @c Base is an expression of class type and
|
2008-11-21 00:27:02 +08:00
|
|
|
/// @c Member is the name of the member we're trying to find.
|
2009-08-06 11:17:00 +08:00
|
|
|
Sema::OwningExprResult
|
|
|
|
Sema::BuildOverloadedArrowExpr(Scope *S, ExprArg BaseIn, SourceLocation OpLoc) {
|
|
|
|
Expr *Base = static_cast<Expr *>(BaseIn.get());
|
2008-11-21 00:27:02 +08:00
|
|
|
assert(Base->getType()->isRecordType() && "left-hand side must have class type");
|
2009-09-09 23:08:12 +08:00
|
|
|
|
2008-11-21 00:27:02 +08:00
|
|
|
// C++ [over.ref]p1:
|
|
|
|
//
|
|
|
|
// [...] An expression x->m is interpreted as (x.operator->())->m
|
|
|
|
// for a class object x of type T if T::operator->() exists and if
|
|
|
|
// the operator is selected as the best match function by the
|
|
|
|
// overload resolution mechanism (13.3).
|
|
|
|
DeclarationName OpName = Context.DeclarationNames.getCXXOperatorName(OO_Arrow);
|
|
|
|
OverloadCandidateSet CandidateSet;
|
2009-07-30 05:53:49 +08:00
|
|
|
const RecordType *BaseRecord = Base->getType()->getAs<RecordType>();
|
2009-08-06 11:17:00 +08:00
|
|
|
|
2009-11-18 09:28:03 +08:00
|
|
|
if (RequireCompleteType(Base->getLocStart(), Base->getType(),
|
|
|
|
PDiag(diag::err_typecheck_incomplete_tag)
|
|
|
|
<< Base->getSourceRange()))
|
|
|
|
return ExprError();
|
|
|
|
|
2009-11-17 10:14:36 +08:00
|
|
|
LookupResult R(*this, OpName, OpLoc, LookupOrdinaryName);
|
|
|
|
LookupQualifiedName(R, BaseRecord->getDecl());
|
|
|
|
R.suppressDiagnostics();
|
2009-09-11 07:18:36 +08:00
|
|
|
|
|
|
|
for (LookupResult::iterator Oper = R.begin(), OperEnd = R.end();
|
2009-12-03 12:06:58 +08:00
|
|
|
Oper != OperEnd; ++Oper) {
|
|
|
|
NamedDecl *D = *Oper;
|
|
|
|
CXXRecordDecl *ActingContext = cast<CXXRecordDecl>(D->getDeclContext());
|
|
|
|
if (isa<UsingShadowDecl>(D))
|
|
|
|
D = cast<UsingShadowDecl>(D)->getTargetDecl();
|
|
|
|
|
|
|
|
AddMethodCandidate(cast<CXXMethodDecl>(D), ActingContext,
|
|
|
|
Base->getType(), 0, 0, CandidateSet,
|
2008-11-21 00:27:02 +08:00
|
|
|
/*SuppressUserConversions=*/false);
|
2009-12-03 12:06:58 +08:00
|
|
|
}
|
2008-11-21 00:27:02 +08:00
|
|
|
|
|
|
|
// Perform overload resolution.
|
|
|
|
OverloadCandidateSet::iterator Best;
|
2009-06-20 07:52:42 +08:00
|
|
|
switch (BestViableFunction(CandidateSet, OpLoc, Best)) {
|
2008-11-21 00:27:02 +08:00
|
|
|
case OR_Success:
|
|
|
|
// Overload resolution succeeded; we'll build the call below.
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OR_No_Viable_Function:
|
|
|
|
if (CandidateSet.empty())
|
|
|
|
Diag(OpLoc, diag::err_typecheck_member_reference_arrow)
|
2009-08-06 11:17:00 +08:00
|
|
|
<< Base->getType() << Base->getSourceRange();
|
2008-11-21 00:27:02 +08:00
|
|
|
else
|
|
|
|
Diag(OpLoc, diag::err_ovl_no_viable_oper)
|
2009-08-06 11:17:00 +08:00
|
|
|
<< "operator->" << Base->getSourceRange();
|
2010-01-08 12:41:39 +08:00
|
|
|
PrintOverloadCandidates(CandidateSet, OCD_AllCandidates);
|
2009-08-06 11:17:00 +08:00
|
|
|
return ExprError();
|
2008-11-21 00:27:02 +08:00
|
|
|
|
|
|
|
case OR_Ambiguous:
|
|
|
|
Diag(OpLoc, diag::err_ovl_ambiguous_oper)
|
2009-09-11 07:18:36 +08:00
|
|
|
<< "->" << Base->getSourceRange();
|
2010-01-08 12:41:39 +08:00
|
|
|
PrintOverloadCandidates(CandidateSet, OCD_ViableCandidates);
|
2009-08-06 11:17:00 +08:00
|
|
|
return ExprError();
|
2009-02-19 05:56:37 +08:00
|
|
|
|
|
|
|
case OR_Deleted:
|
|
|
|
Diag(OpLoc, diag::err_ovl_deleted_oper)
|
|
|
|
<< Best->Function->isDeleted()
|
2009-09-11 07:18:36 +08:00
|
|
|
<< "->" << Base->getSourceRange();
|
2010-01-08 12:41:39 +08:00
|
|
|
PrintOverloadCandidates(CandidateSet, OCD_AllCandidates);
|
2009-08-06 11:17:00 +08:00
|
|
|
return ExprError();
|
2008-11-21 00:27:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Convert the object parameter.
|
|
|
|
CXXMethodDecl *Method = cast<CXXMethodDecl>(Best->Function);
|
2008-11-21 11:04:22 +08:00
|
|
|
if (PerformObjectArgumentInitialization(Base, Method))
|
2009-08-06 11:17:00 +08:00
|
|
|
return ExprError();
|
2008-11-21 11:04:22 +08:00
|
|
|
|
|
|
|
// No concerns about early exits now.
|
2009-08-06 11:17:00 +08:00
|
|
|
BaseIn.release();
|
2008-11-21 00:27:02 +08:00
|
|
|
|
|
|
|
// Build the operator call.
|
2009-02-07 09:47:29 +08:00
|
|
|
Expr *FnExpr = new (Context) DeclRefExpr(Method, Method->getType(),
|
|
|
|
SourceLocation());
|
2008-11-21 00:27:02 +08:00
|
|
|
UsualUnaryConversions(FnExpr);
|
2009-10-14 06:43:21 +08:00
|
|
|
|
|
|
|
QualType ResultTy = Method->getResultType().getNonReferenceType();
|
|
|
|
ExprOwningPtr<CXXOperatorCallExpr>
|
|
|
|
TheCall(this, new (Context) CXXOperatorCallExpr(Context, OO_Arrow, FnExpr,
|
|
|
|
&Base, 1, ResultTy, OpLoc));
|
|
|
|
|
|
|
|
if (CheckCallReturnType(Method->getResultType(), OpLoc, TheCall.get(),
|
|
|
|
Method))
|
|
|
|
return ExprError();
|
|
|
|
return move(TheCall);
|
2008-11-21 00:27:02 +08:00
|
|
|
}
|
|
|
|
|
2008-11-11 04:40:00 +08:00
|
|
|
/// FixOverloadedFunctionReference - E is an expression that refers to
|
|
|
|
/// a C++ overloaded function (possibly with some parentheses and
|
|
|
|
/// perhaps a '&' around it). We have resolved the overloaded function
|
|
|
|
/// to the function declaration Fn, so patch up the expression E to
|
2009-10-22 01:16:23 +08:00
|
|
|
/// refer (possibly indirectly) to Fn. Returns the new expr.
|
|
|
|
Expr *Sema::FixOverloadedFunctionReference(Expr *E, FunctionDecl *Fn) {
|
2008-11-11 04:40:00 +08:00
|
|
|
if (ParenExpr *PE = dyn_cast<ParenExpr>(E)) {
|
2009-11-21 03:42:02 +08:00
|
|
|
Expr *SubExpr = FixOverloadedFunctionReference(PE->getSubExpr(), Fn);
|
|
|
|
if (SubExpr == PE->getSubExpr())
|
|
|
|
return PE->Retain();
|
|
|
|
|
|
|
|
return new (Context) ParenExpr(PE->getLParen(), PE->getRParen(), SubExpr);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
|
|
|
|
Expr *SubExpr = FixOverloadedFunctionReference(ICE->getSubExpr(), Fn);
|
2009-10-24 06:18:25 +08:00
|
|
|
assert(Context.hasSameType(ICE->getSubExpr()->getType(),
|
2009-11-21 03:42:02 +08:00
|
|
|
SubExpr->getType()) &&
|
2009-10-24 06:18:25 +08:00
|
|
|
"Implicit cast type cannot be determined from overload");
|
2009-11-21 03:42:02 +08:00
|
|
|
if (SubExpr == ICE->getSubExpr())
|
|
|
|
return ICE->Retain();
|
|
|
|
|
|
|
|
return new (Context) ImplicitCastExpr(ICE->getType(),
|
|
|
|
ICE->getCastKind(),
|
|
|
|
SubExpr,
|
|
|
|
ICE->isLvalueCast());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(E)) {
|
2009-09-09 23:08:12 +08:00
|
|
|
assert(UnOp->getOpcode() == UnaryOperator::AddrOf &&
|
2008-11-11 04:40:00 +08:00
|
|
|
"Can only take the address of an overloaded function");
|
2009-02-11 09:18:59 +08:00
|
|
|
if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Fn)) {
|
|
|
|
if (Method->isStatic()) {
|
|
|
|
// Do nothing: static member functions aren't any different
|
|
|
|
// from non-member functions.
|
2009-11-21 16:51:07 +08:00
|
|
|
} else {
|
2009-11-25 03:00:30 +08:00
|
|
|
// Fix the sub expression, which really has to be an
|
|
|
|
// UnresolvedLookupExpr holding an overloaded member function
|
|
|
|
// or template.
|
2009-11-21 16:51:07 +08:00
|
|
|
Expr *SubExpr = FixOverloadedFunctionReference(UnOp->getSubExpr(), Fn);
|
|
|
|
if (SubExpr == UnOp->getSubExpr())
|
|
|
|
return UnOp->Retain();
|
|
|
|
|
|
|
|
assert(isa<DeclRefExpr>(SubExpr)
|
|
|
|
&& "fixed to something other than a decl ref");
|
|
|
|
assert(cast<DeclRefExpr>(SubExpr)->getQualifier()
|
|
|
|
&& "fixed to a member ref with no nested name qualifier");
|
|
|
|
|
|
|
|
// We have taken the address of a pointer to member
|
|
|
|
// function. Perform the computation here so that we get the
|
|
|
|
// appropriate pointer to member type.
|
|
|
|
QualType ClassType
|
|
|
|
= Context.getTypeDeclType(cast<RecordDecl>(Method->getDeclContext()));
|
|
|
|
QualType MemPtrType
|
|
|
|
= Context.getMemberPointerType(Fn->getType(), ClassType.getTypePtr());
|
|
|
|
|
|
|
|
return new (Context) UnaryOperator(SubExpr, UnaryOperator::AddrOf,
|
|
|
|
MemPtrType, UnOp->getOperatorLoc());
|
2009-02-11 09:18:59 +08:00
|
|
|
}
|
|
|
|
}
|
2009-11-21 03:42:02 +08:00
|
|
|
Expr *SubExpr = FixOverloadedFunctionReference(UnOp->getSubExpr(), Fn);
|
|
|
|
if (SubExpr == UnOp->getSubExpr())
|
|
|
|
return UnOp->Retain();
|
2009-10-22 01:16:23 +08:00
|
|
|
|
2009-11-21 03:42:02 +08:00
|
|
|
return new (Context) UnaryOperator(SubExpr, UnaryOperator::AddrOf,
|
|
|
|
Context.getPointerType(SubExpr->getType()),
|
|
|
|
UnOp->getOperatorLoc());
|
|
|
|
}
|
2009-11-21 16:51:07 +08:00
|
|
|
|
|
|
|
if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(E)) {
|
2009-12-02 06:10:20 +08:00
|
|
|
// FIXME: avoid copy.
|
|
|
|
TemplateArgumentListInfo TemplateArgsBuffer, *TemplateArgs = 0;
|
2009-11-25 03:00:30 +08:00
|
|
|
if (ULE->hasExplicitTemplateArgs()) {
|
2009-12-02 06:10:20 +08:00
|
|
|
ULE->copyTemplateArgumentsInto(TemplateArgsBuffer);
|
|
|
|
TemplateArgs = &TemplateArgsBuffer;
|
2009-11-25 03:00:30 +08:00
|
|
|
}
|
|
|
|
|
2009-11-21 16:51:07 +08:00
|
|
|
return DeclRefExpr::Create(Context,
|
|
|
|
ULE->getQualifier(),
|
|
|
|
ULE->getQualifierRange(),
|
|
|
|
Fn,
|
|
|
|
ULE->getNameLoc(),
|
2009-12-02 06:10:20 +08:00
|
|
|
Fn->getType(),
|
|
|
|
TemplateArgs);
|
2009-11-21 16:51:07 +08:00
|
|
|
}
|
|
|
|
|
2009-12-01 06:42:35 +08:00
|
|
|
if (UnresolvedMemberExpr *MemExpr = dyn_cast<UnresolvedMemberExpr>(E)) {
|
2009-11-23 09:53:49 +08:00
|
|
|
// FIXME: avoid copy.
|
2009-12-02 06:10:20 +08:00
|
|
|
TemplateArgumentListInfo TemplateArgsBuffer, *TemplateArgs = 0;
|
|
|
|
if (MemExpr->hasExplicitTemplateArgs()) {
|
|
|
|
MemExpr->copyTemplateArgumentsInto(TemplateArgsBuffer);
|
|
|
|
TemplateArgs = &TemplateArgsBuffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
Expr *Base;
|
|
|
|
|
|
|
|
// If we're filling in
|
|
|
|
if (MemExpr->isImplicitAccess()) {
|
|
|
|
if (cast<CXXMethodDecl>(Fn)->isStatic()) {
|
|
|
|
return DeclRefExpr::Create(Context,
|
|
|
|
MemExpr->getQualifier(),
|
|
|
|
MemExpr->getQualifierRange(),
|
|
|
|
Fn,
|
|
|
|
MemExpr->getMemberLoc(),
|
|
|
|
Fn->getType(),
|
|
|
|
TemplateArgs);
|
2010-01-08 07:12:05 +08:00
|
|
|
} else {
|
|
|
|
SourceLocation Loc = MemExpr->getMemberLoc();
|
|
|
|
if (MemExpr->getQualifier())
|
|
|
|
Loc = MemExpr->getQualifierRange().getBegin();
|
|
|
|
Base = new (Context) CXXThisExpr(Loc,
|
|
|
|
MemExpr->getBaseType(),
|
|
|
|
/*isImplicit=*/true);
|
|
|
|
}
|
2009-12-02 06:10:20 +08:00
|
|
|
} else
|
|
|
|
Base = MemExpr->getBase()->Retain();
|
2009-11-23 09:53:49 +08:00
|
|
|
|
2009-12-02 06:10:20 +08:00
|
|
|
return MemberExpr::Create(Context, Base,
|
2009-11-21 03:42:02 +08:00
|
|
|
MemExpr->isArrow(),
|
|
|
|
MemExpr->getQualifier(),
|
|
|
|
MemExpr->getQualifierRange(),
|
|
|
|
Fn,
|
2009-11-23 09:53:49 +08:00
|
|
|
MemExpr->getMemberLoc(),
|
2009-12-02 06:10:20 +08:00
|
|
|
TemplateArgs,
|
2009-11-21 03:42:02 +08:00
|
|
|
Fn->getType());
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(false && "Invalid reference to overloaded function");
|
|
|
|
return E->Retain();
|
2008-11-11 04:40:00 +08:00
|
|
|
}
|
|
|
|
|
2009-12-10 07:02:17 +08:00
|
|
|
Sema::OwningExprResult Sema::FixOverloadedFunctionReference(OwningExprResult E,
|
|
|
|
FunctionDecl *Fn) {
|
|
|
|
return Owned(FixOverloadedFunctionReference((Expr *)E.get(), Fn));
|
|
|
|
}
|
|
|
|
|
2008-10-22 00:13:35 +08:00
|
|
|
} // end namespace clang
|