Add implicit conversions for Objective-C qualified ids, e.g.,

id<P0>

The intended overloading behavior of these entities isn't entirely
clear, and GCC seems to have some strange limitations (e.g., the
inability to overload on id<P0> vs. id<P1>). We'll want to revisit
these semantics and determine just how Objective-C++ overloading
should really work.



git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60142 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Douglas Gregor 2008-11-27 01:19:21 +00:00
Родитель bf40818928
Коммит 7ca09760ee
2 изменённых файлов: 38 добавлений и 3 удалений

Просмотреть файл

@ -744,7 +744,13 @@ BuildSimilarlyQualifiedPointerType(const PointerType *FromPtr,
/// might differ from ToType in its cv-qualifiers at some level) into
/// ConvertedType.
///
/// This routine also supports conversions to and from block pointers.
/// 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
/// conversions, so for now they live here.
bool Sema::IsPointerConversion(Expr *From, QualType FromType, QualType ToType,
QualType& ConvertedType)
{
@ -761,6 +767,13 @@ bool Sema::IsPointerConversion(Expr *From, QualType FromType, QualType ToType,
return true;
}
// Conversions with Objective-C's id<...>.
if ((FromType->isObjCQualifiedIdType() || ToType->isObjCQualifiedIdType()) &&
ObjCQualifiedIdTypesAreCompatible(ToType, FromType, /*compare=*/false)) {
ConvertedType = ToType;
return true;
}
const PointerType* ToTypePtr = ToType->getAsPointerType();
if (!ToTypePtr)
return false;
@ -1332,7 +1345,10 @@ Sema::CompareDerivedToBaseConversions(const StandardConversionSequence& SCS1,
// Compare based on pointer conversions.
if (SCS1.Second == ICK_Pointer_Conversion &&
SCS2.Second == ICK_Pointer_Conversion) {
SCS2.Second == ICK_Pointer_Conversion &&
/*FIXME: Remove if Objective-C id conversions get their own rank*/
FromType1->isPointerType() && FromType2->isPointerType() &&
ToType1->isPointerType() && ToType2->isPointerType()) {
QualType FromPointee1
= FromType1->getAsPointerType()->getPointeeType().getUnqualifiedType();
QualType ToPointee1

Просмотреть файл

@ -1,10 +1,19 @@
// RUN clang -fsyntax-only -verify %s
@interface A
@protocol P0
@end
@protocol P1
@end
@interface A <P0>
@end
@interface B : A
@end
@interface C <P1>
@end
int& f(A*);
float& f(B*);
void g(A*);
@ -37,3 +46,13 @@ void cv_test(A* a, B* b, const A* ac, const B* bc) {
int& i3 = cv2(a);
float& f3 = cv2(ac);
}
int& qualid(id<P0>);
float& qualid(id<P1>); // FIXME: GCC complains that this isn't an overload. Is it?
void qualid_test(A *a, B *b, C *c) {
int& i1 = qualid(a);
int& i2 = qualid(b);
float& f1 = qualid(c);
}