blob: 22b145c59a1ca5daeac4e22e7792ca0b3ce9a3d3 [file] [log] [blame]
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001//===--- SemaOverload.cpp - C++ Overloading ---------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file provides Sema routines for C++ overloading.
11//
12//===----------------------------------------------------------------------===//
13
John McCall2d887082010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
Douglas Gregore737f502010-08-12 20:07:10 +000015#include "clang/Sema/Lookup.h"
16#include "clang/Sema/Initialization.h"
John McCall7cd088e2010-08-24 07:21:54 +000017#include "clang/Sema/Template.h"
John McCall2a7fb272010-08-25 05:32:35 +000018#include "clang/Sema/TemplateDeduction.h"
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000019#include "clang/Basic/Diagnostic.h"
Douglas Gregoreb8f3062008-11-12 17:17:38 +000020#include "clang/Lex/Preprocessor.h"
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000021#include "clang/AST/ASTContext.h"
Douglas Gregora8f32e02009-10-06 17:59:45 +000022#include "clang/AST/CXXInheritance.h"
John McCall7cd088e2010-08-24 07:21:54 +000023#include "clang/AST/DeclObjC.h"
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000024#include "clang/AST/Expr.h"
Douglas Gregorf9eb9052008-11-19 21:05:33 +000025#include "clang/AST/ExprCXX.h"
John McCall0e800c92010-12-04 08:14:53 +000026#include "clang/AST/ExprObjC.h"
Douglas Gregoreb8f3062008-11-12 17:17:38 +000027#include "clang/AST/TypeOrdering.h"
Anders Carlssonb7906612009-08-26 23:45:07 +000028#include "clang/Basic/PartialDiagnostic.h"
Douglas Gregor661b4932010-09-12 04:28:07 +000029#include "llvm/ADT/DenseSet.h"
Douglas Gregorbf3af052008-11-13 20:12:29 +000030#include "llvm/ADT/SmallPtrSet.h"
Douglas Gregor3fc749d2008-12-23 00:26:44 +000031#include "llvm/ADT/STLExtras.h"
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000032#include <algorithm>
33
34namespace clang {
John McCall2a7fb272010-08-25 05:32:35 +000035using namespace sema;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000036
John McCallf89e55a2010-11-18 06:31:45 +000037/// A convenience routine for creating a decayed reference to a
38/// function.
John Wiegley429bb272011-04-08 18:41:53 +000039static ExprResult
Abramo Bagnara7cc58b42011-10-05 07:56:41 +000040CreateFunctionRefExpr(Sema &S, FunctionDecl *Fn, bool HadMultipleCandidates,
Douglas Gregor5b8968c2011-07-15 16:25:15 +000041 SourceLocation Loc = SourceLocation(),
42 const DeclarationNameLoc &LocInfo = DeclarationNameLoc()){
Abramo Bagnara7cc58b42011-10-05 07:56:41 +000043 DeclRefExpr *DRE = new (S.Context) DeclRefExpr(Fn, Fn->getType(),
44 VK_LValue, Loc, LocInfo);
45 if (HadMultipleCandidates)
46 DRE->setHadMultipleCandidates(true);
47 ExprResult E = S.Owned(DRE);
John Wiegley429bb272011-04-08 18:41:53 +000048 E = S.DefaultFunctionArrayConversion(E.take());
49 if (E.isInvalid())
50 return ExprError();
51 return move(E);
John McCallf89e55a2010-11-18 06:31:45 +000052}
53
John McCall120d63c2010-08-24 20:38:10 +000054static bool IsStandardConversion(Sema &S, Expr* From, QualType ToType,
55 bool InOverloadResolution,
Douglas Gregor14d0aee2011-01-27 00:58:17 +000056 StandardConversionSequence &SCS,
John McCallf85e1932011-06-15 23:02:42 +000057 bool CStyle,
58 bool AllowObjCWritebackConversion);
Fariborz Jahaniand97f5582011-03-23 19:50:54 +000059
60static bool IsTransparentUnionStandardConversion(Sema &S, Expr* From,
61 QualType &ToType,
62 bool InOverloadResolution,
63 StandardConversionSequence &SCS,
64 bool CStyle);
John McCall120d63c2010-08-24 20:38:10 +000065static OverloadingResult
66IsUserDefinedConversion(Sema &S, Expr *From, QualType ToType,
67 UserDefinedConversionSequence& User,
68 OverloadCandidateSet& Conversions,
69 bool AllowExplicit);
70
71
72static ImplicitConversionSequence::CompareKind
73CompareStandardConversionSequences(Sema &S,
74 const StandardConversionSequence& SCS1,
75 const StandardConversionSequence& SCS2);
76
77static ImplicitConversionSequence::CompareKind
78CompareQualificationConversions(Sema &S,
79 const StandardConversionSequence& SCS1,
80 const StandardConversionSequence& SCS2);
81
82static ImplicitConversionSequence::CompareKind
83CompareDerivedToBaseConversions(Sema &S,
84 const StandardConversionSequence& SCS1,
85 const StandardConversionSequence& SCS2);
86
87
88
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000089/// GetConversionCategory - Retrieve the implicit conversion
90/// category corresponding to the given implicit conversion kind.
Mike Stump1eb44332009-09-09 15:08:12 +000091ImplicitConversionCategory
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000092GetConversionCategory(ImplicitConversionKind Kind) {
93 static const ImplicitConversionCategory
94 Category[(int)ICK_Num_Conversion_Kinds] = {
95 ICC_Identity,
96 ICC_Lvalue_Transformation,
97 ICC_Lvalue_Transformation,
98 ICC_Lvalue_Transformation,
Douglas Gregor43c79c22009-12-09 00:47:37 +000099 ICC_Identity,
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000100 ICC_Qualification_Adjustment,
101 ICC_Promotion,
102 ICC_Promotion,
Douglas Gregor5cdf8212009-02-12 00:15:05 +0000103 ICC_Promotion,
104 ICC_Conversion,
105 ICC_Conversion,
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000106 ICC_Conversion,
107 ICC_Conversion,
108 ICC_Conversion,
109 ICC_Conversion,
110 ICC_Conversion,
Douglas Gregor15da57e2008-10-29 02:00:59 +0000111 ICC_Conversion,
Douglas Gregorf9201e02009-02-11 23:02:49 +0000112 ICC_Conversion,
Douglas Gregorfb4a5432010-05-18 22:42:18 +0000113 ICC_Conversion,
114 ICC_Conversion,
John McCallf85e1932011-06-15 23:02:42 +0000115 ICC_Conversion,
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000116 ICC_Conversion
117 };
118 return Category[(int)Kind];
119}
120
121/// GetConversionRank - Retrieve the implicit conversion rank
122/// corresponding to the given implicit conversion kind.
123ImplicitConversionRank GetConversionRank(ImplicitConversionKind Kind) {
124 static const ImplicitConversionRank
125 Rank[(int)ICK_Num_Conversion_Kinds] = {
126 ICR_Exact_Match,
127 ICR_Exact_Match,
128 ICR_Exact_Match,
129 ICR_Exact_Match,
130 ICR_Exact_Match,
Douglas Gregor43c79c22009-12-09 00:47:37 +0000131 ICR_Exact_Match,
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000132 ICR_Promotion,
133 ICR_Promotion,
Douglas Gregor5cdf8212009-02-12 00:15:05 +0000134 ICR_Promotion,
135 ICR_Conversion,
136 ICR_Conversion,
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000137 ICR_Conversion,
138 ICR_Conversion,
139 ICR_Conversion,
140 ICR_Conversion,
141 ICR_Conversion,
Douglas Gregor15da57e2008-10-29 02:00:59 +0000142 ICR_Conversion,
Douglas Gregorf9201e02009-02-11 23:02:49 +0000143 ICR_Conversion,
Douglas Gregorfb4a5432010-05-18 22:42:18 +0000144 ICR_Conversion,
145 ICR_Conversion,
Fariborz Jahaniand97f5582011-03-23 19:50:54 +0000146 ICR_Complex_Real_Conversion,
147 ICR_Conversion,
John McCallf85e1932011-06-15 23:02:42 +0000148 ICR_Conversion,
149 ICR_Writeback_Conversion
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000150 };
151 return Rank[(int)Kind];
152}
153
154/// GetImplicitConversionName - Return the name of this kind of
155/// implicit conversion.
156const char* GetImplicitConversionName(ImplicitConversionKind Kind) {
Nuno Lopes2550d702009-12-23 17:49:57 +0000157 static const char* const Name[(int)ICK_Num_Conversion_Kinds] = {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000158 "No conversion",
159 "Lvalue-to-rvalue",
160 "Array-to-pointer",
161 "Function-to-pointer",
Douglas Gregor43c79c22009-12-09 00:47:37 +0000162 "Noreturn adjustment",
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000163 "Qualification",
164 "Integral promotion",
165 "Floating point promotion",
Douglas Gregor5cdf8212009-02-12 00:15:05 +0000166 "Complex promotion",
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000167 "Integral conversion",
168 "Floating conversion",
Douglas Gregor5cdf8212009-02-12 00:15:05 +0000169 "Complex conversion",
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000170 "Floating-integral conversion",
171 "Pointer conversion",
172 "Pointer-to-member conversion",
Douglas Gregor15da57e2008-10-29 02:00:59 +0000173 "Boolean conversion",
Douglas Gregorf9201e02009-02-11 23:02:49 +0000174 "Compatible-types conversion",
Douglas Gregorfb4a5432010-05-18 22:42:18 +0000175 "Derived-to-base conversion",
176 "Vector conversion",
177 "Vector splat",
Fariborz Jahaniand97f5582011-03-23 19:50:54 +0000178 "Complex-real conversion",
179 "Block Pointer conversion",
180 "Transparent Union Conversion"
John McCallf85e1932011-06-15 23:02:42 +0000181 "Writeback conversion"
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000182 };
183 return Name[Kind];
184}
185
Douglas Gregor60d62c22008-10-31 16:23:19 +0000186/// StandardConversionSequence - Set the standard conversion
187/// sequence to the identity conversion.
188void StandardConversionSequence::setAsIdentityConversion() {
189 First = ICK_Identity;
190 Second = ICK_Identity;
191 Third = ICK_Identity;
Douglas Gregora9bff302010-02-28 18:30:25 +0000192 DeprecatedStringLiteralToCharPtr = false;
John McCallf85e1932011-06-15 23:02:42 +0000193 QualificationIncludesObjCLifetime = false;
Douglas Gregor60d62c22008-10-31 16:23:19 +0000194 ReferenceBinding = false;
195 DirectBinding = false;
Douglas Gregor440a4832011-01-26 14:52:12 +0000196 IsLvalueReference = true;
197 BindsToFunctionLvalue = false;
198 BindsToRvalue = false;
Douglas Gregorfcab48b2011-01-26 19:41:18 +0000199 BindsImplicitObjectArgumentWithoutRefQualifier = false;
John McCallf85e1932011-06-15 23:02:42 +0000200 ObjCLifetimeConversionBinding = false;
Douglas Gregor225c41e2008-11-03 19:09:14 +0000201 CopyConstructor = 0;
Douglas Gregor60d62c22008-10-31 16:23:19 +0000202}
203
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000204/// getRank - Retrieve the rank of this standard conversion sequence
205/// (C++ 13.3.3.1.1p3). The rank is the largest rank of each of the
206/// implicit conversions.
207ImplicitConversionRank StandardConversionSequence::getRank() const {
208 ImplicitConversionRank Rank = ICR_Exact_Match;
209 if (GetConversionRank(First) > Rank)
210 Rank = GetConversionRank(First);
211 if (GetConversionRank(Second) > Rank)
212 Rank = GetConversionRank(Second);
213 if (GetConversionRank(Third) > Rank)
214 Rank = GetConversionRank(Third);
215 return Rank;
216}
217
218/// isPointerConversionToBool - Determines whether this conversion is
219/// a conversion of a pointer or pointer-to-member to bool. This is
Mike Stump1eb44332009-09-09 15:08:12 +0000220/// used as part of the ranking of standard conversion sequences
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000221/// (C++ 13.3.3.2p4).
Mike Stump1eb44332009-09-09 15:08:12 +0000222bool StandardConversionSequence::isPointerConversionToBool() const {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000223 // Note that FromType has not necessarily been transformed by the
224 // array-to-pointer or function-to-pointer implicit conversions, so
225 // check for their presence as well as checking whether FromType is
226 // a pointer.
Douglas Gregorad323a82010-01-27 03:51:04 +0000227 if (getToType(1)->isBooleanType() &&
John McCallddb0ce72010-06-11 10:04:22 +0000228 (getFromType()->isPointerType() ||
229 getFromType()->isObjCObjectPointerType() ||
230 getFromType()->isBlockPointerType() ||
Anders Carlssonc8df0b62010-11-05 00:12:09 +0000231 getFromType()->isNullPtrType() ||
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000232 First == ICK_Array_To_Pointer || First == ICK_Function_To_Pointer))
233 return true;
234
235 return false;
236}
237
Douglas Gregorbc0805a2008-10-23 00:40:37 +0000238/// isPointerConversionToVoidPointer - Determines whether this
239/// conversion is a conversion of a pointer to a void pointer. This is
240/// used as part of the ranking of standard conversion sequences (C++
241/// 13.3.3.2p4).
Mike Stump1eb44332009-09-09 15:08:12 +0000242bool
Douglas Gregorbc0805a2008-10-23 00:40:37 +0000243StandardConversionSequence::
Mike Stump1eb44332009-09-09 15:08:12 +0000244isPointerConversionToVoidPointer(ASTContext& Context) const {
John McCall1d318332010-01-12 00:44:57 +0000245 QualType FromType = getFromType();
Douglas Gregorad323a82010-01-27 03:51:04 +0000246 QualType ToType = getToType(1);
Douglas Gregorbc0805a2008-10-23 00:40:37 +0000247
248 // Note that FromType has not necessarily been transformed by the
249 // array-to-pointer implicit conversion, so check for its presence
250 // and redo the conversion to get a pointer.
251 if (First == ICK_Array_To_Pointer)
252 FromType = Context.getArrayDecayedType(FromType);
253
Douglas Gregorf9af5242011-04-15 20:45:44 +0000254 if (Second == ICK_Pointer_Conversion && FromType->isAnyPointerType())
Ted Kremenek6217b802009-07-29 21:53:49 +0000255 if (const PointerType* ToPtrType = ToType->getAs<PointerType>())
Douglas Gregorbc0805a2008-10-23 00:40:37 +0000256 return ToPtrType->getPointeeType()->isVoidType();
257
258 return false;
259}
260
Richard Smith4c3fc9b2012-01-18 05:21:49 +0000261/// Skip any implicit casts which could be either part of a narrowing conversion
262/// or after one in an implicit conversion.
263static const Expr *IgnoreNarrowingConversion(const Expr *Converted) {
264 while (const ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(Converted)) {
265 switch (ICE->getCastKind()) {
266 case CK_NoOp:
267 case CK_IntegralCast:
268 case CK_IntegralToBoolean:
269 case CK_IntegralToFloating:
270 case CK_FloatingToIntegral:
271 case CK_FloatingToBoolean:
272 case CK_FloatingCast:
273 Converted = ICE->getSubExpr();
274 continue;
275
276 default:
277 return Converted;
278 }
279 }
280
281 return Converted;
282}
283
284/// Check if this standard conversion sequence represents a narrowing
285/// conversion, according to C++11 [dcl.init.list]p7.
286///
287/// \param Ctx The AST context.
288/// \param Converted The result of applying this standard conversion sequence.
289/// \param ConstantValue If this is an NK_Constant_Narrowing conversion, the
290/// value of the expression prior to the narrowing conversion.
291NarrowingKind
Richard Smith8ef7b202012-01-18 23:55:52 +0000292StandardConversionSequence::getNarrowingKind(ASTContext &Ctx,
293 const Expr *Converted,
294 APValue &ConstantValue) const {
Richard Smith4c3fc9b2012-01-18 05:21:49 +0000295 assert(Ctx.getLangOptions().CPlusPlus && "narrowing check outside C++");
296
297 // C++11 [dcl.init.list]p7:
298 // A narrowing conversion is an implicit conversion ...
299 QualType FromType = getToType(0);
300 QualType ToType = getToType(1);
301 switch (Second) {
302 // -- from a floating-point type to an integer type, or
303 //
304 // -- from an integer type or unscoped enumeration type to a floating-point
305 // type, except where the source is a constant expression and the actual
306 // value after conversion will fit into the target type and will produce
307 // the original value when converted back to the original type, or
308 case ICK_Floating_Integral:
309 if (FromType->isRealFloatingType() && ToType->isIntegralType(Ctx)) {
310 return NK_Type_Narrowing;
311 } else if (FromType->isIntegralType(Ctx) && ToType->isRealFloatingType()) {
312 llvm::APSInt IntConstantValue;
313 const Expr *Initializer = IgnoreNarrowingConversion(Converted);
314 if (Initializer &&
315 Initializer->isIntegerConstantExpr(IntConstantValue, Ctx)) {
316 // Convert the integer to the floating type.
317 llvm::APFloat Result(Ctx.getFloatTypeSemantics(ToType));
318 Result.convertFromAPInt(IntConstantValue, IntConstantValue.isSigned(),
319 llvm::APFloat::rmNearestTiesToEven);
320 // And back.
321 llvm::APSInt ConvertedValue = IntConstantValue;
322 bool ignored;
323 Result.convertToInteger(ConvertedValue,
324 llvm::APFloat::rmTowardZero, &ignored);
325 // If the resulting value is different, this was a narrowing conversion.
326 if (IntConstantValue != ConvertedValue) {
327 ConstantValue = APValue(IntConstantValue);
328 return NK_Constant_Narrowing;
329 }
330 } else {
331 // Variables are always narrowings.
332 return NK_Variable_Narrowing;
333 }
334 }
335 return NK_Not_Narrowing;
336
337 // -- from long double to double or float, or from double to float, except
338 // where the source is a constant expression and the actual value after
339 // conversion is within the range of values that can be represented (even
340 // if it cannot be represented exactly), or
341 case ICK_Floating_Conversion:
342 if (FromType->isRealFloatingType() && ToType->isRealFloatingType() &&
343 Ctx.getFloatingTypeOrder(FromType, ToType) == 1) {
344 // FromType is larger than ToType.
345 const Expr *Initializer = IgnoreNarrowingConversion(Converted);
346 if (Initializer->isCXX11ConstantExpr(Ctx, &ConstantValue)) {
347 // Constant!
348 assert(ConstantValue.isFloat());
349 llvm::APFloat FloatVal = ConstantValue.getFloat();
350 // Convert the source value into the target type.
351 bool ignored;
352 llvm::APFloat::opStatus ConvertStatus = FloatVal.convert(
353 Ctx.getFloatTypeSemantics(ToType),
354 llvm::APFloat::rmNearestTiesToEven, &ignored);
355 // If there was no overflow, the source value is within the range of
356 // values that can be represented.
357 if (ConvertStatus & llvm::APFloat::opOverflow)
358 return NK_Constant_Narrowing;
359 } else {
360 return NK_Variable_Narrowing;
361 }
362 }
363 return NK_Not_Narrowing;
364
365 // -- from an integer type or unscoped enumeration type to an integer type
366 // that cannot represent all the values of the original type, except where
367 // the source is a constant expression and the actual value after
368 // conversion will fit into the target type and will produce the original
369 // value when converted back to the original type.
370 case ICK_Boolean_Conversion: // Bools are integers too.
371 if (!FromType->isIntegralOrUnscopedEnumerationType()) {
372 // Boolean conversions can be from pointers and pointers to members
373 // [conv.bool], and those aren't considered narrowing conversions.
374 return NK_Not_Narrowing;
375 } // Otherwise, fall through to the integral case.
376 case ICK_Integral_Conversion: {
377 assert(FromType->isIntegralOrUnscopedEnumerationType());
378 assert(ToType->isIntegralOrUnscopedEnumerationType());
379 const bool FromSigned = FromType->isSignedIntegerOrEnumerationType();
380 const unsigned FromWidth = Ctx.getIntWidth(FromType);
381 const bool ToSigned = ToType->isSignedIntegerOrEnumerationType();
382 const unsigned ToWidth = Ctx.getIntWidth(ToType);
383
384 if (FromWidth > ToWidth ||
385 (FromWidth == ToWidth && FromSigned != ToSigned)) {
386 // Not all values of FromType can be represented in ToType.
387 llvm::APSInt InitializerValue;
388 const Expr *Initializer = IgnoreNarrowingConversion(Converted);
389 if (Initializer->isIntegerConstantExpr(InitializerValue, Ctx)) {
390 ConstantValue = APValue(InitializerValue);
391
392 // Add a bit to the InitializerValue so we don't have to worry about
393 // signed vs. unsigned comparisons.
394 InitializerValue = InitializerValue.extend(
395 InitializerValue.getBitWidth() + 1);
396 // Convert the initializer to and from the target width and signed-ness.
397 llvm::APSInt ConvertedValue = InitializerValue;
398 ConvertedValue = ConvertedValue.trunc(ToWidth);
399 ConvertedValue.setIsSigned(ToSigned);
400 ConvertedValue = ConvertedValue.extend(InitializerValue.getBitWidth());
401 ConvertedValue.setIsSigned(InitializerValue.isSigned());
402 // If the result is different, this was a narrowing conversion.
403 if (ConvertedValue != InitializerValue)
404 return NK_Constant_Narrowing;
405 } else {
406 // Variables are always narrowings.
407 return NK_Variable_Narrowing;
408 }
409 }
410 return NK_Not_Narrowing;
411 }
412
413 default:
414 // Other kinds of conversions are not narrowings.
415 return NK_Not_Narrowing;
416 }
417}
418
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000419/// DebugPrint - Print this standard conversion sequence to standard
420/// error. Useful for debugging overloading issues.
421void StandardConversionSequence::DebugPrint() const {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000422 raw_ostream &OS = llvm::errs();
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000423 bool PrintedSomething = false;
424 if (First != ICK_Identity) {
Daniel Dunbarf3f91f32010-01-22 02:04:41 +0000425 OS << GetImplicitConversionName(First);
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000426 PrintedSomething = true;
427 }
428
429 if (Second != ICK_Identity) {
430 if (PrintedSomething) {
Daniel Dunbarf3f91f32010-01-22 02:04:41 +0000431 OS << " -> ";
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000432 }
Daniel Dunbarf3f91f32010-01-22 02:04:41 +0000433 OS << GetImplicitConversionName(Second);
Douglas Gregor225c41e2008-11-03 19:09:14 +0000434
435 if (CopyConstructor) {
Daniel Dunbarf3f91f32010-01-22 02:04:41 +0000436 OS << " (by copy constructor)";
Douglas Gregor225c41e2008-11-03 19:09:14 +0000437 } else if (DirectBinding) {
Daniel Dunbarf3f91f32010-01-22 02:04:41 +0000438 OS << " (direct reference binding)";
Douglas Gregor225c41e2008-11-03 19:09:14 +0000439 } else if (ReferenceBinding) {
Daniel Dunbarf3f91f32010-01-22 02:04:41 +0000440 OS << " (reference binding)";
Douglas Gregor225c41e2008-11-03 19:09:14 +0000441 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000442 PrintedSomething = true;
443 }
444
445 if (Third != ICK_Identity) {
446 if (PrintedSomething) {
Daniel Dunbarf3f91f32010-01-22 02:04:41 +0000447 OS << " -> ";
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000448 }
Daniel Dunbarf3f91f32010-01-22 02:04:41 +0000449 OS << GetImplicitConversionName(Third);
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000450 PrintedSomething = true;
451 }
452
453 if (!PrintedSomething) {
Daniel Dunbarf3f91f32010-01-22 02:04:41 +0000454 OS << "No conversions required";
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000455 }
456}
457
458/// DebugPrint - Print this user-defined conversion sequence to standard
459/// error. Useful for debugging overloading issues.
460void UserDefinedConversionSequence::DebugPrint() const {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000461 raw_ostream &OS = llvm::errs();
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000462 if (Before.First || Before.Second || Before.Third) {
463 Before.DebugPrint();
Daniel Dunbarf3f91f32010-01-22 02:04:41 +0000464 OS << " -> ";
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000465 }
Sebastian Redlcc7a6482011-11-01 15:53:09 +0000466 if (ConversionFunction)
467 OS << '\'' << *ConversionFunction << '\'';
468 else
469 OS << "aggregate initialization";
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000470 if (After.First || After.Second || After.Third) {
Daniel Dunbarf3f91f32010-01-22 02:04:41 +0000471 OS << " -> ";
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000472 After.DebugPrint();
473 }
474}
475
476/// DebugPrint - Print this implicit conversion sequence to standard
477/// error. Useful for debugging overloading issues.
478void ImplicitConversionSequence::DebugPrint() const {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000479 raw_ostream &OS = llvm::errs();
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000480 switch (ConversionKind) {
481 case StandardConversion:
Daniel Dunbarf3f91f32010-01-22 02:04:41 +0000482 OS << "Standard conversion: ";
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000483 Standard.DebugPrint();
484 break;
485 case UserDefinedConversion:
Daniel Dunbarf3f91f32010-01-22 02:04:41 +0000486 OS << "User-defined conversion: ";
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000487 UserDefined.DebugPrint();
488 break;
489 case EllipsisConversion:
Daniel Dunbarf3f91f32010-01-22 02:04:41 +0000490 OS << "Ellipsis conversion";
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000491 break;
John McCall1d318332010-01-12 00:44:57 +0000492 case AmbiguousConversion:
Daniel Dunbarf3f91f32010-01-22 02:04:41 +0000493 OS << "Ambiguous conversion";
John McCall1d318332010-01-12 00:44:57 +0000494 break;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000495 case BadConversion:
Daniel Dunbarf3f91f32010-01-22 02:04:41 +0000496 OS << "Bad conversion";
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000497 break;
498 }
499
Daniel Dunbarf3f91f32010-01-22 02:04:41 +0000500 OS << "\n";
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000501}
502
John McCall1d318332010-01-12 00:44:57 +0000503void AmbiguousConversionSequence::construct() {
504 new (&conversions()) ConversionSet();
505}
506
507void AmbiguousConversionSequence::destruct() {
508 conversions().~ConversionSet();
509}
510
511void
512AmbiguousConversionSequence::copyFrom(const AmbiguousConversionSequence &O) {
513 FromTypePtr = O.FromTypePtr;
514 ToTypePtr = O.ToTypePtr;
515 new (&conversions()) ConversionSet(O.conversions());
516}
517
Douglas Gregora9333192010-05-08 17:41:32 +0000518namespace {
519 // Structure used by OverloadCandidate::DeductionFailureInfo to store
520 // template parameter and template argument information.
521 struct DFIParamWithArguments {
522 TemplateParameter Param;
523 TemplateArgument FirstArg;
524 TemplateArgument SecondArg;
525 };
526}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000527
Douglas Gregora9333192010-05-08 17:41:32 +0000528/// \brief Convert from Sema's representation of template deduction information
529/// to the form used in overload-candidate information.
530OverloadCandidate::DeductionFailureInfo
Douglas Gregorff5adac2010-05-08 20:18:54 +0000531static MakeDeductionFailureInfo(ASTContext &Context,
532 Sema::TemplateDeductionResult TDK,
John McCall2a7fb272010-08-25 05:32:35 +0000533 TemplateDeductionInfo &Info) {
Douglas Gregora9333192010-05-08 17:41:32 +0000534 OverloadCandidate::DeductionFailureInfo Result;
535 Result.Result = static_cast<unsigned>(TDK);
536 Result.Data = 0;
537 switch (TDK) {
538 case Sema::TDK_Success:
539 case Sema::TDK_InstantiationDepth:
Douglas Gregor0ca4c582010-05-08 18:20:53 +0000540 case Sema::TDK_TooManyArguments:
541 case Sema::TDK_TooFewArguments:
Douglas Gregora9333192010-05-08 17:41:32 +0000542 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000543
Douglas Gregora9333192010-05-08 17:41:32 +0000544 case Sema::TDK_Incomplete:
Douglas Gregorf1a84452010-05-08 19:15:54 +0000545 case Sema::TDK_InvalidExplicitArguments:
Douglas Gregora9333192010-05-08 17:41:32 +0000546 Result.Data = Info.Param.getOpaqueValue();
547 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000548
Douglas Gregora9333192010-05-08 17:41:32 +0000549 case Sema::TDK_Inconsistent:
John McCall57e97782010-08-05 09:05:08 +0000550 case Sema::TDK_Underqualified: {
Douglas Gregorff5adac2010-05-08 20:18:54 +0000551 // FIXME: Should allocate from normal heap so that we can free this later.
552 DFIParamWithArguments *Saved = new (Context) DFIParamWithArguments;
Douglas Gregora9333192010-05-08 17:41:32 +0000553 Saved->Param = Info.Param;
554 Saved->FirstArg = Info.FirstArg;
555 Saved->SecondArg = Info.SecondArg;
556 Result.Data = Saved;
557 break;
558 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000559
Douglas Gregora9333192010-05-08 17:41:32 +0000560 case Sema::TDK_SubstitutionFailure:
Douglas Gregorec20f462010-05-08 20:07:26 +0000561 Result.Data = Info.take();
562 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000563
Douglas Gregora9333192010-05-08 17:41:32 +0000564 case Sema::TDK_NonDeducedMismatch:
Douglas Gregora9333192010-05-08 17:41:32 +0000565 case Sema::TDK_FailedOverloadResolution:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000566 break;
Douglas Gregora9333192010-05-08 17:41:32 +0000567 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000568
Douglas Gregora9333192010-05-08 17:41:32 +0000569 return Result;
570}
John McCall1d318332010-01-12 00:44:57 +0000571
Douglas Gregora9333192010-05-08 17:41:32 +0000572void OverloadCandidate::DeductionFailureInfo::Destroy() {
573 switch (static_cast<Sema::TemplateDeductionResult>(Result)) {
574 case Sema::TDK_Success:
575 case Sema::TDK_InstantiationDepth:
576 case Sema::TDK_Incomplete:
Douglas Gregor0ca4c582010-05-08 18:20:53 +0000577 case Sema::TDK_TooManyArguments:
578 case Sema::TDK_TooFewArguments:
Douglas Gregorf1a84452010-05-08 19:15:54 +0000579 case Sema::TDK_InvalidExplicitArguments:
Douglas Gregora9333192010-05-08 17:41:32 +0000580 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000581
Douglas Gregora9333192010-05-08 17:41:32 +0000582 case Sema::TDK_Inconsistent:
John McCall57e97782010-08-05 09:05:08 +0000583 case Sema::TDK_Underqualified:
Douglas Gregoraaa045d2010-05-08 20:20:05 +0000584 // FIXME: Destroy the data?
Douglas Gregora9333192010-05-08 17:41:32 +0000585 Data = 0;
586 break;
Douglas Gregorec20f462010-05-08 20:07:26 +0000587
588 case Sema::TDK_SubstitutionFailure:
589 // FIXME: Destroy the template arugment list?
590 Data = 0;
591 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000592
Douglas Gregor0ca4c582010-05-08 18:20:53 +0000593 // Unhandled
Douglas Gregora9333192010-05-08 17:41:32 +0000594 case Sema::TDK_NonDeducedMismatch:
Douglas Gregora9333192010-05-08 17:41:32 +0000595 case Sema::TDK_FailedOverloadResolution:
596 break;
597 }
598}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000599
600TemplateParameter
Douglas Gregora9333192010-05-08 17:41:32 +0000601OverloadCandidate::DeductionFailureInfo::getTemplateParameter() {
602 switch (static_cast<Sema::TemplateDeductionResult>(Result)) {
603 case Sema::TDK_Success:
604 case Sema::TDK_InstantiationDepth:
Douglas Gregor0ca4c582010-05-08 18:20:53 +0000605 case Sema::TDK_TooManyArguments:
606 case Sema::TDK_TooFewArguments:
Douglas Gregorec20f462010-05-08 20:07:26 +0000607 case Sema::TDK_SubstitutionFailure:
Douglas Gregora9333192010-05-08 17:41:32 +0000608 return TemplateParameter();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000609
Douglas Gregora9333192010-05-08 17:41:32 +0000610 case Sema::TDK_Incomplete:
Douglas Gregorf1a84452010-05-08 19:15:54 +0000611 case Sema::TDK_InvalidExplicitArguments:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000612 return TemplateParameter::getFromOpaqueValue(Data);
Douglas Gregora9333192010-05-08 17:41:32 +0000613
614 case Sema::TDK_Inconsistent:
John McCall57e97782010-08-05 09:05:08 +0000615 case Sema::TDK_Underqualified:
Douglas Gregora9333192010-05-08 17:41:32 +0000616 return static_cast<DFIParamWithArguments*>(Data)->Param;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000617
Douglas Gregora9333192010-05-08 17:41:32 +0000618 // Unhandled
Douglas Gregora9333192010-05-08 17:41:32 +0000619 case Sema::TDK_NonDeducedMismatch:
Douglas Gregora9333192010-05-08 17:41:32 +0000620 case Sema::TDK_FailedOverloadResolution:
621 break;
622 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000623
Douglas Gregora9333192010-05-08 17:41:32 +0000624 return TemplateParameter();
625}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000626
Douglas Gregorec20f462010-05-08 20:07:26 +0000627TemplateArgumentList *
628OverloadCandidate::DeductionFailureInfo::getTemplateArgumentList() {
629 switch (static_cast<Sema::TemplateDeductionResult>(Result)) {
630 case Sema::TDK_Success:
631 case Sema::TDK_InstantiationDepth:
632 case Sema::TDK_TooManyArguments:
633 case Sema::TDK_TooFewArguments:
634 case Sema::TDK_Incomplete:
635 case Sema::TDK_InvalidExplicitArguments:
636 case Sema::TDK_Inconsistent:
John McCall57e97782010-08-05 09:05:08 +0000637 case Sema::TDK_Underqualified:
Douglas Gregorec20f462010-05-08 20:07:26 +0000638 return 0;
639
640 case Sema::TDK_SubstitutionFailure:
641 return static_cast<TemplateArgumentList*>(Data);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000642
Douglas Gregorec20f462010-05-08 20:07:26 +0000643 // Unhandled
644 case Sema::TDK_NonDeducedMismatch:
645 case Sema::TDK_FailedOverloadResolution:
646 break;
647 }
648
649 return 0;
650}
651
Douglas Gregora9333192010-05-08 17:41:32 +0000652const TemplateArgument *OverloadCandidate::DeductionFailureInfo::getFirstArg() {
653 switch (static_cast<Sema::TemplateDeductionResult>(Result)) {
654 case Sema::TDK_Success:
655 case Sema::TDK_InstantiationDepth:
656 case Sema::TDK_Incomplete:
Douglas Gregor0ca4c582010-05-08 18:20:53 +0000657 case Sema::TDK_TooManyArguments:
658 case Sema::TDK_TooFewArguments:
Douglas Gregorf1a84452010-05-08 19:15:54 +0000659 case Sema::TDK_InvalidExplicitArguments:
Douglas Gregorec20f462010-05-08 20:07:26 +0000660 case Sema::TDK_SubstitutionFailure:
Douglas Gregora9333192010-05-08 17:41:32 +0000661 return 0;
662
Douglas Gregora9333192010-05-08 17:41:32 +0000663 case Sema::TDK_Inconsistent:
John McCall57e97782010-08-05 09:05:08 +0000664 case Sema::TDK_Underqualified:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000665 return &static_cast<DFIParamWithArguments*>(Data)->FirstArg;
Douglas Gregora9333192010-05-08 17:41:32 +0000666
Douglas Gregor0ca4c582010-05-08 18:20:53 +0000667 // Unhandled
Douglas Gregora9333192010-05-08 17:41:32 +0000668 case Sema::TDK_NonDeducedMismatch:
Douglas Gregora9333192010-05-08 17:41:32 +0000669 case Sema::TDK_FailedOverloadResolution:
670 break;
671 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000672
Douglas Gregora9333192010-05-08 17:41:32 +0000673 return 0;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000674}
Douglas Gregora9333192010-05-08 17:41:32 +0000675
676const TemplateArgument *
677OverloadCandidate::DeductionFailureInfo::getSecondArg() {
678 switch (static_cast<Sema::TemplateDeductionResult>(Result)) {
679 case Sema::TDK_Success:
680 case Sema::TDK_InstantiationDepth:
681 case Sema::TDK_Incomplete:
Douglas Gregor0ca4c582010-05-08 18:20:53 +0000682 case Sema::TDK_TooManyArguments:
683 case Sema::TDK_TooFewArguments:
Douglas Gregorf1a84452010-05-08 19:15:54 +0000684 case Sema::TDK_InvalidExplicitArguments:
Douglas Gregorec20f462010-05-08 20:07:26 +0000685 case Sema::TDK_SubstitutionFailure:
Douglas Gregora9333192010-05-08 17:41:32 +0000686 return 0;
687
Douglas Gregora9333192010-05-08 17:41:32 +0000688 case Sema::TDK_Inconsistent:
John McCall57e97782010-08-05 09:05:08 +0000689 case Sema::TDK_Underqualified:
Douglas Gregora9333192010-05-08 17:41:32 +0000690 return &static_cast<DFIParamWithArguments*>(Data)->SecondArg;
691
Douglas Gregor0ca4c582010-05-08 18:20:53 +0000692 // Unhandled
Douglas Gregora9333192010-05-08 17:41:32 +0000693 case Sema::TDK_NonDeducedMismatch:
Douglas Gregora9333192010-05-08 17:41:32 +0000694 case Sema::TDK_FailedOverloadResolution:
695 break;
696 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000697
Douglas Gregora9333192010-05-08 17:41:32 +0000698 return 0;
699}
700
701void OverloadCandidateSet::clear() {
Benjamin Kramer9e2822b2012-01-14 20:16:52 +0000702 for (iterator i = begin(), e = end(); i != e; ++i)
703 for (unsigned ii = 0, ie = i->NumConversions; ii != ie; ++ii)
704 i->Conversions[ii].~ImplicitConversionSequence();
Benjamin Kramer314f5542012-01-14 19:31:39 +0000705 NumInlineSequences = 0;
Benjamin Kramer0e6a16f2012-01-14 16:31:55 +0000706 Candidates.clear();
Douglas Gregora9333192010-05-08 17:41:32 +0000707 Functions.clear();
708}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000709
John McCall5acb0c92011-10-17 18:40:02 +0000710namespace {
711 class UnbridgedCastsSet {
712 struct Entry {
713 Expr **Addr;
714 Expr *Saved;
715 };
716 SmallVector<Entry, 2> Entries;
717
718 public:
719 void save(Sema &S, Expr *&E) {
720 assert(E->hasPlaceholderType(BuiltinType::ARCUnbridgedCast));
721 Entry entry = { &E, E };
722 Entries.push_back(entry);
723 E = S.stripARCUnbridgedCast(E);
724 }
725
726 void restore() {
727 for (SmallVectorImpl<Entry>::iterator
728 i = Entries.begin(), e = Entries.end(); i != e; ++i)
729 *i->Addr = i->Saved;
730 }
731 };
732}
733
734/// checkPlaceholderForOverload - Do any interesting placeholder-like
735/// preprocessing on the given expression.
736///
737/// \param unbridgedCasts a collection to which to add unbridged casts;
738/// without this, they will be immediately diagnosed as errors
739///
740/// Return true on unrecoverable error.
741static bool checkPlaceholderForOverload(Sema &S, Expr *&E,
742 UnbridgedCastsSet *unbridgedCasts = 0) {
John McCall5acb0c92011-10-17 18:40:02 +0000743 if (const BuiltinType *placeholder = E->getType()->getAsPlaceholderType()) {
744 // We can't handle overloaded expressions here because overload
745 // resolution might reasonably tweak them.
746 if (placeholder->getKind() == BuiltinType::Overload) return false;
747
748 // If the context potentially accepts unbridged ARC casts, strip
749 // the unbridged cast and add it to the collection for later restoration.
750 if (placeholder->getKind() == BuiltinType::ARCUnbridgedCast &&
751 unbridgedCasts) {
752 unbridgedCasts->save(S, E);
753 return false;
754 }
755
756 // Go ahead and check everything else.
757 ExprResult result = S.CheckPlaceholderExpr(E);
758 if (result.isInvalid())
759 return true;
760
761 E = result.take();
762 return false;
763 }
764
765 // Nothing to do.
766 return false;
767}
768
769/// checkArgPlaceholdersForOverload - Check a set of call operands for
770/// placeholders.
771static bool checkArgPlaceholdersForOverload(Sema &S, Expr **args,
772 unsigned numArgs,
773 UnbridgedCastsSet &unbridged) {
774 for (unsigned i = 0; i != numArgs; ++i)
775 if (checkPlaceholderForOverload(S, args[i], &unbridged))
776 return true;
777
778 return false;
779}
780
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000781// IsOverload - Determine whether the given New declaration is an
John McCall51fa86f2009-12-02 08:47:38 +0000782// overload of the declarations in Old. This routine returns false if
783// New and Old cannot be overloaded, e.g., if New has the same
784// signature as some function in Old (C++ 1.3.10) or if the Old
785// declarations aren't functions (or function templates) at all. When
John McCall871b2e72009-12-09 03:35:25 +0000786// it does return false, MatchedDecl will point to the decl that New
787// cannot be overloaded with. This decl may be a UsingShadowDecl on
788// top of the underlying declaration.
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000789//
790// Example: Given the following input:
791//
792// void f(int, float); // #1
793// void f(int, int); // #2
794// int f(int, int); // #3
795//
796// When we process #1, there is no previous declaration of "f",
Mike Stump1eb44332009-09-09 15:08:12 +0000797// so IsOverload will not be used.
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000798//
John McCall51fa86f2009-12-02 08:47:38 +0000799// When we process #2, Old contains only the FunctionDecl for #1. By
800// comparing the parameter types, we see that #1 and #2 are overloaded
801// (since they have different signatures), so this routine returns
802// false; MatchedDecl is unchanged.
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000803//
John McCall51fa86f2009-12-02 08:47:38 +0000804// When we process #3, Old is an overload set containing #1 and #2. We
805// compare the signatures of #3 to #1 (they're overloaded, so we do
806// nothing) and then #3 to #2. Since the signatures of #3 and #2 are
807// identical (return types of functions are not part of the
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000808// signature), IsOverload returns false and MatchedDecl will be set to
809// point to the FunctionDecl for #2.
John McCallad00b772010-06-16 08:42:20 +0000810//
811// 'NewIsUsingShadowDecl' indicates that 'New' is being introduced
812// into a class by a using declaration. The rules for whether to hide
813// shadow declarations ignore some properties which otherwise figure
814// into a function template's signature.
John McCall871b2e72009-12-09 03:35:25 +0000815Sema::OverloadKind
John McCallad00b772010-06-16 08:42:20 +0000816Sema::CheckOverload(Scope *S, FunctionDecl *New, const LookupResult &Old,
817 NamedDecl *&Match, bool NewIsUsingDecl) {
John McCall51fa86f2009-12-02 08:47:38 +0000818 for (LookupResult::iterator I = Old.begin(), E = Old.end();
John McCall68263142009-11-18 22:49:29 +0000819 I != E; ++I) {
John McCallad00b772010-06-16 08:42:20 +0000820 NamedDecl *OldD = *I;
821
822 bool OldIsUsingDecl = false;
823 if (isa<UsingShadowDecl>(OldD)) {
824 OldIsUsingDecl = true;
825
826 // We can always introduce two using declarations into the same
827 // context, even if they have identical signatures.
828 if (NewIsUsingDecl) continue;
829
830 OldD = cast<UsingShadowDecl>(OldD)->getTargetDecl();
831 }
832
833 // If either declaration was introduced by a using declaration,
834 // we'll need to use slightly different rules for matching.
835 // Essentially, these rules are the normal rules, except that
836 // function templates hide function templates with different
837 // return types or template parameter lists.
838 bool UseMemberUsingDeclRules =
839 (OldIsUsingDecl || NewIsUsingDecl) && CurContext->isRecord();
840
John McCall51fa86f2009-12-02 08:47:38 +0000841 if (FunctionTemplateDecl *OldT = dyn_cast<FunctionTemplateDecl>(OldD)) {
John McCallad00b772010-06-16 08:42:20 +0000842 if (!IsOverload(New, OldT->getTemplatedDecl(), UseMemberUsingDeclRules)) {
843 if (UseMemberUsingDeclRules && OldIsUsingDecl) {
844 HideUsingShadowDecl(S, cast<UsingShadowDecl>(*I));
845 continue;
846 }
847
John McCall871b2e72009-12-09 03:35:25 +0000848 Match = *I;
849 return Ovl_Match;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000850 }
John McCall51fa86f2009-12-02 08:47:38 +0000851 } else if (FunctionDecl *OldF = dyn_cast<FunctionDecl>(OldD)) {
John McCallad00b772010-06-16 08:42:20 +0000852 if (!IsOverload(New, OldF, UseMemberUsingDeclRules)) {
853 if (UseMemberUsingDeclRules && OldIsUsingDecl) {
854 HideUsingShadowDecl(S, cast<UsingShadowDecl>(*I));
855 continue;
856 }
857
John McCall871b2e72009-12-09 03:35:25 +0000858 Match = *I;
859 return Ovl_Match;
John McCall68263142009-11-18 22:49:29 +0000860 }
John McCalld7945c62010-11-10 03:01:53 +0000861 } else if (isa<UsingDecl>(OldD)) {
John McCall9f54ad42009-12-10 09:41:52 +0000862 // We can overload with these, which can show up when doing
863 // redeclaration checks for UsingDecls.
864 assert(Old.getLookupKind() == LookupUsingDeclName);
John McCalld7945c62010-11-10 03:01:53 +0000865 } else if (isa<TagDecl>(OldD)) {
866 // We can always overload with tags by hiding them.
John McCall9f54ad42009-12-10 09:41:52 +0000867 } else if (isa<UnresolvedUsingValueDecl>(OldD)) {
868 // Optimistically assume that an unresolved using decl will
869 // overload; if it doesn't, we'll have to diagnose during
870 // template instantiation.
871 } else {
John McCall68263142009-11-18 22:49:29 +0000872 // (C++ 13p1):
873 // Only function declarations can be overloaded; object and type
874 // declarations cannot be overloaded.
John McCall871b2e72009-12-09 03:35:25 +0000875 Match = *I;
876 return Ovl_NonFunction;
John McCall68263142009-11-18 22:49:29 +0000877 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000878 }
John McCall68263142009-11-18 22:49:29 +0000879
John McCall871b2e72009-12-09 03:35:25 +0000880 return Ovl_Overload;
John McCall68263142009-11-18 22:49:29 +0000881}
882
John McCallad00b772010-06-16 08:42:20 +0000883bool Sema::IsOverload(FunctionDecl *New, FunctionDecl *Old,
884 bool UseUsingDeclRules) {
John McCall7b492022010-08-12 07:09:11 +0000885 // If both of the functions are extern "C", then they are not
886 // overloads.
887 if (Old->isExternC() && New->isExternC())
888 return false;
889
John McCall68263142009-11-18 22:49:29 +0000890 FunctionTemplateDecl *OldTemplate = Old->getDescribedFunctionTemplate();
891 FunctionTemplateDecl *NewTemplate = New->getDescribedFunctionTemplate();
892
893 // C++ [temp.fct]p2:
894 // A function template can be overloaded with other function templates
895 // and with normal (non-template) functions.
896 if ((OldTemplate == 0) != (NewTemplate == 0))
897 return true;
898
899 // Is the function New an overload of the function Old?
900 QualType OldQType = Context.getCanonicalType(Old->getType());
901 QualType NewQType = Context.getCanonicalType(New->getType());
902
903 // Compare the signatures (C++ 1.3.10) of the two functions to
904 // determine whether they are overloads. If we find any mismatch
905 // in the signature, they are overloads.
906
907 // If either of these functions is a K&R-style function (no
908 // prototype), then we consider them to have matching signatures.
909 if (isa<FunctionNoProtoType>(OldQType.getTypePtr()) ||
910 isa<FunctionNoProtoType>(NewQType.getTypePtr()))
911 return false;
912
John McCallf4c73712011-01-19 06:33:43 +0000913 const FunctionProtoType* OldType = cast<FunctionProtoType>(OldQType);
914 const FunctionProtoType* NewType = cast<FunctionProtoType>(NewQType);
John McCall68263142009-11-18 22:49:29 +0000915
916 // The signature of a function includes the types of its
917 // parameters (C++ 1.3.10), which includes the presence or absence
918 // of the ellipsis; see C++ DR 357).
919 if (OldQType != NewQType &&
920 (OldType->getNumArgs() != NewType->getNumArgs() ||
921 OldType->isVariadic() != NewType->isVariadic() ||
Fariborz Jahaniand8d34412010-05-03 21:06:18 +0000922 !FunctionArgTypesAreEqual(OldType, NewType)))
John McCall68263142009-11-18 22:49:29 +0000923 return true;
924
925 // C++ [temp.over.link]p4:
926 // The signature of a function template consists of its function
927 // signature, its return type and its template parameter list. The names
928 // of the template parameters are significant only for establishing the
929 // relationship between the template parameters and the rest of the
930 // signature.
931 //
932 // We check the return type and template parameter lists for function
933 // templates first; the remaining checks follow.
John McCallad00b772010-06-16 08:42:20 +0000934 //
935 // However, we don't consider either of these when deciding whether
936 // a member introduced by a shadow declaration is hidden.
937 if (!UseUsingDeclRules && NewTemplate &&
John McCall68263142009-11-18 22:49:29 +0000938 (!TemplateParameterListsAreEqual(NewTemplate->getTemplateParameters(),
939 OldTemplate->getTemplateParameters(),
940 false, TPL_TemplateMatch) ||
941 OldType->getResultType() != NewType->getResultType()))
942 return true;
943
944 // If the function is a class member, its signature includes the
Douglas Gregor57c9f4f2011-01-26 17:47:49 +0000945 // cv-qualifiers (if any) and ref-qualifier (if any) on the function itself.
John McCall68263142009-11-18 22:49:29 +0000946 //
947 // As part of this, also check whether one of the member functions
948 // is static, in which case they are not overloads (C++
949 // 13.1p2). While not part of the definition of the signature,
950 // this check is important to determine whether these functions
951 // can be overloaded.
952 CXXMethodDecl* OldMethod = dyn_cast<CXXMethodDecl>(Old);
953 CXXMethodDecl* NewMethod = dyn_cast<CXXMethodDecl>(New);
954 if (OldMethod && NewMethod &&
955 !OldMethod->isStatic() && !NewMethod->isStatic() &&
Douglas Gregor57c9f4f2011-01-26 17:47:49 +0000956 (OldMethod->getTypeQualifiers() != NewMethod->getTypeQualifiers() ||
Douglas Gregorb145ee62011-01-26 21:20:37 +0000957 OldMethod->getRefQualifier() != NewMethod->getRefQualifier())) {
958 if (!UseUsingDeclRules &&
959 OldMethod->getRefQualifier() != NewMethod->getRefQualifier() &&
960 (OldMethod->getRefQualifier() == RQ_None ||
961 NewMethod->getRefQualifier() == RQ_None)) {
962 // C++0x [over.load]p2:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000963 // - Member function declarations with the same name and the same
964 // parameter-type-list as well as member function template
965 // declarations with the same name, the same parameter-type-list, and
966 // the same template parameter lists cannot be overloaded if any of
Douglas Gregorb145ee62011-01-26 21:20:37 +0000967 // them, but not all, have a ref-qualifier (8.3.5).
968 Diag(NewMethod->getLocation(), diag::err_ref_qualifier_overload)
969 << NewMethod->getRefQualifier() << OldMethod->getRefQualifier();
970 Diag(OldMethod->getLocation(), diag::note_previous_declaration);
971 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000972
John McCall68263142009-11-18 22:49:29 +0000973 return true;
Douglas Gregorb145ee62011-01-26 21:20:37 +0000974 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +0000975
John McCall68263142009-11-18 22:49:29 +0000976 // The signatures match; this is not an overload.
977 return false;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000978}
979
Argyrios Kyrtzidis572bbec2011-06-23 00:41:50 +0000980/// \brief Checks availability of the function depending on the current
981/// function context. Inside an unavailable function, unavailability is ignored.
982///
983/// \returns true if \arg FD is unavailable and current context is inside
984/// an available function, false otherwise.
985bool Sema::isFunctionConsideredUnavailable(FunctionDecl *FD) {
986 return FD->isUnavailable() && !cast<Decl>(CurContext)->isUnavailable();
987}
988
Sebastian Redlcf15cef2011-12-22 18:58:38 +0000989/// \brief Tries a user-defined conversion from From to ToType.
990///
991/// Produces an implicit conversion sequence for when a standard conversion
992/// is not an option. See TryImplicitConversion for more information.
993static ImplicitConversionSequence
994TryUserDefinedConversion(Sema &S, Expr *From, QualType ToType,
995 bool SuppressUserConversions,
996 bool AllowExplicit,
997 bool InOverloadResolution,
998 bool CStyle,
999 bool AllowObjCWritebackConversion) {
1000 ImplicitConversionSequence ICS;
1001
1002 if (SuppressUserConversions) {
1003 // We're not in the case above, so there is no conversion that
1004 // we can perform.
1005 ICS.setBad(BadConversionSequence::no_conversion, From, ToType);
1006 return ICS;
1007 }
1008
1009 // Attempt user-defined conversion.
1010 OverloadCandidateSet Conversions(From->getExprLoc());
1011 OverloadingResult UserDefResult
1012 = IsUserDefinedConversion(S, From, ToType, ICS.UserDefined, Conversions,
1013 AllowExplicit);
1014
1015 if (UserDefResult == OR_Success) {
1016 ICS.setUserDefined();
1017 // C++ [over.ics.user]p4:
1018 // A conversion of an expression of class type to the same class
1019 // type is given Exact Match rank, and a conversion of an
1020 // expression of class type to a base class of that type is
1021 // given Conversion rank, in spite of the fact that a copy
1022 // constructor (i.e., a user-defined conversion function) is
1023 // called for those cases.
1024 if (CXXConstructorDecl *Constructor
1025 = dyn_cast<CXXConstructorDecl>(ICS.UserDefined.ConversionFunction)) {
1026 QualType FromCanon
1027 = S.Context.getCanonicalType(From->getType().getUnqualifiedType());
1028 QualType ToCanon
1029 = S.Context.getCanonicalType(ToType).getUnqualifiedType();
1030 if (Constructor->isCopyConstructor() &&
1031 (FromCanon == ToCanon || S.IsDerivedFrom(FromCanon, ToCanon))) {
1032 // Turn this into a "standard" conversion sequence, so that it
1033 // gets ranked with standard conversion sequences.
1034 ICS.setStandard();
1035 ICS.Standard.setAsIdentityConversion();
1036 ICS.Standard.setFromType(From->getType());
1037 ICS.Standard.setAllToTypes(ToType);
1038 ICS.Standard.CopyConstructor = Constructor;
1039 if (ToCanon != FromCanon)
1040 ICS.Standard.Second = ICK_Derived_To_Base;
1041 }
1042 }
1043
1044 // C++ [over.best.ics]p4:
1045 // However, when considering the argument of a user-defined
1046 // conversion function that is a candidate by 13.3.1.3 when
1047 // invoked for the copying of the temporary in the second step
1048 // of a class copy-initialization, or by 13.3.1.4, 13.3.1.5, or
1049 // 13.3.1.6 in all cases, only standard conversion sequences and
1050 // ellipsis conversion sequences are allowed.
1051 if (SuppressUserConversions && ICS.isUserDefined()) {
1052 ICS.setBad(BadConversionSequence::suppressed_user, From, ToType);
1053 }
1054 } else if (UserDefResult == OR_Ambiguous && !SuppressUserConversions) {
1055 ICS.setAmbiguous();
1056 ICS.Ambiguous.setFromType(From->getType());
1057 ICS.Ambiguous.setToType(ToType);
1058 for (OverloadCandidateSet::iterator Cand = Conversions.begin();
1059 Cand != Conversions.end(); ++Cand)
1060 if (Cand->Viable)
1061 ICS.Ambiguous.addConversion(Cand->Function);
1062 } else {
1063 ICS.setBad(BadConversionSequence::no_conversion, From, ToType);
1064 }
1065
1066 return ICS;
1067}
1068
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001069/// TryImplicitConversion - Attempt to perform an implicit conversion
1070/// from the given expression (Expr) to the given type (ToType). This
1071/// function returns an implicit conversion sequence that can be used
1072/// to perform the initialization. Given
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001073///
1074/// void f(float f);
1075/// void g(int i) { f(i); }
1076///
1077/// this routine would produce an implicit conversion sequence to
1078/// describe the initialization of f from i, which will be a standard
1079/// conversion sequence containing an lvalue-to-rvalue conversion (C++
1080/// 4.1) followed by a floating-integral conversion (C++ 4.9).
1081//
1082/// Note that this routine only determines how the conversion can be
1083/// performed; it does not actually perform the conversion. As such,
1084/// it will not produce any diagnostics if no conversion is available,
1085/// but will instead return an implicit conversion sequence of kind
1086/// "BadConversion".
Douglas Gregor225c41e2008-11-03 19:09:14 +00001087///
1088/// If @p SuppressUserConversions, then user-defined conversions are
1089/// not permitted.
Douglas Gregor09f41cf2009-01-14 15:45:31 +00001090/// If @p AllowExplicit, then explicit user-defined conversions are
1091/// permitted.
John McCallf85e1932011-06-15 23:02:42 +00001092///
1093/// \param AllowObjCWritebackConversion Whether we allow the Objective-C
1094/// writeback conversion, which allows __autoreleasing id* parameters to
1095/// be initialized with __strong id* or __weak id* arguments.
John McCall120d63c2010-08-24 20:38:10 +00001096static ImplicitConversionSequence
1097TryImplicitConversion(Sema &S, Expr *From, QualType ToType,
1098 bool SuppressUserConversions,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001099 bool AllowExplicit,
Douglas Gregor14d0aee2011-01-27 00:58:17 +00001100 bool InOverloadResolution,
John McCallf85e1932011-06-15 23:02:42 +00001101 bool CStyle,
1102 bool AllowObjCWritebackConversion) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001103 ImplicitConversionSequence ICS;
John McCall120d63c2010-08-24 20:38:10 +00001104 if (IsStandardConversion(S, From, ToType, InOverloadResolution,
John McCallf85e1932011-06-15 23:02:42 +00001105 ICS.Standard, CStyle, AllowObjCWritebackConversion)){
John McCall1d318332010-01-12 00:44:57 +00001106 ICS.setStandard();
John McCall5769d612010-02-08 23:07:23 +00001107 return ICS;
1108 }
1109
John McCall120d63c2010-08-24 20:38:10 +00001110 if (!S.getLangOptions().CPlusPlus) {
John McCallb1bdc622010-02-25 01:37:24 +00001111 ICS.setBad(BadConversionSequence::no_conversion, From, ToType);
John McCall5769d612010-02-08 23:07:23 +00001112 return ICS;
1113 }
1114
Douglas Gregor604eb652010-08-11 02:15:33 +00001115 // C++ [over.ics.user]p4:
1116 // A conversion of an expression of class type to the same class
1117 // type is given Exact Match rank, and a conversion of an
1118 // expression of class type to a base class of that type is
1119 // given Conversion rank, in spite of the fact that a copy/move
1120 // constructor (i.e., a user-defined conversion function) is
1121 // called for those cases.
1122 QualType FromType = From->getType();
1123 if (ToType->getAs<RecordType>() && FromType->getAs<RecordType>() &&
John McCall120d63c2010-08-24 20:38:10 +00001124 (S.Context.hasSameUnqualifiedType(FromType, ToType) ||
1125 S.IsDerivedFrom(FromType, ToType))) {
Douglas Gregor3fbaf3e2010-04-17 22:01:05 +00001126 ICS.setStandard();
1127 ICS.Standard.setAsIdentityConversion();
1128 ICS.Standard.setFromType(FromType);
1129 ICS.Standard.setAllToTypes(ToType);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001130
Douglas Gregor3fbaf3e2010-04-17 22:01:05 +00001131 // We don't actually check at this point whether there is a valid
1132 // copy/move constructor, since overloading just assumes that it
1133 // exists. When we actually perform initialization, we'll find the
1134 // appropriate constructor to copy the returned object, if needed.
1135 ICS.Standard.CopyConstructor = 0;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001136
Douglas Gregor3fbaf3e2010-04-17 22:01:05 +00001137 // Determine whether this is considered a derived-to-base conversion.
John McCall120d63c2010-08-24 20:38:10 +00001138 if (!S.Context.hasSameUnqualifiedType(FromType, ToType))
Douglas Gregor3fbaf3e2010-04-17 22:01:05 +00001139 ICS.Standard.Second = ICK_Derived_To_Base;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001140
Douglas Gregor604eb652010-08-11 02:15:33 +00001141 return ICS;
1142 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001143
Sebastian Redlcf15cef2011-12-22 18:58:38 +00001144 return TryUserDefinedConversion(S, From, ToType, SuppressUserConversions,
1145 AllowExplicit, InOverloadResolution, CStyle,
1146 AllowObjCWritebackConversion);
Douglas Gregor60d62c22008-10-31 16:23:19 +00001147}
1148
John McCallf85e1932011-06-15 23:02:42 +00001149ImplicitConversionSequence
1150Sema::TryImplicitConversion(Expr *From, QualType ToType,
1151 bool SuppressUserConversions,
1152 bool AllowExplicit,
1153 bool InOverloadResolution,
1154 bool CStyle,
1155 bool AllowObjCWritebackConversion) {
1156 return clang::TryImplicitConversion(*this, From, ToType,
1157 SuppressUserConversions, AllowExplicit,
1158 InOverloadResolution, CStyle,
1159 AllowObjCWritebackConversion);
John McCall120d63c2010-08-24 20:38:10 +00001160}
1161
Douglas Gregor575c63a2010-04-16 22:27:05 +00001162/// PerformImplicitConversion - Perform an implicit conversion of the
John Wiegley429bb272011-04-08 18:41:53 +00001163/// expression From to the type ToType. Returns the
Douglas Gregor575c63a2010-04-16 22:27:05 +00001164/// converted expression. Flavor is the kind of conversion we're
1165/// performing, used in the error message. If @p AllowExplicit,
1166/// explicit user-defined conversions are permitted.
John Wiegley429bb272011-04-08 18:41:53 +00001167ExprResult
1168Sema::PerformImplicitConversion(Expr *From, QualType ToType,
Sebastian Redl091fffe2011-10-16 18:19:06 +00001169 AssignmentAction Action, bool AllowExplicit) {
Douglas Gregor575c63a2010-04-16 22:27:05 +00001170 ImplicitConversionSequence ICS;
Sebastian Redl091fffe2011-10-16 18:19:06 +00001171 return PerformImplicitConversion(From, ToType, Action, AllowExplicit, ICS);
Douglas Gregor575c63a2010-04-16 22:27:05 +00001172}
1173
John Wiegley429bb272011-04-08 18:41:53 +00001174ExprResult
1175Sema::PerformImplicitConversion(Expr *From, QualType ToType,
Douglas Gregor575c63a2010-04-16 22:27:05 +00001176 AssignmentAction Action, bool AllowExplicit,
Sebastian Redl091fffe2011-10-16 18:19:06 +00001177 ImplicitConversionSequence& ICS) {
John McCall3c3b7f92011-10-25 17:37:35 +00001178 if (checkPlaceholderForOverload(*this, From))
1179 return ExprError();
1180
John McCallf85e1932011-06-15 23:02:42 +00001181 // Objective-C ARC: Determine whether we will allow the writeback conversion.
1182 bool AllowObjCWritebackConversion
1183 = getLangOptions().ObjCAutoRefCount &&
1184 (Action == AA_Passing || Action == AA_Sending);
John McCallf85e1932011-06-15 23:02:42 +00001185
John McCall120d63c2010-08-24 20:38:10 +00001186 ICS = clang::TryImplicitConversion(*this, From, ToType,
1187 /*SuppressUserConversions=*/false,
1188 AllowExplicit,
Douglas Gregor14d0aee2011-01-27 00:58:17 +00001189 /*InOverloadResolution=*/false,
John McCallf85e1932011-06-15 23:02:42 +00001190 /*CStyle=*/false,
1191 AllowObjCWritebackConversion);
Douglas Gregor575c63a2010-04-16 22:27:05 +00001192 return PerformImplicitConversion(From, ToType, ICS, Action);
1193}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001194
1195/// \brief Determine whether the conversion from FromType to ToType is a valid
Douglas Gregor43c79c22009-12-09 00:47:37 +00001196/// conversion that strips "noreturn" off the nested function type.
Chandler Carruth18e04612011-06-18 01:19:03 +00001197bool Sema::IsNoReturnConversion(QualType FromType, QualType ToType,
1198 QualType &ResultTy) {
Douglas Gregor43c79c22009-12-09 00:47:37 +00001199 if (Context.hasSameUnqualifiedType(FromType, ToType))
1200 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001201
John McCall00ccbef2010-12-21 00:44:39 +00001202 // Permit the conversion F(t __attribute__((noreturn))) -> F(t)
1203 // where F adds one of the following at most once:
1204 // - a pointer
1205 // - a member pointer
1206 // - a block pointer
1207 CanQualType CanTo = Context.getCanonicalType(ToType);
1208 CanQualType CanFrom = Context.getCanonicalType(FromType);
1209 Type::TypeClass TyClass = CanTo->getTypeClass();
1210 if (TyClass != CanFrom->getTypeClass()) return false;
1211 if (TyClass != Type::FunctionProto && TyClass != Type::FunctionNoProto) {
1212 if (TyClass == Type::Pointer) {
1213 CanTo = CanTo.getAs<PointerType>()->getPointeeType();
1214 CanFrom = CanFrom.getAs<PointerType>()->getPointeeType();
1215 } else if (TyClass == Type::BlockPointer) {
1216 CanTo = CanTo.getAs<BlockPointerType>()->getPointeeType();
1217 CanFrom = CanFrom.getAs<BlockPointerType>()->getPointeeType();
1218 } else if (TyClass == Type::MemberPointer) {
1219 CanTo = CanTo.getAs<MemberPointerType>()->getPointeeType();
1220 CanFrom = CanFrom.getAs<MemberPointerType>()->getPointeeType();
1221 } else {
1222 return false;
1223 }
Douglas Gregor43c79c22009-12-09 00:47:37 +00001224
John McCall00ccbef2010-12-21 00:44:39 +00001225 TyClass = CanTo->getTypeClass();
1226 if (TyClass != CanFrom->getTypeClass()) return false;
1227 if (TyClass != Type::FunctionProto && TyClass != Type::FunctionNoProto)
1228 return false;
1229 }
1230
1231 const FunctionType *FromFn = cast<FunctionType>(CanFrom);
1232 FunctionType::ExtInfo EInfo = FromFn->getExtInfo();
1233 if (!EInfo.getNoReturn()) return false;
1234
1235 FromFn = Context.adjustFunctionType(FromFn, EInfo.withNoReturn(false));
1236 assert(QualType(FromFn, 0).isCanonical());
1237 if (QualType(FromFn, 0) != CanTo) return false;
1238
1239 ResultTy = ToType;
Douglas Gregor43c79c22009-12-09 00:47:37 +00001240 return true;
1241}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001242
Douglas Gregorfb4a5432010-05-18 22:42:18 +00001243/// \brief Determine whether the conversion from FromType to ToType is a valid
1244/// vector conversion.
1245///
1246/// \param ICK Will be set to the vector conversion kind, if this is a vector
1247/// conversion.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001248static bool IsVectorConversion(ASTContext &Context, QualType FromType,
1249 QualType ToType, ImplicitConversionKind &ICK) {
Douglas Gregorfb4a5432010-05-18 22:42:18 +00001250 // We need at least one of these types to be a vector type to have a vector
1251 // conversion.
1252 if (!ToType->isVectorType() && !FromType->isVectorType())
1253 return false;
1254
1255 // Identical types require no conversions.
1256 if (Context.hasSameUnqualifiedType(FromType, ToType))
1257 return false;
1258
1259 // There are no conversions between extended vector types, only identity.
1260 if (ToType->isExtVectorType()) {
1261 // There are no conversions between extended vector types other than the
1262 // identity conversion.
1263 if (FromType->isExtVectorType())
1264 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001265
Douglas Gregorfb4a5432010-05-18 22:42:18 +00001266 // Vector splat from any arithmetic type to a vector.
Douglas Gregor00619622010-06-22 23:41:02 +00001267 if (FromType->isArithmeticType()) {
Douglas Gregorfb4a5432010-05-18 22:42:18 +00001268 ICK = ICK_Vector_Splat;
1269 return true;
1270 }
1271 }
Douglas Gregor255210e2010-08-06 10:14:59 +00001272
1273 // We can perform the conversion between vector types in the following cases:
1274 // 1)vector types are equivalent AltiVec and GCC vector types
1275 // 2)lax vector conversions are permitted and the vector types are of the
1276 // same size
1277 if (ToType->isVectorType() && FromType->isVectorType()) {
1278 if (Context.areCompatibleVectorTypes(FromType, ToType) ||
Chandler Carruthc45eb9c2010-08-08 05:02:51 +00001279 (Context.getLangOptions().LaxVectorConversions &&
1280 (Context.getTypeSize(FromType) == Context.getTypeSize(ToType)))) {
Douglas Gregor255210e2010-08-06 10:14:59 +00001281 ICK = ICK_Vector_Conversion;
1282 return true;
1283 }
Douglas Gregorfb4a5432010-05-18 22:42:18 +00001284 }
Douglas Gregor255210e2010-08-06 10:14:59 +00001285
Douglas Gregorfb4a5432010-05-18 22:42:18 +00001286 return false;
1287}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001288
Douglas Gregor60d62c22008-10-31 16:23:19 +00001289/// IsStandardConversion - Determines whether there is a standard
1290/// conversion sequence (C++ [conv], C++ [over.ics.scs]) from the
1291/// expression From to the type ToType. Standard conversion sequences
1292/// only consider non-class types; for conversions that involve class
1293/// types, use TryImplicitConversion. If a conversion exists, SCS will
1294/// contain the standard conversion sequence required to perform this
1295/// conversion and this routine will return true. Otherwise, this
1296/// routine will return false and the value of SCS is unspecified.
John McCall120d63c2010-08-24 20:38:10 +00001297static bool IsStandardConversion(Sema &S, Expr* From, QualType ToType,
1298 bool InOverloadResolution,
Douglas Gregor14d0aee2011-01-27 00:58:17 +00001299 StandardConversionSequence &SCS,
John McCallf85e1932011-06-15 23:02:42 +00001300 bool CStyle,
1301 bool AllowObjCWritebackConversion) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001302 QualType FromType = From->getType();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001303
Douglas Gregor60d62c22008-10-31 16:23:19 +00001304 // Standard conversions (C++ [conv])
Douglas Gregoreb8f3062008-11-12 17:17:38 +00001305 SCS.setAsIdentityConversion();
Douglas Gregora9bff302010-02-28 18:30:25 +00001306 SCS.DeprecatedStringLiteralToCharPtr = false;
Douglas Gregor45920e82008-12-19 17:40:08 +00001307 SCS.IncompatibleObjC = false;
John McCall1d318332010-01-12 00:44:57 +00001308 SCS.setFromType(FromType);
Douglas Gregor225c41e2008-11-03 19:09:14 +00001309 SCS.CopyConstructor = 0;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001310
Douglas Gregorf9201e02009-02-11 23:02:49 +00001311 // There are no standard conversions for class types in C++, so
Mike Stump1eb44332009-09-09 15:08:12 +00001312 // abort early. When overloading in C, however, we do permit
Douglas Gregorf9201e02009-02-11 23:02:49 +00001313 if (FromType->isRecordType() || ToType->isRecordType()) {
John McCall120d63c2010-08-24 20:38:10 +00001314 if (S.getLangOptions().CPlusPlus)
Douglas Gregorf9201e02009-02-11 23:02:49 +00001315 return false;
1316
Mike Stump1eb44332009-09-09 15:08:12 +00001317 // When we're overloading in C, we allow, as standard conversions,
Douglas Gregorf9201e02009-02-11 23:02:49 +00001318 }
1319
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001320 // The first conversion can be an lvalue-to-rvalue conversion,
1321 // array-to-pointer conversion, or function-to-pointer conversion
1322 // (C++ 4p1).
1323
John McCall120d63c2010-08-24 20:38:10 +00001324 if (FromType == S.Context.OverloadTy) {
Douglas Gregorad4e02f2010-04-29 18:24:40 +00001325 DeclAccessPair AccessPair;
1326 if (FunctionDecl *Fn
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001327 = S.ResolveAddressOfOverloadedFunction(From, ToType, false,
John McCall120d63c2010-08-24 20:38:10 +00001328 AccessPair)) {
Douglas Gregorad4e02f2010-04-29 18:24:40 +00001329 // We were able to resolve the address of the overloaded function,
1330 // so we can convert to the type of that function.
1331 FromType = Fn->getType();
Douglas Gregor1be8eec2011-02-19 21:32:49 +00001332
1333 // we can sometimes resolve &foo<int> regardless of ToType, so check
1334 // if the type matches (identity) or we are converting to bool
1335 if (!S.Context.hasSameUnqualifiedType(
1336 S.ExtractUnqualifiedFunctionType(ToType), FromType)) {
1337 QualType resultTy;
1338 // if the function type matches except for [[noreturn]], it's ok
Chandler Carruth18e04612011-06-18 01:19:03 +00001339 if (!S.IsNoReturnConversion(FromType,
Douglas Gregor1be8eec2011-02-19 21:32:49 +00001340 S.ExtractUnqualifiedFunctionType(ToType), resultTy))
1341 // otherwise, only a boolean conversion is standard
1342 if (!ToType->isBooleanType())
1343 return false;
Douglas Gregorad4e02f2010-04-29 18:24:40 +00001344 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001345
Chandler Carruth90434232011-03-29 08:08:18 +00001346 // Check if the "from" expression is taking the address of an overloaded
1347 // function and recompute the FromType accordingly. Take advantage of the
1348 // fact that non-static member functions *must* have such an address-of
1349 // expression.
1350 CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Fn);
1351 if (Method && !Method->isStatic()) {
1352 assert(isa<UnaryOperator>(From->IgnoreParens()) &&
1353 "Non-unary operator on non-static member address");
1354 assert(cast<UnaryOperator>(From->IgnoreParens())->getOpcode()
1355 == UO_AddrOf &&
1356 "Non-address-of operator on non-static member address");
1357 const Type *ClassType
1358 = S.Context.getTypeDeclType(Method->getParent()).getTypePtr();
1359 FromType = S.Context.getMemberPointerType(FromType, ClassType);
Chandler Carruthfc5c8fc2011-03-29 18:38:10 +00001360 } else if (isa<UnaryOperator>(From->IgnoreParens())) {
1361 assert(cast<UnaryOperator>(From->IgnoreParens())->getOpcode() ==
1362 UO_AddrOf &&
Chandler Carruth90434232011-03-29 08:08:18 +00001363 "Non-address-of operator for overloaded function expression");
1364 FromType = S.Context.getPointerType(FromType);
1365 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001366
Douglas Gregorad4e02f2010-04-29 18:24:40 +00001367 // Check that we've computed the proper type after overload resolution.
Chandler Carruth90434232011-03-29 08:08:18 +00001368 assert(S.Context.hasSameType(
1369 FromType,
1370 S.FixOverloadedFunctionReference(From, AccessPair, Fn)->getType()));
Douglas Gregorad4e02f2010-04-29 18:24:40 +00001371 } else {
1372 return false;
1373 }
Anders Carlsson2bd62502010-11-04 05:28:09 +00001374 }
John McCall21480112011-08-30 00:57:29 +00001375 // Lvalue-to-rvalue conversion (C++11 4.1):
1376 // A glvalue (3.10) of a non-function, non-array type T can
1377 // be converted to a prvalue.
1378 bool argIsLValue = From->isGLValue();
John McCall7eb0a9e2010-11-24 05:12:34 +00001379 if (argIsLValue &&
Douglas Gregor904eed32008-11-10 20:40:00 +00001380 !FromType->isFunctionType() && !FromType->isArrayType() &&
John McCall120d63c2010-08-24 20:38:10 +00001381 S.Context.getCanonicalType(FromType) != S.Context.OverloadTy) {
Douglas Gregor60d62c22008-10-31 16:23:19 +00001382 SCS.First = ICK_Lvalue_To_Rvalue;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001383
1384 // If T is a non-class type, the type of the rvalue is the
1385 // cv-unqualified version of T. Otherwise, the type of the rvalue
Douglas Gregorf9201e02009-02-11 23:02:49 +00001386 // is T (C++ 4.1p1). C++ can't get here with class types; in C, we
1387 // just strip the qualifiers because they don't matter.
Douglas Gregor60d62c22008-10-31 16:23:19 +00001388 FromType = FromType.getUnqualifiedType();
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001389 } else if (FromType->isArrayType()) {
1390 // Array-to-pointer conversion (C++ 4.2)
Douglas Gregor60d62c22008-10-31 16:23:19 +00001391 SCS.First = ICK_Array_To_Pointer;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001392
1393 // An lvalue or rvalue of type "array of N T" or "array of unknown
1394 // bound of T" can be converted to an rvalue of type "pointer to
1395 // T" (C++ 4.2p1).
John McCall120d63c2010-08-24 20:38:10 +00001396 FromType = S.Context.getArrayDecayedType(FromType);
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001397
John McCall120d63c2010-08-24 20:38:10 +00001398 if (S.IsStringLiteralToNonConstPointerConversion(From, ToType)) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001399 // This conversion is deprecated. (C++ D.4).
Douglas Gregora9bff302010-02-28 18:30:25 +00001400 SCS.DeprecatedStringLiteralToCharPtr = true;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001401
1402 // For the purpose of ranking in overload resolution
1403 // (13.3.3.1.1), this conversion is considered an
1404 // array-to-pointer conversion followed by a qualification
1405 // conversion (4.4). (C++ 4.2p2)
Douglas Gregor60d62c22008-10-31 16:23:19 +00001406 SCS.Second = ICK_Identity;
1407 SCS.Third = ICK_Qualification;
John McCallf85e1932011-06-15 23:02:42 +00001408 SCS.QualificationIncludesObjCLifetime = false;
Douglas Gregorad323a82010-01-27 03:51:04 +00001409 SCS.setAllToTypes(FromType);
Douglas Gregor60d62c22008-10-31 16:23:19 +00001410 return true;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001411 }
John McCall7eb0a9e2010-11-24 05:12:34 +00001412 } else if (FromType->isFunctionType() && argIsLValue) {
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001413 // Function-to-pointer conversion (C++ 4.3).
Douglas Gregor60d62c22008-10-31 16:23:19 +00001414 SCS.First = ICK_Function_To_Pointer;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001415
1416 // An lvalue of function type T can be converted to an rvalue of
1417 // type "pointer to T." The result is a pointer to the
1418 // function. (C++ 4.3p1).
John McCall120d63c2010-08-24 20:38:10 +00001419 FromType = S.Context.getPointerType(FromType);
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001420 } else {
1421 // We don't require any conversions for the first step.
Douglas Gregor60d62c22008-10-31 16:23:19 +00001422 SCS.First = ICK_Identity;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001423 }
Douglas Gregorad323a82010-01-27 03:51:04 +00001424 SCS.setToType(0, FromType);
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001425
1426 // The second conversion can be an integral promotion, floating
1427 // point promotion, integral conversion, floating point conversion,
1428 // floating-integral conversion, pointer conversion,
1429 // pointer-to-member conversion, or boolean conversion (C++ 4p1).
Douglas Gregorf9201e02009-02-11 23:02:49 +00001430 // For overloading in C, this can also be a "compatible-type"
1431 // conversion.
Douglas Gregor45920e82008-12-19 17:40:08 +00001432 bool IncompatibleObjC = false;
Douglas Gregorfb4a5432010-05-18 22:42:18 +00001433 ImplicitConversionKind SecondICK = ICK_Identity;
John McCall120d63c2010-08-24 20:38:10 +00001434 if (S.Context.hasSameUnqualifiedType(FromType, ToType)) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001435 // The unqualified versions of the types are the same: there's no
1436 // conversion to do.
Douglas Gregor60d62c22008-10-31 16:23:19 +00001437 SCS.Second = ICK_Identity;
John McCall120d63c2010-08-24 20:38:10 +00001438 } else if (S.IsIntegralPromotion(From, FromType, ToType)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001439 // Integral promotion (C++ 4.5).
Douglas Gregor60d62c22008-10-31 16:23:19 +00001440 SCS.Second = ICK_Integral_Promotion;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001441 FromType = ToType.getUnqualifiedType();
John McCall120d63c2010-08-24 20:38:10 +00001442 } else if (S.IsFloatingPointPromotion(FromType, ToType)) {
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001443 // Floating point promotion (C++ 4.6).
Douglas Gregor60d62c22008-10-31 16:23:19 +00001444 SCS.Second = ICK_Floating_Promotion;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001445 FromType = ToType.getUnqualifiedType();
John McCall120d63c2010-08-24 20:38:10 +00001446 } else if (S.IsComplexPromotion(FromType, ToType)) {
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001447 // Complex promotion (Clang extension)
Douglas Gregor5cdf8212009-02-12 00:15:05 +00001448 SCS.Second = ICK_Complex_Promotion;
1449 FromType = ToType.getUnqualifiedType();
John McCalldaa8e4e2010-11-15 09:13:47 +00001450 } else if (ToType->isBooleanType() &&
1451 (FromType->isArithmeticType() ||
1452 FromType->isAnyPointerType() ||
1453 FromType->isBlockPointerType() ||
1454 FromType->isMemberPointerType() ||
1455 FromType->isNullPtrType())) {
1456 // Boolean conversions (C++ 4.12).
1457 SCS.Second = ICK_Boolean_Conversion;
1458 FromType = S.Context.BoolTy;
Douglas Gregor1274ccd2010-10-08 23:50:27 +00001459 } else if (FromType->isIntegralOrUnscopedEnumerationType() &&
John McCall120d63c2010-08-24 20:38:10 +00001460 ToType->isIntegralType(S.Context)) {
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001461 // Integral conversions (C++ 4.7).
Douglas Gregor60d62c22008-10-31 16:23:19 +00001462 SCS.Second = ICK_Integral_Conversion;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001463 FromType = ToType.getUnqualifiedType();
John McCalldaa8e4e2010-11-15 09:13:47 +00001464 } else if (FromType->isAnyComplexType() && ToType->isComplexType()) {
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001465 // Complex conversions (C99 6.3.1.6)
Douglas Gregor5cdf8212009-02-12 00:15:05 +00001466 SCS.Second = ICK_Complex_Conversion;
1467 FromType = ToType.getUnqualifiedType();
John McCalldaa8e4e2010-11-15 09:13:47 +00001468 } else if ((FromType->isAnyComplexType() && ToType->isArithmeticType()) ||
1469 (ToType->isAnyComplexType() && FromType->isArithmeticType())) {
Chandler Carruth23a370f2010-02-25 07:20:54 +00001470 // Complex-real conversions (C99 6.3.1.7)
1471 SCS.Second = ICK_Complex_Real;
1472 FromType = ToType.getUnqualifiedType();
Douglas Gregor0c293ea2010-06-22 23:07:26 +00001473 } else if (FromType->isRealFloatingType() && ToType->isRealFloatingType()) {
Chandler Carruth23a370f2010-02-25 07:20:54 +00001474 // Floating point conversions (C++ 4.8).
1475 SCS.Second = ICK_Floating_Conversion;
1476 FromType = ToType.getUnqualifiedType();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001477 } else if ((FromType->isRealFloatingType() &&
John McCalldaa8e4e2010-11-15 09:13:47 +00001478 ToType->isIntegralType(S.Context)) ||
Douglas Gregor1274ccd2010-10-08 23:50:27 +00001479 (FromType->isIntegralOrUnscopedEnumerationType() &&
Douglas Gregor0c293ea2010-06-22 23:07:26 +00001480 ToType->isRealFloatingType())) {
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001481 // Floating-integral conversions (C++ 4.9).
Douglas Gregor60d62c22008-10-31 16:23:19 +00001482 SCS.Second = ICK_Floating_Integral;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001483 FromType = ToType.getUnqualifiedType();
Fariborz Jahaniane3c8c642011-02-12 19:07:46 +00001484 } else if (S.IsBlockPointerConversion(FromType, ToType, FromType)) {
John McCallf85e1932011-06-15 23:02:42 +00001485 SCS.Second = ICK_Block_Pointer_Conversion;
1486 } else if (AllowObjCWritebackConversion &&
1487 S.isObjCWritebackConversion(FromType, ToType, FromType)) {
1488 SCS.Second = ICK_Writeback_Conversion;
John McCall120d63c2010-08-24 20:38:10 +00001489 } else if (S.IsPointerConversion(From, FromType, ToType, InOverloadResolution,
1490 FromType, IncompatibleObjC)) {
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001491 // Pointer conversions (C++ 4.10).
Douglas Gregor60d62c22008-10-31 16:23:19 +00001492 SCS.Second = ICK_Pointer_Conversion;
Douglas Gregor45920e82008-12-19 17:40:08 +00001493 SCS.IncompatibleObjC = IncompatibleObjC;
Douglas Gregor028ea4b2011-04-26 23:16:46 +00001494 FromType = FromType.getUnqualifiedType();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001495 } else if (S.IsMemberPointerConversion(From, FromType, ToType,
John McCall120d63c2010-08-24 20:38:10 +00001496 InOverloadResolution, FromType)) {
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001497 // Pointer to member conversions (4.11).
Sebastian Redl4433aaf2009-01-25 19:43:20 +00001498 SCS.Second = ICK_Pointer_Member;
John McCall120d63c2010-08-24 20:38:10 +00001499 } else if (IsVectorConversion(S.Context, FromType, ToType, SecondICK)) {
Douglas Gregorfb4a5432010-05-18 22:42:18 +00001500 SCS.Second = SecondICK;
1501 FromType = ToType.getUnqualifiedType();
John McCall120d63c2010-08-24 20:38:10 +00001502 } else if (!S.getLangOptions().CPlusPlus &&
1503 S.Context.typesAreCompatible(ToType, FromType)) {
Mike Stumpac5fc7c2009-08-04 21:02:39 +00001504 // Compatible conversions (Clang extension for C function overloading)
Douglas Gregorf9201e02009-02-11 23:02:49 +00001505 SCS.Second = ICK_Compatible_Conversion;
Douglas Gregorfb4a5432010-05-18 22:42:18 +00001506 FromType = ToType.getUnqualifiedType();
Chandler Carruth18e04612011-06-18 01:19:03 +00001507 } else if (S.IsNoReturnConversion(FromType, ToType, FromType)) {
Douglas Gregor43c79c22009-12-09 00:47:37 +00001508 // Treat a conversion that strips "noreturn" as an identity conversion.
1509 SCS.Second = ICK_NoReturn_Adjustment;
Fariborz Jahaniand97f5582011-03-23 19:50:54 +00001510 } else if (IsTransparentUnionStandardConversion(S, From, ToType,
1511 InOverloadResolution,
1512 SCS, CStyle)) {
1513 SCS.Second = ICK_TransparentUnionConversion;
1514 FromType = ToType;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001515 } else {
1516 // No second conversion required.
Douglas Gregor60d62c22008-10-31 16:23:19 +00001517 SCS.Second = ICK_Identity;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001518 }
Douglas Gregorad323a82010-01-27 03:51:04 +00001519 SCS.setToType(1, FromType);
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001520
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001521 QualType CanonFrom;
1522 QualType CanonTo;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001523 // The third conversion can be a qualification conversion (C++ 4p1).
John McCallf85e1932011-06-15 23:02:42 +00001524 bool ObjCLifetimeConversion;
1525 if (S.IsQualificationConversion(FromType, ToType, CStyle,
1526 ObjCLifetimeConversion)) {
Douglas Gregor60d62c22008-10-31 16:23:19 +00001527 SCS.Third = ICK_Qualification;
John McCallf85e1932011-06-15 23:02:42 +00001528 SCS.QualificationIncludesObjCLifetime = ObjCLifetimeConversion;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001529 FromType = ToType;
John McCall120d63c2010-08-24 20:38:10 +00001530 CanonFrom = S.Context.getCanonicalType(FromType);
1531 CanonTo = S.Context.getCanonicalType(ToType);
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001532 } else {
1533 // No conversion required
Douglas Gregor60d62c22008-10-31 16:23:19 +00001534 SCS.Third = ICK_Identity;
1535
Mike Stump1eb44332009-09-09 15:08:12 +00001536 // C++ [over.best.ics]p6:
Douglas Gregor60d62c22008-10-31 16:23:19 +00001537 // [...] Any difference in top-level cv-qualification is
1538 // subsumed by the initialization itself and does not constitute
1539 // a conversion. [...]
John McCall120d63c2010-08-24 20:38:10 +00001540 CanonFrom = S.Context.getCanonicalType(FromType);
1541 CanonTo = S.Context.getCanonicalType(ToType);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001542 if (CanonFrom.getLocalUnqualifiedType()
Douglas Gregora4923eb2009-11-16 21:35:15 +00001543 == CanonTo.getLocalUnqualifiedType() &&
Fariborz Jahanian62ac5d02010-05-18 23:04:17 +00001544 (CanonFrom.getLocalCVRQualifiers() != CanonTo.getLocalCVRQualifiers()
John McCallf85e1932011-06-15 23:02:42 +00001545 || CanonFrom.getObjCGCAttr() != CanonTo.getObjCGCAttr()
1546 || CanonFrom.getObjCLifetime() != CanonTo.getObjCLifetime())) {
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001547 FromType = ToType;
1548 CanonFrom = CanonTo;
1549 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001550 }
Douglas Gregorad323a82010-01-27 03:51:04 +00001551 SCS.setToType(2, FromType);
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001552
1553 // If we have not converted the argument type to the parameter type,
1554 // this is a bad conversion sequence.
Douglas Gregor27c8dc02008-10-29 00:13:59 +00001555 if (CanonFrom != CanonTo)
Douglas Gregor60d62c22008-10-31 16:23:19 +00001556 return false;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001557
Douglas Gregor60d62c22008-10-31 16:23:19 +00001558 return true;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001559}
Fariborz Jahaniand97f5582011-03-23 19:50:54 +00001560
1561static bool
1562IsTransparentUnionStandardConversion(Sema &S, Expr* From,
1563 QualType &ToType,
1564 bool InOverloadResolution,
1565 StandardConversionSequence &SCS,
1566 bool CStyle) {
1567
1568 const RecordType *UT = ToType->getAsUnionType();
1569 if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>())
1570 return false;
1571 // The field to initialize within the transparent union.
1572 RecordDecl *UD = UT->getDecl();
1573 // It's compatible if the expression matches any of the fields.
1574 for (RecordDecl::field_iterator it = UD->field_begin(),
1575 itend = UD->field_end();
1576 it != itend; ++it) {
John McCallf85e1932011-06-15 23:02:42 +00001577 if (IsStandardConversion(S, From, it->getType(), InOverloadResolution, SCS,
1578 CStyle, /*ObjCWritebackConversion=*/false)) {
Fariborz Jahaniand97f5582011-03-23 19:50:54 +00001579 ToType = it->getType();
1580 return true;
1581 }
1582 }
1583 return false;
1584}
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001585
1586/// IsIntegralPromotion - Determines whether the conversion from the
1587/// expression From (whose potentially-adjusted type is FromType) to
1588/// ToType is an integral promotion (C++ 4.5). If so, returns true and
1589/// sets PromotedType to the promoted type.
Mike Stump1eb44332009-09-09 15:08:12 +00001590bool Sema::IsIntegralPromotion(Expr *From, QualType FromType, QualType ToType) {
John McCall183700f2009-09-21 23:43:11 +00001591 const BuiltinType *To = ToType->getAs<BuiltinType>();
Sebastian Redlf7be9442008-11-04 15:59:10 +00001592 // All integers are built-in.
Sebastian Redl07779722008-10-31 14:43:28 +00001593 if (!To) {
1594 return false;
1595 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001596
1597 // An rvalue of type char, signed char, unsigned char, short int, or
1598 // unsigned short int can be converted to an rvalue of type int if
1599 // int can represent all the values of the source type; otherwise,
1600 // the source rvalue can be converted to an rvalue of type unsigned
1601 // int (C++ 4.5p1).
Douglas Gregoraa74a1e2010-02-02 20:10:50 +00001602 if (FromType->isPromotableIntegerType() && !FromType->isBooleanType() &&
1603 !FromType->isEnumeralType()) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001604 if (// We can promote any signed, promotable integer type to an int
1605 (FromType->isSignedIntegerType() ||
1606 // We can promote any unsigned integer type whose size is
1607 // less than int to an int.
Mike Stump1eb44332009-09-09 15:08:12 +00001608 (!FromType->isSignedIntegerType() &&
Sebastian Redl07779722008-10-31 14:43:28 +00001609 Context.getTypeSize(FromType) < Context.getTypeSize(ToType)))) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001610 return To->getKind() == BuiltinType::Int;
Sebastian Redl07779722008-10-31 14:43:28 +00001611 }
1612
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001613 return To->getKind() == BuiltinType::UInt;
1614 }
1615
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001616 // C++0x [conv.prom]p3:
1617 // A prvalue of an unscoped enumeration type whose underlying type is not
1618 // fixed (7.2) can be converted to an rvalue a prvalue of the first of the
1619 // following types that can represent all the values of the enumeration
1620 // (i.e., the values in the range bmin to bmax as described in 7.2): int,
1621 // unsigned int, long int, unsigned long int, long long int, or unsigned
Douglas Gregor0b8ddb92010-10-21 18:04:08 +00001622 // long long int. If none of the types in that list can represent all the
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001623 // values of the enumeration, an rvalue a prvalue of an unscoped enumeration
Douglas Gregor0b8ddb92010-10-21 18:04:08 +00001624 // type can be converted to an rvalue a prvalue of the extended integer type
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001625 // with lowest integer conversion rank (4.13) greater than the rank of long
1626 // long in which all the values of the enumeration can be represented. If
Douglas Gregor0b8ddb92010-10-21 18:04:08 +00001627 // there are two such extended types, the signed one is chosen.
Douglas Gregor1274ccd2010-10-08 23:50:27 +00001628 if (const EnumType *FromEnumType = FromType->getAs<EnumType>()) {
1629 // C++0x 7.2p9: Note that this implicit enum to int conversion is not
1630 // provided for a scoped enumeration.
1631 if (FromEnumType->getDecl()->isScoped())
1632 return false;
1633
Douglas Gregor0b8ddb92010-10-21 18:04:08 +00001634 // We have already pre-calculated the promotion type, so this is trivial.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001635 if (ToType->isIntegerType() &&
Douglas Gregor5dde1602010-09-12 03:38:25 +00001636 !RequireCompleteType(From->getLocStart(), FromType, PDiag()))
John McCall842aef82009-12-09 09:09:27 +00001637 return Context.hasSameUnqualifiedType(ToType,
1638 FromEnumType->getDecl()->getPromotionType());
Douglas Gregor1274ccd2010-10-08 23:50:27 +00001639 }
John McCall842aef82009-12-09 09:09:27 +00001640
Douglas Gregor0b8ddb92010-10-21 18:04:08 +00001641 // C++0x [conv.prom]p2:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001642 // A prvalue of type char16_t, char32_t, or wchar_t (3.9.1) can be converted
1643 // to an rvalue a prvalue of the first of the following types that can
1644 // represent all the values of its underlying type: int, unsigned int,
Douglas Gregor0b8ddb92010-10-21 18:04:08 +00001645 // long int, unsigned long int, long long int, or unsigned long long int.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001646 // If none of the types in that list can represent all the values of its
Douglas Gregor0b8ddb92010-10-21 18:04:08 +00001647 // underlying type, an rvalue a prvalue of type char16_t, char32_t,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001648 // or wchar_t can be converted to an rvalue a prvalue of its underlying
Douglas Gregor0b8ddb92010-10-21 18:04:08 +00001649 // type.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001650 if (FromType->isAnyCharacterType() && !FromType->isCharType() &&
Douglas Gregor0b8ddb92010-10-21 18:04:08 +00001651 ToType->isIntegerType()) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001652 // Determine whether the type we're converting from is signed or
1653 // unsigned.
David Majnemer0ad92312011-07-22 21:09:04 +00001654 bool FromIsSigned = FromType->isSignedIntegerType();
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001655 uint64_t FromSize = Context.getTypeSize(FromType);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001656
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001657 // The types we'll try to promote to, in the appropriate
1658 // order. Try each of these types.
Mike Stump1eb44332009-09-09 15:08:12 +00001659 QualType PromoteTypes[6] = {
1660 Context.IntTy, Context.UnsignedIntTy,
Douglas Gregorc9467cf2008-12-12 02:00:36 +00001661 Context.LongTy, Context.UnsignedLongTy ,
1662 Context.LongLongTy, Context.UnsignedLongLongTy
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001663 };
Douglas Gregorc9467cf2008-12-12 02:00:36 +00001664 for (int Idx = 0; Idx < 6; ++Idx) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001665 uint64_t ToSize = Context.getTypeSize(PromoteTypes[Idx]);
1666 if (FromSize < ToSize ||
Mike Stump1eb44332009-09-09 15:08:12 +00001667 (FromSize == ToSize &&
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001668 FromIsSigned == PromoteTypes[Idx]->isSignedIntegerType())) {
1669 // We found the type that we can promote to. If this is the
1670 // type we wanted, we have a promotion. Otherwise, no
1671 // promotion.
Douglas Gregora4923eb2009-11-16 21:35:15 +00001672 return Context.hasSameUnqualifiedType(ToType, PromoteTypes[Idx]);
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001673 }
1674 }
1675 }
1676
1677 // An rvalue for an integral bit-field (9.6) can be converted to an
1678 // rvalue of type int if int can represent all the values of the
1679 // bit-field; otherwise, it can be converted to unsigned int if
1680 // unsigned int can represent all the values of the bit-field. If
1681 // the bit-field is larger yet, no integral promotion applies to
1682 // it. If the bit-field has an enumerated type, it is treated as any
1683 // other value of that type for promotion purposes (C++ 4.5p3).
Mike Stump390b4cc2009-05-16 07:39:55 +00001684 // FIXME: We should delay checking of bit-fields until we actually perform the
1685 // conversion.
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001686 using llvm::APSInt;
1687 if (From)
1688 if (FieldDecl *MemberDecl = From->getBitField()) {
Douglas Gregor86f19402008-12-20 23:49:58 +00001689 APSInt BitWidth;
Douglas Gregor9d3347a2010-06-16 00:35:25 +00001690 if (FromType->isIntegralType(Context) &&
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001691 MemberDecl->getBitWidth()->isIntegerConstantExpr(BitWidth, Context)) {
1692 APSInt ToSize(BitWidth.getBitWidth(), BitWidth.isUnsigned());
1693 ToSize = Context.getTypeSize(ToType);
Mike Stump1eb44332009-09-09 15:08:12 +00001694
Douglas Gregor86f19402008-12-20 23:49:58 +00001695 // Are we promoting to an int from a bitfield that fits in an int?
1696 if (BitWidth < ToSize ||
1697 (FromType->isSignedIntegerType() && BitWidth <= ToSize)) {
1698 return To->getKind() == BuiltinType::Int;
1699 }
Mike Stump1eb44332009-09-09 15:08:12 +00001700
Douglas Gregor86f19402008-12-20 23:49:58 +00001701 // Are we promoting to an unsigned int from an unsigned bitfield
1702 // that fits into an unsigned int?
1703 if (FromType->isUnsignedIntegerType() && BitWidth <= ToSize) {
1704 return To->getKind() == BuiltinType::UInt;
1705 }
Mike Stump1eb44332009-09-09 15:08:12 +00001706
Douglas Gregor86f19402008-12-20 23:49:58 +00001707 return false;
Sebastian Redl07779722008-10-31 14:43:28 +00001708 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001709 }
Mike Stump1eb44332009-09-09 15:08:12 +00001710
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001711 // An rvalue of type bool can be converted to an rvalue of type int,
1712 // with false becoming zero and true becoming one (C++ 4.5p4).
Sebastian Redl07779722008-10-31 14:43:28 +00001713 if (FromType->isBooleanType() && To->getKind() == BuiltinType::Int) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001714 return true;
Sebastian Redl07779722008-10-31 14:43:28 +00001715 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001716
1717 return false;
1718}
1719
1720/// IsFloatingPointPromotion - Determines whether the conversion from
1721/// FromType to ToType is a floating point promotion (C++ 4.6). If so,
1722/// returns true and sets PromotedType to the promoted type.
Mike Stump1eb44332009-09-09 15:08:12 +00001723bool Sema::IsFloatingPointPromotion(QualType FromType, QualType ToType) {
John McCall183700f2009-09-21 23:43:11 +00001724 if (const BuiltinType *FromBuiltin = FromType->getAs<BuiltinType>())
1725 if (const BuiltinType *ToBuiltin = ToType->getAs<BuiltinType>()) {
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00001726 /// An rvalue of type float can be converted to an rvalue of type
1727 /// double. (C++ 4.6p1).
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001728 if (FromBuiltin->getKind() == BuiltinType::Float &&
1729 ToBuiltin->getKind() == BuiltinType::Double)
1730 return true;
1731
Douglas Gregor5cdf8212009-02-12 00:15:05 +00001732 // C99 6.3.1.5p1:
1733 // When a float is promoted to double or long double, or a
1734 // double is promoted to long double [...].
1735 if (!getLangOptions().CPlusPlus &&
1736 (FromBuiltin->getKind() == BuiltinType::Float ||
1737 FromBuiltin->getKind() == BuiltinType::Double) &&
1738 (ToBuiltin->getKind() == BuiltinType::LongDouble))
1739 return true;
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00001740
1741 // Half can be promoted to float.
1742 if (FromBuiltin->getKind() == BuiltinType::Half &&
1743 ToBuiltin->getKind() == BuiltinType::Float)
1744 return true;
Douglas Gregor5cdf8212009-02-12 00:15:05 +00001745 }
1746
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001747 return false;
1748}
1749
Douglas Gregor5cdf8212009-02-12 00:15:05 +00001750/// \brief Determine if a conversion is a complex promotion.
1751///
1752/// A complex promotion is defined as a complex -> complex conversion
1753/// where the conversion between the underlying real types is a
Douglas Gregorb7b5d132009-02-12 00:26:06 +00001754/// floating-point or integral promotion.
Douglas Gregor5cdf8212009-02-12 00:15:05 +00001755bool Sema::IsComplexPromotion(QualType FromType, QualType ToType) {
John McCall183700f2009-09-21 23:43:11 +00001756 const ComplexType *FromComplex = FromType->getAs<ComplexType>();
Douglas Gregor5cdf8212009-02-12 00:15:05 +00001757 if (!FromComplex)
1758 return false;
1759
John McCall183700f2009-09-21 23:43:11 +00001760 const ComplexType *ToComplex = ToType->getAs<ComplexType>();
Douglas Gregor5cdf8212009-02-12 00:15:05 +00001761 if (!ToComplex)
1762 return false;
1763
1764 return IsFloatingPointPromotion(FromComplex->getElementType(),
Douglas Gregorb7b5d132009-02-12 00:26:06 +00001765 ToComplex->getElementType()) ||
1766 IsIntegralPromotion(0, FromComplex->getElementType(),
1767 ToComplex->getElementType());
Douglas Gregor5cdf8212009-02-12 00:15:05 +00001768}
1769
Douglas Gregorcb7de522008-11-26 23:31:11 +00001770/// BuildSimilarlyQualifiedPointerType - In a pointer conversion from
1771/// the pointer type FromPtr to a pointer to type ToPointee, with the
1772/// same type qualifiers as FromPtr has on its pointee type. ToType,
1773/// if non-empty, will be a pointer to ToType that may or may not have
1774/// the right set of qualifiers on its pointee.
John McCallf85e1932011-06-15 23:02:42 +00001775///
Mike Stump1eb44332009-09-09 15:08:12 +00001776static QualType
Douglas Gregorda80f742010-12-01 21:43:58 +00001777BuildSimilarlyQualifiedPointerType(const Type *FromPtr,
Douglas Gregorcb7de522008-11-26 23:31:11 +00001778 QualType ToPointee, QualType ToType,
John McCallf85e1932011-06-15 23:02:42 +00001779 ASTContext &Context,
1780 bool StripObjCLifetime = false) {
Douglas Gregorda80f742010-12-01 21:43:58 +00001781 assert((FromPtr->getTypeClass() == Type::Pointer ||
1782 FromPtr->getTypeClass() == Type::ObjCObjectPointer) &&
1783 "Invalid similarly-qualified pointer type");
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001784
John McCallf85e1932011-06-15 23:02:42 +00001785 /// Conversions to 'id' subsume cv-qualifier conversions.
1786 if (ToType->isObjCIdType() || ToType->isObjCQualifiedIdType())
Douglas Gregor143c7ac2010-12-06 22:09:19 +00001787 return ToType.getUnqualifiedType();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001788
1789 QualType CanonFromPointee
Douglas Gregorda80f742010-12-01 21:43:58 +00001790 = Context.getCanonicalType(FromPtr->getPointeeType());
Douglas Gregorcb7de522008-11-26 23:31:11 +00001791 QualType CanonToPointee = Context.getCanonicalType(ToPointee);
John McCall0953e762009-09-24 19:53:00 +00001792 Qualifiers Quals = CanonFromPointee.getQualifiers();
Mike Stump1eb44332009-09-09 15:08:12 +00001793
John McCallf85e1932011-06-15 23:02:42 +00001794 if (StripObjCLifetime)
1795 Quals.removeObjCLifetime();
1796
Mike Stump1eb44332009-09-09 15:08:12 +00001797 // Exact qualifier match -> return the pointer type we're converting to.
Douglas Gregora4923eb2009-11-16 21:35:15 +00001798 if (CanonToPointee.getLocalQualifiers() == Quals) {
Douglas Gregorcb7de522008-11-26 23:31:11 +00001799 // ToType is exactly what we need. Return it.
John McCall0953e762009-09-24 19:53:00 +00001800 if (!ToType.isNull())
Douglas Gregoraf7bea52010-05-25 15:31:05 +00001801 return ToType.getUnqualifiedType();
Douglas Gregorcb7de522008-11-26 23:31:11 +00001802
1803 // Build a pointer to ToPointee. It has the right qualifiers
1804 // already.
Douglas Gregorda80f742010-12-01 21:43:58 +00001805 if (isa<ObjCObjectPointerType>(ToType))
1806 return Context.getObjCObjectPointerType(ToPointee);
Douglas Gregorcb7de522008-11-26 23:31:11 +00001807 return Context.getPointerType(ToPointee);
1808 }
1809
1810 // Just build a canonical type that has the right qualifiers.
Douglas Gregorda80f742010-12-01 21:43:58 +00001811 QualType QualifiedCanonToPointee
1812 = Context.getQualifiedType(CanonToPointee.getLocalUnqualifiedType(), Quals);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001813
Douglas Gregorda80f742010-12-01 21:43:58 +00001814 if (isa<ObjCObjectPointerType>(ToType))
1815 return Context.getObjCObjectPointerType(QualifiedCanonToPointee);
1816 return Context.getPointerType(QualifiedCanonToPointee);
Fariborz Jahanianadcfab12009-12-16 23:13:33 +00001817}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001818
Mike Stump1eb44332009-09-09 15:08:12 +00001819static bool isNullPointerConstantForConversion(Expr *Expr,
Anders Carlssonbbf306b2009-08-28 15:55:56 +00001820 bool InOverloadResolution,
1821 ASTContext &Context) {
1822 // Handle value-dependent integral null pointer constants correctly.
1823 // http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#903
1824 if (Expr->isValueDependent() && !Expr->isTypeDependent() &&
Douglas Gregor2ade35e2010-06-16 00:17:44 +00001825 Expr->getType()->isIntegerType() && !Expr->getType()->isEnumeralType())
Anders Carlssonbbf306b2009-08-28 15:55:56 +00001826 return !InOverloadResolution;
1827
Douglas Gregorce940492009-09-25 04:25:58 +00001828 return Expr->isNullPointerConstant(Context,
1829 InOverloadResolution? Expr::NPC_ValueDependentIsNotNull
1830 : Expr::NPC_ValueDependentIsNull);
Anders Carlssonbbf306b2009-08-28 15:55:56 +00001831}
Mike Stump1eb44332009-09-09 15:08:12 +00001832
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001833/// IsPointerConversion - Determines whether the conversion of the
1834/// expression From, which has the (possibly adjusted) type FromType,
1835/// can be converted to the type ToType via a pointer conversion (C++
1836/// 4.10). If so, returns true and places the converted type (that
1837/// might differ from ToType in its cv-qualifiers at some level) into
1838/// ConvertedType.
Douglas Gregor071f2ae2008-11-27 00:15:41 +00001839///
Douglas Gregor7ca09762008-11-27 01:19:21 +00001840/// This routine also supports conversions to and from block pointers
1841/// and conversions with Objective-C's 'id', 'id<protocols...>', and
1842/// pointers to interfaces. FIXME: Once we've determined the
1843/// appropriate overloading rules for Objective-C, we may want to
1844/// split the Objective-C checks into a different routine; however,
1845/// GCC seems to consider all of these conversions to be pointer
Douglas Gregor45920e82008-12-19 17:40:08 +00001846/// conversions, so for now they live here. IncompatibleObjC will be
1847/// set if the conversion is an allowed Objective-C conversion that
1848/// should result in a warning.
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001849bool Sema::IsPointerConversion(Expr *From, QualType FromType, QualType ToType,
Anders Carlsson08972922009-08-28 15:33:32 +00001850 bool InOverloadResolution,
Douglas Gregor45920e82008-12-19 17:40:08 +00001851 QualType& ConvertedType,
Mike Stump1eb44332009-09-09 15:08:12 +00001852 bool &IncompatibleObjC) {
Douglas Gregor45920e82008-12-19 17:40:08 +00001853 IncompatibleObjC = false;
Chandler Carruth6df868e2010-12-12 08:17:55 +00001854 if (isObjCPointerConversion(FromType, ToType, ConvertedType,
1855 IncompatibleObjC))
Douglas Gregorc7887512008-12-19 19:13:09 +00001856 return true;
Douglas Gregor45920e82008-12-19 17:40:08 +00001857
Mike Stump1eb44332009-09-09 15:08:12 +00001858 // Conversion from a null pointer constant to any Objective-C pointer type.
1859 if (ToType->isObjCObjectPointerType() &&
Anders Carlssonbbf306b2009-08-28 15:55:56 +00001860 isNullPointerConstantForConversion(From, InOverloadResolution, Context)) {
Douglas Gregor27b09ac2008-12-22 20:51:52 +00001861 ConvertedType = ToType;
1862 return true;
1863 }
1864
Douglas Gregor071f2ae2008-11-27 00:15:41 +00001865 // Blocks: Block pointers can be converted to void*.
1866 if (FromType->isBlockPointerType() && ToType->isPointerType() &&
Ted Kremenek6217b802009-07-29 21:53:49 +00001867 ToType->getAs<PointerType>()->getPointeeType()->isVoidType()) {
Douglas Gregor071f2ae2008-11-27 00:15:41 +00001868 ConvertedType = ToType;
1869 return true;
1870 }
1871 // Blocks: A null pointer constant can be converted to a block
1872 // pointer type.
Mike Stump1eb44332009-09-09 15:08:12 +00001873 if (ToType->isBlockPointerType() &&
Anders Carlssonbbf306b2009-08-28 15:55:56 +00001874 isNullPointerConstantForConversion(From, InOverloadResolution, Context)) {
Douglas Gregor071f2ae2008-11-27 00:15:41 +00001875 ConvertedType = ToType;
1876 return true;
1877 }
1878
Sebastian Redl6e8ed162009-05-10 18:38:11 +00001879 // If the left-hand-side is nullptr_t, the right side can be a null
1880 // pointer constant.
Mike Stump1eb44332009-09-09 15:08:12 +00001881 if (ToType->isNullPtrType() &&
Anders Carlssonbbf306b2009-08-28 15:55:56 +00001882 isNullPointerConstantForConversion(From, InOverloadResolution, Context)) {
Sebastian Redl6e8ed162009-05-10 18:38:11 +00001883 ConvertedType = ToType;
1884 return true;
1885 }
1886
Ted Kremenek6217b802009-07-29 21:53:49 +00001887 const PointerType* ToTypePtr = ToType->getAs<PointerType>();
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001888 if (!ToTypePtr)
1889 return false;
1890
1891 // A null pointer constant can be converted to a pointer type (C++ 4.10p1).
Anders Carlssonbbf306b2009-08-28 15:55:56 +00001892 if (isNullPointerConstantForConversion(From, InOverloadResolution, Context)) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001893 ConvertedType = ToType;
1894 return true;
1895 }
Sebastian Redl07779722008-10-31 14:43:28 +00001896
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001897 // Beyond this point, both types need to be pointers
Fariborz Jahanianadcfab12009-12-16 23:13:33 +00001898 // , including objective-c pointers.
1899 QualType ToPointeeType = ToTypePtr->getPointeeType();
John McCallf85e1932011-06-15 23:02:42 +00001900 if (FromType->isObjCObjectPointerType() && ToPointeeType->isVoidType() &&
1901 !getLangOptions().ObjCAutoRefCount) {
Douglas Gregorda80f742010-12-01 21:43:58 +00001902 ConvertedType = BuildSimilarlyQualifiedPointerType(
1903 FromType->getAs<ObjCObjectPointerType>(),
1904 ToPointeeType,
Fariborz Jahanianadcfab12009-12-16 23:13:33 +00001905 ToType, Context);
1906 return true;
Fariborz Jahanianadcfab12009-12-16 23:13:33 +00001907 }
Ted Kremenek6217b802009-07-29 21:53:49 +00001908 const PointerType *FromTypePtr = FromType->getAs<PointerType>();
Douglas Gregorcb7de522008-11-26 23:31:11 +00001909 if (!FromTypePtr)
1910 return false;
1911
1912 QualType FromPointeeType = FromTypePtr->getPointeeType();
Douglas Gregorcb7de522008-11-26 23:31:11 +00001913
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00001914 // If the unqualified pointee types are the same, this can't be a
Douglas Gregor4e938f57b2010-08-18 21:25:30 +00001915 // pointer conversion, so don't do all of the work below.
1916 if (Context.hasSameUnqualifiedType(FromPointeeType, ToPointeeType))
1917 return false;
1918
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001919 // An rvalue of type "pointer to cv T," where T is an object type,
1920 // can be converted to an rvalue of type "pointer to cv void" (C++
1921 // 4.10p2).
Eli Friedman13578692010-08-05 02:49:48 +00001922 if (FromPointeeType->isIncompleteOrObjectType() &&
1923 ToPointeeType->isVoidType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00001924 ConvertedType = BuildSimilarlyQualifiedPointerType(FromTypePtr,
Douglas Gregorbf408182008-11-27 00:52:49 +00001925 ToPointeeType,
John McCallf85e1932011-06-15 23:02:42 +00001926 ToType, Context,
1927 /*StripObjCLifetime=*/true);
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00001928 return true;
1929 }
1930
Francois Picheta8ef3ac2011-05-08 22:52:41 +00001931 // MSVC allows implicit function to void* type conversion.
Francois Pichet62ec1f22011-09-17 17:15:52 +00001932 if (getLangOptions().MicrosoftExt && FromPointeeType->isFunctionType() &&
Francois Picheta8ef3ac2011-05-08 22:52:41 +00001933 ToPointeeType->isVoidType()) {
1934 ConvertedType = BuildSimilarlyQualifiedPointerType(FromTypePtr,
1935 ToPointeeType,
1936 ToType, Context);
1937 return true;
1938 }
1939
Douglas Gregorf9201e02009-02-11 23:02:49 +00001940 // When we're overloading in C, we allow a special kind of pointer
1941 // conversion for compatible-but-not-identical pointee types.
Mike Stump1eb44332009-09-09 15:08:12 +00001942 if (!getLangOptions().CPlusPlus &&
Douglas Gregorf9201e02009-02-11 23:02:49 +00001943 Context.typesAreCompatible(FromPointeeType, ToPointeeType)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001944 ConvertedType = BuildSimilarlyQualifiedPointerType(FromTypePtr,
Douglas Gregorf9201e02009-02-11 23:02:49 +00001945 ToPointeeType,
Mike Stump1eb44332009-09-09 15:08:12 +00001946 ToType, Context);
Douglas Gregorf9201e02009-02-11 23:02:49 +00001947 return true;
1948 }
1949
Douglas Gregorbc0805a2008-10-23 00:40:37 +00001950 // C++ [conv.ptr]p3:
Mike Stump1eb44332009-09-09 15:08:12 +00001951 //
Douglas Gregorbc0805a2008-10-23 00:40:37 +00001952 // An rvalue of type "pointer to cv D," where D is a class type,
1953 // can be converted to an rvalue of type "pointer to cv B," where
1954 // B is a base class (clause 10) of D. If B is an inaccessible
1955 // (clause 11) or ambiguous (10.2) base class of D, a program that
1956 // necessitates this conversion is ill-formed. The result of the
1957 // conversion is a pointer to the base class sub-object of the
1958 // derived class object. The null pointer value is converted to
1959 // the null pointer value of the destination type.
1960 //
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001961 // Note that we do not check for ambiguity or inaccessibility
1962 // here. That is handled by CheckPointerConversion.
Douglas Gregorf9201e02009-02-11 23:02:49 +00001963 if (getLangOptions().CPlusPlus &&
1964 FromPointeeType->isRecordType() && ToPointeeType->isRecordType() &&
Douglas Gregorbf1764c2010-02-22 17:06:41 +00001965 !Context.hasSameUnqualifiedType(FromPointeeType, ToPointeeType) &&
Douglas Gregor2685eab2009-10-29 23:08:22 +00001966 !RequireCompleteType(From->getLocStart(), FromPointeeType, PDiag()) &&
Douglas Gregorcb7de522008-11-26 23:31:11 +00001967 IsDerivedFrom(FromPointeeType, ToPointeeType)) {
Mike Stump1eb44332009-09-09 15:08:12 +00001968 ConvertedType = BuildSimilarlyQualifiedPointerType(FromTypePtr,
Douglas Gregorbf408182008-11-27 00:52:49 +00001969 ToPointeeType,
Douglas Gregorcb7de522008-11-26 23:31:11 +00001970 ToType, Context);
1971 return true;
1972 }
Douglas Gregorbc0805a2008-10-23 00:40:37 +00001973
Fariborz Jahanian5da3c082011-04-14 20:33:36 +00001974 if (FromPointeeType->isVectorType() && ToPointeeType->isVectorType() &&
1975 Context.areCompatibleVectorTypes(FromPointeeType, ToPointeeType)) {
1976 ConvertedType = BuildSimilarlyQualifiedPointerType(FromTypePtr,
1977 ToPointeeType,
1978 ToType, Context);
1979 return true;
1980 }
1981
Douglas Gregorc7887512008-12-19 19:13:09 +00001982 return false;
1983}
Douglas Gregor028ea4b2011-04-26 23:16:46 +00001984
1985/// \brief Adopt the given qualifiers for the given type.
1986static QualType AdoptQualifiers(ASTContext &Context, QualType T, Qualifiers Qs){
1987 Qualifiers TQs = T.getQualifiers();
1988
1989 // Check whether qualifiers already match.
1990 if (TQs == Qs)
1991 return T;
1992
1993 if (Qs.compatiblyIncludes(TQs))
1994 return Context.getQualifiedType(T, Qs);
1995
1996 return Context.getQualifiedType(T.getUnqualifiedType(), Qs);
1997}
Douglas Gregorc7887512008-12-19 19:13:09 +00001998
1999/// isObjCPointerConversion - Determines whether this is an
2000/// Objective-C pointer conversion. Subroutine of IsPointerConversion,
2001/// with the same arguments and return values.
Mike Stump1eb44332009-09-09 15:08:12 +00002002bool Sema::isObjCPointerConversion(QualType FromType, QualType ToType,
Douglas Gregorc7887512008-12-19 19:13:09 +00002003 QualType& ConvertedType,
2004 bool &IncompatibleObjC) {
2005 if (!getLangOptions().ObjC1)
2006 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002007
Douglas Gregor028ea4b2011-04-26 23:16:46 +00002008 // The set of qualifiers on the type we're converting from.
2009 Qualifiers FromQualifiers = FromType.getQualifiers();
2010
Steve Naroff14108da2009-07-10 23:34:53 +00002011 // First, we handle all conversions on ObjC object pointer types.
Chandler Carruth6df868e2010-12-12 08:17:55 +00002012 const ObjCObjectPointerType* ToObjCPtr =
2013 ToType->getAs<ObjCObjectPointerType>();
Mike Stump1eb44332009-09-09 15:08:12 +00002014 const ObjCObjectPointerType *FromObjCPtr =
John McCall183700f2009-09-21 23:43:11 +00002015 FromType->getAs<ObjCObjectPointerType>();
Douglas Gregorc7887512008-12-19 19:13:09 +00002016
Steve Naroff14108da2009-07-10 23:34:53 +00002017 if (ToObjCPtr && FromObjCPtr) {
Douglas Gregorda80f742010-12-01 21:43:58 +00002018 // If the pointee types are the same (ignoring qualifications),
2019 // then this is not a pointer conversion.
2020 if (Context.hasSameUnqualifiedType(ToObjCPtr->getPointeeType(),
2021 FromObjCPtr->getPointeeType()))
2022 return false;
2023
Douglas Gregor028ea4b2011-04-26 23:16:46 +00002024 // Check for compatible
Steve Naroffde2e22d2009-07-15 18:40:39 +00002025 // Objective C++: We're able to convert between "id" or "Class" and a
Steve Naroff14108da2009-07-10 23:34:53 +00002026 // pointer to any interface (in both directions).
Steve Naroffde2e22d2009-07-15 18:40:39 +00002027 if (ToObjCPtr->isObjCBuiltinType() && FromObjCPtr->isObjCBuiltinType()) {
Douglas Gregor028ea4b2011-04-26 23:16:46 +00002028 ConvertedType = AdoptQualifiers(Context, ToType, FromQualifiers);
Steve Naroff14108da2009-07-10 23:34:53 +00002029 return true;
2030 }
2031 // Conversions with Objective-C's id<...>.
Mike Stump1eb44332009-09-09 15:08:12 +00002032 if ((FromObjCPtr->isObjCQualifiedIdType() ||
Steve Naroff14108da2009-07-10 23:34:53 +00002033 ToObjCPtr->isObjCQualifiedIdType()) &&
Mike Stump1eb44332009-09-09 15:08:12 +00002034 Context.ObjCQualifiedIdTypesAreCompatible(ToType, FromType,
Steve Naroff4084c302009-07-23 01:01:38 +00002035 /*compare=*/false)) {
Douglas Gregor028ea4b2011-04-26 23:16:46 +00002036 ConvertedType = AdoptQualifiers(Context, ToType, FromQualifiers);
Steve Naroff14108da2009-07-10 23:34:53 +00002037 return true;
2038 }
2039 // Objective C++: We're able to convert from a pointer to an
2040 // interface to a pointer to a different interface.
2041 if (Context.canAssignObjCInterfaces(ToObjCPtr, FromObjCPtr)) {
Fariborz Jahanianee9ca692010-03-15 18:36:00 +00002042 const ObjCInterfaceType* LHS = ToObjCPtr->getInterfaceType();
2043 const ObjCInterfaceType* RHS = FromObjCPtr->getInterfaceType();
2044 if (getLangOptions().CPlusPlus && LHS && RHS &&
2045 !ToObjCPtr->getPointeeType().isAtLeastAsQualifiedAs(
2046 FromObjCPtr->getPointeeType()))
2047 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002048 ConvertedType = BuildSimilarlyQualifiedPointerType(FromObjCPtr,
Douglas Gregorda80f742010-12-01 21:43:58 +00002049 ToObjCPtr->getPointeeType(),
2050 ToType, Context);
Douglas Gregor028ea4b2011-04-26 23:16:46 +00002051 ConvertedType = AdoptQualifiers(Context, ConvertedType, FromQualifiers);
Steve Naroff14108da2009-07-10 23:34:53 +00002052 return true;
2053 }
2054
2055 if (Context.canAssignObjCInterfaces(FromObjCPtr, ToObjCPtr)) {
2056 // Okay: this is some kind of implicit downcast of Objective-C
2057 // interfaces, which is permitted. However, we're going to
2058 // complain about it.
2059 IncompatibleObjC = true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002060 ConvertedType = BuildSimilarlyQualifiedPointerType(FromObjCPtr,
Douglas Gregorda80f742010-12-01 21:43:58 +00002061 ToObjCPtr->getPointeeType(),
2062 ToType, Context);
Douglas Gregor028ea4b2011-04-26 23:16:46 +00002063 ConvertedType = AdoptQualifiers(Context, ConvertedType, FromQualifiers);
Steve Naroff14108da2009-07-10 23:34:53 +00002064 return true;
2065 }
Mike Stump1eb44332009-09-09 15:08:12 +00002066 }
Steve Naroff14108da2009-07-10 23:34:53 +00002067 // Beyond this point, both types need to be C pointers or block pointers.
Douglas Gregor2a7e58d2008-12-23 00:53:59 +00002068 QualType ToPointeeType;
Ted Kremenek6217b802009-07-29 21:53:49 +00002069 if (const PointerType *ToCPtr = ToType->getAs<PointerType>())
Steve Naroff14108da2009-07-10 23:34:53 +00002070 ToPointeeType = ToCPtr->getPointeeType();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002071 else if (const BlockPointerType *ToBlockPtr =
Fariborz Jahanianb351a7d2010-01-20 22:54:38 +00002072 ToType->getAs<BlockPointerType>()) {
Fariborz Jahanian48168392010-01-21 00:08:17 +00002073 // Objective C++: We're able to convert from a pointer to any object
Fariborz Jahanianb351a7d2010-01-20 22:54:38 +00002074 // to a block pointer type.
2075 if (FromObjCPtr && FromObjCPtr->isObjCBuiltinType()) {
Douglas Gregor028ea4b2011-04-26 23:16:46 +00002076 ConvertedType = AdoptQualifiers(Context, ToType, FromQualifiers);
Fariborz Jahanianb351a7d2010-01-20 22:54:38 +00002077 return true;
2078 }
Douglas Gregor2a7e58d2008-12-23 00:53:59 +00002079 ToPointeeType = ToBlockPtr->getPointeeType();
Fariborz Jahanianb351a7d2010-01-20 22:54:38 +00002080 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002081 else if (FromType->getAs<BlockPointerType>() &&
Fariborz Jahanianf7c43fd2010-01-21 00:05:09 +00002082 ToObjCPtr && ToObjCPtr->isObjCBuiltinType()) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002083 // Objective C++: We're able to convert from a block pointer type to a
Fariborz Jahanian48168392010-01-21 00:08:17 +00002084 // pointer to any object.
Douglas Gregor028ea4b2011-04-26 23:16:46 +00002085 ConvertedType = AdoptQualifiers(Context, ToType, FromQualifiers);
Fariborz Jahanianf7c43fd2010-01-21 00:05:09 +00002086 return true;
2087 }
Douglas Gregor2a7e58d2008-12-23 00:53:59 +00002088 else
Douglas Gregorc7887512008-12-19 19:13:09 +00002089 return false;
2090
Douglas Gregor2a7e58d2008-12-23 00:53:59 +00002091 QualType FromPointeeType;
Ted Kremenek6217b802009-07-29 21:53:49 +00002092 if (const PointerType *FromCPtr = FromType->getAs<PointerType>())
Steve Naroff14108da2009-07-10 23:34:53 +00002093 FromPointeeType = FromCPtr->getPointeeType();
Chandler Carruth6df868e2010-12-12 08:17:55 +00002094 else if (const BlockPointerType *FromBlockPtr =
2095 FromType->getAs<BlockPointerType>())
Douglas Gregor2a7e58d2008-12-23 00:53:59 +00002096 FromPointeeType = FromBlockPtr->getPointeeType();
2097 else
Douglas Gregorc7887512008-12-19 19:13:09 +00002098 return false;
2099
Douglas Gregorc7887512008-12-19 19:13:09 +00002100 // If we have pointers to pointers, recursively check whether this
2101 // is an Objective-C conversion.
2102 if (FromPointeeType->isPointerType() && ToPointeeType->isPointerType() &&
2103 isObjCPointerConversion(FromPointeeType, ToPointeeType, ConvertedType,
2104 IncompatibleObjC)) {
2105 // We always complain about this conversion.
2106 IncompatibleObjC = true;
Douglas Gregorda80f742010-12-01 21:43:58 +00002107 ConvertedType = Context.getPointerType(ConvertedType);
Douglas Gregor028ea4b2011-04-26 23:16:46 +00002108 ConvertedType = AdoptQualifiers(Context, ConvertedType, FromQualifiers);
Douglas Gregorc7887512008-12-19 19:13:09 +00002109 return true;
2110 }
Fariborz Jahanian83b7b312010-01-18 22:59:22 +00002111 // Allow conversion of pointee being objective-c pointer to another one;
2112 // as in I* to id.
2113 if (FromPointeeType->getAs<ObjCObjectPointerType>() &&
2114 ToPointeeType->getAs<ObjCObjectPointerType>() &&
2115 isObjCPointerConversion(FromPointeeType, ToPointeeType, ConvertedType,
2116 IncompatibleObjC)) {
John McCallf85e1932011-06-15 23:02:42 +00002117
Douglas Gregorda80f742010-12-01 21:43:58 +00002118 ConvertedType = Context.getPointerType(ConvertedType);
Douglas Gregor028ea4b2011-04-26 23:16:46 +00002119 ConvertedType = AdoptQualifiers(Context, ConvertedType, FromQualifiers);
Fariborz Jahanian83b7b312010-01-18 22:59:22 +00002120 return true;
2121 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002122
Douglas Gregor2a7e58d2008-12-23 00:53:59 +00002123 // If we have pointers to functions or blocks, check whether the only
Douglas Gregorc7887512008-12-19 19:13:09 +00002124 // differences in the argument and result types are in Objective-C
2125 // pointer conversions. If so, we permit the conversion (but
2126 // complain about it).
Mike Stump1eb44332009-09-09 15:08:12 +00002127 const FunctionProtoType *FromFunctionType
John McCall183700f2009-09-21 23:43:11 +00002128 = FromPointeeType->getAs<FunctionProtoType>();
Douglas Gregor72564e72009-02-26 23:50:07 +00002129 const FunctionProtoType *ToFunctionType
John McCall183700f2009-09-21 23:43:11 +00002130 = ToPointeeType->getAs<FunctionProtoType>();
Douglas Gregorc7887512008-12-19 19:13:09 +00002131 if (FromFunctionType && ToFunctionType) {
2132 // If the function types are exactly the same, this isn't an
2133 // Objective-C pointer conversion.
2134 if (Context.getCanonicalType(FromPointeeType)
2135 == Context.getCanonicalType(ToPointeeType))
2136 return false;
2137
2138 // Perform the quick checks that will tell us whether these
2139 // function types are obviously different.
2140 if (FromFunctionType->getNumArgs() != ToFunctionType->getNumArgs() ||
2141 FromFunctionType->isVariadic() != ToFunctionType->isVariadic() ||
2142 FromFunctionType->getTypeQuals() != ToFunctionType->getTypeQuals())
2143 return false;
2144
2145 bool HasObjCConversion = false;
2146 if (Context.getCanonicalType(FromFunctionType->getResultType())
2147 == Context.getCanonicalType(ToFunctionType->getResultType())) {
2148 // Okay, the types match exactly. Nothing to do.
2149 } else if (isObjCPointerConversion(FromFunctionType->getResultType(),
2150 ToFunctionType->getResultType(),
2151 ConvertedType, IncompatibleObjC)) {
2152 // Okay, we have an Objective-C pointer conversion.
2153 HasObjCConversion = true;
2154 } else {
2155 // Function types are too different. Abort.
2156 return false;
2157 }
Mike Stump1eb44332009-09-09 15:08:12 +00002158
Douglas Gregorc7887512008-12-19 19:13:09 +00002159 // Check argument types.
2160 for (unsigned ArgIdx = 0, NumArgs = FromFunctionType->getNumArgs();
2161 ArgIdx != NumArgs; ++ArgIdx) {
2162 QualType FromArgType = FromFunctionType->getArgType(ArgIdx);
2163 QualType ToArgType = ToFunctionType->getArgType(ArgIdx);
2164 if (Context.getCanonicalType(FromArgType)
2165 == Context.getCanonicalType(ToArgType)) {
2166 // Okay, the types match exactly. Nothing to do.
2167 } else if (isObjCPointerConversion(FromArgType, ToArgType,
2168 ConvertedType, IncompatibleObjC)) {
2169 // Okay, we have an Objective-C pointer conversion.
2170 HasObjCConversion = true;
2171 } else {
2172 // Argument types are too different. Abort.
2173 return false;
2174 }
2175 }
2176
2177 if (HasObjCConversion) {
2178 // We had an Objective-C conversion. Allow this pointer
2179 // conversion, but complain about it.
Douglas Gregor028ea4b2011-04-26 23:16:46 +00002180 ConvertedType = AdoptQualifiers(Context, ToType, FromQualifiers);
Douglas Gregorc7887512008-12-19 19:13:09 +00002181 IncompatibleObjC = true;
2182 return true;
2183 }
2184 }
2185
Sebastian Redl4433aaf2009-01-25 19:43:20 +00002186 return false;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00002187}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002188
John McCallf85e1932011-06-15 23:02:42 +00002189/// \brief Determine whether this is an Objective-C writeback conversion,
2190/// used for parameter passing when performing automatic reference counting.
2191///
2192/// \param FromType The type we're converting form.
2193///
2194/// \param ToType The type we're converting to.
2195///
2196/// \param ConvertedType The type that will be produced after applying
2197/// this conversion.
2198bool Sema::isObjCWritebackConversion(QualType FromType, QualType ToType,
2199 QualType &ConvertedType) {
2200 if (!getLangOptions().ObjCAutoRefCount ||
2201 Context.hasSameUnqualifiedType(FromType, ToType))
2202 return false;
2203
2204 // Parameter must be a pointer to __autoreleasing (with no other qualifiers).
2205 QualType ToPointee;
2206 if (const PointerType *ToPointer = ToType->getAs<PointerType>())
2207 ToPointee = ToPointer->getPointeeType();
2208 else
2209 return false;
2210
2211 Qualifiers ToQuals = ToPointee.getQualifiers();
2212 if (!ToPointee->isObjCLifetimeType() ||
2213 ToQuals.getObjCLifetime() != Qualifiers::OCL_Autoreleasing ||
John McCall200fa532012-02-08 00:46:36 +00002214 !ToQuals.withoutObjCLifetime().empty())
John McCallf85e1932011-06-15 23:02:42 +00002215 return false;
2216
2217 // Argument must be a pointer to __strong to __weak.
2218 QualType FromPointee;
2219 if (const PointerType *FromPointer = FromType->getAs<PointerType>())
2220 FromPointee = FromPointer->getPointeeType();
2221 else
2222 return false;
2223
2224 Qualifiers FromQuals = FromPointee.getQualifiers();
2225 if (!FromPointee->isObjCLifetimeType() ||
2226 (FromQuals.getObjCLifetime() != Qualifiers::OCL_Strong &&
2227 FromQuals.getObjCLifetime() != Qualifiers::OCL_Weak))
2228 return false;
2229
2230 // Make sure that we have compatible qualifiers.
2231 FromQuals.setObjCLifetime(Qualifiers::OCL_Autoreleasing);
2232 if (!ToQuals.compatiblyIncludes(FromQuals))
2233 return false;
2234
2235 // Remove qualifiers from the pointee type we're converting from; they
2236 // aren't used in the compatibility check belong, and we'll be adding back
2237 // qualifiers (with __autoreleasing) if the compatibility check succeeds.
2238 FromPointee = FromPointee.getUnqualifiedType();
2239
2240 // The unqualified form of the pointee types must be compatible.
2241 ToPointee = ToPointee.getUnqualifiedType();
2242 bool IncompatibleObjC;
2243 if (Context.typesAreCompatible(FromPointee, ToPointee))
2244 FromPointee = ToPointee;
2245 else if (!isObjCPointerConversion(FromPointee, ToPointee, FromPointee,
2246 IncompatibleObjC))
2247 return false;
2248
2249 /// \brief Construct the type we're converting to, which is a pointer to
2250 /// __autoreleasing pointee.
2251 FromPointee = Context.getQualifiedType(FromPointee, FromQuals);
2252 ConvertedType = Context.getPointerType(FromPointee);
2253 return true;
2254}
2255
Fariborz Jahaniane3c8c642011-02-12 19:07:46 +00002256bool Sema::IsBlockPointerConversion(QualType FromType, QualType ToType,
2257 QualType& ConvertedType) {
2258 QualType ToPointeeType;
2259 if (const BlockPointerType *ToBlockPtr =
2260 ToType->getAs<BlockPointerType>())
2261 ToPointeeType = ToBlockPtr->getPointeeType();
2262 else
2263 return false;
2264
2265 QualType FromPointeeType;
2266 if (const BlockPointerType *FromBlockPtr =
2267 FromType->getAs<BlockPointerType>())
2268 FromPointeeType = FromBlockPtr->getPointeeType();
2269 else
2270 return false;
2271 // We have pointer to blocks, check whether the only
2272 // differences in the argument and result types are in Objective-C
2273 // pointer conversions. If so, we permit the conversion.
2274
2275 const FunctionProtoType *FromFunctionType
2276 = FromPointeeType->getAs<FunctionProtoType>();
2277 const FunctionProtoType *ToFunctionType
2278 = ToPointeeType->getAs<FunctionProtoType>();
2279
Fariborz Jahanian569bd8f2011-02-13 20:01:48 +00002280 if (!FromFunctionType || !ToFunctionType)
2281 return false;
Fariborz Jahaniane3c8c642011-02-12 19:07:46 +00002282
Fariborz Jahanian569bd8f2011-02-13 20:01:48 +00002283 if (Context.hasSameType(FromPointeeType, ToPointeeType))
Fariborz Jahaniane3c8c642011-02-12 19:07:46 +00002284 return true;
Fariborz Jahanian569bd8f2011-02-13 20:01:48 +00002285
2286 // Perform the quick checks that will tell us whether these
2287 // function types are obviously different.
2288 if (FromFunctionType->getNumArgs() != ToFunctionType->getNumArgs() ||
2289 FromFunctionType->isVariadic() != ToFunctionType->isVariadic())
2290 return false;
2291
2292 FunctionType::ExtInfo FromEInfo = FromFunctionType->getExtInfo();
2293 FunctionType::ExtInfo ToEInfo = ToFunctionType->getExtInfo();
2294 if (FromEInfo != ToEInfo)
2295 return false;
2296
2297 bool IncompatibleObjC = false;
Fariborz Jahanian462dae52011-02-13 20:11:42 +00002298 if (Context.hasSameType(FromFunctionType->getResultType(),
2299 ToFunctionType->getResultType())) {
Fariborz Jahanian569bd8f2011-02-13 20:01:48 +00002300 // Okay, the types match exactly. Nothing to do.
2301 } else {
2302 QualType RHS = FromFunctionType->getResultType();
2303 QualType LHS = ToFunctionType->getResultType();
2304 if ((!getLangOptions().CPlusPlus || !RHS->isRecordType()) &&
2305 !RHS.hasQualifiers() && LHS.hasQualifiers())
2306 LHS = LHS.getUnqualifiedType();
2307
2308 if (Context.hasSameType(RHS,LHS)) {
2309 // OK exact match.
2310 } else if (isObjCPointerConversion(RHS, LHS,
2311 ConvertedType, IncompatibleObjC)) {
2312 if (IncompatibleObjC)
2313 return false;
2314 // Okay, we have an Objective-C pointer conversion.
2315 }
2316 else
2317 return false;
2318 }
2319
2320 // Check argument types.
2321 for (unsigned ArgIdx = 0, NumArgs = FromFunctionType->getNumArgs();
2322 ArgIdx != NumArgs; ++ArgIdx) {
2323 IncompatibleObjC = false;
2324 QualType FromArgType = FromFunctionType->getArgType(ArgIdx);
2325 QualType ToArgType = ToFunctionType->getArgType(ArgIdx);
2326 if (Context.hasSameType(FromArgType, ToArgType)) {
2327 // Okay, the types match exactly. Nothing to do.
2328 } else if (isObjCPointerConversion(ToArgType, FromArgType,
2329 ConvertedType, IncompatibleObjC)) {
2330 if (IncompatibleObjC)
2331 return false;
2332 // Okay, we have an Objective-C pointer conversion.
2333 } else
2334 // Argument types are too different. Abort.
2335 return false;
2336 }
Fariborz Jahanian78213e42011-09-28 21:52:05 +00002337 if (LangOpts.ObjCAutoRefCount &&
2338 !Context.FunctionTypesMatchOnNSConsumedAttrs(FromFunctionType,
2339 ToFunctionType))
2340 return false;
Fariborz Jahanianf9d95272011-09-28 20:22:05 +00002341
Fariborz Jahanian569bd8f2011-02-13 20:01:48 +00002342 ConvertedType = ToType;
2343 return true;
Fariborz Jahaniane3c8c642011-02-12 19:07:46 +00002344}
2345
Richard Trieu6efd4c52011-11-23 22:32:32 +00002346enum {
2347 ft_default,
2348 ft_different_class,
2349 ft_parameter_arity,
2350 ft_parameter_mismatch,
2351 ft_return_type,
2352 ft_qualifer_mismatch
2353};
2354
2355/// HandleFunctionTypeMismatch - Gives diagnostic information for differeing
2356/// function types. Catches different number of parameter, mismatch in
2357/// parameter types, and different return types.
2358void Sema::HandleFunctionTypeMismatch(PartialDiagnostic &PDiag,
2359 QualType FromType, QualType ToType) {
Richard Trieua6dc7ef2011-12-13 23:19:45 +00002360 // If either type is not valid, include no extra info.
2361 if (FromType.isNull() || ToType.isNull()) {
2362 PDiag << ft_default;
2363 return;
2364 }
2365
Richard Trieu6efd4c52011-11-23 22:32:32 +00002366 // Get the function type from the pointers.
2367 if (FromType->isMemberPointerType() && ToType->isMemberPointerType()) {
2368 const MemberPointerType *FromMember = FromType->getAs<MemberPointerType>(),
2369 *ToMember = ToType->getAs<MemberPointerType>();
2370 if (FromMember->getClass() != ToMember->getClass()) {
2371 PDiag << ft_different_class << QualType(ToMember->getClass(), 0)
2372 << QualType(FromMember->getClass(), 0);
2373 return;
2374 }
2375 FromType = FromMember->getPointeeType();
2376 ToType = ToMember->getPointeeType();
Richard Trieu6efd4c52011-11-23 22:32:32 +00002377 }
2378
Richard Trieua6dc7ef2011-12-13 23:19:45 +00002379 if (FromType->isPointerType())
2380 FromType = FromType->getPointeeType();
2381 if (ToType->isPointerType())
2382 ToType = ToType->getPointeeType();
2383
2384 // Remove references.
Richard Trieu6efd4c52011-11-23 22:32:32 +00002385 FromType = FromType.getNonReferenceType();
2386 ToType = ToType.getNonReferenceType();
2387
Richard Trieu6efd4c52011-11-23 22:32:32 +00002388 // Don't print extra info for non-specialized template functions.
2389 if (FromType->isInstantiationDependentType() &&
2390 !FromType->getAs<TemplateSpecializationType>()) {
2391 PDiag << ft_default;
2392 return;
2393 }
2394
Richard Trieua6dc7ef2011-12-13 23:19:45 +00002395 // No extra info for same types.
2396 if (Context.hasSameType(FromType, ToType)) {
2397 PDiag << ft_default;
2398 return;
2399 }
2400
Richard Trieu6efd4c52011-11-23 22:32:32 +00002401 const FunctionProtoType *FromFunction = FromType->getAs<FunctionProtoType>(),
2402 *ToFunction = ToType->getAs<FunctionProtoType>();
2403
2404 // Both types need to be function types.
2405 if (!FromFunction || !ToFunction) {
2406 PDiag << ft_default;
2407 return;
2408 }
2409
2410 if (FromFunction->getNumArgs() != ToFunction->getNumArgs()) {
2411 PDiag << ft_parameter_arity << ToFunction->getNumArgs()
2412 << FromFunction->getNumArgs();
2413 return;
2414 }
2415
2416 // Handle different parameter types.
2417 unsigned ArgPos;
2418 if (!FunctionArgTypesAreEqual(FromFunction, ToFunction, &ArgPos)) {
2419 PDiag << ft_parameter_mismatch << ArgPos + 1
2420 << ToFunction->getArgType(ArgPos)
2421 << FromFunction->getArgType(ArgPos);
2422 return;
2423 }
2424
2425 // Handle different return type.
2426 if (!Context.hasSameType(FromFunction->getResultType(),
2427 ToFunction->getResultType())) {
2428 PDiag << ft_return_type << ToFunction->getResultType()
2429 << FromFunction->getResultType();
2430 return;
2431 }
2432
2433 unsigned FromQuals = FromFunction->getTypeQuals(),
2434 ToQuals = ToFunction->getTypeQuals();
2435 if (FromQuals != ToQuals) {
2436 PDiag << ft_qualifer_mismatch << ToQuals << FromQuals;
2437 return;
2438 }
2439
2440 // Unable to find a difference, so add no extra info.
2441 PDiag << ft_default;
2442}
2443
Fariborz Jahaniand8d34412010-05-03 21:06:18 +00002444/// FunctionArgTypesAreEqual - This routine checks two function proto types
Douglas Gregordec1cc42011-12-15 17:15:07 +00002445/// for equality of their argument types. Caller has already checked that
Fariborz Jahaniand8d34412010-05-03 21:06:18 +00002446/// they have same number of arguments. This routine assumes that Objective-C
2447/// pointer types which only differ in their protocol qualifiers are equal.
Richard Trieu6efd4c52011-11-23 22:32:32 +00002448/// If the parameters are different, ArgPos will have the the parameter index
2449/// of the first different parameter.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002450bool Sema::FunctionArgTypesAreEqual(const FunctionProtoType *OldType,
Richard Trieu6efd4c52011-11-23 22:32:32 +00002451 const FunctionProtoType *NewType,
2452 unsigned *ArgPos) {
2453 if (!getLangOptions().ObjC1) {
2454 for (FunctionProtoType::arg_type_iterator O = OldType->arg_type_begin(),
2455 N = NewType->arg_type_begin(),
2456 E = OldType->arg_type_end(); O && (O != E); ++O, ++N) {
2457 if (!Context.hasSameType(*O, *N)) {
2458 if (ArgPos) *ArgPos = O - OldType->arg_type_begin();
2459 return false;
2460 }
2461 }
2462 return true;
2463 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002464
Fariborz Jahaniand8d34412010-05-03 21:06:18 +00002465 for (FunctionProtoType::arg_type_iterator O = OldType->arg_type_begin(),
2466 N = NewType->arg_type_begin(),
2467 E = OldType->arg_type_end(); O && (O != E); ++O, ++N) {
2468 QualType ToType = (*O);
2469 QualType FromType = (*N);
Richard Trieu6efd4c52011-11-23 22:32:32 +00002470 if (!Context.hasSameType(ToType, FromType)) {
Fariborz Jahaniand8d34412010-05-03 21:06:18 +00002471 if (const PointerType *PTTo = ToType->getAs<PointerType>()) {
2472 if (const PointerType *PTFr = FromType->getAs<PointerType>())
Chandler Carruth0ee93de2010-05-06 00:15:06 +00002473 if ((PTTo->getPointeeType()->isObjCQualifiedIdType() &&
2474 PTFr->getPointeeType()->isObjCQualifiedIdType()) ||
2475 (PTTo->getPointeeType()->isObjCQualifiedClassType() &&
2476 PTFr->getPointeeType()->isObjCQualifiedClassType()))
Fariborz Jahaniand8d34412010-05-03 21:06:18 +00002477 continue;
2478 }
John McCallc12c5bb2010-05-15 11:32:37 +00002479 else if (const ObjCObjectPointerType *PTTo =
2480 ToType->getAs<ObjCObjectPointerType>()) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002481 if (const ObjCObjectPointerType *PTFr =
John McCallc12c5bb2010-05-15 11:32:37 +00002482 FromType->getAs<ObjCObjectPointerType>())
Douglas Gregordec1cc42011-12-15 17:15:07 +00002483 if (Context.hasSameUnqualifiedType(
2484 PTTo->getObjectType()->getBaseType(),
2485 PTFr->getObjectType()->getBaseType()))
John McCallc12c5bb2010-05-15 11:32:37 +00002486 continue;
Fariborz Jahaniand8d34412010-05-03 21:06:18 +00002487 }
Richard Trieu6efd4c52011-11-23 22:32:32 +00002488 if (ArgPos) *ArgPos = O - OldType->arg_type_begin();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002489 return false;
Fariborz Jahaniand8d34412010-05-03 21:06:18 +00002490 }
2491 }
2492 return true;
2493}
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00002494
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002495/// CheckPointerConversion - Check the pointer conversion from the
2496/// expression From to the type ToType. This routine checks for
Sebastian Redl9cc11e72009-07-25 15:41:38 +00002497/// ambiguous or inaccessible derived-to-base pointer
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002498/// conversions for which IsPointerConversion has already returned
2499/// true. It returns true and produces a diagnostic if there was an
2500/// error, or returns false otherwise.
Anders Carlsson61faec12009-09-12 04:46:44 +00002501bool Sema::CheckPointerConversion(Expr *From, QualType ToType,
John McCall2de56d12010-08-25 11:45:40 +00002502 CastKind &Kind,
John McCallf871d0c2010-08-07 06:22:56 +00002503 CXXCastPath& BasePath,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00002504 bool IgnoreBaseAccess) {
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002505 QualType FromType = From->getType();
Argyrios Kyrtzidisb3358722010-09-28 14:54:11 +00002506 bool IsCStyleOrFunctionalCast = IgnoreBaseAccess;
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002507
John McCalldaa8e4e2010-11-15 09:13:47 +00002508 Kind = CK_BitCast;
2509
Chandler Carruth88f0aed2011-04-09 07:32:05 +00002510 if (!IsCStyleOrFunctionalCast &&
2511 Context.hasSameUnqualifiedType(From->getType(), Context.BoolTy) &&
2512 From->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNotNull))
2513 DiagRuntimeBehavior(From->getExprLoc(), From,
Chandler Carruthb6006692011-04-09 07:48:17 +00002514 PDiag(diag::warn_impcast_bool_to_null_pointer)
2515 << ToType << From->getSourceRange());
Douglas Gregord7a95972010-06-08 17:35:15 +00002516
John McCall1d9b3b22011-09-09 05:25:32 +00002517 if (const PointerType *ToPtrType = ToType->getAs<PointerType>()) {
2518 if (const PointerType *FromPtrType = FromType->getAs<PointerType>()) {
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002519 QualType FromPointeeType = FromPtrType->getPointeeType(),
2520 ToPointeeType = ToPtrType->getPointeeType();
Douglas Gregordda78892008-12-18 23:43:31 +00002521
Douglas Gregor5fccd362010-03-03 23:55:11 +00002522 if (FromPointeeType->isRecordType() && ToPointeeType->isRecordType() &&
2523 !Context.hasSameUnqualifiedType(FromPointeeType, ToPointeeType)) {
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002524 // We must have a derived-to-base conversion. Check an
2525 // ambiguous or inaccessible conversion.
Anders Carlsson61faec12009-09-12 04:46:44 +00002526 if (CheckDerivedToBaseConversion(FromPointeeType, ToPointeeType,
2527 From->getExprLoc(),
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00002528 From->getSourceRange(), &BasePath,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00002529 IgnoreBaseAccess))
Anders Carlsson61faec12009-09-12 04:46:44 +00002530 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002531
Anders Carlsson61faec12009-09-12 04:46:44 +00002532 // The conversion was successful.
John McCall2de56d12010-08-25 11:45:40 +00002533 Kind = CK_DerivedToBase;
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002534 }
2535 }
John McCall1d9b3b22011-09-09 05:25:32 +00002536 } else if (const ObjCObjectPointerType *ToPtrType =
2537 ToType->getAs<ObjCObjectPointerType>()) {
2538 if (const ObjCObjectPointerType *FromPtrType =
2539 FromType->getAs<ObjCObjectPointerType>()) {
Steve Naroff14108da2009-07-10 23:34:53 +00002540 // Objective-C++ conversions are always okay.
2541 // FIXME: We should have a different class of conversions for the
2542 // Objective-C++ implicit conversions.
Steve Naroffde2e22d2009-07-15 18:40:39 +00002543 if (FromPtrType->isObjCBuiltinType() || ToPtrType->isObjCBuiltinType())
Steve Naroff14108da2009-07-10 23:34:53 +00002544 return false;
John McCall1d9b3b22011-09-09 05:25:32 +00002545 } else if (FromType->isBlockPointerType()) {
2546 Kind = CK_BlockPointerToObjCPointerCast;
2547 } else {
2548 Kind = CK_CPointerToObjCPointerCast;
John McCalldaa8e4e2010-11-15 09:13:47 +00002549 }
John McCall1d9b3b22011-09-09 05:25:32 +00002550 } else if (ToType->isBlockPointerType()) {
2551 if (!FromType->isBlockPointerType())
2552 Kind = CK_AnyPointerToBlockPointerCast;
Steve Naroff14108da2009-07-10 23:34:53 +00002553 }
John McCalldaa8e4e2010-11-15 09:13:47 +00002554
2555 // We shouldn't fall into this case unless it's valid for other
2556 // reasons.
2557 if (From->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull))
2558 Kind = CK_NullToPointer;
2559
Douglas Gregor94b1dd22008-10-24 04:54:22 +00002560 return false;
2561}
2562
Sebastian Redl4433aaf2009-01-25 19:43:20 +00002563/// IsMemberPointerConversion - Determines whether the conversion of the
2564/// expression From, which has the (possibly adjusted) type FromType, can be
2565/// converted to the type ToType via a member pointer conversion (C++ 4.11).
2566/// If so, returns true and places the converted type (that might differ from
2567/// ToType in its cv-qualifiers at some level) into ConvertedType.
2568bool Sema::IsMemberPointerConversion(Expr *From, QualType FromType,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002569 QualType ToType,
Douglas Gregorce940492009-09-25 04:25:58 +00002570 bool InOverloadResolution,
2571 QualType &ConvertedType) {
Ted Kremenek6217b802009-07-29 21:53:49 +00002572 const MemberPointerType *ToTypePtr = ToType->getAs<MemberPointerType>();
Sebastian Redl4433aaf2009-01-25 19:43:20 +00002573 if (!ToTypePtr)
2574 return false;
2575
2576 // A null pointer constant can be converted to a member pointer (C++ 4.11p1)
Douglas Gregorce940492009-09-25 04:25:58 +00002577 if (From->isNullPointerConstant(Context,
2578 InOverloadResolution? Expr::NPC_ValueDependentIsNotNull
2579 : Expr::NPC_ValueDependentIsNull)) {
Sebastian Redl4433aaf2009-01-25 19:43:20 +00002580 ConvertedType = ToType;
2581 return true;
2582 }
2583
2584 // Otherwise, both types have to be member pointers.
Ted Kremenek6217b802009-07-29 21:53:49 +00002585 const MemberPointerType *FromTypePtr = FromType->getAs<MemberPointerType>();
Sebastian Redl4433aaf2009-01-25 19:43:20 +00002586 if (!FromTypePtr)
2587 return false;
2588
2589 // A pointer to member of B can be converted to a pointer to member of D,
2590 // where D is derived from B (C++ 4.11p2).
2591 QualType FromClass(FromTypePtr->getClass(), 0);
2592 QualType ToClass(ToTypePtr->getClass(), 0);
Sebastian Redl4433aaf2009-01-25 19:43:20 +00002593
Douglas Gregorcfddf7b2010-12-21 21:40:41 +00002594 if (!Context.hasSameUnqualifiedType(FromClass, ToClass) &&
2595 !RequireCompleteType(From->getLocStart(), ToClass, PDiag()) &&
2596 IsDerivedFrom(ToClass, FromClass)) {
Sebastian Redl4433aaf2009-01-25 19:43:20 +00002597 ConvertedType = Context.getMemberPointerType(FromTypePtr->getPointeeType(),
2598 ToClass.getTypePtr());
2599 return true;
2600 }
2601
2602 return false;
2603}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002604
Sebastian Redl4433aaf2009-01-25 19:43:20 +00002605/// CheckMemberPointerConversion - Check the member pointer conversion from the
2606/// expression From to the type ToType. This routine checks for ambiguous or
John McCall6b2accb2010-02-10 09:31:12 +00002607/// virtual or inaccessible base-to-derived member pointer conversions
Sebastian Redl4433aaf2009-01-25 19:43:20 +00002608/// for which IsMemberPointerConversion has already returned true. It returns
2609/// true and produces a diagnostic if there was an error, or returns false
2610/// otherwise.
Mike Stump1eb44332009-09-09 15:08:12 +00002611bool Sema::CheckMemberPointerConversion(Expr *From, QualType ToType,
John McCall2de56d12010-08-25 11:45:40 +00002612 CastKind &Kind,
John McCallf871d0c2010-08-07 06:22:56 +00002613 CXXCastPath &BasePath,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00002614 bool IgnoreBaseAccess) {
Sebastian Redl4433aaf2009-01-25 19:43:20 +00002615 QualType FromType = From->getType();
Ted Kremenek6217b802009-07-29 21:53:49 +00002616 const MemberPointerType *FromPtrType = FromType->getAs<MemberPointerType>();
Anders Carlsson27a5b9b2009-08-22 23:33:40 +00002617 if (!FromPtrType) {
2618 // This must be a null pointer to member pointer conversion
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002619 assert(From->isNullPointerConstant(Context,
Douglas Gregorce940492009-09-25 04:25:58 +00002620 Expr::NPC_ValueDependentIsNull) &&
Anders Carlsson27a5b9b2009-08-22 23:33:40 +00002621 "Expr must be null pointer constant!");
John McCall2de56d12010-08-25 11:45:40 +00002622 Kind = CK_NullToMemberPointer;
Sebastian Redl21593ac2009-01-28 18:33:18 +00002623 return false;
Anders Carlsson27a5b9b2009-08-22 23:33:40 +00002624 }
Sebastian Redl4433aaf2009-01-25 19:43:20 +00002625
Ted Kremenek6217b802009-07-29 21:53:49 +00002626 const MemberPointerType *ToPtrType = ToType->getAs<MemberPointerType>();
Sebastian Redl21593ac2009-01-28 18:33:18 +00002627 assert(ToPtrType && "No member pointer cast has a target type "
2628 "that is not a member pointer.");
Sebastian Redl4433aaf2009-01-25 19:43:20 +00002629
Sebastian Redl21593ac2009-01-28 18:33:18 +00002630 QualType FromClass = QualType(FromPtrType->getClass(), 0);
2631 QualType ToClass = QualType(ToPtrType->getClass(), 0);
Sebastian Redl4433aaf2009-01-25 19:43:20 +00002632
Sebastian Redl21593ac2009-01-28 18:33:18 +00002633 // FIXME: What about dependent types?
2634 assert(FromClass->isRecordType() && "Pointer into non-class.");
2635 assert(ToClass->isRecordType() && "Pointer into non-class.");
Sebastian Redl4433aaf2009-01-25 19:43:20 +00002636
Anders Carlssonf9d68e12010-04-24 19:36:51 +00002637 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
Douglas Gregora8f32e02009-10-06 17:59:45 +00002638 /*DetectVirtual=*/true);
Sebastian Redl21593ac2009-01-28 18:33:18 +00002639 bool DerivationOkay = IsDerivedFrom(ToClass, FromClass, Paths);
2640 assert(DerivationOkay &&
2641 "Should not have been called if derivation isn't OK.");
2642 (void)DerivationOkay;
Sebastian Redl4433aaf2009-01-25 19:43:20 +00002643
Sebastian Redl21593ac2009-01-28 18:33:18 +00002644 if (Paths.isAmbiguous(Context.getCanonicalType(FromClass).
2645 getUnqualifiedType())) {
Sebastian Redl21593ac2009-01-28 18:33:18 +00002646 std::string PathDisplayStr = getAmbiguousPathsDisplayString(Paths);
2647 Diag(From->getExprLoc(), diag::err_ambiguous_memptr_conv)
2648 << 0 << FromClass << ToClass << PathDisplayStr << From->getSourceRange();
2649 return true;
Sebastian Redl4433aaf2009-01-25 19:43:20 +00002650 }
Sebastian Redl21593ac2009-01-28 18:33:18 +00002651
Douglas Gregorc1efaec2009-02-28 01:32:25 +00002652 if (const RecordType *VBase = Paths.getDetectedVirtual()) {
Sebastian Redl21593ac2009-01-28 18:33:18 +00002653 Diag(From->getExprLoc(), diag::err_memptr_conv_via_virtual)
2654 << FromClass << ToClass << QualType(VBase, 0)
2655 << From->getSourceRange();
2656 return true;
2657 }
2658
John McCall6b2accb2010-02-10 09:31:12 +00002659 if (!IgnoreBaseAccess)
John McCall58e6f342010-03-16 05:22:47 +00002660 CheckBaseClassAccess(From->getExprLoc(), FromClass, ToClass,
2661 Paths.front(),
2662 diag::err_downcast_from_inaccessible_base);
John McCall6b2accb2010-02-10 09:31:12 +00002663
Anders Carlsson27a5b9b2009-08-22 23:33:40 +00002664 // Must be a base to derived member conversion.
Anders Carlssonf9d68e12010-04-24 19:36:51 +00002665 BuildBasePathArray(Paths, BasePath);
John McCall2de56d12010-08-25 11:45:40 +00002666 Kind = CK_BaseToDerivedMemberPointer;
Sebastian Redl4433aaf2009-01-25 19:43:20 +00002667 return false;
2668}
2669
Douglas Gregor98cd5992008-10-21 23:43:52 +00002670/// IsQualificationConversion - Determines whether the conversion from
2671/// an rvalue of type FromType to ToType is a qualification conversion
2672/// (C++ 4.4).
John McCallf85e1932011-06-15 23:02:42 +00002673///
2674/// \param ObjCLifetimeConversion Output parameter that will be set to indicate
2675/// when the qualification conversion involves a change in the Objective-C
2676/// object lifetime.
Mike Stump1eb44332009-09-09 15:08:12 +00002677bool
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002678Sema::IsQualificationConversion(QualType FromType, QualType ToType,
John McCallf85e1932011-06-15 23:02:42 +00002679 bool CStyle, bool &ObjCLifetimeConversion) {
Douglas Gregor98cd5992008-10-21 23:43:52 +00002680 FromType = Context.getCanonicalType(FromType);
2681 ToType = Context.getCanonicalType(ToType);
John McCallf85e1932011-06-15 23:02:42 +00002682 ObjCLifetimeConversion = false;
2683
Douglas Gregor98cd5992008-10-21 23:43:52 +00002684 // If FromType and ToType are the same type, this is not a
2685 // qualification conversion.
Sebastian Redl22c92402010-02-03 19:36:07 +00002686 if (FromType.getUnqualifiedType() == ToType.getUnqualifiedType())
Douglas Gregor98cd5992008-10-21 23:43:52 +00002687 return false;
Sebastian Redl21593ac2009-01-28 18:33:18 +00002688
Douglas Gregor98cd5992008-10-21 23:43:52 +00002689 // (C++ 4.4p4):
2690 // A conversion can add cv-qualifiers at levels other than the first
2691 // in multi-level pointers, subject to the following rules: [...]
2692 bool PreviousToQualsIncludeConst = true;
Douglas Gregor98cd5992008-10-21 23:43:52 +00002693 bool UnwrappedAnyPointer = false;
Douglas Gregor5a57efd2010-06-09 03:53:18 +00002694 while (Context.UnwrapSimilarPointerTypes(FromType, ToType)) {
Douglas Gregor98cd5992008-10-21 23:43:52 +00002695 // Within each iteration of the loop, we check the qualifiers to
2696 // determine if this still looks like a qualification
2697 // conversion. Then, if all is well, we unwrap one more level of
Douglas Gregorf8268ae2008-10-22 17:49:05 +00002698 // pointers or pointers-to-members and do it all again
Douglas Gregor98cd5992008-10-21 23:43:52 +00002699 // until there are no more pointers or pointers-to-members left to
2700 // unwrap.
Douglas Gregor57373262008-10-22 14:17:15 +00002701 UnwrappedAnyPointer = true;
Douglas Gregor98cd5992008-10-21 23:43:52 +00002702
Douglas Gregor621c92a2011-04-25 18:40:17 +00002703 Qualifiers FromQuals = FromType.getQualifiers();
2704 Qualifiers ToQuals = ToType.getQualifiers();
2705
John McCallf85e1932011-06-15 23:02:42 +00002706 // Objective-C ARC:
2707 // Check Objective-C lifetime conversions.
2708 if (FromQuals.getObjCLifetime() != ToQuals.getObjCLifetime() &&
2709 UnwrappedAnyPointer) {
2710 if (ToQuals.compatiblyIncludesObjCLifetime(FromQuals)) {
2711 ObjCLifetimeConversion = true;
2712 FromQuals.removeObjCLifetime();
2713 ToQuals.removeObjCLifetime();
2714 } else {
2715 // Qualification conversions cannot cast between different
2716 // Objective-C lifetime qualifiers.
2717 return false;
2718 }
2719 }
2720
Douglas Gregor377e1bd2011-05-08 06:09:53 +00002721 // Allow addition/removal of GC attributes but not changing GC attributes.
2722 if (FromQuals.getObjCGCAttr() != ToQuals.getObjCGCAttr() &&
2723 (!FromQuals.hasObjCGCAttr() || !ToQuals.hasObjCGCAttr())) {
2724 FromQuals.removeObjCGCAttr();
2725 ToQuals.removeObjCGCAttr();
2726 }
2727
Douglas Gregor98cd5992008-10-21 23:43:52 +00002728 // -- for every j > 0, if const is in cv 1,j then const is in cv
2729 // 2,j, and similarly for volatile.
Douglas Gregor621c92a2011-04-25 18:40:17 +00002730 if (!CStyle && !ToQuals.compatiblyIncludes(FromQuals))
Douglas Gregor98cd5992008-10-21 23:43:52 +00002731 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002732
Douglas Gregor98cd5992008-10-21 23:43:52 +00002733 // -- if the cv 1,j and cv 2,j are different, then const is in
2734 // every cv for 0 < k < j.
Douglas Gregor621c92a2011-04-25 18:40:17 +00002735 if (!CStyle && FromQuals.getCVRQualifiers() != ToQuals.getCVRQualifiers()
Douglas Gregor57373262008-10-22 14:17:15 +00002736 && !PreviousToQualsIncludeConst)
Douglas Gregor98cd5992008-10-21 23:43:52 +00002737 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002738
Douglas Gregor98cd5992008-10-21 23:43:52 +00002739 // Keep track of whether all prior cv-qualifiers in the "to" type
2740 // include const.
Mike Stump1eb44332009-09-09 15:08:12 +00002741 PreviousToQualsIncludeConst
Douglas Gregor621c92a2011-04-25 18:40:17 +00002742 = PreviousToQualsIncludeConst && ToQuals.hasConst();
Douglas Gregor57373262008-10-22 14:17:15 +00002743 }
Douglas Gregor98cd5992008-10-21 23:43:52 +00002744
2745 // We are left with FromType and ToType being the pointee types
2746 // after unwrapping the original FromType and ToType the same number
2747 // of types. If we unwrapped any pointers, and if FromType and
2748 // ToType have the same unqualified type (since we checked
2749 // qualifiers above), then this is a qualification conversion.
Douglas Gregora4923eb2009-11-16 21:35:15 +00002750 return UnwrappedAnyPointer && Context.hasSameUnqualifiedType(FromType,ToType);
Douglas Gregor98cd5992008-10-21 23:43:52 +00002751}
2752
Sebastian Redl56a04282012-02-11 23:51:08 +00002753static OverloadingResult
2754IsInitializerListConstructorConversion(Sema &S, Expr *From, QualType ToType,
2755 CXXRecordDecl *To,
2756 UserDefinedConversionSequence &User,
2757 OverloadCandidateSet &CandidateSet,
2758 bool AllowExplicit) {
2759 DeclContext::lookup_iterator Con, ConEnd;
2760 for (llvm::tie(Con, ConEnd) = S.LookupConstructors(To);
2761 Con != ConEnd; ++Con) {
2762 NamedDecl *D = *Con;
2763 DeclAccessPair FoundDecl = DeclAccessPair::make(D, D->getAccess());
2764
2765 // Find the constructor (which may be a template).
2766 CXXConstructorDecl *Constructor = 0;
2767 FunctionTemplateDecl *ConstructorTmpl
2768 = dyn_cast<FunctionTemplateDecl>(D);
2769 if (ConstructorTmpl)
2770 Constructor
2771 = cast<CXXConstructorDecl>(ConstructorTmpl->getTemplatedDecl());
2772 else
2773 Constructor = cast<CXXConstructorDecl>(D);
2774
2775 bool Usable = !Constructor->isInvalidDecl() &&
2776 S.isInitListConstructor(Constructor) &&
2777 (AllowExplicit || !Constructor->isExplicit());
2778 if (Usable) {
2779 if (ConstructorTmpl)
2780 S.AddTemplateOverloadCandidate(ConstructorTmpl, FoundDecl,
2781 /*ExplicitArgs*/ 0,
Ahmed Charles13a140c2012-02-25 11:00:22 +00002782 From, CandidateSet,
Sebastian Redl56a04282012-02-11 23:51:08 +00002783 /*SuppressUserConversions=*/true);
2784 else
2785 S.AddOverloadCandidate(Constructor, FoundDecl,
Ahmed Charles13a140c2012-02-25 11:00:22 +00002786 From, CandidateSet,
Sebastian Redl56a04282012-02-11 23:51:08 +00002787 /*SuppressUserConversions=*/true);
2788 }
2789 }
2790
2791 bool HadMultipleCandidates = (CandidateSet.size() > 1);
2792
2793 OverloadCandidateSet::iterator Best;
2794 switch (CandidateSet.BestViableFunction(S, From->getLocStart(), Best, true)) {
2795 case OR_Success: {
2796 // Record the standard conversion we used and the conversion function.
2797 CXXConstructorDecl *Constructor = cast<CXXConstructorDecl>(Best->Function);
2798 S.MarkFunctionReferenced(From->getLocStart(), Constructor);
2799
2800 QualType ThisType = Constructor->getThisType(S.Context);
2801 // Initializer lists don't have conversions as such.
2802 User.Before.setAsIdentityConversion();
2803 User.HadMultipleCandidates = HadMultipleCandidates;
2804 User.ConversionFunction = Constructor;
2805 User.FoundConversionFunction = Best->FoundDecl;
2806 User.After.setAsIdentityConversion();
2807 User.After.setFromType(ThisType->getAs<PointerType>()->getPointeeType());
2808 User.After.setAllToTypes(ToType);
2809 return OR_Success;
2810 }
2811
2812 case OR_No_Viable_Function:
2813 return OR_No_Viable_Function;
2814 case OR_Deleted:
2815 return OR_Deleted;
2816 case OR_Ambiguous:
2817 return OR_Ambiguous;
2818 }
2819
2820 llvm_unreachable("Invalid OverloadResult!");
2821}
2822
Douglas Gregor734d9862009-01-30 23:27:23 +00002823/// Determines whether there is a user-defined conversion sequence
2824/// (C++ [over.ics.user]) that converts expression From to the type
2825/// ToType. If such a conversion exists, User will contain the
2826/// user-defined conversion sequence that performs such a conversion
2827/// and this routine will return true. Otherwise, this routine returns
2828/// false and User is unspecified.
2829///
Douglas Gregor734d9862009-01-30 23:27:23 +00002830/// \param AllowExplicit true if the conversion should consider C++0x
2831/// "explicit" conversion functions as well as non-explicit conversion
2832/// functions (C++0x [class.conv.fct]p2).
John McCall120d63c2010-08-24 20:38:10 +00002833static OverloadingResult
2834IsUserDefinedConversion(Sema &S, Expr *From, QualType ToType,
Sebastian Redl56a04282012-02-11 23:51:08 +00002835 UserDefinedConversionSequence &User,
2836 OverloadCandidateSet &CandidateSet,
John McCall120d63c2010-08-24 20:38:10 +00002837 bool AllowExplicit) {
Douglas Gregor3fbaf3e2010-04-17 22:01:05 +00002838 // Whether we will only visit constructors.
2839 bool ConstructorsOnly = false;
2840
2841 // If the type we are conversion to is a class type, enumerate its
2842 // constructors.
Ted Kremenek6217b802009-07-29 21:53:49 +00002843 if (const RecordType *ToRecordType = ToType->getAs<RecordType>()) {
Douglas Gregor3fbaf3e2010-04-17 22:01:05 +00002844 // C++ [over.match.ctor]p1:
2845 // When objects of class type are direct-initialized (8.5), or
2846 // copy-initialized from an expression of the same or a
2847 // derived class type (8.5), overload resolution selects the
2848 // constructor. [...] For copy-initialization, the candidate
2849 // functions are all the converting constructors (12.3.1) of
2850 // that class. The argument list is the expression-list within
2851 // the parentheses of the initializer.
John McCall120d63c2010-08-24 20:38:10 +00002852 if (S.Context.hasSameUnqualifiedType(ToType, From->getType()) ||
Douglas Gregor3fbaf3e2010-04-17 22:01:05 +00002853 (From->getType()->getAs<RecordType>() &&
John McCall120d63c2010-08-24 20:38:10 +00002854 S.IsDerivedFrom(From->getType(), ToType)))
Douglas Gregor3fbaf3e2010-04-17 22:01:05 +00002855 ConstructorsOnly = true;
2856
Argyrios Kyrtzidise36bca62011-04-22 17:45:37 +00002857 S.RequireCompleteType(From->getLocStart(), ToType, S.PDiag());
2858 // RequireCompleteType may have returned true due to some invalid decl
2859 // during template instantiation, but ToType may be complete enough now
2860 // to try to recover.
2861 if (ToType->isIncompleteType()) {
Douglas Gregor393896f2009-11-05 13:06:35 +00002862 // We're not going to find any constructors.
2863 } else if (CXXRecordDecl *ToRecordDecl
2864 = dyn_cast<CXXRecordDecl>(ToRecordType->getDecl())) {
Sebastian Redlcf15cef2011-12-22 18:58:38 +00002865
2866 Expr **Args = &From;
2867 unsigned NumArgs = 1;
2868 bool ListInitializing = false;
Sebastian Redlcf15cef2011-12-22 18:58:38 +00002869 if (InitListExpr *InitList = dyn_cast<InitListExpr>(From)) {
Sebastian Redl56a04282012-02-11 23:51:08 +00002870 // But first, see if there is an init-list-contructor that will work.
2871 OverloadingResult Result = IsInitializerListConstructorConversion(
2872 S, From, ToType, ToRecordDecl, User, CandidateSet, AllowExplicit);
2873 if (Result != OR_No_Viable_Function)
2874 return Result;
2875 // Never mind.
2876 CandidateSet.clear();
2877
2878 // If we're list-initializing, we pass the individual elements as
2879 // arguments, not the entire list.
Sebastian Redlcf15cef2011-12-22 18:58:38 +00002880 Args = InitList->getInits();
2881 NumArgs = InitList->getNumInits();
2882 ListInitializing = true;
2883 }
2884
Douglas Gregorc1efaec2009-02-28 01:32:25 +00002885 DeclContext::lookup_iterator Con, ConEnd;
John McCall120d63c2010-08-24 20:38:10 +00002886 for (llvm::tie(Con, ConEnd) = S.LookupConstructors(ToRecordDecl);
Douglas Gregorc1efaec2009-02-28 01:32:25 +00002887 Con != ConEnd; ++Con) {
John McCall9aa472c2010-03-19 07:35:19 +00002888 NamedDecl *D = *Con;
2889 DeclAccessPair FoundDecl = DeclAccessPair::make(D, D->getAccess());
2890
Douglas Gregordec06662009-08-21 18:42:58 +00002891 // Find the constructor (which may be a template).
2892 CXXConstructorDecl *Constructor = 0;
2893 FunctionTemplateDecl *ConstructorTmpl
John McCall9aa472c2010-03-19 07:35:19 +00002894 = dyn_cast<FunctionTemplateDecl>(D);
Douglas Gregordec06662009-08-21 18:42:58 +00002895 if (ConstructorTmpl)
Mike Stump1eb44332009-09-09 15:08:12 +00002896 Constructor
Douglas Gregordec06662009-08-21 18:42:58 +00002897 = cast<CXXConstructorDecl>(ConstructorTmpl->getTemplatedDecl());
2898 else
John McCall9aa472c2010-03-19 07:35:19 +00002899 Constructor = cast<CXXConstructorDecl>(D);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00002900
Sebastian Redlcf15cef2011-12-22 18:58:38 +00002901 bool Usable = !Constructor->isInvalidDecl();
2902 if (ListInitializing)
2903 Usable = Usable && (AllowExplicit || !Constructor->isExplicit());
2904 else
2905 Usable = Usable &&Constructor->isConvertingConstructor(AllowExplicit);
2906 if (Usable) {
Douglas Gregordec06662009-08-21 18:42:58 +00002907 if (ConstructorTmpl)
John McCall120d63c2010-08-24 20:38:10 +00002908 S.AddTemplateOverloadCandidate(ConstructorTmpl, FoundDecl,
2909 /*ExplicitArgs*/ 0,
Ahmed Charles13a140c2012-02-25 11:00:22 +00002910 llvm::makeArrayRef(Args, NumArgs),
2911 CandidateSet,
John McCall120d63c2010-08-24 20:38:10 +00002912 /*SuppressUserConversions=*/
Sebastian Redlcf15cef2011-12-22 18:58:38 +00002913 !ConstructorsOnly &&
2914 !ListInitializing);
Douglas Gregordec06662009-08-21 18:42:58 +00002915 else
Fariborz Jahanian249cead2009-10-01 20:39:51 +00002916 // Allow one user-defined conversion when user specifies a
2917 // From->ToType conversion via an static cast (c-style, etc).
John McCall120d63c2010-08-24 20:38:10 +00002918 S.AddOverloadCandidate(Constructor, FoundDecl,
Ahmed Charles13a140c2012-02-25 11:00:22 +00002919 llvm::makeArrayRef(Args, NumArgs),
2920 CandidateSet,
John McCall120d63c2010-08-24 20:38:10 +00002921 /*SuppressUserConversions=*/
Sebastian Redlcf15cef2011-12-22 18:58:38 +00002922 !ConstructorsOnly && !ListInitializing);
Douglas Gregordec06662009-08-21 18:42:58 +00002923 }
Douglas Gregorc1efaec2009-02-28 01:32:25 +00002924 }
Douglas Gregor60d62c22008-10-31 16:23:19 +00002925 }
2926 }
2927
Douglas Gregor3fbaf3e2010-04-17 22:01:05 +00002928 // Enumerate conversion functions, if we're allowed to.
Sebastian Redlcf15cef2011-12-22 18:58:38 +00002929 if (ConstructorsOnly || isa<InitListExpr>(From)) {
John McCall120d63c2010-08-24 20:38:10 +00002930 } else if (S.RequireCompleteType(From->getLocStart(), From->getType(),
2931 S.PDiag(0) << From->getSourceRange())) {
Douglas Gregor5842ba92009-08-24 15:23:48 +00002932 // No conversion functions from incomplete types.
Mike Stump1eb44332009-09-09 15:08:12 +00002933 } else if (const RecordType *FromRecordType
Douglas Gregor3fbaf3e2010-04-17 22:01:05 +00002934 = From->getType()->getAs<RecordType>()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002935 if (CXXRecordDecl *FromRecordDecl
Fariborz Jahanian8664ad52009-09-11 18:46:22 +00002936 = dyn_cast<CXXRecordDecl>(FromRecordType->getDecl())) {
2937 // Add all of the conversion functions as candidates.
John McCalleec51cf2010-01-20 00:46:10 +00002938 const UnresolvedSetImpl *Conversions
Fariborz Jahanianb191e2d2009-09-14 20:41:01 +00002939 = FromRecordDecl->getVisibleConversionFunctions();
John McCalleec51cf2010-01-20 00:46:10 +00002940 for (UnresolvedSetImpl::iterator I = Conversions->begin(),
John McCallba135432009-11-21 08:51:07 +00002941 E = Conversions->end(); I != E; ++I) {
John McCall9aa472c2010-03-19 07:35:19 +00002942 DeclAccessPair FoundDecl = I.getPair();
2943 NamedDecl *D = FoundDecl.getDecl();
John McCall701c89e2009-12-03 04:06:58 +00002944 CXXRecordDecl *ActingContext = cast<CXXRecordDecl>(D->getDeclContext());
2945 if (isa<UsingShadowDecl>(D))
2946 D = cast<UsingShadowDecl>(D)->getTargetDecl();
2947
Fariborz Jahanian8664ad52009-09-11 18:46:22 +00002948 CXXConversionDecl *Conv;
2949 FunctionTemplateDecl *ConvTemplate;
John McCall32daa422010-03-31 01:36:47 +00002950 if ((ConvTemplate = dyn_cast<FunctionTemplateDecl>(D)))
2951 Conv = cast<CXXConversionDecl>(ConvTemplate->getTemplatedDecl());
Fariborz Jahanian8664ad52009-09-11 18:46:22 +00002952 else
John McCall32daa422010-03-31 01:36:47 +00002953 Conv = cast<CXXConversionDecl>(D);
Fariborz Jahanian8664ad52009-09-11 18:46:22 +00002954
2955 if (AllowExplicit || !Conv->isExplicit()) {
2956 if (ConvTemplate)
John McCall120d63c2010-08-24 20:38:10 +00002957 S.AddTemplateConversionCandidate(ConvTemplate, FoundDecl,
2958 ActingContext, From, ToType,
2959 CandidateSet);
Fariborz Jahanian8664ad52009-09-11 18:46:22 +00002960 else
John McCall120d63c2010-08-24 20:38:10 +00002961 S.AddConversionCandidate(Conv, FoundDecl, ActingContext,
2962 From, ToType, CandidateSet);
Fariborz Jahanian8664ad52009-09-11 18:46:22 +00002963 }
2964 }
2965 }
Douglas Gregorf1991ea2008-11-07 22:36:19 +00002966 }
Douglas Gregor60d62c22008-10-31 16:23:19 +00002967
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00002968 bool HadMultipleCandidates = (CandidateSet.size() > 1);
2969
Douglas Gregor60d62c22008-10-31 16:23:19 +00002970 OverloadCandidateSet::iterator Best;
Douglas Gregor8fcc5162010-09-12 08:07:23 +00002971 switch (CandidateSet.BestViableFunction(S, From->getLocStart(), Best, true)) {
John McCall120d63c2010-08-24 20:38:10 +00002972 case OR_Success:
2973 // Record the standard conversion we used and the conversion function.
2974 if (CXXConstructorDecl *Constructor
2975 = dyn_cast<CXXConstructorDecl>(Best->Function)) {
Eli Friedman5f2987c2012-02-02 03:46:19 +00002976 S.MarkFunctionReferenced(From->getLocStart(), Constructor);
Chandler Carruth25ca4212011-02-25 19:41:05 +00002977
John McCall120d63c2010-08-24 20:38:10 +00002978 // C++ [over.ics.user]p1:
2979 // If the user-defined conversion is specified by a
2980 // constructor (12.3.1), the initial standard conversion
2981 // sequence converts the source type to the type required by
2982 // the argument of the constructor.
2983 //
2984 QualType ThisType = Constructor->getThisType(S.Context);
Sebastian Redlcf15cef2011-12-22 18:58:38 +00002985 if (isa<InitListExpr>(From)) {
2986 // Initializer lists don't have conversions as such.
2987 User.Before.setAsIdentityConversion();
2988 } else {
2989 if (Best->Conversions[0].isEllipsis())
2990 User.EllipsisConversion = true;
2991 else {
2992 User.Before = Best->Conversions[0].Standard;
2993 User.EllipsisConversion = false;
2994 }
Douglas Gregor60d62c22008-10-31 16:23:19 +00002995 }
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00002996 User.HadMultipleCandidates = HadMultipleCandidates;
John McCall120d63c2010-08-24 20:38:10 +00002997 User.ConversionFunction = Constructor;
John McCallca82a822011-09-21 08:36:56 +00002998 User.FoundConversionFunction = Best->FoundDecl;
John McCall120d63c2010-08-24 20:38:10 +00002999 User.After.setAsIdentityConversion();
3000 User.After.setFromType(ThisType->getAs<PointerType>()->getPointeeType());
3001 User.After.setAllToTypes(ToType);
3002 return OR_Success;
David Blaikie7530c032012-01-17 06:56:22 +00003003 }
3004 if (CXXConversionDecl *Conversion
John McCall120d63c2010-08-24 20:38:10 +00003005 = dyn_cast<CXXConversionDecl>(Best->Function)) {
Eli Friedman5f2987c2012-02-02 03:46:19 +00003006 S.MarkFunctionReferenced(From->getLocStart(), Conversion);
Chandler Carruth25ca4212011-02-25 19:41:05 +00003007
John McCall120d63c2010-08-24 20:38:10 +00003008 // C++ [over.ics.user]p1:
3009 //
3010 // [...] If the user-defined conversion is specified by a
3011 // conversion function (12.3.2), the initial standard
3012 // conversion sequence converts the source type to the
3013 // implicit object parameter of the conversion function.
3014 User.Before = Best->Conversions[0].Standard;
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00003015 User.HadMultipleCandidates = HadMultipleCandidates;
John McCall120d63c2010-08-24 20:38:10 +00003016 User.ConversionFunction = Conversion;
John McCallca82a822011-09-21 08:36:56 +00003017 User.FoundConversionFunction = Best->FoundDecl;
John McCall120d63c2010-08-24 20:38:10 +00003018 User.EllipsisConversion = false;
Mike Stump1eb44332009-09-09 15:08:12 +00003019
John McCall120d63c2010-08-24 20:38:10 +00003020 // C++ [over.ics.user]p2:
3021 // The second standard conversion sequence converts the
3022 // result of the user-defined conversion to the target type
3023 // for the sequence. Since an implicit conversion sequence
3024 // is an initialization, the special rules for
3025 // initialization by user-defined conversion apply when
3026 // selecting the best user-defined conversion for a
3027 // user-defined conversion sequence (see 13.3.3 and
3028 // 13.3.3.1).
3029 User.After = Best->FinalConversion;
3030 return OR_Success;
Douglas Gregor60d62c22008-10-31 16:23:19 +00003031 }
David Blaikie7530c032012-01-17 06:56:22 +00003032 llvm_unreachable("Not a constructor or conversion function?");
Douglas Gregor60d62c22008-10-31 16:23:19 +00003033
John McCall120d63c2010-08-24 20:38:10 +00003034 case OR_No_Viable_Function:
3035 return OR_No_Viable_Function;
3036 case OR_Deleted:
3037 // No conversion here! We're done.
3038 return OR_Deleted;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003039
John McCall120d63c2010-08-24 20:38:10 +00003040 case OR_Ambiguous:
3041 return OR_Ambiguous;
3042 }
3043
David Blaikie7530c032012-01-17 06:56:22 +00003044 llvm_unreachable("Invalid OverloadResult!");
Douglas Gregor60d62c22008-10-31 16:23:19 +00003045}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003046
Fariborz Jahanian17c7a5d2009-09-22 20:24:30 +00003047bool
Fariborz Jahaniancc5306a2009-11-18 18:26:29 +00003048Sema::DiagnoseMultipleUserDefinedConversion(Expr *From, QualType ToType) {
Fariborz Jahanian17c7a5d2009-09-22 20:24:30 +00003049 ImplicitConversionSequence ICS;
John McCall5769d612010-02-08 23:07:23 +00003050 OverloadCandidateSet CandidateSet(From->getExprLoc());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003051 OverloadingResult OvResult =
John McCall120d63c2010-08-24 20:38:10 +00003052 IsUserDefinedConversion(*this, From, ToType, ICS.UserDefined,
Douglas Gregor3fbaf3e2010-04-17 22:01:05 +00003053 CandidateSet, false);
Fariborz Jahaniancc5306a2009-11-18 18:26:29 +00003054 if (OvResult == OR_Ambiguous)
Daniel Dunbar96a00142012-03-09 18:35:03 +00003055 Diag(From->getLocStart(),
Fariborz Jahaniancc5306a2009-11-18 18:26:29 +00003056 diag::err_typecheck_ambiguous_condition)
3057 << From->getType() << ToType << From->getSourceRange();
3058 else if (OvResult == OR_No_Viable_Function && !CandidateSet.empty())
Daniel Dunbar96a00142012-03-09 18:35:03 +00003059 Diag(From->getLocStart(),
Fariborz Jahaniancc5306a2009-11-18 18:26:29 +00003060 diag::err_typecheck_nonviable_condition)
3061 << From->getType() << ToType << From->getSourceRange();
3062 else
Fariborz Jahanian17c7a5d2009-09-22 20:24:30 +00003063 return false;
Ahmed Charles13a140c2012-02-25 11:00:22 +00003064 CandidateSet.NoteCandidates(*this, OCD_AllCandidates, From);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003065 return true;
Fariborz Jahanian17c7a5d2009-09-22 20:24:30 +00003066}
Douglas Gregor60d62c22008-10-31 16:23:19 +00003067
Douglas Gregorb734e242012-02-22 17:32:19 +00003068/// \brief Compare the user-defined conversion functions or constructors
3069/// of two user-defined conversion sequences to determine whether any ordering
3070/// is possible.
3071static ImplicitConversionSequence::CompareKind
3072compareConversionFunctions(Sema &S,
3073 FunctionDecl *Function1,
3074 FunctionDecl *Function2) {
3075 if (!S.getLangOptions().ObjC1 || !S.getLangOptions().CPlusPlus0x)
3076 return ImplicitConversionSequence::Indistinguishable;
3077
3078 // Objective-C++:
3079 // If both conversion functions are implicitly-declared conversions from
3080 // a lambda closure type to a function pointer and a block pointer,
3081 // respectively, always prefer the conversion to a function pointer,
3082 // because the function pointer is more lightweight and is more likely
3083 // to keep code working.
3084 CXXConversionDecl *Conv1 = dyn_cast<CXXConversionDecl>(Function1);
3085 if (!Conv1)
3086 return ImplicitConversionSequence::Indistinguishable;
3087
3088 CXXConversionDecl *Conv2 = dyn_cast<CXXConversionDecl>(Function2);
3089 if (!Conv2)
3090 return ImplicitConversionSequence::Indistinguishable;
3091
3092 if (Conv1->getParent()->isLambda() && Conv2->getParent()->isLambda()) {
3093 bool Block1 = Conv1->getConversionType()->isBlockPointerType();
3094 bool Block2 = Conv2->getConversionType()->isBlockPointerType();
3095 if (Block1 != Block2)
3096 return Block1? ImplicitConversionSequence::Worse
3097 : ImplicitConversionSequence::Better;
3098 }
3099
3100 return ImplicitConversionSequence::Indistinguishable;
3101}
3102
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00003103/// CompareImplicitConversionSequences - Compare two implicit
3104/// conversion sequences to determine whether one is better than the
3105/// other or if they are indistinguishable (C++ 13.3.3.2).
John McCall120d63c2010-08-24 20:38:10 +00003106static ImplicitConversionSequence::CompareKind
3107CompareImplicitConversionSequences(Sema &S,
3108 const ImplicitConversionSequence& ICS1,
3109 const ImplicitConversionSequence& ICS2)
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00003110{
3111 // (C++ 13.3.3.2p2): When comparing the basic forms of implicit
3112 // conversion sequences (as defined in 13.3.3.1)
3113 // -- a standard conversion sequence (13.3.3.1.1) is a better
3114 // conversion sequence than a user-defined conversion sequence or
3115 // an ellipsis conversion sequence, and
3116 // -- a user-defined conversion sequence (13.3.3.1.2) is a better
3117 // conversion sequence than an ellipsis conversion sequence
3118 // (13.3.3.1.3).
Mike Stump1eb44332009-09-09 15:08:12 +00003119 //
John McCall1d318332010-01-12 00:44:57 +00003120 // C++0x [over.best.ics]p10:
3121 // For the purpose of ranking implicit conversion sequences as
3122 // described in 13.3.3.2, the ambiguous conversion sequence is
3123 // treated as a user-defined sequence that is indistinguishable
3124 // from any other user-defined conversion sequence.
Douglas Gregor3fbaf3e2010-04-17 22:01:05 +00003125 if (ICS1.getKindRank() < ICS2.getKindRank())
3126 return ImplicitConversionSequence::Better;
David Blaikie7530c032012-01-17 06:56:22 +00003127 if (ICS2.getKindRank() < ICS1.getKindRank())
Douglas Gregor3fbaf3e2010-04-17 22:01:05 +00003128 return ImplicitConversionSequence::Worse;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00003129
Benjamin Kramerb6eee072010-04-18 12:05:54 +00003130 // The following checks require both conversion sequences to be of
3131 // the same kind.
3132 if (ICS1.getKind() != ICS2.getKind())
3133 return ImplicitConversionSequence::Indistinguishable;
3134
Sebastian Redlcc7a6482011-11-01 15:53:09 +00003135 ImplicitConversionSequence::CompareKind Result =
3136 ImplicitConversionSequence::Indistinguishable;
3137
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00003138 // Two implicit conversion sequences of the same form are
3139 // indistinguishable conversion sequences unless one of the
3140 // following rules apply: (C++ 13.3.3.2p3):
John McCall1d318332010-01-12 00:44:57 +00003141 if (ICS1.isStandard())
Sebastian Redlcc7a6482011-11-01 15:53:09 +00003142 Result = CompareStandardConversionSequences(S,
3143 ICS1.Standard, ICS2.Standard);
John McCall1d318332010-01-12 00:44:57 +00003144 else if (ICS1.isUserDefined()) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00003145 // User-defined conversion sequence U1 is a better conversion
3146 // sequence than another user-defined conversion sequence U2 if
3147 // they contain the same user-defined conversion function or
3148 // constructor and if the second standard conversion sequence of
3149 // U1 is better than the second standard conversion sequence of
3150 // U2 (C++ 13.3.3.2p3).
Mike Stump1eb44332009-09-09 15:08:12 +00003151 if (ICS1.UserDefined.ConversionFunction ==
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00003152 ICS2.UserDefined.ConversionFunction)
Sebastian Redlcc7a6482011-11-01 15:53:09 +00003153 Result = CompareStandardConversionSequences(S,
3154 ICS1.UserDefined.After,
3155 ICS2.UserDefined.After);
Douglas Gregorb734e242012-02-22 17:32:19 +00003156 else
3157 Result = compareConversionFunctions(S,
3158 ICS1.UserDefined.ConversionFunction,
3159 ICS2.UserDefined.ConversionFunction);
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00003160 }
3161
Sebastian Redlcc7a6482011-11-01 15:53:09 +00003162 // List-initialization sequence L1 is a better conversion sequence than
3163 // list-initialization sequence L2 if L1 converts to std::initializer_list<X>
3164 // for some X and L2 does not.
3165 if (Result == ImplicitConversionSequence::Indistinguishable &&
Sebastian Redladfb5352012-02-27 22:38:26 +00003166 !ICS1.isBad() &&
Sebastian Redlcc7a6482011-11-01 15:53:09 +00003167 ICS1.isListInitializationSequence() &&
3168 ICS2.isListInitializationSequence()) {
Sebastian Redladfb5352012-02-27 22:38:26 +00003169 if (ICS1.isStdInitializerListElement() &&
3170 !ICS2.isStdInitializerListElement())
3171 return ImplicitConversionSequence::Better;
3172 if (!ICS1.isStdInitializerListElement() &&
3173 ICS2.isStdInitializerListElement())
3174 return ImplicitConversionSequence::Worse;
Sebastian Redlcc7a6482011-11-01 15:53:09 +00003175 }
3176
3177 return Result;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00003178}
3179
Douglas Gregor5a57efd2010-06-09 03:53:18 +00003180static bool hasSimilarType(ASTContext &Context, QualType T1, QualType T2) {
3181 while (Context.UnwrapSimilarPointerTypes(T1, T2)) {
3182 Qualifiers Quals;
3183 T1 = Context.getUnqualifiedArrayType(T1, Quals);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003184 T2 = Context.getUnqualifiedArrayType(T2, Quals);
Douglas Gregor5a57efd2010-06-09 03:53:18 +00003185 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003186
Douglas Gregor5a57efd2010-06-09 03:53:18 +00003187 return Context.hasSameUnqualifiedType(T1, T2);
3188}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003189
Douglas Gregorad323a82010-01-27 03:51:04 +00003190// Per 13.3.3.2p3, compare the given standard conversion sequences to
3191// determine if one is a proper subset of the other.
3192static ImplicitConversionSequence::CompareKind
3193compareStandardConversionSubsets(ASTContext &Context,
3194 const StandardConversionSequence& SCS1,
3195 const StandardConversionSequence& SCS2) {
3196 ImplicitConversionSequence::CompareKind Result
3197 = ImplicitConversionSequence::Indistinguishable;
3198
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003199 // the identity conversion sequence is considered to be a subsequence of
Douglas Gregorae65f4b2010-05-23 22:10:15 +00003200 // any non-identity conversion sequence
Douglas Gregor4ae5b722011-06-05 06:15:20 +00003201 if (SCS1.isIdentityConversion() && !SCS2.isIdentityConversion())
3202 return ImplicitConversionSequence::Better;
3203 else if (!SCS1.isIdentityConversion() && SCS2.isIdentityConversion())
3204 return ImplicitConversionSequence::Worse;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003205
Douglas Gregorad323a82010-01-27 03:51:04 +00003206 if (SCS1.Second != SCS2.Second) {
3207 if (SCS1.Second == ICK_Identity)
3208 Result = ImplicitConversionSequence::Better;
3209 else if (SCS2.Second == ICK_Identity)
3210 Result = ImplicitConversionSequence::Worse;
3211 else
3212 return ImplicitConversionSequence::Indistinguishable;
Douglas Gregor5a57efd2010-06-09 03:53:18 +00003213 } else if (!hasSimilarType(Context, SCS1.getToType(1), SCS2.getToType(1)))
Douglas Gregorad323a82010-01-27 03:51:04 +00003214 return ImplicitConversionSequence::Indistinguishable;
3215
3216 if (SCS1.Third == SCS2.Third) {
3217 return Context.hasSameType(SCS1.getToType(2), SCS2.getToType(2))? Result
3218 : ImplicitConversionSequence::Indistinguishable;
3219 }
3220
3221 if (SCS1.Third == ICK_Identity)
3222 return Result == ImplicitConversionSequence::Worse
3223 ? ImplicitConversionSequence::Indistinguishable
3224 : ImplicitConversionSequence::Better;
3225
3226 if (SCS2.Third == ICK_Identity)
3227 return Result == ImplicitConversionSequence::Better
3228 ? ImplicitConversionSequence::Indistinguishable
3229 : ImplicitConversionSequence::Worse;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003230
Douglas Gregorad323a82010-01-27 03:51:04 +00003231 return ImplicitConversionSequence::Indistinguishable;
3232}
3233
Douglas Gregor440a4832011-01-26 14:52:12 +00003234/// \brief Determine whether one of the given reference bindings is better
3235/// than the other based on what kind of bindings they are.
3236static bool isBetterReferenceBindingKind(const StandardConversionSequence &SCS1,
3237 const StandardConversionSequence &SCS2) {
3238 // C++0x [over.ics.rank]p3b4:
3239 // -- S1 and S2 are reference bindings (8.5.3) and neither refers to an
3240 // implicit object parameter of a non-static member function declared
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003241 // without a ref-qualifier, and *either* S1 binds an rvalue reference
Douglas Gregor440a4832011-01-26 14:52:12 +00003242 // to an rvalue and S2 binds an lvalue reference *or S1 binds an
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003243 // lvalue reference to a function lvalue and S2 binds an rvalue
Douglas Gregor440a4832011-01-26 14:52:12 +00003244 // reference*.
3245 //
3246 // FIXME: Rvalue references. We're going rogue with the above edits,
3247 // because the semantics in the current C++0x working paper (N3225 at the
3248 // time of this writing) break the standard definition of std::forward
3249 // and std::reference_wrapper when dealing with references to functions.
3250 // Proposed wording changes submitted to CWG for consideration.
Douglas Gregorfcab48b2011-01-26 19:41:18 +00003251 if (SCS1.BindsImplicitObjectArgumentWithoutRefQualifier ||
3252 SCS2.BindsImplicitObjectArgumentWithoutRefQualifier)
3253 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003254
Douglas Gregor440a4832011-01-26 14:52:12 +00003255 return (!SCS1.IsLvalueReference && SCS1.BindsToRvalue &&
3256 SCS2.IsLvalueReference) ||
3257 (SCS1.IsLvalueReference && SCS1.BindsToFunctionLvalue &&
3258 !SCS2.IsLvalueReference);
3259}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003260
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00003261/// CompareStandardConversionSequences - Compare two standard
3262/// conversion sequences to determine whether one is better than the
3263/// other or if they are indistinguishable (C++ 13.3.3.2p3).
John McCall120d63c2010-08-24 20:38:10 +00003264static ImplicitConversionSequence::CompareKind
3265CompareStandardConversionSequences(Sema &S,
3266 const StandardConversionSequence& SCS1,
3267 const StandardConversionSequence& SCS2)
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00003268{
3269 // Standard conversion sequence S1 is a better conversion sequence
3270 // than standard conversion sequence S2 if (C++ 13.3.3.2p3):
3271
3272 // -- S1 is a proper subsequence of S2 (comparing the conversion
3273 // sequences in the canonical form defined by 13.3.3.1.1,
3274 // excluding any Lvalue Transformation; the identity conversion
3275 // sequence is considered to be a subsequence of any
3276 // non-identity conversion sequence) or, if not that,
Douglas Gregorad323a82010-01-27 03:51:04 +00003277 if (ImplicitConversionSequence::CompareKind CK
John McCall120d63c2010-08-24 20:38:10 +00003278 = compareStandardConversionSubsets(S.Context, SCS1, SCS2))
Douglas Gregorad323a82010-01-27 03:51:04 +00003279 return CK;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00003280
3281 // -- the rank of S1 is better than the rank of S2 (by the rules
3282 // defined below), or, if not that,
3283 ImplicitConversionRank Rank1 = SCS1.getRank();
3284 ImplicitConversionRank Rank2 = SCS2.getRank();
3285 if (Rank1 < Rank2)
3286 return ImplicitConversionSequence::Better;
3287 else if (Rank2 < Rank1)
3288 return ImplicitConversionSequence::Worse;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00003289
Douglas Gregor57373262008-10-22 14:17:15 +00003290 // (C++ 13.3.3.2p4): Two conversion sequences with the same rank
3291 // are indistinguishable unless one of the following rules
3292 // applies:
Mike Stump1eb44332009-09-09 15:08:12 +00003293
Douglas Gregor57373262008-10-22 14:17:15 +00003294 // A conversion that is not a conversion of a pointer, or
3295 // pointer to member, to bool is better than another conversion
3296 // that is such a conversion.
3297 if (SCS1.isPointerConversionToBool() != SCS2.isPointerConversionToBool())
3298 return SCS2.isPointerConversionToBool()
3299 ? ImplicitConversionSequence::Better
3300 : ImplicitConversionSequence::Worse;
3301
Douglas Gregorbc0805a2008-10-23 00:40:37 +00003302 // C++ [over.ics.rank]p4b2:
3303 //
3304 // If class B is derived directly or indirectly from class A,
Douglas Gregorf70bdb92008-10-29 14:50:44 +00003305 // conversion of B* to A* is better than conversion of B* to
3306 // void*, and conversion of A* to void* is better than conversion
3307 // of B* to void*.
Mike Stump1eb44332009-09-09 15:08:12 +00003308 bool SCS1ConvertsToVoid
John McCall120d63c2010-08-24 20:38:10 +00003309 = SCS1.isPointerConversionToVoidPointer(S.Context);
Mike Stump1eb44332009-09-09 15:08:12 +00003310 bool SCS2ConvertsToVoid
John McCall120d63c2010-08-24 20:38:10 +00003311 = SCS2.isPointerConversionToVoidPointer(S.Context);
Douglas Gregorf70bdb92008-10-29 14:50:44 +00003312 if (SCS1ConvertsToVoid != SCS2ConvertsToVoid) {
3313 // Exactly one of the conversion sequences is a conversion to
3314 // a void pointer; it's the worse conversion.
Douglas Gregorbc0805a2008-10-23 00:40:37 +00003315 return SCS2ConvertsToVoid ? ImplicitConversionSequence::Better
3316 : ImplicitConversionSequence::Worse;
Douglas Gregorf70bdb92008-10-29 14:50:44 +00003317 } else if (!SCS1ConvertsToVoid && !SCS2ConvertsToVoid) {
3318 // Neither conversion sequence converts to a void pointer; compare
3319 // their derived-to-base conversions.
Douglas Gregorbc0805a2008-10-23 00:40:37 +00003320 if (ImplicitConversionSequence::CompareKind DerivedCK
John McCall120d63c2010-08-24 20:38:10 +00003321 = CompareDerivedToBaseConversions(S, SCS1, SCS2))
Douglas Gregorbc0805a2008-10-23 00:40:37 +00003322 return DerivedCK;
Douglas Gregor0f7b3dc2011-04-27 00:01:52 +00003323 } else if (SCS1ConvertsToVoid && SCS2ConvertsToVoid &&
3324 !S.Context.hasSameType(SCS1.getFromType(), SCS2.getFromType())) {
Douglas Gregorf70bdb92008-10-29 14:50:44 +00003325 // Both conversion sequences are conversions to void
3326 // pointers. Compare the source types to determine if there's an
3327 // inheritance relationship in their sources.
John McCall1d318332010-01-12 00:44:57 +00003328 QualType FromType1 = SCS1.getFromType();
3329 QualType FromType2 = SCS2.getFromType();
Douglas Gregorf70bdb92008-10-29 14:50:44 +00003330
3331 // Adjust the types we're converting from via the array-to-pointer
3332 // conversion, if we need to.
3333 if (SCS1.First == ICK_Array_To_Pointer)
John McCall120d63c2010-08-24 20:38:10 +00003334 FromType1 = S.Context.getArrayDecayedType(FromType1);
Douglas Gregorf70bdb92008-10-29 14:50:44 +00003335 if (SCS2.First == ICK_Array_To_Pointer)
John McCall120d63c2010-08-24 20:38:10 +00003336 FromType2 = S.Context.getArrayDecayedType(FromType2);
Douglas Gregorf70bdb92008-10-29 14:50:44 +00003337
Douglas Gregor0f7b3dc2011-04-27 00:01:52 +00003338 QualType FromPointee1 = FromType1->getPointeeType().getUnqualifiedType();
3339 QualType FromPointee2 = FromType2->getPointeeType().getUnqualifiedType();
Douglas Gregorf70bdb92008-10-29 14:50:44 +00003340
John McCall120d63c2010-08-24 20:38:10 +00003341 if (S.IsDerivedFrom(FromPointee2, FromPointee1))
Douglas Gregor01919692009-12-13 21:37:05 +00003342 return ImplicitConversionSequence::Better;
John McCall120d63c2010-08-24 20:38:10 +00003343 else if (S.IsDerivedFrom(FromPointee1, FromPointee2))
Douglas Gregor01919692009-12-13 21:37:05 +00003344 return ImplicitConversionSequence::Worse;
3345
3346 // Objective-C++: If one interface is more specific than the
3347 // other, it is the better one.
Douglas Gregor0f7b3dc2011-04-27 00:01:52 +00003348 const ObjCObjectPointerType* FromObjCPtr1
3349 = FromType1->getAs<ObjCObjectPointerType>();
3350 const ObjCObjectPointerType* FromObjCPtr2
3351 = FromType2->getAs<ObjCObjectPointerType>();
3352 if (FromObjCPtr1 && FromObjCPtr2) {
3353 bool AssignLeft = S.Context.canAssignObjCInterfaces(FromObjCPtr1,
3354 FromObjCPtr2);
3355 bool AssignRight = S.Context.canAssignObjCInterfaces(FromObjCPtr2,
3356 FromObjCPtr1);
3357 if (AssignLeft != AssignRight) {
3358 return AssignLeft? ImplicitConversionSequence::Better
3359 : ImplicitConversionSequence::Worse;
3360 }
Douglas Gregor01919692009-12-13 21:37:05 +00003361 }
Douglas Gregorf70bdb92008-10-29 14:50:44 +00003362 }
Douglas Gregor57373262008-10-22 14:17:15 +00003363
3364 // Compare based on qualification conversions (C++ 13.3.3.2p3,
3365 // bullet 3).
Mike Stump1eb44332009-09-09 15:08:12 +00003366 if (ImplicitConversionSequence::CompareKind QualCK
John McCall120d63c2010-08-24 20:38:10 +00003367 = CompareQualificationConversions(S, SCS1, SCS2))
Douglas Gregorbc0805a2008-10-23 00:40:37 +00003368 return QualCK;
Douglas Gregor57373262008-10-22 14:17:15 +00003369
Douglas Gregorf70bdb92008-10-29 14:50:44 +00003370 if (SCS1.ReferenceBinding && SCS2.ReferenceBinding) {
Douglas Gregor440a4832011-01-26 14:52:12 +00003371 // Check for a better reference binding based on the kind of bindings.
3372 if (isBetterReferenceBindingKind(SCS1, SCS2))
3373 return ImplicitConversionSequence::Better;
3374 else if (isBetterReferenceBindingKind(SCS2, SCS1))
3375 return ImplicitConversionSequence::Worse;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003376
Sebastian Redlf2e21e52009-03-22 23:49:27 +00003377 // C++ [over.ics.rank]p3b4:
3378 // -- S1 and S2 are reference bindings (8.5.3), and the types to
3379 // which the references refer are the same type except for
3380 // top-level cv-qualifiers, and the type to which the reference
3381 // initialized by S2 refers is more cv-qualified than the type
3382 // to which the reference initialized by S1 refers.
Douglas Gregorad323a82010-01-27 03:51:04 +00003383 QualType T1 = SCS1.getToType(2);
3384 QualType T2 = SCS2.getToType(2);
John McCall120d63c2010-08-24 20:38:10 +00003385 T1 = S.Context.getCanonicalType(T1);
3386 T2 = S.Context.getCanonicalType(T2);
Chandler Carruth28e318c2009-12-29 07:16:59 +00003387 Qualifiers T1Quals, T2Quals;
John McCall120d63c2010-08-24 20:38:10 +00003388 QualType UnqualT1 = S.Context.getUnqualifiedArrayType(T1, T1Quals);
3389 QualType UnqualT2 = S.Context.getUnqualifiedArrayType(T2, T2Quals);
Chandler Carruth28e318c2009-12-29 07:16:59 +00003390 if (UnqualT1 == UnqualT2) {
John McCallf85e1932011-06-15 23:02:42 +00003391 // Objective-C++ ARC: If the references refer to objects with different
3392 // lifetimes, prefer bindings that don't change lifetime.
3393 if (SCS1.ObjCLifetimeConversionBinding !=
3394 SCS2.ObjCLifetimeConversionBinding) {
3395 return SCS1.ObjCLifetimeConversionBinding
3396 ? ImplicitConversionSequence::Worse
3397 : ImplicitConversionSequence::Better;
3398 }
3399
Chandler Carruth6df868e2010-12-12 08:17:55 +00003400 // If the type is an array type, promote the element qualifiers to the
3401 // type for comparison.
Chandler Carruth28e318c2009-12-29 07:16:59 +00003402 if (isa<ArrayType>(T1) && T1Quals)
John McCall120d63c2010-08-24 20:38:10 +00003403 T1 = S.Context.getQualifiedType(UnqualT1, T1Quals);
Chandler Carruth28e318c2009-12-29 07:16:59 +00003404 if (isa<ArrayType>(T2) && T2Quals)
John McCall120d63c2010-08-24 20:38:10 +00003405 T2 = S.Context.getQualifiedType(UnqualT2, T2Quals);
Douglas Gregorf70bdb92008-10-29 14:50:44 +00003406 if (T2.isMoreQualifiedThan(T1))
3407 return ImplicitConversionSequence::Better;
3408 else if (T1.isMoreQualifiedThan(T2))
John McCallf85e1932011-06-15 23:02:42 +00003409 return ImplicitConversionSequence::Worse;
Douglas Gregorf70bdb92008-10-29 14:50:44 +00003410 }
3411 }
Douglas Gregor57373262008-10-22 14:17:15 +00003412
Francois Pichet1c98d622011-09-18 21:37:37 +00003413 // In Microsoft mode, prefer an integral conversion to a
3414 // floating-to-integral conversion if the integral conversion
3415 // is between types of the same size.
3416 // For example:
3417 // void f(float);
3418 // void f(int);
3419 // int main {
3420 // long a;
3421 // f(a);
3422 // }
3423 // Here, MSVC will call f(int) instead of generating a compile error
3424 // as clang will do in standard mode.
3425 if (S.getLangOptions().MicrosoftMode &&
3426 SCS1.Second == ICK_Integral_Conversion &&
3427 SCS2.Second == ICK_Floating_Integral &&
3428 S.Context.getTypeSize(SCS1.getFromType()) ==
3429 S.Context.getTypeSize(SCS1.getToType(2)))
3430 return ImplicitConversionSequence::Better;
3431
Douglas Gregor57373262008-10-22 14:17:15 +00003432 return ImplicitConversionSequence::Indistinguishable;
3433}
3434
3435/// CompareQualificationConversions - Compares two standard conversion
3436/// sequences to determine whether they can be ranked based on their
Mike Stump1eb44332009-09-09 15:08:12 +00003437/// qualification conversions (C++ 13.3.3.2p3 bullet 3).
3438ImplicitConversionSequence::CompareKind
John McCall120d63c2010-08-24 20:38:10 +00003439CompareQualificationConversions(Sema &S,
3440 const StandardConversionSequence& SCS1,
3441 const StandardConversionSequence& SCS2) {
Douglas Gregorba7e2102008-10-22 15:04:37 +00003442 // C++ 13.3.3.2p3:
Douglas Gregor57373262008-10-22 14:17:15 +00003443 // -- S1 and S2 differ only in their qualification conversion and
3444 // yield similar types T1 and T2 (C++ 4.4), respectively, and the
3445 // cv-qualification signature of type T1 is a proper subset of
3446 // the cv-qualification signature of type T2, and S1 is not the
3447 // deprecated string literal array-to-pointer conversion (4.2).
3448 if (SCS1.First != SCS2.First || SCS1.Second != SCS2.Second ||
3449 SCS1.Third != SCS2.Third || SCS1.Third != ICK_Qualification)
3450 return ImplicitConversionSequence::Indistinguishable;
3451
3452 // FIXME: the example in the standard doesn't use a qualification
3453 // conversion (!)
Douglas Gregorad323a82010-01-27 03:51:04 +00003454 QualType T1 = SCS1.getToType(2);
3455 QualType T2 = SCS2.getToType(2);
John McCall120d63c2010-08-24 20:38:10 +00003456 T1 = S.Context.getCanonicalType(T1);
3457 T2 = S.Context.getCanonicalType(T2);
Chandler Carruth28e318c2009-12-29 07:16:59 +00003458 Qualifiers T1Quals, T2Quals;
John McCall120d63c2010-08-24 20:38:10 +00003459 QualType UnqualT1 = S.Context.getUnqualifiedArrayType(T1, T1Quals);
3460 QualType UnqualT2 = S.Context.getUnqualifiedArrayType(T2, T2Quals);
Douglas Gregor57373262008-10-22 14:17:15 +00003461
3462 // If the types are the same, we won't learn anything by unwrapped
3463 // them.
Chandler Carruth28e318c2009-12-29 07:16:59 +00003464 if (UnqualT1 == UnqualT2)
Douglas Gregor57373262008-10-22 14:17:15 +00003465 return ImplicitConversionSequence::Indistinguishable;
3466
Chandler Carruth28e318c2009-12-29 07:16:59 +00003467 // If the type is an array type, promote the element qualifiers to the type
3468 // for comparison.
3469 if (isa<ArrayType>(T1) && T1Quals)
John McCall120d63c2010-08-24 20:38:10 +00003470 T1 = S.Context.getQualifiedType(UnqualT1, T1Quals);
Chandler Carruth28e318c2009-12-29 07:16:59 +00003471 if (isa<ArrayType>(T2) && T2Quals)
John McCall120d63c2010-08-24 20:38:10 +00003472 T2 = S.Context.getQualifiedType(UnqualT2, T2Quals);
Chandler Carruth28e318c2009-12-29 07:16:59 +00003473
Mike Stump1eb44332009-09-09 15:08:12 +00003474 ImplicitConversionSequence::CompareKind Result
Douglas Gregor57373262008-10-22 14:17:15 +00003475 = ImplicitConversionSequence::Indistinguishable;
John McCallf85e1932011-06-15 23:02:42 +00003476
3477 // Objective-C++ ARC:
3478 // Prefer qualification conversions not involving a change in lifetime
3479 // to qualification conversions that do not change lifetime.
3480 if (SCS1.QualificationIncludesObjCLifetime !=
3481 SCS2.QualificationIncludesObjCLifetime) {
3482 Result = SCS1.QualificationIncludesObjCLifetime
3483 ? ImplicitConversionSequence::Worse
3484 : ImplicitConversionSequence::Better;
3485 }
3486
John McCall120d63c2010-08-24 20:38:10 +00003487 while (S.Context.UnwrapSimilarPointerTypes(T1, T2)) {
Douglas Gregor57373262008-10-22 14:17:15 +00003488 // Within each iteration of the loop, we check the qualifiers to
3489 // determine if this still looks like a qualification
3490 // conversion. Then, if all is well, we unwrap one more level of
Douglas Gregorf8268ae2008-10-22 17:49:05 +00003491 // pointers or pointers-to-members and do it all again
Douglas Gregor57373262008-10-22 14:17:15 +00003492 // until there are no more pointers or pointers-to-members left
3493 // to unwrap. This essentially mimics what
3494 // IsQualificationConversion does, but here we're checking for a
3495 // strict subset of qualifiers.
3496 if (T1.getCVRQualifiers() == T2.getCVRQualifiers())
3497 // The qualifiers are the same, so this doesn't tell us anything
3498 // about how the sequences rank.
3499 ;
3500 else if (T2.isMoreQualifiedThan(T1)) {
3501 // T1 has fewer qualifiers, so it could be the better sequence.
3502 if (Result == ImplicitConversionSequence::Worse)
3503 // Neither has qualifiers that are a subset of the other's
3504 // qualifiers.
3505 return ImplicitConversionSequence::Indistinguishable;
Mike Stump1eb44332009-09-09 15:08:12 +00003506
Douglas Gregor57373262008-10-22 14:17:15 +00003507 Result = ImplicitConversionSequence::Better;
3508 } else if (T1.isMoreQualifiedThan(T2)) {
3509 // T2 has fewer qualifiers, so it could be the better sequence.
3510 if (Result == ImplicitConversionSequence::Better)
3511 // Neither has qualifiers that are a subset of the other's
3512 // qualifiers.
3513 return ImplicitConversionSequence::Indistinguishable;
Mike Stump1eb44332009-09-09 15:08:12 +00003514
Douglas Gregor57373262008-10-22 14:17:15 +00003515 Result = ImplicitConversionSequence::Worse;
3516 } else {
3517 // Qualifiers are disjoint.
3518 return ImplicitConversionSequence::Indistinguishable;
3519 }
3520
3521 // If the types after this point are equivalent, we're done.
John McCall120d63c2010-08-24 20:38:10 +00003522 if (S.Context.hasSameUnqualifiedType(T1, T2))
Douglas Gregor57373262008-10-22 14:17:15 +00003523 break;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00003524 }
3525
Douglas Gregor57373262008-10-22 14:17:15 +00003526 // Check that the winning standard conversion sequence isn't using
3527 // the deprecated string literal array to pointer conversion.
3528 switch (Result) {
3529 case ImplicitConversionSequence::Better:
Douglas Gregora9bff302010-02-28 18:30:25 +00003530 if (SCS1.DeprecatedStringLiteralToCharPtr)
Douglas Gregor57373262008-10-22 14:17:15 +00003531 Result = ImplicitConversionSequence::Indistinguishable;
3532 break;
3533
3534 case ImplicitConversionSequence::Indistinguishable:
3535 break;
3536
3537 case ImplicitConversionSequence::Worse:
Douglas Gregora9bff302010-02-28 18:30:25 +00003538 if (SCS2.DeprecatedStringLiteralToCharPtr)
Douglas Gregor57373262008-10-22 14:17:15 +00003539 Result = ImplicitConversionSequence::Indistinguishable;
3540 break;
3541 }
3542
3543 return Result;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00003544}
3545
Douglas Gregorbc0805a2008-10-23 00:40:37 +00003546/// CompareDerivedToBaseConversions - Compares two standard conversion
3547/// sequences to determine whether they can be ranked based on their
Douglas Gregorcb7de522008-11-26 23:31:11 +00003548/// various kinds of derived-to-base conversions (C++
3549/// [over.ics.rank]p4b3). As part of these checks, we also look at
3550/// conversions between Objective-C interface types.
Douglas Gregorbc0805a2008-10-23 00:40:37 +00003551ImplicitConversionSequence::CompareKind
John McCall120d63c2010-08-24 20:38:10 +00003552CompareDerivedToBaseConversions(Sema &S,
3553 const StandardConversionSequence& SCS1,
3554 const StandardConversionSequence& SCS2) {
John McCall1d318332010-01-12 00:44:57 +00003555 QualType FromType1 = SCS1.getFromType();
Douglas Gregorad323a82010-01-27 03:51:04 +00003556 QualType ToType1 = SCS1.getToType(1);
John McCall1d318332010-01-12 00:44:57 +00003557 QualType FromType2 = SCS2.getFromType();
Douglas Gregorad323a82010-01-27 03:51:04 +00003558 QualType ToType2 = SCS2.getToType(1);
Douglas Gregorbc0805a2008-10-23 00:40:37 +00003559
3560 // Adjust the types we're converting from via the array-to-pointer
3561 // conversion, if we need to.
3562 if (SCS1.First == ICK_Array_To_Pointer)
John McCall120d63c2010-08-24 20:38:10 +00003563 FromType1 = S.Context.getArrayDecayedType(FromType1);
Douglas Gregorbc0805a2008-10-23 00:40:37 +00003564 if (SCS2.First == ICK_Array_To_Pointer)
John McCall120d63c2010-08-24 20:38:10 +00003565 FromType2 = S.Context.getArrayDecayedType(FromType2);
Douglas Gregorbc0805a2008-10-23 00:40:37 +00003566
3567 // Canonicalize all of the types.
John McCall120d63c2010-08-24 20:38:10 +00003568 FromType1 = S.Context.getCanonicalType(FromType1);
3569 ToType1 = S.Context.getCanonicalType(ToType1);
3570 FromType2 = S.Context.getCanonicalType(FromType2);
3571 ToType2 = S.Context.getCanonicalType(ToType2);
Douglas Gregorbc0805a2008-10-23 00:40:37 +00003572
Douglas Gregorf70bdb92008-10-29 14:50:44 +00003573 // C++ [over.ics.rank]p4b3:
Douglas Gregorbc0805a2008-10-23 00:40:37 +00003574 //
3575 // If class B is derived directly or indirectly from class A and
3576 // class C is derived directly or indirectly from B,
Douglas Gregorcb7de522008-11-26 23:31:11 +00003577 //
Douglas Gregorf70bdb92008-10-29 14:50:44 +00003578 // Compare based on pointer conversions.
Mike Stump1eb44332009-09-09 15:08:12 +00003579 if (SCS1.Second == ICK_Pointer_Conversion &&
Douglas Gregor7ca09762008-11-27 01:19:21 +00003580 SCS2.Second == ICK_Pointer_Conversion &&
3581 /*FIXME: Remove if Objective-C id conversions get their own rank*/
3582 FromType1->isPointerType() && FromType2->isPointerType() &&
3583 ToType1->isPointerType() && ToType2->isPointerType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00003584 QualType FromPointee1
Ted Kremenek6217b802009-07-29 21:53:49 +00003585 = FromType1->getAs<PointerType>()->getPointeeType().getUnqualifiedType();
Mike Stump1eb44332009-09-09 15:08:12 +00003586 QualType ToPointee1
Ted Kremenek6217b802009-07-29 21:53:49 +00003587 = ToType1->getAs<PointerType>()->getPointeeType().getUnqualifiedType();
Douglas Gregorbc0805a2008-10-23 00:40:37 +00003588 QualType FromPointee2
Ted Kremenek6217b802009-07-29 21:53:49 +00003589 = FromType2->getAs<PointerType>()->getPointeeType().getUnqualifiedType();
Douglas Gregorbc0805a2008-10-23 00:40:37 +00003590 QualType ToPointee2
Ted Kremenek6217b802009-07-29 21:53:49 +00003591 = ToType2->getAs<PointerType>()->getPointeeType().getUnqualifiedType();
Douglas Gregorcb7de522008-11-26 23:31:11 +00003592
Douglas Gregorf70bdb92008-10-29 14:50:44 +00003593 // -- conversion of C* to B* is better than conversion of C* to A*,
Douglas Gregorbc0805a2008-10-23 00:40:37 +00003594 if (FromPointee1 == FromPointee2 && ToPointee1 != ToPointee2) {
John McCall120d63c2010-08-24 20:38:10 +00003595 if (S.IsDerivedFrom(ToPointee1, ToPointee2))
Douglas Gregorbc0805a2008-10-23 00:40:37 +00003596 return ImplicitConversionSequence::Better;
John McCall120d63c2010-08-24 20:38:10 +00003597 else if (S.IsDerivedFrom(ToPointee2, ToPointee1))
Douglas Gregorbc0805a2008-10-23 00:40:37 +00003598 return ImplicitConversionSequence::Worse;
3599 }
Douglas Gregorf70bdb92008-10-29 14:50:44 +00003600
3601 // -- conversion of B* to A* is better than conversion of C* to A*,
3602 if (FromPointee1 != FromPointee2 && ToPointee1 == ToPointee2) {
John McCall120d63c2010-08-24 20:38:10 +00003603 if (S.IsDerivedFrom(FromPointee2, FromPointee1))
Douglas Gregorf70bdb92008-10-29 14:50:44 +00003604 return ImplicitConversionSequence::Better;
John McCall120d63c2010-08-24 20:38:10 +00003605 else if (S.IsDerivedFrom(FromPointee1, FromPointee2))
Douglas Gregorf70bdb92008-10-29 14:50:44 +00003606 return ImplicitConversionSequence::Worse;
Douglas Gregor395cc372011-01-31 18:51:41 +00003607 }
3608 } else if (SCS1.Second == ICK_Pointer_Conversion &&
3609 SCS2.Second == ICK_Pointer_Conversion) {
3610 const ObjCObjectPointerType *FromPtr1
3611 = FromType1->getAs<ObjCObjectPointerType>();
3612 const ObjCObjectPointerType *FromPtr2
3613 = FromType2->getAs<ObjCObjectPointerType>();
3614 const ObjCObjectPointerType *ToPtr1
3615 = ToType1->getAs<ObjCObjectPointerType>();
3616 const ObjCObjectPointerType *ToPtr2
3617 = ToType2->getAs<ObjCObjectPointerType>();
3618
3619 if (FromPtr1 && FromPtr2 && ToPtr1 && ToPtr2) {
3620 // Apply the same conversion ranking rules for Objective-C pointer types
3621 // that we do for C++ pointers to class types. However, we employ the
3622 // Objective-C pseudo-subtyping relationship used for assignment of
3623 // Objective-C pointer types.
3624 bool FromAssignLeft
3625 = S.Context.canAssignObjCInterfaces(FromPtr1, FromPtr2);
3626 bool FromAssignRight
3627 = S.Context.canAssignObjCInterfaces(FromPtr2, FromPtr1);
3628 bool ToAssignLeft
3629 = S.Context.canAssignObjCInterfaces(ToPtr1, ToPtr2);
3630 bool ToAssignRight
3631 = S.Context.canAssignObjCInterfaces(ToPtr2, ToPtr1);
3632
3633 // A conversion to an a non-id object pointer type or qualified 'id'
3634 // type is better than a conversion to 'id'.
3635 if (ToPtr1->isObjCIdType() &&
3636 (ToPtr2->isObjCQualifiedIdType() || ToPtr2->getInterfaceDecl()))
3637 return ImplicitConversionSequence::Worse;
3638 if (ToPtr2->isObjCIdType() &&
3639 (ToPtr1->isObjCQualifiedIdType() || ToPtr1->getInterfaceDecl()))
3640 return ImplicitConversionSequence::Better;
3641
3642 // A conversion to a non-id object pointer type is better than a
3643 // conversion to a qualified 'id' type
3644 if (ToPtr1->isObjCQualifiedIdType() && ToPtr2->getInterfaceDecl())
3645 return ImplicitConversionSequence::Worse;
3646 if (ToPtr2->isObjCQualifiedIdType() && ToPtr1->getInterfaceDecl())
3647 return ImplicitConversionSequence::Better;
3648
3649 // A conversion to an a non-Class object pointer type or qualified 'Class'
3650 // type is better than a conversion to 'Class'.
3651 if (ToPtr1->isObjCClassType() &&
3652 (ToPtr2->isObjCQualifiedClassType() || ToPtr2->getInterfaceDecl()))
3653 return ImplicitConversionSequence::Worse;
3654 if (ToPtr2->isObjCClassType() &&
3655 (ToPtr1->isObjCQualifiedClassType() || ToPtr1->getInterfaceDecl()))
3656 return ImplicitConversionSequence::Better;
3657
3658 // A conversion to a non-Class object pointer type is better than a
3659 // conversion to a qualified 'Class' type.
3660 if (ToPtr1->isObjCQualifiedClassType() && ToPtr2->getInterfaceDecl())
3661 return ImplicitConversionSequence::Worse;
3662 if (ToPtr2->isObjCQualifiedClassType() && ToPtr1->getInterfaceDecl())
3663 return ImplicitConversionSequence::Better;
Mike Stump1eb44332009-09-09 15:08:12 +00003664
Douglas Gregor395cc372011-01-31 18:51:41 +00003665 // -- "conversion of C* to B* is better than conversion of C* to A*,"
3666 if (S.Context.hasSameType(FromType1, FromType2) &&
3667 !FromPtr1->isObjCIdType() && !FromPtr1->isObjCClassType() &&
3668 (ToAssignLeft != ToAssignRight))
3669 return ToAssignLeft? ImplicitConversionSequence::Worse
3670 : ImplicitConversionSequence::Better;
3671
3672 // -- "conversion of B* to A* is better than conversion of C* to A*,"
3673 if (S.Context.hasSameUnqualifiedType(ToType1, ToType2) &&
3674 (FromAssignLeft != FromAssignRight))
3675 return FromAssignLeft? ImplicitConversionSequence::Better
3676 : ImplicitConversionSequence::Worse;
Douglas Gregorf70bdb92008-10-29 14:50:44 +00003677 }
Douglas Gregorbc0805a2008-10-23 00:40:37 +00003678 }
Douglas Gregor395cc372011-01-31 18:51:41 +00003679
Fariborz Jahanian2357da02009-10-20 20:07:35 +00003680 // Ranking of member-pointer types.
Fariborz Jahanian8577c982009-10-20 20:04:46 +00003681 if (SCS1.Second == ICK_Pointer_Member && SCS2.Second == ICK_Pointer_Member &&
3682 FromType1->isMemberPointerType() && FromType2->isMemberPointerType() &&
3683 ToType1->isMemberPointerType() && ToType2->isMemberPointerType()) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003684 const MemberPointerType * FromMemPointer1 =
Fariborz Jahanian8577c982009-10-20 20:04:46 +00003685 FromType1->getAs<MemberPointerType>();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003686 const MemberPointerType * ToMemPointer1 =
Fariborz Jahanian8577c982009-10-20 20:04:46 +00003687 ToType1->getAs<MemberPointerType>();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003688 const MemberPointerType * FromMemPointer2 =
Fariborz Jahanian8577c982009-10-20 20:04:46 +00003689 FromType2->getAs<MemberPointerType>();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003690 const MemberPointerType * ToMemPointer2 =
Fariborz Jahanian8577c982009-10-20 20:04:46 +00003691 ToType2->getAs<MemberPointerType>();
3692 const Type *FromPointeeType1 = FromMemPointer1->getClass();
3693 const Type *ToPointeeType1 = ToMemPointer1->getClass();
3694 const Type *FromPointeeType2 = FromMemPointer2->getClass();
3695 const Type *ToPointeeType2 = ToMemPointer2->getClass();
3696 QualType FromPointee1 = QualType(FromPointeeType1, 0).getUnqualifiedType();
3697 QualType ToPointee1 = QualType(ToPointeeType1, 0).getUnqualifiedType();
3698 QualType FromPointee2 = QualType(FromPointeeType2, 0).getUnqualifiedType();
3699 QualType ToPointee2 = QualType(ToPointeeType2, 0).getUnqualifiedType();
Fariborz Jahanian2357da02009-10-20 20:07:35 +00003700 // conversion of A::* to B::* is better than conversion of A::* to C::*,
Fariborz Jahanian8577c982009-10-20 20:04:46 +00003701 if (FromPointee1 == FromPointee2 && ToPointee1 != ToPointee2) {
John McCall120d63c2010-08-24 20:38:10 +00003702 if (S.IsDerivedFrom(ToPointee1, ToPointee2))
Fariborz Jahanian8577c982009-10-20 20:04:46 +00003703 return ImplicitConversionSequence::Worse;
John McCall120d63c2010-08-24 20:38:10 +00003704 else if (S.IsDerivedFrom(ToPointee2, ToPointee1))
Fariborz Jahanian8577c982009-10-20 20:04:46 +00003705 return ImplicitConversionSequence::Better;
3706 }
3707 // conversion of B::* to C::* is better than conversion of A::* to C::*
3708 if (ToPointee1 == ToPointee2 && FromPointee1 != FromPointee2) {
John McCall120d63c2010-08-24 20:38:10 +00003709 if (S.IsDerivedFrom(FromPointee1, FromPointee2))
Fariborz Jahanian8577c982009-10-20 20:04:46 +00003710 return ImplicitConversionSequence::Better;
John McCall120d63c2010-08-24 20:38:10 +00003711 else if (S.IsDerivedFrom(FromPointee2, FromPointee1))
Fariborz Jahanian8577c982009-10-20 20:04:46 +00003712 return ImplicitConversionSequence::Worse;
3713 }
3714 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003715
Douglas Gregor3fbaf3e2010-04-17 22:01:05 +00003716 if (SCS1.Second == ICK_Derived_To_Base) {
Douglas Gregor225c41e2008-11-03 19:09:14 +00003717 // -- conversion of C to B is better than conversion of C to A,
Douglas Gregor9e239322010-02-25 19:01:05 +00003718 // -- binding of an expression of type C to a reference of type
3719 // B& is better than binding an expression of type C to a
3720 // reference of type A&,
John McCall120d63c2010-08-24 20:38:10 +00003721 if (S.Context.hasSameUnqualifiedType(FromType1, FromType2) &&
3722 !S.Context.hasSameUnqualifiedType(ToType1, ToType2)) {
3723 if (S.IsDerivedFrom(ToType1, ToType2))
Douglas Gregor225c41e2008-11-03 19:09:14 +00003724 return ImplicitConversionSequence::Better;
John McCall120d63c2010-08-24 20:38:10 +00003725 else if (S.IsDerivedFrom(ToType2, ToType1))
Douglas Gregor225c41e2008-11-03 19:09:14 +00003726 return ImplicitConversionSequence::Worse;
3727 }
Douglas Gregorf70bdb92008-10-29 14:50:44 +00003728
Douglas Gregor225c41e2008-11-03 19:09:14 +00003729 // -- conversion of B to A is better than conversion of C to A.
Douglas Gregor9e239322010-02-25 19:01:05 +00003730 // -- binding of an expression of type B to a reference of type
3731 // A& is better than binding an expression of type C to a
3732 // reference of type A&,
John McCall120d63c2010-08-24 20:38:10 +00003733 if (!S.Context.hasSameUnqualifiedType(FromType1, FromType2) &&
3734 S.Context.hasSameUnqualifiedType(ToType1, ToType2)) {
3735 if (S.IsDerivedFrom(FromType2, FromType1))
Douglas Gregor225c41e2008-11-03 19:09:14 +00003736 return ImplicitConversionSequence::Better;
John McCall120d63c2010-08-24 20:38:10 +00003737 else if (S.IsDerivedFrom(FromType1, FromType2))
Douglas Gregor225c41e2008-11-03 19:09:14 +00003738 return ImplicitConversionSequence::Worse;
3739 }
3740 }
Douglas Gregorf70bdb92008-10-29 14:50:44 +00003741
Douglas Gregorbc0805a2008-10-23 00:40:37 +00003742 return ImplicitConversionSequence::Indistinguishable;
3743}
3744
Douglas Gregorabe183d2010-04-13 16:31:36 +00003745/// CompareReferenceRelationship - Compare the two types T1 and T2 to
3746/// determine whether they are reference-related,
3747/// reference-compatible, reference-compatible with added
3748/// qualification, or incompatible, for use in C++ initialization by
3749/// reference (C++ [dcl.ref.init]p4). Neither type can be a reference
3750/// type, and the first type (T1) is the pointee type of the reference
3751/// type being initialized.
3752Sema::ReferenceCompareResult
3753Sema::CompareReferenceRelationship(SourceLocation Loc,
3754 QualType OrigT1, QualType OrigT2,
Douglas Gregor569c3162010-08-07 11:51:51 +00003755 bool &DerivedToBase,
John McCallf85e1932011-06-15 23:02:42 +00003756 bool &ObjCConversion,
3757 bool &ObjCLifetimeConversion) {
Douglas Gregorabe183d2010-04-13 16:31:36 +00003758 assert(!OrigT1->isReferenceType() &&
3759 "T1 must be the pointee type of the reference type");
3760 assert(!OrigT2->isReferenceType() && "T2 cannot be a reference type");
3761
3762 QualType T1 = Context.getCanonicalType(OrigT1);
3763 QualType T2 = Context.getCanonicalType(OrigT2);
3764 Qualifiers T1Quals, T2Quals;
3765 QualType UnqualT1 = Context.getUnqualifiedArrayType(T1, T1Quals);
3766 QualType UnqualT2 = Context.getUnqualifiedArrayType(T2, T2Quals);
3767
3768 // C++ [dcl.init.ref]p4:
3769 // Given types "cv1 T1" and "cv2 T2," "cv1 T1" is
3770 // reference-related to "cv2 T2" if T1 is the same type as T2, or
3771 // T1 is a base class of T2.
Douglas Gregor569c3162010-08-07 11:51:51 +00003772 DerivedToBase = false;
3773 ObjCConversion = false;
John McCallf85e1932011-06-15 23:02:42 +00003774 ObjCLifetimeConversion = false;
Douglas Gregor569c3162010-08-07 11:51:51 +00003775 if (UnqualT1 == UnqualT2) {
3776 // Nothing to do.
3777 } else if (!RequireCompleteType(Loc, OrigT2, PDiag()) &&
Douglas Gregorabe183d2010-04-13 16:31:36 +00003778 IsDerivedFrom(UnqualT2, UnqualT1))
3779 DerivedToBase = true;
Douglas Gregor569c3162010-08-07 11:51:51 +00003780 else if (UnqualT1->isObjCObjectOrInterfaceType() &&
3781 UnqualT2->isObjCObjectOrInterfaceType() &&
3782 Context.canBindObjCObjectType(UnqualT1, UnqualT2))
3783 ObjCConversion = true;
Douglas Gregorabe183d2010-04-13 16:31:36 +00003784 else
3785 return Ref_Incompatible;
3786
3787 // At this point, we know that T1 and T2 are reference-related (at
3788 // least).
3789
3790 // If the type is an array type, promote the element qualifiers to the type
3791 // for comparison.
3792 if (isa<ArrayType>(T1) && T1Quals)
3793 T1 = Context.getQualifiedType(UnqualT1, T1Quals);
3794 if (isa<ArrayType>(T2) && T2Quals)
3795 T2 = Context.getQualifiedType(UnqualT2, T2Quals);
3796
3797 // C++ [dcl.init.ref]p4:
3798 // "cv1 T1" is reference-compatible with "cv2 T2" if T1 is
3799 // reference-related to T2 and cv1 is the same cv-qualification
3800 // as, or greater cv-qualification than, cv2. For purposes of
3801 // overload resolution, cases for which cv1 is greater
3802 // cv-qualification than cv2 are identified as
3803 // reference-compatible with added qualification (see 13.3.3.2).
Douglas Gregora6ce3e62011-04-28 17:56:11 +00003804 //
3805 // Note that we also require equivalence of Objective-C GC and address-space
3806 // qualifiers when performing these computations, so that e.g., an int in
3807 // address space 1 is not reference-compatible with an int in address
3808 // space 2.
John McCallf85e1932011-06-15 23:02:42 +00003809 if (T1Quals.getObjCLifetime() != T2Quals.getObjCLifetime() &&
3810 T1Quals.compatiblyIncludesObjCLifetime(T2Quals)) {
3811 T1Quals.removeObjCLifetime();
3812 T2Quals.removeObjCLifetime();
3813 ObjCLifetimeConversion = true;
3814 }
3815
Douglas Gregora6ce3e62011-04-28 17:56:11 +00003816 if (T1Quals == T2Quals)
Douglas Gregorabe183d2010-04-13 16:31:36 +00003817 return Ref_Compatible;
John McCallf85e1932011-06-15 23:02:42 +00003818 else if (T1Quals.compatiblyIncludes(T2Quals))
Douglas Gregorabe183d2010-04-13 16:31:36 +00003819 return Ref_Compatible_With_Added_Qualification;
3820 else
3821 return Ref_Related;
3822}
3823
Douglas Gregor604eb652010-08-11 02:15:33 +00003824/// \brief Look for a user-defined conversion to an value reference-compatible
Sebastian Redl4680bf22010-06-30 18:13:39 +00003825/// with DeclType. Return true if something definite is found.
3826static bool
Douglas Gregor604eb652010-08-11 02:15:33 +00003827FindConversionForRefInit(Sema &S, ImplicitConversionSequence &ICS,
3828 QualType DeclType, SourceLocation DeclLoc,
3829 Expr *Init, QualType T2, bool AllowRvalues,
3830 bool AllowExplicit) {
Sebastian Redl4680bf22010-06-30 18:13:39 +00003831 assert(T2->isRecordType() && "Can only find conversions of record types.");
3832 CXXRecordDecl *T2RecordDecl
3833 = dyn_cast<CXXRecordDecl>(T2->getAs<RecordType>()->getDecl());
3834
3835 OverloadCandidateSet CandidateSet(DeclLoc);
3836 const UnresolvedSetImpl *Conversions
3837 = T2RecordDecl->getVisibleConversionFunctions();
3838 for (UnresolvedSetImpl::iterator I = Conversions->begin(),
3839 E = Conversions->end(); I != E; ++I) {
3840 NamedDecl *D = *I;
3841 CXXRecordDecl *ActingDC = cast<CXXRecordDecl>(D->getDeclContext());
3842 if (isa<UsingShadowDecl>(D))
3843 D = cast<UsingShadowDecl>(D)->getTargetDecl();
3844
3845 FunctionTemplateDecl *ConvTemplate
3846 = dyn_cast<FunctionTemplateDecl>(D);
3847 CXXConversionDecl *Conv;
3848 if (ConvTemplate)
3849 Conv = cast<CXXConversionDecl>(ConvTemplate->getTemplatedDecl());
3850 else
3851 Conv = cast<CXXConversionDecl>(D);
3852
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003853 // If this is an explicit conversion, and we're not allowed to consider
Douglas Gregor604eb652010-08-11 02:15:33 +00003854 // explicit conversions, skip it.
3855 if (!AllowExplicit && Conv->isExplicit())
3856 continue;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003857
Douglas Gregor604eb652010-08-11 02:15:33 +00003858 if (AllowRvalues) {
3859 bool DerivedToBase = false;
3860 bool ObjCConversion = false;
John McCallf85e1932011-06-15 23:02:42 +00003861 bool ObjCLifetimeConversion = false;
Douglas Gregor203050c2011-10-04 23:59:32 +00003862
3863 // If we are initializing an rvalue reference, don't permit conversion
3864 // functions that return lvalues.
3865 if (!ConvTemplate && DeclType->isRValueReferenceType()) {
3866 const ReferenceType *RefType
3867 = Conv->getConversionType()->getAs<LValueReferenceType>();
3868 if (RefType && !RefType->getPointeeType()->isFunctionType())
3869 continue;
3870 }
3871
Douglas Gregor604eb652010-08-11 02:15:33 +00003872 if (!ConvTemplate &&
Chandler Carruth6df868e2010-12-12 08:17:55 +00003873 S.CompareReferenceRelationship(
3874 DeclLoc,
3875 Conv->getConversionType().getNonReferenceType()
3876 .getUnqualifiedType(),
3877 DeclType.getNonReferenceType().getUnqualifiedType(),
John McCallf85e1932011-06-15 23:02:42 +00003878 DerivedToBase, ObjCConversion, ObjCLifetimeConversion) ==
Chandler Carruth6df868e2010-12-12 08:17:55 +00003879 Sema::Ref_Incompatible)
Douglas Gregor604eb652010-08-11 02:15:33 +00003880 continue;
3881 } else {
3882 // If the conversion function doesn't return a reference type,
3883 // it can't be considered for this conversion. An rvalue reference
3884 // is only acceptable if its referencee is a function type.
3885
3886 const ReferenceType *RefType =
3887 Conv->getConversionType()->getAs<ReferenceType>();
3888 if (!RefType ||
3889 (!RefType->isLValueReferenceType() &&
3890 !RefType->getPointeeType()->isFunctionType()))
3891 continue;
Sebastian Redl4680bf22010-06-30 18:13:39 +00003892 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003893
Douglas Gregor604eb652010-08-11 02:15:33 +00003894 if (ConvTemplate)
3895 S.AddTemplateConversionCandidate(ConvTemplate, I.getPair(), ActingDC,
Douglas Gregor8dde14e2011-01-24 16:14:37 +00003896 Init, DeclType, CandidateSet);
Douglas Gregor604eb652010-08-11 02:15:33 +00003897 else
3898 S.AddConversionCandidate(Conv, I.getPair(), ActingDC, Init,
Douglas Gregor8dde14e2011-01-24 16:14:37 +00003899 DeclType, CandidateSet);
Sebastian Redl4680bf22010-06-30 18:13:39 +00003900 }
3901
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00003902 bool HadMultipleCandidates = (CandidateSet.size() > 1);
3903
Sebastian Redl4680bf22010-06-30 18:13:39 +00003904 OverloadCandidateSet::iterator Best;
Douglas Gregor8fcc5162010-09-12 08:07:23 +00003905 switch (CandidateSet.BestViableFunction(S, DeclLoc, Best, true)) {
Sebastian Redl4680bf22010-06-30 18:13:39 +00003906 case OR_Success:
3907 // C++ [over.ics.ref]p1:
3908 //
3909 // [...] If the parameter binds directly to the result of
3910 // applying a conversion function to the argument
3911 // expression, the implicit conversion sequence is a
3912 // user-defined conversion sequence (13.3.3.1.2), with the
3913 // second standard conversion sequence either an identity
3914 // conversion or, if the conversion function returns an
3915 // entity of a type that is a derived class of the parameter
3916 // type, a derived-to-base Conversion.
3917 if (!Best->FinalConversion.DirectBinding)
3918 return false;
3919
Chandler Carruth25ca4212011-02-25 19:41:05 +00003920 if (Best->Function)
Eli Friedman5f2987c2012-02-02 03:46:19 +00003921 S.MarkFunctionReferenced(DeclLoc, Best->Function);
Sebastian Redl4680bf22010-06-30 18:13:39 +00003922 ICS.setUserDefined();
3923 ICS.UserDefined.Before = Best->Conversions[0].Standard;
3924 ICS.UserDefined.After = Best->FinalConversion;
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00003925 ICS.UserDefined.HadMultipleCandidates = HadMultipleCandidates;
Sebastian Redl4680bf22010-06-30 18:13:39 +00003926 ICS.UserDefined.ConversionFunction = Best->Function;
John McCallca82a822011-09-21 08:36:56 +00003927 ICS.UserDefined.FoundConversionFunction = Best->FoundDecl;
Sebastian Redl4680bf22010-06-30 18:13:39 +00003928 ICS.UserDefined.EllipsisConversion = false;
3929 assert(ICS.UserDefined.After.ReferenceBinding &&
3930 ICS.UserDefined.After.DirectBinding &&
3931 "Expected a direct reference binding!");
3932 return true;
3933
3934 case OR_Ambiguous:
3935 ICS.setAmbiguous();
3936 for (OverloadCandidateSet::iterator Cand = CandidateSet.begin();
3937 Cand != CandidateSet.end(); ++Cand)
3938 if (Cand->Viable)
3939 ICS.Ambiguous.addConversion(Cand->Function);
3940 return true;
3941
3942 case OR_No_Viable_Function:
3943 case OR_Deleted:
3944 // There was no suitable conversion, or we found a deleted
3945 // conversion; continue with other checks.
3946 return false;
3947 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00003948
David Blaikie7530c032012-01-17 06:56:22 +00003949 llvm_unreachable("Invalid OverloadResult!");
Sebastian Redl4680bf22010-06-30 18:13:39 +00003950}
3951
Douglas Gregorabe183d2010-04-13 16:31:36 +00003952/// \brief Compute an implicit conversion sequence for reference
3953/// initialization.
3954static ImplicitConversionSequence
Sebastian Redl1cdb70b2011-12-03 14:54:30 +00003955TryReferenceInit(Sema &S, Expr *Init, QualType DeclType,
Douglas Gregorabe183d2010-04-13 16:31:36 +00003956 SourceLocation DeclLoc,
3957 bool SuppressUserConversions,
Douglas Gregor23ef6c02010-04-16 17:45:54 +00003958 bool AllowExplicit) {
Douglas Gregorabe183d2010-04-13 16:31:36 +00003959 assert(DeclType->isReferenceType() && "Reference init needs a reference");
3960
3961 // Most paths end in a failed conversion.
3962 ImplicitConversionSequence ICS;
3963 ICS.setBad(BadConversionSequence::no_conversion, Init, DeclType);
3964
3965 QualType T1 = DeclType->getAs<ReferenceType>()->getPointeeType();
3966 QualType T2 = Init->getType();
3967
3968 // If the initializer is the address of an overloaded function, try
3969 // to resolve the overloaded function. If all goes well, T2 is the
3970 // type of the resulting function.
3971 if (S.Context.getCanonicalType(T2) == S.Context.OverloadTy) {
3972 DeclAccessPair Found;
3973 if (FunctionDecl *Fn = S.ResolveAddressOfOverloadedFunction(Init, DeclType,
3974 false, Found))
3975 T2 = Fn->getType();
3976 }
3977
3978 // Compute some basic properties of the types and the initializer.
3979 bool isRValRef = DeclType->isRValueReferenceType();
3980 bool DerivedToBase = false;
Douglas Gregor569c3162010-08-07 11:51:51 +00003981 bool ObjCConversion = false;
John McCallf85e1932011-06-15 23:02:42 +00003982 bool ObjCLifetimeConversion = false;
Sebastian Redl4680bf22010-06-30 18:13:39 +00003983 Expr::Classification InitCategory = Init->Classify(S.Context);
Douglas Gregorabe183d2010-04-13 16:31:36 +00003984 Sema::ReferenceCompareResult RefRelationship
Douglas Gregor569c3162010-08-07 11:51:51 +00003985 = S.CompareReferenceRelationship(DeclLoc, T1, T2, DerivedToBase,
John McCallf85e1932011-06-15 23:02:42 +00003986 ObjCConversion, ObjCLifetimeConversion);
Douglas Gregorabe183d2010-04-13 16:31:36 +00003987
Douglas Gregorabe183d2010-04-13 16:31:36 +00003988
Sebastian Redl4680bf22010-06-30 18:13:39 +00003989 // C++0x [dcl.init.ref]p5:
Douglas Gregor66821b52010-04-18 09:22:00 +00003990 // A reference to type "cv1 T1" is initialized by an expression
3991 // of type "cv2 T2" as follows:
3992
Sebastian Redl4680bf22010-06-30 18:13:39 +00003993 // -- If reference is an lvalue reference and the initializer expression
Douglas Gregor8dde14e2011-01-24 16:14:37 +00003994 if (!isRValRef) {
Sebastian Redl4680bf22010-06-30 18:13:39 +00003995 // -- is an lvalue (but is not a bit-field), and "cv1 T1" is
3996 // reference-compatible with "cv2 T2," or
3997 //
3998 // Per C++ [over.ics.ref]p4, we don't check the bit-field property here.
3999 if (InitCategory.isLValue() &&
4000 RefRelationship >= Sema::Ref_Compatible_With_Added_Qualification) {
Douglas Gregorabe183d2010-04-13 16:31:36 +00004001 // C++ [over.ics.ref]p1:
Sebastian Redl4680bf22010-06-30 18:13:39 +00004002 // When a parameter of reference type binds directly (8.5.3)
4003 // to an argument expression, the implicit conversion sequence
4004 // is the identity conversion, unless the argument expression
4005 // has a type that is a derived class of the parameter type,
4006 // in which case the implicit conversion sequence is a
4007 // derived-to-base Conversion (13.3.3.1).
4008 ICS.setStandard();
4009 ICS.Standard.First = ICK_Identity;
Douglas Gregor569c3162010-08-07 11:51:51 +00004010 ICS.Standard.Second = DerivedToBase? ICK_Derived_To_Base
4011 : ObjCConversion? ICK_Compatible_Conversion
4012 : ICK_Identity;
Sebastian Redl4680bf22010-06-30 18:13:39 +00004013 ICS.Standard.Third = ICK_Identity;
4014 ICS.Standard.FromTypePtr = T2.getAsOpaquePtr();
4015 ICS.Standard.setToType(0, T2);
4016 ICS.Standard.setToType(1, T1);
4017 ICS.Standard.setToType(2, T1);
4018 ICS.Standard.ReferenceBinding = true;
4019 ICS.Standard.DirectBinding = true;
Douglas Gregor440a4832011-01-26 14:52:12 +00004020 ICS.Standard.IsLvalueReference = !isRValRef;
4021 ICS.Standard.BindsToFunctionLvalue = T2->isFunctionType();
4022 ICS.Standard.BindsToRvalue = false;
Douglas Gregorfcab48b2011-01-26 19:41:18 +00004023 ICS.Standard.BindsImplicitObjectArgumentWithoutRefQualifier = false;
John McCallf85e1932011-06-15 23:02:42 +00004024 ICS.Standard.ObjCLifetimeConversionBinding = ObjCLifetimeConversion;
Sebastian Redl4680bf22010-06-30 18:13:39 +00004025 ICS.Standard.CopyConstructor = 0;
Douglas Gregorabe183d2010-04-13 16:31:36 +00004026
Sebastian Redl4680bf22010-06-30 18:13:39 +00004027 // Nothing more to do: the inaccessibility/ambiguity check for
4028 // derived-to-base conversions is suppressed when we're
4029 // computing the implicit conversion sequence (C++
4030 // [over.best.ics]p2).
Douglas Gregorabe183d2010-04-13 16:31:36 +00004031 return ICS;
Sebastian Redl4680bf22010-06-30 18:13:39 +00004032 }
Douglas Gregorabe183d2010-04-13 16:31:36 +00004033
Sebastian Redl4680bf22010-06-30 18:13:39 +00004034 // -- has a class type (i.e., T2 is a class type), where T1 is
4035 // not reference-related to T2, and can be implicitly
4036 // converted to an lvalue of type "cv3 T3," where "cv1 T1"
4037 // is reference-compatible with "cv3 T3" 92) (this
4038 // conversion is selected by enumerating the applicable
4039 // conversion functions (13.3.1.6) and choosing the best
4040 // one through overload resolution (13.3)),
4041 if (!SuppressUserConversions && T2->isRecordType() &&
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004042 !S.RequireCompleteType(DeclLoc, T2, 0) &&
Sebastian Redl4680bf22010-06-30 18:13:39 +00004043 RefRelationship == Sema::Ref_Incompatible) {
Douglas Gregor604eb652010-08-11 02:15:33 +00004044 if (FindConversionForRefInit(S, ICS, DeclType, DeclLoc,
4045 Init, T2, /*AllowRvalues=*/false,
4046 AllowExplicit))
Sebastian Redl4680bf22010-06-30 18:13:39 +00004047 return ICS;
Douglas Gregorabe183d2010-04-13 16:31:36 +00004048 }
4049 }
4050
Sebastian Redl4680bf22010-06-30 18:13:39 +00004051 // -- Otherwise, the reference shall be an lvalue reference to a
4052 // non-volatile const type (i.e., cv1 shall be const), or the reference
Douglas Gregor8dde14e2011-01-24 16:14:37 +00004053 // shall be an rvalue reference.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004054 //
Douglas Gregor66821b52010-04-18 09:22:00 +00004055 // We actually handle one oddity of C++ [over.ics.ref] at this
4056 // point, which is that, due to p2 (which short-circuits reference
4057 // binding by only attempting a simple conversion for non-direct
4058 // bindings) and p3's strange wording, we allow a const volatile
4059 // reference to bind to an rvalue. Hence the check for the presence
4060 // of "const" rather than checking for "const" being the only
4061 // qualifier.
Sebastian Redl4680bf22010-06-30 18:13:39 +00004062 // This is also the point where rvalue references and lvalue inits no longer
4063 // go together.
Douglas Gregor2ad746a2011-01-21 05:18:22 +00004064 if (!isRValRef && !T1.isConstQualified())
Douglas Gregorabe183d2010-04-13 16:31:36 +00004065 return ICS;
4066
Douglas Gregor8dde14e2011-01-24 16:14:37 +00004067 // -- If the initializer expression
4068 //
4069 // -- is an xvalue, class prvalue, array prvalue or function
John McCallf85e1932011-06-15 23:02:42 +00004070 // lvalue and "cv1 T1" is reference-compatible with "cv2 T2", or
Douglas Gregor8dde14e2011-01-24 16:14:37 +00004071 if (RefRelationship >= Sema::Ref_Compatible_With_Added_Qualification &&
4072 (InitCategory.isXValue() ||
4073 (InitCategory.isPRValue() && (T2->isRecordType() || T2->isArrayType())) ||
4074 (InitCategory.isLValue() && T2->isFunctionType()))) {
4075 ICS.setStandard();
4076 ICS.Standard.First = ICK_Identity;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004077 ICS.Standard.Second = DerivedToBase? ICK_Derived_To_Base
Douglas Gregor8dde14e2011-01-24 16:14:37 +00004078 : ObjCConversion? ICK_Compatible_Conversion
4079 : ICK_Identity;
4080 ICS.Standard.Third = ICK_Identity;
4081 ICS.Standard.FromTypePtr = T2.getAsOpaquePtr();
4082 ICS.Standard.setToType(0, T2);
4083 ICS.Standard.setToType(1, T1);
4084 ICS.Standard.setToType(2, T1);
4085 ICS.Standard.ReferenceBinding = true;
4086 // In C++0x, this is always a direct binding. In C++98/03, it's a direct
4087 // binding unless we're binding to a class prvalue.
4088 // Note: Although xvalues wouldn't normally show up in C++98/03 code, we
4089 // allow the use of rvalue references in C++98/03 for the benefit of
4090 // standard library implementors; therefore, we need the xvalue check here.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004091 ICS.Standard.DirectBinding =
4092 S.getLangOptions().CPlusPlus0x ||
Douglas Gregor8dde14e2011-01-24 16:14:37 +00004093 (InitCategory.isPRValue() && !T2->isRecordType());
Douglas Gregor440a4832011-01-26 14:52:12 +00004094 ICS.Standard.IsLvalueReference = !isRValRef;
4095 ICS.Standard.BindsToFunctionLvalue = T2->isFunctionType();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004096 ICS.Standard.BindsToRvalue = InitCategory.isRValue();
Douglas Gregorfcab48b2011-01-26 19:41:18 +00004097 ICS.Standard.BindsImplicitObjectArgumentWithoutRefQualifier = false;
John McCallf85e1932011-06-15 23:02:42 +00004098 ICS.Standard.ObjCLifetimeConversionBinding = ObjCLifetimeConversion;
Douglas Gregor8dde14e2011-01-24 16:14:37 +00004099 ICS.Standard.CopyConstructor = 0;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004100 return ICS;
Douglas Gregor8dde14e2011-01-24 16:14:37 +00004101 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004102
Douglas Gregor8dde14e2011-01-24 16:14:37 +00004103 // -- has a class type (i.e., T2 is a class type), where T1 is not
4104 // reference-related to T2, and can be implicitly converted to
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004105 // an xvalue, class prvalue, or function lvalue of type
4106 // "cv3 T3", where "cv1 T1" is reference-compatible with
Douglas Gregor8dde14e2011-01-24 16:14:37 +00004107 // "cv3 T3",
4108 //
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004109 // then the reference is bound to the value of the initializer
Douglas Gregor8dde14e2011-01-24 16:14:37 +00004110 // expression in the first case and to the result of the conversion
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004111 // in the second case (or, in either case, to an appropriate base
Douglas Gregor8dde14e2011-01-24 16:14:37 +00004112 // class subobject).
4113 if (!SuppressUserConversions && RefRelationship == Sema::Ref_Incompatible &&
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004114 T2->isRecordType() && !S.RequireCompleteType(DeclLoc, T2, 0) &&
Douglas Gregor8dde14e2011-01-24 16:14:37 +00004115 FindConversionForRefInit(S, ICS, DeclType, DeclLoc,
4116 Init, T2, /*AllowRvalues=*/true,
4117 AllowExplicit)) {
4118 // In the second case, if the reference is an rvalue reference
4119 // and the second standard conversion sequence of the
4120 // user-defined conversion sequence includes an lvalue-to-rvalue
4121 // conversion, the program is ill-formed.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004122 if (ICS.isUserDefined() && isRValRef &&
Douglas Gregor8dde14e2011-01-24 16:14:37 +00004123 ICS.UserDefined.After.First == ICK_Lvalue_To_Rvalue)
4124 ICS.setBad(BadConversionSequence::no_conversion, Init, DeclType);
4125
Douglas Gregor68ed68b2011-01-21 16:36:05 +00004126 return ICS;
Rafael Espindolaaa5952c2011-01-22 15:32:35 +00004127 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004128
Douglas Gregorabe183d2010-04-13 16:31:36 +00004129 // -- Otherwise, a temporary of type "cv1 T1" is created and
4130 // initialized from the initializer expression using the
4131 // rules for a non-reference copy initialization (8.5). The
4132 // reference is then bound to the temporary. If T1 is
4133 // reference-related to T2, cv1 must be the same
4134 // cv-qualification as, or greater cv-qualification than,
4135 // cv2; otherwise, the program is ill-formed.
4136 if (RefRelationship == Sema::Ref_Related) {
4137 // If cv1 == cv2 or cv1 is a greater cv-qualified than cv2, then
4138 // we would be reference-compatible or reference-compatible with
4139 // added qualification. But that wasn't the case, so the reference
4140 // initialization fails.
John McCallf85e1932011-06-15 23:02:42 +00004141 //
4142 // Note that we only want to check address spaces and cvr-qualifiers here.
4143 // ObjC GC and lifetime qualifiers aren't important.
4144 Qualifiers T1Quals = T1.getQualifiers();
4145 Qualifiers T2Quals = T2.getQualifiers();
4146 T1Quals.removeObjCGCAttr();
4147 T1Quals.removeObjCLifetime();
4148 T2Quals.removeObjCGCAttr();
4149 T2Quals.removeObjCLifetime();
4150 if (!T1Quals.compatiblyIncludes(T2Quals))
4151 return ICS;
Douglas Gregorabe183d2010-04-13 16:31:36 +00004152 }
4153
4154 // If at least one of the types is a class type, the types are not
4155 // related, and we aren't allowed any user conversions, the
4156 // reference binding fails. This case is important for breaking
4157 // recursion, since TryImplicitConversion below will attempt to
4158 // create a temporary through the use of a copy constructor.
4159 if (SuppressUserConversions && RefRelationship == Sema::Ref_Incompatible &&
4160 (T1->isRecordType() || T2->isRecordType()))
4161 return ICS;
4162
Douglas Gregor2ad746a2011-01-21 05:18:22 +00004163 // If T1 is reference-related to T2 and the reference is an rvalue
4164 // reference, the initializer expression shall not be an lvalue.
4165 if (RefRelationship >= Sema::Ref_Related &&
4166 isRValRef && Init->Classify(S.Context).isLValue())
4167 return ICS;
4168
Douglas Gregorabe183d2010-04-13 16:31:36 +00004169 // C++ [over.ics.ref]p2:
Douglas Gregorabe183d2010-04-13 16:31:36 +00004170 // When a parameter of reference type is not bound directly to
4171 // an argument expression, the conversion sequence is the one
4172 // required to convert the argument expression to the
4173 // underlying type of the reference according to
4174 // 13.3.3.1. Conceptually, this conversion sequence corresponds
4175 // to copy-initializing a temporary of the underlying type with
4176 // the argument expression. Any difference in top-level
4177 // cv-qualification is subsumed by the initialization itself
4178 // and does not constitute a conversion.
John McCall120d63c2010-08-24 20:38:10 +00004179 ICS = TryImplicitConversion(S, Init, T1, SuppressUserConversions,
4180 /*AllowExplicit=*/false,
Douglas Gregor14d0aee2011-01-27 00:58:17 +00004181 /*InOverloadResolution=*/false,
John McCallf85e1932011-06-15 23:02:42 +00004182 /*CStyle=*/false,
4183 /*AllowObjCWritebackConversion=*/false);
Douglas Gregorabe183d2010-04-13 16:31:36 +00004184
4185 // Of course, that's still a reference binding.
4186 if (ICS.isStandard()) {
4187 ICS.Standard.ReferenceBinding = true;
Douglas Gregor440a4832011-01-26 14:52:12 +00004188 ICS.Standard.IsLvalueReference = !isRValRef;
4189 ICS.Standard.BindsToFunctionLvalue = T2->isFunctionType();
4190 ICS.Standard.BindsToRvalue = true;
Douglas Gregorfcab48b2011-01-26 19:41:18 +00004191 ICS.Standard.BindsImplicitObjectArgumentWithoutRefQualifier = false;
John McCallf85e1932011-06-15 23:02:42 +00004192 ICS.Standard.ObjCLifetimeConversionBinding = false;
Douglas Gregorabe183d2010-04-13 16:31:36 +00004193 } else if (ICS.isUserDefined()) {
Douglas Gregor203050c2011-10-04 23:59:32 +00004194 // Don't allow rvalue references to bind to lvalues.
4195 if (DeclType->isRValueReferenceType()) {
4196 if (const ReferenceType *RefType
4197 = ICS.UserDefined.ConversionFunction->getResultType()
4198 ->getAs<LValueReferenceType>()) {
4199 if (!RefType->getPointeeType()->isFunctionType()) {
4200 ICS.setBad(BadConversionSequence::lvalue_ref_to_rvalue, Init,
4201 DeclType);
4202 return ICS;
4203 }
4204 }
4205 }
4206
Douglas Gregorabe183d2010-04-13 16:31:36 +00004207 ICS.UserDefined.After.ReferenceBinding = true;
Douglas Gregorf20d2722011-08-15 13:59:46 +00004208 ICS.UserDefined.After.IsLvalueReference = !isRValRef;
4209 ICS.UserDefined.After.BindsToFunctionLvalue = T2->isFunctionType();
4210 ICS.UserDefined.After.BindsToRvalue = true;
4211 ICS.UserDefined.After.BindsImplicitObjectArgumentWithoutRefQualifier = false;
4212 ICS.UserDefined.After.ObjCLifetimeConversionBinding = false;
Douglas Gregorabe183d2010-04-13 16:31:36 +00004213 }
Douglas Gregor2ad746a2011-01-21 05:18:22 +00004214
Douglas Gregorabe183d2010-04-13 16:31:36 +00004215 return ICS;
4216}
4217
Sebastian Redl5405b812011-10-16 18:19:34 +00004218static ImplicitConversionSequence
4219TryCopyInitialization(Sema &S, Expr *From, QualType ToType,
4220 bool SuppressUserConversions,
4221 bool InOverloadResolution,
Douglas Gregored878af2012-02-24 23:56:31 +00004222 bool AllowObjCWritebackConversion,
4223 bool AllowExplicit = false);
Sebastian Redl5405b812011-10-16 18:19:34 +00004224
4225/// TryListConversion - Try to copy-initialize a value of type ToType from the
4226/// initializer list From.
4227static ImplicitConversionSequence
4228TryListConversion(Sema &S, InitListExpr *From, QualType ToType,
4229 bool SuppressUserConversions,
4230 bool InOverloadResolution,
4231 bool AllowObjCWritebackConversion) {
4232 // C++11 [over.ics.list]p1:
4233 // When an argument is an initializer list, it is not an expression and
4234 // special rules apply for converting it to a parameter type.
4235
4236 ImplicitConversionSequence Result;
4237 Result.setBad(BadConversionSequence::no_conversion, From, ToType);
Sebastian Redlcc7a6482011-11-01 15:53:09 +00004238 Result.setListInitializationSequence();
Sebastian Redl5405b812011-10-16 18:19:34 +00004239
Sebastian Redlb832f6d2012-01-23 22:09:39 +00004240 // We need a complete type for what follows. Incomplete types can never be
Sebastian Redlfe592282012-01-17 22:49:48 +00004241 // initialized from init lists.
4242 if (S.RequireCompleteType(From->getLocStart(), ToType, S.PDiag()))
4243 return Result;
4244
Sebastian Redl5405b812011-10-16 18:19:34 +00004245 // C++11 [over.ics.list]p2:
4246 // If the parameter type is std::initializer_list<X> or "array of X" and
4247 // all the elements can be implicitly converted to X, the implicit
4248 // conversion sequence is the worst conversion necessary to convert an
4249 // element of the list to X.
Sebastian Redladfb5352012-02-27 22:38:26 +00004250 bool toStdInitializerList = false;
Sebastian Redlfe592282012-01-17 22:49:48 +00004251 QualType X;
Sebastian Redl5405b812011-10-16 18:19:34 +00004252 if (ToType->isArrayType())
Sebastian Redlfe592282012-01-17 22:49:48 +00004253 X = S.Context.getBaseElementType(ToType);
4254 else
Sebastian Redladfb5352012-02-27 22:38:26 +00004255 toStdInitializerList = S.isStdInitializerList(ToType, &X);
Sebastian Redlfe592282012-01-17 22:49:48 +00004256 if (!X.isNull()) {
4257 for (unsigned i = 0, e = From->getNumInits(); i < e; ++i) {
4258 Expr *Init = From->getInit(i);
4259 ImplicitConversionSequence ICS =
4260 TryCopyInitialization(S, Init, X, SuppressUserConversions,
4261 InOverloadResolution,
4262 AllowObjCWritebackConversion);
4263 // If a single element isn't convertible, fail.
4264 if (ICS.isBad()) {
4265 Result = ICS;
4266 break;
4267 }
4268 // Otherwise, look for the worst conversion.
4269 if (Result.isBad() ||
4270 CompareImplicitConversionSequences(S, ICS, Result) ==
4271 ImplicitConversionSequence::Worse)
4272 Result = ICS;
4273 }
4274 Result.setListInitializationSequence();
Sebastian Redladfb5352012-02-27 22:38:26 +00004275 Result.setStdInitializerListElement(toStdInitializerList);
Sebastian Redl5405b812011-10-16 18:19:34 +00004276 return Result;
Sebastian Redlfe592282012-01-17 22:49:48 +00004277 }
Sebastian Redl5405b812011-10-16 18:19:34 +00004278
4279 // C++11 [over.ics.list]p3:
4280 // Otherwise, if the parameter is a non-aggregate class X and overload
4281 // resolution chooses a single best constructor [...] the implicit
4282 // conversion sequence is a user-defined conversion sequence. If multiple
4283 // constructors are viable but none is better than the others, the
4284 // implicit conversion sequence is a user-defined conversion sequence.
Sebastian Redlcf15cef2011-12-22 18:58:38 +00004285 if (ToType->isRecordType() && !ToType->isAggregateType()) {
4286 // This function can deal with initializer lists.
4287 Result = TryUserDefinedConversion(S, From, ToType, SuppressUserConversions,
4288 /*AllowExplicit=*/false,
4289 InOverloadResolution, /*CStyle=*/false,
4290 AllowObjCWritebackConversion);
4291 Result.setListInitializationSequence();
Sebastian Redl5405b812011-10-16 18:19:34 +00004292 return Result;
Sebastian Redlcf15cef2011-12-22 18:58:38 +00004293 }
Sebastian Redl5405b812011-10-16 18:19:34 +00004294
4295 // C++11 [over.ics.list]p4:
4296 // Otherwise, if the parameter has an aggregate type which can be
4297 // initialized from the initializer list [...] the implicit conversion
4298 // sequence is a user-defined conversion sequence.
Sebastian Redl5405b812011-10-16 18:19:34 +00004299 if (ToType->isAggregateType()) {
Sebastian Redlcc7a6482011-11-01 15:53:09 +00004300 // Type is an aggregate, argument is an init list. At this point it comes
4301 // down to checking whether the initialization works.
4302 // FIXME: Find out whether this parameter is consumed or not.
4303 InitializedEntity Entity =
4304 InitializedEntity::InitializeParameter(S.Context, ToType,
4305 /*Consumed=*/false);
4306 if (S.CanPerformCopyInitialization(Entity, S.Owned(From))) {
4307 Result.setUserDefined();
4308 Result.UserDefined.Before.setAsIdentityConversion();
4309 // Initializer lists don't have a type.
4310 Result.UserDefined.Before.setFromType(QualType());
4311 Result.UserDefined.Before.setAllToTypes(QualType());
4312
4313 Result.UserDefined.After.setAsIdentityConversion();
4314 Result.UserDefined.After.setFromType(ToType);
4315 Result.UserDefined.After.setAllToTypes(ToType);
Benjamin Kramer83db10e2012-02-02 19:35:29 +00004316 Result.UserDefined.ConversionFunction = 0;
Sebastian Redlcc7a6482011-11-01 15:53:09 +00004317 }
Sebastian Redl5405b812011-10-16 18:19:34 +00004318 return Result;
4319 }
4320
4321 // C++11 [over.ics.list]p5:
4322 // Otherwise, if the parameter is a reference, see 13.3.3.1.4.
Sebastian Redl1cdb70b2011-12-03 14:54:30 +00004323 if (ToType->isReferenceType()) {
4324 // The standard is notoriously unclear here, since 13.3.3.1.4 doesn't
4325 // mention initializer lists in any way. So we go by what list-
4326 // initialization would do and try to extrapolate from that.
4327
4328 QualType T1 = ToType->getAs<ReferenceType>()->getPointeeType();
4329
4330 // If the initializer list has a single element that is reference-related
4331 // to the parameter type, we initialize the reference from that.
4332 if (From->getNumInits() == 1) {
4333 Expr *Init = From->getInit(0);
4334
4335 QualType T2 = Init->getType();
4336
4337 // If the initializer is the address of an overloaded function, try
4338 // to resolve the overloaded function. If all goes well, T2 is the
4339 // type of the resulting function.
4340 if (S.Context.getCanonicalType(T2) == S.Context.OverloadTy) {
4341 DeclAccessPair Found;
4342 if (FunctionDecl *Fn = S.ResolveAddressOfOverloadedFunction(
4343 Init, ToType, false, Found))
4344 T2 = Fn->getType();
4345 }
4346
4347 // Compute some basic properties of the types and the initializer.
4348 bool dummy1 = false;
4349 bool dummy2 = false;
4350 bool dummy3 = false;
4351 Sema::ReferenceCompareResult RefRelationship
4352 = S.CompareReferenceRelationship(From->getLocStart(), T1, T2, dummy1,
4353 dummy2, dummy3);
4354
4355 if (RefRelationship >= Sema::Ref_Related)
4356 return TryReferenceInit(S, Init, ToType,
4357 /*FIXME:*/From->getLocStart(),
4358 SuppressUserConversions,
4359 /*AllowExplicit=*/false);
4360 }
4361
4362 // Otherwise, we bind the reference to a temporary created from the
4363 // initializer list.
4364 Result = TryListConversion(S, From, T1, SuppressUserConversions,
4365 InOverloadResolution,
4366 AllowObjCWritebackConversion);
4367 if (Result.isFailure())
4368 return Result;
4369 assert(!Result.isEllipsis() &&
4370 "Sub-initialization cannot result in ellipsis conversion.");
4371
4372 // Can we even bind to a temporary?
4373 if (ToType->isRValueReferenceType() ||
4374 (T1.isConstQualified() && !T1.isVolatileQualified())) {
4375 StandardConversionSequence &SCS = Result.isStandard() ? Result.Standard :
4376 Result.UserDefined.After;
4377 SCS.ReferenceBinding = true;
4378 SCS.IsLvalueReference = ToType->isLValueReferenceType();
4379 SCS.BindsToRvalue = true;
4380 SCS.BindsToFunctionLvalue = false;
4381 SCS.BindsImplicitObjectArgumentWithoutRefQualifier = false;
4382 SCS.ObjCLifetimeConversionBinding = false;
4383 } else
4384 Result.setBad(BadConversionSequence::lvalue_ref_to_rvalue,
4385 From, ToType);
Sebastian Redl5405b812011-10-16 18:19:34 +00004386 return Result;
Sebastian Redl1cdb70b2011-12-03 14:54:30 +00004387 }
Sebastian Redl5405b812011-10-16 18:19:34 +00004388
4389 // C++11 [over.ics.list]p6:
4390 // Otherwise, if the parameter type is not a class:
4391 if (!ToType->isRecordType()) {
4392 // - if the initializer list has one element, the implicit conversion
4393 // sequence is the one required to convert the element to the
4394 // parameter type.
Sebastian Redl5405b812011-10-16 18:19:34 +00004395 unsigned NumInits = From->getNumInits();
4396 if (NumInits == 1)
4397 Result = TryCopyInitialization(S, From->getInit(0), ToType,
4398 SuppressUserConversions,
4399 InOverloadResolution,
4400 AllowObjCWritebackConversion);
4401 // - if the initializer list has no elements, the implicit conversion
4402 // sequence is the identity conversion.
4403 else if (NumInits == 0) {
4404 Result.setStandard();
4405 Result.Standard.setAsIdentityConversion();
4406 }
Sebastian Redl2422e822012-02-28 23:36:38 +00004407 Result.setListInitializationSequence();
Sebastian Redl5405b812011-10-16 18:19:34 +00004408 return Result;
4409 }
4410
4411 // C++11 [over.ics.list]p7:
4412 // In all cases other than those enumerated above, no conversion is possible
4413 return Result;
4414}
4415
Douglas Gregor27c8dc02008-10-29 00:13:59 +00004416/// TryCopyInitialization - Try to copy-initialize a value of type
4417/// ToType from the expression From. Return the implicit conversion
4418/// sequence required to pass this argument, which may be a bad
4419/// conversion sequence (meaning that the argument cannot be passed to
Douglas Gregor225c41e2008-11-03 19:09:14 +00004420/// a parameter of this type). If @p SuppressUserConversions, then we
Douglas Gregor74e386e2010-04-16 18:00:29 +00004421/// do not permit any user-defined conversion sequences.
Douglas Gregor74eb6582010-04-16 17:51:22 +00004422static ImplicitConversionSequence
4423TryCopyInitialization(Sema &S, Expr *From, QualType ToType,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004424 bool SuppressUserConversions,
John McCallf85e1932011-06-15 23:02:42 +00004425 bool InOverloadResolution,
Douglas Gregored878af2012-02-24 23:56:31 +00004426 bool AllowObjCWritebackConversion,
4427 bool AllowExplicit) {
Sebastian Redl5405b812011-10-16 18:19:34 +00004428 if (InitListExpr *FromInitList = dyn_cast<InitListExpr>(From))
4429 return TryListConversion(S, FromInitList, ToType, SuppressUserConversions,
4430 InOverloadResolution,AllowObjCWritebackConversion);
4431
Douglas Gregorabe183d2010-04-13 16:31:36 +00004432 if (ToType->isReferenceType())
Douglas Gregor74eb6582010-04-16 17:51:22 +00004433 return TryReferenceInit(S, From, ToType,
Douglas Gregorabe183d2010-04-13 16:31:36 +00004434 /*FIXME:*/From->getLocStart(),
4435 SuppressUserConversions,
Douglas Gregored878af2012-02-24 23:56:31 +00004436 AllowExplicit);
Douglas Gregorabe183d2010-04-13 16:31:36 +00004437
John McCall120d63c2010-08-24 20:38:10 +00004438 return TryImplicitConversion(S, From, ToType,
4439 SuppressUserConversions,
4440 /*AllowExplicit=*/false,
Douglas Gregor14d0aee2011-01-27 00:58:17 +00004441 InOverloadResolution,
John McCallf85e1932011-06-15 23:02:42 +00004442 /*CStyle=*/false,
4443 AllowObjCWritebackConversion);
Douglas Gregor27c8dc02008-10-29 00:13:59 +00004444}
4445
Anna Zaksf3546ee2011-07-28 19:46:48 +00004446static bool TryCopyInitialization(const CanQualType FromQTy,
4447 const CanQualType ToQTy,
4448 Sema &S,
4449 SourceLocation Loc,
4450 ExprValueKind FromVK) {
4451 OpaqueValueExpr TmpExpr(Loc, FromQTy, FromVK);
4452 ImplicitConversionSequence ICS =
4453 TryCopyInitialization(S, &TmpExpr, ToQTy, true, true, false);
4454
4455 return !ICS.isBad();
4456}
4457
Douglas Gregor96176b32008-11-18 23:14:02 +00004458/// TryObjectArgumentInitialization - Try to initialize the object
4459/// parameter of the given member function (@c Method) from the
4460/// expression @p From.
John McCall120d63c2010-08-24 20:38:10 +00004461static ImplicitConversionSequence
4462TryObjectArgumentInitialization(Sema &S, QualType OrigFromType,
Douglas Gregor2c9a03f2011-01-26 19:30:28 +00004463 Expr::Classification FromClassification,
John McCall120d63c2010-08-24 20:38:10 +00004464 CXXMethodDecl *Method,
4465 CXXRecordDecl *ActingContext) {
4466 QualType ClassType = S.Context.getTypeDeclType(ActingContext);
Sebastian Redl65bdbfa2009-11-18 20:55:52 +00004467 // [class.dtor]p2: A destructor can be invoked for a const, volatile or
4468 // const volatile object.
4469 unsigned Quals = isa<CXXDestructorDecl>(Method) ?
4470 Qualifiers::Const | Qualifiers::Volatile : Method->getTypeQualifiers();
John McCall120d63c2010-08-24 20:38:10 +00004471 QualType ImplicitParamType = S.Context.getCVRQualifiedType(ClassType, Quals);
Douglas Gregor96176b32008-11-18 23:14:02 +00004472
4473 // Set up the conversion sequence as a "bad" conversion, to allow us
4474 // to exit early.
4475 ImplicitConversionSequence ICS;
Douglas Gregor96176b32008-11-18 23:14:02 +00004476
4477 // We need to have an object of class type.
John McCall651f3ee2010-01-14 03:28:57 +00004478 QualType FromType = OrigFromType;
Douglas Gregor2c9a03f2011-01-26 19:30:28 +00004479 if (const PointerType *PT = FromType->getAs<PointerType>()) {
Anders Carlssona552f7c2009-05-01 18:34:30 +00004480 FromType = PT->getPointeeType();
4481
Douglas Gregor2c9a03f2011-01-26 19:30:28 +00004482 // When we had a pointer, it's implicitly dereferenced, so we
4483 // better have an lvalue.
4484 assert(FromClassification.isLValue());
4485 }
4486
Anders Carlssona552f7c2009-05-01 18:34:30 +00004487 assert(FromType->isRecordType());
Douglas Gregor96176b32008-11-18 23:14:02 +00004488
Douglas Gregor2c9a03f2011-01-26 19:30:28 +00004489 // C++0x [over.match.funcs]p4:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004490 // For non-static member functions, the type of the implicit object
Douglas Gregor2c9a03f2011-01-26 19:30:28 +00004491 // parameter is
4492 //
NAKAMURA Takumi00995302011-01-27 07:09:49 +00004493 // - "lvalue reference to cv X" for functions declared without a
4494 // ref-qualifier or with the & ref-qualifier
4495 // - "rvalue reference to cv X" for functions declared with the &&
Douglas Gregor2c9a03f2011-01-26 19:30:28 +00004496 // ref-qualifier
4497 //
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004498 // where X is the class of which the function is a member and cv is the
Douglas Gregor2c9a03f2011-01-26 19:30:28 +00004499 // cv-qualification on the member function declaration.
4500 //
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004501 // However, when finding an implicit conversion sequence for the argument, we
Douglas Gregor2c9a03f2011-01-26 19:30:28 +00004502 // are not allowed to create temporaries or perform user-defined conversions
Douglas Gregor96176b32008-11-18 23:14:02 +00004503 // (C++ [over.match.funcs]p5). We perform a simplified version of
4504 // reference binding here, that allows class rvalues to bind to
4505 // non-constant references.
4506
Douglas Gregor2c9a03f2011-01-26 19:30:28 +00004507 // First check the qualifiers.
John McCall120d63c2010-08-24 20:38:10 +00004508 QualType FromTypeCanon = S.Context.getCanonicalType(FromType);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004509 if (ImplicitParamType.getCVRQualifiers()
Douglas Gregora4923eb2009-11-16 21:35:15 +00004510 != FromTypeCanon.getLocalCVRQualifiers() &&
John McCalladbb8f82010-01-13 09:16:55 +00004511 !ImplicitParamType.isAtLeastAsQualifiedAs(FromTypeCanon)) {
John McCallb1bdc622010-02-25 01:37:24 +00004512 ICS.setBad(BadConversionSequence::bad_qualifiers,
4513 OrigFromType, ImplicitParamType);
Douglas Gregor96176b32008-11-18 23:14:02 +00004514 return ICS;
John McCalladbb8f82010-01-13 09:16:55 +00004515 }
Douglas Gregor96176b32008-11-18 23:14:02 +00004516
4517 // Check that we have either the same type or a derived type. It
4518 // affects the conversion rank.
John McCall120d63c2010-08-24 20:38:10 +00004519 QualType ClassTypeCanon = S.Context.getCanonicalType(ClassType);
John McCallb1bdc622010-02-25 01:37:24 +00004520 ImplicitConversionKind SecondKind;
4521 if (ClassTypeCanon == FromTypeCanon.getLocalUnqualifiedType()) {
4522 SecondKind = ICK_Identity;
John McCall120d63c2010-08-24 20:38:10 +00004523 } else if (S.IsDerivedFrom(FromType, ClassType))
John McCallb1bdc622010-02-25 01:37:24 +00004524 SecondKind = ICK_Derived_To_Base;
John McCalladbb8f82010-01-13 09:16:55 +00004525 else {
John McCallb1bdc622010-02-25 01:37:24 +00004526 ICS.setBad(BadConversionSequence::unrelated_class,
4527 FromType, ImplicitParamType);
Douglas Gregor96176b32008-11-18 23:14:02 +00004528 return ICS;
John McCalladbb8f82010-01-13 09:16:55 +00004529 }
Douglas Gregor96176b32008-11-18 23:14:02 +00004530
Douglas Gregor2c9a03f2011-01-26 19:30:28 +00004531 // Check the ref-qualifier.
4532 switch (Method->getRefQualifier()) {
4533 case RQ_None:
4534 // Do nothing; we don't care about lvalueness or rvalueness.
4535 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004536
Douglas Gregor2c9a03f2011-01-26 19:30:28 +00004537 case RQ_LValue:
4538 if (!FromClassification.isLValue() && Quals != Qualifiers::Const) {
4539 // non-const lvalue reference cannot bind to an rvalue
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004540 ICS.setBad(BadConversionSequence::lvalue_ref_to_rvalue, FromType,
Douglas Gregor2c9a03f2011-01-26 19:30:28 +00004541 ImplicitParamType);
4542 return ICS;
4543 }
4544 break;
4545
4546 case RQ_RValue:
4547 if (!FromClassification.isRValue()) {
4548 // rvalue reference cannot bind to an lvalue
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004549 ICS.setBad(BadConversionSequence::rvalue_ref_to_lvalue, FromType,
Douglas Gregor2c9a03f2011-01-26 19:30:28 +00004550 ImplicitParamType);
4551 return ICS;
4552 }
4553 break;
4554 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004555
Douglas Gregor96176b32008-11-18 23:14:02 +00004556 // Success. Mark this as a reference binding.
John McCall1d318332010-01-12 00:44:57 +00004557 ICS.setStandard();
John McCallb1bdc622010-02-25 01:37:24 +00004558 ICS.Standard.setAsIdentityConversion();
4559 ICS.Standard.Second = SecondKind;
John McCall1d318332010-01-12 00:44:57 +00004560 ICS.Standard.setFromType(FromType);
Douglas Gregorad323a82010-01-27 03:51:04 +00004561 ICS.Standard.setAllToTypes(ImplicitParamType);
Douglas Gregor96176b32008-11-18 23:14:02 +00004562 ICS.Standard.ReferenceBinding = true;
4563 ICS.Standard.DirectBinding = true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004564 ICS.Standard.IsLvalueReference = Method->getRefQualifier() != RQ_RValue;
Douglas Gregor440a4832011-01-26 14:52:12 +00004565 ICS.Standard.BindsToFunctionLvalue = false;
Douglas Gregorfcab48b2011-01-26 19:41:18 +00004566 ICS.Standard.BindsToRvalue = FromClassification.isRValue();
4567 ICS.Standard.BindsImplicitObjectArgumentWithoutRefQualifier
4568 = (Method->getRefQualifier() == RQ_None);
Douglas Gregor96176b32008-11-18 23:14:02 +00004569 return ICS;
4570}
4571
4572/// PerformObjectArgumentInitialization - Perform initialization of
4573/// the implicit object parameter for the given Method with the given
4574/// expression.
John Wiegley429bb272011-04-08 18:41:53 +00004575ExprResult
4576Sema::PerformObjectArgumentInitialization(Expr *From,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004577 NestedNameSpecifier *Qualifier,
John McCall6bb80172010-03-30 21:47:33 +00004578 NamedDecl *FoundDecl,
Douglas Gregor5fccd362010-03-03 23:55:11 +00004579 CXXMethodDecl *Method) {
Anders Carlssona552f7c2009-05-01 18:34:30 +00004580 QualType FromRecordType, DestType;
Mike Stump1eb44332009-09-09 15:08:12 +00004581 QualType ImplicitParamRecordType =
Ted Kremenek6217b802009-07-29 21:53:49 +00004582 Method->getThisType(Context)->getAs<PointerType>()->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +00004583
Douglas Gregor2c9a03f2011-01-26 19:30:28 +00004584 Expr::Classification FromClassification;
Ted Kremenek6217b802009-07-29 21:53:49 +00004585 if (const PointerType *PT = From->getType()->getAs<PointerType>()) {
Anders Carlssona552f7c2009-05-01 18:34:30 +00004586 FromRecordType = PT->getPointeeType();
4587 DestType = Method->getThisType(Context);
Douglas Gregor2c9a03f2011-01-26 19:30:28 +00004588 FromClassification = Expr::Classification::makeSimpleLValue();
Anders Carlssona552f7c2009-05-01 18:34:30 +00004589 } else {
4590 FromRecordType = From->getType();
4591 DestType = ImplicitParamRecordType;
Douglas Gregor2c9a03f2011-01-26 19:30:28 +00004592 FromClassification = From->Classify(Context);
Anders Carlssona552f7c2009-05-01 18:34:30 +00004593 }
4594
John McCall701c89e2009-12-03 04:06:58 +00004595 // Note that we always use the true parent context when performing
4596 // the actual argument initialization.
Mike Stump1eb44332009-09-09 15:08:12 +00004597 ImplicitConversionSequence ICS
Douglas Gregor2c9a03f2011-01-26 19:30:28 +00004598 = TryObjectArgumentInitialization(*this, From->getType(), FromClassification,
4599 Method, Method->getParent());
Argyrios Kyrtzidis64ccf242010-11-16 08:04:45 +00004600 if (ICS.isBad()) {
4601 if (ICS.Bad.Kind == BadConversionSequence::bad_qualifiers) {
4602 Qualifiers FromQs = FromRecordType.getQualifiers();
4603 Qualifiers ToQs = DestType.getQualifiers();
4604 unsigned CVR = FromQs.getCVRQualifiers() & ~ToQs.getCVRQualifiers();
4605 if (CVR) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00004606 Diag(From->getLocStart(),
Argyrios Kyrtzidis64ccf242010-11-16 08:04:45 +00004607 diag::err_member_function_call_bad_cvr)
4608 << Method->getDeclName() << FromRecordType << (CVR - 1)
4609 << From->getSourceRange();
4610 Diag(Method->getLocation(), diag::note_previous_decl)
4611 << Method->getDeclName();
John Wiegley429bb272011-04-08 18:41:53 +00004612 return ExprError();
Argyrios Kyrtzidis64ccf242010-11-16 08:04:45 +00004613 }
4614 }
4615
Daniel Dunbar96a00142012-03-09 18:35:03 +00004616 return Diag(From->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004617 diag::err_implicit_object_parameter_init)
Anders Carlssona552f7c2009-05-01 18:34:30 +00004618 << ImplicitParamRecordType << FromRecordType << From->getSourceRange();
Argyrios Kyrtzidis64ccf242010-11-16 08:04:45 +00004619 }
Mike Stump1eb44332009-09-09 15:08:12 +00004620
John Wiegley429bb272011-04-08 18:41:53 +00004621 if (ICS.Standard.Second == ICK_Derived_To_Base) {
4622 ExprResult FromRes =
4623 PerformObjectMemberConversion(From, Qualifier, FoundDecl, Method);
4624 if (FromRes.isInvalid())
4625 return ExprError();
4626 From = FromRes.take();
4627 }
Douglas Gregor96176b32008-11-18 23:14:02 +00004628
Douglas Gregor5fccd362010-03-03 23:55:11 +00004629 if (!Context.hasSameType(From->getType(), DestType))
John Wiegley429bb272011-04-08 18:41:53 +00004630 From = ImpCastExprToType(From, DestType, CK_NoOp,
Richard Smithacdfa4d2011-11-10 23:32:36 +00004631 From->getValueKind()).take();
John Wiegley429bb272011-04-08 18:41:53 +00004632 return Owned(From);
Douglas Gregor96176b32008-11-18 23:14:02 +00004633}
4634
Douglas Gregor09f41cf2009-01-14 15:45:31 +00004635/// TryContextuallyConvertToBool - Attempt to contextually convert the
4636/// expression From to bool (C++0x [conv]p3).
John McCall120d63c2010-08-24 20:38:10 +00004637static ImplicitConversionSequence
4638TryContextuallyConvertToBool(Sema &S, Expr *From) {
Douglas Gregorc6dfe192010-05-08 22:41:50 +00004639 // FIXME: This is pretty broken.
John McCall120d63c2010-08-24 20:38:10 +00004640 return TryImplicitConversion(S, From, S.Context.BoolTy,
Anders Carlssonda7a18b2009-08-27 17:24:15 +00004641 // FIXME: Are these flags correct?
4642 /*SuppressUserConversions=*/false,
Mike Stump1eb44332009-09-09 15:08:12 +00004643 /*AllowExplicit=*/true,
Douglas Gregor14d0aee2011-01-27 00:58:17 +00004644 /*InOverloadResolution=*/false,
John McCallf85e1932011-06-15 23:02:42 +00004645 /*CStyle=*/false,
4646 /*AllowObjCWritebackConversion=*/false);
Douglas Gregor09f41cf2009-01-14 15:45:31 +00004647}
4648
4649/// PerformContextuallyConvertToBool - Perform a contextual conversion
4650/// of the expression From to bool (C++0x [conv]p3).
John Wiegley429bb272011-04-08 18:41:53 +00004651ExprResult Sema::PerformContextuallyConvertToBool(Expr *From) {
John McCall3c3b7f92011-10-25 17:37:35 +00004652 if (checkPlaceholderForOverload(*this, From))
4653 return ExprError();
4654
John McCall120d63c2010-08-24 20:38:10 +00004655 ImplicitConversionSequence ICS = TryContextuallyConvertToBool(*this, From);
John McCall1d318332010-01-12 00:44:57 +00004656 if (!ICS.isBad())
4657 return PerformImplicitConversion(From, Context.BoolTy, ICS, AA_Converting);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004658
Fariborz Jahaniancc5306a2009-11-18 18:26:29 +00004659 if (!DiagnoseMultipleUserDefinedConversion(From, Context.BoolTy))
Daniel Dunbar96a00142012-03-09 18:35:03 +00004660 return Diag(From->getLocStart(),
John McCall864c0412011-04-26 20:42:42 +00004661 diag::err_typecheck_bool_condition)
Fariborz Jahanian17c7a5d2009-09-22 20:24:30 +00004662 << From->getType() << From->getSourceRange();
John Wiegley429bb272011-04-08 18:41:53 +00004663 return ExprError();
Douglas Gregor09f41cf2009-01-14 15:45:31 +00004664}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004665
Richard Smith8ef7b202012-01-18 23:55:52 +00004666/// Check that the specified conversion is permitted in a converted constant
4667/// expression, according to C++11 [expr.const]p3. Return true if the conversion
4668/// is acceptable.
4669static bool CheckConvertedConstantConversions(Sema &S,
4670 StandardConversionSequence &SCS) {
4671 // Since we know that the target type is an integral or unscoped enumeration
4672 // type, most conversion kinds are impossible. All possible First and Third
4673 // conversions are fine.
4674 switch (SCS.Second) {
4675 case ICK_Identity:
4676 case ICK_Integral_Promotion:
4677 case ICK_Integral_Conversion:
4678 return true;
4679
4680 case ICK_Boolean_Conversion:
4681 // Conversion from an integral or unscoped enumeration type to bool is
4682 // classified as ICK_Boolean_Conversion, but it's also an integral
4683 // conversion, so it's permitted in a converted constant expression.
4684 return SCS.getFromType()->isIntegralOrUnscopedEnumerationType() &&
4685 SCS.getToType(2)->isBooleanType();
4686
4687 case ICK_Floating_Integral:
4688 case ICK_Complex_Real:
4689 return false;
4690
4691 case ICK_Lvalue_To_Rvalue:
4692 case ICK_Array_To_Pointer:
4693 case ICK_Function_To_Pointer:
4694 case ICK_NoReturn_Adjustment:
4695 case ICK_Qualification:
4696 case ICK_Compatible_Conversion:
4697 case ICK_Vector_Conversion:
4698 case ICK_Vector_Splat:
4699 case ICK_Derived_To_Base:
4700 case ICK_Pointer_Conversion:
4701 case ICK_Pointer_Member:
4702 case ICK_Block_Pointer_Conversion:
4703 case ICK_Writeback_Conversion:
4704 case ICK_Floating_Promotion:
4705 case ICK_Complex_Promotion:
4706 case ICK_Complex_Conversion:
4707 case ICK_Floating_Conversion:
4708 case ICK_TransparentUnionConversion:
4709 llvm_unreachable("unexpected second conversion kind");
4710
4711 case ICK_Num_Conversion_Kinds:
4712 break;
4713 }
4714
4715 llvm_unreachable("unknown conversion kind");
4716}
4717
4718/// CheckConvertedConstantExpression - Check that the expression From is a
4719/// converted constant expression of type T, perform the conversion and produce
4720/// the converted expression, per C++11 [expr.const]p3.
4721ExprResult Sema::CheckConvertedConstantExpression(Expr *From, QualType T,
4722 llvm::APSInt &Value,
4723 CCEKind CCE) {
4724 assert(LangOpts.CPlusPlus0x && "converted constant expression outside C++11");
4725 assert(T->isIntegralOrEnumerationType() && "unexpected converted const type");
4726
4727 if (checkPlaceholderForOverload(*this, From))
4728 return ExprError();
4729
4730 // C++11 [expr.const]p3 with proposed wording fixes:
4731 // A converted constant expression of type T is a core constant expression,
4732 // implicitly converted to a prvalue of type T, where the converted
4733 // expression is a literal constant expression and the implicit conversion
4734 // sequence contains only user-defined conversions, lvalue-to-rvalue
4735 // conversions, integral promotions, and integral conversions other than
4736 // narrowing conversions.
4737 ImplicitConversionSequence ICS =
4738 TryImplicitConversion(From, T,
4739 /*SuppressUserConversions=*/false,
4740 /*AllowExplicit=*/false,
4741 /*InOverloadResolution=*/false,
4742 /*CStyle=*/false,
4743 /*AllowObjcWritebackConversion=*/false);
4744 StandardConversionSequence *SCS = 0;
4745 switch (ICS.getKind()) {
4746 case ImplicitConversionSequence::StandardConversion:
4747 if (!CheckConvertedConstantConversions(*this, ICS.Standard))
Daniel Dunbar96a00142012-03-09 18:35:03 +00004748 return Diag(From->getLocStart(),
Richard Smith8ef7b202012-01-18 23:55:52 +00004749 diag::err_typecheck_converted_constant_expression_disallowed)
4750 << From->getType() << From->getSourceRange() << T;
4751 SCS = &ICS.Standard;
4752 break;
4753 case ImplicitConversionSequence::UserDefinedConversion:
4754 // We are converting from class type to an integral or enumeration type, so
4755 // the Before sequence must be trivial.
4756 if (!CheckConvertedConstantConversions(*this, ICS.UserDefined.After))
Daniel Dunbar96a00142012-03-09 18:35:03 +00004757 return Diag(From->getLocStart(),
Richard Smith8ef7b202012-01-18 23:55:52 +00004758 diag::err_typecheck_converted_constant_expression_disallowed)
4759 << From->getType() << From->getSourceRange() << T;
4760 SCS = &ICS.UserDefined.After;
4761 break;
4762 case ImplicitConversionSequence::AmbiguousConversion:
4763 case ImplicitConversionSequence::BadConversion:
4764 if (!DiagnoseMultipleUserDefinedConversion(From, T))
Daniel Dunbar96a00142012-03-09 18:35:03 +00004765 return Diag(From->getLocStart(),
Richard Smith8ef7b202012-01-18 23:55:52 +00004766 diag::err_typecheck_converted_constant_expression)
4767 << From->getType() << From->getSourceRange() << T;
4768 return ExprError();
4769
4770 case ImplicitConversionSequence::EllipsisConversion:
4771 llvm_unreachable("ellipsis conversion in converted constant expression");
4772 }
4773
4774 ExprResult Result = PerformImplicitConversion(From, T, ICS, AA_Converting);
4775 if (Result.isInvalid())
4776 return Result;
4777
4778 // Check for a narrowing implicit conversion.
4779 APValue PreNarrowingValue;
Richard Smithf72fccf2012-01-30 22:27:01 +00004780 bool Diagnosed = false;
Richard Smith8ef7b202012-01-18 23:55:52 +00004781 switch (SCS->getNarrowingKind(Context, Result.get(), PreNarrowingValue)) {
4782 case NK_Variable_Narrowing:
4783 // Implicit conversion to a narrower type, and the value is not a constant
4784 // expression. We'll diagnose this in a moment.
4785 case NK_Not_Narrowing:
4786 break;
4787
4788 case NK_Constant_Narrowing:
Daniel Dunbar96a00142012-03-09 18:35:03 +00004789 Diag(From->getLocStart(), diag::err_cce_narrowing)
Richard Smith8ef7b202012-01-18 23:55:52 +00004790 << CCE << /*Constant*/1
4791 << PreNarrowingValue.getAsString(Context, QualType()) << T;
Richard Smithf72fccf2012-01-30 22:27:01 +00004792 Diagnosed = true;
Richard Smith8ef7b202012-01-18 23:55:52 +00004793 break;
4794
4795 case NK_Type_Narrowing:
Daniel Dunbar96a00142012-03-09 18:35:03 +00004796 Diag(From->getLocStart(), diag::err_cce_narrowing)
Richard Smith8ef7b202012-01-18 23:55:52 +00004797 << CCE << /*Constant*/0 << From->getType() << T;
Richard Smithf72fccf2012-01-30 22:27:01 +00004798 Diagnosed = true;
Richard Smith8ef7b202012-01-18 23:55:52 +00004799 break;
4800 }
4801
4802 // Check the expression is a constant expression.
4803 llvm::SmallVector<PartialDiagnosticAt, 8> Notes;
4804 Expr::EvalResult Eval;
4805 Eval.Diag = &Notes;
4806
4807 if (!Result.get()->EvaluateAsRValue(Eval, Context)) {
4808 // The expression can't be folded, so we can't keep it at this position in
4809 // the AST.
4810 Result = ExprError();
Richard Smithf72fccf2012-01-30 22:27:01 +00004811 } else {
Richard Smith8ef7b202012-01-18 23:55:52 +00004812 Value = Eval.Val.getInt();
Richard Smithf72fccf2012-01-30 22:27:01 +00004813
4814 if (Notes.empty()) {
4815 // It's a constant expression.
4816 return Result;
4817 }
Richard Smith8ef7b202012-01-18 23:55:52 +00004818 }
4819
Richard Smithf72fccf2012-01-30 22:27:01 +00004820 // Only issue one narrowing diagnostic.
4821 if (Diagnosed)
4822 return Result;
4823
Richard Smith8ef7b202012-01-18 23:55:52 +00004824 // It's not a constant expression. Produce an appropriate diagnostic.
4825 if (Notes.size() == 1 &&
4826 Notes[0].second.getDiagID() == diag::note_invalid_subexpr_in_const_expr)
4827 Diag(Notes[0].first, diag::err_expr_not_cce) << CCE;
4828 else {
Daniel Dunbar96a00142012-03-09 18:35:03 +00004829 Diag(From->getLocStart(), diag::err_expr_not_cce)
Richard Smith8ef7b202012-01-18 23:55:52 +00004830 << CCE << From->getSourceRange();
4831 for (unsigned I = 0; I < Notes.size(); ++I)
4832 Diag(Notes[I].first, Notes[I].second);
4833 }
Richard Smithf72fccf2012-01-30 22:27:01 +00004834 return Result;
Richard Smith8ef7b202012-01-18 23:55:52 +00004835}
4836
John McCall0bcc9bc2011-09-09 06:11:02 +00004837/// dropPointerConversions - If the given standard conversion sequence
4838/// involves any pointer conversions, remove them. This may change
4839/// the result type of the conversion sequence.
4840static void dropPointerConversion(StandardConversionSequence &SCS) {
4841 if (SCS.Second == ICK_Pointer_Conversion) {
4842 SCS.Second = ICK_Identity;
4843 SCS.Third = ICK_Identity;
4844 SCS.ToTypePtrs[2] = SCS.ToTypePtrs[1] = SCS.ToTypePtrs[0];
4845 }
Fariborz Jahanian79d3f042010-05-12 23:29:11 +00004846}
John McCall120d63c2010-08-24 20:38:10 +00004847
John McCall0bcc9bc2011-09-09 06:11:02 +00004848/// TryContextuallyConvertToObjCPointer - Attempt to contextually
4849/// convert the expression From to an Objective-C pointer type.
4850static ImplicitConversionSequence
4851TryContextuallyConvertToObjCPointer(Sema &S, Expr *From) {
4852 // Do an implicit conversion to 'id'.
4853 QualType Ty = S.Context.getObjCIdType();
4854 ImplicitConversionSequence ICS
4855 = TryImplicitConversion(S, From, Ty,
4856 // FIXME: Are these flags correct?
4857 /*SuppressUserConversions=*/false,
4858 /*AllowExplicit=*/true,
4859 /*InOverloadResolution=*/false,
4860 /*CStyle=*/false,
4861 /*AllowObjCWritebackConversion=*/false);
4862
4863 // Strip off any final conversions to 'id'.
4864 switch (ICS.getKind()) {
4865 case ImplicitConversionSequence::BadConversion:
4866 case ImplicitConversionSequence::AmbiguousConversion:
4867 case ImplicitConversionSequence::EllipsisConversion:
4868 break;
4869
4870 case ImplicitConversionSequence::UserDefinedConversion:
4871 dropPointerConversion(ICS.UserDefined.After);
4872 break;
4873
4874 case ImplicitConversionSequence::StandardConversion:
4875 dropPointerConversion(ICS.Standard);
4876 break;
4877 }
4878
4879 return ICS;
4880}
4881
4882/// PerformContextuallyConvertToObjCPointer - Perform a contextual
4883/// conversion of the expression From to an Objective-C pointer type.
4884ExprResult Sema::PerformContextuallyConvertToObjCPointer(Expr *From) {
John McCall3c3b7f92011-10-25 17:37:35 +00004885 if (checkPlaceholderForOverload(*this, From))
4886 return ExprError();
4887
John McCallc12c5bb2010-05-15 11:32:37 +00004888 QualType Ty = Context.getObjCIdType();
John McCall0bcc9bc2011-09-09 06:11:02 +00004889 ImplicitConversionSequence ICS =
4890 TryContextuallyConvertToObjCPointer(*this, From);
Fariborz Jahanian79d3f042010-05-12 23:29:11 +00004891 if (!ICS.isBad())
4892 return PerformImplicitConversion(From, Ty, ICS, AA_Converting);
John Wiegley429bb272011-04-08 18:41:53 +00004893 return ExprError();
Fariborz Jahanian79d3f042010-05-12 23:29:11 +00004894}
Douglas Gregor09f41cf2009-01-14 15:45:31 +00004895
Richard Smithf39aec12012-02-04 07:07:42 +00004896/// Determine whether the provided type is an integral type, or an enumeration
4897/// type of a permitted flavor.
4898static bool isIntegralOrEnumerationType(QualType T, bool AllowScopedEnum) {
4899 return AllowScopedEnum ? T->isIntegralOrEnumerationType()
4900 : T->isIntegralOrUnscopedEnumerationType();
4901}
4902
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004903/// \brief Attempt to convert the given expression to an integral or
Douglas Gregorc30614b2010-06-29 23:17:37 +00004904/// enumeration type.
4905///
4906/// This routine will attempt to convert an expression of class type to an
4907/// integral or enumeration type, if that class type only has a single
4908/// conversion to an integral or enumeration type.
4909///
Douglas Gregor6bc574d2010-06-30 00:20:43 +00004910/// \param Loc The source location of the construct that requires the
4911/// conversion.
Douglas Gregorc30614b2010-06-29 23:17:37 +00004912///
Douglas Gregor6bc574d2010-06-30 00:20:43 +00004913/// \param FromE The expression we're converting from.
4914///
4915/// \param NotIntDiag The diagnostic to be emitted if the expression does not
4916/// have integral or enumeration type.
4917///
4918/// \param IncompleteDiag The diagnostic to be emitted if the expression has
4919/// incomplete class type.
4920///
4921/// \param ExplicitConvDiag The diagnostic to be emitted if we're calling an
4922/// explicit conversion function (because no implicit conversion functions
4923/// were available). This is a recovery mode.
4924///
4925/// \param ExplicitConvNote The note to be emitted with \p ExplicitConvDiag,
4926/// showing which conversion was picked.
4927///
4928/// \param AmbigDiag The diagnostic to be emitted if there is more than one
4929/// conversion function that could convert to integral or enumeration type.
4930///
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004931/// \param AmbigNote The note to be emitted with \p AmbigDiag for each
Douglas Gregor6bc574d2010-06-30 00:20:43 +00004932/// usable conversion function.
4933///
4934/// \param ConvDiag The diagnostic to be emitted if we are calling a conversion
4935/// function, which may be an extension in this case.
4936///
Richard Smithf39aec12012-02-04 07:07:42 +00004937/// \param AllowScopedEnumerations Specifies whether conversions to scoped
4938/// enumerations should be considered.
4939///
Douglas Gregor6bc574d2010-06-30 00:20:43 +00004940/// \returns The expression, converted to an integral or enumeration type if
4941/// successful.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004942ExprResult
John McCall9ae2f072010-08-23 23:25:46 +00004943Sema::ConvertToIntegralOrEnumerationType(SourceLocation Loc, Expr *From,
Douglas Gregorc30614b2010-06-29 23:17:37 +00004944 const PartialDiagnostic &NotIntDiag,
4945 const PartialDiagnostic &IncompleteDiag,
4946 const PartialDiagnostic &ExplicitConvDiag,
4947 const PartialDiagnostic &ExplicitConvNote,
4948 const PartialDiagnostic &AmbigDiag,
Douglas Gregor6bc574d2010-06-30 00:20:43 +00004949 const PartialDiagnostic &AmbigNote,
Richard Smithf39aec12012-02-04 07:07:42 +00004950 const PartialDiagnostic &ConvDiag,
4951 bool AllowScopedEnumerations) {
Douglas Gregorc30614b2010-06-29 23:17:37 +00004952 // We can't perform any more checking for type-dependent expressions.
4953 if (From->isTypeDependent())
John McCall9ae2f072010-08-23 23:25:46 +00004954 return Owned(From);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004955
Eli Friedmanceccab92012-01-26 00:26:18 +00004956 // Process placeholders immediately.
4957 if (From->hasPlaceholderType()) {
4958 ExprResult result = CheckPlaceholderExpr(From);
4959 if (result.isInvalid()) return result;
4960 From = result.take();
4961 }
4962
Douglas Gregorc30614b2010-06-29 23:17:37 +00004963 // If the expression already has integral or enumeration type, we're golden.
4964 QualType T = From->getType();
Richard Smithf39aec12012-02-04 07:07:42 +00004965 if (isIntegralOrEnumerationType(T, AllowScopedEnumerations))
Eli Friedmanceccab92012-01-26 00:26:18 +00004966 return DefaultLvalueConversion(From);
Douglas Gregorc30614b2010-06-29 23:17:37 +00004967
4968 // FIXME: Check for missing '()' if T is a function type?
4969
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004970 // If we don't have a class type in C++, there's no way we can get an
Douglas Gregorc30614b2010-06-29 23:17:37 +00004971 // expression of integral or enumeration type.
4972 const RecordType *RecordTy = T->getAs<RecordType>();
4973 if (!RecordTy || !getLangOptions().CPlusPlus) {
Richard Smith282e7e62012-02-04 09:53:13 +00004974 if (NotIntDiag.getDiagID())
4975 Diag(Loc, NotIntDiag) << T << From->getSourceRange();
John McCall9ae2f072010-08-23 23:25:46 +00004976 return Owned(From);
Douglas Gregorc30614b2010-06-29 23:17:37 +00004977 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004978
Douglas Gregorc30614b2010-06-29 23:17:37 +00004979 // We must have a complete class type.
4980 if (RequireCompleteType(Loc, T, IncompleteDiag))
John McCall9ae2f072010-08-23 23:25:46 +00004981 return Owned(From);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004982
Douglas Gregorc30614b2010-06-29 23:17:37 +00004983 // Look for a conversion to an integral or enumeration type.
4984 UnresolvedSet<4> ViableConversions;
4985 UnresolvedSet<4> ExplicitConversions;
4986 const UnresolvedSetImpl *Conversions
4987 = cast<CXXRecordDecl>(RecordTy->getDecl())->getVisibleConversionFunctions();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004988
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00004989 bool HadMultipleCandidates = (Conversions->size() > 1);
4990
Douglas Gregorc30614b2010-06-29 23:17:37 +00004991 for (UnresolvedSetImpl::iterator I = Conversions->begin(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00004992 E = Conversions->end();
4993 I != E;
Douglas Gregorc30614b2010-06-29 23:17:37 +00004994 ++I) {
4995 if (CXXConversionDecl *Conversion
Richard Smithf39aec12012-02-04 07:07:42 +00004996 = dyn_cast<CXXConversionDecl>((*I)->getUnderlyingDecl())) {
4997 if (isIntegralOrEnumerationType(
4998 Conversion->getConversionType().getNonReferenceType(),
4999 AllowScopedEnumerations)) {
Douglas Gregorc30614b2010-06-29 23:17:37 +00005000 if (Conversion->isExplicit())
5001 ExplicitConversions.addDecl(I.getDecl(), I.getAccess());
5002 else
5003 ViableConversions.addDecl(I.getDecl(), I.getAccess());
5004 }
Richard Smithf39aec12012-02-04 07:07:42 +00005005 }
Douglas Gregorc30614b2010-06-29 23:17:37 +00005006 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005007
Douglas Gregorc30614b2010-06-29 23:17:37 +00005008 switch (ViableConversions.size()) {
5009 case 0:
Richard Smith282e7e62012-02-04 09:53:13 +00005010 if (ExplicitConversions.size() == 1 && ExplicitConvDiag.getDiagID()) {
Douglas Gregorc30614b2010-06-29 23:17:37 +00005011 DeclAccessPair Found = ExplicitConversions[0];
5012 CXXConversionDecl *Conversion
5013 = cast<CXXConversionDecl>(Found->getUnderlyingDecl());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005014
Douglas Gregorc30614b2010-06-29 23:17:37 +00005015 // The user probably meant to invoke the given explicit
5016 // conversion; use it.
5017 QualType ConvTy
5018 = Conversion->getConversionType().getNonReferenceType();
5019 std::string TypeStr;
Douglas Gregor8987b232011-09-27 23:30:47 +00005020 ConvTy.getAsStringInternal(TypeStr, getPrintingPolicy());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005021
Douglas Gregorc30614b2010-06-29 23:17:37 +00005022 Diag(Loc, ExplicitConvDiag)
5023 << T << ConvTy
5024 << FixItHint::CreateInsertion(From->getLocStart(),
5025 "static_cast<" + TypeStr + ">(")
5026 << FixItHint::CreateInsertion(PP.getLocForEndOfToken(From->getLocEnd()),
5027 ")");
5028 Diag(Conversion->getLocation(), ExplicitConvNote)
5029 << ConvTy->isEnumeralType() << ConvTy;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005030
5031 // If we aren't in a SFINAE context, build a call to the
Douglas Gregorc30614b2010-06-29 23:17:37 +00005032 // explicit conversion function.
5033 if (isSFINAEContext())
5034 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005035
Douglas Gregorc30614b2010-06-29 23:17:37 +00005036 CheckMemberOperatorAccess(From->getExprLoc(), From, 0, Found);
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00005037 ExprResult Result = BuildCXXMemberCallExpr(From, Found, Conversion,
5038 HadMultipleCandidates);
Douglas Gregorf2ae5262011-01-20 00:18:04 +00005039 if (Result.isInvalid())
5040 return ExprError();
Abramo Bagnara960809e2011-11-16 22:46:05 +00005041 // Record usage of conversion in an implicit cast.
5042 From = ImplicitCastExpr::Create(Context, Result.get()->getType(),
5043 CK_UserDefinedConversion,
5044 Result.get(), 0,
5045 Result.get()->getValueKind());
Douglas Gregorc30614b2010-06-29 23:17:37 +00005046 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005047
Douglas Gregorc30614b2010-06-29 23:17:37 +00005048 // We'll complain below about a non-integral condition type.
5049 break;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005050
Douglas Gregorc30614b2010-06-29 23:17:37 +00005051 case 1: {
5052 // Apply this conversion.
5053 DeclAccessPair Found = ViableConversions[0];
5054 CheckMemberOperatorAccess(From->getExprLoc(), From, 0, Found);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005055
Douglas Gregor6bc574d2010-06-30 00:20:43 +00005056 CXXConversionDecl *Conversion
5057 = cast<CXXConversionDecl>(Found->getUnderlyingDecl());
5058 QualType ConvTy
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005059 = Conversion->getConversionType().getNonReferenceType();
Douglas Gregor6bc574d2010-06-30 00:20:43 +00005060 if (ConvDiag.getDiagID()) {
5061 if (isSFINAEContext())
5062 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005063
Douglas Gregor6bc574d2010-06-30 00:20:43 +00005064 Diag(Loc, ConvDiag)
5065 << T << ConvTy->isEnumeralType() << ConvTy << From->getSourceRange();
5066 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005067
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00005068 ExprResult Result = BuildCXXMemberCallExpr(From, Found, Conversion,
5069 HadMultipleCandidates);
Douglas Gregorf2ae5262011-01-20 00:18:04 +00005070 if (Result.isInvalid())
5071 return ExprError();
Abramo Bagnara960809e2011-11-16 22:46:05 +00005072 // Record usage of conversion in an implicit cast.
5073 From = ImplicitCastExpr::Create(Context, Result.get()->getType(),
5074 CK_UserDefinedConversion,
5075 Result.get(), 0,
5076 Result.get()->getValueKind());
Douglas Gregorc30614b2010-06-29 23:17:37 +00005077 break;
5078 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005079
Douglas Gregorc30614b2010-06-29 23:17:37 +00005080 default:
Richard Smith282e7e62012-02-04 09:53:13 +00005081 if (!AmbigDiag.getDiagID())
5082 return Owned(From);
5083
Douglas Gregorc30614b2010-06-29 23:17:37 +00005084 Diag(Loc, AmbigDiag)
5085 << T << From->getSourceRange();
5086 for (unsigned I = 0, N = ViableConversions.size(); I != N; ++I) {
5087 CXXConversionDecl *Conv
5088 = cast<CXXConversionDecl>(ViableConversions[I]->getUnderlyingDecl());
5089 QualType ConvTy = Conv->getConversionType().getNonReferenceType();
5090 Diag(Conv->getLocation(), AmbigNote)
5091 << ConvTy->isEnumeralType() << ConvTy;
5092 }
John McCall9ae2f072010-08-23 23:25:46 +00005093 return Owned(From);
Douglas Gregorc30614b2010-06-29 23:17:37 +00005094 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005095
Richard Smith282e7e62012-02-04 09:53:13 +00005096 if (!isIntegralOrEnumerationType(From->getType(), AllowScopedEnumerations) &&
5097 NotIntDiag.getDiagID())
5098 Diag(Loc, NotIntDiag) << From->getType() << From->getSourceRange();
Douglas Gregorc30614b2010-06-29 23:17:37 +00005099
Eli Friedmanceccab92012-01-26 00:26:18 +00005100 return DefaultLvalueConversion(From);
Douglas Gregorc30614b2010-06-29 23:17:37 +00005101}
5102
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00005103/// AddOverloadCandidate - Adds the given function to the set of
Douglas Gregor225c41e2008-11-03 19:09:14 +00005104/// candidate functions, using the given function call arguments. If
5105/// @p SuppressUserConversions, then don't allow user-defined
5106/// conversions via constructors or conversion operators.
Douglas Gregor9c6a0e92009-09-22 15:41:20 +00005107///
5108/// \para PartialOverloading true if we are performing "partial" overloading
5109/// based on an incomplete set of function arguments. This feature is used by
5110/// code completion.
Mike Stump1eb44332009-09-09 15:08:12 +00005111void
5112Sema::AddOverloadCandidate(FunctionDecl *Function,
John McCall9aa472c2010-03-19 07:35:19 +00005113 DeclAccessPair FoundDecl,
Ahmed Charles13a140c2012-02-25 11:00:22 +00005114 llvm::ArrayRef<Expr *> Args,
Douglas Gregor225c41e2008-11-03 19:09:14 +00005115 OverloadCandidateSet& CandidateSet,
Sebastian Redle2b68332009-04-12 17:16:29 +00005116 bool SuppressUserConversions,
Douglas Gregored878af2012-02-24 23:56:31 +00005117 bool PartialOverloading,
5118 bool AllowExplicit) {
Mike Stump1eb44332009-09-09 15:08:12 +00005119 const FunctionProtoType* Proto
John McCall183700f2009-09-21 23:43:11 +00005120 = dyn_cast<FunctionProtoType>(Function->getType()->getAs<FunctionType>());
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00005121 assert(Proto && "Functions without a prototype cannot be overloaded");
Mike Stump1eb44332009-09-09 15:08:12 +00005122 assert(!Function->getDescribedFunctionTemplate() &&
NAKAMURA Takumi00995302011-01-27 07:09:49 +00005123 "Use AddTemplateOverloadCandidate for function templates");
Mike Stump1eb44332009-09-09 15:08:12 +00005124
Douglas Gregor88a35142008-12-22 05:46:06 +00005125 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Function)) {
Sebastian Redl3201f6b2009-04-16 17:51:27 +00005126 if (!isa<CXXConstructorDecl>(Method)) {
5127 // If we get here, it's because we're calling a member function
5128 // that is named without a member access expression (e.g.,
5129 // "this->f") that was either written explicitly or created
5130 // implicitly. This can happen with a qualified call to a member
John McCall701c89e2009-12-03 04:06:58 +00005131 // function, e.g., X::f(). We use an empty type for the implied
5132 // object argument (C++ [over.call.func]p3), and the acting context
5133 // is irrelevant.
John McCall9aa472c2010-03-19 07:35:19 +00005134 AddMethodCandidate(Method, FoundDecl, Method->getParent(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005135 QualType(), Expr::Classification::makeSimpleLValue(),
Ahmed Charles13a140c2012-02-25 11:00:22 +00005136 Args, CandidateSet, SuppressUserConversions);
Sebastian Redl3201f6b2009-04-16 17:51:27 +00005137 return;
5138 }
5139 // We treat a constructor like a non-member function, since its object
5140 // argument doesn't participate in overload resolution.
Douglas Gregor88a35142008-12-22 05:46:06 +00005141 }
5142
Douglas Gregorfd476482009-11-13 23:59:09 +00005143 if (!CandidateSet.isNewCandidate(Function))
Douglas Gregor3f396022009-09-28 04:47:19 +00005144 return;
Douglas Gregor66724ea2009-11-14 01:20:54 +00005145
Douglas Gregor7edfb692009-11-23 12:27:39 +00005146 // Overload resolution is always an unevaluated context.
John McCallf312b1e2010-08-26 23:41:50 +00005147 EnterExpressionEvaluationContext Unevaluated(*this, Sema::Unevaluated);
Douglas Gregor7edfb692009-11-23 12:27:39 +00005148
Douglas Gregor66724ea2009-11-14 01:20:54 +00005149 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Function)){
5150 // C++ [class.copy]p3:
5151 // A member function template is never instantiated to perform the copy
5152 // of a class object to an object of its class type.
5153 QualType ClassType = Context.getTypeDeclType(Constructor->getParent());
Ahmed Charles13a140c2012-02-25 11:00:22 +00005154 if (Args.size() == 1 &&
Douglas Gregor6493cc52010-11-08 17:16:59 +00005155 Constructor->isSpecializationCopyingObject() &&
Douglas Gregor12116062010-02-21 18:30:38 +00005156 (Context.hasSameUnqualifiedType(ClassType, Args[0]->getType()) ||
5157 IsDerivedFrom(Args[0]->getType(), ClassType)))
Douglas Gregor66724ea2009-11-14 01:20:54 +00005158 return;
5159 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005160
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00005161 // Add this candidate
Ahmed Charles13a140c2012-02-25 11:00:22 +00005162 OverloadCandidate &Candidate = CandidateSet.addCandidate(Args.size());
John McCall9aa472c2010-03-19 07:35:19 +00005163 Candidate.FoundDecl = FoundDecl;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00005164 Candidate.Function = Function;
Douglas Gregor88a35142008-12-22 05:46:06 +00005165 Candidate.Viable = true;
Douglas Gregor106c6eb2008-11-19 22:57:39 +00005166 Candidate.IsSurrogate = false;
Douglas Gregor88a35142008-12-22 05:46:06 +00005167 Candidate.IgnoreObjectArgument = false;
Ahmed Charles13a140c2012-02-25 11:00:22 +00005168 Candidate.ExplicitCallArguments = Args.size();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005169
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00005170 unsigned NumArgsInProto = Proto->getNumArgs();
5171
5172 // (C++ 13.3.2p2): A candidate function having fewer than m
5173 // parameters is viable only if it has an ellipsis in its parameter
5174 // list (8.3.5).
Ahmed Charles13a140c2012-02-25 11:00:22 +00005175 if ((Args.size() + (PartialOverloading && Args.size())) > NumArgsInProto &&
Douglas Gregor5bd1a112009-09-23 14:56:09 +00005176 !Proto->isVariadic()) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00005177 Candidate.Viable = false;
John McCalladbb8f82010-01-13 09:16:55 +00005178 Candidate.FailureKind = ovl_fail_too_many_arguments;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00005179 return;
5180 }
5181
5182 // (C++ 13.3.2p2): A candidate function having more than m parameters
5183 // is viable only if the (m+1)st parameter has a default argument
5184 // (8.3.6). For the purposes of overload resolution, the
5185 // parameter list is truncated on the right, so that there are
5186 // exactly m parameters.
5187 unsigned MinRequiredArgs = Function->getMinRequiredArguments();
Ahmed Charles13a140c2012-02-25 11:00:22 +00005188 if (Args.size() < MinRequiredArgs && !PartialOverloading) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00005189 // Not enough arguments.
5190 Candidate.Viable = false;
John McCalladbb8f82010-01-13 09:16:55 +00005191 Candidate.FailureKind = ovl_fail_too_few_arguments;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00005192 return;
5193 }
5194
Peter Collingbourne78dd67e2011-10-02 23:49:40 +00005195 // (CUDA B.1): Check for invalid calls between targets.
5196 if (getLangOptions().CUDA)
5197 if (const FunctionDecl *Caller = dyn_cast<FunctionDecl>(CurContext))
5198 if (CheckCUDATarget(Caller, Function)) {
5199 Candidate.Viable = false;
5200 Candidate.FailureKind = ovl_fail_bad_target;
5201 return;
5202 }
5203
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00005204 // Determine the implicit conversion sequences for each of the
5205 // arguments.
Ahmed Charles13a140c2012-02-25 11:00:22 +00005206 for (unsigned ArgIdx = 0; ArgIdx < Args.size(); ++ArgIdx) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00005207 if (ArgIdx < NumArgsInProto) {
5208 // (C++ 13.3.2p3): for F to be a viable function, there shall
5209 // exist for each argument an implicit conversion sequence
5210 // (13.3.3.1) that converts that argument to the corresponding
5211 // parameter of F.
5212 QualType ParamType = Proto->getArgType(ArgIdx);
Mike Stump1eb44332009-09-09 15:08:12 +00005213 Candidate.Conversions[ArgIdx]
Douglas Gregor74eb6582010-04-16 17:51:22 +00005214 = TryCopyInitialization(*this, Args[ArgIdx], ParamType,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005215 SuppressUserConversions,
John McCallf85e1932011-06-15 23:02:42 +00005216 /*InOverloadResolution=*/true,
5217 /*AllowObjCWritebackConversion=*/
Douglas Gregored878af2012-02-24 23:56:31 +00005218 getLangOptions().ObjCAutoRefCount,
5219 AllowExplicit);
John McCall1d318332010-01-12 00:44:57 +00005220 if (Candidate.Conversions[ArgIdx].isBad()) {
5221 Candidate.Viable = false;
John McCalladbb8f82010-01-13 09:16:55 +00005222 Candidate.FailureKind = ovl_fail_bad_conversion;
John McCall1d318332010-01-12 00:44:57 +00005223 break;
Douglas Gregor96176b32008-11-18 23:14:02 +00005224 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00005225 } else {
5226 // (C++ 13.3.2p2): For the purposes of overload resolution, any
5227 // argument for which there is no corresponding parameter is
5228 // considered to ""match the ellipsis" (C+ 13.3.3.1.3).
John McCall1d318332010-01-12 00:44:57 +00005229 Candidate.Conversions[ArgIdx].setEllipsis();
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00005230 }
5231 }
5232}
5233
Douglas Gregor063daf62009-03-13 18:40:31 +00005234/// \brief Add all of the function declarations in the given function set to
5235/// the overload canddiate set.
John McCall6e266892010-01-26 03:27:55 +00005236void Sema::AddFunctionCandidates(const UnresolvedSetImpl &Fns,
Ahmed Charles13a140c2012-02-25 11:00:22 +00005237 llvm::ArrayRef<Expr *> Args,
Douglas Gregor063daf62009-03-13 18:40:31 +00005238 OverloadCandidateSet& CandidateSet,
Richard Smith36f5cfe2012-03-09 08:00:36 +00005239 bool SuppressUserConversions,
5240 TemplateArgumentListInfo *ExplicitTemplateArgs) {
John McCall6e266892010-01-26 03:27:55 +00005241 for (UnresolvedSetIterator F = Fns.begin(), E = Fns.end(); F != E; ++F) {
John McCall9aa472c2010-03-19 07:35:19 +00005242 NamedDecl *D = F.getDecl()->getUnderlyingDecl();
5243 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Douglas Gregor3f396022009-09-28 04:47:19 +00005244 if (isa<CXXMethodDecl>(FD) && !cast<CXXMethodDecl>(FD)->isStatic())
John McCall9aa472c2010-03-19 07:35:19 +00005245 AddMethodCandidate(cast<CXXMethodDecl>(FD), F.getPair(),
John McCall701c89e2009-12-03 04:06:58 +00005246 cast<CXXMethodDecl>(FD)->getParent(),
Douglas Gregor2c9a03f2011-01-26 19:30:28 +00005247 Args[0]->getType(), Args[0]->Classify(Context),
Ahmed Charles13a140c2012-02-25 11:00:22 +00005248 Args.slice(1), CandidateSet,
5249 SuppressUserConversions);
Douglas Gregor3f396022009-09-28 04:47:19 +00005250 else
Ahmed Charles13a140c2012-02-25 11:00:22 +00005251 AddOverloadCandidate(FD, F.getPair(), Args, CandidateSet,
Douglas Gregor3f396022009-09-28 04:47:19 +00005252 SuppressUserConversions);
5253 } else {
John McCall9aa472c2010-03-19 07:35:19 +00005254 FunctionTemplateDecl *FunTmpl = cast<FunctionTemplateDecl>(D);
Douglas Gregor3f396022009-09-28 04:47:19 +00005255 if (isa<CXXMethodDecl>(FunTmpl->getTemplatedDecl()) &&
5256 !cast<CXXMethodDecl>(FunTmpl->getTemplatedDecl())->isStatic())
John McCall9aa472c2010-03-19 07:35:19 +00005257 AddMethodTemplateCandidate(FunTmpl, F.getPair(),
John McCall701c89e2009-12-03 04:06:58 +00005258 cast<CXXRecordDecl>(FunTmpl->getDeclContext()),
Richard Smith36f5cfe2012-03-09 08:00:36 +00005259 ExplicitTemplateArgs,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005260 Args[0]->getType(),
Ahmed Charles13a140c2012-02-25 11:00:22 +00005261 Args[0]->Classify(Context), Args.slice(1),
5262 CandidateSet, SuppressUserConversions);
Douglas Gregor3f396022009-09-28 04:47:19 +00005263 else
John McCall9aa472c2010-03-19 07:35:19 +00005264 AddTemplateOverloadCandidate(FunTmpl, F.getPair(),
Richard Smith36f5cfe2012-03-09 08:00:36 +00005265 ExplicitTemplateArgs, Args,
Ahmed Charles13a140c2012-02-25 11:00:22 +00005266 CandidateSet, SuppressUserConversions);
Douglas Gregor3f396022009-09-28 04:47:19 +00005267 }
Douglas Gregor364e0212009-06-27 21:05:07 +00005268 }
Douglas Gregor063daf62009-03-13 18:40:31 +00005269}
5270
John McCall314be4e2009-11-17 07:50:12 +00005271/// AddMethodCandidate - Adds a named decl (which is some kind of
5272/// method) as a method candidate to the given overload set.
John McCall9aa472c2010-03-19 07:35:19 +00005273void Sema::AddMethodCandidate(DeclAccessPair FoundDecl,
John McCall701c89e2009-12-03 04:06:58 +00005274 QualType ObjectType,
Douglas Gregor2c9a03f2011-01-26 19:30:28 +00005275 Expr::Classification ObjectClassification,
John McCall314be4e2009-11-17 07:50:12 +00005276 Expr **Args, unsigned NumArgs,
5277 OverloadCandidateSet& CandidateSet,
Douglas Gregor7ec77522010-04-16 17:33:27 +00005278 bool SuppressUserConversions) {
John McCall9aa472c2010-03-19 07:35:19 +00005279 NamedDecl *Decl = FoundDecl.getDecl();
John McCall701c89e2009-12-03 04:06:58 +00005280 CXXRecordDecl *ActingContext = cast<CXXRecordDecl>(Decl->getDeclContext());
John McCall314be4e2009-11-17 07:50:12 +00005281
5282 if (isa<UsingShadowDecl>(Decl))
5283 Decl = cast<UsingShadowDecl>(Decl)->getTargetDecl();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005284
John McCall314be4e2009-11-17 07:50:12 +00005285 if (FunctionTemplateDecl *TD = dyn_cast<FunctionTemplateDecl>(Decl)) {
5286 assert(isa<CXXMethodDecl>(TD->getTemplatedDecl()) &&
5287 "Expected a member function template");
John McCall9aa472c2010-03-19 07:35:19 +00005288 AddMethodTemplateCandidate(TD, FoundDecl, ActingContext,
5289 /*ExplicitArgs*/ 0,
Ahmed Charles13a140c2012-02-25 11:00:22 +00005290 ObjectType, ObjectClassification,
5291 llvm::makeArrayRef(Args, NumArgs), CandidateSet,
Douglas Gregor7ec77522010-04-16 17:33:27 +00005292 SuppressUserConversions);
John McCall314be4e2009-11-17 07:50:12 +00005293 } else {
John McCall9aa472c2010-03-19 07:35:19 +00005294 AddMethodCandidate(cast<CXXMethodDecl>(Decl), FoundDecl, ActingContext,
Ahmed Charles13a140c2012-02-25 11:00:22 +00005295 ObjectType, ObjectClassification,
5296 llvm::makeArrayRef(Args, NumArgs),
Douglas Gregor7ec77522010-04-16 17:33:27 +00005297 CandidateSet, SuppressUserConversions);
John McCall314be4e2009-11-17 07:50:12 +00005298 }
5299}
5300
Douglas Gregor96176b32008-11-18 23:14:02 +00005301/// AddMethodCandidate - Adds the given C++ member function to the set
5302/// of candidate functions, using the given function call arguments
5303/// and the object argument (@c Object). For example, in a call
5304/// @c o.f(a1,a2), @c Object will contain @c o and @c Args will contain
5305/// both @c a1 and @c a2. If @p SuppressUserConversions, then don't
5306/// allow user-defined conversions via constructors or conversion
Douglas Gregor7ec77522010-04-16 17:33:27 +00005307/// operators.
Mike Stump1eb44332009-09-09 15:08:12 +00005308void
John McCall9aa472c2010-03-19 07:35:19 +00005309Sema::AddMethodCandidate(CXXMethodDecl *Method, DeclAccessPair FoundDecl,
John McCall86820f52010-01-26 01:37:31 +00005310 CXXRecordDecl *ActingContext, QualType ObjectType,
Douglas Gregor2c9a03f2011-01-26 19:30:28 +00005311 Expr::Classification ObjectClassification,
Ahmed Charles13a140c2012-02-25 11:00:22 +00005312 llvm::ArrayRef<Expr *> Args,
Douglas Gregor96176b32008-11-18 23:14:02 +00005313 OverloadCandidateSet& CandidateSet,
Douglas Gregor7ec77522010-04-16 17:33:27 +00005314 bool SuppressUserConversions) {
Mike Stump1eb44332009-09-09 15:08:12 +00005315 const FunctionProtoType* Proto
John McCall183700f2009-09-21 23:43:11 +00005316 = dyn_cast<FunctionProtoType>(Method->getType()->getAs<FunctionType>());
Douglas Gregor96176b32008-11-18 23:14:02 +00005317 assert(Proto && "Methods without a prototype cannot be overloaded");
Sebastian Redl3201f6b2009-04-16 17:51:27 +00005318 assert(!isa<CXXConstructorDecl>(Method) &&
5319 "Use AddOverloadCandidate for constructors");
Douglas Gregor96176b32008-11-18 23:14:02 +00005320
Douglas Gregor3f396022009-09-28 04:47:19 +00005321 if (!CandidateSet.isNewCandidate(Method))
5322 return;
5323
Douglas Gregor7edfb692009-11-23 12:27:39 +00005324 // Overload resolution is always an unevaluated context.
John McCallf312b1e2010-08-26 23:41:50 +00005325 EnterExpressionEvaluationContext Unevaluated(*this, Sema::Unevaluated);
Douglas Gregor7edfb692009-11-23 12:27:39 +00005326
Douglas Gregor96176b32008-11-18 23:14:02 +00005327 // Add this candidate
Ahmed Charles13a140c2012-02-25 11:00:22 +00005328 OverloadCandidate &Candidate = CandidateSet.addCandidate(Args.size() + 1);
John McCall9aa472c2010-03-19 07:35:19 +00005329 Candidate.FoundDecl = FoundDecl;
Douglas Gregor96176b32008-11-18 23:14:02 +00005330 Candidate.Function = Method;
Douglas Gregor106c6eb2008-11-19 22:57:39 +00005331 Candidate.IsSurrogate = false;
Douglas Gregor88a35142008-12-22 05:46:06 +00005332 Candidate.IgnoreObjectArgument = false;
Ahmed Charles13a140c2012-02-25 11:00:22 +00005333 Candidate.ExplicitCallArguments = Args.size();
Douglas Gregor96176b32008-11-18 23:14:02 +00005334
5335 unsigned NumArgsInProto = Proto->getNumArgs();
5336
5337 // (C++ 13.3.2p2): A candidate function having fewer than m
5338 // parameters is viable only if it has an ellipsis in its parameter
5339 // list (8.3.5).
Ahmed Charles13a140c2012-02-25 11:00:22 +00005340 if (Args.size() > NumArgsInProto && !Proto->isVariadic()) {
Douglas Gregor96176b32008-11-18 23:14:02 +00005341 Candidate.Viable = false;
John McCalladbb8f82010-01-13 09:16:55 +00005342 Candidate.FailureKind = ovl_fail_too_many_arguments;
Douglas Gregor96176b32008-11-18 23:14:02 +00005343 return;
5344 }
5345
5346 // (C++ 13.3.2p2): A candidate function having more than m parameters
5347 // is viable only if the (m+1)st parameter has a default argument
5348 // (8.3.6). For the purposes of overload resolution, the
5349 // parameter list is truncated on the right, so that there are
5350 // exactly m parameters.
5351 unsigned MinRequiredArgs = Method->getMinRequiredArguments();
Ahmed Charles13a140c2012-02-25 11:00:22 +00005352 if (Args.size() < MinRequiredArgs) {
Douglas Gregor96176b32008-11-18 23:14:02 +00005353 // Not enough arguments.
5354 Candidate.Viable = false;
John McCalladbb8f82010-01-13 09:16:55 +00005355 Candidate.FailureKind = ovl_fail_too_few_arguments;
Douglas Gregor96176b32008-11-18 23:14:02 +00005356 return;
5357 }
5358
5359 Candidate.Viable = true;
Douglas Gregor96176b32008-11-18 23:14:02 +00005360
John McCall701c89e2009-12-03 04:06:58 +00005361 if (Method->isStatic() || ObjectType.isNull())
Douglas Gregor88a35142008-12-22 05:46:06 +00005362 // The implicit object argument is ignored.
5363 Candidate.IgnoreObjectArgument = true;
5364 else {
5365 // Determine the implicit conversion sequence for the object
5366 // parameter.
John McCall701c89e2009-12-03 04:06:58 +00005367 Candidate.Conversions[0]
Douglas Gregor2c9a03f2011-01-26 19:30:28 +00005368 = TryObjectArgumentInitialization(*this, ObjectType, ObjectClassification,
5369 Method, ActingContext);
John McCall1d318332010-01-12 00:44:57 +00005370 if (Candidate.Conversions[0].isBad()) {
Douglas Gregor88a35142008-12-22 05:46:06 +00005371 Candidate.Viable = false;
John McCalladbb8f82010-01-13 09:16:55 +00005372 Candidate.FailureKind = ovl_fail_bad_conversion;
Douglas Gregor88a35142008-12-22 05:46:06 +00005373 return;
5374 }
Douglas Gregor96176b32008-11-18 23:14:02 +00005375 }
5376
5377 // Determine the implicit conversion sequences for each of the
5378 // arguments.
Ahmed Charles13a140c2012-02-25 11:00:22 +00005379 for (unsigned ArgIdx = 0; ArgIdx < Args.size(); ++ArgIdx) {
Douglas Gregor96176b32008-11-18 23:14:02 +00005380 if (ArgIdx < NumArgsInProto) {
5381 // (C++ 13.3.2p3): for F to be a viable function, there shall
5382 // exist for each argument an implicit conversion sequence
5383 // (13.3.3.1) that converts that argument to the corresponding
5384 // parameter of F.
5385 QualType ParamType = Proto->getArgType(ArgIdx);
Mike Stump1eb44332009-09-09 15:08:12 +00005386 Candidate.Conversions[ArgIdx + 1]
Douglas Gregor74eb6582010-04-16 17:51:22 +00005387 = TryCopyInitialization(*this, Args[ArgIdx], ParamType,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005388 SuppressUserConversions,
John McCallf85e1932011-06-15 23:02:42 +00005389 /*InOverloadResolution=*/true,
5390 /*AllowObjCWritebackConversion=*/
5391 getLangOptions().ObjCAutoRefCount);
John McCall1d318332010-01-12 00:44:57 +00005392 if (Candidate.Conversions[ArgIdx + 1].isBad()) {
Douglas Gregor96176b32008-11-18 23:14:02 +00005393 Candidate.Viable = false;
John McCalladbb8f82010-01-13 09:16:55 +00005394 Candidate.FailureKind = ovl_fail_bad_conversion;
Douglas Gregor96176b32008-11-18 23:14:02 +00005395 break;
5396 }
5397 } else {
5398 // (C++ 13.3.2p2): For the purposes of overload resolution, any
5399 // argument for which there is no corresponding parameter is
5400 // considered to ""match the ellipsis" (C+ 13.3.3.1.3).
John McCall1d318332010-01-12 00:44:57 +00005401 Candidate.Conversions[ArgIdx + 1].setEllipsis();
Douglas Gregor96176b32008-11-18 23:14:02 +00005402 }
5403 }
5404}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005405
Douglas Gregor6b906862009-08-21 00:16:32 +00005406/// \brief Add a C++ member function template as a candidate to the candidate
5407/// set, using template argument deduction to produce an appropriate member
5408/// function template specialization.
Mike Stump1eb44332009-09-09 15:08:12 +00005409void
Douglas Gregor6b906862009-08-21 00:16:32 +00005410Sema::AddMethodTemplateCandidate(FunctionTemplateDecl *MethodTmpl,
John McCall9aa472c2010-03-19 07:35:19 +00005411 DeclAccessPair FoundDecl,
John McCall701c89e2009-12-03 04:06:58 +00005412 CXXRecordDecl *ActingContext,
Douglas Gregor67714232011-03-03 02:41:12 +00005413 TemplateArgumentListInfo *ExplicitTemplateArgs,
John McCall701c89e2009-12-03 04:06:58 +00005414 QualType ObjectType,
Douglas Gregor2c9a03f2011-01-26 19:30:28 +00005415 Expr::Classification ObjectClassification,
Ahmed Charles13a140c2012-02-25 11:00:22 +00005416 llvm::ArrayRef<Expr *> Args,
Douglas Gregor6b906862009-08-21 00:16:32 +00005417 OverloadCandidateSet& CandidateSet,
Douglas Gregor7ec77522010-04-16 17:33:27 +00005418 bool SuppressUserConversions) {
Douglas Gregor3f396022009-09-28 04:47:19 +00005419 if (!CandidateSet.isNewCandidate(MethodTmpl))
5420 return;
5421
Douglas Gregor6b906862009-08-21 00:16:32 +00005422 // C++ [over.match.funcs]p7:
Mike Stump1eb44332009-09-09 15:08:12 +00005423 // In each case where a candidate is a function template, candidate
Douglas Gregor6b906862009-08-21 00:16:32 +00005424 // function template specializations are generated using template argument
Mike Stump1eb44332009-09-09 15:08:12 +00005425 // deduction (14.8.3, 14.8.2). Those candidates are then handled as
Douglas Gregor6b906862009-08-21 00:16:32 +00005426 // candidate functions in the usual way.113) A given name can refer to one
5427 // or more function templates and also to a set of overloaded non-template
5428 // functions. In such a case, the candidate functions generated from each
5429 // function template are combined with the set of non-template candidate
5430 // functions.
John McCall5769d612010-02-08 23:07:23 +00005431 TemplateDeductionInfo Info(Context, CandidateSet.getLocation());
Douglas Gregor6b906862009-08-21 00:16:32 +00005432 FunctionDecl *Specialization = 0;
5433 if (TemplateDeductionResult Result
Ahmed Charles13a140c2012-02-25 11:00:22 +00005434 = DeduceTemplateArguments(MethodTmpl, ExplicitTemplateArgs, Args,
5435 Specialization, Info)) {
Benjamin Kramer0e6a16f2012-01-14 16:31:55 +00005436 OverloadCandidate &Candidate = CandidateSet.addCandidate();
Douglas Gregorff5adac2010-05-08 20:18:54 +00005437 Candidate.FoundDecl = FoundDecl;
5438 Candidate.Function = MethodTmpl->getTemplatedDecl();
5439 Candidate.Viable = false;
5440 Candidate.FailureKind = ovl_fail_bad_deduction;
5441 Candidate.IsSurrogate = false;
5442 Candidate.IgnoreObjectArgument = false;
Ahmed Charles13a140c2012-02-25 11:00:22 +00005443 Candidate.ExplicitCallArguments = Args.size();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005444 Candidate.DeductionFailure = MakeDeductionFailureInfo(Context, Result,
Douglas Gregorff5adac2010-05-08 20:18:54 +00005445 Info);
5446 return;
5447 }
Mike Stump1eb44332009-09-09 15:08:12 +00005448
Douglas Gregor6b906862009-08-21 00:16:32 +00005449 // Add the function template specialization produced by template argument
5450 // deduction as a candidate.
5451 assert(Specialization && "Missing member function template specialization?");
Mike Stump1eb44332009-09-09 15:08:12 +00005452 assert(isa<CXXMethodDecl>(Specialization) &&
Douglas Gregor6b906862009-08-21 00:16:32 +00005453 "Specialization is not a member function?");
John McCall9aa472c2010-03-19 07:35:19 +00005454 AddMethodCandidate(cast<CXXMethodDecl>(Specialization), FoundDecl,
Ahmed Charles13a140c2012-02-25 11:00:22 +00005455 ActingContext, ObjectType, ObjectClassification, Args,
5456 CandidateSet, SuppressUserConversions);
Douglas Gregor6b906862009-08-21 00:16:32 +00005457}
5458
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00005459/// \brief Add a C++ function template specialization as a candidate
5460/// in the candidate set, using template argument deduction to produce
5461/// an appropriate function template specialization.
Mike Stump1eb44332009-09-09 15:08:12 +00005462void
Douglas Gregore53060f2009-06-25 22:08:12 +00005463Sema::AddTemplateOverloadCandidate(FunctionTemplateDecl *FunctionTemplate,
John McCall9aa472c2010-03-19 07:35:19 +00005464 DeclAccessPair FoundDecl,
Douglas Gregor67714232011-03-03 02:41:12 +00005465 TemplateArgumentListInfo *ExplicitTemplateArgs,
Ahmed Charles13a140c2012-02-25 11:00:22 +00005466 llvm::ArrayRef<Expr *> Args,
Douglas Gregore53060f2009-06-25 22:08:12 +00005467 OverloadCandidateSet& CandidateSet,
Douglas Gregor7ec77522010-04-16 17:33:27 +00005468 bool SuppressUserConversions) {
Douglas Gregor3f396022009-09-28 04:47:19 +00005469 if (!CandidateSet.isNewCandidate(FunctionTemplate))
5470 return;
5471
Douglas Gregore53060f2009-06-25 22:08:12 +00005472 // C++ [over.match.funcs]p7:
Mike Stump1eb44332009-09-09 15:08:12 +00005473 // In each case where a candidate is a function template, candidate
Douglas Gregore53060f2009-06-25 22:08:12 +00005474 // function template specializations are generated using template argument
Mike Stump1eb44332009-09-09 15:08:12 +00005475 // deduction (14.8.3, 14.8.2). Those candidates are then handled as
Douglas Gregore53060f2009-06-25 22:08:12 +00005476 // candidate functions in the usual way.113) A given name can refer to one
5477 // or more function templates and also to a set of overloaded non-template
5478 // functions. In such a case, the candidate functions generated from each
5479 // function template are combined with the set of non-template candidate
5480 // functions.
John McCall5769d612010-02-08 23:07:23 +00005481 TemplateDeductionInfo Info(Context, CandidateSet.getLocation());
Douglas Gregore53060f2009-06-25 22:08:12 +00005482 FunctionDecl *Specialization = 0;
5483 if (TemplateDeductionResult Result
Ahmed Charles13a140c2012-02-25 11:00:22 +00005484 = DeduceTemplateArguments(FunctionTemplate, ExplicitTemplateArgs, Args,
5485 Specialization, Info)) {
Benjamin Kramer0e6a16f2012-01-14 16:31:55 +00005486 OverloadCandidate &Candidate = CandidateSet.addCandidate();
John McCall9aa472c2010-03-19 07:35:19 +00005487 Candidate.FoundDecl = FoundDecl;
John McCall578b69b2009-12-16 08:11:27 +00005488 Candidate.Function = FunctionTemplate->getTemplatedDecl();
5489 Candidate.Viable = false;
John McCalladbb8f82010-01-13 09:16:55 +00005490 Candidate.FailureKind = ovl_fail_bad_deduction;
John McCall578b69b2009-12-16 08:11:27 +00005491 Candidate.IsSurrogate = false;
5492 Candidate.IgnoreObjectArgument = false;
Ahmed Charles13a140c2012-02-25 11:00:22 +00005493 Candidate.ExplicitCallArguments = Args.size();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005494 Candidate.DeductionFailure = MakeDeductionFailureInfo(Context, Result,
Douglas Gregorff5adac2010-05-08 20:18:54 +00005495 Info);
Douglas Gregore53060f2009-06-25 22:08:12 +00005496 return;
5497 }
Mike Stump1eb44332009-09-09 15:08:12 +00005498
Douglas Gregore53060f2009-06-25 22:08:12 +00005499 // Add the function template specialization produced by template argument
5500 // deduction as a candidate.
5501 assert(Specialization && "Missing function template specialization?");
Ahmed Charles13a140c2012-02-25 11:00:22 +00005502 AddOverloadCandidate(Specialization, FoundDecl, Args, CandidateSet,
Douglas Gregor7ec77522010-04-16 17:33:27 +00005503 SuppressUserConversions);
Douglas Gregore53060f2009-06-25 22:08:12 +00005504}
Mike Stump1eb44332009-09-09 15:08:12 +00005505
Douglas Gregorf1991ea2008-11-07 22:36:19 +00005506/// AddConversionCandidate - Add a C++ conversion function as a
Mike Stump1eb44332009-09-09 15:08:12 +00005507/// candidate in the candidate set (C++ [over.match.conv],
Douglas Gregorf1991ea2008-11-07 22:36:19 +00005508/// C++ [over.match.copy]). From is the expression we're converting from,
Mike Stump1eb44332009-09-09 15:08:12 +00005509/// and ToType is the type that we're eventually trying to convert to
Douglas Gregorf1991ea2008-11-07 22:36:19 +00005510/// (which may or may not be the same type as the type that the
5511/// conversion function produces).
5512void
5513Sema::AddConversionCandidate(CXXConversionDecl *Conversion,
John McCall9aa472c2010-03-19 07:35:19 +00005514 DeclAccessPair FoundDecl,
John McCall701c89e2009-12-03 04:06:58 +00005515 CXXRecordDecl *ActingContext,
Douglas Gregorf1991ea2008-11-07 22:36:19 +00005516 Expr *From, QualType ToType,
5517 OverloadCandidateSet& CandidateSet) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00005518 assert(!Conversion->getDescribedFunctionTemplate() &&
5519 "Conversion function templates use AddTemplateConversionCandidate");
Douglas Gregor3fbaf3e2010-04-17 22:01:05 +00005520 QualType ConvType = Conversion->getConversionType().getNonReferenceType();
Douglas Gregor3f396022009-09-28 04:47:19 +00005521 if (!CandidateSet.isNewCandidate(Conversion))
5522 return;
5523
Douglas Gregor7edfb692009-11-23 12:27:39 +00005524 // Overload resolution is always an unevaluated context.
John McCallf312b1e2010-08-26 23:41:50 +00005525 EnterExpressionEvaluationContext Unevaluated(*this, Sema::Unevaluated);
Douglas Gregor7edfb692009-11-23 12:27:39 +00005526
Douglas Gregorf1991ea2008-11-07 22:36:19 +00005527 // Add this candidate
Benjamin Kramer0e6a16f2012-01-14 16:31:55 +00005528 OverloadCandidate &Candidate = CandidateSet.addCandidate(1);
John McCall9aa472c2010-03-19 07:35:19 +00005529 Candidate.FoundDecl = FoundDecl;
Douglas Gregorf1991ea2008-11-07 22:36:19 +00005530 Candidate.Function = Conversion;
Douglas Gregor106c6eb2008-11-19 22:57:39 +00005531 Candidate.IsSurrogate = false;
Douglas Gregor88a35142008-12-22 05:46:06 +00005532 Candidate.IgnoreObjectArgument = false;
Douglas Gregorf1991ea2008-11-07 22:36:19 +00005533 Candidate.FinalConversion.setAsIdentityConversion();
Douglas Gregor3fbaf3e2010-04-17 22:01:05 +00005534 Candidate.FinalConversion.setFromType(ConvType);
Douglas Gregorad323a82010-01-27 03:51:04 +00005535 Candidate.FinalConversion.setAllToTypes(ToType);
Douglas Gregorf1991ea2008-11-07 22:36:19 +00005536 Candidate.Viable = true;
Douglas Gregordfc331e2011-01-19 23:54:39 +00005537 Candidate.ExplicitCallArguments = 1;
Douglas Gregorc774b2f2010-08-19 15:57:50 +00005538
Douglas Gregorbca39322010-08-19 15:37:02 +00005539 // C++ [over.match.funcs]p4:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005540 // For conversion functions, the function is considered to be a member of
5541 // the class of the implicit implied object argument for the purpose of
Douglas Gregorbca39322010-08-19 15:37:02 +00005542 // defining the type of the implicit object parameter.
Douglas Gregorc774b2f2010-08-19 15:57:50 +00005543 //
5544 // Determine the implicit conversion sequence for the implicit
5545 // object parameter.
5546 QualType ImplicitParamType = From->getType();
5547 if (const PointerType *FromPtrType = ImplicitParamType->getAs<PointerType>())
5548 ImplicitParamType = FromPtrType->getPointeeType();
5549 CXXRecordDecl *ConversionContext
5550 = cast<CXXRecordDecl>(ImplicitParamType->getAs<RecordType>()->getDecl());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005551
Douglas Gregorc774b2f2010-08-19 15:57:50 +00005552 Candidate.Conversions[0]
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005553 = TryObjectArgumentInitialization(*this, From->getType(),
5554 From->Classify(Context),
Douglas Gregor2c9a03f2011-01-26 19:30:28 +00005555 Conversion, ConversionContext);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005556
John McCall1d318332010-01-12 00:44:57 +00005557 if (Candidate.Conversions[0].isBad()) {
Douglas Gregorf1991ea2008-11-07 22:36:19 +00005558 Candidate.Viable = false;
John McCalladbb8f82010-01-13 09:16:55 +00005559 Candidate.FailureKind = ovl_fail_bad_conversion;
Douglas Gregorf1991ea2008-11-07 22:36:19 +00005560 return;
5561 }
Douglas Gregorc774b2f2010-08-19 15:57:50 +00005562
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005563 // We won't go through a user-define type conversion function to convert a
Fariborz Jahanian3759a032009-10-19 19:18:20 +00005564 // derived to base as such conversions are given Conversion Rank. They only
5565 // go through a copy constructor. 13.3.3.1.2-p4 [over.ics.user]
5566 QualType FromCanon
5567 = Context.getCanonicalType(From->getType().getUnqualifiedType());
5568 QualType ToCanon = Context.getCanonicalType(ToType).getUnqualifiedType();
5569 if (FromCanon == ToCanon || IsDerivedFrom(FromCanon, ToCanon)) {
5570 Candidate.Viable = false;
John McCall717e8912010-01-23 05:17:32 +00005571 Candidate.FailureKind = ovl_fail_trivial_conversion;
Fariborz Jahanian3759a032009-10-19 19:18:20 +00005572 return;
5573 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005574
Douglas Gregorf1991ea2008-11-07 22:36:19 +00005575 // To determine what the conversion from the result of calling the
5576 // conversion function to the type we're eventually trying to
5577 // convert to (ToType), we need to synthesize a call to the
5578 // conversion function and attempt copy initialization from it. This
5579 // makes sure that we get the right semantics with respect to
5580 // lvalues/rvalues and the type. Fortunately, we can allocate this
5581 // call on the stack and we don't need its arguments to be
5582 // well-formed.
Mike Stump1eb44332009-09-09 15:08:12 +00005583 DeclRefExpr ConversionRef(Conversion, Conversion->getType(),
John McCallf89e55a2010-11-18 06:31:45 +00005584 VK_LValue, From->getLocStart());
John McCallf871d0c2010-08-07 06:22:56 +00005585 ImplicitCastExpr ConversionFn(ImplicitCastExpr::OnStack,
5586 Context.getPointerType(Conversion->getType()),
John McCall2de56d12010-08-25 11:45:40 +00005587 CK_FunctionToPointerDecay,
John McCall5baba9d2010-08-25 10:28:54 +00005588 &ConversionRef, VK_RValue);
Mike Stump1eb44332009-09-09 15:08:12 +00005589
Richard Smith87c1f1f2011-07-13 22:53:21 +00005590 QualType ConversionType = Conversion->getConversionType();
5591 if (RequireCompleteType(From->getLocStart(), ConversionType, 0)) {
Douglas Gregor7d14d382010-11-13 19:36:57 +00005592 Candidate.Viable = false;
5593 Candidate.FailureKind = ovl_fail_bad_final_conversion;
5594 return;
5595 }
5596
Richard Smith87c1f1f2011-07-13 22:53:21 +00005597 ExprValueKind VK = Expr::getValueKindForType(ConversionType);
John McCallf89e55a2010-11-18 06:31:45 +00005598
Mike Stump1eb44332009-09-09 15:08:12 +00005599 // Note that it is safe to allocate CallExpr on the stack here because
Ted Kremenek668bf912009-02-09 20:51:47 +00005600 // there are 0 arguments (i.e., nothing is allocated using ASTContext's
5601 // allocator).
Richard Smith87c1f1f2011-07-13 22:53:21 +00005602 QualType CallResultType = ConversionType.getNonLValueExprType(Context);
John McCallf89e55a2010-11-18 06:31:45 +00005603 CallExpr Call(Context, &ConversionFn, 0, 0, CallResultType, VK,
Douglas Gregor0a0d1ac2009-11-17 21:16:22 +00005604 From->getLocStart());
Mike Stump1eb44332009-09-09 15:08:12 +00005605 ImplicitConversionSequence ICS =
Douglas Gregor74eb6582010-04-16 17:51:22 +00005606 TryCopyInitialization(*this, &Call, ToType,
Anders Carlssond28b4282009-08-27 17:18:13 +00005607 /*SuppressUserConversions=*/true,
John McCallf85e1932011-06-15 23:02:42 +00005608 /*InOverloadResolution=*/false,
5609 /*AllowObjCWritebackConversion=*/false);
Mike Stump1eb44332009-09-09 15:08:12 +00005610
John McCall1d318332010-01-12 00:44:57 +00005611 switch (ICS.getKind()) {
Douglas Gregorf1991ea2008-11-07 22:36:19 +00005612 case ImplicitConversionSequence::StandardConversion:
5613 Candidate.FinalConversion = ICS.Standard;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005614
Douglas Gregorc520c842010-04-12 23:42:09 +00005615 // C++ [over.ics.user]p3:
5616 // If the user-defined conversion is specified by a specialization of a
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005617 // conversion function template, the second standard conversion sequence
Douglas Gregorc520c842010-04-12 23:42:09 +00005618 // shall have exact match rank.
5619 if (Conversion->getPrimaryTemplate() &&
5620 GetConversionRank(ICS.Standard.Second) != ICR_Exact_Match) {
5621 Candidate.Viable = false;
5622 Candidate.FailureKind = ovl_fail_final_conversion_not_exact;
5623 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005624
Douglas Gregor2ad746a2011-01-21 05:18:22 +00005625 // C++0x [dcl.init.ref]p5:
5626 // In the second case, if the reference is an rvalue reference and
5627 // the second standard conversion sequence of the user-defined
5628 // conversion sequence includes an lvalue-to-rvalue conversion, the
5629 // program is ill-formed.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005630 if (ToType->isRValueReferenceType() &&
Douglas Gregor2ad746a2011-01-21 05:18:22 +00005631 ICS.Standard.First == ICK_Lvalue_To_Rvalue) {
5632 Candidate.Viable = false;
5633 Candidate.FailureKind = ovl_fail_bad_final_conversion;
5634 }
Douglas Gregorf1991ea2008-11-07 22:36:19 +00005635 break;
5636
5637 case ImplicitConversionSequence::BadConversion:
5638 Candidate.Viable = false;
John McCall717e8912010-01-23 05:17:32 +00005639 Candidate.FailureKind = ovl_fail_bad_final_conversion;
Douglas Gregorf1991ea2008-11-07 22:36:19 +00005640 break;
5641
5642 default:
David Blaikieb219cfc2011-09-23 05:06:16 +00005643 llvm_unreachable(
Douglas Gregorf1991ea2008-11-07 22:36:19 +00005644 "Can only end up with a standard conversion sequence or failure");
5645 }
5646}
5647
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00005648/// \brief Adds a conversion function template specialization
5649/// candidate to the overload set, using template argument deduction
5650/// to deduce the template arguments of the conversion function
5651/// template from the type that we are converting to (C++
5652/// [temp.deduct.conv]).
Mike Stump1eb44332009-09-09 15:08:12 +00005653void
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00005654Sema::AddTemplateConversionCandidate(FunctionTemplateDecl *FunctionTemplate,
John McCall9aa472c2010-03-19 07:35:19 +00005655 DeclAccessPair FoundDecl,
John McCall701c89e2009-12-03 04:06:58 +00005656 CXXRecordDecl *ActingDC,
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00005657 Expr *From, QualType ToType,
5658 OverloadCandidateSet &CandidateSet) {
5659 assert(isa<CXXConversionDecl>(FunctionTemplate->getTemplatedDecl()) &&
5660 "Only conversion function templates permitted here");
5661
Douglas Gregor3f396022009-09-28 04:47:19 +00005662 if (!CandidateSet.isNewCandidate(FunctionTemplate))
5663 return;
5664
John McCall5769d612010-02-08 23:07:23 +00005665 TemplateDeductionInfo Info(Context, CandidateSet.getLocation());
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00005666 CXXConversionDecl *Specialization = 0;
5667 if (TemplateDeductionResult Result
Mike Stump1eb44332009-09-09 15:08:12 +00005668 = DeduceTemplateArguments(FunctionTemplate, ToType,
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00005669 Specialization, Info)) {
Benjamin Kramer0e6a16f2012-01-14 16:31:55 +00005670 OverloadCandidate &Candidate = CandidateSet.addCandidate();
Douglas Gregorff5adac2010-05-08 20:18:54 +00005671 Candidate.FoundDecl = FoundDecl;
5672 Candidate.Function = FunctionTemplate->getTemplatedDecl();
5673 Candidate.Viable = false;
5674 Candidate.FailureKind = ovl_fail_bad_deduction;
5675 Candidate.IsSurrogate = false;
5676 Candidate.IgnoreObjectArgument = false;
Douglas Gregordfc331e2011-01-19 23:54:39 +00005677 Candidate.ExplicitCallArguments = 1;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005678 Candidate.DeductionFailure = MakeDeductionFailureInfo(Context, Result,
Douglas Gregorff5adac2010-05-08 20:18:54 +00005679 Info);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00005680 return;
5681 }
Mike Stump1eb44332009-09-09 15:08:12 +00005682
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00005683 // Add the conversion function template specialization produced by
5684 // template argument deduction as a candidate.
5685 assert(Specialization && "Missing function template specialization?");
John McCall9aa472c2010-03-19 07:35:19 +00005686 AddConversionCandidate(Specialization, FoundDecl, ActingDC, From, ToType,
John McCall86820f52010-01-26 01:37:31 +00005687 CandidateSet);
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00005688}
5689
Douglas Gregor106c6eb2008-11-19 22:57:39 +00005690/// AddSurrogateCandidate - Adds a "surrogate" candidate function that
5691/// converts the given @c Object to a function pointer via the
5692/// conversion function @c Conversion, and then attempts to call it
5693/// with the given arguments (C++ [over.call.object]p2-4). Proto is
5694/// the type of function that we'll eventually be calling.
5695void Sema::AddSurrogateCandidate(CXXConversionDecl *Conversion,
John McCall9aa472c2010-03-19 07:35:19 +00005696 DeclAccessPair FoundDecl,
John McCall701c89e2009-12-03 04:06:58 +00005697 CXXRecordDecl *ActingContext,
Douglas Gregor72564e72009-02-26 23:50:07 +00005698 const FunctionProtoType *Proto,
Douglas Gregor2c9a03f2011-01-26 19:30:28 +00005699 Expr *Object,
Ahmed Charles13a140c2012-02-25 11:00:22 +00005700 llvm::ArrayRef<Expr *> Args,
Douglas Gregor106c6eb2008-11-19 22:57:39 +00005701 OverloadCandidateSet& CandidateSet) {
Douglas Gregor3f396022009-09-28 04:47:19 +00005702 if (!CandidateSet.isNewCandidate(Conversion))
5703 return;
5704
Douglas Gregor7edfb692009-11-23 12:27:39 +00005705 // Overload resolution is always an unevaluated context.
John McCallf312b1e2010-08-26 23:41:50 +00005706 EnterExpressionEvaluationContext Unevaluated(*this, Sema::Unevaluated);
Douglas Gregor7edfb692009-11-23 12:27:39 +00005707
Ahmed Charles13a140c2012-02-25 11:00:22 +00005708 OverloadCandidate &Candidate = CandidateSet.addCandidate(Args.size() + 1);
John McCall9aa472c2010-03-19 07:35:19 +00005709 Candidate.FoundDecl = FoundDecl;
Douglas Gregor106c6eb2008-11-19 22:57:39 +00005710 Candidate.Function = 0;
5711 Candidate.Surrogate = Conversion;
5712 Candidate.Viable = true;
5713 Candidate.IsSurrogate = true;
Douglas Gregor88a35142008-12-22 05:46:06 +00005714 Candidate.IgnoreObjectArgument = false;
Ahmed Charles13a140c2012-02-25 11:00:22 +00005715 Candidate.ExplicitCallArguments = Args.size();
Douglas Gregor106c6eb2008-11-19 22:57:39 +00005716
5717 // Determine the implicit conversion sequence for the implicit
5718 // object parameter.
Mike Stump1eb44332009-09-09 15:08:12 +00005719 ImplicitConversionSequence ObjectInit
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005720 = TryObjectArgumentInitialization(*this, Object->getType(),
Douglas Gregor2c9a03f2011-01-26 19:30:28 +00005721 Object->Classify(Context),
5722 Conversion, ActingContext);
John McCall1d318332010-01-12 00:44:57 +00005723 if (ObjectInit.isBad()) {
Douglas Gregor106c6eb2008-11-19 22:57:39 +00005724 Candidate.Viable = false;
John McCalladbb8f82010-01-13 09:16:55 +00005725 Candidate.FailureKind = ovl_fail_bad_conversion;
John McCall717e8912010-01-23 05:17:32 +00005726 Candidate.Conversions[0] = ObjectInit;
Douglas Gregor106c6eb2008-11-19 22:57:39 +00005727 return;
5728 }
5729
5730 // The first conversion is actually a user-defined conversion whose
5731 // first conversion is ObjectInit's standard conversion (which is
5732 // effectively a reference binding). Record it as such.
John McCall1d318332010-01-12 00:44:57 +00005733 Candidate.Conversions[0].setUserDefined();
Douglas Gregor106c6eb2008-11-19 22:57:39 +00005734 Candidate.Conversions[0].UserDefined.Before = ObjectInit.Standard;
Fariborz Jahanian966256a2009-11-06 00:23:08 +00005735 Candidate.Conversions[0].UserDefined.EllipsisConversion = false;
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00005736 Candidate.Conversions[0].UserDefined.HadMultipleCandidates = false;
Douglas Gregor106c6eb2008-11-19 22:57:39 +00005737 Candidate.Conversions[0].UserDefined.ConversionFunction = Conversion;
John McCallca82a822011-09-21 08:36:56 +00005738 Candidate.Conversions[0].UserDefined.FoundConversionFunction = FoundDecl;
Mike Stump1eb44332009-09-09 15:08:12 +00005739 Candidate.Conversions[0].UserDefined.After
Douglas Gregor106c6eb2008-11-19 22:57:39 +00005740 = Candidate.Conversions[0].UserDefined.Before;
5741 Candidate.Conversions[0].UserDefined.After.setAsIdentityConversion();
5742
Mike Stump1eb44332009-09-09 15:08:12 +00005743 // Find the
Douglas Gregor106c6eb2008-11-19 22:57:39 +00005744 unsigned NumArgsInProto = Proto->getNumArgs();
5745
5746 // (C++ 13.3.2p2): A candidate function having fewer than m
5747 // parameters is viable only if it has an ellipsis in its parameter
5748 // list (8.3.5).
Ahmed Charles13a140c2012-02-25 11:00:22 +00005749 if (Args.size() > NumArgsInProto && !Proto->isVariadic()) {
Douglas Gregor106c6eb2008-11-19 22:57:39 +00005750 Candidate.Viable = false;
John McCalladbb8f82010-01-13 09:16:55 +00005751 Candidate.FailureKind = ovl_fail_too_many_arguments;
Douglas Gregor106c6eb2008-11-19 22:57:39 +00005752 return;
5753 }
5754
5755 // Function types don't have any default arguments, so just check if
5756 // we have enough arguments.
Ahmed Charles13a140c2012-02-25 11:00:22 +00005757 if (Args.size() < NumArgsInProto) {
Douglas Gregor106c6eb2008-11-19 22:57:39 +00005758 // Not enough arguments.
5759 Candidate.Viable = false;
John McCalladbb8f82010-01-13 09:16:55 +00005760 Candidate.FailureKind = ovl_fail_too_few_arguments;
Douglas Gregor106c6eb2008-11-19 22:57:39 +00005761 return;
5762 }
5763
5764 // Determine the implicit conversion sequences for each of the
5765 // arguments.
Ahmed Charles13a140c2012-02-25 11:00:22 +00005766 for (unsigned ArgIdx = 0; ArgIdx < Args.size(); ++ArgIdx) {
Douglas Gregor106c6eb2008-11-19 22:57:39 +00005767 if (ArgIdx < NumArgsInProto) {
5768 // (C++ 13.3.2p3): for F to be a viable function, there shall
5769 // exist for each argument an implicit conversion sequence
5770 // (13.3.3.1) that converts that argument to the corresponding
5771 // parameter of F.
5772 QualType ParamType = Proto->getArgType(ArgIdx);
Mike Stump1eb44332009-09-09 15:08:12 +00005773 Candidate.Conversions[ArgIdx + 1]
Douglas Gregor74eb6582010-04-16 17:51:22 +00005774 = TryCopyInitialization(*this, Args[ArgIdx], ParamType,
Anders Carlssond28b4282009-08-27 17:18:13 +00005775 /*SuppressUserConversions=*/false,
John McCallf85e1932011-06-15 23:02:42 +00005776 /*InOverloadResolution=*/false,
5777 /*AllowObjCWritebackConversion=*/
5778 getLangOptions().ObjCAutoRefCount);
John McCall1d318332010-01-12 00:44:57 +00005779 if (Candidate.Conversions[ArgIdx + 1].isBad()) {
Douglas Gregor106c6eb2008-11-19 22:57:39 +00005780 Candidate.Viable = false;
John McCalladbb8f82010-01-13 09:16:55 +00005781 Candidate.FailureKind = ovl_fail_bad_conversion;
Douglas Gregor106c6eb2008-11-19 22:57:39 +00005782 break;
5783 }
5784 } else {
5785 // (C++ 13.3.2p2): For the purposes of overload resolution, any
5786 // argument for which there is no corresponding parameter is
5787 // considered to ""match the ellipsis" (C+ 13.3.3.1.3).
John McCall1d318332010-01-12 00:44:57 +00005788 Candidate.Conversions[ArgIdx + 1].setEllipsis();
Douglas Gregor106c6eb2008-11-19 22:57:39 +00005789 }
5790 }
5791}
5792
Douglas Gregor063daf62009-03-13 18:40:31 +00005793/// \brief Add overload candidates for overloaded operators that are
5794/// member functions.
5795///
5796/// Add the overloaded operator candidates that are member functions
5797/// for the operator Op that was used in an operator expression such
5798/// as "x Op y". , Args/NumArgs provides the operator arguments, and
5799/// CandidateSet will store the added overload candidates. (C++
5800/// [over.match.oper]).
5801void Sema::AddMemberOperatorCandidates(OverloadedOperatorKind Op,
5802 SourceLocation OpLoc,
5803 Expr **Args, unsigned NumArgs,
5804 OverloadCandidateSet& CandidateSet,
5805 SourceRange OpRange) {
Douglas Gregor96176b32008-11-18 23:14:02 +00005806 DeclarationName OpName = Context.DeclarationNames.getCXXOperatorName(Op);
5807
5808 // C++ [over.match.oper]p3:
5809 // For a unary operator @ with an operand of a type whose
5810 // cv-unqualified version is T1, and for a binary operator @ with
5811 // a left operand of a type whose cv-unqualified version is T1 and
5812 // a right operand of a type whose cv-unqualified version is T2,
5813 // three sets of candidate functions, designated member
5814 // candidates, non-member candidates and built-in candidates, are
5815 // constructed as follows:
5816 QualType T1 = Args[0]->getType();
Douglas Gregor96176b32008-11-18 23:14:02 +00005817
5818 // -- If T1 is a class type, the set of member candidates is the
5819 // result of the qualified lookup of T1::operator@
5820 // (13.3.1.1.1); otherwise, the set of member candidates is
5821 // empty.
Ted Kremenek6217b802009-07-29 21:53:49 +00005822 if (const RecordType *T1Rec = T1->getAs<RecordType>()) {
Douglas Gregor8a5ae242009-08-27 23:35:55 +00005823 // Complete the type if it can be completed. Otherwise, we're done.
Anders Carlsson8c8d9192009-10-09 23:51:55 +00005824 if (RequireCompleteType(OpLoc, T1, PDiag()))
Douglas Gregor8a5ae242009-08-27 23:35:55 +00005825 return;
Mike Stump1eb44332009-09-09 15:08:12 +00005826
John McCalla24dc2e2009-11-17 02:14:36 +00005827 LookupResult Operators(*this, OpName, OpLoc, LookupOrdinaryName);
5828 LookupQualifiedName(Operators, T1Rec->getDecl());
5829 Operators.suppressDiagnostics();
5830
Mike Stump1eb44332009-09-09 15:08:12 +00005831 for (LookupResult::iterator Oper = Operators.begin(),
Douglas Gregor8a5ae242009-08-27 23:35:55 +00005832 OperEnd = Operators.end();
5833 Oper != OperEnd;
John McCall314be4e2009-11-17 07:50:12 +00005834 ++Oper)
John McCall9aa472c2010-03-19 07:35:19 +00005835 AddMethodCandidate(Oper.getPair(), Args[0]->getType(),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005836 Args[0]->Classify(Context), Args + 1, NumArgs - 1,
Douglas Gregor2c9a03f2011-01-26 19:30:28 +00005837 CandidateSet,
John McCall314be4e2009-11-17 07:50:12 +00005838 /* SuppressUserConversions = */ false);
Douglas Gregor96176b32008-11-18 23:14:02 +00005839 }
Douglas Gregor96176b32008-11-18 23:14:02 +00005840}
5841
Douglas Gregoreb8f3062008-11-12 17:17:38 +00005842/// AddBuiltinCandidate - Add a candidate for a built-in
5843/// operator. ResultTy and ParamTys are the result and parameter types
5844/// of the built-in candidate, respectively. Args and NumArgs are the
Douglas Gregor88b4bf22009-01-13 00:52:54 +00005845/// arguments being passed to the candidate. IsAssignmentOperator
5846/// should be true when this built-in candidate is an assignment
Douglas Gregor09f41cf2009-01-14 15:45:31 +00005847/// operator. NumContextualBoolArguments is the number of arguments
5848/// (at the beginning of the argument list) that will be contextually
5849/// converted to bool.
Mike Stump1eb44332009-09-09 15:08:12 +00005850void Sema::AddBuiltinCandidate(QualType ResultTy, QualType *ParamTys,
Douglas Gregoreb8f3062008-11-12 17:17:38 +00005851 Expr **Args, unsigned NumArgs,
Douglas Gregor88b4bf22009-01-13 00:52:54 +00005852 OverloadCandidateSet& CandidateSet,
Douglas Gregor09f41cf2009-01-14 15:45:31 +00005853 bool IsAssignmentOperator,
5854 unsigned NumContextualBoolArguments) {
Douglas Gregor7edfb692009-11-23 12:27:39 +00005855 // Overload resolution is always an unevaluated context.
John McCallf312b1e2010-08-26 23:41:50 +00005856 EnterExpressionEvaluationContext Unevaluated(*this, Sema::Unevaluated);
Douglas Gregor7edfb692009-11-23 12:27:39 +00005857
Douglas Gregoreb8f3062008-11-12 17:17:38 +00005858 // Add this candidate
Benjamin Kramer0e6a16f2012-01-14 16:31:55 +00005859 OverloadCandidate &Candidate = CandidateSet.addCandidate(NumArgs);
John McCall9aa472c2010-03-19 07:35:19 +00005860 Candidate.FoundDecl = DeclAccessPair::make(0, AS_none);
Douglas Gregoreb8f3062008-11-12 17:17:38 +00005861 Candidate.Function = 0;
Douglas Gregorc9467cf2008-12-12 02:00:36 +00005862 Candidate.IsSurrogate = false;
Douglas Gregor88a35142008-12-22 05:46:06 +00005863 Candidate.IgnoreObjectArgument = false;
Douglas Gregoreb8f3062008-11-12 17:17:38 +00005864 Candidate.BuiltinTypes.ResultTy = ResultTy;
5865 for (unsigned ArgIdx = 0; ArgIdx < NumArgs; ++ArgIdx)
5866 Candidate.BuiltinTypes.ParamTypes[ArgIdx] = ParamTys[ArgIdx];
5867
5868 // Determine the implicit conversion sequences for each of the
5869 // arguments.
5870 Candidate.Viable = true;
Douglas Gregordfc331e2011-01-19 23:54:39 +00005871 Candidate.ExplicitCallArguments = NumArgs;
Douglas Gregoreb8f3062008-11-12 17:17:38 +00005872 for (unsigned ArgIdx = 0; ArgIdx < NumArgs; ++ArgIdx) {
Douglas Gregor88b4bf22009-01-13 00:52:54 +00005873 // C++ [over.match.oper]p4:
5874 // For the built-in assignment operators, conversions of the
5875 // left operand are restricted as follows:
5876 // -- no temporaries are introduced to hold the left operand, and
5877 // -- no user-defined conversions are applied to the left
5878 // operand to achieve a type match with the left-most
Mike Stump1eb44332009-09-09 15:08:12 +00005879 // parameter of a built-in candidate.
Douglas Gregor88b4bf22009-01-13 00:52:54 +00005880 //
5881 // We block these conversions by turning off user-defined
5882 // conversions, since that is the only way that initialization of
5883 // a reference to a non-class type can occur from something that
5884 // is not of the same type.
Douglas Gregor09f41cf2009-01-14 15:45:31 +00005885 if (ArgIdx < NumContextualBoolArguments) {
Mike Stump1eb44332009-09-09 15:08:12 +00005886 assert(ParamTys[ArgIdx] == Context.BoolTy &&
Douglas Gregor09f41cf2009-01-14 15:45:31 +00005887 "Contextual conversion to bool requires bool type");
John McCall120d63c2010-08-24 20:38:10 +00005888 Candidate.Conversions[ArgIdx]
5889 = TryContextuallyConvertToBool(*this, Args[ArgIdx]);
Douglas Gregor09f41cf2009-01-14 15:45:31 +00005890 } else {
Mike Stump1eb44332009-09-09 15:08:12 +00005891 Candidate.Conversions[ArgIdx]
Douglas Gregor74eb6582010-04-16 17:51:22 +00005892 = TryCopyInitialization(*this, Args[ArgIdx], ParamTys[ArgIdx],
Anders Carlssond28b4282009-08-27 17:18:13 +00005893 ArgIdx == 0 && IsAssignmentOperator,
John McCallf85e1932011-06-15 23:02:42 +00005894 /*InOverloadResolution=*/false,
5895 /*AllowObjCWritebackConversion=*/
5896 getLangOptions().ObjCAutoRefCount);
Douglas Gregor09f41cf2009-01-14 15:45:31 +00005897 }
John McCall1d318332010-01-12 00:44:57 +00005898 if (Candidate.Conversions[ArgIdx].isBad()) {
Douglas Gregoreb8f3062008-11-12 17:17:38 +00005899 Candidate.Viable = false;
John McCalladbb8f82010-01-13 09:16:55 +00005900 Candidate.FailureKind = ovl_fail_bad_conversion;
Douglas Gregor96176b32008-11-18 23:14:02 +00005901 break;
5902 }
Douglas Gregoreb8f3062008-11-12 17:17:38 +00005903 }
5904}
5905
5906/// BuiltinCandidateTypeSet - A set of types that will be used for the
5907/// candidate operator functions for built-in operators (C++
5908/// [over.built]). The types are separated into pointer types and
5909/// enumeration types.
5910class BuiltinCandidateTypeSet {
5911 /// TypeSet - A set of types.
Chris Lattnere37b94c2009-03-29 00:04:01 +00005912 typedef llvm::SmallPtrSet<QualType, 8> TypeSet;
Douglas Gregoreb8f3062008-11-12 17:17:38 +00005913
5914 /// PointerTypes - The set of pointer types that will be used in the
5915 /// built-in candidates.
5916 TypeSet PointerTypes;
5917
Sebastian Redl78eb8742009-04-19 21:53:20 +00005918 /// MemberPointerTypes - The set of member pointer types that will be
5919 /// used in the built-in candidates.
5920 TypeSet MemberPointerTypes;
5921
Douglas Gregoreb8f3062008-11-12 17:17:38 +00005922 /// EnumerationTypes - The set of enumeration types that will be
5923 /// used in the built-in candidates.
5924 TypeSet EnumerationTypes;
5925
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005926 /// \brief The set of vector types that will be used in the built-in
Douglas Gregor26bcf672010-05-19 03:21:00 +00005927 /// candidates.
5928 TypeSet VectorTypes;
Chandler Carruth6a577462010-12-13 01:44:01 +00005929
5930 /// \brief A flag indicating non-record types are viable candidates
5931 bool HasNonRecordTypes;
5932
5933 /// \brief A flag indicating whether either arithmetic or enumeration types
5934 /// were present in the candidate set.
5935 bool HasArithmeticOrEnumeralTypes;
5936
Douglas Gregor84ee2ee2011-05-21 23:15:46 +00005937 /// \brief A flag indicating whether the nullptr type was present in the
5938 /// candidate set.
5939 bool HasNullPtrType;
5940
Douglas Gregor5842ba92009-08-24 15:23:48 +00005941 /// Sema - The semantic analysis instance where we are building the
5942 /// candidate type set.
5943 Sema &SemaRef;
Mike Stump1eb44332009-09-09 15:08:12 +00005944
Douglas Gregoreb8f3062008-11-12 17:17:38 +00005945 /// Context - The AST context in which we will build the type sets.
5946 ASTContext &Context;
5947
Fariborz Jahanian1cad6022009-10-16 22:08:05 +00005948 bool AddPointerWithMoreQualifiedTypeVariants(QualType Ty,
5949 const Qualifiers &VisibleQuals);
Sebastian Redl78eb8742009-04-19 21:53:20 +00005950 bool AddMemberPointerWithMoreQualifiedTypeVariants(QualType Ty);
Douglas Gregoreb8f3062008-11-12 17:17:38 +00005951
5952public:
5953 /// iterator - Iterates through the types that are part of the set.
Chris Lattnere37b94c2009-03-29 00:04:01 +00005954 typedef TypeSet::iterator iterator;
Douglas Gregoreb8f3062008-11-12 17:17:38 +00005955
Mike Stump1eb44332009-09-09 15:08:12 +00005956 BuiltinCandidateTypeSet(Sema &SemaRef)
Chandler Carruth6a577462010-12-13 01:44:01 +00005957 : HasNonRecordTypes(false),
5958 HasArithmeticOrEnumeralTypes(false),
Douglas Gregor84ee2ee2011-05-21 23:15:46 +00005959 HasNullPtrType(false),
Chandler Carruth6a577462010-12-13 01:44:01 +00005960 SemaRef(SemaRef),
5961 Context(SemaRef.Context) { }
Douglas Gregoreb8f3062008-11-12 17:17:38 +00005962
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005963 void AddTypesConvertedFrom(QualType Ty,
Douglas Gregor573d9c32009-10-21 23:19:44 +00005964 SourceLocation Loc,
5965 bool AllowUserConversions,
Fariborz Jahaniana9cca892009-10-15 17:14:05 +00005966 bool AllowExplicitConversions,
5967 const Qualifiers &VisibleTypeConversionsQuals);
Douglas Gregoreb8f3062008-11-12 17:17:38 +00005968
5969 /// pointer_begin - First pointer type found;
5970 iterator pointer_begin() { return PointerTypes.begin(); }
5971
Sebastian Redl78eb8742009-04-19 21:53:20 +00005972 /// pointer_end - Past the last pointer type found;
Douglas Gregoreb8f3062008-11-12 17:17:38 +00005973 iterator pointer_end() { return PointerTypes.end(); }
5974
Sebastian Redl78eb8742009-04-19 21:53:20 +00005975 /// member_pointer_begin - First member pointer type found;
5976 iterator member_pointer_begin() { return MemberPointerTypes.begin(); }
5977
5978 /// member_pointer_end - Past the last member pointer type found;
5979 iterator member_pointer_end() { return MemberPointerTypes.end(); }
5980
Douglas Gregoreb8f3062008-11-12 17:17:38 +00005981 /// enumeration_begin - First enumeration type found;
5982 iterator enumeration_begin() { return EnumerationTypes.begin(); }
5983
Sebastian Redl78eb8742009-04-19 21:53:20 +00005984 /// enumeration_end - Past the last enumeration type found;
Douglas Gregoreb8f3062008-11-12 17:17:38 +00005985 iterator enumeration_end() { return EnumerationTypes.end(); }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00005986
Douglas Gregor26bcf672010-05-19 03:21:00 +00005987 iterator vector_begin() { return VectorTypes.begin(); }
5988 iterator vector_end() { return VectorTypes.end(); }
Chandler Carruth6a577462010-12-13 01:44:01 +00005989
5990 bool hasNonRecordTypes() { return HasNonRecordTypes; }
5991 bool hasArithmeticOrEnumeralTypes() { return HasArithmeticOrEnumeralTypes; }
Douglas Gregor84ee2ee2011-05-21 23:15:46 +00005992 bool hasNullPtrType() const { return HasNullPtrType; }
Douglas Gregoreb8f3062008-11-12 17:17:38 +00005993};
5994
Sebastian Redl78eb8742009-04-19 21:53:20 +00005995/// AddPointerWithMoreQualifiedTypeVariants - Add the pointer type @p Ty to
Douglas Gregoreb8f3062008-11-12 17:17:38 +00005996/// the set of pointer types along with any more-qualified variants of
5997/// that type. For example, if @p Ty is "int const *", this routine
5998/// will add "int const *", "int const volatile *", "int const
5999/// restrict *", and "int const volatile restrict *" to the set of
6000/// pointer types. Returns true if the add of @p Ty itself succeeded,
6001/// false otherwise.
John McCall0953e762009-09-24 19:53:00 +00006002///
6003/// FIXME: what to do about extended qualifiers?
Sebastian Redl78eb8742009-04-19 21:53:20 +00006004bool
Douglas Gregor573d9c32009-10-21 23:19:44 +00006005BuiltinCandidateTypeSet::AddPointerWithMoreQualifiedTypeVariants(QualType Ty,
6006 const Qualifiers &VisibleQuals) {
John McCall0953e762009-09-24 19:53:00 +00006007
Douglas Gregoreb8f3062008-11-12 17:17:38 +00006008 // Insert this type.
Chris Lattnere37b94c2009-03-29 00:04:01 +00006009 if (!PointerTypes.insert(Ty))
Douglas Gregoreb8f3062008-11-12 17:17:38 +00006010 return false;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006011
Fariborz Jahanian2e2acec2010-08-21 00:10:36 +00006012 QualType PointeeTy;
John McCall0953e762009-09-24 19:53:00 +00006013 const PointerType *PointerTy = Ty->getAs<PointerType>();
Fariborz Jahanian957b4df2010-08-21 17:11:09 +00006014 bool buildObjCPtr = false;
Fariborz Jahanian2e2acec2010-08-21 00:10:36 +00006015 if (!PointerTy) {
Fariborz Jahanian957b4df2010-08-21 17:11:09 +00006016 if (const ObjCObjectPointerType *PTy = Ty->getAs<ObjCObjectPointerType>()) {
Fariborz Jahanian2e2acec2010-08-21 00:10:36 +00006017 PointeeTy = PTy->getPointeeType();
Fariborz Jahanian957b4df2010-08-21 17:11:09 +00006018 buildObjCPtr = true;
6019 }
Fariborz Jahanian2e2acec2010-08-21 00:10:36 +00006020 else
David Blaikieb219cfc2011-09-23 05:06:16 +00006021 llvm_unreachable("type was not a pointer type!");
Fariborz Jahanian2e2acec2010-08-21 00:10:36 +00006022 }
6023 else
6024 PointeeTy = PointerTy->getPointeeType();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006025
Sebastian Redla9efada2009-11-18 20:39:26 +00006026 // Don't add qualified variants of arrays. For one, they're not allowed
6027 // (the qualifier would sink to the element type), and for another, the
6028 // only overload situation where it matters is subscript or pointer +- int,
6029 // and those shouldn't have qualifier variants anyway.
6030 if (PointeeTy->isArrayType())
6031 return true;
John McCall0953e762009-09-24 19:53:00 +00006032 unsigned BaseCVR = PointeeTy.getCVRQualifiers();
Douglas Gregor89c49f02009-11-09 22:08:55 +00006033 if (const ConstantArrayType *Array =Context.getAsConstantArrayType(PointeeTy))
Fariborz Jahaniand411b3f2009-11-09 21:02:05 +00006034 BaseCVR = Array->getElementType().getCVRQualifiers();
Fariborz Jahanian1cad6022009-10-16 22:08:05 +00006035 bool hasVolatile = VisibleQuals.hasVolatile();
6036 bool hasRestrict = VisibleQuals.hasRestrict();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006037
John McCall0953e762009-09-24 19:53:00 +00006038 // Iterate through all strict supersets of BaseCVR.
6039 for (unsigned CVR = BaseCVR+1; CVR <= Qualifiers::CVRMask; ++CVR) {
6040 if ((CVR | BaseCVR) != CVR) continue;
Fariborz Jahanian1cad6022009-10-16 22:08:05 +00006041 // Skip over Volatile/Restrict if no Volatile/Restrict found anywhere
6042 // in the types.
6043 if ((CVR & Qualifiers::Volatile) && !hasVolatile) continue;
6044 if ((CVR & Qualifiers::Restrict) && !hasRestrict) continue;
John McCall0953e762009-09-24 19:53:00 +00006045 QualType QPointeeTy = Context.getCVRQualifiedType(PointeeTy, CVR);
Fariborz Jahanian957b4df2010-08-21 17:11:09 +00006046 if (!buildObjCPtr)
6047 PointerTypes.insert(Context.getPointerType(QPointeeTy));
6048 else
6049 PointerTypes.insert(Context.getObjCObjectPointerType(QPointeeTy));
Douglas Gregoreb8f3062008-11-12 17:17:38 +00006050 }
6051
6052 return true;
6053}
6054
Sebastian Redl78eb8742009-04-19 21:53:20 +00006055/// AddMemberPointerWithMoreQualifiedTypeVariants - Add the pointer type @p Ty
6056/// to the set of pointer types along with any more-qualified variants of
6057/// that type. For example, if @p Ty is "int const *", this routine
6058/// will add "int const *", "int const volatile *", "int const
6059/// restrict *", and "int const volatile restrict *" to the set of
6060/// pointer types. Returns true if the add of @p Ty itself succeeded,
6061/// false otherwise.
John McCall0953e762009-09-24 19:53:00 +00006062///
6063/// FIXME: what to do about extended qualifiers?
Sebastian Redl78eb8742009-04-19 21:53:20 +00006064bool
6065BuiltinCandidateTypeSet::AddMemberPointerWithMoreQualifiedTypeVariants(
6066 QualType Ty) {
6067 // Insert this type.
6068 if (!MemberPointerTypes.insert(Ty))
6069 return false;
6070
John McCall0953e762009-09-24 19:53:00 +00006071 const MemberPointerType *PointerTy = Ty->getAs<MemberPointerType>();
6072 assert(PointerTy && "type was not a member pointer type!");
Sebastian Redl78eb8742009-04-19 21:53:20 +00006073
John McCall0953e762009-09-24 19:53:00 +00006074 QualType PointeeTy = PointerTy->getPointeeType();
Sebastian Redla9efada2009-11-18 20:39:26 +00006075 // Don't add qualified variants of arrays. For one, they're not allowed
6076 // (the qualifier would sink to the element type), and for another, the
6077 // only overload situation where it matters is subscript or pointer +- int,
6078 // and those shouldn't have qualifier variants anyway.
6079 if (PointeeTy->isArrayType())
6080 return true;
John McCall0953e762009-09-24 19:53:00 +00006081 const Type *ClassTy = PointerTy->getClass();
6082
6083 // Iterate through all strict supersets of the pointee type's CVR
6084 // qualifiers.
6085 unsigned BaseCVR = PointeeTy.getCVRQualifiers();
6086 for (unsigned CVR = BaseCVR+1; CVR <= Qualifiers::CVRMask; ++CVR) {
6087 if ((CVR | BaseCVR) != CVR) continue;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006088
John McCall0953e762009-09-24 19:53:00 +00006089 QualType QPointeeTy = Context.getCVRQualifiedType(PointeeTy, CVR);
Chandler Carruth6df868e2010-12-12 08:17:55 +00006090 MemberPointerTypes.insert(
6091 Context.getMemberPointerType(QPointeeTy, ClassTy));
Sebastian Redl78eb8742009-04-19 21:53:20 +00006092 }
6093
6094 return true;
6095}
6096
Douglas Gregoreb8f3062008-11-12 17:17:38 +00006097/// AddTypesConvertedFrom - Add each of the types to which the type @p
6098/// Ty can be implicit converted to the given set of @p Types. We're
Sebastian Redl78eb8742009-04-19 21:53:20 +00006099/// primarily interested in pointer types and enumeration types. We also
6100/// take member pointer types, for the conditional operator.
Douglas Gregor09f41cf2009-01-14 15:45:31 +00006101/// AllowUserConversions is true if we should look at the conversion
6102/// functions of a class type, and AllowExplicitConversions if we
6103/// should also include the explicit conversion functions of a class
6104/// type.
Mike Stump1eb44332009-09-09 15:08:12 +00006105void
Douglas Gregor09f41cf2009-01-14 15:45:31 +00006106BuiltinCandidateTypeSet::AddTypesConvertedFrom(QualType Ty,
Douglas Gregor573d9c32009-10-21 23:19:44 +00006107 SourceLocation Loc,
Douglas Gregor09f41cf2009-01-14 15:45:31 +00006108 bool AllowUserConversions,
Fariborz Jahaniana9cca892009-10-15 17:14:05 +00006109 bool AllowExplicitConversions,
6110 const Qualifiers &VisibleQuals) {
Douglas Gregoreb8f3062008-11-12 17:17:38 +00006111 // Only deal with canonical types.
6112 Ty = Context.getCanonicalType(Ty);
6113
6114 // Look through reference types; they aren't part of the type of an
6115 // expression for the purposes of conversions.
Ted Kremenek6217b802009-07-29 21:53:49 +00006116 if (const ReferenceType *RefTy = Ty->getAs<ReferenceType>())
Douglas Gregoreb8f3062008-11-12 17:17:38 +00006117 Ty = RefTy->getPointeeType();
6118
John McCall3b657512011-01-19 10:06:00 +00006119 // If we're dealing with an array type, decay to the pointer.
6120 if (Ty->isArrayType())
6121 Ty = SemaRef.Context.getArrayDecayedType(Ty);
6122
6123 // Otherwise, we don't care about qualifiers on the type.
Douglas Gregora4923eb2009-11-16 21:35:15 +00006124 Ty = Ty.getLocalUnqualifiedType();
Douglas Gregoreb8f3062008-11-12 17:17:38 +00006125
Chandler Carruth6a577462010-12-13 01:44:01 +00006126 // Flag if we ever add a non-record type.
6127 const RecordType *TyRec = Ty->getAs<RecordType>();
6128 HasNonRecordTypes = HasNonRecordTypes || !TyRec;
6129
Chandler Carruth6a577462010-12-13 01:44:01 +00006130 // Flag if we encounter an arithmetic type.
6131 HasArithmeticOrEnumeralTypes =
6132 HasArithmeticOrEnumeralTypes || Ty->isArithmeticType();
6133
Fariborz Jahanian2e2acec2010-08-21 00:10:36 +00006134 if (Ty->isObjCIdType() || Ty->isObjCClassType())
6135 PointerTypes.insert(Ty);
6136 else if (Ty->getAs<PointerType>() || Ty->getAs<ObjCObjectPointerType>()) {
Douglas Gregoreb8f3062008-11-12 17:17:38 +00006137 // Insert our type, and its more-qualified variants, into the set
6138 // of types.
Fariborz Jahanian1cad6022009-10-16 22:08:05 +00006139 if (!AddPointerWithMoreQualifiedTypeVariants(Ty, VisibleQuals))
Douglas Gregoreb8f3062008-11-12 17:17:38 +00006140 return;
Sebastian Redl78eb8742009-04-19 21:53:20 +00006141 } else if (Ty->isMemberPointerType()) {
6142 // Member pointers are far easier, since the pointee can't be converted.
6143 if (!AddMemberPointerWithMoreQualifiedTypeVariants(Ty))
6144 return;
Douglas Gregoreb8f3062008-11-12 17:17:38 +00006145 } else if (Ty->isEnumeralType()) {
Chandler Carruth6a577462010-12-13 01:44:01 +00006146 HasArithmeticOrEnumeralTypes = true;
Chris Lattnere37b94c2009-03-29 00:04:01 +00006147 EnumerationTypes.insert(Ty);
Douglas Gregor26bcf672010-05-19 03:21:00 +00006148 } else if (Ty->isVectorType()) {
Chandler Carruth6a577462010-12-13 01:44:01 +00006149 // We treat vector types as arithmetic types in many contexts as an
6150 // extension.
6151 HasArithmeticOrEnumeralTypes = true;
Douglas Gregor26bcf672010-05-19 03:21:00 +00006152 VectorTypes.insert(Ty);
Douglas Gregor84ee2ee2011-05-21 23:15:46 +00006153 } else if (Ty->isNullPtrType()) {
6154 HasNullPtrType = true;
Chandler Carruth6a577462010-12-13 01:44:01 +00006155 } else if (AllowUserConversions && TyRec) {
6156 // No conversion functions in incomplete types.
6157 if (SemaRef.RequireCompleteType(Loc, Ty, 0))
6158 return;
Mike Stump1eb44332009-09-09 15:08:12 +00006159
Chandler Carruth6a577462010-12-13 01:44:01 +00006160 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(TyRec->getDecl());
6161 const UnresolvedSetImpl *Conversions
6162 = ClassDecl->getVisibleConversionFunctions();
6163 for (UnresolvedSetImpl::iterator I = Conversions->begin(),
6164 E = Conversions->end(); I != E; ++I) {
6165 NamedDecl *D = I.getDecl();
6166 if (isa<UsingShadowDecl>(D))
6167 D = cast<UsingShadowDecl>(D)->getTargetDecl();
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00006168
Chandler Carruth6a577462010-12-13 01:44:01 +00006169 // Skip conversion function templates; they don't tell us anything
6170 // about which builtin types we can convert to.
6171 if (isa<FunctionTemplateDecl>(D))
6172 continue;
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00006173
Chandler Carruth6a577462010-12-13 01:44:01 +00006174 CXXConversionDecl *Conv = cast<CXXConversionDecl>(D);
6175 if (AllowExplicitConversions || !Conv->isExplicit()) {
6176 AddTypesConvertedFrom(Conv->getConversionType(), Loc, false, false,
6177 VisibleQuals);
Douglas Gregoreb8f3062008-11-12 17:17:38 +00006178 }
6179 }
6180 }
6181}
6182
Douglas Gregor19b7b152009-08-24 13:43:27 +00006183/// \brief Helper function for AddBuiltinOperatorCandidates() that adds
6184/// the volatile- and non-volatile-qualified assignment operators for the
6185/// given type to the candidate set.
6186static void AddBuiltinAssignmentOperatorCandidates(Sema &S,
6187 QualType T,
Mike Stump1eb44332009-09-09 15:08:12 +00006188 Expr **Args,
Douglas Gregor19b7b152009-08-24 13:43:27 +00006189 unsigned NumArgs,
6190 OverloadCandidateSet &CandidateSet) {
6191 QualType ParamTypes[2];
Mike Stump1eb44332009-09-09 15:08:12 +00006192
Douglas Gregor19b7b152009-08-24 13:43:27 +00006193 // T& operator=(T&, T)
6194 ParamTypes[0] = S.Context.getLValueReferenceType(T);
6195 ParamTypes[1] = T;
6196 S.AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, 2, CandidateSet,
6197 /*IsAssignmentOperator=*/true);
Mike Stump1eb44332009-09-09 15:08:12 +00006198
Douglas Gregor19b7b152009-08-24 13:43:27 +00006199 if (!S.Context.getCanonicalType(T).isVolatileQualified()) {
6200 // volatile T& operator=(volatile T&, T)
John McCall0953e762009-09-24 19:53:00 +00006201 ParamTypes[0]
6202 = S.Context.getLValueReferenceType(S.Context.getVolatileType(T));
Douglas Gregor19b7b152009-08-24 13:43:27 +00006203 ParamTypes[1] = T;
6204 S.AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, 2, CandidateSet,
Mike Stump1eb44332009-09-09 15:08:12 +00006205 /*IsAssignmentOperator=*/true);
Douglas Gregor19b7b152009-08-24 13:43:27 +00006206 }
6207}
Mike Stump1eb44332009-09-09 15:08:12 +00006208
Sebastian Redl9994a342009-10-25 17:03:50 +00006209/// CollectVRQualifiers - This routine returns Volatile/Restrict qualifiers,
6210/// if any, found in visible type conversion functions found in ArgExpr's type.
Fariborz Jahaniana9cca892009-10-15 17:14:05 +00006211static Qualifiers CollectVRQualifiers(ASTContext &Context, Expr* ArgExpr) {
6212 Qualifiers VRQuals;
6213 const RecordType *TyRec;
6214 if (const MemberPointerType *RHSMPType =
6215 ArgExpr->getType()->getAs<MemberPointerType>())
Douglas Gregorb86cf0c2010-04-25 00:55:24 +00006216 TyRec = RHSMPType->getClass()->getAs<RecordType>();
Fariborz Jahaniana9cca892009-10-15 17:14:05 +00006217 else
6218 TyRec = ArgExpr->getType()->getAs<RecordType>();
6219 if (!TyRec) {
Fariborz Jahanian1cad6022009-10-16 22:08:05 +00006220 // Just to be safe, assume the worst case.
Fariborz Jahaniana9cca892009-10-15 17:14:05 +00006221 VRQuals.addVolatile();
6222 VRQuals.addRestrict();
6223 return VRQuals;
6224 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006225
Fariborz Jahaniana9cca892009-10-15 17:14:05 +00006226 CXXRecordDecl *ClassDecl = cast<CXXRecordDecl>(TyRec->getDecl());
John McCall86ff3082010-02-04 22:26:26 +00006227 if (!ClassDecl->hasDefinition())
6228 return VRQuals;
6229
John McCalleec51cf2010-01-20 00:46:10 +00006230 const UnresolvedSetImpl *Conversions =
Sebastian Redl9994a342009-10-25 17:03:50 +00006231 ClassDecl->getVisibleConversionFunctions();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006232
John McCalleec51cf2010-01-20 00:46:10 +00006233 for (UnresolvedSetImpl::iterator I = Conversions->begin(),
John McCallba135432009-11-21 08:51:07 +00006234 E = Conversions->end(); I != E; ++I) {
John McCall32daa422010-03-31 01:36:47 +00006235 NamedDecl *D = I.getDecl();
6236 if (isa<UsingShadowDecl>(D))
6237 D = cast<UsingShadowDecl>(D)->getTargetDecl();
6238 if (CXXConversionDecl *Conv = dyn_cast<CXXConversionDecl>(D)) {
Fariborz Jahaniana9cca892009-10-15 17:14:05 +00006239 QualType CanTy = Context.getCanonicalType(Conv->getConversionType());
6240 if (const ReferenceType *ResTypeRef = CanTy->getAs<ReferenceType>())
6241 CanTy = ResTypeRef->getPointeeType();
6242 // Need to go down the pointer/mempointer chain and add qualifiers
6243 // as see them.
6244 bool done = false;
6245 while (!done) {
6246 if (const PointerType *ResTypePtr = CanTy->getAs<PointerType>())
6247 CanTy = ResTypePtr->getPointeeType();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006248 else if (const MemberPointerType *ResTypeMPtr =
Fariborz Jahaniana9cca892009-10-15 17:14:05 +00006249 CanTy->getAs<MemberPointerType>())
6250 CanTy = ResTypeMPtr->getPointeeType();
6251 else
6252 done = true;
6253 if (CanTy.isVolatileQualified())
6254 VRQuals.addVolatile();
6255 if (CanTy.isRestrictQualified())
6256 VRQuals.addRestrict();
6257 if (VRQuals.hasRestrict() && VRQuals.hasVolatile())
6258 return VRQuals;
6259 }
6260 }
6261 }
6262 return VRQuals;
6263}
John McCall00071ec2010-11-13 05:51:15 +00006264
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006265namespace {
John McCall00071ec2010-11-13 05:51:15 +00006266
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006267/// \brief Helper class to manage the addition of builtin operator overload
6268/// candidates. It provides shared state and utility methods used throughout
6269/// the process, as well as a helper method to add each group of builtin
6270/// operator overloads from the standard to a candidate set.
6271class BuiltinOperatorOverloadBuilder {
Chandler Carruth6d695582010-12-12 10:35:00 +00006272 // Common instance state available to all overload candidate addition methods.
6273 Sema &S;
6274 Expr **Args;
6275 unsigned NumArgs;
6276 Qualifiers VisibleTypeConversionsQuals;
Chandler Carruth6a577462010-12-13 01:44:01 +00006277 bool HasArithmeticOrEnumeralCandidateType;
Chris Lattner5f9e2722011-07-23 10:55:15 +00006278 SmallVectorImpl<BuiltinCandidateTypeSet> &CandidateTypes;
Chandler Carruth6d695582010-12-12 10:35:00 +00006279 OverloadCandidateSet &CandidateSet;
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006280
Chandler Carruth6d695582010-12-12 10:35:00 +00006281 // Define some constants used to index and iterate over the arithemetic types
6282 // provided via the getArithmeticType() method below.
John McCall00071ec2010-11-13 05:51:15 +00006283 // The "promoted arithmetic types" are the arithmetic
6284 // types are that preserved by promotion (C++ [over.built]p2).
John McCall00071ec2010-11-13 05:51:15 +00006285 static const unsigned FirstIntegralType = 3;
6286 static const unsigned LastIntegralType = 18;
6287 static const unsigned FirstPromotedIntegralType = 3,
6288 LastPromotedIntegralType = 9;
6289 static const unsigned FirstPromotedArithmeticType = 0,
6290 LastPromotedArithmeticType = 9;
6291 static const unsigned NumArithmeticTypes = 18;
6292
Chandler Carruth6d695582010-12-12 10:35:00 +00006293 /// \brief Get the canonical type for a given arithmetic type index.
6294 CanQualType getArithmeticType(unsigned index) {
6295 assert(index < NumArithmeticTypes);
6296 static CanQualType ASTContext::* const
6297 ArithmeticTypes[NumArithmeticTypes] = {
6298 // Start of promoted types.
6299 &ASTContext::FloatTy,
6300 &ASTContext::DoubleTy,
6301 &ASTContext::LongDoubleTy,
John McCall00071ec2010-11-13 05:51:15 +00006302
Chandler Carruth6d695582010-12-12 10:35:00 +00006303 // Start of integral types.
6304 &ASTContext::IntTy,
6305 &ASTContext::LongTy,
6306 &ASTContext::LongLongTy,
6307 &ASTContext::UnsignedIntTy,
6308 &ASTContext::UnsignedLongTy,
6309 &ASTContext::UnsignedLongLongTy,
6310 // End of promoted types.
6311
6312 &ASTContext::BoolTy,
6313 &ASTContext::CharTy,
6314 &ASTContext::WCharTy,
6315 &ASTContext::Char16Ty,
6316 &ASTContext::Char32Ty,
6317 &ASTContext::SignedCharTy,
6318 &ASTContext::ShortTy,
6319 &ASTContext::UnsignedCharTy,
6320 &ASTContext::UnsignedShortTy,
6321 // End of integral types.
6322 // FIXME: What about complex?
6323 };
6324 return S.Context.*ArithmeticTypes[index];
6325 }
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006326
Chandler Carruth38ca8d12010-12-12 09:59:53 +00006327 /// \brief Gets the canonical type resulting from the usual arithemetic
6328 /// converions for the given arithmetic types.
6329 CanQualType getUsualArithmeticConversions(unsigned L, unsigned R) {
6330 // Accelerator table for performing the usual arithmetic conversions.
6331 // The rules are basically:
6332 // - if either is floating-point, use the wider floating-point
6333 // - if same signedness, use the higher rank
6334 // - if same size, use unsigned of the higher rank
6335 // - use the larger type
6336 // These rules, together with the axiom that higher ranks are
6337 // never smaller, are sufficient to precompute all of these results
6338 // *except* when dealing with signed types of higher rank.
6339 // (we could precompute SLL x UI for all known platforms, but it's
6340 // better not to make any assumptions).
6341 enum PromotedType {
6342 Flt, Dbl, LDbl, SI, SL, SLL, UI, UL, ULL, Dep=-1
6343 };
6344 static PromotedType ConversionsTable[LastPromotedArithmeticType]
6345 [LastPromotedArithmeticType] = {
6346 /* Flt*/ { Flt, Dbl, LDbl, Flt, Flt, Flt, Flt, Flt, Flt },
6347 /* Dbl*/ { Dbl, Dbl, LDbl, Dbl, Dbl, Dbl, Dbl, Dbl, Dbl },
6348 /*LDbl*/ { LDbl, LDbl, LDbl, LDbl, LDbl, LDbl, LDbl, LDbl, LDbl },
6349 /* SI*/ { Flt, Dbl, LDbl, SI, SL, SLL, UI, UL, ULL },
6350 /* SL*/ { Flt, Dbl, LDbl, SL, SL, SLL, Dep, UL, ULL },
6351 /* SLL*/ { Flt, Dbl, LDbl, SLL, SLL, SLL, Dep, Dep, ULL },
6352 /* UI*/ { Flt, Dbl, LDbl, UI, Dep, Dep, UI, UL, ULL },
6353 /* UL*/ { Flt, Dbl, LDbl, UL, UL, Dep, UL, UL, ULL },
6354 /* ULL*/ { Flt, Dbl, LDbl, ULL, ULL, ULL, ULL, ULL, ULL },
6355 };
6356
6357 assert(L < LastPromotedArithmeticType);
6358 assert(R < LastPromotedArithmeticType);
6359 int Idx = ConversionsTable[L][R];
6360
6361 // Fast path: the table gives us a concrete answer.
Chandler Carruth6d695582010-12-12 10:35:00 +00006362 if (Idx != Dep) return getArithmeticType(Idx);
Chandler Carruth38ca8d12010-12-12 09:59:53 +00006363
6364 // Slow path: we need to compare widths.
6365 // An invariant is that the signed type has higher rank.
Chandler Carruth6d695582010-12-12 10:35:00 +00006366 CanQualType LT = getArithmeticType(L),
6367 RT = getArithmeticType(R);
Chandler Carruth38ca8d12010-12-12 09:59:53 +00006368 unsigned LW = S.Context.getIntWidth(LT),
6369 RW = S.Context.getIntWidth(RT);
6370
6371 // If they're different widths, use the signed type.
6372 if (LW > RW) return LT;
6373 else if (LW < RW) return RT;
6374
6375 // Otherwise, use the unsigned type of the signed type's rank.
6376 if (L == SL || R == SL) return S.Context.UnsignedLongTy;
6377 assert(L == SLL || R == SLL);
6378 return S.Context.UnsignedLongLongTy;
6379 }
6380
Chandler Carruth3c69dc42010-12-12 09:22:45 +00006381 /// \brief Helper method to factor out the common pattern of adding overloads
6382 /// for '++' and '--' builtin operators.
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006383 void addPlusPlusMinusMinusStyleOverloads(QualType CandidateTy,
6384 bool HasVolatile) {
6385 QualType ParamTypes[2] = {
6386 S.Context.getLValueReferenceType(CandidateTy),
6387 S.Context.IntTy
6388 };
6389
6390 // Non-volatile version.
6391 if (NumArgs == 1)
6392 S.AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, 1, CandidateSet);
6393 else
6394 S.AddBuiltinCandidate(CandidateTy, ParamTypes, Args, 2, CandidateSet);
6395
6396 // Use a heuristic to reduce number of builtin candidates in the set:
6397 // add volatile version only if there are conversions to a volatile type.
6398 if (HasVolatile) {
6399 ParamTypes[0] =
6400 S.Context.getLValueReferenceType(
6401 S.Context.getVolatileType(CandidateTy));
6402 if (NumArgs == 1)
6403 S.AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, 1, CandidateSet);
6404 else
6405 S.AddBuiltinCandidate(CandidateTy, ParamTypes, Args, 2, CandidateSet);
6406 }
6407 }
6408
6409public:
6410 BuiltinOperatorOverloadBuilder(
6411 Sema &S, Expr **Args, unsigned NumArgs,
6412 Qualifiers VisibleTypeConversionsQuals,
Chandler Carruth6a577462010-12-13 01:44:01 +00006413 bool HasArithmeticOrEnumeralCandidateType,
Chris Lattner5f9e2722011-07-23 10:55:15 +00006414 SmallVectorImpl<BuiltinCandidateTypeSet> &CandidateTypes,
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006415 OverloadCandidateSet &CandidateSet)
6416 : S(S), Args(Args), NumArgs(NumArgs),
6417 VisibleTypeConversionsQuals(VisibleTypeConversionsQuals),
Chandler Carruth6a577462010-12-13 01:44:01 +00006418 HasArithmeticOrEnumeralCandidateType(
6419 HasArithmeticOrEnumeralCandidateType),
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006420 CandidateTypes(CandidateTypes),
6421 CandidateSet(CandidateSet) {
6422 // Validate some of our static helper constants in debug builds.
Chandler Carruth6d695582010-12-12 10:35:00 +00006423 assert(getArithmeticType(FirstPromotedIntegralType) == S.Context.IntTy &&
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006424 "Invalid first promoted integral type");
Chandler Carruth6d695582010-12-12 10:35:00 +00006425 assert(getArithmeticType(LastPromotedIntegralType - 1)
6426 == S.Context.UnsignedLongLongTy &&
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006427 "Invalid last promoted integral type");
Chandler Carruth6d695582010-12-12 10:35:00 +00006428 assert(getArithmeticType(FirstPromotedArithmeticType)
6429 == S.Context.FloatTy &&
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006430 "Invalid first promoted arithmetic type");
Chandler Carruth6d695582010-12-12 10:35:00 +00006431 assert(getArithmeticType(LastPromotedArithmeticType - 1)
6432 == S.Context.UnsignedLongLongTy &&
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006433 "Invalid last promoted arithmetic type");
6434 }
6435
6436 // C++ [over.built]p3:
6437 //
6438 // For every pair (T, VQ), where T is an arithmetic type, and VQ
6439 // is either volatile or empty, there exist candidate operator
6440 // functions of the form
6441 //
6442 // VQ T& operator++(VQ T&);
6443 // T operator++(VQ T&, int);
6444 //
6445 // C++ [over.built]p4:
6446 //
6447 // For every pair (T, VQ), where T is an arithmetic type other
6448 // than bool, and VQ is either volatile or empty, there exist
6449 // candidate operator functions of the form
6450 //
6451 // VQ T& operator--(VQ T&);
6452 // T operator--(VQ T&, int);
6453 void addPlusPlusMinusMinusArithmeticOverloads(OverloadedOperatorKind Op) {
Chandler Carruth6a577462010-12-13 01:44:01 +00006454 if (!HasArithmeticOrEnumeralCandidateType)
6455 return;
6456
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006457 for (unsigned Arith = (Op == OO_PlusPlus? 0 : 1);
6458 Arith < NumArithmeticTypes; ++Arith) {
6459 addPlusPlusMinusMinusStyleOverloads(
Chandler Carruth6d695582010-12-12 10:35:00 +00006460 getArithmeticType(Arith),
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006461 VisibleTypeConversionsQuals.hasVolatile());
6462 }
6463 }
6464
6465 // C++ [over.built]p5:
6466 //
6467 // For every pair (T, VQ), where T is a cv-qualified or
6468 // cv-unqualified object type, and VQ is either volatile or
6469 // empty, there exist candidate operator functions of the form
6470 //
6471 // T*VQ& operator++(T*VQ&);
6472 // T*VQ& operator--(T*VQ&);
6473 // T* operator++(T*VQ&, int);
6474 // T* operator--(T*VQ&, int);
6475 void addPlusPlusMinusMinusPointerOverloads() {
6476 for (BuiltinCandidateTypeSet::iterator
6477 Ptr = CandidateTypes[0].pointer_begin(),
6478 PtrEnd = CandidateTypes[0].pointer_end();
6479 Ptr != PtrEnd; ++Ptr) {
6480 // Skip pointer types that aren't pointers to object types.
Douglas Gregor2fdc5e82011-01-05 00:13:17 +00006481 if (!(*Ptr)->getPointeeType()->isObjectType())
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006482 continue;
6483
6484 addPlusPlusMinusMinusStyleOverloads(*Ptr,
6485 (!S.Context.getCanonicalType(*Ptr).isVolatileQualified() &&
6486 VisibleTypeConversionsQuals.hasVolatile()));
6487 }
6488 }
6489
6490 // C++ [over.built]p6:
6491 // For every cv-qualified or cv-unqualified object type T, there
6492 // exist candidate operator functions of the form
6493 //
6494 // T& operator*(T*);
6495 //
6496 // C++ [over.built]p7:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006497 // For every function type T that does not have cv-qualifiers or a
Douglas Gregor2c9a03f2011-01-26 19:30:28 +00006498 // ref-qualifier, there exist candidate operator functions of the form
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006499 // T& operator*(T*);
6500 void addUnaryStarPointerOverloads() {
6501 for (BuiltinCandidateTypeSet::iterator
6502 Ptr = CandidateTypes[0].pointer_begin(),
6503 PtrEnd = CandidateTypes[0].pointer_end();
6504 Ptr != PtrEnd; ++Ptr) {
6505 QualType ParamTy = *Ptr;
6506 QualType PointeeTy = ParamTy->getPointeeType();
Douglas Gregor2fdc5e82011-01-05 00:13:17 +00006507 if (!PointeeTy->isObjectType() && !PointeeTy->isFunctionType())
6508 continue;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006509
Douglas Gregor2c9a03f2011-01-26 19:30:28 +00006510 if (const FunctionProtoType *Proto =PointeeTy->getAs<FunctionProtoType>())
6511 if (Proto->getTypeQuals() || Proto->getRefQualifier())
6512 continue;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00006513
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006514 S.AddBuiltinCandidate(S.Context.getLValueReferenceType(PointeeTy),
6515 &ParamTy, Args, 1, CandidateSet);
6516 }
6517 }
6518
6519 // C++ [over.built]p9:
6520 // For every promoted arithmetic type T, there exist candidate
6521 // operator functions of the form
6522 //
6523 // T operator+(T);
6524 // T operator-(T);
6525 void addUnaryPlusOrMinusArithmeticOverloads() {
Chandler Carruth6a577462010-12-13 01:44:01 +00006526 if (!HasArithmeticOrEnumeralCandidateType)
6527 return;
6528
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006529 for (unsigned Arith = FirstPromotedArithmeticType;
6530 Arith < LastPromotedArithmeticType; ++Arith) {
Chandler Carruth6d695582010-12-12 10:35:00 +00006531 QualType ArithTy = getArithmeticType(Arith);
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006532 S.AddBuiltinCandidate(ArithTy, &ArithTy, Args, 1, CandidateSet);
6533 }
6534
6535 // Extension: We also add these operators for vector types.
6536 for (BuiltinCandidateTypeSet::iterator
6537 Vec = CandidateTypes[0].vector_begin(),
6538 VecEnd = CandidateTypes[0].vector_end();
6539 Vec != VecEnd; ++Vec) {
6540 QualType VecTy = *Vec;
6541 S.AddBuiltinCandidate(VecTy, &VecTy, Args, 1, CandidateSet);
6542 }
6543 }
6544
6545 // C++ [over.built]p8:
6546 // For every type T, there exist candidate operator functions of
6547 // the form
6548 //
6549 // T* operator+(T*);
6550 void addUnaryPlusPointerOverloads() {
6551 for (BuiltinCandidateTypeSet::iterator
6552 Ptr = CandidateTypes[0].pointer_begin(),
6553 PtrEnd = CandidateTypes[0].pointer_end();
6554 Ptr != PtrEnd; ++Ptr) {
6555 QualType ParamTy = *Ptr;
6556 S.AddBuiltinCandidate(ParamTy, &ParamTy, Args, 1, CandidateSet);
6557 }
6558 }
6559
6560 // C++ [over.built]p10:
6561 // For every promoted integral type T, there exist candidate
6562 // operator functions of the form
6563 //
6564 // T operator~(T);
6565 void addUnaryTildePromotedIntegralOverloads() {
Chandler Carruth6a577462010-12-13 01:44:01 +00006566 if (!HasArithmeticOrEnumeralCandidateType)
6567 return;
6568
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006569 for (unsigned Int = FirstPromotedIntegralType;
6570 Int < LastPromotedIntegralType; ++Int) {
Chandler Carruth6d695582010-12-12 10:35:00 +00006571 QualType IntTy = getArithmeticType(Int);
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006572 S.AddBuiltinCandidate(IntTy, &IntTy, Args, 1, CandidateSet);
6573 }
6574
6575 // Extension: We also add this operator for vector types.
6576 for (BuiltinCandidateTypeSet::iterator
6577 Vec = CandidateTypes[0].vector_begin(),
6578 VecEnd = CandidateTypes[0].vector_end();
6579 Vec != VecEnd; ++Vec) {
6580 QualType VecTy = *Vec;
6581 S.AddBuiltinCandidate(VecTy, &VecTy, Args, 1, CandidateSet);
6582 }
6583 }
6584
6585 // C++ [over.match.oper]p16:
6586 // For every pointer to member type T, there exist candidate operator
6587 // functions of the form
6588 //
6589 // bool operator==(T,T);
6590 // bool operator!=(T,T);
6591 void addEqualEqualOrNotEqualMemberPointerOverloads() {
6592 /// Set of (canonical) types that we've already handled.
6593 llvm::SmallPtrSet<QualType, 8> AddedTypes;
6594
6595 for (unsigned ArgIdx = 0; ArgIdx < NumArgs; ++ArgIdx) {
6596 for (BuiltinCandidateTypeSet::iterator
6597 MemPtr = CandidateTypes[ArgIdx].member_pointer_begin(),
6598 MemPtrEnd = CandidateTypes[ArgIdx].member_pointer_end();
6599 MemPtr != MemPtrEnd;
6600 ++MemPtr) {
6601 // Don't add the same builtin candidate twice.
6602 if (!AddedTypes.insert(S.Context.getCanonicalType(*MemPtr)))
6603 continue;
6604
6605 QualType ParamTypes[2] = { *MemPtr, *MemPtr };
6606 S.AddBuiltinCandidate(S.Context.BoolTy, ParamTypes, Args, 2,
6607 CandidateSet);
6608 }
6609 }
6610 }
6611
6612 // C++ [over.built]p15:
6613 //
Douglas Gregor84ee2ee2011-05-21 23:15:46 +00006614 // For every T, where T is an enumeration type, a pointer type, or
6615 // std::nullptr_t, there exist candidate operator functions of the form
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006616 //
6617 // bool operator<(T, T);
6618 // bool operator>(T, T);
6619 // bool operator<=(T, T);
6620 // bool operator>=(T, T);
6621 // bool operator==(T, T);
6622 // bool operator!=(T, T);
Chandler Carruth7b80b4b2010-12-12 09:14:11 +00006623 void addRelationalPointerOrEnumeralOverloads() {
6624 // C++ [over.built]p1:
6625 // If there is a user-written candidate with the same name and parameter
6626 // types as a built-in candidate operator function, the built-in operator
6627 // function is hidden and is not included in the set of candidate
6628 // functions.
6629 //
6630 // The text is actually in a note, but if we don't implement it then we end
6631 // up with ambiguities when the user provides an overloaded operator for
6632 // an enumeration type. Note that only enumeration types have this problem,
6633 // so we track which enumeration types we've seen operators for. Also, the
6634 // only other overloaded operator with enumeration argumenst, operator=,
6635 // cannot be overloaded for enumeration types, so this is the only place
6636 // where we must suppress candidates like this.
6637 llvm::DenseSet<std::pair<CanQualType, CanQualType> >
6638 UserDefinedBinaryOperators;
6639
6640 for (unsigned ArgIdx = 0; ArgIdx < NumArgs; ++ArgIdx) {
6641 if (CandidateTypes[ArgIdx].enumeration_begin() !=
6642 CandidateTypes[ArgIdx].enumeration_end()) {
6643 for (OverloadCandidateSet::iterator C = CandidateSet.begin(),
6644 CEnd = CandidateSet.end();
6645 C != CEnd; ++C) {
6646 if (!C->Viable || !C->Function || C->Function->getNumParams() != 2)
6647 continue;
6648
6649 QualType FirstParamType =
6650 C->Function->getParamDecl(0)->getType().getUnqualifiedType();
6651 QualType SecondParamType =
6652 C->Function->getParamDecl(1)->getType().getUnqualifiedType();
6653
6654 // Skip if either parameter isn't of enumeral type.
6655 if (!FirstParamType->isEnumeralType() ||
6656 !SecondParamType->isEnumeralType())
6657 continue;
6658
6659 // Add this operator to the set of known user-defined operators.
6660 UserDefinedBinaryOperators.insert(
6661 std::make_pair(S.Context.getCanonicalType(FirstParamType),
6662 S.Context.getCanonicalType(SecondParamType)));
6663 }
6664 }
6665 }
6666
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006667 /// Set of (canonical) types that we've already handled.
6668 llvm::SmallPtrSet<QualType, 8> AddedTypes;
6669
6670 for (unsigned ArgIdx = 0; ArgIdx < NumArgs; ++ArgIdx) {
6671 for (BuiltinCandidateTypeSet::iterator
6672 Ptr = CandidateTypes[ArgIdx].pointer_begin(),
6673 PtrEnd = CandidateTypes[ArgIdx].pointer_end();
6674 Ptr != PtrEnd; ++Ptr) {
6675 // Don't add the same builtin candidate twice.
6676 if (!AddedTypes.insert(S.Context.getCanonicalType(*Ptr)))
6677 continue;
6678
6679 QualType ParamTypes[2] = { *Ptr, *Ptr };
6680 S.AddBuiltinCandidate(S.Context.BoolTy, ParamTypes, Args, 2,
6681 CandidateSet);
6682 }
6683 for (BuiltinCandidateTypeSet::iterator
6684 Enum = CandidateTypes[ArgIdx].enumeration_begin(),
6685 EnumEnd = CandidateTypes[ArgIdx].enumeration_end();
6686 Enum != EnumEnd; ++Enum) {
6687 CanQualType CanonType = S.Context.getCanonicalType(*Enum);
6688
Chandler Carruth7b80b4b2010-12-12 09:14:11 +00006689 // Don't add the same builtin candidate twice, or if a user defined
6690 // candidate exists.
6691 if (!AddedTypes.insert(CanonType) ||
6692 UserDefinedBinaryOperators.count(std::make_pair(CanonType,
6693 CanonType)))
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006694 continue;
6695
6696 QualType ParamTypes[2] = { *Enum, *Enum };
Chandler Carruth7b80b4b2010-12-12 09:14:11 +00006697 S.AddBuiltinCandidate(S.Context.BoolTy, ParamTypes, Args, 2,
6698 CandidateSet);
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006699 }
Douglas Gregor84ee2ee2011-05-21 23:15:46 +00006700
6701 if (CandidateTypes[ArgIdx].hasNullPtrType()) {
6702 CanQualType NullPtrTy = S.Context.getCanonicalType(S.Context.NullPtrTy);
6703 if (AddedTypes.insert(NullPtrTy) &&
6704 !UserDefinedBinaryOperators.count(std::make_pair(NullPtrTy,
6705 NullPtrTy))) {
6706 QualType ParamTypes[2] = { NullPtrTy, NullPtrTy };
6707 S.AddBuiltinCandidate(S.Context.BoolTy, ParamTypes, Args, 2,
6708 CandidateSet);
6709 }
6710 }
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006711 }
6712 }
6713
6714 // C++ [over.built]p13:
6715 //
6716 // For every cv-qualified or cv-unqualified object type T
6717 // there exist candidate operator functions of the form
6718 //
6719 // T* operator+(T*, ptrdiff_t);
6720 // T& operator[](T*, ptrdiff_t); [BELOW]
6721 // T* operator-(T*, ptrdiff_t);
6722 // T* operator+(ptrdiff_t, T*);
6723 // T& operator[](ptrdiff_t, T*); [BELOW]
6724 //
6725 // C++ [over.built]p14:
6726 //
6727 // For every T, where T is a pointer to object type, there
6728 // exist candidate operator functions of the form
6729 //
6730 // ptrdiff_t operator-(T, T);
6731 void addBinaryPlusOrMinusPointerOverloads(OverloadedOperatorKind Op) {
6732 /// Set of (canonical) types that we've already handled.
6733 llvm::SmallPtrSet<QualType, 8> AddedTypes;
6734
6735 for (int Arg = 0; Arg < 2; ++Arg) {
6736 QualType AsymetricParamTypes[2] = {
6737 S.Context.getPointerDiffType(),
6738 S.Context.getPointerDiffType(),
6739 };
6740 for (BuiltinCandidateTypeSet::iterator
6741 Ptr = CandidateTypes[Arg].pointer_begin(),
6742 PtrEnd = CandidateTypes[Arg].pointer_end();
6743 Ptr != PtrEnd; ++Ptr) {
Douglas Gregor2fdc5e82011-01-05 00:13:17 +00006744 QualType PointeeTy = (*Ptr)->getPointeeType();
6745 if (!PointeeTy->isObjectType())
6746 continue;
6747
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006748 AsymetricParamTypes[Arg] = *Ptr;
6749 if (Arg == 0 || Op == OO_Plus) {
6750 // operator+(T*, ptrdiff_t) or operator-(T*, ptrdiff_t)
6751 // T* operator+(ptrdiff_t, T*);
6752 S.AddBuiltinCandidate(*Ptr, AsymetricParamTypes, Args, 2,
6753 CandidateSet);
6754 }
6755 if (Op == OO_Minus) {
6756 // ptrdiff_t operator-(T, T);
6757 if (!AddedTypes.insert(S.Context.getCanonicalType(*Ptr)))
6758 continue;
6759
6760 QualType ParamTypes[2] = { *Ptr, *Ptr };
6761 S.AddBuiltinCandidate(S.Context.getPointerDiffType(), ParamTypes,
6762 Args, 2, CandidateSet);
6763 }
6764 }
6765 }
6766 }
6767
6768 // C++ [over.built]p12:
6769 //
6770 // For every pair of promoted arithmetic types L and R, there
6771 // exist candidate operator functions of the form
6772 //
6773 // LR operator*(L, R);
6774 // LR operator/(L, R);
6775 // LR operator+(L, R);
6776 // LR operator-(L, R);
6777 // bool operator<(L, R);
6778 // bool operator>(L, R);
6779 // bool operator<=(L, R);
6780 // bool operator>=(L, R);
6781 // bool operator==(L, R);
6782 // bool operator!=(L, R);
6783 //
6784 // where LR is the result of the usual arithmetic conversions
6785 // between types L and R.
6786 //
6787 // C++ [over.built]p24:
6788 //
6789 // For every pair of promoted arithmetic types L and R, there exist
6790 // candidate operator functions of the form
6791 //
6792 // LR operator?(bool, L, R);
6793 //
6794 // where LR is the result of the usual arithmetic conversions
6795 // between types L and R.
6796 // Our candidates ignore the first parameter.
6797 void addGenericBinaryArithmeticOverloads(bool isComparison) {
Chandler Carruth6a577462010-12-13 01:44:01 +00006798 if (!HasArithmeticOrEnumeralCandidateType)
6799 return;
6800
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006801 for (unsigned Left = FirstPromotedArithmeticType;
6802 Left < LastPromotedArithmeticType; ++Left) {
6803 for (unsigned Right = FirstPromotedArithmeticType;
6804 Right < LastPromotedArithmeticType; ++Right) {
Chandler Carruth6d695582010-12-12 10:35:00 +00006805 QualType LandR[2] = { getArithmeticType(Left),
6806 getArithmeticType(Right) };
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006807 QualType Result =
6808 isComparison ? S.Context.BoolTy
Chandler Carruth38ca8d12010-12-12 09:59:53 +00006809 : getUsualArithmeticConversions(Left, Right);
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006810 S.AddBuiltinCandidate(Result, LandR, Args, 2, CandidateSet);
6811 }
6812 }
6813
6814 // Extension: Add the binary operators ==, !=, <, <=, >=, >, *, /, and the
6815 // conditional operator for vector types.
6816 for (BuiltinCandidateTypeSet::iterator
6817 Vec1 = CandidateTypes[0].vector_begin(),
6818 Vec1End = CandidateTypes[0].vector_end();
6819 Vec1 != Vec1End; ++Vec1) {
6820 for (BuiltinCandidateTypeSet::iterator
6821 Vec2 = CandidateTypes[1].vector_begin(),
6822 Vec2End = CandidateTypes[1].vector_end();
6823 Vec2 != Vec2End; ++Vec2) {
6824 QualType LandR[2] = { *Vec1, *Vec2 };
6825 QualType Result = S.Context.BoolTy;
6826 if (!isComparison) {
6827 if ((*Vec1)->isExtVectorType() || !(*Vec2)->isExtVectorType())
6828 Result = *Vec1;
6829 else
6830 Result = *Vec2;
6831 }
6832
6833 S.AddBuiltinCandidate(Result, LandR, Args, 2, CandidateSet);
6834 }
6835 }
6836 }
6837
6838 // C++ [over.built]p17:
6839 //
6840 // For every pair of promoted integral types L and R, there
6841 // exist candidate operator functions of the form
6842 //
6843 // LR operator%(L, R);
6844 // LR operator&(L, R);
6845 // LR operator^(L, R);
6846 // LR operator|(L, R);
6847 // L operator<<(L, R);
6848 // L operator>>(L, R);
6849 //
6850 // where LR is the result of the usual arithmetic conversions
6851 // between types L and R.
6852 void addBinaryBitwiseArithmeticOverloads(OverloadedOperatorKind Op) {
Chandler Carruth6a577462010-12-13 01:44:01 +00006853 if (!HasArithmeticOrEnumeralCandidateType)
6854 return;
6855
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006856 for (unsigned Left = FirstPromotedIntegralType;
6857 Left < LastPromotedIntegralType; ++Left) {
6858 for (unsigned Right = FirstPromotedIntegralType;
6859 Right < LastPromotedIntegralType; ++Right) {
Chandler Carruth6d695582010-12-12 10:35:00 +00006860 QualType LandR[2] = { getArithmeticType(Left),
6861 getArithmeticType(Right) };
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006862 QualType Result = (Op == OO_LessLess || Op == OO_GreaterGreater)
6863 ? LandR[0]
Chandler Carruth38ca8d12010-12-12 09:59:53 +00006864 : getUsualArithmeticConversions(Left, Right);
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006865 S.AddBuiltinCandidate(Result, LandR, Args, 2, CandidateSet);
6866 }
6867 }
6868 }
6869
6870 // C++ [over.built]p20:
6871 //
6872 // For every pair (T, VQ), where T is an enumeration or
6873 // pointer to member type and VQ is either volatile or
6874 // empty, there exist candidate operator functions of the form
6875 //
6876 // VQ T& operator=(VQ T&, T);
6877 void addAssignmentMemberPointerOrEnumeralOverloads() {
6878 /// Set of (canonical) types that we've already handled.
6879 llvm::SmallPtrSet<QualType, 8> AddedTypes;
6880
6881 for (unsigned ArgIdx = 0; ArgIdx < 2; ++ArgIdx) {
6882 for (BuiltinCandidateTypeSet::iterator
6883 Enum = CandidateTypes[ArgIdx].enumeration_begin(),
6884 EnumEnd = CandidateTypes[ArgIdx].enumeration_end();
6885 Enum != EnumEnd; ++Enum) {
6886 if (!AddedTypes.insert(S.Context.getCanonicalType(*Enum)))
6887 continue;
6888
6889 AddBuiltinAssignmentOperatorCandidates(S, *Enum, Args, 2,
6890 CandidateSet);
6891 }
6892
6893 for (BuiltinCandidateTypeSet::iterator
6894 MemPtr = CandidateTypes[ArgIdx].member_pointer_begin(),
6895 MemPtrEnd = CandidateTypes[ArgIdx].member_pointer_end();
6896 MemPtr != MemPtrEnd; ++MemPtr) {
6897 if (!AddedTypes.insert(S.Context.getCanonicalType(*MemPtr)))
6898 continue;
6899
6900 AddBuiltinAssignmentOperatorCandidates(S, *MemPtr, Args, 2,
6901 CandidateSet);
6902 }
6903 }
6904 }
6905
6906 // C++ [over.built]p19:
6907 //
6908 // For every pair (T, VQ), where T is any type and VQ is either
6909 // volatile or empty, there exist candidate operator functions
6910 // of the form
6911 //
6912 // T*VQ& operator=(T*VQ&, T*);
6913 //
6914 // C++ [over.built]p21:
6915 //
6916 // For every pair (T, VQ), where T is a cv-qualified or
6917 // cv-unqualified object type and VQ is either volatile or
6918 // empty, there exist candidate operator functions of the form
6919 //
6920 // T*VQ& operator+=(T*VQ&, ptrdiff_t);
6921 // T*VQ& operator-=(T*VQ&, ptrdiff_t);
6922 void addAssignmentPointerOverloads(bool isEqualOp) {
6923 /// Set of (canonical) types that we've already handled.
6924 llvm::SmallPtrSet<QualType, 8> AddedTypes;
6925
6926 for (BuiltinCandidateTypeSet::iterator
6927 Ptr = CandidateTypes[0].pointer_begin(),
6928 PtrEnd = CandidateTypes[0].pointer_end();
6929 Ptr != PtrEnd; ++Ptr) {
6930 // If this is operator=, keep track of the builtin candidates we added.
6931 if (isEqualOp)
6932 AddedTypes.insert(S.Context.getCanonicalType(*Ptr));
Douglas Gregor2fdc5e82011-01-05 00:13:17 +00006933 else if (!(*Ptr)->getPointeeType()->isObjectType())
6934 continue;
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006935
6936 // non-volatile version
6937 QualType ParamTypes[2] = {
6938 S.Context.getLValueReferenceType(*Ptr),
6939 isEqualOp ? *Ptr : S.Context.getPointerDiffType(),
6940 };
6941 S.AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, 2, CandidateSet,
6942 /*IsAssigmentOperator=*/ isEqualOp);
6943
6944 if (!S.Context.getCanonicalType(*Ptr).isVolatileQualified() &&
6945 VisibleTypeConversionsQuals.hasVolatile()) {
6946 // volatile version
6947 ParamTypes[0] =
6948 S.Context.getLValueReferenceType(S.Context.getVolatileType(*Ptr));
6949 S.AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, 2, CandidateSet,
6950 /*IsAssigmentOperator=*/isEqualOp);
6951 }
6952 }
6953
6954 if (isEqualOp) {
6955 for (BuiltinCandidateTypeSet::iterator
6956 Ptr = CandidateTypes[1].pointer_begin(),
6957 PtrEnd = CandidateTypes[1].pointer_end();
6958 Ptr != PtrEnd; ++Ptr) {
6959 // Make sure we don't add the same candidate twice.
6960 if (!AddedTypes.insert(S.Context.getCanonicalType(*Ptr)))
6961 continue;
6962
Chandler Carruth6df868e2010-12-12 08:17:55 +00006963 QualType ParamTypes[2] = {
6964 S.Context.getLValueReferenceType(*Ptr),
6965 *Ptr,
6966 };
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006967
6968 // non-volatile version
6969 S.AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, 2, CandidateSet,
6970 /*IsAssigmentOperator=*/true);
6971
6972 if (!S.Context.getCanonicalType(*Ptr).isVolatileQualified() &&
6973 VisibleTypeConversionsQuals.hasVolatile()) {
6974 // volatile version
6975 ParamTypes[0] =
6976 S.Context.getLValueReferenceType(S.Context.getVolatileType(*Ptr));
Chandler Carruth6df868e2010-12-12 08:17:55 +00006977 S.AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, 2,
6978 CandidateSet, /*IsAssigmentOperator=*/true);
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00006979 }
6980 }
6981 }
6982 }
6983
6984 // C++ [over.built]p18:
6985 //
6986 // For every triple (L, VQ, R), where L is an arithmetic type,
6987 // VQ is either volatile or empty, and R is a promoted
6988 // arithmetic type, there exist candidate operator functions of
6989 // the form
6990 //
6991 // VQ L& operator=(VQ L&, R);
6992 // VQ L& operator*=(VQ L&, R);
6993 // VQ L& operator/=(VQ L&, R);
6994 // VQ L& operator+=(VQ L&, R);
6995 // VQ L& operator-=(VQ L&, R);
6996 void addAssignmentArithmeticOverloads(bool isEqualOp) {
Chandler Carruth6a577462010-12-13 01:44:01 +00006997 if (!HasArithmeticOrEnumeralCandidateType)
6998 return;
6999
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00007000 for (unsigned Left = 0; Left < NumArithmeticTypes; ++Left) {
7001 for (unsigned Right = FirstPromotedArithmeticType;
7002 Right < LastPromotedArithmeticType; ++Right) {
7003 QualType ParamTypes[2];
Chandler Carruth6d695582010-12-12 10:35:00 +00007004 ParamTypes[1] = getArithmeticType(Right);
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00007005
7006 // Add this built-in operator as a candidate (VQ is empty).
7007 ParamTypes[0] =
Chandler Carruth6d695582010-12-12 10:35:00 +00007008 S.Context.getLValueReferenceType(getArithmeticType(Left));
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00007009 S.AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, 2, CandidateSet,
7010 /*IsAssigmentOperator=*/isEqualOp);
7011
7012 // Add this built-in operator as a candidate (VQ is 'volatile').
7013 if (VisibleTypeConversionsQuals.hasVolatile()) {
7014 ParamTypes[0] =
Chandler Carruth6d695582010-12-12 10:35:00 +00007015 S.Context.getVolatileType(getArithmeticType(Left));
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00007016 ParamTypes[0] = S.Context.getLValueReferenceType(ParamTypes[0]);
Chandler Carruth6df868e2010-12-12 08:17:55 +00007017 S.AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, 2,
7018 CandidateSet,
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00007019 /*IsAssigmentOperator=*/isEqualOp);
7020 }
7021 }
7022 }
7023
7024 // Extension: Add the binary operators =, +=, -=, *=, /= for vector types.
7025 for (BuiltinCandidateTypeSet::iterator
7026 Vec1 = CandidateTypes[0].vector_begin(),
7027 Vec1End = CandidateTypes[0].vector_end();
7028 Vec1 != Vec1End; ++Vec1) {
7029 for (BuiltinCandidateTypeSet::iterator
7030 Vec2 = CandidateTypes[1].vector_begin(),
7031 Vec2End = CandidateTypes[1].vector_end();
7032 Vec2 != Vec2End; ++Vec2) {
7033 QualType ParamTypes[2];
7034 ParamTypes[1] = *Vec2;
7035 // Add this built-in operator as a candidate (VQ is empty).
7036 ParamTypes[0] = S.Context.getLValueReferenceType(*Vec1);
7037 S.AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, 2, CandidateSet,
7038 /*IsAssigmentOperator=*/isEqualOp);
7039
7040 // Add this built-in operator as a candidate (VQ is 'volatile').
7041 if (VisibleTypeConversionsQuals.hasVolatile()) {
7042 ParamTypes[0] = S.Context.getVolatileType(*Vec1);
7043 ParamTypes[0] = S.Context.getLValueReferenceType(ParamTypes[0]);
Chandler Carruth6df868e2010-12-12 08:17:55 +00007044 S.AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, 2,
7045 CandidateSet,
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00007046 /*IsAssigmentOperator=*/isEqualOp);
7047 }
7048 }
7049 }
7050 }
7051
7052 // C++ [over.built]p22:
7053 //
7054 // For every triple (L, VQ, R), where L is an integral type, VQ
7055 // is either volatile or empty, and R is a promoted integral
7056 // type, there exist candidate operator functions of the form
7057 //
7058 // VQ L& operator%=(VQ L&, R);
7059 // VQ L& operator<<=(VQ L&, R);
7060 // VQ L& operator>>=(VQ L&, R);
7061 // VQ L& operator&=(VQ L&, R);
7062 // VQ L& operator^=(VQ L&, R);
7063 // VQ L& operator|=(VQ L&, R);
7064 void addAssignmentIntegralOverloads() {
Chandler Carruth6a577462010-12-13 01:44:01 +00007065 if (!HasArithmeticOrEnumeralCandidateType)
7066 return;
7067
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00007068 for (unsigned Left = FirstIntegralType; Left < LastIntegralType; ++Left) {
7069 for (unsigned Right = FirstPromotedIntegralType;
7070 Right < LastPromotedIntegralType; ++Right) {
7071 QualType ParamTypes[2];
Chandler Carruth6d695582010-12-12 10:35:00 +00007072 ParamTypes[1] = getArithmeticType(Right);
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00007073
7074 // Add this built-in operator as a candidate (VQ is empty).
7075 ParamTypes[0] =
Chandler Carruth6d695582010-12-12 10:35:00 +00007076 S.Context.getLValueReferenceType(getArithmeticType(Left));
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00007077 S.AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, 2, CandidateSet);
7078 if (VisibleTypeConversionsQuals.hasVolatile()) {
7079 // Add this built-in operator as a candidate (VQ is 'volatile').
Chandler Carruth6d695582010-12-12 10:35:00 +00007080 ParamTypes[0] = getArithmeticType(Left);
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00007081 ParamTypes[0] = S.Context.getVolatileType(ParamTypes[0]);
7082 ParamTypes[0] = S.Context.getLValueReferenceType(ParamTypes[0]);
7083 S.AddBuiltinCandidate(ParamTypes[0], ParamTypes, Args, 2,
7084 CandidateSet);
7085 }
7086 }
7087 }
7088 }
7089
7090 // C++ [over.operator]p23:
7091 //
7092 // There also exist candidate operator functions of the form
7093 //
7094 // bool operator!(bool);
7095 // bool operator&&(bool, bool);
7096 // bool operator||(bool, bool);
7097 void addExclaimOverload() {
7098 QualType ParamTy = S.Context.BoolTy;
7099 S.AddBuiltinCandidate(ParamTy, &ParamTy, Args, 1, CandidateSet,
7100 /*IsAssignmentOperator=*/false,
7101 /*NumContextualBoolArguments=*/1);
7102 }
7103 void addAmpAmpOrPipePipeOverload() {
7104 QualType ParamTypes[2] = { S.Context.BoolTy, S.Context.BoolTy };
7105 S.AddBuiltinCandidate(S.Context.BoolTy, ParamTypes, Args, 2, CandidateSet,
7106 /*IsAssignmentOperator=*/false,
7107 /*NumContextualBoolArguments=*/2);
7108 }
7109
7110 // C++ [over.built]p13:
7111 //
7112 // For every cv-qualified or cv-unqualified object type T there
7113 // exist candidate operator functions of the form
7114 //
7115 // T* operator+(T*, ptrdiff_t); [ABOVE]
7116 // T& operator[](T*, ptrdiff_t);
7117 // T* operator-(T*, ptrdiff_t); [ABOVE]
7118 // T* operator+(ptrdiff_t, T*); [ABOVE]
7119 // T& operator[](ptrdiff_t, T*);
7120 void addSubscriptOverloads() {
7121 for (BuiltinCandidateTypeSet::iterator
7122 Ptr = CandidateTypes[0].pointer_begin(),
7123 PtrEnd = CandidateTypes[0].pointer_end();
7124 Ptr != PtrEnd; ++Ptr) {
7125 QualType ParamTypes[2] = { *Ptr, S.Context.getPointerDiffType() };
7126 QualType PointeeType = (*Ptr)->getPointeeType();
Douglas Gregor2fdc5e82011-01-05 00:13:17 +00007127 if (!PointeeType->isObjectType())
7128 continue;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00007129
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00007130 QualType ResultTy = S.Context.getLValueReferenceType(PointeeType);
7131
7132 // T& operator[](T*, ptrdiff_t)
7133 S.AddBuiltinCandidate(ResultTy, ParamTypes, Args, 2, CandidateSet);
7134 }
7135
7136 for (BuiltinCandidateTypeSet::iterator
7137 Ptr = CandidateTypes[1].pointer_begin(),
7138 PtrEnd = CandidateTypes[1].pointer_end();
7139 Ptr != PtrEnd; ++Ptr) {
7140 QualType ParamTypes[2] = { S.Context.getPointerDiffType(), *Ptr };
7141 QualType PointeeType = (*Ptr)->getPointeeType();
Douglas Gregor2fdc5e82011-01-05 00:13:17 +00007142 if (!PointeeType->isObjectType())
7143 continue;
7144
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00007145 QualType ResultTy = S.Context.getLValueReferenceType(PointeeType);
7146
7147 // T& operator[](ptrdiff_t, T*)
7148 S.AddBuiltinCandidate(ResultTy, ParamTypes, Args, 2, CandidateSet);
7149 }
7150 }
7151
7152 // C++ [over.built]p11:
7153 // For every quintuple (C1, C2, T, CV1, CV2), where C2 is a class type,
7154 // C1 is the same type as C2 or is a derived class of C2, T is an object
7155 // type or a function type, and CV1 and CV2 are cv-qualifier-seqs,
7156 // there exist candidate operator functions of the form
7157 //
7158 // CV12 T& operator->*(CV1 C1*, CV2 T C2::*);
7159 //
7160 // where CV12 is the union of CV1 and CV2.
7161 void addArrowStarOverloads() {
7162 for (BuiltinCandidateTypeSet::iterator
7163 Ptr = CandidateTypes[0].pointer_begin(),
7164 PtrEnd = CandidateTypes[0].pointer_end();
7165 Ptr != PtrEnd; ++Ptr) {
7166 QualType C1Ty = (*Ptr);
7167 QualType C1;
7168 QualifierCollector Q1;
7169 C1 = QualType(Q1.strip(C1Ty->getPointeeType()), 0);
7170 if (!isa<RecordType>(C1))
7171 continue;
7172 // heuristic to reduce number of builtin candidates in the set.
7173 // Add volatile/restrict version only if there are conversions to a
7174 // volatile/restrict type.
7175 if (!VisibleTypeConversionsQuals.hasVolatile() && Q1.hasVolatile())
7176 continue;
7177 if (!VisibleTypeConversionsQuals.hasRestrict() && Q1.hasRestrict())
7178 continue;
7179 for (BuiltinCandidateTypeSet::iterator
7180 MemPtr = CandidateTypes[1].member_pointer_begin(),
7181 MemPtrEnd = CandidateTypes[1].member_pointer_end();
7182 MemPtr != MemPtrEnd; ++MemPtr) {
7183 const MemberPointerType *mptr = cast<MemberPointerType>(*MemPtr);
7184 QualType C2 = QualType(mptr->getClass(), 0);
7185 C2 = C2.getUnqualifiedType();
7186 if (C1 != C2 && !S.IsDerivedFrom(C1, C2))
7187 break;
7188 QualType ParamTypes[2] = { *Ptr, *MemPtr };
7189 // build CV12 T&
7190 QualType T = mptr->getPointeeType();
7191 if (!VisibleTypeConversionsQuals.hasVolatile() &&
7192 T.isVolatileQualified())
7193 continue;
7194 if (!VisibleTypeConversionsQuals.hasRestrict() &&
7195 T.isRestrictQualified())
7196 continue;
7197 T = Q1.apply(S.Context, T);
7198 QualType ResultTy = S.Context.getLValueReferenceType(T);
7199 S.AddBuiltinCandidate(ResultTy, ParamTypes, Args, 2, CandidateSet);
7200 }
7201 }
7202 }
7203
7204 // Note that we don't consider the first argument, since it has been
7205 // contextually converted to bool long ago. The candidates below are
7206 // therefore added as binary.
7207 //
7208 // C++ [over.built]p25:
7209 // For every type T, where T is a pointer, pointer-to-member, or scoped
7210 // enumeration type, there exist candidate operator functions of the form
7211 //
7212 // T operator?(bool, T, T);
7213 //
7214 void addConditionalOperatorOverloads() {
7215 /// Set of (canonical) types that we've already handled.
7216 llvm::SmallPtrSet<QualType, 8> AddedTypes;
7217
7218 for (unsigned ArgIdx = 0; ArgIdx < 2; ++ArgIdx) {
7219 for (BuiltinCandidateTypeSet::iterator
7220 Ptr = CandidateTypes[ArgIdx].pointer_begin(),
7221 PtrEnd = CandidateTypes[ArgIdx].pointer_end();
7222 Ptr != PtrEnd; ++Ptr) {
7223 if (!AddedTypes.insert(S.Context.getCanonicalType(*Ptr)))
7224 continue;
7225
7226 QualType ParamTypes[2] = { *Ptr, *Ptr };
7227 S.AddBuiltinCandidate(*Ptr, ParamTypes, Args, 2, CandidateSet);
7228 }
7229
7230 for (BuiltinCandidateTypeSet::iterator
7231 MemPtr = CandidateTypes[ArgIdx].member_pointer_begin(),
7232 MemPtrEnd = CandidateTypes[ArgIdx].member_pointer_end();
7233 MemPtr != MemPtrEnd; ++MemPtr) {
7234 if (!AddedTypes.insert(S.Context.getCanonicalType(*MemPtr)))
7235 continue;
7236
7237 QualType ParamTypes[2] = { *MemPtr, *MemPtr };
7238 S.AddBuiltinCandidate(*MemPtr, ParamTypes, Args, 2, CandidateSet);
7239 }
7240
7241 if (S.getLangOptions().CPlusPlus0x) {
7242 for (BuiltinCandidateTypeSet::iterator
7243 Enum = CandidateTypes[ArgIdx].enumeration_begin(),
7244 EnumEnd = CandidateTypes[ArgIdx].enumeration_end();
7245 Enum != EnumEnd; ++Enum) {
7246 if (!(*Enum)->getAs<EnumType>()->getDecl()->isScoped())
7247 continue;
7248
7249 if (!AddedTypes.insert(S.Context.getCanonicalType(*Enum)))
7250 continue;
7251
7252 QualType ParamTypes[2] = { *Enum, *Enum };
7253 S.AddBuiltinCandidate(*Enum, ParamTypes, Args, 2, CandidateSet);
7254 }
7255 }
7256 }
7257 }
7258};
7259
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00007260} // end anonymous namespace
7261
7262/// AddBuiltinOperatorCandidates - Add the appropriate built-in
7263/// operator overloads to the candidate set (C++ [over.built]), based
7264/// on the operator @p Op and the arguments given. For example, if the
7265/// operator is a binary '+', this routine might add "int
7266/// operator+(int, int)" to cover integer addition.
7267void
7268Sema::AddBuiltinOperatorCandidates(OverloadedOperatorKind Op,
7269 SourceLocation OpLoc,
7270 Expr **Args, unsigned NumArgs,
7271 OverloadCandidateSet& CandidateSet) {
Douglas Gregoreb8f3062008-11-12 17:17:38 +00007272 // Find all of the types that the arguments can convert to, but only
7273 // if the operator we're looking at has built-in operator candidates
Chandler Carruth6a577462010-12-13 01:44:01 +00007274 // that make use of these types. Also record whether we encounter non-record
7275 // candidate types or either arithmetic or enumeral candidate types.
Fariborz Jahaniana9cca892009-10-15 17:14:05 +00007276 Qualifiers VisibleTypeConversionsQuals;
7277 VisibleTypeConversionsQuals.addConst();
Fariborz Jahanian8621d012009-10-19 21:30:45 +00007278 for (unsigned ArgIdx = 0; ArgIdx < NumArgs; ++ArgIdx)
7279 VisibleTypeConversionsQuals += CollectVRQualifiers(Context, Args[ArgIdx]);
Chandler Carruth6a577462010-12-13 01:44:01 +00007280
7281 bool HasNonRecordCandidateType = false;
7282 bool HasArithmeticOrEnumeralCandidateType = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +00007283 SmallVector<BuiltinCandidateTypeSet, 2> CandidateTypes;
Douglas Gregorfec56e72010-11-03 17:00:07 +00007284 for (unsigned ArgIdx = 0; ArgIdx < NumArgs; ++ArgIdx) {
7285 CandidateTypes.push_back(BuiltinCandidateTypeSet(*this));
7286 CandidateTypes[ArgIdx].AddTypesConvertedFrom(Args[ArgIdx]->getType(),
7287 OpLoc,
7288 true,
7289 (Op == OO_Exclaim ||
7290 Op == OO_AmpAmp ||
7291 Op == OO_PipePipe),
7292 VisibleTypeConversionsQuals);
Chandler Carruth6a577462010-12-13 01:44:01 +00007293 HasNonRecordCandidateType = HasNonRecordCandidateType ||
7294 CandidateTypes[ArgIdx].hasNonRecordTypes();
7295 HasArithmeticOrEnumeralCandidateType =
7296 HasArithmeticOrEnumeralCandidateType ||
7297 CandidateTypes[ArgIdx].hasArithmeticOrEnumeralTypes();
Douglas Gregorfec56e72010-11-03 17:00:07 +00007298 }
Douglas Gregoreb8f3062008-11-12 17:17:38 +00007299
Chandler Carruth6a577462010-12-13 01:44:01 +00007300 // Exit early when no non-record types have been added to the candidate set
7301 // for any of the arguments to the operator.
Douglas Gregor25aaff92011-10-10 14:05:31 +00007302 //
7303 // We can't exit early for !, ||, or &&, since there we have always have
7304 // 'bool' overloads.
7305 if (!HasNonRecordCandidateType &&
7306 !(Op == OO_Exclaim || Op == OO_AmpAmp || Op == OO_PipePipe))
Chandler Carruth6a577462010-12-13 01:44:01 +00007307 return;
7308
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00007309 // Setup an object to manage the common state for building overloads.
7310 BuiltinOperatorOverloadBuilder OpBuilder(*this, Args, NumArgs,
7311 VisibleTypeConversionsQuals,
Chandler Carruth6a577462010-12-13 01:44:01 +00007312 HasArithmeticOrEnumeralCandidateType,
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00007313 CandidateTypes, CandidateSet);
7314
7315 // Dispatch over the operation to add in only those overloads which apply.
Douglas Gregoreb8f3062008-11-12 17:17:38 +00007316 switch (Op) {
7317 case OO_None:
7318 case NUM_OVERLOADED_OPERATORS:
David Blaikieb219cfc2011-09-23 05:06:16 +00007319 llvm_unreachable("Expected an overloaded operator");
Douglas Gregoreb8f3062008-11-12 17:17:38 +00007320
Chandler Carruthabb71842010-12-12 08:51:33 +00007321 case OO_New:
7322 case OO_Delete:
7323 case OO_Array_New:
7324 case OO_Array_Delete:
7325 case OO_Call:
David Blaikieb219cfc2011-09-23 05:06:16 +00007326 llvm_unreachable(
7327 "Special operators don't use AddBuiltinOperatorCandidates");
Chandler Carruthabb71842010-12-12 08:51:33 +00007328
7329 case OO_Comma:
7330 case OO_Arrow:
7331 // C++ [over.match.oper]p3:
7332 // -- For the operator ',', the unary operator '&', or the
7333 // operator '->', the built-in candidates set is empty.
Douglas Gregor74253732008-11-19 15:42:04 +00007334 break;
7335
7336 case OO_Plus: // '+' is either unary or binary
Chandler Carruth32fe0d02010-12-12 08:41:34 +00007337 if (NumArgs == 1)
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00007338 OpBuilder.addUnaryPlusPointerOverloads();
Chandler Carruth32fe0d02010-12-12 08:41:34 +00007339 // Fall through.
Douglas Gregor74253732008-11-19 15:42:04 +00007340
7341 case OO_Minus: // '-' is either unary or binary
Chandler Carruthfe622742010-12-12 08:39:38 +00007342 if (NumArgs == 1) {
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00007343 OpBuilder.addUnaryPlusOrMinusArithmeticOverloads();
Chandler Carruthfe622742010-12-12 08:39:38 +00007344 } else {
7345 OpBuilder.addBinaryPlusOrMinusPointerOverloads(Op);
7346 OpBuilder.addGenericBinaryArithmeticOverloads(/*isComparison=*/false);
7347 }
Douglas Gregor74253732008-11-19 15:42:04 +00007348 break;
7349
Chandler Carruthabb71842010-12-12 08:51:33 +00007350 case OO_Star: // '*' is either unary or binary
Douglas Gregor74253732008-11-19 15:42:04 +00007351 if (NumArgs == 1)
Chandler Carruthabb71842010-12-12 08:51:33 +00007352 OpBuilder.addUnaryStarPointerOverloads();
7353 else
7354 OpBuilder.addGenericBinaryArithmeticOverloads(/*isComparison=*/false);
7355 break;
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00007356
Chandler Carruthabb71842010-12-12 08:51:33 +00007357 case OO_Slash:
7358 OpBuilder.addGenericBinaryArithmeticOverloads(/*isComparison=*/false);
Chandler Carruthc1409462010-12-12 08:45:02 +00007359 break;
Douglas Gregor74253732008-11-19 15:42:04 +00007360
7361 case OO_PlusPlus:
7362 case OO_MinusMinus:
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00007363 OpBuilder.addPlusPlusMinusMinusArithmeticOverloads(Op);
7364 OpBuilder.addPlusPlusMinusMinusPointerOverloads();
Douglas Gregor74253732008-11-19 15:42:04 +00007365 break;
7366
Douglas Gregor19b7b152009-08-24 13:43:27 +00007367 case OO_EqualEqual:
7368 case OO_ExclaimEqual:
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00007369 OpBuilder.addEqualEqualOrNotEqualMemberPointerOverloads();
Chandler Carruthdaf55d32010-12-12 08:32:28 +00007370 // Fall through.
Chandler Carruthc1409462010-12-12 08:45:02 +00007371
Douglas Gregoreb8f3062008-11-12 17:17:38 +00007372 case OO_Less:
7373 case OO_Greater:
7374 case OO_LessEqual:
7375 case OO_GreaterEqual:
Chandler Carruth7b80b4b2010-12-12 09:14:11 +00007376 OpBuilder.addRelationalPointerOrEnumeralOverloads();
Chandler Carruthdaf55d32010-12-12 08:32:28 +00007377 OpBuilder.addGenericBinaryArithmeticOverloads(/*isComparison=*/true);
7378 break;
Douglas Gregoreb8f3062008-11-12 17:17:38 +00007379
Douglas Gregoreb8f3062008-11-12 17:17:38 +00007380 case OO_Percent:
Douglas Gregoreb8f3062008-11-12 17:17:38 +00007381 case OO_Caret:
7382 case OO_Pipe:
7383 case OO_LessLess:
7384 case OO_GreaterGreater:
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00007385 OpBuilder.addBinaryBitwiseArithmeticOverloads(Op);
Douglas Gregoreb8f3062008-11-12 17:17:38 +00007386 break;
7387
Chandler Carruthabb71842010-12-12 08:51:33 +00007388 case OO_Amp: // '&' is either unary or binary
7389 if (NumArgs == 1)
7390 // C++ [over.match.oper]p3:
7391 // -- For the operator ',', the unary operator '&', or the
7392 // operator '->', the built-in candidates set is empty.
7393 break;
7394
7395 OpBuilder.addBinaryBitwiseArithmeticOverloads(Op);
7396 break;
7397
7398 case OO_Tilde:
7399 OpBuilder.addUnaryTildePromotedIntegralOverloads();
7400 break;
7401
Douglas Gregoreb8f3062008-11-12 17:17:38 +00007402 case OO_Equal:
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00007403 OpBuilder.addAssignmentMemberPointerOrEnumeralOverloads();
Douglas Gregor26bcf672010-05-19 03:21:00 +00007404 // Fall through.
Douglas Gregoreb8f3062008-11-12 17:17:38 +00007405
7406 case OO_PlusEqual:
7407 case OO_MinusEqual:
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00007408 OpBuilder.addAssignmentPointerOverloads(Op == OO_Equal);
Douglas Gregoreb8f3062008-11-12 17:17:38 +00007409 // Fall through.
7410
7411 case OO_StarEqual:
7412 case OO_SlashEqual:
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00007413 OpBuilder.addAssignmentArithmeticOverloads(Op == OO_Equal);
Douglas Gregoreb8f3062008-11-12 17:17:38 +00007414 break;
7415
7416 case OO_PercentEqual:
7417 case OO_LessLessEqual:
7418 case OO_GreaterGreaterEqual:
7419 case OO_AmpEqual:
7420 case OO_CaretEqual:
7421 case OO_PipeEqual:
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00007422 OpBuilder.addAssignmentIntegralOverloads();
Douglas Gregoreb8f3062008-11-12 17:17:38 +00007423 break;
7424
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00007425 case OO_Exclaim:
7426 OpBuilder.addExclaimOverload();
Douglas Gregor74253732008-11-19 15:42:04 +00007427 break;
Douglas Gregor74253732008-11-19 15:42:04 +00007428
Douglas Gregoreb8f3062008-11-12 17:17:38 +00007429 case OO_AmpAmp:
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00007430 case OO_PipePipe:
7431 OpBuilder.addAmpAmpOrPipePipeOverload();
Douglas Gregoreb8f3062008-11-12 17:17:38 +00007432 break;
Douglas Gregoreb8f3062008-11-12 17:17:38 +00007433
7434 case OO_Subscript:
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00007435 OpBuilder.addSubscriptOverloads();
Douglas Gregoreb8f3062008-11-12 17:17:38 +00007436 break;
7437
7438 case OO_ArrowStar:
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00007439 OpBuilder.addArrowStarOverloads();
Douglas Gregoreb8f3062008-11-12 17:17:38 +00007440 break;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00007441
7442 case OO_Conditional:
Chandler Carruth3a0f3ef2010-12-12 08:11:30 +00007443 OpBuilder.addConditionalOperatorOverloads();
Chandler Carruthfe622742010-12-12 08:39:38 +00007444 OpBuilder.addGenericBinaryArithmeticOverloads(/*isComparison=*/false);
7445 break;
Douglas Gregoreb8f3062008-11-12 17:17:38 +00007446 }
7447}
7448
Douglas Gregorfa047642009-02-04 00:32:51 +00007449/// \brief Add function candidates found via argument-dependent lookup
7450/// to the set of overloading candidates.
7451///
7452/// This routine performs argument-dependent name lookup based on the
7453/// given function name (which may also be an operator name) and adds
7454/// all of the overload candidates found by ADL to the overload
7455/// candidate set (C++ [basic.lookup.argdep]).
Mike Stump1eb44332009-09-09 15:08:12 +00007456void
Douglas Gregorfa047642009-02-04 00:32:51 +00007457Sema::AddArgumentDependentLookupCandidates(DeclarationName Name,
Richard Smithf5cd5cc2012-02-25 06:24:24 +00007458 bool Operator, SourceLocation Loc,
Ahmed Charles13a140c2012-02-25 11:00:22 +00007459 llvm::ArrayRef<Expr *> Args,
Douglas Gregor67714232011-03-03 02:41:12 +00007460 TemplateArgumentListInfo *ExplicitTemplateArgs,
Douglas Gregor9c6a0e92009-09-22 15:41:20 +00007461 OverloadCandidateSet& CandidateSet,
Richard Smithad762fc2011-04-14 22:09:26 +00007462 bool PartialOverloading,
7463 bool StdNamespaceIsAssociated) {
John McCall7edb5fd2010-01-26 07:16:45 +00007464 ADLResult Fns;
Douglas Gregorfa047642009-02-04 00:32:51 +00007465
John McCalla113e722010-01-26 06:04:06 +00007466 // FIXME: This approach for uniquing ADL results (and removing
7467 // redundant candidates from the set) relies on pointer-equality,
7468 // which means we need to key off the canonical decl. However,
7469 // always going back to the canonical decl might not get us the
7470 // right set of default arguments. What default arguments are
7471 // we supposed to consider on ADL candidates, anyway?
7472
Douglas Gregor9c6a0e92009-09-22 15:41:20 +00007473 // FIXME: Pass in the explicit template arguments?
Ahmed Charles13a140c2012-02-25 11:00:22 +00007474 ArgumentDependentLookup(Name, Operator, Loc, Args, Fns,
Richard Smithad762fc2011-04-14 22:09:26 +00007475 StdNamespaceIsAssociated);
Douglas Gregorfa047642009-02-04 00:32:51 +00007476
Douglas Gregor3fd95ce2009-03-13 00:33:25 +00007477 // Erase all of the candidates we already knew about.
Douglas Gregor3fd95ce2009-03-13 00:33:25 +00007478 for (OverloadCandidateSet::iterator Cand = CandidateSet.begin(),
7479 CandEnd = CandidateSet.end();
7480 Cand != CandEnd; ++Cand)
Douglas Gregor364e0212009-06-27 21:05:07 +00007481 if (Cand->Function) {
John McCall7edb5fd2010-01-26 07:16:45 +00007482 Fns.erase(Cand->Function);
Douglas Gregor364e0212009-06-27 21:05:07 +00007483 if (FunctionTemplateDecl *FunTmpl = Cand->Function->getPrimaryTemplate())
John McCall7edb5fd2010-01-26 07:16:45 +00007484 Fns.erase(FunTmpl);
Douglas Gregor364e0212009-06-27 21:05:07 +00007485 }
Douglas Gregor3fd95ce2009-03-13 00:33:25 +00007486
7487 // For each of the ADL candidates we found, add it to the overload
7488 // set.
John McCall7edb5fd2010-01-26 07:16:45 +00007489 for (ADLResult::iterator I = Fns.begin(), E = Fns.end(); I != E; ++I) {
John McCall9aa472c2010-03-19 07:35:19 +00007490 DeclAccessPair FoundDecl = DeclAccessPair::make(*I, AS_none);
John McCall6e266892010-01-26 03:27:55 +00007491 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(*I)) {
John McCalld5532b62009-11-23 01:53:49 +00007492 if (ExplicitTemplateArgs)
Douglas Gregor9c6a0e92009-09-22 15:41:20 +00007493 continue;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00007494
Ahmed Charles13a140c2012-02-25 11:00:22 +00007495 AddOverloadCandidate(FD, FoundDecl, Args, CandidateSet, false,
7496 PartialOverloading);
Douglas Gregor9c6a0e92009-09-22 15:41:20 +00007497 } else
John McCall6e266892010-01-26 03:27:55 +00007498 AddTemplateOverloadCandidate(cast<FunctionTemplateDecl>(*I),
John McCall9aa472c2010-03-19 07:35:19 +00007499 FoundDecl, ExplicitTemplateArgs,
Ahmed Charles13a140c2012-02-25 11:00:22 +00007500 Args, CandidateSet);
Douglas Gregor364e0212009-06-27 21:05:07 +00007501 }
Douglas Gregorfa047642009-02-04 00:32:51 +00007502}
7503
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00007504/// isBetterOverloadCandidate - Determines whether the first overload
7505/// candidate is a better candidate than the second (C++ 13.3.3p1).
Mike Stump1eb44332009-09-09 15:08:12 +00007506bool
John McCall120d63c2010-08-24 20:38:10 +00007507isBetterOverloadCandidate(Sema &S,
Nick Lewycky7663f392010-11-20 01:29:55 +00007508 const OverloadCandidate &Cand1,
7509 const OverloadCandidate &Cand2,
Douglas Gregor8fcc5162010-09-12 08:07:23 +00007510 SourceLocation Loc,
7511 bool UserDefinedConversion) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00007512 // Define viable functions to be better candidates than non-viable
7513 // functions.
7514 if (!Cand2.Viable)
7515 return Cand1.Viable;
7516 else if (!Cand1.Viable)
7517 return false;
7518
Douglas Gregor88a35142008-12-22 05:46:06 +00007519 // C++ [over.match.best]p1:
7520 //
7521 // -- if F is a static member function, ICS1(F) is defined such
7522 // that ICS1(F) is neither better nor worse than ICS1(G) for
7523 // any function G, and, symmetrically, ICS1(G) is neither
7524 // better nor worse than ICS1(F).
7525 unsigned StartArg = 0;
7526 if (Cand1.IgnoreObjectArgument || Cand2.IgnoreObjectArgument)
7527 StartArg = 1;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00007528
Douglas Gregor3e15cc32009-07-07 23:38:56 +00007529 // C++ [over.match.best]p1:
Mike Stump1eb44332009-09-09 15:08:12 +00007530 // A viable function F1 is defined to be a better function than another
7531 // viable function F2 if for all arguments i, ICSi(F1) is not a worse
Douglas Gregor3e15cc32009-07-07 23:38:56 +00007532 // conversion sequence than ICSi(F2), and then...
Benjamin Kramer09dd3792012-01-14 16:32:05 +00007533 unsigned NumArgs = Cand1.NumConversions;
7534 assert(Cand2.NumConversions == NumArgs && "Overload candidate mismatch");
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00007535 bool HasBetterConversion = false;
Douglas Gregor88a35142008-12-22 05:46:06 +00007536 for (unsigned ArgIdx = StartArg; ArgIdx < NumArgs; ++ArgIdx) {
John McCall120d63c2010-08-24 20:38:10 +00007537 switch (CompareImplicitConversionSequences(S,
7538 Cand1.Conversions[ArgIdx],
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00007539 Cand2.Conversions[ArgIdx])) {
7540 case ImplicitConversionSequence::Better:
7541 // Cand1 has a better conversion sequence.
7542 HasBetterConversion = true;
7543 break;
7544
7545 case ImplicitConversionSequence::Worse:
7546 // Cand1 can't be better than Cand2.
7547 return false;
7548
7549 case ImplicitConversionSequence::Indistinguishable:
7550 // Do nothing.
7551 break;
7552 }
7553 }
7554
Mike Stump1eb44332009-09-09 15:08:12 +00007555 // -- for some argument j, ICSj(F1) is a better conversion sequence than
Douglas Gregor3e15cc32009-07-07 23:38:56 +00007556 // ICSj(F2), or, if not that,
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00007557 if (HasBetterConversion)
7558 return true;
7559
Mike Stump1eb44332009-09-09 15:08:12 +00007560 // - F1 is a non-template function and F2 is a function template
Douglas Gregor3e15cc32009-07-07 23:38:56 +00007561 // specialization, or, if not that,
Douglas Gregorccd47132010-06-08 21:03:17 +00007562 if ((!Cand1.Function || !Cand1.Function->getPrimaryTemplate()) &&
Douglas Gregor3e15cc32009-07-07 23:38:56 +00007563 Cand2.Function && Cand2.Function->getPrimaryTemplate())
7564 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00007565
7566 // -- F1 and F2 are function template specializations, and the function
7567 // template for F1 is more specialized than the template for F2
7568 // according to the partial ordering rules described in 14.5.5.2, or,
Douglas Gregor3e15cc32009-07-07 23:38:56 +00007569 // if not that,
Douglas Gregor1f561c12009-08-02 23:46:29 +00007570 if (Cand1.Function && Cand1.Function->getPrimaryTemplate() &&
Douglas Gregordfc331e2011-01-19 23:54:39 +00007571 Cand2.Function && Cand2.Function->getPrimaryTemplate()) {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00007572 if (FunctionTemplateDecl *BetterTemplate
John McCall120d63c2010-08-24 20:38:10 +00007573 = S.getMoreSpecializedTemplate(Cand1.Function->getPrimaryTemplate(),
7574 Cand2.Function->getPrimaryTemplate(),
7575 Loc,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00007576 isa<CXXConversionDecl>(Cand1.Function)? TPOC_Conversion
Douglas Gregor5c7bf422011-01-11 17:34:58 +00007577 : TPOC_Call,
Douglas Gregordfc331e2011-01-19 23:54:39 +00007578 Cand1.ExplicitCallArguments))
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00007579 return BetterTemplate == Cand1.Function->getPrimaryTemplate();
Douglas Gregordfc331e2011-01-19 23:54:39 +00007580 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00007581
Douglas Gregorf1991ea2008-11-07 22:36:19 +00007582 // -- the context is an initialization by user-defined conversion
7583 // (see 8.5, 13.3.1.5) and the standard conversion sequence
7584 // from the return type of F1 to the destination type (i.e.,
7585 // the type of the entity being initialized) is a better
7586 // conversion sequence than the standard conversion sequence
7587 // from the return type of F2 to the destination type.
Douglas Gregor8fcc5162010-09-12 08:07:23 +00007588 if (UserDefinedConversion && Cand1.Function && Cand2.Function &&
Mike Stump1eb44332009-09-09 15:08:12 +00007589 isa<CXXConversionDecl>(Cand1.Function) &&
Douglas Gregorf1991ea2008-11-07 22:36:19 +00007590 isa<CXXConversionDecl>(Cand2.Function)) {
Douglas Gregorb734e242012-02-22 17:32:19 +00007591 // First check whether we prefer one of the conversion functions over the
7592 // other. This only distinguishes the results in non-standard, extension
7593 // cases such as the conversion from a lambda closure type to a function
7594 // pointer or block.
7595 ImplicitConversionSequence::CompareKind FuncResult
7596 = compareConversionFunctions(S, Cand1.Function, Cand2.Function);
7597 if (FuncResult != ImplicitConversionSequence::Indistinguishable)
7598 return FuncResult;
7599
John McCall120d63c2010-08-24 20:38:10 +00007600 switch (CompareStandardConversionSequences(S,
7601 Cand1.FinalConversion,
Douglas Gregorf1991ea2008-11-07 22:36:19 +00007602 Cand2.FinalConversion)) {
7603 case ImplicitConversionSequence::Better:
7604 // Cand1 has a better conversion sequence.
7605 return true;
7606
7607 case ImplicitConversionSequence::Worse:
7608 // Cand1 can't be better than Cand2.
7609 return false;
7610
7611 case ImplicitConversionSequence::Indistinguishable:
7612 // Do nothing
7613 break;
7614 }
7615 }
7616
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00007617 return false;
7618}
7619
Mike Stump1eb44332009-09-09 15:08:12 +00007620/// \brief Computes the best viable function (C++ 13.3.3)
Douglas Gregore0762c92009-06-19 23:52:42 +00007621/// within an overload candidate set.
7622///
7623/// \param CandidateSet the set of candidate functions.
7624///
7625/// \param Loc the location of the function name (or operator symbol) for
7626/// which overload resolution occurs.
7627///
Mike Stump1eb44332009-09-09 15:08:12 +00007628/// \param Best f overload resolution was successful or found a deleted
Douglas Gregore0762c92009-06-19 23:52:42 +00007629/// function, Best points to the candidate function found.
7630///
7631/// \returns The result of overload resolution.
John McCall120d63c2010-08-24 20:38:10 +00007632OverloadingResult
7633OverloadCandidateSet::BestViableFunction(Sema &S, SourceLocation Loc,
Nick Lewycky7663f392010-11-20 01:29:55 +00007634 iterator &Best,
Chandler Carruth25ca4212011-02-25 19:41:05 +00007635 bool UserDefinedConversion) {
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00007636 // Find the best viable function.
John McCall120d63c2010-08-24 20:38:10 +00007637 Best = end();
7638 for (iterator Cand = begin(); Cand != end(); ++Cand) {
7639 if (Cand->Viable)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00007640 if (Best == end() || isBetterOverloadCandidate(S, *Cand, *Best, Loc,
Douglas Gregor8fcc5162010-09-12 08:07:23 +00007641 UserDefinedConversion))
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00007642 Best = Cand;
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00007643 }
7644
7645 // If we didn't find any viable functions, abort.
John McCall120d63c2010-08-24 20:38:10 +00007646 if (Best == end())
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00007647 return OR_No_Viable_Function;
7648
7649 // Make sure that this function is better than every other viable
7650 // function. If not, we have an ambiguity.
John McCall120d63c2010-08-24 20:38:10 +00007651 for (iterator Cand = begin(); Cand != end(); ++Cand) {
Mike Stump1eb44332009-09-09 15:08:12 +00007652 if (Cand->Viable &&
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00007653 Cand != Best &&
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00007654 !isBetterOverloadCandidate(S, *Best, *Cand, Loc,
Douglas Gregor8fcc5162010-09-12 08:07:23 +00007655 UserDefinedConversion)) {
John McCall120d63c2010-08-24 20:38:10 +00007656 Best = end();
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00007657 return OR_Ambiguous;
Douglas Gregor106c6eb2008-11-19 22:57:39 +00007658 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00007659 }
Mike Stump1eb44332009-09-09 15:08:12 +00007660
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00007661 // Best is the best viable function.
Douglas Gregor48f3bb92009-02-18 21:56:37 +00007662 if (Best->Function &&
Argyrios Kyrtzidis572bbec2011-06-23 00:41:50 +00007663 (Best->Function->isDeleted() ||
7664 S.isFunctionConsideredUnavailable(Best->Function)))
Douglas Gregor48f3bb92009-02-18 21:56:37 +00007665 return OR_Deleted;
7666
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00007667 return OR_Success;
7668}
7669
John McCall3c80f572010-01-12 02:15:36 +00007670namespace {
7671
7672enum OverloadCandidateKind {
7673 oc_function,
7674 oc_method,
7675 oc_constructor,
John McCall220ccbf2010-01-13 00:25:19 +00007676 oc_function_template,
7677 oc_method_template,
7678 oc_constructor_template,
John McCall3c80f572010-01-12 02:15:36 +00007679 oc_implicit_default_constructor,
7680 oc_implicit_copy_constructor,
Sean Hunt82713172011-05-25 23:16:36 +00007681 oc_implicit_move_constructor,
Sebastian Redlf677ea32011-02-05 19:23:19 +00007682 oc_implicit_copy_assignment,
Sean Hunt82713172011-05-25 23:16:36 +00007683 oc_implicit_move_assignment,
Sebastian Redlf677ea32011-02-05 19:23:19 +00007684 oc_implicit_inherited_constructor
John McCall3c80f572010-01-12 02:15:36 +00007685};
7686
John McCall220ccbf2010-01-13 00:25:19 +00007687OverloadCandidateKind ClassifyOverloadCandidate(Sema &S,
7688 FunctionDecl *Fn,
7689 std::string &Description) {
7690 bool isTemplate = false;
7691
7692 if (FunctionTemplateDecl *FunTmpl = Fn->getPrimaryTemplate()) {
7693 isTemplate = true;
7694 Description = S.getTemplateArgumentBindingsText(
7695 FunTmpl->getTemplateParameters(), *Fn->getTemplateSpecializationArgs());
7696 }
John McCallb1622a12010-01-06 09:43:14 +00007697
7698 if (CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(Fn)) {
John McCall3c80f572010-01-12 02:15:36 +00007699 if (!Ctor->isImplicit())
John McCall220ccbf2010-01-13 00:25:19 +00007700 return isTemplate ? oc_constructor_template : oc_constructor;
John McCallb1622a12010-01-06 09:43:14 +00007701
Sebastian Redlf677ea32011-02-05 19:23:19 +00007702 if (Ctor->getInheritedConstructor())
7703 return oc_implicit_inherited_constructor;
7704
Sean Hunt82713172011-05-25 23:16:36 +00007705 if (Ctor->isDefaultConstructor())
7706 return oc_implicit_default_constructor;
7707
7708 if (Ctor->isMoveConstructor())
7709 return oc_implicit_move_constructor;
7710
7711 assert(Ctor->isCopyConstructor() &&
7712 "unexpected sort of implicit constructor");
7713 return oc_implicit_copy_constructor;
John McCallb1622a12010-01-06 09:43:14 +00007714 }
7715
7716 if (CXXMethodDecl *Meth = dyn_cast<CXXMethodDecl>(Fn)) {
7717 // This actually gets spelled 'candidate function' for now, but
7718 // it doesn't hurt to split it out.
John McCall3c80f572010-01-12 02:15:36 +00007719 if (!Meth->isImplicit())
John McCall220ccbf2010-01-13 00:25:19 +00007720 return isTemplate ? oc_method_template : oc_method;
John McCallb1622a12010-01-06 09:43:14 +00007721
Sean Hunt82713172011-05-25 23:16:36 +00007722 if (Meth->isMoveAssignmentOperator())
7723 return oc_implicit_move_assignment;
7724
Douglas Gregoref7d78b2012-02-10 08:36:38 +00007725 if (Meth->isCopyAssignmentOperator())
7726 return oc_implicit_copy_assignment;
7727
7728 assert(isa<CXXConversionDecl>(Meth) && "expected conversion");
7729 return oc_method;
John McCall3c80f572010-01-12 02:15:36 +00007730 }
7731
John McCall220ccbf2010-01-13 00:25:19 +00007732 return isTemplate ? oc_function_template : oc_function;
John McCall3c80f572010-01-12 02:15:36 +00007733}
7734
Sebastian Redlf677ea32011-02-05 19:23:19 +00007735void MaybeEmitInheritedConstructorNote(Sema &S, FunctionDecl *Fn) {
7736 const CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(Fn);
7737 if (!Ctor) return;
7738
7739 Ctor = Ctor->getInheritedConstructor();
7740 if (!Ctor) return;
7741
7742 S.Diag(Ctor->getLocation(), diag::note_ovl_candidate_inherited_constructor);
7743}
7744
John McCall3c80f572010-01-12 02:15:36 +00007745} // end anonymous namespace
7746
7747// Notes the location of an overload candidate.
Richard Trieu6efd4c52011-11-23 22:32:32 +00007748void Sema::NoteOverloadCandidate(FunctionDecl *Fn, QualType DestType) {
John McCall220ccbf2010-01-13 00:25:19 +00007749 std::string FnDesc;
7750 OverloadCandidateKind K = ClassifyOverloadCandidate(*this, Fn, FnDesc);
Richard Trieu6efd4c52011-11-23 22:32:32 +00007751 PartialDiagnostic PD = PDiag(diag::note_ovl_candidate)
7752 << (unsigned) K << FnDesc;
7753 HandleFunctionTypeMismatch(PD, Fn->getType(), DestType);
7754 Diag(Fn->getLocation(), PD);
Sebastian Redlf677ea32011-02-05 19:23:19 +00007755 MaybeEmitInheritedConstructorNote(*this, Fn);
John McCallb1622a12010-01-06 09:43:14 +00007756}
7757
Douglas Gregor1be8eec2011-02-19 21:32:49 +00007758//Notes the location of all overload candidates designated through
7759// OverloadedExpr
Richard Trieu6efd4c52011-11-23 22:32:32 +00007760void Sema::NoteAllOverloadCandidates(Expr* OverloadedExpr, QualType DestType) {
Douglas Gregor1be8eec2011-02-19 21:32:49 +00007761 assert(OverloadedExpr->getType() == Context.OverloadTy);
7762
7763 OverloadExpr::FindResult Ovl = OverloadExpr::find(OverloadedExpr);
7764 OverloadExpr *OvlExpr = Ovl.Expression;
7765
7766 for (UnresolvedSetIterator I = OvlExpr->decls_begin(),
7767 IEnd = OvlExpr->decls_end();
7768 I != IEnd; ++I) {
7769 if (FunctionTemplateDecl *FunTmpl =
7770 dyn_cast<FunctionTemplateDecl>((*I)->getUnderlyingDecl()) ) {
Richard Trieu6efd4c52011-11-23 22:32:32 +00007771 NoteOverloadCandidate(FunTmpl->getTemplatedDecl(), DestType);
Douglas Gregor1be8eec2011-02-19 21:32:49 +00007772 } else if (FunctionDecl *Fun
7773 = dyn_cast<FunctionDecl>((*I)->getUnderlyingDecl()) ) {
Richard Trieu6efd4c52011-11-23 22:32:32 +00007774 NoteOverloadCandidate(Fun, DestType);
Douglas Gregor1be8eec2011-02-19 21:32:49 +00007775 }
7776 }
7777}
7778
John McCall1d318332010-01-12 00:44:57 +00007779/// Diagnoses an ambiguous conversion. The partial diagnostic is the
7780/// "lead" diagnostic; it will be given two arguments, the source and
7781/// target types of the conversion.
John McCall120d63c2010-08-24 20:38:10 +00007782void ImplicitConversionSequence::DiagnoseAmbiguousConversion(
7783 Sema &S,
7784 SourceLocation CaretLoc,
7785 const PartialDiagnostic &PDiag) const {
7786 S.Diag(CaretLoc, PDiag)
7787 << Ambiguous.getFromType() << Ambiguous.getToType();
John McCall1d318332010-01-12 00:44:57 +00007788 for (AmbiguousConversionSequence::const_iterator
John McCall120d63c2010-08-24 20:38:10 +00007789 I = Ambiguous.begin(), E = Ambiguous.end(); I != E; ++I) {
7790 S.NoteOverloadCandidate(*I);
John McCall1d318332010-01-12 00:44:57 +00007791 }
John McCall81201622010-01-08 04:41:39 +00007792}
7793
John McCall1d318332010-01-12 00:44:57 +00007794namespace {
7795
John McCalladbb8f82010-01-13 09:16:55 +00007796void DiagnoseBadConversion(Sema &S, OverloadCandidate *Cand, unsigned I) {
7797 const ImplicitConversionSequence &Conv = Cand->Conversions[I];
7798 assert(Conv.isBad());
John McCall220ccbf2010-01-13 00:25:19 +00007799 assert(Cand->Function && "for now, candidate must be a function");
7800 FunctionDecl *Fn = Cand->Function;
7801
7802 // There's a conversion slot for the object argument if this is a
7803 // non-constructor method. Note that 'I' corresponds the
7804 // conversion-slot index.
John McCalladbb8f82010-01-13 09:16:55 +00007805 bool isObjectArgument = false;
John McCall220ccbf2010-01-13 00:25:19 +00007806 if (isa<CXXMethodDecl>(Fn) && !isa<CXXConstructorDecl>(Fn)) {
John McCalladbb8f82010-01-13 09:16:55 +00007807 if (I == 0)
7808 isObjectArgument = true;
7809 else
7810 I--;
John McCall220ccbf2010-01-13 00:25:19 +00007811 }
7812
John McCall220ccbf2010-01-13 00:25:19 +00007813 std::string FnDesc;
7814 OverloadCandidateKind FnKind = ClassifyOverloadCandidate(S, Fn, FnDesc);
7815
John McCalladbb8f82010-01-13 09:16:55 +00007816 Expr *FromExpr = Conv.Bad.FromExpr;
7817 QualType FromTy = Conv.Bad.getFromType();
7818 QualType ToTy = Conv.Bad.getToType();
John McCall220ccbf2010-01-13 00:25:19 +00007819
John McCall5920dbb2010-02-02 02:42:52 +00007820 if (FromTy == S.Context.OverloadTy) {
John McCallb1bdc622010-02-25 01:37:24 +00007821 assert(FromExpr && "overload set argument came from implicit argument?");
John McCall5920dbb2010-02-02 02:42:52 +00007822 Expr *E = FromExpr->IgnoreParens();
7823 if (isa<UnaryOperator>(E))
7824 E = cast<UnaryOperator>(E)->getSubExpr()->IgnoreParens();
John McCall7bb12da2010-02-02 06:20:04 +00007825 DeclarationName Name = cast<OverloadExpr>(E)->getName();
John McCall5920dbb2010-02-02 02:42:52 +00007826
7827 S.Diag(Fn->getLocation(), diag::note_ovl_candidate_bad_overload)
7828 << (unsigned) FnKind << FnDesc
7829 << (FromExpr ? FromExpr->getSourceRange() : SourceRange())
7830 << ToTy << Name << I+1;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007831 MaybeEmitInheritedConstructorNote(S, Fn);
John McCall5920dbb2010-02-02 02:42:52 +00007832 return;
7833 }
7834
John McCall258b2032010-01-23 08:10:49 +00007835 // Do some hand-waving analysis to see if the non-viability is due
7836 // to a qualifier mismatch.
John McCall651f3ee2010-01-14 03:28:57 +00007837 CanQualType CFromTy = S.Context.getCanonicalType(FromTy);
7838 CanQualType CToTy = S.Context.getCanonicalType(ToTy);
7839 if (CanQual<ReferenceType> RT = CToTy->getAs<ReferenceType>())
7840 CToTy = RT->getPointeeType();
7841 else {
7842 // TODO: detect and diagnose the full richness of const mismatches.
7843 if (CanQual<PointerType> FromPT = CFromTy->getAs<PointerType>())
7844 if (CanQual<PointerType> ToPT = CToTy->getAs<PointerType>())
7845 CFromTy = FromPT->getPointeeType(), CToTy = ToPT->getPointeeType();
7846 }
7847
7848 if (CToTy.getUnqualifiedType() == CFromTy.getUnqualifiedType() &&
7849 !CToTy.isAtLeastAsQualifiedAs(CFromTy)) {
John McCall651f3ee2010-01-14 03:28:57 +00007850 Qualifiers FromQs = CFromTy.getQualifiers();
7851 Qualifiers ToQs = CToTy.getQualifiers();
7852
7853 if (FromQs.getAddressSpace() != ToQs.getAddressSpace()) {
7854 S.Diag(Fn->getLocation(), diag::note_ovl_candidate_bad_addrspace)
7855 << (unsigned) FnKind << FnDesc
7856 << (FromExpr ? FromExpr->getSourceRange() : SourceRange())
7857 << FromTy
7858 << FromQs.getAddressSpace() << ToQs.getAddressSpace()
7859 << (unsigned) isObjectArgument << I+1;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007860 MaybeEmitInheritedConstructorNote(S, Fn);
John McCall651f3ee2010-01-14 03:28:57 +00007861 return;
7862 }
7863
John McCallf85e1932011-06-15 23:02:42 +00007864 if (FromQs.getObjCLifetime() != ToQs.getObjCLifetime()) {
Argyrios Kyrtzidisb8b03132011-06-24 00:08:59 +00007865 S.Diag(Fn->getLocation(), diag::note_ovl_candidate_bad_ownership)
John McCallf85e1932011-06-15 23:02:42 +00007866 << (unsigned) FnKind << FnDesc
7867 << (FromExpr ? FromExpr->getSourceRange() : SourceRange())
7868 << FromTy
7869 << FromQs.getObjCLifetime() << ToQs.getObjCLifetime()
7870 << (unsigned) isObjectArgument << I+1;
7871 MaybeEmitInheritedConstructorNote(S, Fn);
7872 return;
7873 }
7874
Douglas Gregor028ea4b2011-04-26 23:16:46 +00007875 if (FromQs.getObjCGCAttr() != ToQs.getObjCGCAttr()) {
7876 S.Diag(Fn->getLocation(), diag::note_ovl_candidate_bad_gc)
7877 << (unsigned) FnKind << FnDesc
7878 << (FromExpr ? FromExpr->getSourceRange() : SourceRange())
7879 << FromTy
7880 << FromQs.getObjCGCAttr() << ToQs.getObjCGCAttr()
7881 << (unsigned) isObjectArgument << I+1;
7882 MaybeEmitInheritedConstructorNote(S, Fn);
7883 return;
7884 }
7885
John McCall651f3ee2010-01-14 03:28:57 +00007886 unsigned CVR = FromQs.getCVRQualifiers() & ~ToQs.getCVRQualifiers();
7887 assert(CVR && "unexpected qualifiers mismatch");
7888
7889 if (isObjectArgument) {
7890 S.Diag(Fn->getLocation(), diag::note_ovl_candidate_bad_cvr_this)
7891 << (unsigned) FnKind << FnDesc
7892 << (FromExpr ? FromExpr->getSourceRange() : SourceRange())
7893 << FromTy << (CVR - 1);
7894 } else {
7895 S.Diag(Fn->getLocation(), diag::note_ovl_candidate_bad_cvr)
7896 << (unsigned) FnKind << FnDesc
7897 << (FromExpr ? FromExpr->getSourceRange() : SourceRange())
7898 << FromTy << (CVR - 1) << I+1;
7899 }
Sebastian Redlf677ea32011-02-05 19:23:19 +00007900 MaybeEmitInheritedConstructorNote(S, Fn);
John McCall651f3ee2010-01-14 03:28:57 +00007901 return;
7902 }
7903
Sebastian Redlfd2a00a2011-09-24 17:48:32 +00007904 // Special diagnostic for failure to convert an initializer list, since
7905 // telling the user that it has type void is not useful.
7906 if (FromExpr && isa<InitListExpr>(FromExpr)) {
7907 S.Diag(Fn->getLocation(), diag::note_ovl_candidate_bad_list_argument)
7908 << (unsigned) FnKind << FnDesc
7909 << (FromExpr ? FromExpr->getSourceRange() : SourceRange())
7910 << FromTy << ToTy << (unsigned) isObjectArgument << I+1;
7911 MaybeEmitInheritedConstructorNote(S, Fn);
7912 return;
7913 }
7914
John McCall258b2032010-01-23 08:10:49 +00007915 // Diagnose references or pointers to incomplete types differently,
7916 // since it's far from impossible that the incompleteness triggered
7917 // the failure.
7918 QualType TempFromTy = FromTy.getNonReferenceType();
7919 if (const PointerType *PTy = TempFromTy->getAs<PointerType>())
7920 TempFromTy = PTy->getPointeeType();
7921 if (TempFromTy->isIncompleteType()) {
7922 S.Diag(Fn->getLocation(), diag::note_ovl_candidate_bad_conv_incomplete)
7923 << (unsigned) FnKind << FnDesc
7924 << (FromExpr ? FromExpr->getSourceRange() : SourceRange())
7925 << FromTy << ToTy << (unsigned) isObjectArgument << I+1;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007926 MaybeEmitInheritedConstructorNote(S, Fn);
John McCall258b2032010-01-23 08:10:49 +00007927 return;
7928 }
7929
Douglas Gregor85789812010-06-30 23:01:39 +00007930 // Diagnose base -> derived pointer conversions.
Douglas Gregor2f9d8742010-07-01 02:14:45 +00007931 unsigned BaseToDerivedConversion = 0;
Douglas Gregor85789812010-06-30 23:01:39 +00007932 if (const PointerType *FromPtrTy = FromTy->getAs<PointerType>()) {
7933 if (const PointerType *ToPtrTy = ToTy->getAs<PointerType>()) {
7934 if (ToPtrTy->getPointeeType().isAtLeastAsQualifiedAs(
7935 FromPtrTy->getPointeeType()) &&
7936 !FromPtrTy->getPointeeType()->isIncompleteType() &&
7937 !ToPtrTy->getPointeeType()->isIncompleteType() &&
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00007938 S.IsDerivedFrom(ToPtrTy->getPointeeType(),
Douglas Gregor85789812010-06-30 23:01:39 +00007939 FromPtrTy->getPointeeType()))
Douglas Gregor2f9d8742010-07-01 02:14:45 +00007940 BaseToDerivedConversion = 1;
Douglas Gregor85789812010-06-30 23:01:39 +00007941 }
7942 } else if (const ObjCObjectPointerType *FromPtrTy
7943 = FromTy->getAs<ObjCObjectPointerType>()) {
7944 if (const ObjCObjectPointerType *ToPtrTy
7945 = ToTy->getAs<ObjCObjectPointerType>())
7946 if (const ObjCInterfaceDecl *FromIface = FromPtrTy->getInterfaceDecl())
7947 if (const ObjCInterfaceDecl *ToIface = ToPtrTy->getInterfaceDecl())
7948 if (ToPtrTy->getPointeeType().isAtLeastAsQualifiedAs(
7949 FromPtrTy->getPointeeType()) &&
7950 FromIface->isSuperClassOf(ToIface))
Douglas Gregor2f9d8742010-07-01 02:14:45 +00007951 BaseToDerivedConversion = 2;
7952 } else if (const ReferenceType *ToRefTy = ToTy->getAs<ReferenceType>()) {
7953 if (ToRefTy->getPointeeType().isAtLeastAsQualifiedAs(FromTy) &&
7954 !FromTy->isIncompleteType() &&
7955 !ToRefTy->getPointeeType()->isIncompleteType() &&
7956 S.IsDerivedFrom(ToRefTy->getPointeeType(), FromTy))
7957 BaseToDerivedConversion = 3;
7958 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00007959
Douglas Gregor2f9d8742010-07-01 02:14:45 +00007960 if (BaseToDerivedConversion) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00007961 S.Diag(Fn->getLocation(),
Douglas Gregor2f9d8742010-07-01 02:14:45 +00007962 diag::note_ovl_candidate_bad_base_to_derived_conv)
Douglas Gregor85789812010-06-30 23:01:39 +00007963 << (unsigned) FnKind << FnDesc
7964 << (FromExpr ? FromExpr->getSourceRange() : SourceRange())
Douglas Gregor2f9d8742010-07-01 02:14:45 +00007965 << (BaseToDerivedConversion - 1)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00007966 << FromTy << ToTy << I+1;
Sebastian Redlf677ea32011-02-05 19:23:19 +00007967 MaybeEmitInheritedConstructorNote(S, Fn);
Douglas Gregor85789812010-06-30 23:01:39 +00007968 return;
7969 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00007970
Fariborz Jahanian909bcb32011-07-20 17:14:09 +00007971 if (isa<ObjCObjectPointerType>(CFromTy) &&
7972 isa<PointerType>(CToTy)) {
7973 Qualifiers FromQs = CFromTy.getQualifiers();
7974 Qualifiers ToQs = CToTy.getQualifiers();
7975 if (FromQs.getObjCLifetime() != ToQs.getObjCLifetime()) {
7976 S.Diag(Fn->getLocation(), diag::note_ovl_candidate_bad_arc_conv)
7977 << (unsigned) FnKind << FnDesc
7978 << (FromExpr ? FromExpr->getSourceRange() : SourceRange())
7979 << FromTy << ToTy << (unsigned) isObjectArgument << I+1;
7980 MaybeEmitInheritedConstructorNote(S, Fn);
7981 return;
7982 }
7983 }
7984
Anna Zaksb89fe6b2011-07-19 19:49:12 +00007985 // Emit the generic diagnostic and, optionally, add the hints to it.
7986 PartialDiagnostic FDiag = S.PDiag(diag::note_ovl_candidate_bad_conv);
7987 FDiag << (unsigned) FnKind << FnDesc
John McCalladbb8f82010-01-13 09:16:55 +00007988 << (FromExpr ? FromExpr->getSourceRange() : SourceRange())
Anna Zaksb89fe6b2011-07-19 19:49:12 +00007989 << FromTy << ToTy << (unsigned) isObjectArgument << I + 1
7990 << (unsigned) (Cand->Fix.Kind);
7991
7992 // If we can fix the conversion, suggest the FixIts.
Benjamin Kramer1136ef02012-01-14 21:05:10 +00007993 for (std::vector<FixItHint>::iterator HI = Cand->Fix.Hints.begin(),
7994 HE = Cand->Fix.Hints.end(); HI != HE; ++HI)
Anna Zaksb89fe6b2011-07-19 19:49:12 +00007995 FDiag << *HI;
7996 S.Diag(Fn->getLocation(), FDiag);
7997
Sebastian Redlf677ea32011-02-05 19:23:19 +00007998 MaybeEmitInheritedConstructorNote(S, Fn);
John McCalladbb8f82010-01-13 09:16:55 +00007999}
8000
8001void DiagnoseArityMismatch(Sema &S, OverloadCandidate *Cand,
8002 unsigned NumFormalArgs) {
8003 // TODO: treat calls to a missing default constructor as a special case
8004
8005 FunctionDecl *Fn = Cand->Function;
8006 const FunctionProtoType *FnTy = Fn->getType()->getAs<FunctionProtoType>();
8007
8008 unsigned MinParams = Fn->getMinRequiredArguments();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00008009
Douglas Gregor439d3c32011-05-05 00:13:13 +00008010 // With invalid overloaded operators, it's possible that we think we
8011 // have an arity mismatch when it fact it looks like we have the
8012 // right number of arguments, because only overloaded operators have
8013 // the weird behavior of overloading member and non-member functions.
8014 // Just don't report anything.
8015 if (Fn->isInvalidDecl() &&
8016 Fn->getDeclName().getNameKind() == DeclarationName::CXXOperatorName)
8017 return;
8018
John McCalladbb8f82010-01-13 09:16:55 +00008019 // at least / at most / exactly
8020 unsigned mode, modeCount;
8021 if (NumFormalArgs < MinParams) {
Douglas Gregora18592e2010-05-08 18:13:28 +00008022 assert((Cand->FailureKind == ovl_fail_too_few_arguments) ||
8023 (Cand->FailureKind == ovl_fail_bad_deduction &&
8024 Cand->DeductionFailure.Result == Sema::TDK_TooFewArguments));
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00008025 if (MinParams != FnTy->getNumArgs() ||
Douglas Gregorf5c65ff2011-01-06 22:09:01 +00008026 FnTy->isVariadic() || FnTy->isTemplateVariadic())
John McCalladbb8f82010-01-13 09:16:55 +00008027 mode = 0; // "at least"
8028 else
8029 mode = 2; // "exactly"
8030 modeCount = MinParams;
8031 } else {
Douglas Gregora18592e2010-05-08 18:13:28 +00008032 assert((Cand->FailureKind == ovl_fail_too_many_arguments) ||
8033 (Cand->FailureKind == ovl_fail_bad_deduction &&
8034 Cand->DeductionFailure.Result == Sema::TDK_TooManyArguments));
John McCalladbb8f82010-01-13 09:16:55 +00008035 if (MinParams != FnTy->getNumArgs())
8036 mode = 1; // "at most"
8037 else
8038 mode = 2; // "exactly"
8039 modeCount = FnTy->getNumArgs();
8040 }
8041
8042 std::string Description;
8043 OverloadCandidateKind FnKind = ClassifyOverloadCandidate(S, Fn, Description);
8044
8045 S.Diag(Fn->getLocation(), diag::note_ovl_candidate_arity)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00008046 << (unsigned) FnKind << (Fn->getDescribedFunctionTemplate() != 0) << mode
Douglas Gregora18592e2010-05-08 18:13:28 +00008047 << modeCount << NumFormalArgs;
Sebastian Redlf677ea32011-02-05 19:23:19 +00008048 MaybeEmitInheritedConstructorNote(S, Fn);
John McCall220ccbf2010-01-13 00:25:19 +00008049}
8050
John McCall342fec42010-02-01 18:53:26 +00008051/// Diagnose a failed template-argument deduction.
8052void DiagnoseBadDeduction(Sema &S, OverloadCandidate *Cand,
Ahmed Charles13a140c2012-02-25 11:00:22 +00008053 unsigned NumArgs) {
John McCall342fec42010-02-01 18:53:26 +00008054 FunctionDecl *Fn = Cand->Function; // pattern
8055
Douglas Gregora9333192010-05-08 17:41:32 +00008056 TemplateParameter Param = Cand->DeductionFailure.getTemplateParameter();
Douglas Gregorf1a84452010-05-08 19:15:54 +00008057 NamedDecl *ParamD;
8058 (ParamD = Param.dyn_cast<TemplateTypeParmDecl*>()) ||
8059 (ParamD = Param.dyn_cast<NonTypeTemplateParmDecl*>()) ||
8060 (ParamD = Param.dyn_cast<TemplateTemplateParmDecl*>());
John McCall342fec42010-02-01 18:53:26 +00008061 switch (Cand->DeductionFailure.Result) {
8062 case Sema::TDK_Success:
8063 llvm_unreachable("TDK_success while diagnosing bad deduction");
8064
8065 case Sema::TDK_Incomplete: {
John McCall342fec42010-02-01 18:53:26 +00008066 assert(ParamD && "no parameter found for incomplete deduction result");
8067 S.Diag(Fn->getLocation(), diag::note_ovl_candidate_incomplete_deduction)
8068 << ParamD->getDeclName();
Sebastian Redlf677ea32011-02-05 19:23:19 +00008069 MaybeEmitInheritedConstructorNote(S, Fn);
John McCall342fec42010-02-01 18:53:26 +00008070 return;
8071 }
8072
John McCall57e97782010-08-05 09:05:08 +00008073 case Sema::TDK_Underqualified: {
8074 assert(ParamD && "no parameter found for bad qualifiers deduction result");
8075 TemplateTypeParmDecl *TParam = cast<TemplateTypeParmDecl>(ParamD);
8076
8077 QualType Param = Cand->DeductionFailure.getFirstArg()->getAsType();
8078
8079 // Param will have been canonicalized, but it should just be a
8080 // qualified version of ParamD, so move the qualifiers to that.
John McCall49f4e1c2010-12-10 11:01:00 +00008081 QualifierCollector Qs;
John McCall57e97782010-08-05 09:05:08 +00008082 Qs.strip(Param);
John McCall49f4e1c2010-12-10 11:01:00 +00008083 QualType NonCanonParam = Qs.apply(S.Context, TParam->getTypeForDecl());
John McCall57e97782010-08-05 09:05:08 +00008084 assert(S.Context.hasSameType(Param, NonCanonParam));
8085
8086 // Arg has also been canonicalized, but there's nothing we can do
8087 // about that. It also doesn't matter as much, because it won't
8088 // have any template parameters in it (because deduction isn't
8089 // done on dependent types).
8090 QualType Arg = Cand->DeductionFailure.getSecondArg()->getAsType();
8091
8092 S.Diag(Fn->getLocation(), diag::note_ovl_candidate_underqualified)
8093 << ParamD->getDeclName() << Arg << NonCanonParam;
Sebastian Redlf677ea32011-02-05 19:23:19 +00008094 MaybeEmitInheritedConstructorNote(S, Fn);
John McCall57e97782010-08-05 09:05:08 +00008095 return;
8096 }
8097
8098 case Sema::TDK_Inconsistent: {
Chandler Carruth6df868e2010-12-12 08:17:55 +00008099 assert(ParamD && "no parameter found for inconsistent deduction result");
Douglas Gregora9333192010-05-08 17:41:32 +00008100 int which = 0;
Douglas Gregorf1a84452010-05-08 19:15:54 +00008101 if (isa<TemplateTypeParmDecl>(ParamD))
Douglas Gregora9333192010-05-08 17:41:32 +00008102 which = 0;
Douglas Gregorf1a84452010-05-08 19:15:54 +00008103 else if (isa<NonTypeTemplateParmDecl>(ParamD))
Douglas Gregora9333192010-05-08 17:41:32 +00008104 which = 1;
8105 else {
Douglas Gregora9333192010-05-08 17:41:32 +00008106 which = 2;
8107 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00008108
Douglas Gregora9333192010-05-08 17:41:32 +00008109 S.Diag(Fn->getLocation(), diag::note_ovl_candidate_inconsistent_deduction)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00008110 << which << ParamD->getDeclName()
Douglas Gregora9333192010-05-08 17:41:32 +00008111 << *Cand->DeductionFailure.getFirstArg()
8112 << *Cand->DeductionFailure.getSecondArg();
Sebastian Redlf677ea32011-02-05 19:23:19 +00008113 MaybeEmitInheritedConstructorNote(S, Fn);
Douglas Gregora9333192010-05-08 17:41:32 +00008114 return;
8115 }
Douglas Gregora18592e2010-05-08 18:13:28 +00008116
Douglas Gregorf1a84452010-05-08 19:15:54 +00008117 case Sema::TDK_InvalidExplicitArguments:
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00008118 assert(ParamD && "no parameter found for invalid explicit arguments");
Douglas Gregorf1a84452010-05-08 19:15:54 +00008119 if (ParamD->getDeclName())
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00008120 S.Diag(Fn->getLocation(),
Douglas Gregorf1a84452010-05-08 19:15:54 +00008121 diag::note_ovl_candidate_explicit_arg_mismatch_named)
8122 << ParamD->getDeclName();
8123 else {
8124 int index = 0;
8125 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(ParamD))
8126 index = TTP->getIndex();
8127 else if (NonTypeTemplateParmDecl *NTTP
8128 = dyn_cast<NonTypeTemplateParmDecl>(ParamD))
8129 index = NTTP->getIndex();
8130 else
8131 index = cast<TemplateTemplateParmDecl>(ParamD)->getIndex();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00008132 S.Diag(Fn->getLocation(),
Douglas Gregorf1a84452010-05-08 19:15:54 +00008133 diag::note_ovl_candidate_explicit_arg_mismatch_unnamed)
8134 << (index + 1);
8135 }
Sebastian Redlf677ea32011-02-05 19:23:19 +00008136 MaybeEmitInheritedConstructorNote(S, Fn);
Douglas Gregorf1a84452010-05-08 19:15:54 +00008137 return;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00008138
Douglas Gregora18592e2010-05-08 18:13:28 +00008139 case Sema::TDK_TooManyArguments:
8140 case Sema::TDK_TooFewArguments:
8141 DiagnoseArityMismatch(S, Cand, NumArgs);
8142 return;
Douglas Gregorec20f462010-05-08 20:07:26 +00008143
8144 case Sema::TDK_InstantiationDepth:
8145 S.Diag(Fn->getLocation(), diag::note_ovl_candidate_instantiation_depth);
Sebastian Redlf677ea32011-02-05 19:23:19 +00008146 MaybeEmitInheritedConstructorNote(S, Fn);
Douglas Gregorec20f462010-05-08 20:07:26 +00008147 return;
8148
8149 case Sema::TDK_SubstitutionFailure: {
8150 std::string ArgString;
8151 if (TemplateArgumentList *Args
8152 = Cand->DeductionFailure.getTemplateArgumentList())
8153 ArgString = S.getTemplateArgumentBindingsText(
8154 Fn->getDescribedFunctionTemplate()->getTemplateParameters(),
8155 *Args);
8156 S.Diag(Fn->getLocation(), diag::note_ovl_candidate_substitution_failure)
8157 << ArgString;
Sebastian Redlf677ea32011-02-05 19:23:19 +00008158 MaybeEmitInheritedConstructorNote(S, Fn);
Douglas Gregorec20f462010-05-08 20:07:26 +00008159 return;
8160 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00008161
John McCall342fec42010-02-01 18:53:26 +00008162 // TODO: diagnose these individually, then kill off
8163 // note_ovl_candidate_bad_deduction, which is uselessly vague.
John McCall342fec42010-02-01 18:53:26 +00008164 case Sema::TDK_NonDeducedMismatch:
John McCall342fec42010-02-01 18:53:26 +00008165 case Sema::TDK_FailedOverloadResolution:
8166 S.Diag(Fn->getLocation(), diag::note_ovl_candidate_bad_deduction);
Sebastian Redlf677ea32011-02-05 19:23:19 +00008167 MaybeEmitInheritedConstructorNote(S, Fn);
John McCall342fec42010-02-01 18:53:26 +00008168 return;
8169 }
8170}
8171
Peter Collingbourne78dd67e2011-10-02 23:49:40 +00008172/// CUDA: diagnose an invalid call across targets.
8173void DiagnoseBadTarget(Sema &S, OverloadCandidate *Cand) {
8174 FunctionDecl *Caller = cast<FunctionDecl>(S.CurContext);
8175 FunctionDecl *Callee = Cand->Function;
8176
8177 Sema::CUDAFunctionTarget CallerTarget = S.IdentifyCUDATarget(Caller),
8178 CalleeTarget = S.IdentifyCUDATarget(Callee);
8179
8180 std::string FnDesc;
8181 OverloadCandidateKind FnKind = ClassifyOverloadCandidate(S, Callee, FnDesc);
8182
8183 S.Diag(Callee->getLocation(), diag::note_ovl_candidate_bad_target)
8184 << (unsigned) FnKind << CalleeTarget << CallerTarget;
8185}
8186
John McCall342fec42010-02-01 18:53:26 +00008187/// Generates a 'note' diagnostic for an overload candidate. We've
8188/// already generated a primary error at the call site.
8189///
8190/// It really does need to be a single diagnostic with its caret
8191/// pointed at the candidate declaration. Yes, this creates some
8192/// major challenges of technical writing. Yes, this makes pointing
8193/// out problems with specific arguments quite awkward. It's still
8194/// better than generating twenty screens of text for every failed
8195/// overload.
8196///
8197/// It would be great to be able to express per-candidate problems
8198/// more richly for those diagnostic clients that cared, but we'd
8199/// still have to be just as careful with the default diagnostics.
John McCall220ccbf2010-01-13 00:25:19 +00008200void NoteFunctionCandidate(Sema &S, OverloadCandidate *Cand,
Ahmed Charles13a140c2012-02-25 11:00:22 +00008201 unsigned NumArgs) {
John McCall3c80f572010-01-12 02:15:36 +00008202 FunctionDecl *Fn = Cand->Function;
8203
John McCall81201622010-01-08 04:41:39 +00008204 // Note deleted candidates, but only if they're viable.
Argyrios Kyrtzidis572bbec2011-06-23 00:41:50 +00008205 if (Cand->Viable && (Fn->isDeleted() ||
8206 S.isFunctionConsideredUnavailable(Fn))) {
John McCall220ccbf2010-01-13 00:25:19 +00008207 std::string FnDesc;
8208 OverloadCandidateKind FnKind = ClassifyOverloadCandidate(S, Fn, FnDesc);
John McCall3c80f572010-01-12 02:15:36 +00008209
8210 S.Diag(Fn->getLocation(), diag::note_ovl_candidate_deleted)
John McCall220ccbf2010-01-13 00:25:19 +00008211 << FnKind << FnDesc << Fn->isDeleted();
Sebastian Redlf677ea32011-02-05 19:23:19 +00008212 MaybeEmitInheritedConstructorNote(S, Fn);
John McCalla1d7d622010-01-08 00:58:21 +00008213 return;
John McCall81201622010-01-08 04:41:39 +00008214 }
8215
John McCall220ccbf2010-01-13 00:25:19 +00008216 // We don't really have anything else to say about viable candidates.
8217 if (Cand->Viable) {
8218 S.NoteOverloadCandidate(Fn);
8219 return;
8220 }
John McCall1d318332010-01-12 00:44:57 +00008221
John McCalladbb8f82010-01-13 09:16:55 +00008222 switch (Cand->FailureKind) {
8223 case ovl_fail_too_many_arguments:
8224 case ovl_fail_too_few_arguments:
8225 return DiagnoseArityMismatch(S, Cand, NumArgs);
John McCall220ccbf2010-01-13 00:25:19 +00008226
John McCalladbb8f82010-01-13 09:16:55 +00008227 case ovl_fail_bad_deduction:
Ahmed Charles13a140c2012-02-25 11:00:22 +00008228 return DiagnoseBadDeduction(S, Cand, NumArgs);
John McCall342fec42010-02-01 18:53:26 +00008229
John McCall717e8912010-01-23 05:17:32 +00008230 case ovl_fail_trivial_conversion:
8231 case ovl_fail_bad_final_conversion:
Douglas Gregorc520c842010-04-12 23:42:09 +00008232 case ovl_fail_final_conversion_not_exact:
John McCalladbb8f82010-01-13 09:16:55 +00008233 return S.NoteOverloadCandidate(Fn);
John McCall220ccbf2010-01-13 00:25:19 +00008234
John McCallb1bdc622010-02-25 01:37:24 +00008235 case ovl_fail_bad_conversion: {
8236 unsigned I = (Cand->IgnoreObjectArgument ? 1 : 0);
Benjamin Kramer09dd3792012-01-14 16:32:05 +00008237 for (unsigned N = Cand->NumConversions; I != N; ++I)
John McCalladbb8f82010-01-13 09:16:55 +00008238 if (Cand->Conversions[I].isBad())
8239 return DiagnoseBadConversion(S, Cand, I);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00008240
John McCalladbb8f82010-01-13 09:16:55 +00008241 // FIXME: this currently happens when we're called from SemaInit
8242 // when user-conversion overload fails. Figure out how to handle
8243 // those conditions and diagnose them well.
8244 return S.NoteOverloadCandidate(Fn);
John McCall220ccbf2010-01-13 00:25:19 +00008245 }
Peter Collingbourne78dd67e2011-10-02 23:49:40 +00008246
8247 case ovl_fail_bad_target:
8248 return DiagnoseBadTarget(S, Cand);
John McCallb1bdc622010-02-25 01:37:24 +00008249 }
John McCalla1d7d622010-01-08 00:58:21 +00008250}
8251
8252void NoteSurrogateCandidate(Sema &S, OverloadCandidate *Cand) {
8253 // Desugar the type of the surrogate down to a function type,
8254 // retaining as many typedefs as possible while still showing
8255 // the function type (and, therefore, its parameter types).
8256 QualType FnType = Cand->Surrogate->getConversionType();
8257 bool isLValueReference = false;
8258 bool isRValueReference = false;
8259 bool isPointer = false;
8260 if (const LValueReferenceType *FnTypeRef =
8261 FnType->getAs<LValueReferenceType>()) {
8262 FnType = FnTypeRef->getPointeeType();
8263 isLValueReference = true;
8264 } else if (const RValueReferenceType *FnTypeRef =
8265 FnType->getAs<RValueReferenceType>()) {
8266 FnType = FnTypeRef->getPointeeType();
8267 isRValueReference = true;
8268 }
8269 if (const PointerType *FnTypePtr = FnType->getAs<PointerType>()) {
8270 FnType = FnTypePtr->getPointeeType();
8271 isPointer = true;
8272 }
8273 // Desugar down to a function type.
8274 FnType = QualType(FnType->getAs<FunctionType>(), 0);
8275 // Reconstruct the pointer/reference as appropriate.
8276 if (isPointer) FnType = S.Context.getPointerType(FnType);
8277 if (isRValueReference) FnType = S.Context.getRValueReferenceType(FnType);
8278 if (isLValueReference) FnType = S.Context.getLValueReferenceType(FnType);
8279
8280 S.Diag(Cand->Surrogate->getLocation(), diag::note_ovl_surrogate_cand)
8281 << FnType;
Sebastian Redlf677ea32011-02-05 19:23:19 +00008282 MaybeEmitInheritedConstructorNote(S, Cand->Surrogate);
John McCalla1d7d622010-01-08 00:58:21 +00008283}
8284
8285void NoteBuiltinOperatorCandidate(Sema &S,
8286 const char *Opc,
8287 SourceLocation OpLoc,
8288 OverloadCandidate *Cand) {
Benjamin Kramer09dd3792012-01-14 16:32:05 +00008289 assert(Cand->NumConversions <= 2 && "builtin operator is not binary");
John McCalla1d7d622010-01-08 00:58:21 +00008290 std::string TypeStr("operator");
8291 TypeStr += Opc;
8292 TypeStr += "(";
8293 TypeStr += Cand->BuiltinTypes.ParamTypes[0].getAsString();
Benjamin Kramer09dd3792012-01-14 16:32:05 +00008294 if (Cand->NumConversions == 1) {
John McCalla1d7d622010-01-08 00:58:21 +00008295 TypeStr += ")";
8296 S.Diag(OpLoc, diag::note_ovl_builtin_unary_candidate) << TypeStr;
8297 } else {
8298 TypeStr += ", ";
8299 TypeStr += Cand->BuiltinTypes.ParamTypes[1].getAsString();
8300 TypeStr += ")";
8301 S.Diag(OpLoc, diag::note_ovl_builtin_binary_candidate) << TypeStr;
8302 }
8303}
8304
8305void NoteAmbiguousUserConversions(Sema &S, SourceLocation OpLoc,
8306 OverloadCandidate *Cand) {
Benjamin Kramer09dd3792012-01-14 16:32:05 +00008307 unsigned NoOperands = Cand->NumConversions;
John McCalla1d7d622010-01-08 00:58:21 +00008308 for (unsigned ArgIdx = 0; ArgIdx < NoOperands; ++ArgIdx) {
8309 const ImplicitConversionSequence &ICS = Cand->Conversions[ArgIdx];
John McCall1d318332010-01-12 00:44:57 +00008310 if (ICS.isBad()) break; // all meaningless after first invalid
8311 if (!ICS.isAmbiguous()) continue;
8312
John McCall120d63c2010-08-24 20:38:10 +00008313 ICS.DiagnoseAmbiguousConversion(S, OpLoc,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00008314 S.PDiag(diag::note_ambiguous_type_conversion));
John McCalla1d7d622010-01-08 00:58:21 +00008315 }
8316}
8317
John McCall1b77e732010-01-15 23:32:50 +00008318SourceLocation GetLocationForCandidate(const OverloadCandidate *Cand) {
8319 if (Cand->Function)
8320 return Cand->Function->getLocation();
John McCallf3cf22b2010-01-16 03:50:16 +00008321 if (Cand->IsSurrogate)
John McCall1b77e732010-01-15 23:32:50 +00008322 return Cand->Surrogate->getLocation();
8323 return SourceLocation();
8324}
8325
Benjamin Kramerafc5b152011-09-10 21:52:04 +00008326static unsigned
8327RankDeductionFailure(const OverloadCandidate::DeductionFailureInfo &DFI) {
Chandler Carruth78bf6802011-09-10 00:51:24 +00008328 switch ((Sema::TemplateDeductionResult)DFI.Result) {
Kaelyn Uhrainfd641f92011-09-09 21:58:49 +00008329 case Sema::TDK_Success:
David Blaikieb219cfc2011-09-23 05:06:16 +00008330 llvm_unreachable("TDK_success while diagnosing bad deduction");
Benjamin Kramerafc5b152011-09-10 21:52:04 +00008331
Kaelyn Uhrainfd641f92011-09-09 21:58:49 +00008332 case Sema::TDK_Incomplete:
8333 return 1;
8334
8335 case Sema::TDK_Underqualified:
8336 case Sema::TDK_Inconsistent:
8337 return 2;
8338
8339 case Sema::TDK_SubstitutionFailure:
8340 case Sema::TDK_NonDeducedMismatch:
8341 return 3;
8342
8343 case Sema::TDK_InstantiationDepth:
8344 case Sema::TDK_FailedOverloadResolution:
8345 return 4;
8346
8347 case Sema::TDK_InvalidExplicitArguments:
8348 return 5;
8349
8350 case Sema::TDK_TooManyArguments:
8351 case Sema::TDK_TooFewArguments:
8352 return 6;
8353 }
Benjamin Kramerafc5b152011-09-10 21:52:04 +00008354 llvm_unreachable("Unhandled deduction result");
Kaelyn Uhrainfd641f92011-09-09 21:58:49 +00008355}
8356
John McCallbf65c0b2010-01-12 00:48:53 +00008357struct CompareOverloadCandidatesForDisplay {
8358 Sema &S;
8359 CompareOverloadCandidatesForDisplay(Sema &S) : S(S) {}
John McCall81201622010-01-08 04:41:39 +00008360
8361 bool operator()(const OverloadCandidate *L,
8362 const OverloadCandidate *R) {
John McCallf3cf22b2010-01-16 03:50:16 +00008363 // Fast-path this check.
8364 if (L == R) return false;
8365
John McCall81201622010-01-08 04:41:39 +00008366 // Order first by viability.
John McCallbf65c0b2010-01-12 00:48:53 +00008367 if (L->Viable) {
8368 if (!R->Viable) return true;
8369
8370 // TODO: introduce a tri-valued comparison for overload
8371 // candidates. Would be more worthwhile if we had a sort
8372 // that could exploit it.
John McCall120d63c2010-08-24 20:38:10 +00008373 if (isBetterOverloadCandidate(S, *L, *R, SourceLocation())) return true;
8374 if (isBetterOverloadCandidate(S, *R, *L, SourceLocation())) return false;
John McCallbf65c0b2010-01-12 00:48:53 +00008375 } else if (R->Viable)
8376 return false;
John McCall81201622010-01-08 04:41:39 +00008377
John McCall1b77e732010-01-15 23:32:50 +00008378 assert(L->Viable == R->Viable);
John McCall81201622010-01-08 04:41:39 +00008379
John McCall1b77e732010-01-15 23:32:50 +00008380 // Criteria by which we can sort non-viable candidates:
8381 if (!L->Viable) {
8382 // 1. Arity mismatches come after other candidates.
8383 if (L->FailureKind == ovl_fail_too_many_arguments ||
8384 L->FailureKind == ovl_fail_too_few_arguments)
8385 return false;
8386 if (R->FailureKind == ovl_fail_too_many_arguments ||
8387 R->FailureKind == ovl_fail_too_few_arguments)
8388 return true;
John McCall81201622010-01-08 04:41:39 +00008389
John McCall717e8912010-01-23 05:17:32 +00008390 // 2. Bad conversions come first and are ordered by the number
8391 // of bad conversions and quality of good conversions.
8392 if (L->FailureKind == ovl_fail_bad_conversion) {
8393 if (R->FailureKind != ovl_fail_bad_conversion)
8394 return true;
8395
Anna Zaksb89fe6b2011-07-19 19:49:12 +00008396 // The conversion that can be fixed with a smaller number of changes,
8397 // comes first.
8398 unsigned numLFixes = L->Fix.NumConversionsFixed;
8399 unsigned numRFixes = R->Fix.NumConversionsFixed;
8400 numLFixes = (numLFixes == 0) ? UINT_MAX : numLFixes;
8401 numRFixes = (numRFixes == 0) ? UINT_MAX : numRFixes;
Anna Zaksffe9edd2011-07-21 00:34:39 +00008402 if (numLFixes != numRFixes) {
Anna Zaksb89fe6b2011-07-19 19:49:12 +00008403 if (numLFixes < numRFixes)
8404 return true;
8405 else
8406 return false;
Anna Zaksffe9edd2011-07-21 00:34:39 +00008407 }
Anna Zaksb89fe6b2011-07-19 19:49:12 +00008408
John McCall717e8912010-01-23 05:17:32 +00008409 // If there's any ordering between the defined conversions...
8410 // FIXME: this might not be transitive.
Benjamin Kramer09dd3792012-01-14 16:32:05 +00008411 assert(L->NumConversions == R->NumConversions);
John McCall717e8912010-01-23 05:17:32 +00008412
8413 int leftBetter = 0;
John McCall3a813372010-02-25 10:46:05 +00008414 unsigned I = (L->IgnoreObjectArgument || R->IgnoreObjectArgument);
Benjamin Kramer09dd3792012-01-14 16:32:05 +00008415 for (unsigned E = L->NumConversions; I != E; ++I) {
John McCall120d63c2010-08-24 20:38:10 +00008416 switch (CompareImplicitConversionSequences(S,
8417 L->Conversions[I],
8418 R->Conversions[I])) {
John McCall717e8912010-01-23 05:17:32 +00008419 case ImplicitConversionSequence::Better:
8420 leftBetter++;
8421 break;
8422
8423 case ImplicitConversionSequence::Worse:
8424 leftBetter--;
8425 break;
8426
8427 case ImplicitConversionSequence::Indistinguishable:
8428 break;
8429 }
8430 }
8431 if (leftBetter > 0) return true;
8432 if (leftBetter < 0) return false;
8433
8434 } else if (R->FailureKind == ovl_fail_bad_conversion)
8435 return false;
8436
Kaelyn Uhrainfd641f92011-09-09 21:58:49 +00008437 if (L->FailureKind == ovl_fail_bad_deduction) {
8438 if (R->FailureKind != ovl_fail_bad_deduction)
8439 return true;
8440
8441 if (L->DeductionFailure.Result != R->DeductionFailure.Result)
8442 return RankDeductionFailure(L->DeductionFailure)
Eli Friedmance1846e2011-10-14 23:10:30 +00008443 < RankDeductionFailure(R->DeductionFailure);
Eli Friedman1c522f72011-10-14 21:52:24 +00008444 } else if (R->FailureKind == ovl_fail_bad_deduction)
8445 return false;
Kaelyn Uhrainfd641f92011-09-09 21:58:49 +00008446
John McCall1b77e732010-01-15 23:32:50 +00008447 // TODO: others?
8448 }
8449
8450 // Sort everything else by location.
8451 SourceLocation LLoc = GetLocationForCandidate(L);
8452 SourceLocation RLoc = GetLocationForCandidate(R);
8453
8454 // Put candidates without locations (e.g. builtins) at the end.
8455 if (LLoc.isInvalid()) return false;
8456 if (RLoc.isInvalid()) return true;
8457
8458 return S.SourceMgr.isBeforeInTranslationUnit(LLoc, RLoc);
John McCall81201622010-01-08 04:41:39 +00008459 }
8460};
8461
John McCall717e8912010-01-23 05:17:32 +00008462/// CompleteNonViableCandidate - Normally, overload resolution only
Anna Zaksb89fe6b2011-07-19 19:49:12 +00008463/// computes up to the first. Produces the FixIt set if possible.
John McCall717e8912010-01-23 05:17:32 +00008464void CompleteNonViableCandidate(Sema &S, OverloadCandidate *Cand,
Ahmed Charles13a140c2012-02-25 11:00:22 +00008465 llvm::ArrayRef<Expr *> Args) {
John McCall717e8912010-01-23 05:17:32 +00008466 assert(!Cand->Viable);
8467
8468 // Don't do anything on failures other than bad conversion.
8469 if (Cand->FailureKind != ovl_fail_bad_conversion) return;
8470
Anna Zaksb89fe6b2011-07-19 19:49:12 +00008471 // We only want the FixIts if all the arguments can be corrected.
8472 bool Unfixable = false;
Anna Zaksf3546ee2011-07-28 19:46:48 +00008473 // Use a implicit copy initialization to check conversion fixes.
8474 Cand->Fix.setConversionChecker(TryCopyInitialization);
Anna Zaksb89fe6b2011-07-19 19:49:12 +00008475
John McCall717e8912010-01-23 05:17:32 +00008476 // Skip forward to the first bad conversion.
John McCallb1bdc622010-02-25 01:37:24 +00008477 unsigned ConvIdx = (Cand->IgnoreObjectArgument ? 1 : 0);
Benjamin Kramer09dd3792012-01-14 16:32:05 +00008478 unsigned ConvCount = Cand->NumConversions;
John McCall717e8912010-01-23 05:17:32 +00008479 while (true) {
8480 assert(ConvIdx != ConvCount && "no bad conversion in candidate");
8481 ConvIdx++;
Anna Zaksb89fe6b2011-07-19 19:49:12 +00008482 if (Cand->Conversions[ConvIdx - 1].isBad()) {
Anna Zaksf3546ee2011-07-28 19:46:48 +00008483 Unfixable = !Cand->TryToFixBadConversion(ConvIdx - 1, S);
John McCall717e8912010-01-23 05:17:32 +00008484 break;
Anna Zaksb89fe6b2011-07-19 19:49:12 +00008485 }
John McCall717e8912010-01-23 05:17:32 +00008486 }
8487
8488 if (ConvIdx == ConvCount)
8489 return;
8490
John McCallb1bdc622010-02-25 01:37:24 +00008491 assert(!Cand->Conversions[ConvIdx].isInitialized() &&
8492 "remaining conversion is initialized?");
8493
Douglas Gregor23ef6c02010-04-16 17:45:54 +00008494 // FIXME: this should probably be preserved from the overload
John McCall717e8912010-01-23 05:17:32 +00008495 // operation somehow.
8496 bool SuppressUserConversions = false;
John McCall717e8912010-01-23 05:17:32 +00008497
8498 const FunctionProtoType* Proto;
8499 unsigned ArgIdx = ConvIdx;
8500
8501 if (Cand->IsSurrogate) {
8502 QualType ConvType
8503 = Cand->Surrogate->getConversionType().getNonReferenceType();
8504 if (const PointerType *ConvPtrType = ConvType->getAs<PointerType>())
8505 ConvType = ConvPtrType->getPointeeType();
8506 Proto = ConvType->getAs<FunctionProtoType>();
8507 ArgIdx--;
8508 } else if (Cand->Function) {
8509 Proto = Cand->Function->getType()->getAs<FunctionProtoType>();
8510 if (isa<CXXMethodDecl>(Cand->Function) &&
8511 !isa<CXXConstructorDecl>(Cand->Function))
8512 ArgIdx--;
8513 } else {
8514 // Builtin binary operator with a bad first conversion.
8515 assert(ConvCount <= 3);
8516 for (; ConvIdx != ConvCount; ++ConvIdx)
8517 Cand->Conversions[ConvIdx]
Douglas Gregor74eb6582010-04-16 17:51:22 +00008518 = TryCopyInitialization(S, Args[ConvIdx],
8519 Cand->BuiltinTypes.ParamTypes[ConvIdx],
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00008520 SuppressUserConversions,
John McCallf85e1932011-06-15 23:02:42 +00008521 /*InOverloadResolution*/ true,
8522 /*AllowObjCWritebackConversion=*/
8523 S.getLangOptions().ObjCAutoRefCount);
John McCall717e8912010-01-23 05:17:32 +00008524 return;
8525 }
8526
8527 // Fill in the rest of the conversions.
8528 unsigned NumArgsInProto = Proto->getNumArgs();
8529 for (; ConvIdx != ConvCount; ++ConvIdx, ++ArgIdx) {
Anna Zaksb89fe6b2011-07-19 19:49:12 +00008530 if (ArgIdx < NumArgsInProto) {
John McCall717e8912010-01-23 05:17:32 +00008531 Cand->Conversions[ConvIdx]
Douglas Gregor74eb6582010-04-16 17:51:22 +00008532 = TryCopyInitialization(S, Args[ArgIdx], Proto->getArgType(ArgIdx),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00008533 SuppressUserConversions,
John McCallf85e1932011-06-15 23:02:42 +00008534 /*InOverloadResolution=*/true,
8535 /*AllowObjCWritebackConversion=*/
8536 S.getLangOptions().ObjCAutoRefCount);
Anna Zaksb89fe6b2011-07-19 19:49:12 +00008537 // Store the FixIt in the candidate if it exists.
8538 if (!Unfixable && Cand->Conversions[ConvIdx].isBad())
Anna Zaksf3546ee2011-07-28 19:46:48 +00008539 Unfixable = !Cand->TryToFixBadConversion(ConvIdx, S);
Anna Zaksb89fe6b2011-07-19 19:49:12 +00008540 }
John McCall717e8912010-01-23 05:17:32 +00008541 else
8542 Cand->Conversions[ConvIdx].setEllipsis();
8543 }
8544}
8545
John McCalla1d7d622010-01-08 00:58:21 +00008546} // end anonymous namespace
8547
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00008548/// PrintOverloadCandidates - When overload resolution fails, prints
8549/// diagnostic messages containing the candidates in the candidate
John McCall81201622010-01-08 04:41:39 +00008550/// set.
John McCall120d63c2010-08-24 20:38:10 +00008551void OverloadCandidateSet::NoteCandidates(Sema &S,
8552 OverloadCandidateDisplayKind OCD,
Ahmed Charles13a140c2012-02-25 11:00:22 +00008553 llvm::ArrayRef<Expr *> Args,
John McCall120d63c2010-08-24 20:38:10 +00008554 const char *Opc,
8555 SourceLocation OpLoc) {
John McCall81201622010-01-08 04:41:39 +00008556 // Sort the candidates by viability and position. Sorting directly would
8557 // be prohibitive, so we make a set of pointers and sort those.
Chris Lattner5f9e2722011-07-23 10:55:15 +00008558 SmallVector<OverloadCandidate*, 32> Cands;
John McCall120d63c2010-08-24 20:38:10 +00008559 if (OCD == OCD_AllCandidates) Cands.reserve(size());
8560 for (iterator Cand = begin(), LastCand = end(); Cand != LastCand; ++Cand) {
John McCall717e8912010-01-23 05:17:32 +00008561 if (Cand->Viable)
John McCall81201622010-01-08 04:41:39 +00008562 Cands.push_back(Cand);
John McCall717e8912010-01-23 05:17:32 +00008563 else if (OCD == OCD_AllCandidates) {
Ahmed Charles13a140c2012-02-25 11:00:22 +00008564 CompleteNonViableCandidate(S, Cand, Args);
Jeffrey Yasskin5edbdcc2010-06-11 05:57:47 +00008565 if (Cand->Function || Cand->IsSurrogate)
8566 Cands.push_back(Cand);
8567 // Otherwise, this a non-viable builtin candidate. We do not, in general,
8568 // want to list every possible builtin candidate.
John McCall717e8912010-01-23 05:17:32 +00008569 }
8570 }
8571
John McCallbf65c0b2010-01-12 00:48:53 +00008572 std::sort(Cands.begin(), Cands.end(),
John McCall120d63c2010-08-24 20:38:10 +00008573 CompareOverloadCandidatesForDisplay(S));
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00008574
John McCall1d318332010-01-12 00:44:57 +00008575 bool ReportedAmbiguousConversions = false;
John McCalla1d7d622010-01-08 00:58:21 +00008576
Chris Lattner5f9e2722011-07-23 10:55:15 +00008577 SmallVectorImpl<OverloadCandidate*>::iterator I, E;
David Blaikied6471f72011-09-25 23:23:43 +00008578 const DiagnosticsEngine::OverloadsShown ShowOverloads =
8579 S.Diags.getShowOverloads();
Jeffrey Yasskin5edbdcc2010-06-11 05:57:47 +00008580 unsigned CandsShown = 0;
John McCall81201622010-01-08 04:41:39 +00008581 for (I = Cands.begin(), E = Cands.end(); I != E; ++I) {
8582 OverloadCandidate *Cand = *I;
Douglas Gregor621b3932008-11-21 02:54:28 +00008583
Jeffrey Yasskin5edbdcc2010-06-11 05:57:47 +00008584 // Set an arbitrary limit on the number of candidate functions we'll spam
8585 // the user with. FIXME: This limit should depend on details of the
8586 // candidate list.
David Blaikied6471f72011-09-25 23:23:43 +00008587 if (CandsShown >= 4 && ShowOverloads == DiagnosticsEngine::Ovl_Best) {
Jeffrey Yasskin5edbdcc2010-06-11 05:57:47 +00008588 break;
8589 }
8590 ++CandsShown;
8591
John McCalla1d7d622010-01-08 00:58:21 +00008592 if (Cand->Function)
Ahmed Charles13a140c2012-02-25 11:00:22 +00008593 NoteFunctionCandidate(S, Cand, Args.size());
John McCalla1d7d622010-01-08 00:58:21 +00008594 else if (Cand->IsSurrogate)
John McCall120d63c2010-08-24 20:38:10 +00008595 NoteSurrogateCandidate(S, Cand);
Jeffrey Yasskin5edbdcc2010-06-11 05:57:47 +00008596 else {
8597 assert(Cand->Viable &&
8598 "Non-viable built-in candidates are not added to Cands.");
John McCall1d318332010-01-12 00:44:57 +00008599 // Generally we only see ambiguities including viable builtin
8600 // operators if overload resolution got screwed up by an
8601 // ambiguous user-defined conversion.
8602 //
8603 // FIXME: It's quite possible for different conversions to see
8604 // different ambiguities, though.
8605 if (!ReportedAmbiguousConversions) {
John McCall120d63c2010-08-24 20:38:10 +00008606 NoteAmbiguousUserConversions(S, OpLoc, Cand);
John McCall1d318332010-01-12 00:44:57 +00008607 ReportedAmbiguousConversions = true;
8608 }
John McCalla1d7d622010-01-08 00:58:21 +00008609
John McCall1d318332010-01-12 00:44:57 +00008610 // If this is a viable builtin, print it.
John McCall120d63c2010-08-24 20:38:10 +00008611 NoteBuiltinOperatorCandidate(S, Opc, OpLoc, Cand);
Douglas Gregoreb8f3062008-11-12 17:17:38 +00008612 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00008613 }
Jeffrey Yasskin5edbdcc2010-06-11 05:57:47 +00008614
8615 if (I != E)
John McCall120d63c2010-08-24 20:38:10 +00008616 S.Diag(OpLoc, diag::note_ovl_too_many_candidates) << int(E - I);
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00008617}
8618
Douglas Gregor1be8eec2011-02-19 21:32:49 +00008619// [PossiblyAFunctionType] --> [Return]
8620// NonFunctionType --> NonFunctionType
8621// R (A) --> R(A)
8622// R (*)(A) --> R (A)
8623// R (&)(A) --> R (A)
8624// R (S::*)(A) --> R (A)
8625QualType Sema::ExtractUnqualifiedFunctionType(QualType PossiblyAFunctionType) {
8626 QualType Ret = PossiblyAFunctionType;
8627 if (const PointerType *ToTypePtr =
8628 PossiblyAFunctionType->getAs<PointerType>())
8629 Ret = ToTypePtr->getPointeeType();
8630 else if (const ReferenceType *ToTypeRef =
8631 PossiblyAFunctionType->getAs<ReferenceType>())
8632 Ret = ToTypeRef->getPointeeType();
Sebastian Redl33b399a2009-02-04 21:23:32 +00008633 else if (const MemberPointerType *MemTypePtr =
Douglas Gregor1be8eec2011-02-19 21:32:49 +00008634 PossiblyAFunctionType->getAs<MemberPointerType>())
8635 Ret = MemTypePtr->getPointeeType();
8636 Ret =
8637 Context.getCanonicalType(Ret).getUnqualifiedType();
8638 return Ret;
8639}
Douglas Gregor904eed32008-11-10 20:40:00 +00008640
Douglas Gregor1be8eec2011-02-19 21:32:49 +00008641// A helper class to help with address of function resolution
8642// - allows us to avoid passing around all those ugly parameters
8643class AddressOfFunctionResolver
8644{
8645 Sema& S;
8646 Expr* SourceExpr;
8647 const QualType& TargetType;
8648 QualType TargetFunctionType; // Extracted function type from target type
8649
8650 bool Complain;
8651 //DeclAccessPair& ResultFunctionAccessPair;
8652 ASTContext& Context;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00008653
Douglas Gregor1be8eec2011-02-19 21:32:49 +00008654 bool TargetTypeIsNonStaticMemberFunction;
8655 bool FoundNonTemplateFunction;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00008656
Douglas Gregor1be8eec2011-02-19 21:32:49 +00008657 OverloadExpr::FindResult OvlExprInfo;
8658 OverloadExpr *OvlExpr;
8659 TemplateArgumentListInfo OvlExplicitTemplateArgs;
Chris Lattner5f9e2722011-07-23 10:55:15 +00008660 SmallVector<std::pair<DeclAccessPair, FunctionDecl*>, 4> Matches;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00008661
Douglas Gregor1be8eec2011-02-19 21:32:49 +00008662public:
8663 AddressOfFunctionResolver(Sema &S, Expr* SourceExpr,
8664 const QualType& TargetType, bool Complain)
8665 : S(S), SourceExpr(SourceExpr), TargetType(TargetType),
8666 Complain(Complain), Context(S.getASTContext()),
8667 TargetTypeIsNonStaticMemberFunction(
8668 !!TargetType->getAs<MemberPointerType>()),
8669 FoundNonTemplateFunction(false),
8670 OvlExprInfo(OverloadExpr::find(SourceExpr)),
8671 OvlExpr(OvlExprInfo.Expression)
8672 {
8673 ExtractUnqualifiedFunctionTypeFromTargetType();
8674
8675 if (!TargetFunctionType->isFunctionType()) {
8676 if (OvlExpr->hasExplicitTemplateArgs()) {
8677 DeclAccessPair dap;
John McCall864c0412011-04-26 20:42:42 +00008678 if (FunctionDecl* Fn = S.ResolveSingleFunctionTemplateSpecialization(
Douglas Gregor1be8eec2011-02-19 21:32:49 +00008679 OvlExpr, false, &dap) ) {
Chandler Carruth90434232011-03-29 08:08:18 +00008680
8681 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Fn)) {
8682 if (!Method->isStatic()) {
8683 // If the target type is a non-function type and the function
8684 // found is a non-static member function, pretend as if that was
8685 // the target, it's the only possible type to end up with.
8686 TargetTypeIsNonStaticMemberFunction = true;
8687
8688 // And skip adding the function if its not in the proper form.
8689 // We'll diagnose this due to an empty set of functions.
8690 if (!OvlExprInfo.HasFormOfMemberPointer)
8691 return;
8692 }
8693 }
8694
Douglas Gregor1be8eec2011-02-19 21:32:49 +00008695 Matches.push_back(std::make_pair(dap,Fn));
8696 }
Douglas Gregor83314aa2009-07-08 20:55:45 +00008697 }
Douglas Gregor1be8eec2011-02-19 21:32:49 +00008698 return;
Douglas Gregor83314aa2009-07-08 20:55:45 +00008699 }
Douglas Gregor1be8eec2011-02-19 21:32:49 +00008700
8701 if (OvlExpr->hasExplicitTemplateArgs())
8702 OvlExpr->getExplicitTemplateArgs().copyInto(OvlExplicitTemplateArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00008703
Douglas Gregor1be8eec2011-02-19 21:32:49 +00008704 if (FindAllFunctionsThatMatchTargetTypeExactly()) {
8705 // C++ [over.over]p4:
8706 // If more than one function is selected, [...]
8707 if (Matches.size() > 1) {
8708 if (FoundNonTemplateFunction)
8709 EliminateAllTemplateMatches();
8710 else
8711 EliminateAllExceptMostSpecializedTemplate();
8712 }
8713 }
8714 }
8715
8716private:
8717 bool isTargetTypeAFunction() const {
8718 return TargetFunctionType->isFunctionType();
8719 }
8720
8721 // [ToType] [Return]
8722
8723 // R (*)(A) --> R (A), IsNonStaticMemberFunction = false
8724 // R (&)(A) --> R (A), IsNonStaticMemberFunction = false
8725 // R (S::*)(A) --> R (A), IsNonStaticMemberFunction = true
8726 void inline ExtractUnqualifiedFunctionTypeFromTargetType() {
8727 TargetFunctionType = S.ExtractUnqualifiedFunctionType(TargetType);
8728 }
8729
8730 // return true if any matching specializations were found
8731 bool AddMatchingTemplateFunction(FunctionTemplateDecl* FunctionTemplate,
8732 const DeclAccessPair& CurAccessFunPair) {
8733 if (CXXMethodDecl *Method
8734 = dyn_cast<CXXMethodDecl>(FunctionTemplate->getTemplatedDecl())) {
8735 // Skip non-static function templates when converting to pointer, and
8736 // static when converting to member pointer.
8737 if (Method->isStatic() == TargetTypeIsNonStaticMemberFunction)
8738 return false;
8739 }
8740 else if (TargetTypeIsNonStaticMemberFunction)
8741 return false;
8742
8743 // C++ [over.over]p2:
8744 // If the name is a function template, template argument deduction is
8745 // done (14.8.2.2), and if the argument deduction succeeds, the
8746 // resulting template argument list is used to generate a single
8747 // function template specialization, which is added to the set of
8748 // overloaded functions considered.
8749 FunctionDecl *Specialization = 0;
8750 TemplateDeductionInfo Info(Context, OvlExpr->getNameLoc());
8751 if (Sema::TemplateDeductionResult Result
8752 = S.DeduceTemplateArguments(FunctionTemplate,
8753 &OvlExplicitTemplateArgs,
8754 TargetFunctionType, Specialization,
8755 Info)) {
8756 // FIXME: make a note of the failed deduction for diagnostics.
8757 (void)Result;
8758 return false;
8759 }
8760
8761 // Template argument deduction ensures that we have an exact match.
8762 // This function template specicalization works.
8763 Specialization = cast<FunctionDecl>(Specialization->getCanonicalDecl());
8764 assert(TargetFunctionType
8765 == Context.getCanonicalType(Specialization->getType()));
8766 Matches.push_back(std::make_pair(CurAccessFunPair, Specialization));
8767 return true;
8768 }
8769
8770 bool AddMatchingNonTemplateFunction(NamedDecl* Fn,
8771 const DeclAccessPair& CurAccessFunPair) {
Chandler Carruthbd647292009-12-29 06:17:27 +00008772 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Fn)) {
Sebastian Redl33b399a2009-02-04 21:23:32 +00008773 // Skip non-static functions when converting to pointer, and static
8774 // when converting to member pointer.
Douglas Gregor1be8eec2011-02-19 21:32:49 +00008775 if (Method->isStatic() == TargetTypeIsNonStaticMemberFunction)
8776 return false;
8777 }
8778 else if (TargetTypeIsNonStaticMemberFunction)
8779 return false;
Douglas Gregor904eed32008-11-10 20:40:00 +00008780
Chandler Carruthbd647292009-12-29 06:17:27 +00008781 if (FunctionDecl *FunDecl = dyn_cast<FunctionDecl>(Fn)) {
Peter Collingbourne78dd67e2011-10-02 23:49:40 +00008782 if (S.getLangOptions().CUDA)
8783 if (FunctionDecl *Caller = dyn_cast<FunctionDecl>(S.CurContext))
8784 if (S.CheckCUDATarget(Caller, FunDecl))
8785 return false;
8786
Douglas Gregor43c79c22009-12-09 00:47:37 +00008787 QualType ResultTy;
Douglas Gregor1be8eec2011-02-19 21:32:49 +00008788 if (Context.hasSameUnqualifiedType(TargetFunctionType,
8789 FunDecl->getType()) ||
Chandler Carruth18e04612011-06-18 01:19:03 +00008790 S.IsNoReturnConversion(FunDecl->getType(), TargetFunctionType,
8791 ResultTy)) {
Douglas Gregor1be8eec2011-02-19 21:32:49 +00008792 Matches.push_back(std::make_pair(CurAccessFunPair,
8793 cast<FunctionDecl>(FunDecl->getCanonicalDecl())));
Douglas Gregor00aeb522009-07-08 23:33:52 +00008794 FoundNonTemplateFunction = true;
Douglas Gregor1be8eec2011-02-19 21:32:49 +00008795 return true;
Douglas Gregor00aeb522009-07-08 23:33:52 +00008796 }
Mike Stump1eb44332009-09-09 15:08:12 +00008797 }
Douglas Gregor1be8eec2011-02-19 21:32:49 +00008798
8799 return false;
8800 }
8801
8802 bool FindAllFunctionsThatMatchTargetTypeExactly() {
8803 bool Ret = false;
8804
8805 // If the overload expression doesn't have the form of a pointer to
8806 // member, don't try to convert it to a pointer-to-member type.
8807 if (IsInvalidFormOfPointerToMemberFunction())
8808 return false;
8809
8810 for (UnresolvedSetIterator I = OvlExpr->decls_begin(),
8811 E = OvlExpr->decls_end();
8812 I != E; ++I) {
8813 // Look through any using declarations to find the underlying function.
8814 NamedDecl *Fn = (*I)->getUnderlyingDecl();
8815
8816 // C++ [over.over]p3:
8817 // Non-member functions and static member functions match
8818 // targets of type "pointer-to-function" or "reference-to-function."
8819 // Nonstatic member functions match targets of
8820 // type "pointer-to-member-function."
8821 // Note that according to DR 247, the containing class does not matter.
8822 if (FunctionTemplateDecl *FunctionTemplate
8823 = dyn_cast<FunctionTemplateDecl>(Fn)) {
8824 if (AddMatchingTemplateFunction(FunctionTemplate, I.getPair()))
8825 Ret = true;
8826 }
8827 // If we have explicit template arguments supplied, skip non-templates.
8828 else if (!OvlExpr->hasExplicitTemplateArgs() &&
8829 AddMatchingNonTemplateFunction(Fn, I.getPair()))
8830 Ret = true;
8831 }
8832 assert(Ret || Matches.empty());
8833 return Ret;
Douglas Gregor904eed32008-11-10 20:40:00 +00008834 }
8835
Douglas Gregor1be8eec2011-02-19 21:32:49 +00008836 void EliminateAllExceptMostSpecializedTemplate() {
Douglas Gregor65ec1fd2009-08-21 23:19:43 +00008837 // [...] and any given function template specialization F1 is
8838 // eliminated if the set contains a second function template
8839 // specialization whose function template is more specialized
8840 // than the function template of F1 according to the partial
8841 // ordering rules of 14.5.5.2.
8842
8843 // The algorithm specified above is quadratic. We instead use a
8844 // two-pass algorithm (similar to the one used to identify the
8845 // best viable function in an overload set) that identifies the
8846 // best function template (if it exists).
John McCall9aa472c2010-03-19 07:35:19 +00008847
8848 UnresolvedSet<4> MatchesCopy; // TODO: avoid!
8849 for (unsigned I = 0, E = Matches.size(); I != E; ++I)
8850 MatchesCopy.addDecl(Matches[I].second, Matches[I].first.getAccess());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00008851
John McCallc373d482010-01-27 01:50:18 +00008852 UnresolvedSetIterator Result =
Douglas Gregor1be8eec2011-02-19 21:32:49 +00008853 S.getMostSpecialized(MatchesCopy.begin(), MatchesCopy.end(),
8854 TPOC_Other, 0, SourceExpr->getLocStart(),
8855 S.PDiag(),
8856 S.PDiag(diag::err_addr_ovl_ambiguous)
8857 << Matches[0].second->getDeclName(),
8858 S.PDiag(diag::note_ovl_candidate)
8859 << (unsigned) oc_function_template,
Richard Trieu6efd4c52011-11-23 22:32:32 +00008860 Complain, TargetFunctionType);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00008861
Douglas Gregor1be8eec2011-02-19 21:32:49 +00008862 if (Result != MatchesCopy.end()) {
8863 // Make it the first and only element
8864 Matches[0].first = Matches[Result - MatchesCopy.begin()].first;
8865 Matches[0].second = cast<FunctionDecl>(*Result);
8866 Matches.resize(1);
John McCallc373d482010-01-27 01:50:18 +00008867 }
8868 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00008869
Douglas Gregor1be8eec2011-02-19 21:32:49 +00008870 void EliminateAllTemplateMatches() {
8871 // [...] any function template specializations in the set are
8872 // eliminated if the set also contains a non-template function, [...]
8873 for (unsigned I = 0, N = Matches.size(); I != N; ) {
8874 if (Matches[I].second->getPrimaryTemplate() == 0)
8875 ++I;
8876 else {
8877 Matches[I] = Matches[--N];
8878 Matches.set_size(N);
8879 }
8880 }
8881 }
8882
8883public:
8884 void ComplainNoMatchesFound() const {
8885 assert(Matches.empty());
8886 S.Diag(OvlExpr->getLocStart(), diag::err_addr_ovl_no_viable)
8887 << OvlExpr->getName() << TargetFunctionType
8888 << OvlExpr->getSourceRange();
Richard Trieu6efd4c52011-11-23 22:32:32 +00008889 S.NoteAllOverloadCandidates(OvlExpr, TargetFunctionType);
Douglas Gregor1be8eec2011-02-19 21:32:49 +00008890 }
8891
8892 bool IsInvalidFormOfPointerToMemberFunction() const {
8893 return TargetTypeIsNonStaticMemberFunction &&
8894 !OvlExprInfo.HasFormOfMemberPointer;
8895 }
8896
8897 void ComplainIsInvalidFormOfPointerToMemberFunction() const {
8898 // TODO: Should we condition this on whether any functions might
8899 // have matched, or is it more appropriate to do that in callers?
8900 // TODO: a fixit wouldn't hurt.
8901 S.Diag(OvlExpr->getNameLoc(), diag::err_addr_ovl_no_qualifier)
8902 << TargetType << OvlExpr->getSourceRange();
8903 }
8904
8905 void ComplainOfInvalidConversion() const {
8906 S.Diag(OvlExpr->getLocStart(), diag::err_addr_ovl_not_func_ptrref)
8907 << OvlExpr->getName() << TargetType;
8908 }
8909
8910 void ComplainMultipleMatchesFound() const {
8911 assert(Matches.size() > 1);
8912 S.Diag(OvlExpr->getLocStart(), diag::err_addr_ovl_ambiguous)
8913 << OvlExpr->getName()
8914 << OvlExpr->getSourceRange();
Richard Trieu6efd4c52011-11-23 22:32:32 +00008915 S.NoteAllOverloadCandidates(OvlExpr, TargetFunctionType);
Douglas Gregor1be8eec2011-02-19 21:32:49 +00008916 }
Abramo Bagnara22c107b2011-11-19 11:44:21 +00008917
8918 bool hadMultipleCandidates() const { return (OvlExpr->getNumDecls() > 1); }
8919
Douglas Gregor1be8eec2011-02-19 21:32:49 +00008920 int getNumMatches() const { return Matches.size(); }
8921
8922 FunctionDecl* getMatchingFunctionDecl() const {
8923 if (Matches.size() != 1) return 0;
8924 return Matches[0].second;
8925 }
8926
8927 const DeclAccessPair* getMatchingFunctionAccessPair() const {
8928 if (Matches.size() != 1) return 0;
8929 return &Matches[0].first;
8930 }
8931};
8932
8933/// ResolveAddressOfOverloadedFunction - Try to resolve the address of
8934/// an overloaded function (C++ [over.over]), where @p From is an
8935/// expression with overloaded function type and @p ToType is the type
8936/// we're trying to resolve to. For example:
8937///
8938/// @code
8939/// int f(double);
8940/// int f(int);
8941///
8942/// int (*pfd)(double) = f; // selects f(double)
8943/// @endcode
8944///
8945/// This routine returns the resulting FunctionDecl if it could be
8946/// resolved, and NULL otherwise. When @p Complain is true, this
8947/// routine will emit diagnostics if there is an error.
8948FunctionDecl *
Abramo Bagnara22c107b2011-11-19 11:44:21 +00008949Sema::ResolveAddressOfOverloadedFunction(Expr *AddressOfExpr,
8950 QualType TargetType,
8951 bool Complain,
8952 DeclAccessPair &FoundResult,
8953 bool *pHadMultipleCandidates) {
Douglas Gregor1be8eec2011-02-19 21:32:49 +00008954 assert(AddressOfExpr->getType() == Context.OverloadTy);
Abramo Bagnara22c107b2011-11-19 11:44:21 +00008955
8956 AddressOfFunctionResolver Resolver(*this, AddressOfExpr, TargetType,
8957 Complain);
Douglas Gregor1be8eec2011-02-19 21:32:49 +00008958 int NumMatches = Resolver.getNumMatches();
8959 FunctionDecl* Fn = 0;
Abramo Bagnara22c107b2011-11-19 11:44:21 +00008960 if (NumMatches == 0 && Complain) {
Douglas Gregor1be8eec2011-02-19 21:32:49 +00008961 if (Resolver.IsInvalidFormOfPointerToMemberFunction())
8962 Resolver.ComplainIsInvalidFormOfPointerToMemberFunction();
8963 else
8964 Resolver.ComplainNoMatchesFound();
8965 }
8966 else if (NumMatches > 1 && Complain)
8967 Resolver.ComplainMultipleMatchesFound();
8968 else if (NumMatches == 1) {
8969 Fn = Resolver.getMatchingFunctionDecl();
8970 assert(Fn);
8971 FoundResult = *Resolver.getMatchingFunctionAccessPair();
Eli Friedman5f2987c2012-02-02 03:46:19 +00008972 MarkFunctionReferenced(AddressOfExpr->getLocStart(), Fn);
Douglas Gregor9b623632010-10-12 23:32:35 +00008973 if (Complain)
Douglas Gregor1be8eec2011-02-19 21:32:49 +00008974 CheckAddressOfMemberAccess(AddressOfExpr, FoundResult);
Sebastian Redl07ab2022009-10-17 21:12:09 +00008975 }
Abramo Bagnara22c107b2011-11-19 11:44:21 +00008976
8977 if (pHadMultipleCandidates)
8978 *pHadMultipleCandidates = Resolver.hadMultipleCandidates();
Douglas Gregor1be8eec2011-02-19 21:32:49 +00008979 return Fn;
Douglas Gregor904eed32008-11-10 20:40:00 +00008980}
8981
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00008982/// \brief Given an expression that refers to an overloaded function, try to
Douglas Gregor4b52e252009-12-21 23:17:24 +00008983/// resolve that overloaded function expression down to a single function.
8984///
8985/// This routine can only resolve template-ids that refer to a single function
8986/// template, where that template-id refers to a single template whose template
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00008987/// arguments are either provided by the template-id or have defaults,
Douglas Gregor4b52e252009-12-21 23:17:24 +00008988/// as described in C++0x [temp.arg.explicit]p3.
John McCall864c0412011-04-26 20:42:42 +00008989FunctionDecl *
8990Sema::ResolveSingleFunctionTemplateSpecialization(OverloadExpr *ovl,
8991 bool Complain,
8992 DeclAccessPair *FoundResult) {
Douglas Gregor4b52e252009-12-21 23:17:24 +00008993 // C++ [over.over]p1:
8994 // [...] [Note: any redundant set of parentheses surrounding the
8995 // overloaded function name is ignored (5.1). ]
Douglas Gregor4b52e252009-12-21 23:17:24 +00008996 // C++ [over.over]p1:
8997 // [...] The overloaded function name can be preceded by the &
8998 // operator.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00008999
Douglas Gregor4b52e252009-12-21 23:17:24 +00009000 // If we didn't actually find any template-ids, we're done.
John McCall864c0412011-04-26 20:42:42 +00009001 if (!ovl->hasExplicitTemplateArgs())
Douglas Gregor4b52e252009-12-21 23:17:24 +00009002 return 0;
John McCall7bb12da2010-02-02 06:20:04 +00009003
9004 TemplateArgumentListInfo ExplicitTemplateArgs;
John McCall864c0412011-04-26 20:42:42 +00009005 ovl->getExplicitTemplateArgs().copyInto(ExplicitTemplateArgs);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00009006
Douglas Gregor4b52e252009-12-21 23:17:24 +00009007 // Look through all of the overloaded functions, searching for one
9008 // whose type matches exactly.
9009 FunctionDecl *Matched = 0;
John McCall864c0412011-04-26 20:42:42 +00009010 for (UnresolvedSetIterator I = ovl->decls_begin(),
9011 E = ovl->decls_end(); I != E; ++I) {
Douglas Gregor4b52e252009-12-21 23:17:24 +00009012 // C++0x [temp.arg.explicit]p3:
9013 // [...] In contexts where deduction is done and fails, or in contexts
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00009014 // where deduction is not done, if a template argument list is
9015 // specified and it, along with any default template arguments,
9016 // identifies a single function template specialization, then the
Douglas Gregor4b52e252009-12-21 23:17:24 +00009017 // template-id is an lvalue for the function template specialization.
Douglas Gregor66a8c9a2010-07-14 23:20:53 +00009018 FunctionTemplateDecl *FunctionTemplate
9019 = cast<FunctionTemplateDecl>((*I)->getUnderlyingDecl());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00009020
Douglas Gregor4b52e252009-12-21 23:17:24 +00009021 // C++ [over.over]p2:
9022 // If the name is a function template, template argument deduction is
9023 // done (14.8.2.2), and if the argument deduction succeeds, the
9024 // resulting template argument list is used to generate a single
9025 // function template specialization, which is added to the set of
9026 // overloaded functions considered.
Douglas Gregor4b52e252009-12-21 23:17:24 +00009027 FunctionDecl *Specialization = 0;
John McCall864c0412011-04-26 20:42:42 +00009028 TemplateDeductionInfo Info(Context, ovl->getNameLoc());
Douglas Gregor4b52e252009-12-21 23:17:24 +00009029 if (TemplateDeductionResult Result
9030 = DeduceTemplateArguments(FunctionTemplate, &ExplicitTemplateArgs,
9031 Specialization, Info)) {
9032 // FIXME: make a note of the failed deduction for diagnostics.
9033 (void)Result;
9034 continue;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00009035 }
9036
John McCall864c0412011-04-26 20:42:42 +00009037 assert(Specialization && "no specialization and no error?");
9038
Douglas Gregor4b52e252009-12-21 23:17:24 +00009039 // Multiple matches; we can't resolve to a single declaration.
Douglas Gregor1be8eec2011-02-19 21:32:49 +00009040 if (Matched) {
Douglas Gregor1be8eec2011-02-19 21:32:49 +00009041 if (Complain) {
John McCall864c0412011-04-26 20:42:42 +00009042 Diag(ovl->getExprLoc(), diag::err_addr_ovl_ambiguous)
9043 << ovl->getName();
9044 NoteAllOverloadCandidates(ovl);
Douglas Gregor1be8eec2011-02-19 21:32:49 +00009045 }
Douglas Gregor4b52e252009-12-21 23:17:24 +00009046 return 0;
John McCall864c0412011-04-26 20:42:42 +00009047 }
Douglas Gregor1be8eec2011-02-19 21:32:49 +00009048
John McCall864c0412011-04-26 20:42:42 +00009049 Matched = Specialization;
9050 if (FoundResult) *FoundResult = I.getPair();
Douglas Gregor4b52e252009-12-21 23:17:24 +00009051 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00009052
Douglas Gregor4b52e252009-12-21 23:17:24 +00009053 return Matched;
9054}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00009055
Douglas Gregorfadb53b2011-03-12 01:48:56 +00009056
9057
9058
John McCall6dbba4f2011-10-11 23:14:30 +00009059// Resolve and fix an overloaded expression that can be resolved
9060// because it identifies a single function template specialization.
9061//
Douglas Gregorfadb53b2011-03-12 01:48:56 +00009062// Last three arguments should only be supplied if Complain = true
John McCall6dbba4f2011-10-11 23:14:30 +00009063//
9064// Return true if it was logically possible to so resolve the
9065// expression, regardless of whether or not it succeeded. Always
9066// returns true if 'complain' is set.
9067bool Sema::ResolveAndFixSingleFunctionTemplateSpecialization(
9068 ExprResult &SrcExpr, bool doFunctionPointerConverion,
9069 bool complain, const SourceRange& OpRangeForComplaining,
Douglas Gregorfadb53b2011-03-12 01:48:56 +00009070 QualType DestTypeForComplaining,
John McCall864c0412011-04-26 20:42:42 +00009071 unsigned DiagIDForComplaining) {
John McCall6dbba4f2011-10-11 23:14:30 +00009072 assert(SrcExpr.get()->getType() == Context.OverloadTy);
Douglas Gregorfadb53b2011-03-12 01:48:56 +00009073
John McCall6dbba4f2011-10-11 23:14:30 +00009074 OverloadExpr::FindResult ovl = OverloadExpr::find(SrcExpr.get());
Douglas Gregorfadb53b2011-03-12 01:48:56 +00009075
John McCall864c0412011-04-26 20:42:42 +00009076 DeclAccessPair found;
9077 ExprResult SingleFunctionExpression;
9078 if (FunctionDecl *fn = ResolveSingleFunctionTemplateSpecialization(
9079 ovl.Expression, /*complain*/ false, &found)) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00009080 if (DiagnoseUseOfDecl(fn, SrcExpr.get()->getLocStart())) {
John McCall6dbba4f2011-10-11 23:14:30 +00009081 SrcExpr = ExprError();
9082 return true;
9083 }
John McCall864c0412011-04-26 20:42:42 +00009084
9085 // It is only correct to resolve to an instance method if we're
9086 // resolving a form that's permitted to be a pointer to member.
9087 // Otherwise we'll end up making a bound member expression, which
9088 // is illegal in all the contexts we resolve like this.
9089 if (!ovl.HasFormOfMemberPointer &&
9090 isa<CXXMethodDecl>(fn) &&
9091 cast<CXXMethodDecl>(fn)->isInstance()) {
John McCall6dbba4f2011-10-11 23:14:30 +00009092 if (!complain) return false;
9093
9094 Diag(ovl.Expression->getExprLoc(),
9095 diag::err_bound_member_function)
9096 << 0 << ovl.Expression->getSourceRange();
9097
9098 // TODO: I believe we only end up here if there's a mix of
9099 // static and non-static candidates (otherwise the expression
9100 // would have 'bound member' type, not 'overload' type).
9101 // Ideally we would note which candidate was chosen and why
9102 // the static candidates were rejected.
9103 SrcExpr = ExprError();
9104 return true;
Douglas Gregorfadb53b2011-03-12 01:48:56 +00009105 }
Douglas Gregordb2eae62011-03-16 19:16:25 +00009106
John McCall864c0412011-04-26 20:42:42 +00009107 // Fix the expresion to refer to 'fn'.
9108 SingleFunctionExpression =
John McCall6dbba4f2011-10-11 23:14:30 +00009109 Owned(FixOverloadedFunctionReference(SrcExpr.take(), found, fn));
John McCall864c0412011-04-26 20:42:42 +00009110
9111 // If desired, do function-to-pointer decay.
John McCall6dbba4f2011-10-11 23:14:30 +00009112 if (doFunctionPointerConverion) {
John McCall864c0412011-04-26 20:42:42 +00009113 SingleFunctionExpression =
9114 DefaultFunctionArrayLvalueConversion(SingleFunctionExpression.take());
John McCall6dbba4f2011-10-11 23:14:30 +00009115 if (SingleFunctionExpression.isInvalid()) {
9116 SrcExpr = ExprError();
9117 return true;
9118 }
9119 }
John McCall864c0412011-04-26 20:42:42 +00009120 }
9121
9122 if (!SingleFunctionExpression.isUsable()) {
9123 if (complain) {
9124 Diag(OpRangeForComplaining.getBegin(), DiagIDForComplaining)
9125 << ovl.Expression->getName()
9126 << DestTypeForComplaining
9127 << OpRangeForComplaining
9128 << ovl.Expression->getQualifierLoc().getSourceRange();
John McCall6dbba4f2011-10-11 23:14:30 +00009129 NoteAllOverloadCandidates(SrcExpr.get());
9130
9131 SrcExpr = ExprError();
9132 return true;
9133 }
9134
9135 return false;
John McCall864c0412011-04-26 20:42:42 +00009136 }
9137
John McCall6dbba4f2011-10-11 23:14:30 +00009138 SrcExpr = SingleFunctionExpression;
9139 return true;
Douglas Gregorfadb53b2011-03-12 01:48:56 +00009140}
9141
Douglas Gregor9c6a0e92009-09-22 15:41:20 +00009142/// \brief Add a single candidate to the overload set.
9143static void AddOverloadedCallCandidate(Sema &S,
John McCall9aa472c2010-03-19 07:35:19 +00009144 DeclAccessPair FoundDecl,
Douglas Gregor67714232011-03-03 02:41:12 +00009145 TemplateArgumentListInfo *ExplicitTemplateArgs,
Ahmed Charles13a140c2012-02-25 11:00:22 +00009146 llvm::ArrayRef<Expr *> Args,
Douglas Gregor9c6a0e92009-09-22 15:41:20 +00009147 OverloadCandidateSet &CandidateSet,
Richard Smith2ced0442011-06-26 22:19:54 +00009148 bool PartialOverloading,
9149 bool KnownValid) {
John McCall9aa472c2010-03-19 07:35:19 +00009150 NamedDecl *Callee = FoundDecl.getDecl();
John McCallba135432009-11-21 08:51:07 +00009151 if (isa<UsingShadowDecl>(Callee))
9152 Callee = cast<UsingShadowDecl>(Callee)->getTargetDecl();
9153
Douglas Gregor9c6a0e92009-09-22 15:41:20 +00009154 if (FunctionDecl *Func = dyn_cast<FunctionDecl>(Callee)) {
Richard Smith2ced0442011-06-26 22:19:54 +00009155 if (ExplicitTemplateArgs) {
9156 assert(!KnownValid && "Explicit template arguments?");
9157 return;
9158 }
Ahmed Charles13a140c2012-02-25 11:00:22 +00009159 S.AddOverloadCandidate(Func, FoundDecl, Args, CandidateSet, false,
9160 PartialOverloading);
Douglas Gregor9c6a0e92009-09-22 15:41:20 +00009161 return;
John McCallba135432009-11-21 08:51:07 +00009162 }
9163
9164 if (FunctionTemplateDecl *FuncTemplate
9165 = dyn_cast<FunctionTemplateDecl>(Callee)) {
John McCall9aa472c2010-03-19 07:35:19 +00009166 S.AddTemplateOverloadCandidate(FuncTemplate, FoundDecl,
Ahmed Charles13a140c2012-02-25 11:00:22 +00009167 ExplicitTemplateArgs, Args, CandidateSet);
John McCallba135432009-11-21 08:51:07 +00009168 return;
9169 }
9170
Richard Smith2ced0442011-06-26 22:19:54 +00009171 assert(!KnownValid && "unhandled case in overloaded call candidate");
Douglas Gregor9c6a0e92009-09-22 15:41:20 +00009172}
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00009173
Douglas Gregor9c6a0e92009-09-22 15:41:20 +00009174/// \brief Add the overload candidates named by callee and/or found by argument
9175/// dependent lookup to the given overload set.
John McCall3b4294e2009-12-16 12:17:52 +00009176void Sema::AddOverloadedCallCandidates(UnresolvedLookupExpr *ULE,
Ahmed Charles13a140c2012-02-25 11:00:22 +00009177 llvm::ArrayRef<Expr *> Args,
Douglas Gregor9c6a0e92009-09-22 15:41:20 +00009178 OverloadCandidateSet &CandidateSet,
9179 bool PartialOverloading) {
John McCallba135432009-11-21 08:51:07 +00009180
9181#ifndef NDEBUG
9182 // Verify that ArgumentDependentLookup is consistent with the rules
9183 // in C++0x [basic.lookup.argdep]p3:
Douglas Gregor9c6a0e92009-09-22 15:41:20 +00009184 //
Douglas Gregor9c6a0e92009-09-22 15:41:20 +00009185 // Let X be the lookup set produced by unqualified lookup (3.4.1)
9186 // and let Y be the lookup set produced by argument dependent
9187 // lookup (defined as follows). If X contains
9188 //
9189 // -- a declaration of a class member, or
9190 //
9191 // -- a block-scope function declaration that is not a
John McCallba135432009-11-21 08:51:07 +00009192 // using-declaration, or
Douglas Gregor9c6a0e92009-09-22 15:41:20 +00009193 //
9194 // -- a declaration that is neither a function or a function
9195 // template
9196 //
9197 // then Y is empty.
John McCallba135432009-11-21 08:51:07 +00009198
John McCall3b4294e2009-12-16 12:17:52 +00009199 if (ULE->requiresADL()) {
9200 for (UnresolvedLookupExpr::decls_iterator I = ULE->decls_begin(),
9201 E = ULE->decls_end(); I != E; ++I) {
9202 assert(!(*I)->getDeclContext()->isRecord());
9203 assert(isa<UsingShadowDecl>(*I) ||
9204 !(*I)->getDeclContext()->isFunctionOrMethod());
9205 assert((*I)->getUnderlyingDecl()->isFunctionOrFunctionTemplate());
John McCallba135432009-11-21 08:51:07 +00009206 }
9207 }
9208#endif
9209
John McCall3b4294e2009-12-16 12:17:52 +00009210 // It would be nice to avoid this copy.
9211 TemplateArgumentListInfo TABuffer;
Douglas Gregor67714232011-03-03 02:41:12 +00009212 TemplateArgumentListInfo *ExplicitTemplateArgs = 0;
John McCall3b4294e2009-12-16 12:17:52 +00009213 if (ULE->hasExplicitTemplateArgs()) {
9214 ULE->copyTemplateArgumentsInto(TABuffer);
9215 ExplicitTemplateArgs = &TABuffer;
9216 }
9217
9218 for (UnresolvedLookupExpr::decls_iterator I = ULE->decls_begin(),
9219 E = ULE->decls_end(); I != E; ++I)
Ahmed Charles13a140c2012-02-25 11:00:22 +00009220 AddOverloadedCallCandidate(*this, I.getPair(), ExplicitTemplateArgs, Args,
9221 CandidateSet, PartialOverloading,
9222 /*KnownValid*/ true);
John McCallba135432009-11-21 08:51:07 +00009223
John McCall3b4294e2009-12-16 12:17:52 +00009224 if (ULE->requiresADL())
John McCall6e266892010-01-26 03:27:55 +00009225 AddArgumentDependentLookupCandidates(ULE->getName(), /*Operator*/ false,
Richard Smithf5cd5cc2012-02-25 06:24:24 +00009226 ULE->getExprLoc(),
Ahmed Charles13a140c2012-02-25 11:00:22 +00009227 Args, ExplicitTemplateArgs,
9228 CandidateSet, PartialOverloading,
Richard Smithad762fc2011-04-14 22:09:26 +00009229 ULE->isStdAssociatedNamespace());
Douglas Gregor9c6a0e92009-09-22 15:41:20 +00009230}
John McCall578b69b2009-12-16 08:11:27 +00009231
Richard Smithf50e88a2011-06-05 22:42:48 +00009232/// Attempt to recover from an ill-formed use of a non-dependent name in a
9233/// template, where the non-dependent name was declared after the template
9234/// was defined. This is common in code written for a compilers which do not
9235/// correctly implement two-stage name lookup.
9236///
9237/// Returns true if a viable candidate was found and a diagnostic was issued.
9238static bool
9239DiagnoseTwoPhaseLookup(Sema &SemaRef, SourceLocation FnLoc,
9240 const CXXScopeSpec &SS, LookupResult &R,
9241 TemplateArgumentListInfo *ExplicitTemplateArgs,
Ahmed Charles13a140c2012-02-25 11:00:22 +00009242 llvm::ArrayRef<Expr *> Args) {
Richard Smithf50e88a2011-06-05 22:42:48 +00009243 if (SemaRef.ActiveTemplateInstantiations.empty() || !SS.isEmpty())
9244 return false;
9245
9246 for (DeclContext *DC = SemaRef.CurContext; DC; DC = DC->getParent()) {
9247 SemaRef.LookupQualifiedName(R, DC);
9248
9249 if (!R.empty()) {
9250 R.suppressDiagnostics();
9251
9252 if (isa<CXXRecordDecl>(DC)) {
9253 // Don't diagnose names we find in classes; we get much better
9254 // diagnostics for these from DiagnoseEmptyLookup.
9255 R.clear();
9256 return false;
9257 }
9258
9259 OverloadCandidateSet Candidates(FnLoc);
9260 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
9261 AddOverloadedCallCandidate(SemaRef, I.getPair(),
Ahmed Charles13a140c2012-02-25 11:00:22 +00009262 ExplicitTemplateArgs, Args,
Richard Smith2ced0442011-06-26 22:19:54 +00009263 Candidates, false, /*KnownValid*/ false);
Richard Smithf50e88a2011-06-05 22:42:48 +00009264
9265 OverloadCandidateSet::iterator Best;
Richard Smith2ced0442011-06-26 22:19:54 +00009266 if (Candidates.BestViableFunction(SemaRef, FnLoc, Best) != OR_Success) {
Richard Smithf50e88a2011-06-05 22:42:48 +00009267 // No viable functions. Don't bother the user with notes for functions
9268 // which don't work and shouldn't be found anyway.
Richard Smith2ced0442011-06-26 22:19:54 +00009269 R.clear();
Richard Smithf50e88a2011-06-05 22:42:48 +00009270 return false;
Richard Smith2ced0442011-06-26 22:19:54 +00009271 }
Richard Smithf50e88a2011-06-05 22:42:48 +00009272
9273 // Find the namespaces where ADL would have looked, and suggest
9274 // declaring the function there instead.
9275 Sema::AssociatedNamespaceSet AssociatedNamespaces;
9276 Sema::AssociatedClassSet AssociatedClasses;
Ahmed Charles13a140c2012-02-25 11:00:22 +00009277 SemaRef.FindAssociatedClassesAndNamespaces(Args,
Richard Smithf50e88a2011-06-05 22:42:48 +00009278 AssociatedNamespaces,
9279 AssociatedClasses);
9280 // Never suggest declaring a function within namespace 'std'.
Chandler Carruth74d487e2011-06-05 23:36:55 +00009281 Sema::AssociatedNamespaceSet SuggestedNamespaces;
Richard Smithf50e88a2011-06-05 22:42:48 +00009282 if (DeclContext *Std = SemaRef.getStdNamespace()) {
Richard Smithf50e88a2011-06-05 22:42:48 +00009283 for (Sema::AssociatedNamespaceSet::iterator
9284 it = AssociatedNamespaces.begin(),
Chandler Carruth74d487e2011-06-05 23:36:55 +00009285 end = AssociatedNamespaces.end(); it != end; ++it) {
9286 if (!Std->Encloses(*it))
9287 SuggestedNamespaces.insert(*it);
9288 }
Chandler Carruth45cad4a2011-06-08 10:13:17 +00009289 } else {
9290 // Lacking the 'std::' namespace, use all of the associated namespaces.
9291 SuggestedNamespaces = AssociatedNamespaces;
Richard Smithf50e88a2011-06-05 22:42:48 +00009292 }
9293
9294 SemaRef.Diag(R.getNameLoc(), diag::err_not_found_by_two_phase_lookup)
9295 << R.getLookupName();
Chandler Carruth74d487e2011-06-05 23:36:55 +00009296 if (SuggestedNamespaces.empty()) {
Richard Smithf50e88a2011-06-05 22:42:48 +00009297 SemaRef.Diag(Best->Function->getLocation(),
9298 diag::note_not_found_by_two_phase_lookup)
9299 << R.getLookupName() << 0;
Chandler Carruth74d487e2011-06-05 23:36:55 +00009300 } else if (SuggestedNamespaces.size() == 1) {
Richard Smithf50e88a2011-06-05 22:42:48 +00009301 SemaRef.Diag(Best->Function->getLocation(),
9302 diag::note_not_found_by_two_phase_lookup)
Chandler Carruth74d487e2011-06-05 23:36:55 +00009303 << R.getLookupName() << 1 << *SuggestedNamespaces.begin();
Richard Smithf50e88a2011-06-05 22:42:48 +00009304 } else {
9305 // FIXME: It would be useful to list the associated namespaces here,
9306 // but the diagnostics infrastructure doesn't provide a way to produce
9307 // a localized representation of a list of items.
9308 SemaRef.Diag(Best->Function->getLocation(),
9309 diag::note_not_found_by_two_phase_lookup)
9310 << R.getLookupName() << 2;
9311 }
9312
9313 // Try to recover by calling this function.
9314 return true;
9315 }
9316
9317 R.clear();
9318 }
9319
9320 return false;
9321}
9322
9323/// Attempt to recover from ill-formed use of a non-dependent operator in a
9324/// template, where the non-dependent operator was declared after the template
9325/// was defined.
9326///
9327/// Returns true if a viable candidate was found and a diagnostic was issued.
9328static bool
9329DiagnoseTwoPhaseOperatorLookup(Sema &SemaRef, OverloadedOperatorKind Op,
9330 SourceLocation OpLoc,
Ahmed Charles13a140c2012-02-25 11:00:22 +00009331 llvm::ArrayRef<Expr *> Args) {
Richard Smithf50e88a2011-06-05 22:42:48 +00009332 DeclarationName OpName =
9333 SemaRef.Context.DeclarationNames.getCXXOperatorName(Op);
9334 LookupResult R(SemaRef, OpName, OpLoc, Sema::LookupOperatorName);
9335 return DiagnoseTwoPhaseLookup(SemaRef, OpLoc, CXXScopeSpec(), R,
Ahmed Charles13a140c2012-02-25 11:00:22 +00009336 /*ExplicitTemplateArgs=*/0, Args);
Richard Smithf50e88a2011-06-05 22:42:48 +00009337}
9338
Kaelyn Uhrain60a09dc2012-01-25 18:37:44 +00009339namespace {
9340// Callback to limit the allowed keywords and to only accept typo corrections
9341// that are keywords or whose decls refer to functions (or template functions)
9342// that accept the given number of arguments.
9343class RecoveryCallCCC : public CorrectionCandidateCallback {
9344 public:
9345 RecoveryCallCCC(Sema &SemaRef, unsigned NumArgs, bool HasExplicitTemplateArgs)
9346 : NumArgs(NumArgs), HasExplicitTemplateArgs(HasExplicitTemplateArgs) {
9347 WantTypeSpecifiers = SemaRef.getLangOptions().CPlusPlus;
9348 WantRemainingKeywords = false;
9349 }
9350
9351 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
9352 if (!candidate.getCorrectionDecl())
9353 return candidate.isKeyword();
9354
9355 for (TypoCorrection::const_decl_iterator DI = candidate.begin(),
9356 DIEnd = candidate.end(); DI != DIEnd; ++DI) {
9357 FunctionDecl *FD = 0;
9358 NamedDecl *ND = (*DI)->getUnderlyingDecl();
9359 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND))
9360 FD = FTD->getTemplatedDecl();
9361 if (!HasExplicitTemplateArgs && !FD) {
9362 if (!(FD = dyn_cast<FunctionDecl>(ND)) && isa<ValueDecl>(ND)) {
9363 // If the Decl is neither a function nor a template function,
9364 // determine if it is a pointer or reference to a function. If so,
9365 // check against the number of arguments expected for the pointee.
9366 QualType ValType = cast<ValueDecl>(ND)->getType();
9367 if (ValType->isAnyPointerType() || ValType->isReferenceType())
9368 ValType = ValType->getPointeeType();
9369 if (const FunctionProtoType *FPT = ValType->getAs<FunctionProtoType>())
9370 if (FPT->getNumArgs() == NumArgs)
9371 return true;
9372 }
9373 }
9374 if (FD && FD->getNumParams() >= NumArgs &&
9375 FD->getMinRequiredArguments() <= NumArgs)
9376 return true;
9377 }
9378 return false;
9379 }
9380
9381 private:
9382 unsigned NumArgs;
9383 bool HasExplicitTemplateArgs;
9384};
Kaelyn Uhrain3943b1c2012-01-25 21:11:35 +00009385
9386// Callback that effectively disabled typo correction
9387class NoTypoCorrectionCCC : public CorrectionCandidateCallback {
9388 public:
9389 NoTypoCorrectionCCC() {
9390 WantTypeSpecifiers = false;
9391 WantExpressionKeywords = false;
9392 WantCXXNamedCasts = false;
9393 WantRemainingKeywords = false;
9394 }
9395
9396 virtual bool ValidateCandidate(const TypoCorrection &candidate) {
9397 return false;
9398 }
9399};
Kaelyn Uhrain60a09dc2012-01-25 18:37:44 +00009400}
9401
John McCall578b69b2009-12-16 08:11:27 +00009402/// Attempts to recover from a call where no functions were found.
9403///
9404/// Returns true if new candidates were found.
John McCall60d7b3a2010-08-24 06:29:42 +00009405static ExprResult
Douglas Gregor1aae80b2010-04-14 20:27:54 +00009406BuildRecoveryCallExpr(Sema &SemaRef, Scope *S, Expr *Fn,
John McCall3b4294e2009-12-16 12:17:52 +00009407 UnresolvedLookupExpr *ULE,
9408 SourceLocation LParenLoc,
Ahmed Charles13a140c2012-02-25 11:00:22 +00009409 llvm::MutableArrayRef<Expr *> Args,
Richard Smithf50e88a2011-06-05 22:42:48 +00009410 SourceLocation RParenLoc,
Kaelyn Uhrain3943b1c2012-01-25 21:11:35 +00009411 bool EmptyLookup, bool AllowTypoCorrection) {
John McCall578b69b2009-12-16 08:11:27 +00009412
9413 CXXScopeSpec SS;
Douglas Gregor4c9be892011-02-28 20:01:57 +00009414 SS.Adopt(ULE->getQualifierLoc());
Abramo Bagnarae4b92762012-01-27 09:46:47 +00009415 SourceLocation TemplateKWLoc = ULE->getTemplateKeywordLoc();
John McCall578b69b2009-12-16 08:11:27 +00009416
John McCall3b4294e2009-12-16 12:17:52 +00009417 TemplateArgumentListInfo TABuffer;
Richard Smithf50e88a2011-06-05 22:42:48 +00009418 TemplateArgumentListInfo *ExplicitTemplateArgs = 0;
John McCall3b4294e2009-12-16 12:17:52 +00009419 if (ULE->hasExplicitTemplateArgs()) {
9420 ULE->copyTemplateArgumentsInto(TABuffer);
9421 ExplicitTemplateArgs = &TABuffer;
9422 }
9423
John McCall578b69b2009-12-16 08:11:27 +00009424 LookupResult R(SemaRef, ULE->getName(), ULE->getNameLoc(),
9425 Sema::LookupOrdinaryName);
Ahmed Charles13a140c2012-02-25 11:00:22 +00009426 RecoveryCallCCC Validator(SemaRef, Args.size(), ExplicitTemplateArgs != 0);
Kaelyn Uhrain3943b1c2012-01-25 21:11:35 +00009427 NoTypoCorrectionCCC RejectAll;
9428 CorrectionCandidateCallback *CCC = AllowTypoCorrection ?
9429 (CorrectionCandidateCallback*)&Validator :
9430 (CorrectionCandidateCallback*)&RejectAll;
Richard Smithf50e88a2011-06-05 22:42:48 +00009431 if (!DiagnoseTwoPhaseLookup(SemaRef, Fn->getExprLoc(), SS, R,
Ahmed Charles13a140c2012-02-25 11:00:22 +00009432 ExplicitTemplateArgs, Args) &&
Richard Smithf50e88a2011-06-05 22:42:48 +00009433 (!EmptyLookup ||
Kaelyn Uhrain3943b1c2012-01-25 21:11:35 +00009434 SemaRef.DiagnoseEmptyLookup(S, SS, R, *CCC,
Ahmed Charles13a140c2012-02-25 11:00:22 +00009435 ExplicitTemplateArgs, Args)))
John McCallf312b1e2010-08-26 23:41:50 +00009436 return ExprError();
John McCall578b69b2009-12-16 08:11:27 +00009437
John McCall3b4294e2009-12-16 12:17:52 +00009438 assert(!R.empty() && "lookup results empty despite recovery");
9439
9440 // Build an implicit member call if appropriate. Just drop the
9441 // casts and such from the call, we don't really care.
John McCallf312b1e2010-08-26 23:41:50 +00009442 ExprResult NewFn = ExprError();
John McCall3b4294e2009-12-16 12:17:52 +00009443 if ((*R.begin())->isCXXClassMember())
Abramo Bagnarae4b92762012-01-27 09:46:47 +00009444 NewFn = SemaRef.BuildPossibleImplicitMemberExpr(SS, TemplateKWLoc,
9445 R, ExplicitTemplateArgs);
Abramo Bagnara9d9922a2012-02-06 14:31:00 +00009446 else if (ExplicitTemplateArgs || TemplateKWLoc.isValid())
Abramo Bagnarae4b92762012-01-27 09:46:47 +00009447 NewFn = SemaRef.BuildTemplateIdExpr(SS, TemplateKWLoc, R, false,
Abramo Bagnara9d9922a2012-02-06 14:31:00 +00009448 ExplicitTemplateArgs);
John McCall3b4294e2009-12-16 12:17:52 +00009449 else
9450 NewFn = SemaRef.BuildDeclarationNameExpr(SS, R, false);
9451
9452 if (NewFn.isInvalid())
John McCallf312b1e2010-08-26 23:41:50 +00009453 return ExprError();
John McCall3b4294e2009-12-16 12:17:52 +00009454
9455 // This shouldn't cause an infinite loop because we're giving it
Richard Smithf50e88a2011-06-05 22:42:48 +00009456 // an expression with viable lookup results, which should never
John McCall3b4294e2009-12-16 12:17:52 +00009457 // end up here.
John McCall9ae2f072010-08-23 23:25:46 +00009458 return SemaRef.ActOnCallExpr(/*Scope*/ 0, NewFn.take(), LParenLoc,
Ahmed Charles13a140c2012-02-25 11:00:22 +00009459 MultiExprArg(Args.data(), Args.size()),
9460 RParenLoc);
John McCall578b69b2009-12-16 08:11:27 +00009461}
Douglas Gregord7a95972010-06-08 17:35:15 +00009462
Douglas Gregorf6b89692008-11-26 05:54:23 +00009463/// ResolveOverloadedCallFn - Given the call expression that calls Fn
Douglas Gregorfa047642009-02-04 00:32:51 +00009464/// (which eventually refers to the declaration Func) and the call
9465/// arguments Args/NumArgs, attempt to resolve the function call down
9466/// to a specific function. If overload resolution succeeds, returns
9467/// the function declaration produced by overload
Douglas Gregor0a396682008-11-26 06:01:48 +00009468/// resolution. Otherwise, emits diagnostics, deletes all of the
Douglas Gregorf6b89692008-11-26 05:54:23 +00009469/// arguments and Fn, and returns NULL.
John McCall60d7b3a2010-08-24 06:29:42 +00009470ExprResult
Douglas Gregor1aae80b2010-04-14 20:27:54 +00009471Sema::BuildOverloadedCallExpr(Scope *S, Expr *Fn, UnresolvedLookupExpr *ULE,
John McCall3b4294e2009-12-16 12:17:52 +00009472 SourceLocation LParenLoc,
9473 Expr **Args, unsigned NumArgs,
Peter Collingbournee08ce652011-02-09 21:07:24 +00009474 SourceLocation RParenLoc,
Kaelyn Uhrain3943b1c2012-01-25 21:11:35 +00009475 Expr *ExecConfig,
9476 bool AllowTypoCorrection) {
John McCall3b4294e2009-12-16 12:17:52 +00009477#ifndef NDEBUG
9478 if (ULE->requiresADL()) {
9479 // To do ADL, we must have found an unqualified name.
9480 assert(!ULE->getQualifier() && "qualified name with ADL");
9481
9482 // We don't perform ADL for implicit declarations of builtins.
9483 // Verify that this was correctly set up.
9484 FunctionDecl *F;
9485 if (ULE->decls_begin() + 1 == ULE->decls_end() &&
9486 (F = dyn_cast<FunctionDecl>(*ULE->decls_begin())) &&
9487 F->getBuiltinID() && F->isImplicit())
David Blaikieb219cfc2011-09-23 05:06:16 +00009488 llvm_unreachable("performing ADL for builtin");
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00009489
John McCall3b4294e2009-12-16 12:17:52 +00009490 // We don't perform ADL in C.
9491 assert(getLangOptions().CPlusPlus && "ADL enabled in C");
Richard Smithad762fc2011-04-14 22:09:26 +00009492 } else
9493 assert(!ULE->isStdAssociatedNamespace() &&
9494 "std is associated namespace but not doing ADL");
John McCall3b4294e2009-12-16 12:17:52 +00009495#endif
9496
John McCall5acb0c92011-10-17 18:40:02 +00009497 UnbridgedCastsSet UnbridgedCasts;
9498 if (checkArgPlaceholdersForOverload(*this, Args, NumArgs, UnbridgedCasts))
9499 return ExprError();
9500
John McCall5769d612010-02-08 23:07:23 +00009501 OverloadCandidateSet CandidateSet(Fn->getExprLoc());
Douglas Gregor17330012009-02-04 15:01:18 +00009502
John McCall3b4294e2009-12-16 12:17:52 +00009503 // Add the functions denoted by the callee to the set of candidate
9504 // functions, including those from argument-dependent lookup.
Ahmed Charles13a140c2012-02-25 11:00:22 +00009505 AddOverloadedCallCandidates(ULE, llvm::makeArrayRef(Args, NumArgs),
9506 CandidateSet);
John McCall578b69b2009-12-16 08:11:27 +00009507
9508 // If we found nothing, try to recover.
Richard Smithf50e88a2011-06-05 22:42:48 +00009509 // BuildRecoveryCallExpr diagnoses the error itself, so we just bail
9510 // out if it fails.
Francois Pichet0f74d1e2011-09-07 00:14:57 +00009511 if (CandidateSet.empty()) {
Sebastian Redl14b0c192011-09-24 17:48:00 +00009512 // In Microsoft mode, if we are inside a template class member function then
9513 // create a type dependent CallExpr. The goal is to postpone name lookup
Francois Pichet0f74d1e2011-09-07 00:14:57 +00009514 // to instantiation time to be able to search into type dependent base
Sebastian Redl14b0c192011-09-24 17:48:00 +00009515 // classes.
Francois Pichetef04ecf2011-11-11 00:12:11 +00009516 if (getLangOptions().MicrosoftMode && CurContext->isDependentContext() &&
Francois Pichetc8ff9152011-11-25 01:10:54 +00009517 (isa<FunctionDecl>(CurContext) || isa<CXXRecordDecl>(CurContext))) {
Sebastian Redl14b0c192011-09-24 17:48:00 +00009518 CallExpr *CE = new (Context) CallExpr(Context, Fn, Args, NumArgs,
9519 Context.DependentTy, VK_RValue,
9520 RParenLoc);
9521 CE->setTypeDependent(true);
9522 return Owned(CE);
9523 }
Ahmed Charles13a140c2012-02-25 11:00:22 +00009524 return BuildRecoveryCallExpr(*this, S, Fn, ULE, LParenLoc,
9525 llvm::MutableArrayRef<Expr *>(Args, NumArgs),
Kaelyn Uhrain3943b1c2012-01-25 21:11:35 +00009526 RParenLoc, /*EmptyLookup=*/true,
9527 AllowTypoCorrection);
Francois Pichet0f74d1e2011-09-07 00:14:57 +00009528 }
John McCall578b69b2009-12-16 08:11:27 +00009529
John McCall5acb0c92011-10-17 18:40:02 +00009530 UnbridgedCasts.restore();
9531
Douglas Gregorf6b89692008-11-26 05:54:23 +00009532 OverloadCandidateSet::iterator Best;
John McCall120d63c2010-08-24 20:38:10 +00009533 switch (CandidateSet.BestViableFunction(*this, Fn->getLocStart(), Best)) {
John McCall3b4294e2009-12-16 12:17:52 +00009534 case OR_Success: {
9535 FunctionDecl *FDecl = Best->Function;
Eli Friedman5f2987c2012-02-02 03:46:19 +00009536 MarkFunctionReferenced(Fn->getExprLoc(), FDecl);
John McCall9aa472c2010-03-19 07:35:19 +00009537 CheckUnresolvedLookupAccess(ULE, Best->FoundDecl);
John McCall5acb0c92011-10-17 18:40:02 +00009538 DiagnoseUseOfDecl(FDecl, ULE->getNameLoc());
John McCall6bb80172010-03-30 21:47:33 +00009539 Fn = FixOverloadedFunctionReference(Fn, Best->FoundDecl, FDecl);
Peter Collingbournee08ce652011-02-09 21:07:24 +00009540 return BuildResolvedCallExpr(Fn, FDecl, LParenLoc, Args, NumArgs, RParenLoc,
9541 ExecConfig);
John McCall3b4294e2009-12-16 12:17:52 +00009542 }
Douglas Gregorf6b89692008-11-26 05:54:23 +00009543
Richard Smithf50e88a2011-06-05 22:42:48 +00009544 case OR_No_Viable_Function: {
9545 // Try to recover by looking for viable functions which the user might
9546 // have meant to call.
9547 ExprResult Recovery = BuildRecoveryCallExpr(*this, S, Fn, ULE, LParenLoc,
Ahmed Charles13a140c2012-02-25 11:00:22 +00009548 llvm::MutableArrayRef<Expr *>(Args, NumArgs),
9549 RParenLoc,
Kaelyn Uhrain3943b1c2012-01-25 21:11:35 +00009550 /*EmptyLookup=*/false,
9551 AllowTypoCorrection);
Richard Smithf50e88a2011-06-05 22:42:48 +00009552 if (!Recovery.isInvalid())
9553 return Recovery;
9554
Daniel Dunbar96a00142012-03-09 18:35:03 +00009555 Diag(Fn->getLocStart(),
Douglas Gregorf6b89692008-11-26 05:54:23 +00009556 diag::err_ovl_no_viable_function_in_call)
John McCall3b4294e2009-12-16 12:17:52 +00009557 << ULE->getName() << Fn->getSourceRange();
Ahmed Charles13a140c2012-02-25 11:00:22 +00009558 CandidateSet.NoteCandidates(*this, OCD_AllCandidates,
9559 llvm::makeArrayRef(Args, NumArgs));
Douglas Gregorf6b89692008-11-26 05:54:23 +00009560 break;
Richard Smithf50e88a2011-06-05 22:42:48 +00009561 }
Douglas Gregorf6b89692008-11-26 05:54:23 +00009562
9563 case OR_Ambiguous:
Daniel Dunbar96a00142012-03-09 18:35:03 +00009564 Diag(Fn->getLocStart(), diag::err_ovl_ambiguous_call)
John McCall3b4294e2009-12-16 12:17:52 +00009565 << ULE->getName() << Fn->getSourceRange();
Ahmed Charles13a140c2012-02-25 11:00:22 +00009566 CandidateSet.NoteCandidates(*this, OCD_ViableCandidates,
9567 llvm::makeArrayRef(Args, NumArgs));
Douglas Gregorf6b89692008-11-26 05:54:23 +00009568 break;
Douglas Gregor48f3bb92009-02-18 21:56:37 +00009569
9570 case OR_Deleted:
Fariborz Jahanian2b982b72011-02-25 18:38:59 +00009571 {
Daniel Dunbar96a00142012-03-09 18:35:03 +00009572 Diag(Fn->getLocStart(), diag::err_ovl_deleted_call)
Fariborz Jahanian5e24f2a2011-02-25 20:51:14 +00009573 << Best->Function->isDeleted()
9574 << ULE->getName()
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00009575 << getDeletedOrUnavailableSuffix(Best->Function)
Fariborz Jahanian5e24f2a2011-02-25 20:51:14 +00009576 << Fn->getSourceRange();
Ahmed Charles13a140c2012-02-25 11:00:22 +00009577 CandidateSet.NoteCandidates(*this, OCD_AllCandidates,
9578 llvm::makeArrayRef(Args, NumArgs));
Argyrios Kyrtzidis0d579b62011-11-04 15:58:13 +00009579
9580 // We emitted an error for the unvailable/deleted function call but keep
9581 // the call in the AST.
9582 FunctionDecl *FDecl = Best->Function;
9583 Fn = FixOverloadedFunctionReference(Fn, Best->FoundDecl, FDecl);
9584 return BuildResolvedCallExpr(Fn, FDecl, LParenLoc, Args, NumArgs,
9585 RParenLoc, ExecConfig);
Fariborz Jahanian2b982b72011-02-25 18:38:59 +00009586 }
Douglas Gregorf6b89692008-11-26 05:54:23 +00009587 }
9588
Douglas Gregorff331c12010-07-25 18:17:45 +00009589 // Overload resolution failed.
John McCall3b4294e2009-12-16 12:17:52 +00009590 return ExprError();
Douglas Gregorf6b89692008-11-26 05:54:23 +00009591}
9592
John McCall6e266892010-01-26 03:27:55 +00009593static bool IsOverloaded(const UnresolvedSetImpl &Functions) {
John McCall7453ed42009-11-22 00:44:51 +00009594 return Functions.size() > 1 ||
9595 (Functions.size() == 1 && isa<FunctionTemplateDecl>(*Functions.begin()));
9596}
9597
Douglas Gregorbc736fc2009-03-13 23:49:33 +00009598/// \brief Create a unary operation that may resolve to an overloaded
9599/// operator.
9600///
9601/// \param OpLoc The location of the operator itself (e.g., '*').
9602///
9603/// \param OpcIn The UnaryOperator::Opcode that describes this
9604/// operator.
9605///
9606/// \param Functions The set of non-member functions that will be
9607/// considered by overload resolution. The caller needs to build this
9608/// set based on the context using, e.g.,
9609/// LookupOverloadedOperatorName() and ArgumentDependentLookup(). This
9610/// set should not contain any member functions; those will be added
9611/// by CreateOverloadedUnaryOp().
9612///
9613/// \param input The input argument.
John McCall60d7b3a2010-08-24 06:29:42 +00009614ExprResult
John McCall6e266892010-01-26 03:27:55 +00009615Sema::CreateOverloadedUnaryOp(SourceLocation OpLoc, unsigned OpcIn,
9616 const UnresolvedSetImpl &Fns,
John McCall9ae2f072010-08-23 23:25:46 +00009617 Expr *Input) {
Douglas Gregorbc736fc2009-03-13 23:49:33 +00009618 UnaryOperator::Opcode Opc = static_cast<UnaryOperator::Opcode>(OpcIn);
Douglas Gregorbc736fc2009-03-13 23:49:33 +00009619
9620 OverloadedOperatorKind Op = UnaryOperator::getOverloadedOperator(Opc);
9621 assert(Op != OO_None && "Invalid opcode for overloaded unary operator");
9622 DeclarationName OpName = Context.DeclarationNames.getCXXOperatorName(Op);
Abramo Bagnara25777432010-08-11 22:01:17 +00009623 // TODO: provide better source location info.
9624 DeclarationNameInfo OpNameInfo(OpName, OpLoc);
Douglas Gregorbc736fc2009-03-13 23:49:33 +00009625
John McCall5acb0c92011-10-17 18:40:02 +00009626 if (checkPlaceholderForOverload(*this, Input))
9627 return ExprError();
John McCall0e800c92010-12-04 08:14:53 +00009628
Douglas Gregorbc736fc2009-03-13 23:49:33 +00009629 Expr *Args[2] = { Input, 0 };
9630 unsigned NumArgs = 1;
Mike Stump1eb44332009-09-09 15:08:12 +00009631
Douglas Gregorbc736fc2009-03-13 23:49:33 +00009632 // For post-increment and post-decrement, add the implicit '0' as
9633 // the second argument, so that we know this is a post-increment or
9634 // post-decrement.
John McCall2de56d12010-08-25 11:45:40 +00009635 if (Opc == UO_PostInc || Opc == UO_PostDec) {
Douglas Gregorbc736fc2009-03-13 23:49:33 +00009636 llvm::APSInt Zero(Context.getTypeSize(Context.IntTy), false);
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +00009637 Args[1] = IntegerLiteral::Create(Context, Zero, Context.IntTy,
9638 SourceLocation());
Douglas Gregorbc736fc2009-03-13 23:49:33 +00009639 NumArgs = 2;
9640 }
9641
9642 if (Input->isTypeDependent()) {
Douglas Gregor1ec8ef72010-06-17 15:46:20 +00009643 if (Fns.empty())
John McCall9ae2f072010-08-23 23:25:46 +00009644 return Owned(new (Context) UnaryOperator(Input,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00009645 Opc,
Douglas Gregor1ec8ef72010-06-17 15:46:20 +00009646 Context.DependentTy,
John McCallf89e55a2010-11-18 06:31:45 +00009647 VK_RValue, OK_Ordinary,
Douglas Gregor1ec8ef72010-06-17 15:46:20 +00009648 OpLoc));
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00009649
John McCallc373d482010-01-27 01:50:18 +00009650 CXXRecordDecl *NamingClass = 0; // because lookup ignores member operators
John McCallba135432009-11-21 08:51:07 +00009651 UnresolvedLookupExpr *Fn
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00009652 = UnresolvedLookupExpr::Create(Context, NamingClass,
Douglas Gregor4c9be892011-02-28 20:01:57 +00009653 NestedNameSpecifierLoc(), OpNameInfo,
Douglas Gregor5a84dec2010-05-23 18:57:34 +00009654 /*ADL*/ true, IsOverloaded(Fns),
9655 Fns.begin(), Fns.end());
Douglas Gregorbc736fc2009-03-13 23:49:33 +00009656 return Owned(new (Context) CXXOperatorCallExpr(Context, Op, Fn,
Douglas Gregor4c9be892011-02-28 20:01:57 +00009657 &Args[0], NumArgs,
Douglas Gregorbc736fc2009-03-13 23:49:33 +00009658 Context.DependentTy,
John McCallf89e55a2010-11-18 06:31:45 +00009659 VK_RValue,
Douglas Gregorbc736fc2009-03-13 23:49:33 +00009660 OpLoc));
9661 }
9662
9663 // Build an empty overload set.
John McCall5769d612010-02-08 23:07:23 +00009664 OverloadCandidateSet CandidateSet(OpLoc);
Douglas Gregorbc736fc2009-03-13 23:49:33 +00009665
9666 // Add the candidates from the given function set.
Ahmed Charles13a140c2012-02-25 11:00:22 +00009667 AddFunctionCandidates(Fns, llvm::makeArrayRef(Args, NumArgs), CandidateSet,
9668 false);
Douglas Gregorbc736fc2009-03-13 23:49:33 +00009669
9670 // Add operator candidates that are member functions.
9671 AddMemberOperatorCandidates(Op, OpLoc, &Args[0], NumArgs, CandidateSet);
9672
John McCall6e266892010-01-26 03:27:55 +00009673 // Add candidates from ADL.
9674 AddArgumentDependentLookupCandidates(OpName, /*Operator*/ true,
Ahmed Charles13a140c2012-02-25 11:00:22 +00009675 OpLoc, llvm::makeArrayRef(Args, NumArgs),
John McCall6e266892010-01-26 03:27:55 +00009676 /*ExplicitTemplateArgs*/ 0,
9677 CandidateSet);
9678
Douglas Gregorbc736fc2009-03-13 23:49:33 +00009679 // Add builtin operator candidates.
Douglas Gregor573d9c32009-10-21 23:19:44 +00009680 AddBuiltinOperatorCandidates(Op, OpLoc, &Args[0], NumArgs, CandidateSet);
Douglas Gregorbc736fc2009-03-13 23:49:33 +00009681
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009682 bool HadMultipleCandidates = (CandidateSet.size() > 1);
9683
Douglas Gregorbc736fc2009-03-13 23:49:33 +00009684 // Perform overload resolution.
9685 OverloadCandidateSet::iterator Best;
John McCall120d63c2010-08-24 20:38:10 +00009686 switch (CandidateSet.BestViableFunction(*this, OpLoc, Best)) {
Douglas Gregorbc736fc2009-03-13 23:49:33 +00009687 case OR_Success: {
9688 // We found a built-in operator or an overloaded operator.
9689 FunctionDecl *FnDecl = Best->Function;
Mike Stump1eb44332009-09-09 15:08:12 +00009690
Douglas Gregorbc736fc2009-03-13 23:49:33 +00009691 if (FnDecl) {
9692 // We matched an overloaded operator. Build a call to that
9693 // operator.
Mike Stump1eb44332009-09-09 15:08:12 +00009694
Eli Friedman5f2987c2012-02-02 03:46:19 +00009695 MarkFunctionReferenced(OpLoc, FnDecl);
Chandler Carruth25ca4212011-02-25 19:41:05 +00009696
Douglas Gregorbc736fc2009-03-13 23:49:33 +00009697 // Convert the arguments.
9698 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) {
John McCall9aa472c2010-03-19 07:35:19 +00009699 CheckMemberOperatorAccess(OpLoc, Args[0], 0, Best->FoundDecl);
John McCall5357b612010-01-28 01:42:12 +00009700
John Wiegley429bb272011-04-08 18:41:53 +00009701 ExprResult InputRes =
9702 PerformObjectArgumentInitialization(Input, /*Qualifier=*/0,
9703 Best->FoundDecl, Method);
9704 if (InputRes.isInvalid())
Douglas Gregorbc736fc2009-03-13 23:49:33 +00009705 return ExprError();
John Wiegley429bb272011-04-08 18:41:53 +00009706 Input = InputRes.take();
Douglas Gregorbc736fc2009-03-13 23:49:33 +00009707 } else {
9708 // Convert the arguments.
John McCall60d7b3a2010-08-24 06:29:42 +00009709 ExprResult InputInit
Douglas Gregore1a5c172009-12-23 17:40:29 +00009710 = PerformCopyInitialization(InitializedEntity::InitializeParameter(
Fariborz Jahanian745da3a2010-09-24 17:30:16 +00009711 Context,
Douglas Gregorbaecfed2009-12-23 00:02:00 +00009712 FnDecl->getParamDecl(0)),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00009713 SourceLocation(),
John McCall9ae2f072010-08-23 23:25:46 +00009714 Input);
Douglas Gregore1a5c172009-12-23 17:40:29 +00009715 if (InputInit.isInvalid())
Douglas Gregorbc736fc2009-03-13 23:49:33 +00009716 return ExprError();
John McCall9ae2f072010-08-23 23:25:46 +00009717 Input = InputInit.take();
Douglas Gregorbc736fc2009-03-13 23:49:33 +00009718 }
9719
John McCallb697e082010-05-06 18:15:07 +00009720 DiagnoseUseOfDecl(Best->FoundDecl, OpLoc);
9721
John McCallf89e55a2010-11-18 06:31:45 +00009722 // Determine the result type.
9723 QualType ResultTy = FnDecl->getResultType();
9724 ExprValueKind VK = Expr::getValueKindForType(ResultTy);
9725 ResultTy = ResultTy.getNonLValueExprType(Context);
Mike Stump1eb44332009-09-09 15:08:12 +00009726
Douglas Gregorbc736fc2009-03-13 23:49:33 +00009727 // Build the actual expression node.
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009728 ExprResult FnExpr = CreateFunctionRefExpr(*this, FnDecl,
Argyrios Kyrtzidis46e75472012-02-08 01:21:13 +00009729 HadMultipleCandidates, OpLoc);
John Wiegley429bb272011-04-08 18:41:53 +00009730 if (FnExpr.isInvalid())
9731 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +00009732
Eli Friedman4c3b8962009-11-18 03:58:17 +00009733 Args[0] = Input;
John McCall9ae2f072010-08-23 23:25:46 +00009734 CallExpr *TheCall =
John Wiegley429bb272011-04-08 18:41:53 +00009735 new (Context) CXXOperatorCallExpr(Context, Op, FnExpr.take(),
John McCallf89e55a2010-11-18 06:31:45 +00009736 Args, NumArgs, ResultTy, VK, OpLoc);
John McCallb697e082010-05-06 18:15:07 +00009737
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00009738 if (CheckCallReturnType(FnDecl->getResultType(), OpLoc, TheCall,
Anders Carlsson26a2a072009-10-13 21:19:37 +00009739 FnDecl))
9740 return ExprError();
9741
John McCall9ae2f072010-08-23 23:25:46 +00009742 return MaybeBindToTemporary(TheCall);
Douglas Gregorbc736fc2009-03-13 23:49:33 +00009743 } else {
9744 // We matched a built-in operator. Convert the arguments, then
9745 // break out so that we will build the appropriate built-in
9746 // operator node.
John Wiegley429bb272011-04-08 18:41:53 +00009747 ExprResult InputRes =
9748 PerformImplicitConversion(Input, Best->BuiltinTypes.ParamTypes[0],
9749 Best->Conversions[0], AA_Passing);
9750 if (InputRes.isInvalid())
9751 return ExprError();
9752 Input = InputRes.take();
Douglas Gregorbc736fc2009-03-13 23:49:33 +00009753 break;
Douglas Gregorbc736fc2009-03-13 23:49:33 +00009754 }
John Wiegley429bb272011-04-08 18:41:53 +00009755 }
9756
9757 case OR_No_Viable_Function:
Richard Smithf50e88a2011-06-05 22:42:48 +00009758 // This is an erroneous use of an operator which can be overloaded by
9759 // a non-member function. Check for non-member operators which were
9760 // defined too late to be candidates.
Ahmed Charles13a140c2012-02-25 11:00:22 +00009761 if (DiagnoseTwoPhaseOperatorLookup(*this, Op, OpLoc,
9762 llvm::makeArrayRef(Args, NumArgs)))
Richard Smithf50e88a2011-06-05 22:42:48 +00009763 // FIXME: Recover by calling the found function.
9764 return ExprError();
9765
John Wiegley429bb272011-04-08 18:41:53 +00009766 // No viable function; fall through to handling this as a
9767 // built-in operator, which will produce an error message for us.
9768 break;
9769
9770 case OR_Ambiguous:
9771 Diag(OpLoc, diag::err_ovl_ambiguous_oper_unary)
9772 << UnaryOperator::getOpcodeStr(Opc)
9773 << Input->getType()
9774 << Input->getSourceRange();
Ahmed Charles13a140c2012-02-25 11:00:22 +00009775 CandidateSet.NoteCandidates(*this, OCD_ViableCandidates,
9776 llvm::makeArrayRef(Args, NumArgs),
John Wiegley429bb272011-04-08 18:41:53 +00009777 UnaryOperator::getOpcodeStr(Opc), OpLoc);
9778 return ExprError();
9779
9780 case OR_Deleted:
9781 Diag(OpLoc, diag::err_ovl_deleted_oper)
9782 << Best->Function->isDeleted()
9783 << UnaryOperator::getOpcodeStr(Opc)
9784 << getDeletedOrUnavailableSuffix(Best->Function)
9785 << Input->getSourceRange();
Ahmed Charles13a140c2012-02-25 11:00:22 +00009786 CandidateSet.NoteCandidates(*this, OCD_AllCandidates,
9787 llvm::makeArrayRef(Args, NumArgs),
Eli Friedman1795d372011-08-26 19:46:22 +00009788 UnaryOperator::getOpcodeStr(Opc), OpLoc);
John Wiegley429bb272011-04-08 18:41:53 +00009789 return ExprError();
9790 }
Douglas Gregorbc736fc2009-03-13 23:49:33 +00009791
9792 // Either we found no viable overloaded operator or we matched a
9793 // built-in operator. In either case, fall through to trying to
9794 // build a built-in operation.
John McCall9ae2f072010-08-23 23:25:46 +00009795 return CreateBuiltinUnaryOp(OpLoc, Opc, Input);
Douglas Gregorbc736fc2009-03-13 23:49:33 +00009796}
9797
Douglas Gregor063daf62009-03-13 18:40:31 +00009798/// \brief Create a binary operation that may resolve to an overloaded
9799/// operator.
9800///
9801/// \param OpLoc The location of the operator itself (e.g., '+').
9802///
9803/// \param OpcIn The BinaryOperator::Opcode that describes this
9804/// operator.
9805///
9806/// \param Functions The set of non-member functions that will be
9807/// considered by overload resolution. The caller needs to build this
9808/// set based on the context using, e.g.,
9809/// LookupOverloadedOperatorName() and ArgumentDependentLookup(). This
9810/// set should not contain any member functions; those will be added
9811/// by CreateOverloadedBinOp().
9812///
9813/// \param LHS Left-hand argument.
9814/// \param RHS Right-hand argument.
John McCall60d7b3a2010-08-24 06:29:42 +00009815ExprResult
Douglas Gregor063daf62009-03-13 18:40:31 +00009816Sema::CreateOverloadedBinOp(SourceLocation OpLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00009817 unsigned OpcIn,
John McCall6e266892010-01-26 03:27:55 +00009818 const UnresolvedSetImpl &Fns,
Douglas Gregor063daf62009-03-13 18:40:31 +00009819 Expr *LHS, Expr *RHS) {
Douglas Gregor063daf62009-03-13 18:40:31 +00009820 Expr *Args[2] = { LHS, RHS };
Douglas Gregorc3384cb2009-08-26 17:08:25 +00009821 LHS=RHS=0; //Please use only Args instead of LHS/RHS couple
Douglas Gregor063daf62009-03-13 18:40:31 +00009822
9823 BinaryOperator::Opcode Opc = static_cast<BinaryOperator::Opcode>(OpcIn);
9824 OverloadedOperatorKind Op = BinaryOperator::getOverloadedOperator(Opc);
9825 DeclarationName OpName = Context.DeclarationNames.getCXXOperatorName(Op);
9826
9827 // If either side is type-dependent, create an appropriate dependent
9828 // expression.
Douglas Gregorc3384cb2009-08-26 17:08:25 +00009829 if (Args[0]->isTypeDependent() || Args[1]->isTypeDependent()) {
John McCall6e266892010-01-26 03:27:55 +00009830 if (Fns.empty()) {
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00009831 // If there are no functions to store, just build a dependent
Douglas Gregor6ca7cfb2009-11-05 00:51:44 +00009832 // BinaryOperator or CompoundAssignment.
John McCall2de56d12010-08-25 11:45:40 +00009833 if (Opc <= BO_Assign || Opc > BO_OrAssign)
Douglas Gregor6ca7cfb2009-11-05 00:51:44 +00009834 return Owned(new (Context) BinaryOperator(Args[0], Args[1], Opc,
John McCallf89e55a2010-11-18 06:31:45 +00009835 Context.DependentTy,
9836 VK_RValue, OK_Ordinary,
9837 OpLoc));
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00009838
Douglas Gregor6ca7cfb2009-11-05 00:51:44 +00009839 return Owned(new (Context) CompoundAssignOperator(Args[0], Args[1], Opc,
9840 Context.DependentTy,
John McCallf89e55a2010-11-18 06:31:45 +00009841 VK_LValue,
9842 OK_Ordinary,
Douglas Gregor6ca7cfb2009-11-05 00:51:44 +00009843 Context.DependentTy,
9844 Context.DependentTy,
9845 OpLoc));
9846 }
John McCall6e266892010-01-26 03:27:55 +00009847
9848 // FIXME: save results of ADL from here?
John McCallc373d482010-01-27 01:50:18 +00009849 CXXRecordDecl *NamingClass = 0; // because lookup ignores member operators
Abramo Bagnara25777432010-08-11 22:01:17 +00009850 // TODO: provide better source location info in DNLoc component.
9851 DeclarationNameInfo OpNameInfo(OpName, OpLoc);
John McCallba135432009-11-21 08:51:07 +00009852 UnresolvedLookupExpr *Fn
Douglas Gregor4c9be892011-02-28 20:01:57 +00009853 = UnresolvedLookupExpr::Create(Context, NamingClass,
9854 NestedNameSpecifierLoc(), OpNameInfo,
9855 /*ADL*/ true, IsOverloaded(Fns),
Douglas Gregor5a84dec2010-05-23 18:57:34 +00009856 Fns.begin(), Fns.end());
Douglas Gregor063daf62009-03-13 18:40:31 +00009857 return Owned(new (Context) CXXOperatorCallExpr(Context, Op, Fn,
Mike Stump1eb44332009-09-09 15:08:12 +00009858 Args, 2,
Douglas Gregor063daf62009-03-13 18:40:31 +00009859 Context.DependentTy,
John McCallf89e55a2010-11-18 06:31:45 +00009860 VK_RValue,
Douglas Gregor063daf62009-03-13 18:40:31 +00009861 OpLoc));
9862 }
9863
John McCall5acb0c92011-10-17 18:40:02 +00009864 // Always do placeholder-like conversions on the RHS.
9865 if (checkPlaceholderForOverload(*this, Args[1]))
9866 return ExprError();
John McCall0e800c92010-12-04 08:14:53 +00009867
John McCall3c3b7f92011-10-25 17:37:35 +00009868 // Do placeholder-like conversion on the LHS; note that we should
9869 // not get here with a PseudoObject LHS.
9870 assert(Args[0]->getObjectKind() != OK_ObjCProperty);
John McCall5acb0c92011-10-17 18:40:02 +00009871 if (checkPlaceholderForOverload(*this, Args[0]))
9872 return ExprError();
9873
Sebastian Redl275c2b42009-11-18 23:10:33 +00009874 // If this is the assignment operator, we only perform overload resolution
9875 // if the left-hand side is a class or enumeration type. This is actually
9876 // a hack. The standard requires that we do overload resolution between the
9877 // various built-in candidates, but as DR507 points out, this can lead to
9878 // problems. So we do it this way, which pretty much follows what GCC does.
9879 // Note that we go the traditional code path for compound assignment forms.
John McCall2de56d12010-08-25 11:45:40 +00009880 if (Opc == BO_Assign && !Args[0]->getType()->isOverloadableType())
Douglas Gregorc3384cb2009-08-26 17:08:25 +00009881 return CreateBuiltinBinOp(OpLoc, Opc, Args[0], Args[1]);
Douglas Gregor063daf62009-03-13 18:40:31 +00009882
John McCall0e800c92010-12-04 08:14:53 +00009883 // If this is the .* operator, which is not overloadable, just
9884 // create a built-in binary operator.
9885 if (Opc == BO_PtrMemD)
9886 return CreateBuiltinBinOp(OpLoc, Opc, Args[0], Args[1]);
9887
Douglas Gregorbc736fc2009-03-13 23:49:33 +00009888 // Build an empty overload set.
John McCall5769d612010-02-08 23:07:23 +00009889 OverloadCandidateSet CandidateSet(OpLoc);
Douglas Gregor063daf62009-03-13 18:40:31 +00009890
9891 // Add the candidates from the given function set.
Ahmed Charles13a140c2012-02-25 11:00:22 +00009892 AddFunctionCandidates(Fns, Args, CandidateSet, false);
Douglas Gregor063daf62009-03-13 18:40:31 +00009893
9894 // Add operator candidates that are member functions.
9895 AddMemberOperatorCandidates(Op, OpLoc, Args, 2, CandidateSet);
9896
John McCall6e266892010-01-26 03:27:55 +00009897 // Add candidates from ADL.
9898 AddArgumentDependentLookupCandidates(OpName, /*Operator*/ true,
Ahmed Charles13a140c2012-02-25 11:00:22 +00009899 OpLoc, Args,
John McCall6e266892010-01-26 03:27:55 +00009900 /*ExplicitTemplateArgs*/ 0,
9901 CandidateSet);
9902
Douglas Gregor063daf62009-03-13 18:40:31 +00009903 // Add builtin operator candidates.
Douglas Gregor573d9c32009-10-21 23:19:44 +00009904 AddBuiltinOperatorCandidates(Op, OpLoc, Args, 2, CandidateSet);
Douglas Gregor063daf62009-03-13 18:40:31 +00009905
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009906 bool HadMultipleCandidates = (CandidateSet.size() > 1);
9907
Douglas Gregor063daf62009-03-13 18:40:31 +00009908 // Perform overload resolution.
9909 OverloadCandidateSet::iterator Best;
John McCall120d63c2010-08-24 20:38:10 +00009910 switch (CandidateSet.BestViableFunction(*this, OpLoc, Best)) {
Sebastian Redl3201f6b2009-04-16 17:51:27 +00009911 case OR_Success: {
Douglas Gregor063daf62009-03-13 18:40:31 +00009912 // We found a built-in operator or an overloaded operator.
9913 FunctionDecl *FnDecl = Best->Function;
9914
9915 if (FnDecl) {
9916 // We matched an overloaded operator. Build a call to that
9917 // operator.
9918
Eli Friedman5f2987c2012-02-02 03:46:19 +00009919 MarkFunctionReferenced(OpLoc, FnDecl);
Chandler Carruth25ca4212011-02-25 19:41:05 +00009920
Douglas Gregor063daf62009-03-13 18:40:31 +00009921 // Convert the arguments.
9922 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) {
John McCall5357b612010-01-28 01:42:12 +00009923 // Best->Access is only meaningful for class members.
John McCall9aa472c2010-03-19 07:35:19 +00009924 CheckMemberOperatorAccess(OpLoc, Args[0], Args[1], Best->FoundDecl);
John McCall5357b612010-01-28 01:42:12 +00009925
Chandler Carruth6df868e2010-12-12 08:17:55 +00009926 ExprResult Arg1 =
9927 PerformCopyInitialization(
9928 InitializedEntity::InitializeParameter(Context,
9929 FnDecl->getParamDecl(0)),
9930 SourceLocation(), Owned(Args[1]));
Douglas Gregor4c2458a2009-12-22 21:44:34 +00009931 if (Arg1.isInvalid())
Douglas Gregor063daf62009-03-13 18:40:31 +00009932 return ExprError();
Douglas Gregor4c2458a2009-12-22 21:44:34 +00009933
John Wiegley429bb272011-04-08 18:41:53 +00009934 ExprResult Arg0 =
9935 PerformObjectArgumentInitialization(Args[0], /*Qualifier=*/0,
9936 Best->FoundDecl, Method);
9937 if (Arg0.isInvalid())
Douglas Gregor4c2458a2009-12-22 21:44:34 +00009938 return ExprError();
John Wiegley429bb272011-04-08 18:41:53 +00009939 Args[0] = Arg0.takeAs<Expr>();
Douglas Gregor4c2458a2009-12-22 21:44:34 +00009940 Args[1] = RHS = Arg1.takeAs<Expr>();
Douglas Gregor063daf62009-03-13 18:40:31 +00009941 } else {
9942 // Convert the arguments.
Chandler Carruth6df868e2010-12-12 08:17:55 +00009943 ExprResult Arg0 = PerformCopyInitialization(
9944 InitializedEntity::InitializeParameter(Context,
9945 FnDecl->getParamDecl(0)),
9946 SourceLocation(), Owned(Args[0]));
Douglas Gregor4c2458a2009-12-22 21:44:34 +00009947 if (Arg0.isInvalid())
Douglas Gregor063daf62009-03-13 18:40:31 +00009948 return ExprError();
Douglas Gregor4c2458a2009-12-22 21:44:34 +00009949
Chandler Carruth6df868e2010-12-12 08:17:55 +00009950 ExprResult Arg1 =
9951 PerformCopyInitialization(
9952 InitializedEntity::InitializeParameter(Context,
9953 FnDecl->getParamDecl(1)),
9954 SourceLocation(), Owned(Args[1]));
Douglas Gregor4c2458a2009-12-22 21:44:34 +00009955 if (Arg1.isInvalid())
9956 return ExprError();
9957 Args[0] = LHS = Arg0.takeAs<Expr>();
9958 Args[1] = RHS = Arg1.takeAs<Expr>();
Douglas Gregor063daf62009-03-13 18:40:31 +00009959 }
9960
John McCallb697e082010-05-06 18:15:07 +00009961 DiagnoseUseOfDecl(Best->FoundDecl, OpLoc);
9962
John McCallf89e55a2010-11-18 06:31:45 +00009963 // Determine the result type.
9964 QualType ResultTy = FnDecl->getResultType();
9965 ExprValueKind VK = Expr::getValueKindForType(ResultTy);
9966 ResultTy = ResultTy.getNonLValueExprType(Context);
Douglas Gregor063daf62009-03-13 18:40:31 +00009967
9968 // Build the actual expression node.
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00009969 ExprResult FnExpr = CreateFunctionRefExpr(*this, FnDecl,
9970 HadMultipleCandidates, OpLoc);
John Wiegley429bb272011-04-08 18:41:53 +00009971 if (FnExpr.isInvalid())
9972 return ExprError();
Douglas Gregor063daf62009-03-13 18:40:31 +00009973
John McCall9ae2f072010-08-23 23:25:46 +00009974 CXXOperatorCallExpr *TheCall =
John Wiegley429bb272011-04-08 18:41:53 +00009975 new (Context) CXXOperatorCallExpr(Context, Op, FnExpr.take(),
John McCallf89e55a2010-11-18 06:31:45 +00009976 Args, 2, ResultTy, VK, OpLoc);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +00009977
9978 if (CheckCallReturnType(FnDecl->getResultType(), OpLoc, TheCall,
Anders Carlsson15ea3782009-10-13 22:43:21 +00009979 FnDecl))
9980 return ExprError();
9981
John McCall9ae2f072010-08-23 23:25:46 +00009982 return MaybeBindToTemporary(TheCall);
Douglas Gregor063daf62009-03-13 18:40:31 +00009983 } else {
9984 // We matched a built-in operator. Convert the arguments, then
9985 // break out so that we will build the appropriate built-in
9986 // operator node.
John Wiegley429bb272011-04-08 18:41:53 +00009987 ExprResult ArgsRes0 =
9988 PerformImplicitConversion(Args[0], Best->BuiltinTypes.ParamTypes[0],
9989 Best->Conversions[0], AA_Passing);
9990 if (ArgsRes0.isInvalid())
Douglas Gregor063daf62009-03-13 18:40:31 +00009991 return ExprError();
John Wiegley429bb272011-04-08 18:41:53 +00009992 Args[0] = ArgsRes0.take();
Douglas Gregor063daf62009-03-13 18:40:31 +00009993
John Wiegley429bb272011-04-08 18:41:53 +00009994 ExprResult ArgsRes1 =
9995 PerformImplicitConversion(Args[1], Best->BuiltinTypes.ParamTypes[1],
9996 Best->Conversions[1], AA_Passing);
9997 if (ArgsRes1.isInvalid())
9998 return ExprError();
9999 Args[1] = ArgsRes1.take();
Douglas Gregor063daf62009-03-13 18:40:31 +000010000 break;
10001 }
10002 }
10003
Douglas Gregor33074752009-09-30 21:46:01 +000010004 case OR_No_Viable_Function: {
10005 // C++ [over.match.oper]p9:
10006 // If the operator is the operator , [...] and there are no
10007 // viable functions, then the operator is assumed to be the
10008 // built-in operator and interpreted according to clause 5.
John McCall2de56d12010-08-25 11:45:40 +000010009 if (Opc == BO_Comma)
Douglas Gregor33074752009-09-30 21:46:01 +000010010 break;
10011
Chandler Carruth6df868e2010-12-12 08:17:55 +000010012 // For class as left operand for assignment or compound assigment
10013 // operator do not fall through to handling in built-in, but report that
10014 // no overloaded assignment operator found
John McCall60d7b3a2010-08-24 06:29:42 +000010015 ExprResult Result = ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000010016 if (Args[0]->getType()->isRecordType() &&
John McCall2de56d12010-08-25 11:45:40 +000010017 Opc >= BO_Assign && Opc <= BO_OrAssign) {
Sebastian Redl8593c782009-05-21 11:50:50 +000010018 Diag(OpLoc, diag::err_ovl_no_viable_oper)
10019 << BinaryOperator::getOpcodeStr(Opc)
Douglas Gregorc3384cb2009-08-26 17:08:25 +000010020 << Args[0]->getSourceRange() << Args[1]->getSourceRange();
Douglas Gregor33074752009-09-30 21:46:01 +000010021 } else {
Richard Smithf50e88a2011-06-05 22:42:48 +000010022 // This is an erroneous use of an operator which can be overloaded by
10023 // a non-member function. Check for non-member operators which were
10024 // defined too late to be candidates.
Ahmed Charles13a140c2012-02-25 11:00:22 +000010025 if (DiagnoseTwoPhaseOperatorLookup(*this, Op, OpLoc, Args))
Richard Smithf50e88a2011-06-05 22:42:48 +000010026 // FIXME: Recover by calling the found function.
10027 return ExprError();
10028
Douglas Gregor33074752009-09-30 21:46:01 +000010029 // No viable function; try to create a built-in operation, which will
10030 // produce an error. Then, show the non-viable candidates.
10031 Result = CreateBuiltinBinOp(OpLoc, Opc, Args[0], Args[1]);
Sebastian Redl8593c782009-05-21 11:50:50 +000010032 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000010033 assert(Result.isInvalid() &&
Douglas Gregor33074752009-09-30 21:46:01 +000010034 "C++ binary operator overloading is missing candidates!");
10035 if (Result.isInvalid())
Ahmed Charles13a140c2012-02-25 11:00:22 +000010036 CandidateSet.NoteCandidates(*this, OCD_AllCandidates, Args,
John McCall120d63c2010-08-24 20:38:10 +000010037 BinaryOperator::getOpcodeStr(Opc), OpLoc);
Douglas Gregor33074752009-09-30 21:46:01 +000010038 return move(Result);
10039 }
Douglas Gregor063daf62009-03-13 18:40:31 +000010040
10041 case OR_Ambiguous:
Douglas Gregorae2cf762010-11-13 20:06:38 +000010042 Diag(OpLoc, diag::err_ovl_ambiguous_oper_binary)
Douglas Gregor063daf62009-03-13 18:40:31 +000010043 << BinaryOperator::getOpcodeStr(Opc)
Douglas Gregorae2cf762010-11-13 20:06:38 +000010044 << Args[0]->getType() << Args[1]->getType()
Douglas Gregorc3384cb2009-08-26 17:08:25 +000010045 << Args[0]->getSourceRange() << Args[1]->getSourceRange();
Ahmed Charles13a140c2012-02-25 11:00:22 +000010046 CandidateSet.NoteCandidates(*this, OCD_ViableCandidates, Args,
John McCall120d63c2010-08-24 20:38:10 +000010047 BinaryOperator::getOpcodeStr(Opc), OpLoc);
Douglas Gregor063daf62009-03-13 18:40:31 +000010048 return ExprError();
10049
10050 case OR_Deleted:
Douglas Gregore4e68d42012-02-15 19:33:52 +000010051 if (isImplicitlyDeleted(Best->Function)) {
10052 CXXMethodDecl *Method = cast<CXXMethodDecl>(Best->Function);
10053 Diag(OpLoc, diag::err_ovl_deleted_special_oper)
10054 << getSpecialMember(Method)
10055 << BinaryOperator::getOpcodeStr(Opc)
10056 << getDeletedOrUnavailableSuffix(Best->Function);
10057
10058 if (Method->getParent()->isLambda()) {
10059 Diag(Method->getParent()->getLocation(), diag::note_lambda_decl);
10060 return ExprError();
10061 }
10062 } else {
10063 Diag(OpLoc, diag::err_ovl_deleted_oper)
10064 << Best->Function->isDeleted()
10065 << BinaryOperator::getOpcodeStr(Opc)
10066 << getDeletedOrUnavailableSuffix(Best->Function)
10067 << Args[0]->getSourceRange() << Args[1]->getSourceRange();
10068 }
Ahmed Charles13a140c2012-02-25 11:00:22 +000010069 CandidateSet.NoteCandidates(*this, OCD_AllCandidates, Args,
Eli Friedman1795d372011-08-26 19:46:22 +000010070 BinaryOperator::getOpcodeStr(Opc), OpLoc);
Douglas Gregor063daf62009-03-13 18:40:31 +000010071 return ExprError();
John McCall1d318332010-01-12 00:44:57 +000010072 }
Douglas Gregor063daf62009-03-13 18:40:31 +000010073
Douglas Gregor33074752009-09-30 21:46:01 +000010074 // We matched a built-in operator; build it.
Douglas Gregorc3384cb2009-08-26 17:08:25 +000010075 return CreateBuiltinBinOp(OpLoc, Opc, Args[0], Args[1]);
Douglas Gregor063daf62009-03-13 18:40:31 +000010076}
10077
John McCall60d7b3a2010-08-24 06:29:42 +000010078ExprResult
Sebastian Redlf322ed62009-10-29 20:17:01 +000010079Sema::CreateOverloadedArraySubscriptExpr(SourceLocation LLoc,
10080 SourceLocation RLoc,
John McCall9ae2f072010-08-23 23:25:46 +000010081 Expr *Base, Expr *Idx) {
10082 Expr *Args[2] = { Base, Idx };
Sebastian Redlf322ed62009-10-29 20:17:01 +000010083 DeclarationName OpName =
10084 Context.DeclarationNames.getCXXOperatorName(OO_Subscript);
10085
10086 // If either side is type-dependent, create an appropriate dependent
10087 // expression.
10088 if (Args[0]->isTypeDependent() || Args[1]->isTypeDependent()) {
10089
John McCallc373d482010-01-27 01:50:18 +000010090 CXXRecordDecl *NamingClass = 0; // because lookup ignores member operators
Abramo Bagnara25777432010-08-11 22:01:17 +000010091 // CHECKME: no 'operator' keyword?
10092 DeclarationNameInfo OpNameInfo(OpName, LLoc);
10093 OpNameInfo.setCXXOperatorNameRange(SourceRange(LLoc, RLoc));
John McCallba135432009-11-21 08:51:07 +000010094 UnresolvedLookupExpr *Fn
Douglas Gregorbebbe0d2010-12-15 01:34:56 +000010095 = UnresolvedLookupExpr::Create(Context, NamingClass,
Douglas Gregor4c9be892011-02-28 20:01:57 +000010096 NestedNameSpecifierLoc(), OpNameInfo,
Douglas Gregor5a84dec2010-05-23 18:57:34 +000010097 /*ADL*/ true, /*Overloaded*/ false,
10098 UnresolvedSetIterator(),
10099 UnresolvedSetIterator());
John McCallf7a1a742009-11-24 19:00:30 +000010100 // Can't add any actual overloads yet
Sebastian Redlf322ed62009-10-29 20:17:01 +000010101
Sebastian Redlf322ed62009-10-29 20:17:01 +000010102 return Owned(new (Context) CXXOperatorCallExpr(Context, OO_Subscript, Fn,
10103 Args, 2,
10104 Context.DependentTy,
John McCallf89e55a2010-11-18 06:31:45 +000010105 VK_RValue,
Sebastian Redlf322ed62009-10-29 20:17:01 +000010106 RLoc));
10107 }
10108
John McCall5acb0c92011-10-17 18:40:02 +000010109 // Handle placeholders on both operands.
10110 if (checkPlaceholderForOverload(*this, Args[0]))
10111 return ExprError();
10112 if (checkPlaceholderForOverload(*this, Args[1]))
10113 return ExprError();
John McCall0e800c92010-12-04 08:14:53 +000010114
Sebastian Redlf322ed62009-10-29 20:17:01 +000010115 // Build an empty overload set.
John McCall5769d612010-02-08 23:07:23 +000010116 OverloadCandidateSet CandidateSet(LLoc);
Sebastian Redlf322ed62009-10-29 20:17:01 +000010117
10118 // Subscript can only be overloaded as a member function.
10119
10120 // Add operator candidates that are member functions.
10121 AddMemberOperatorCandidates(OO_Subscript, LLoc, Args, 2, CandidateSet);
10122
10123 // Add builtin operator candidates.
10124 AddBuiltinOperatorCandidates(OO_Subscript, LLoc, Args, 2, CandidateSet);
10125
Abramo Bagnara7cc58b42011-10-05 07:56:41 +000010126 bool HadMultipleCandidates = (CandidateSet.size() > 1);
10127
Sebastian Redlf322ed62009-10-29 20:17:01 +000010128 // Perform overload resolution.
10129 OverloadCandidateSet::iterator Best;
John McCall120d63c2010-08-24 20:38:10 +000010130 switch (CandidateSet.BestViableFunction(*this, LLoc, Best)) {
Sebastian Redlf322ed62009-10-29 20:17:01 +000010131 case OR_Success: {
10132 // We found a built-in operator or an overloaded operator.
10133 FunctionDecl *FnDecl = Best->Function;
10134
10135 if (FnDecl) {
10136 // We matched an overloaded operator. Build a call to that
10137 // operator.
10138
Eli Friedman5f2987c2012-02-02 03:46:19 +000010139 MarkFunctionReferenced(LLoc, FnDecl);
Chandler Carruth25ca4212011-02-25 19:41:05 +000010140
John McCall9aa472c2010-03-19 07:35:19 +000010141 CheckMemberOperatorAccess(LLoc, Args[0], Args[1], Best->FoundDecl);
John McCallb697e082010-05-06 18:15:07 +000010142 DiagnoseUseOfDecl(Best->FoundDecl, LLoc);
John McCallc373d482010-01-27 01:50:18 +000010143
Sebastian Redlf322ed62009-10-29 20:17:01 +000010144 // Convert the arguments.
10145 CXXMethodDecl *Method = cast<CXXMethodDecl>(FnDecl);
John Wiegley429bb272011-04-08 18:41:53 +000010146 ExprResult Arg0 =
10147 PerformObjectArgumentInitialization(Args[0], /*Qualifier=*/0,
10148 Best->FoundDecl, Method);
10149 if (Arg0.isInvalid())
Sebastian Redlf322ed62009-10-29 20:17:01 +000010150 return ExprError();
John Wiegley429bb272011-04-08 18:41:53 +000010151 Args[0] = Arg0.take();
Sebastian Redlf322ed62009-10-29 20:17:01 +000010152
Anders Carlsson38f88ab2010-01-29 18:37:50 +000010153 // Convert the arguments.
John McCall60d7b3a2010-08-24 06:29:42 +000010154 ExprResult InputInit
Anders Carlsson38f88ab2010-01-29 18:37:50 +000010155 = PerformCopyInitialization(InitializedEntity::InitializeParameter(
Fariborz Jahanian745da3a2010-09-24 17:30:16 +000010156 Context,
Anders Carlsson38f88ab2010-01-29 18:37:50 +000010157 FnDecl->getParamDecl(0)),
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000010158 SourceLocation(),
Anders Carlsson38f88ab2010-01-29 18:37:50 +000010159 Owned(Args[1]));
10160 if (InputInit.isInvalid())
10161 return ExprError();
10162
10163 Args[1] = InputInit.takeAs<Expr>();
10164
Sebastian Redlf322ed62009-10-29 20:17:01 +000010165 // Determine the result type
John McCallf89e55a2010-11-18 06:31:45 +000010166 QualType ResultTy = FnDecl->getResultType();
10167 ExprValueKind VK = Expr::getValueKindForType(ResultTy);
10168 ResultTy = ResultTy.getNonLValueExprType(Context);
Sebastian Redlf322ed62009-10-29 20:17:01 +000010169
10170 // Build the actual expression node.
Argyrios Kyrtzidis46e75472012-02-08 01:21:13 +000010171 DeclarationNameInfo OpLocInfo(OpName, LLoc);
10172 OpLocInfo.setCXXOperatorNameRange(SourceRange(LLoc, RLoc));
Abramo Bagnara7cc58b42011-10-05 07:56:41 +000010173 ExprResult FnExpr = CreateFunctionRefExpr(*this, FnDecl,
10174 HadMultipleCandidates,
Argyrios Kyrtzidis46e75472012-02-08 01:21:13 +000010175 OpLocInfo.getLoc(),
10176 OpLocInfo.getInfo());
John Wiegley429bb272011-04-08 18:41:53 +000010177 if (FnExpr.isInvalid())
10178 return ExprError();
Sebastian Redlf322ed62009-10-29 20:17:01 +000010179
John McCall9ae2f072010-08-23 23:25:46 +000010180 CXXOperatorCallExpr *TheCall =
10181 new (Context) CXXOperatorCallExpr(Context, OO_Subscript,
John Wiegley429bb272011-04-08 18:41:53 +000010182 FnExpr.take(), Args, 2,
John McCallf89e55a2010-11-18 06:31:45 +000010183 ResultTy, VK, RLoc);
Sebastian Redlf322ed62009-10-29 20:17:01 +000010184
John McCall9ae2f072010-08-23 23:25:46 +000010185 if (CheckCallReturnType(FnDecl->getResultType(), LLoc, TheCall,
Sebastian Redlf322ed62009-10-29 20:17:01 +000010186 FnDecl))
10187 return ExprError();
10188
John McCall9ae2f072010-08-23 23:25:46 +000010189 return MaybeBindToTemporary(TheCall);
Sebastian Redlf322ed62009-10-29 20:17:01 +000010190 } else {
10191 // We matched a built-in operator. Convert the arguments, then
10192 // break out so that we will build the appropriate built-in
10193 // operator node.
John Wiegley429bb272011-04-08 18:41:53 +000010194 ExprResult ArgsRes0 =
10195 PerformImplicitConversion(Args[0], Best->BuiltinTypes.ParamTypes[0],
10196 Best->Conversions[0], AA_Passing);
10197 if (ArgsRes0.isInvalid())
Sebastian Redlf322ed62009-10-29 20:17:01 +000010198 return ExprError();
John Wiegley429bb272011-04-08 18:41:53 +000010199 Args[0] = ArgsRes0.take();
10200
10201 ExprResult ArgsRes1 =
10202 PerformImplicitConversion(Args[1], Best->BuiltinTypes.ParamTypes[1],
10203 Best->Conversions[1], AA_Passing);
10204 if (ArgsRes1.isInvalid())
10205 return ExprError();
10206 Args[1] = ArgsRes1.take();
Sebastian Redlf322ed62009-10-29 20:17:01 +000010207
10208 break;
10209 }
10210 }
10211
10212 case OR_No_Viable_Function: {
John McCall1eb3e102010-01-07 02:04:15 +000010213 if (CandidateSet.empty())
10214 Diag(LLoc, diag::err_ovl_no_oper)
10215 << Args[0]->getType() << /*subscript*/ 0
10216 << Args[0]->getSourceRange() << Args[1]->getSourceRange();
10217 else
10218 Diag(LLoc, diag::err_ovl_no_viable_subscript)
10219 << Args[0]->getType()
10220 << Args[0]->getSourceRange() << Args[1]->getSourceRange();
Ahmed Charles13a140c2012-02-25 11:00:22 +000010221 CandidateSet.NoteCandidates(*this, OCD_AllCandidates, Args,
John McCall120d63c2010-08-24 20:38:10 +000010222 "[]", LLoc);
John McCall1eb3e102010-01-07 02:04:15 +000010223 return ExprError();
Sebastian Redlf322ed62009-10-29 20:17:01 +000010224 }
10225
10226 case OR_Ambiguous:
Douglas Gregorae2cf762010-11-13 20:06:38 +000010227 Diag(LLoc, diag::err_ovl_ambiguous_oper_binary)
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000010228 << "[]"
Douglas Gregorae2cf762010-11-13 20:06:38 +000010229 << Args[0]->getType() << Args[1]->getType()
10230 << Args[0]->getSourceRange() << Args[1]->getSourceRange();
Ahmed Charles13a140c2012-02-25 11:00:22 +000010231 CandidateSet.NoteCandidates(*this, OCD_ViableCandidates, Args,
John McCall120d63c2010-08-24 20:38:10 +000010232 "[]", LLoc);
Sebastian Redlf322ed62009-10-29 20:17:01 +000010233 return ExprError();
10234
10235 case OR_Deleted:
10236 Diag(LLoc, diag::err_ovl_deleted_oper)
10237 << Best->Function->isDeleted() << "[]"
Douglas Gregor0a0d2b12011-03-23 00:50:03 +000010238 << getDeletedOrUnavailableSuffix(Best->Function)
Sebastian Redlf322ed62009-10-29 20:17:01 +000010239 << Args[0]->getSourceRange() << Args[1]->getSourceRange();
Ahmed Charles13a140c2012-02-25 11:00:22 +000010240 CandidateSet.NoteCandidates(*this, OCD_AllCandidates, Args,
John McCall120d63c2010-08-24 20:38:10 +000010241 "[]", LLoc);
Sebastian Redlf322ed62009-10-29 20:17:01 +000010242 return ExprError();
10243 }
10244
10245 // We matched a built-in operator; build it.
John McCall9ae2f072010-08-23 23:25:46 +000010246 return CreateBuiltinArraySubscriptExpr(Args[0], LLoc, Args[1], RLoc);
Sebastian Redlf322ed62009-10-29 20:17:01 +000010247}
10248
Douglas Gregor88a35142008-12-22 05:46:06 +000010249/// BuildCallToMemberFunction - Build a call to a member
10250/// function. MemExpr is the expression that refers to the member
10251/// function (and includes the object parameter), Args/NumArgs are the
10252/// arguments to the function call (not including the object
10253/// parameter). The caller needs to validate that the member
John McCall864c0412011-04-26 20:42:42 +000010254/// expression refers to a non-static member function or an overloaded
10255/// member function.
John McCall60d7b3a2010-08-24 06:29:42 +000010256ExprResult
Mike Stump1eb44332009-09-09 15:08:12 +000010257Sema::BuildCallToMemberFunction(Scope *S, Expr *MemExprE,
10258 SourceLocation LParenLoc, Expr **Args,
Douglas Gregora1a04782010-09-09 16:33:13 +000010259 unsigned NumArgs, SourceLocation RParenLoc) {
John McCall864c0412011-04-26 20:42:42 +000010260 assert(MemExprE->getType() == Context.BoundMemberTy ||
10261 MemExprE->getType() == Context.OverloadTy);
10262
Douglas Gregor88a35142008-12-22 05:46:06 +000010263 // Dig out the member expression. This holds both the object
10264 // argument and the member function we're referring to.
John McCall129e2df2009-11-30 22:42:35 +000010265 Expr *NakedMemExpr = MemExprE->IgnoreParens();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000010266
John McCall864c0412011-04-26 20:42:42 +000010267 // Determine whether this is a call to a pointer-to-member function.
10268 if (BinaryOperator *op = dyn_cast<BinaryOperator>(NakedMemExpr)) {
10269 assert(op->getType() == Context.BoundMemberTy);
10270 assert(op->getOpcode() == BO_PtrMemD || op->getOpcode() == BO_PtrMemI);
10271
10272 QualType fnType =
10273 op->getRHS()->getType()->castAs<MemberPointerType>()->getPointeeType();
10274
10275 const FunctionProtoType *proto = fnType->castAs<FunctionProtoType>();
10276 QualType resultType = proto->getCallResultType(Context);
10277 ExprValueKind valueKind = Expr::getValueKindForType(proto->getResultType());
10278
10279 // Check that the object type isn't more qualified than the
10280 // member function we're calling.
10281 Qualifiers funcQuals = Qualifiers::fromCVRMask(proto->getTypeQuals());
10282
10283 QualType objectType = op->getLHS()->getType();
10284 if (op->getOpcode() == BO_PtrMemI)
10285 objectType = objectType->castAs<PointerType>()->getPointeeType();
10286 Qualifiers objectQuals = objectType.getQualifiers();
10287
10288 Qualifiers difference = objectQuals - funcQuals;
10289 difference.removeObjCGCAttr();
10290 difference.removeAddressSpace();
10291 if (difference) {
10292 std::string qualsString = difference.getAsString();
10293 Diag(LParenLoc, diag::err_pointer_to_member_call_drops_quals)
10294 << fnType.getUnqualifiedType()
10295 << qualsString
10296 << (qualsString.find(' ') == std::string::npos ? 1 : 2);
10297 }
10298
10299 CXXMemberCallExpr *call
10300 = new (Context) CXXMemberCallExpr(Context, MemExprE, Args, NumArgs,
10301 resultType, valueKind, RParenLoc);
10302
10303 if (CheckCallReturnType(proto->getResultType(),
Daniel Dunbar96a00142012-03-09 18:35:03 +000010304 op->getRHS()->getLocStart(),
John McCall864c0412011-04-26 20:42:42 +000010305 call, 0))
10306 return ExprError();
10307
10308 if (ConvertArgumentsForCall(call, op, 0, proto, Args, NumArgs, RParenLoc))
10309 return ExprError();
10310
10311 return MaybeBindToTemporary(call);
10312 }
10313
John McCall5acb0c92011-10-17 18:40:02 +000010314 UnbridgedCastsSet UnbridgedCasts;
10315 if (checkArgPlaceholdersForOverload(*this, Args, NumArgs, UnbridgedCasts))
10316 return ExprError();
10317
John McCall129e2df2009-11-30 22:42:35 +000010318 MemberExpr *MemExpr;
Douglas Gregor88a35142008-12-22 05:46:06 +000010319 CXXMethodDecl *Method = 0;
John McCallbb6fb462010-04-08 00:13:37 +000010320 DeclAccessPair FoundDecl = DeclAccessPair::make(0, AS_public);
Douglas Gregor5fccd362010-03-03 23:55:11 +000010321 NestedNameSpecifier *Qualifier = 0;
John McCall129e2df2009-11-30 22:42:35 +000010322 if (isa<MemberExpr>(NakedMemExpr)) {
10323 MemExpr = cast<MemberExpr>(NakedMemExpr);
John McCall129e2df2009-11-30 22:42:35 +000010324 Method = cast<CXXMethodDecl>(MemExpr->getMemberDecl());
John McCall6bb80172010-03-30 21:47:33 +000010325 FoundDecl = MemExpr->getFoundDecl();
Douglas Gregor5fccd362010-03-03 23:55:11 +000010326 Qualifier = MemExpr->getQualifier();
John McCall5acb0c92011-10-17 18:40:02 +000010327 UnbridgedCasts.restore();
John McCall129e2df2009-11-30 22:42:35 +000010328 } else {
10329 UnresolvedMemberExpr *UnresExpr = cast<UnresolvedMemberExpr>(NakedMemExpr);
Douglas Gregor5fccd362010-03-03 23:55:11 +000010330 Qualifier = UnresExpr->getQualifier();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000010331
John McCall701c89e2009-12-03 04:06:58 +000010332 QualType ObjectType = UnresExpr->getBaseType();
Douglas Gregor2c9a03f2011-01-26 19:30:28 +000010333 Expr::Classification ObjectClassification
10334 = UnresExpr->isArrow()? Expr::Classification::makeSimpleLValue()
10335 : UnresExpr->getBase()->Classify(Context);
John McCall129e2df2009-11-30 22:42:35 +000010336
Douglas Gregor88a35142008-12-22 05:46:06 +000010337 // Add overload candidates
John McCall5769d612010-02-08 23:07:23 +000010338 OverloadCandidateSet CandidateSet(UnresExpr->getMemberLoc());
Mike Stump1eb44332009-09-09 15:08:12 +000010339
John McCallaa81e162009-12-01 22:10:20 +000010340 // FIXME: avoid copy.
10341 TemplateArgumentListInfo TemplateArgsBuffer, *TemplateArgs = 0;
10342 if (UnresExpr->hasExplicitTemplateArgs()) {
10343 UnresExpr->copyTemplateArgumentsInto(TemplateArgsBuffer);
10344 TemplateArgs = &TemplateArgsBuffer;
10345 }
10346
John McCall129e2df2009-11-30 22:42:35 +000010347 for (UnresolvedMemberExpr::decls_iterator I = UnresExpr->decls_begin(),
10348 E = UnresExpr->decls_end(); I != E; ++I) {
10349
John McCall701c89e2009-12-03 04:06:58 +000010350 NamedDecl *Func = *I;
10351 CXXRecordDecl *ActingDC = cast<CXXRecordDecl>(Func->getDeclContext());
10352 if (isa<UsingShadowDecl>(Func))
10353 Func = cast<UsingShadowDecl>(Func)->getTargetDecl();
10354
Douglas Gregor2c9a03f2011-01-26 19:30:28 +000010355
Francois Pichetdbee3412011-01-18 05:04:39 +000010356 // Microsoft supports direct constructor calls.
Francois Pichet62ec1f22011-09-17 17:15:52 +000010357 if (getLangOptions().MicrosoftExt && isa<CXXConstructorDecl>(Func)) {
Ahmed Charles13a140c2012-02-25 11:00:22 +000010358 AddOverloadCandidate(cast<CXXConstructorDecl>(Func), I.getPair(),
10359 llvm::makeArrayRef(Args, NumArgs), CandidateSet);
Francois Pichetdbee3412011-01-18 05:04:39 +000010360 } else if ((Method = dyn_cast<CXXMethodDecl>(Func))) {
Douglas Gregor3eefb1c2009-10-24 04:59:53 +000010361 // If explicit template arguments were provided, we can't call a
10362 // non-template member function.
John McCallaa81e162009-12-01 22:10:20 +000010363 if (TemplateArgs)
Douglas Gregor3eefb1c2009-10-24 04:59:53 +000010364 continue;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000010365
John McCall9aa472c2010-03-19 07:35:19 +000010366 AddMethodCandidate(Method, I.getPair(), ActingDC, ObjectType,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000010367 ObjectClassification,
Ahmed Charles13a140c2012-02-25 11:00:22 +000010368 llvm::makeArrayRef(Args, NumArgs), CandidateSet,
Douglas Gregor2c9a03f2011-01-26 19:30:28 +000010369 /*SuppressUserConversions=*/false);
John McCalld5532b62009-11-23 01:53:49 +000010370 } else {
John McCall129e2df2009-11-30 22:42:35 +000010371 AddMethodTemplateCandidate(cast<FunctionTemplateDecl>(Func),
John McCall9aa472c2010-03-19 07:35:19 +000010372 I.getPair(), ActingDC, TemplateArgs,
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000010373 ObjectType, ObjectClassification,
Ahmed Charles13a140c2012-02-25 11:00:22 +000010374 llvm::makeArrayRef(Args, NumArgs),
10375 CandidateSet,
Douglas Gregordec06662009-08-21 18:42:58 +000010376 /*SuppressUsedConversions=*/false);
John McCalld5532b62009-11-23 01:53:49 +000010377 }
Douglas Gregordec06662009-08-21 18:42:58 +000010378 }
Mike Stump1eb44332009-09-09 15:08:12 +000010379
John McCall129e2df2009-11-30 22:42:35 +000010380 DeclarationName DeclName = UnresExpr->getMemberName();
10381
John McCall5acb0c92011-10-17 18:40:02 +000010382 UnbridgedCasts.restore();
10383
Douglas Gregor88a35142008-12-22 05:46:06 +000010384 OverloadCandidateSet::iterator Best;
John McCall120d63c2010-08-24 20:38:10 +000010385 switch (CandidateSet.BestViableFunction(*this, UnresExpr->getLocStart(),
Nick Lewycky7663f392010-11-20 01:29:55 +000010386 Best)) {
Douglas Gregor88a35142008-12-22 05:46:06 +000010387 case OR_Success:
10388 Method = cast<CXXMethodDecl>(Best->Function);
Eli Friedman5f2987c2012-02-02 03:46:19 +000010389 MarkFunctionReferenced(UnresExpr->getMemberLoc(), Method);
John McCall6bb80172010-03-30 21:47:33 +000010390 FoundDecl = Best->FoundDecl;
John McCall9aa472c2010-03-19 07:35:19 +000010391 CheckUnresolvedMemberAccess(UnresExpr, Best->FoundDecl);
John McCallb697e082010-05-06 18:15:07 +000010392 DiagnoseUseOfDecl(Best->FoundDecl, UnresExpr->getNameLoc());
Douglas Gregor88a35142008-12-22 05:46:06 +000010393 break;
10394
10395 case OR_No_Viable_Function:
John McCall129e2df2009-11-30 22:42:35 +000010396 Diag(UnresExpr->getMemberLoc(),
Douglas Gregor88a35142008-12-22 05:46:06 +000010397 diag::err_ovl_no_viable_member_function_in_call)
Douglas Gregor6b906862009-08-21 00:16:32 +000010398 << DeclName << MemExprE->getSourceRange();
Ahmed Charles13a140c2012-02-25 11:00:22 +000010399 CandidateSet.NoteCandidates(*this, OCD_AllCandidates,
10400 llvm::makeArrayRef(Args, NumArgs));
Douglas Gregor88a35142008-12-22 05:46:06 +000010401 // FIXME: Leaking incoming expressions!
John McCallaa81e162009-12-01 22:10:20 +000010402 return ExprError();
Douglas Gregor88a35142008-12-22 05:46:06 +000010403
10404 case OR_Ambiguous:
John McCall129e2df2009-11-30 22:42:35 +000010405 Diag(UnresExpr->getMemberLoc(), diag::err_ovl_ambiguous_member_call)
Douglas Gregor6b906862009-08-21 00:16:32 +000010406 << DeclName << MemExprE->getSourceRange();
Ahmed Charles13a140c2012-02-25 11:00:22 +000010407 CandidateSet.NoteCandidates(*this, OCD_AllCandidates,
10408 llvm::makeArrayRef(Args, NumArgs));
Douglas Gregor88a35142008-12-22 05:46:06 +000010409 // FIXME: Leaking incoming expressions!
John McCallaa81e162009-12-01 22:10:20 +000010410 return ExprError();
Douglas Gregor48f3bb92009-02-18 21:56:37 +000010411
10412 case OR_Deleted:
John McCall129e2df2009-11-30 22:42:35 +000010413 Diag(UnresExpr->getMemberLoc(), diag::err_ovl_deleted_member_call)
Douglas Gregor48f3bb92009-02-18 21:56:37 +000010414 << Best->Function->isDeleted()
Fariborz Jahanian5e24f2a2011-02-25 20:51:14 +000010415 << DeclName
Douglas Gregor0a0d2b12011-03-23 00:50:03 +000010416 << getDeletedOrUnavailableSuffix(Best->Function)
Fariborz Jahanian5e24f2a2011-02-25 20:51:14 +000010417 << MemExprE->getSourceRange();
Ahmed Charles13a140c2012-02-25 11:00:22 +000010418 CandidateSet.NoteCandidates(*this, OCD_AllCandidates,
10419 llvm::makeArrayRef(Args, NumArgs));
Douglas Gregor48f3bb92009-02-18 21:56:37 +000010420 // FIXME: Leaking incoming expressions!
John McCallaa81e162009-12-01 22:10:20 +000010421 return ExprError();
Douglas Gregor88a35142008-12-22 05:46:06 +000010422 }
10423
John McCall6bb80172010-03-30 21:47:33 +000010424 MemExprE = FixOverloadedFunctionReference(MemExprE, FoundDecl, Method);
John McCallaa81e162009-12-01 22:10:20 +000010425
John McCallaa81e162009-12-01 22:10:20 +000010426 // If overload resolution picked a static member, build a
10427 // non-member call based on that function.
10428 if (Method->isStatic()) {
10429 return BuildResolvedCallExpr(MemExprE, Method, LParenLoc,
10430 Args, NumArgs, RParenLoc);
10431 }
10432
John McCall129e2df2009-11-30 22:42:35 +000010433 MemExpr = cast<MemberExpr>(MemExprE->IgnoreParens());
Douglas Gregor88a35142008-12-22 05:46:06 +000010434 }
10435
John McCallf89e55a2010-11-18 06:31:45 +000010436 QualType ResultType = Method->getResultType();
10437 ExprValueKind VK = Expr::getValueKindForType(ResultType);
10438 ResultType = ResultType.getNonLValueExprType(Context);
10439
Douglas Gregor88a35142008-12-22 05:46:06 +000010440 assert(Method && "Member call to something that isn't a method?");
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000010441 CXXMemberCallExpr *TheCall =
John McCall9ae2f072010-08-23 23:25:46 +000010442 new (Context) CXXMemberCallExpr(Context, MemExprE, Args, NumArgs,
John McCallf89e55a2010-11-18 06:31:45 +000010443 ResultType, VK, RParenLoc);
Douglas Gregor88a35142008-12-22 05:46:06 +000010444
Anders Carlssoneed3e692009-10-10 00:06:20 +000010445 // Check for a valid return type.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000010446 if (CheckCallReturnType(Method->getResultType(), MemExpr->getMemberLoc(),
John McCall9ae2f072010-08-23 23:25:46 +000010447 TheCall, Method))
John McCallaa81e162009-12-01 22:10:20 +000010448 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000010449
Douglas Gregor88a35142008-12-22 05:46:06 +000010450 // Convert the object argument (for a non-static member function call).
John McCall6bb80172010-03-30 21:47:33 +000010451 // We only need to do this if there was actually an overload; otherwise
10452 // it was done at lookup.
John Wiegley429bb272011-04-08 18:41:53 +000010453 if (!Method->isStatic()) {
10454 ExprResult ObjectArg =
10455 PerformObjectArgumentInitialization(MemExpr->getBase(), Qualifier,
10456 FoundDecl, Method);
10457 if (ObjectArg.isInvalid())
10458 return ExprError();
10459 MemExpr->setBase(ObjectArg.take());
10460 }
Douglas Gregor88a35142008-12-22 05:46:06 +000010461
10462 // Convert the rest of the arguments
Chandler Carruth6df868e2010-12-12 08:17:55 +000010463 const FunctionProtoType *Proto =
10464 Method->getType()->getAs<FunctionProtoType>();
John McCall9ae2f072010-08-23 23:25:46 +000010465 if (ConvertArgumentsForCall(TheCall, MemExpr, Method, Proto, Args, NumArgs,
Douglas Gregor88a35142008-12-22 05:46:06 +000010466 RParenLoc))
John McCallaa81e162009-12-01 22:10:20 +000010467 return ExprError();
Douglas Gregor88a35142008-12-22 05:46:06 +000010468
Eli Friedmane61eb042012-02-18 04:48:30 +000010469 DiagnoseSentinelCalls(Method, LParenLoc, Args, NumArgs);
10470
John McCall9ae2f072010-08-23 23:25:46 +000010471 if (CheckFunctionCall(Method, TheCall))
John McCallaa81e162009-12-01 22:10:20 +000010472 return ExprError();
Anders Carlsson6f680272009-08-16 03:42:12 +000010473
Anders Carlsson2174d4c2011-05-06 14:25:31 +000010474 if ((isa<CXXConstructorDecl>(CurContext) ||
10475 isa<CXXDestructorDecl>(CurContext)) &&
10476 TheCall->getMethodDecl()->isPure()) {
10477 const CXXMethodDecl *MD = TheCall->getMethodDecl();
10478
Chandler Carruthae198062011-06-27 08:31:58 +000010479 if (isa<CXXThisExpr>(MemExpr->getBase()->IgnoreParenCasts())) {
Anders Carlsson2174d4c2011-05-06 14:25:31 +000010480 Diag(MemExpr->getLocStart(),
10481 diag::warn_call_to_pure_virtual_member_function_from_ctor_dtor)
10482 << MD->getDeclName() << isa<CXXDestructorDecl>(CurContext)
10483 << MD->getParent()->getDeclName();
10484
10485 Diag(MD->getLocStart(), diag::note_previous_decl) << MD->getDeclName();
Chandler Carruthae198062011-06-27 08:31:58 +000010486 }
Anders Carlsson2174d4c2011-05-06 14:25:31 +000010487 }
John McCall9ae2f072010-08-23 23:25:46 +000010488 return MaybeBindToTemporary(TheCall);
Douglas Gregor88a35142008-12-22 05:46:06 +000010489}
10490
Douglas Gregorf9eb9052008-11-19 21:05:33 +000010491/// BuildCallToObjectOfClassType - Build a call to an object of class
10492/// type (C++ [over.call.object]), which can end up invoking an
10493/// overloaded function call operator (@c operator()) or performing a
10494/// user-defined conversion on the object argument.
John McCallf312b1e2010-08-26 23:41:50 +000010495ExprResult
John Wiegley429bb272011-04-08 18:41:53 +000010496Sema::BuildCallToObjectOfClassType(Scope *S, Expr *Obj,
Douglas Gregor5c37de72008-12-06 00:22:45 +000010497 SourceLocation LParenLoc,
Douglas Gregorf9eb9052008-11-19 21:05:33 +000010498 Expr **Args, unsigned NumArgs,
Douglas Gregorf9eb9052008-11-19 21:05:33 +000010499 SourceLocation RParenLoc) {
John McCall5acb0c92011-10-17 18:40:02 +000010500 if (checkPlaceholderForOverload(*this, Obj))
10501 return ExprError();
John Wiegley429bb272011-04-08 18:41:53 +000010502 ExprResult Object = Owned(Obj);
John McCall5acb0c92011-10-17 18:40:02 +000010503
10504 UnbridgedCastsSet UnbridgedCasts;
10505 if (checkArgPlaceholdersForOverload(*this, Args, NumArgs, UnbridgedCasts))
10506 return ExprError();
John McCall0e800c92010-12-04 08:14:53 +000010507
John Wiegley429bb272011-04-08 18:41:53 +000010508 assert(Object.get()->getType()->isRecordType() && "Requires object type argument");
10509 const RecordType *Record = Object.get()->getType()->getAs<RecordType>();
Mike Stump1eb44332009-09-09 15:08:12 +000010510
Douglas Gregorf9eb9052008-11-19 21:05:33 +000010511 // C++ [over.call.object]p1:
10512 // If the primary-expression E in the function call syntax
Eli Friedman33a31382009-08-05 19:21:58 +000010513 // evaluates to a class object of type "cv T", then the set of
Douglas Gregorf9eb9052008-11-19 21:05:33 +000010514 // candidate functions includes at least the function call
10515 // operators of T. The function call operators of T are obtained by
10516 // ordinary lookup of the name operator() in the context of
10517 // (E).operator().
John McCall5769d612010-02-08 23:07:23 +000010518 OverloadCandidateSet CandidateSet(LParenLoc);
Douglas Gregor44b43212008-12-11 16:49:14 +000010519 DeclarationName OpName = Context.DeclarationNames.getCXXOperatorName(OO_Call);
Douglas Gregor593564b2009-11-15 07:48:03 +000010520
John Wiegley429bb272011-04-08 18:41:53 +000010521 if (RequireCompleteType(LParenLoc, Object.get()->getType(),
Douglas Gregorfe6b2d42010-03-29 23:34:08 +000010522 PDiag(diag::err_incomplete_object_call)
John Wiegley429bb272011-04-08 18:41:53 +000010523 << Object.get()->getSourceRange()))
Douglas Gregor593564b2009-11-15 07:48:03 +000010524 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000010525
John McCalla24dc2e2009-11-17 02:14:36 +000010526 LookupResult R(*this, OpName, LParenLoc, LookupOrdinaryName);
10527 LookupQualifiedName(R, Record->getDecl());
10528 R.suppressDiagnostics();
10529
Douglas Gregor593564b2009-11-15 07:48:03 +000010530 for (LookupResult::iterator Oper = R.begin(), OperEnd = R.end();
Douglas Gregor3734c212009-11-07 17:23:56 +000010531 Oper != OperEnd; ++Oper) {
John Wiegley429bb272011-04-08 18:41:53 +000010532 AddMethodCandidate(Oper.getPair(), Object.get()->getType(),
10533 Object.get()->Classify(Context), Args, NumArgs, CandidateSet,
John McCall314be4e2009-11-17 07:50:12 +000010534 /*SuppressUserConversions=*/ false);
Douglas Gregor3734c212009-11-07 17:23:56 +000010535 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000010536
Douglas Gregor106c6eb2008-11-19 22:57:39 +000010537 // C++ [over.call.object]p2:
Douglas Gregorbf6e3172011-07-23 18:59:35 +000010538 // In addition, for each (non-explicit in C++0x) conversion function
10539 // declared in T of the form
Douglas Gregor106c6eb2008-11-19 22:57:39 +000010540 //
10541 // operator conversion-type-id () cv-qualifier;
10542 //
10543 // where cv-qualifier is the same cv-qualification as, or a
10544 // greater cv-qualification than, cv, and where conversion-type-id
Douglas Gregora967a6f2008-11-20 13:33:37 +000010545 // denotes the type "pointer to function of (P1,...,Pn) returning
10546 // R", or the type "reference to pointer to function of
10547 // (P1,...,Pn) returning R", or the type "reference to function
10548 // of (P1,...,Pn) returning R", a surrogate call function [...]
Douglas Gregor106c6eb2008-11-19 22:57:39 +000010549 // is also considered as a candidate function. Similarly,
10550 // surrogate call functions are added to the set of candidate
10551 // functions for each conversion function declared in an
10552 // accessible base class provided the function is not hidden
10553 // within T by another intervening declaration.
John McCalleec51cf2010-01-20 00:46:10 +000010554 const UnresolvedSetImpl *Conversions
Douglas Gregor90073282010-01-11 19:36:35 +000010555 = cast<CXXRecordDecl>(Record->getDecl())->getVisibleConversionFunctions();
John McCalleec51cf2010-01-20 00:46:10 +000010556 for (UnresolvedSetImpl::iterator I = Conversions->begin(),
John McCallba135432009-11-21 08:51:07 +000010557 E = Conversions->end(); I != E; ++I) {
John McCall701c89e2009-12-03 04:06:58 +000010558 NamedDecl *D = *I;
10559 CXXRecordDecl *ActingContext = cast<CXXRecordDecl>(D->getDeclContext());
10560 if (isa<UsingShadowDecl>(D))
10561 D = cast<UsingShadowDecl>(D)->getTargetDecl();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000010562
Douglas Gregor4a27d702009-10-21 06:18:39 +000010563 // Skip over templated conversion functions; they aren't
10564 // surrogates.
John McCall701c89e2009-12-03 04:06:58 +000010565 if (isa<FunctionTemplateDecl>(D))
Douglas Gregor4a27d702009-10-21 06:18:39 +000010566 continue;
Douglas Gregor65ec1fd2009-08-21 23:19:43 +000010567
John McCall701c89e2009-12-03 04:06:58 +000010568 CXXConversionDecl *Conv = cast<CXXConversionDecl>(D);
Douglas Gregorbf6e3172011-07-23 18:59:35 +000010569 if (!Conv->isExplicit()) {
10570 // Strip the reference type (if any) and then the pointer type (if
10571 // any) to get down to what might be a function type.
10572 QualType ConvType = Conv->getConversionType().getNonReferenceType();
10573 if (const PointerType *ConvPtrType = ConvType->getAs<PointerType>())
10574 ConvType = ConvPtrType->getPointeeType();
John McCallba135432009-11-21 08:51:07 +000010575
Douglas Gregorbf6e3172011-07-23 18:59:35 +000010576 if (const FunctionProtoType *Proto = ConvType->getAs<FunctionProtoType>())
10577 {
10578 AddSurrogateCandidate(Conv, I.getPair(), ActingContext, Proto,
Ahmed Charles13a140c2012-02-25 11:00:22 +000010579 Object.get(), llvm::makeArrayRef(Args, NumArgs),
10580 CandidateSet);
Douglas Gregorbf6e3172011-07-23 18:59:35 +000010581 }
10582 }
Douglas Gregor106c6eb2008-11-19 22:57:39 +000010583 }
Mike Stump1eb44332009-09-09 15:08:12 +000010584
Abramo Bagnara7cc58b42011-10-05 07:56:41 +000010585 bool HadMultipleCandidates = (CandidateSet.size() > 1);
10586
Douglas Gregorf9eb9052008-11-19 21:05:33 +000010587 // Perform overload resolution.
10588 OverloadCandidateSet::iterator Best;
John Wiegley429bb272011-04-08 18:41:53 +000010589 switch (CandidateSet.BestViableFunction(*this, Object.get()->getLocStart(),
John McCall120d63c2010-08-24 20:38:10 +000010590 Best)) {
Douglas Gregorf9eb9052008-11-19 21:05:33 +000010591 case OR_Success:
Douglas Gregor106c6eb2008-11-19 22:57:39 +000010592 // Overload resolution succeeded; we'll build the appropriate call
10593 // below.
Douglas Gregorf9eb9052008-11-19 21:05:33 +000010594 break;
10595
10596 case OR_No_Viable_Function:
John McCall1eb3e102010-01-07 02:04:15 +000010597 if (CandidateSet.empty())
Daniel Dunbar96a00142012-03-09 18:35:03 +000010598 Diag(Object.get()->getLocStart(), diag::err_ovl_no_oper)
John Wiegley429bb272011-04-08 18:41:53 +000010599 << Object.get()->getType() << /*call*/ 1
10600 << Object.get()->getSourceRange();
John McCall1eb3e102010-01-07 02:04:15 +000010601 else
Daniel Dunbar96a00142012-03-09 18:35:03 +000010602 Diag(Object.get()->getLocStart(),
John McCall1eb3e102010-01-07 02:04:15 +000010603 diag::err_ovl_no_viable_object_call)
John Wiegley429bb272011-04-08 18:41:53 +000010604 << Object.get()->getType() << Object.get()->getSourceRange();
Ahmed Charles13a140c2012-02-25 11:00:22 +000010605 CandidateSet.NoteCandidates(*this, OCD_AllCandidates,
10606 llvm::makeArrayRef(Args, NumArgs));
Douglas Gregorf9eb9052008-11-19 21:05:33 +000010607 break;
10608
10609 case OR_Ambiguous:
Daniel Dunbar96a00142012-03-09 18:35:03 +000010610 Diag(Object.get()->getLocStart(),
Douglas Gregorf9eb9052008-11-19 21:05:33 +000010611 diag::err_ovl_ambiguous_object_call)
John Wiegley429bb272011-04-08 18:41:53 +000010612 << Object.get()->getType() << Object.get()->getSourceRange();
Ahmed Charles13a140c2012-02-25 11:00:22 +000010613 CandidateSet.NoteCandidates(*this, OCD_ViableCandidates,
10614 llvm::makeArrayRef(Args, NumArgs));
Douglas Gregorf9eb9052008-11-19 21:05:33 +000010615 break;
Douglas Gregor48f3bb92009-02-18 21:56:37 +000010616
10617 case OR_Deleted:
Daniel Dunbar96a00142012-03-09 18:35:03 +000010618 Diag(Object.get()->getLocStart(),
Douglas Gregor48f3bb92009-02-18 21:56:37 +000010619 diag::err_ovl_deleted_object_call)
10620 << Best->Function->isDeleted()
John Wiegley429bb272011-04-08 18:41:53 +000010621 << Object.get()->getType()
Douglas Gregor0a0d2b12011-03-23 00:50:03 +000010622 << getDeletedOrUnavailableSuffix(Best->Function)
John Wiegley429bb272011-04-08 18:41:53 +000010623 << Object.get()->getSourceRange();
Ahmed Charles13a140c2012-02-25 11:00:22 +000010624 CandidateSet.NoteCandidates(*this, OCD_AllCandidates,
10625 llvm::makeArrayRef(Args, NumArgs));
Douglas Gregor48f3bb92009-02-18 21:56:37 +000010626 break;
Mike Stump1eb44332009-09-09 15:08:12 +000010627 }
Douglas Gregorf9eb9052008-11-19 21:05:33 +000010628
Douglas Gregorff331c12010-07-25 18:17:45 +000010629 if (Best == CandidateSet.end())
Douglas Gregorf9eb9052008-11-19 21:05:33 +000010630 return true;
Douglas Gregorf9eb9052008-11-19 21:05:33 +000010631
John McCall5acb0c92011-10-17 18:40:02 +000010632 UnbridgedCasts.restore();
10633
Douglas Gregor106c6eb2008-11-19 22:57:39 +000010634 if (Best->Function == 0) {
10635 // Since there is no function declaration, this is one of the
10636 // surrogate candidates. Dig out the conversion function.
Mike Stump1eb44332009-09-09 15:08:12 +000010637 CXXConversionDecl *Conv
Douglas Gregor106c6eb2008-11-19 22:57:39 +000010638 = cast<CXXConversionDecl>(
10639 Best->Conversions[0].UserDefined.ConversionFunction);
10640
John Wiegley429bb272011-04-08 18:41:53 +000010641 CheckMemberOperatorAccess(LParenLoc, Object.get(), 0, Best->FoundDecl);
John McCallb697e082010-05-06 18:15:07 +000010642 DiagnoseUseOfDecl(Best->FoundDecl, LParenLoc);
John McCall41d89032010-01-28 01:54:34 +000010643
Douglas Gregor106c6eb2008-11-19 22:57:39 +000010644 // We selected one of the surrogate functions that converts the
10645 // object parameter to a function pointer. Perform the conversion
10646 // on the object argument, then let ActOnCallExpr finish the job.
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000010647
Fariborz Jahaniand8307b12009-09-28 18:35:46 +000010648 // Create an implicit member expr to refer to the conversion operator.
Fariborz Jahanianb7400232009-09-28 23:23:40 +000010649 // and then call it.
Abramo Bagnara7cc58b42011-10-05 07:56:41 +000010650 ExprResult Call = BuildCXXMemberCallExpr(Object.get(), Best->FoundDecl,
10651 Conv, HadMultipleCandidates);
Douglas Gregorf2ae5262011-01-20 00:18:04 +000010652 if (Call.isInvalid())
10653 return ExprError();
Abramo Bagnara960809e2011-11-16 22:46:05 +000010654 // Record usage of conversion in an implicit cast.
10655 Call = Owned(ImplicitCastExpr::Create(Context, Call.get()->getType(),
10656 CK_UserDefinedConversion,
10657 Call.get(), 0, VK_RValue));
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000010658
Douglas Gregorf2ae5262011-01-20 00:18:04 +000010659 return ActOnCallExpr(S, Call.get(), LParenLoc, MultiExprArg(Args, NumArgs),
Douglas Gregora1a04782010-09-09 16:33:13 +000010660 RParenLoc);
Douglas Gregor106c6eb2008-11-19 22:57:39 +000010661 }
10662
Eli Friedman5f2987c2012-02-02 03:46:19 +000010663 MarkFunctionReferenced(LParenLoc, Best->Function);
John Wiegley429bb272011-04-08 18:41:53 +000010664 CheckMemberOperatorAccess(LParenLoc, Object.get(), 0, Best->FoundDecl);
John McCallb697e082010-05-06 18:15:07 +000010665 DiagnoseUseOfDecl(Best->FoundDecl, LParenLoc);
John McCall41d89032010-01-28 01:54:34 +000010666
Douglas Gregor106c6eb2008-11-19 22:57:39 +000010667 // We found an overloaded operator(). Build a CXXOperatorCallExpr
10668 // that calls this method, using Object for the implicit object
10669 // parameter and passing along the remaining arguments.
10670 CXXMethodDecl *Method = cast<CXXMethodDecl>(Best->Function);
Chandler Carruth6df868e2010-12-12 08:17:55 +000010671 const FunctionProtoType *Proto =
10672 Method->getType()->getAs<FunctionProtoType>();
Douglas Gregorf9eb9052008-11-19 21:05:33 +000010673
10674 unsigned NumArgsInProto = Proto->getNumArgs();
10675 unsigned NumArgsToCheck = NumArgs;
10676
10677 // Build the full argument list for the method call (the
10678 // implicit object parameter is placed at the beginning of the
10679 // list).
10680 Expr **MethodArgs;
10681 if (NumArgs < NumArgsInProto) {
10682 NumArgsToCheck = NumArgsInProto;
10683 MethodArgs = new Expr*[NumArgsInProto + 1];
10684 } else {
10685 MethodArgs = new Expr*[NumArgs + 1];
10686 }
John Wiegley429bb272011-04-08 18:41:53 +000010687 MethodArgs[0] = Object.get();
Douglas Gregorf9eb9052008-11-19 21:05:33 +000010688 for (unsigned ArgIdx = 0; ArgIdx < NumArgs; ++ArgIdx)
10689 MethodArgs[ArgIdx + 1] = Args[ArgIdx];
Mike Stump1eb44332009-09-09 15:08:12 +000010690
Argyrios Kyrtzidis46e75472012-02-08 01:21:13 +000010691 DeclarationNameInfo OpLocInfo(
10692 Context.DeclarationNames.getCXXOperatorName(OO_Call), LParenLoc);
10693 OpLocInfo.setCXXOperatorNameRange(SourceRange(LParenLoc, RParenLoc));
Abramo Bagnara7cc58b42011-10-05 07:56:41 +000010694 ExprResult NewFn = CreateFunctionRefExpr(*this, Method,
Argyrios Kyrtzidis46e75472012-02-08 01:21:13 +000010695 HadMultipleCandidates,
10696 OpLocInfo.getLoc(),
10697 OpLocInfo.getInfo());
John Wiegley429bb272011-04-08 18:41:53 +000010698 if (NewFn.isInvalid())
10699 return true;
Douglas Gregorf9eb9052008-11-19 21:05:33 +000010700
10701 // Once we've built TheCall, all of the expressions are properly
10702 // owned.
John McCallf89e55a2010-11-18 06:31:45 +000010703 QualType ResultTy = Method->getResultType();
10704 ExprValueKind VK = Expr::getValueKindForType(ResultTy);
10705 ResultTy = ResultTy.getNonLValueExprType(Context);
10706
John McCall9ae2f072010-08-23 23:25:46 +000010707 CXXOperatorCallExpr *TheCall =
John Wiegley429bb272011-04-08 18:41:53 +000010708 new (Context) CXXOperatorCallExpr(Context, OO_Call, NewFn.take(),
John McCall9ae2f072010-08-23 23:25:46 +000010709 MethodArgs, NumArgs + 1,
John McCallf89e55a2010-11-18 06:31:45 +000010710 ResultTy, VK, RParenLoc);
Douglas Gregorf9eb9052008-11-19 21:05:33 +000010711 delete [] MethodArgs;
10712
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000010713 if (CheckCallReturnType(Method->getResultType(), LParenLoc, TheCall,
Anders Carlsson07d68f12009-10-13 21:49:31 +000010714 Method))
10715 return true;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000010716
Douglas Gregor518fda12009-01-13 05:10:00 +000010717 // We may have default arguments. If so, we need to allocate more
10718 // slots in the call for them.
10719 if (NumArgs < NumArgsInProto)
Ted Kremenek8189cde2009-02-07 01:47:29 +000010720 TheCall->setNumArgs(Context, NumArgsInProto + 1);
Douglas Gregor518fda12009-01-13 05:10:00 +000010721 else if (NumArgs > NumArgsInProto)
10722 NumArgsToCheck = NumArgsInProto;
10723
Chris Lattner312531a2009-04-12 08:11:20 +000010724 bool IsError = false;
10725
Douglas Gregorf9eb9052008-11-19 21:05:33 +000010726 // Initialize the implicit object parameter.
John Wiegley429bb272011-04-08 18:41:53 +000010727 ExprResult ObjRes =
10728 PerformObjectArgumentInitialization(Object.get(), /*Qualifier=*/0,
10729 Best->FoundDecl, Method);
10730 if (ObjRes.isInvalid())
10731 IsError = true;
10732 else
10733 Object = move(ObjRes);
10734 TheCall->setArg(0, Object.take());
Chris Lattner312531a2009-04-12 08:11:20 +000010735
Douglas Gregorf9eb9052008-11-19 21:05:33 +000010736 // Check the argument types.
10737 for (unsigned i = 0; i != NumArgsToCheck; i++) {
Douglas Gregorf9eb9052008-11-19 21:05:33 +000010738 Expr *Arg;
Douglas Gregor518fda12009-01-13 05:10:00 +000010739 if (i < NumArgs) {
Douglas Gregorf9eb9052008-11-19 21:05:33 +000010740 Arg = Args[i];
Mike Stump1eb44332009-09-09 15:08:12 +000010741
Douglas Gregor518fda12009-01-13 05:10:00 +000010742 // Pass the argument.
Anders Carlsson3faa4862010-01-29 18:43:53 +000010743
John McCall60d7b3a2010-08-24 06:29:42 +000010744 ExprResult InputInit
Anders Carlsson3faa4862010-01-29 18:43:53 +000010745 = PerformCopyInitialization(InitializedEntity::InitializeParameter(
Fariborz Jahanian745da3a2010-09-24 17:30:16 +000010746 Context,
Anders Carlsson3faa4862010-01-29 18:43:53 +000010747 Method->getParamDecl(i)),
John McCall9ae2f072010-08-23 23:25:46 +000010748 SourceLocation(), Arg);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000010749
Anders Carlsson3faa4862010-01-29 18:43:53 +000010750 IsError |= InputInit.isInvalid();
10751 Arg = InputInit.takeAs<Expr>();
Douglas Gregor518fda12009-01-13 05:10:00 +000010752 } else {
John McCall60d7b3a2010-08-24 06:29:42 +000010753 ExprResult DefArg
Douglas Gregord47c47d2009-11-09 19:27:57 +000010754 = BuildCXXDefaultArgExpr(LParenLoc, Method, Method->getParamDecl(i));
10755 if (DefArg.isInvalid()) {
10756 IsError = true;
10757 break;
10758 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000010759
Douglas Gregord47c47d2009-11-09 19:27:57 +000010760 Arg = DefArg.takeAs<Expr>();
Douglas Gregor518fda12009-01-13 05:10:00 +000010761 }
Douglas Gregorf9eb9052008-11-19 21:05:33 +000010762
10763 TheCall->setArg(i + 1, Arg);
10764 }
10765
10766 // If this is a variadic call, handle args passed through "...".
10767 if (Proto->isVariadic()) {
10768 // Promote the arguments (C99 6.5.2.2p7).
10769 for (unsigned i = NumArgsInProto; i != NumArgs; i++) {
John Wiegley429bb272011-04-08 18:41:53 +000010770 ExprResult Arg = DefaultVariadicArgumentPromotion(Args[i], VariadicMethod, 0);
10771 IsError |= Arg.isInvalid();
10772 TheCall->setArg(i + 1, Arg.take());
Douglas Gregorf9eb9052008-11-19 21:05:33 +000010773 }
10774 }
10775
Chris Lattner312531a2009-04-12 08:11:20 +000010776 if (IsError) return true;
10777
Eli Friedmane61eb042012-02-18 04:48:30 +000010778 DiagnoseSentinelCalls(Method, LParenLoc, Args, NumArgs);
10779
John McCall9ae2f072010-08-23 23:25:46 +000010780 if (CheckFunctionCall(Method, TheCall))
Anders Carlssond406bf02009-08-16 01:56:34 +000010781 return true;
10782
John McCall182f7092010-08-24 06:09:16 +000010783 return MaybeBindToTemporary(TheCall);
Douglas Gregorf9eb9052008-11-19 21:05:33 +000010784}
10785
Douglas Gregor8ba10742008-11-20 16:27:02 +000010786/// BuildOverloadedArrowExpr - Build a call to an overloaded @c operator->
Mike Stump1eb44332009-09-09 15:08:12 +000010787/// (if one exists), where @c Base is an expression of class type and
Douglas Gregor8ba10742008-11-20 16:27:02 +000010788/// @c Member is the name of the member we're trying to find.
John McCall60d7b3a2010-08-24 06:29:42 +000010789ExprResult
John McCall9ae2f072010-08-23 23:25:46 +000010790Sema::BuildOverloadedArrowExpr(Scope *S, Expr *Base, SourceLocation OpLoc) {
Chandler Carruth6df868e2010-12-12 08:17:55 +000010791 assert(Base->getType()->isRecordType() &&
10792 "left-hand side must have class type");
Mike Stump1eb44332009-09-09 15:08:12 +000010793
John McCall5acb0c92011-10-17 18:40:02 +000010794 if (checkPlaceholderForOverload(*this, Base))
10795 return ExprError();
John McCall0e800c92010-12-04 08:14:53 +000010796
John McCall5769d612010-02-08 23:07:23 +000010797 SourceLocation Loc = Base->getExprLoc();
10798
Douglas Gregor8ba10742008-11-20 16:27:02 +000010799 // C++ [over.ref]p1:
10800 //
10801 // [...] An expression x->m is interpreted as (x.operator->())->m
10802 // for a class object x of type T if T::operator->() exists and if
10803 // the operator is selected as the best match function by the
10804 // overload resolution mechanism (13.3).
Chandler Carruth6df868e2010-12-12 08:17:55 +000010805 DeclarationName OpName =
10806 Context.DeclarationNames.getCXXOperatorName(OO_Arrow);
John McCall5769d612010-02-08 23:07:23 +000010807 OverloadCandidateSet CandidateSet(Loc);
Ted Kremenek6217b802009-07-29 21:53:49 +000010808 const RecordType *BaseRecord = Base->getType()->getAs<RecordType>();
Douglas Gregorfe85ced2009-08-06 03:17:00 +000010809
John McCall5769d612010-02-08 23:07:23 +000010810 if (RequireCompleteType(Loc, Base->getType(),
Eli Friedmanf43fb722009-11-18 01:28:03 +000010811 PDiag(diag::err_typecheck_incomplete_tag)
10812 << Base->getSourceRange()))
10813 return ExprError();
10814
John McCalla24dc2e2009-11-17 02:14:36 +000010815 LookupResult R(*this, OpName, OpLoc, LookupOrdinaryName);
10816 LookupQualifiedName(R, BaseRecord->getDecl());
10817 R.suppressDiagnostics();
Anders Carlssone30572a2009-09-10 23:18:36 +000010818
10819 for (LookupResult::iterator Oper = R.begin(), OperEnd = R.end();
John McCall701c89e2009-12-03 04:06:58 +000010820 Oper != OperEnd; ++Oper) {
Douglas Gregor2c9a03f2011-01-26 19:30:28 +000010821 AddMethodCandidate(Oper.getPair(), Base->getType(), Base->Classify(Context),
10822 0, 0, CandidateSet, /*SuppressUserConversions=*/false);
John McCall701c89e2009-12-03 04:06:58 +000010823 }
Douglas Gregor8ba10742008-11-20 16:27:02 +000010824
Abramo Bagnara7cc58b42011-10-05 07:56:41 +000010825 bool HadMultipleCandidates = (CandidateSet.size() > 1);
10826
Douglas Gregor8ba10742008-11-20 16:27:02 +000010827 // Perform overload resolution.
10828 OverloadCandidateSet::iterator Best;
John McCall120d63c2010-08-24 20:38:10 +000010829 switch (CandidateSet.BestViableFunction(*this, OpLoc, Best)) {
Douglas Gregor8ba10742008-11-20 16:27:02 +000010830 case OR_Success:
10831 // Overload resolution succeeded; we'll build the call below.
10832 break;
10833
10834 case OR_No_Viable_Function:
10835 if (CandidateSet.empty())
10836 Diag(OpLoc, diag::err_typecheck_member_reference_arrow)
Douglas Gregorfe85ced2009-08-06 03:17:00 +000010837 << Base->getType() << Base->getSourceRange();
Douglas Gregor8ba10742008-11-20 16:27:02 +000010838 else
10839 Diag(OpLoc, diag::err_ovl_no_viable_oper)
Douglas Gregorfe85ced2009-08-06 03:17:00 +000010840 << "operator->" << Base->getSourceRange();
Ahmed Charles13a140c2012-02-25 11:00:22 +000010841 CandidateSet.NoteCandidates(*this, OCD_AllCandidates, Base);
Douglas Gregorfe85ced2009-08-06 03:17:00 +000010842 return ExprError();
Douglas Gregor8ba10742008-11-20 16:27:02 +000010843
10844 case OR_Ambiguous:
Douglas Gregorae2cf762010-11-13 20:06:38 +000010845 Diag(OpLoc, diag::err_ovl_ambiguous_oper_unary)
10846 << "->" << Base->getType() << Base->getSourceRange();
Ahmed Charles13a140c2012-02-25 11:00:22 +000010847 CandidateSet.NoteCandidates(*this, OCD_ViableCandidates, Base);
Douglas Gregorfe85ced2009-08-06 03:17:00 +000010848 return ExprError();
Douglas Gregor48f3bb92009-02-18 21:56:37 +000010849
10850 case OR_Deleted:
10851 Diag(OpLoc, diag::err_ovl_deleted_oper)
10852 << Best->Function->isDeleted()
Fariborz Jahanian5e24f2a2011-02-25 20:51:14 +000010853 << "->"
Douglas Gregor0a0d2b12011-03-23 00:50:03 +000010854 << getDeletedOrUnavailableSuffix(Best->Function)
Fariborz Jahanian5e24f2a2011-02-25 20:51:14 +000010855 << Base->getSourceRange();
Ahmed Charles13a140c2012-02-25 11:00:22 +000010856 CandidateSet.NoteCandidates(*this, OCD_AllCandidates, Base);
Douglas Gregorfe85ced2009-08-06 03:17:00 +000010857 return ExprError();
Douglas Gregor8ba10742008-11-20 16:27:02 +000010858 }
10859
Eli Friedman5f2987c2012-02-02 03:46:19 +000010860 MarkFunctionReferenced(OpLoc, Best->Function);
John McCall9aa472c2010-03-19 07:35:19 +000010861 CheckMemberOperatorAccess(OpLoc, Base, 0, Best->FoundDecl);
John McCallb697e082010-05-06 18:15:07 +000010862 DiagnoseUseOfDecl(Best->FoundDecl, OpLoc);
John McCall9aa472c2010-03-19 07:35:19 +000010863
Douglas Gregor8ba10742008-11-20 16:27:02 +000010864 // Convert the object parameter.
10865 CXXMethodDecl *Method = cast<CXXMethodDecl>(Best->Function);
John Wiegley429bb272011-04-08 18:41:53 +000010866 ExprResult BaseResult =
10867 PerformObjectArgumentInitialization(Base, /*Qualifier=*/0,
10868 Best->FoundDecl, Method);
10869 if (BaseResult.isInvalid())
Douglas Gregorfe85ced2009-08-06 03:17:00 +000010870 return ExprError();
John Wiegley429bb272011-04-08 18:41:53 +000010871 Base = BaseResult.take();
Douglas Gregorfc195ef2008-11-21 03:04:22 +000010872
Douglas Gregor8ba10742008-11-20 16:27:02 +000010873 // Build the operator call.
Abramo Bagnara7cc58b42011-10-05 07:56:41 +000010874 ExprResult FnExpr = CreateFunctionRefExpr(*this, Method,
Argyrios Kyrtzidis46e75472012-02-08 01:21:13 +000010875 HadMultipleCandidates, OpLoc);
John Wiegley429bb272011-04-08 18:41:53 +000010876 if (FnExpr.isInvalid())
10877 return ExprError();
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000010878
John McCallf89e55a2010-11-18 06:31:45 +000010879 QualType ResultTy = Method->getResultType();
10880 ExprValueKind VK = Expr::getValueKindForType(ResultTy);
10881 ResultTy = ResultTy.getNonLValueExprType(Context);
John McCall9ae2f072010-08-23 23:25:46 +000010882 CXXOperatorCallExpr *TheCall =
John Wiegley429bb272011-04-08 18:41:53 +000010883 new (Context) CXXOperatorCallExpr(Context, OO_Arrow, FnExpr.take(),
John McCallf89e55a2010-11-18 06:31:45 +000010884 &Base, 1, ResultTy, VK, OpLoc);
Anders Carlsson15ea3782009-10-13 22:43:21 +000010885
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000010886 if (CheckCallReturnType(Method->getResultType(), OpLoc, TheCall,
Anders Carlsson15ea3782009-10-13 22:43:21 +000010887 Method))
10888 return ExprError();
Eli Friedmand5931902011-04-04 01:18:25 +000010889
10890 return MaybeBindToTemporary(TheCall);
Douglas Gregor8ba10742008-11-20 16:27:02 +000010891}
10892
Richard Smith36f5cfe2012-03-09 08:00:36 +000010893/// BuildLiteralOperatorCall - Build a UserDefinedLiteral by creating a call to
10894/// a literal operator described by the provided lookup results.
10895ExprResult Sema::BuildLiteralOperatorCall(LookupResult &R,
10896 DeclarationNameInfo &SuffixInfo,
10897 ArrayRef<Expr*> Args,
10898 SourceLocation LitEndLoc,
10899 TemplateArgumentListInfo *TemplateArgs) {
10900 SourceLocation UDSuffixLoc = SuffixInfo.getCXXLiteralOperatorNameLoc();
Richard Smith9fcce652012-03-07 08:35:16 +000010901
Richard Smith36f5cfe2012-03-09 08:00:36 +000010902 OverloadCandidateSet CandidateSet(UDSuffixLoc);
10903 AddFunctionCandidates(R.asUnresolvedSet(), Args, CandidateSet, true,
10904 TemplateArgs);
Richard Smith9fcce652012-03-07 08:35:16 +000010905
Richard Smith36f5cfe2012-03-09 08:00:36 +000010906 bool HadMultipleCandidates = (CandidateSet.size() > 1);
10907
Richard Smith36f5cfe2012-03-09 08:00:36 +000010908 // Perform overload resolution. This will usually be trivial, but might need
10909 // to perform substitutions for a literal operator template.
10910 OverloadCandidateSet::iterator Best;
10911 switch (CandidateSet.BestViableFunction(*this, UDSuffixLoc, Best)) {
10912 case OR_Success:
10913 case OR_Deleted:
10914 break;
10915
10916 case OR_No_Viable_Function:
10917 Diag(UDSuffixLoc, diag::err_ovl_no_viable_function_in_call)
10918 << R.getLookupName();
10919 CandidateSet.NoteCandidates(*this, OCD_AllCandidates, Args);
10920 return ExprError();
10921
10922 case OR_Ambiguous:
10923 Diag(R.getNameLoc(), diag::err_ovl_ambiguous_call) << R.getLookupName();
10924 CandidateSet.NoteCandidates(*this, OCD_ViableCandidates, Args);
10925 return ExprError();
Richard Smith9fcce652012-03-07 08:35:16 +000010926 }
10927
Richard Smith36f5cfe2012-03-09 08:00:36 +000010928 FunctionDecl *FD = Best->Function;
10929 MarkFunctionReferenced(UDSuffixLoc, FD);
10930 DiagnoseUseOfDecl(Best->FoundDecl, UDSuffixLoc);
Richard Smith9fcce652012-03-07 08:35:16 +000010931
Richard Smith36f5cfe2012-03-09 08:00:36 +000010932 ExprResult Fn = CreateFunctionRefExpr(*this, FD, HadMultipleCandidates,
10933 SuffixInfo.getLoc(),
10934 SuffixInfo.getInfo());
10935 if (Fn.isInvalid())
10936 return true;
Richard Smith9fcce652012-03-07 08:35:16 +000010937
10938 // Check the argument types. This should almost always be a no-op, except
10939 // that array-to-pointer decay is applied to string literals.
Richard Smith9fcce652012-03-07 08:35:16 +000010940 Expr *ConvArgs[2];
10941 for (unsigned ArgIdx = 0; ArgIdx != Args.size(); ++ArgIdx) {
10942 ExprResult InputInit = PerformCopyInitialization(
10943 InitializedEntity::InitializeParameter(Context, FD->getParamDecl(ArgIdx)),
10944 SourceLocation(), Args[ArgIdx]);
10945 if (InputInit.isInvalid())
10946 return true;
10947 ConvArgs[ArgIdx] = InputInit.take();
10948 }
10949
Richard Smith9fcce652012-03-07 08:35:16 +000010950 QualType ResultTy = FD->getResultType();
10951 ExprValueKind VK = Expr::getValueKindForType(ResultTy);
10952 ResultTy = ResultTy.getNonLValueExprType(Context);
10953
Richard Smith9fcce652012-03-07 08:35:16 +000010954 UserDefinedLiteral *UDL =
10955 new (Context) UserDefinedLiteral(Context, Fn.take(), ConvArgs, Args.size(),
10956 ResultTy, VK, LitEndLoc, UDSuffixLoc);
10957
10958 if (CheckCallReturnType(FD->getResultType(), UDSuffixLoc, UDL, FD))
10959 return ExprError();
10960
10961 if (CheckFunctionCall(FD, UDL))
10962 return ExprError();
10963
10964 return MaybeBindToTemporary(UDL);
10965}
10966
Douglas Gregor904eed32008-11-10 20:40:00 +000010967/// FixOverloadedFunctionReference - E is an expression that refers to
10968/// a C++ overloaded function (possibly with some parentheses and
10969/// perhaps a '&' around it). We have resolved the overloaded function
10970/// to the function declaration Fn, so patch up the expression E to
Anders Carlsson96ad5332009-10-21 17:16:23 +000010971/// refer (possibly indirectly) to Fn. Returns the new expr.
John McCall161755a2010-04-06 21:38:20 +000010972Expr *Sema::FixOverloadedFunctionReference(Expr *E, DeclAccessPair Found,
John McCall6bb80172010-03-30 21:47:33 +000010973 FunctionDecl *Fn) {
Douglas Gregor904eed32008-11-10 20:40:00 +000010974 if (ParenExpr *PE = dyn_cast<ParenExpr>(E)) {
John McCall6bb80172010-03-30 21:47:33 +000010975 Expr *SubExpr = FixOverloadedFunctionReference(PE->getSubExpr(),
10976 Found, Fn);
Douglas Gregor699ee522009-11-20 19:42:02 +000010977 if (SubExpr == PE->getSubExpr())
John McCall3fa5cae2010-10-26 07:05:15 +000010978 return PE;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000010979
Douglas Gregor699ee522009-11-20 19:42:02 +000010980 return new (Context) ParenExpr(PE->getLParen(), PE->getRParen(), SubExpr);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000010981 }
10982
Douglas Gregor699ee522009-11-20 19:42:02 +000010983 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
John McCall6bb80172010-03-30 21:47:33 +000010984 Expr *SubExpr = FixOverloadedFunctionReference(ICE->getSubExpr(),
10985 Found, Fn);
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000010986 assert(Context.hasSameType(ICE->getSubExpr()->getType(),
Douglas Gregor699ee522009-11-20 19:42:02 +000010987 SubExpr->getType()) &&
Douglas Gregor097bfb12009-10-23 22:18:25 +000010988 "Implicit cast type cannot be determined from overload");
John McCallf871d0c2010-08-07 06:22:56 +000010989 assert(ICE->path_empty() && "fixing up hierarchy conversion?");
Douglas Gregor699ee522009-11-20 19:42:02 +000010990 if (SubExpr == ICE->getSubExpr())
John McCall3fa5cae2010-10-26 07:05:15 +000010991 return ICE;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000010992
10993 return ImplicitCastExpr::Create(Context, ICE->getType(),
John McCallf871d0c2010-08-07 06:22:56 +000010994 ICE->getCastKind(),
10995 SubExpr, 0,
John McCall5baba9d2010-08-25 10:28:54 +000010996 ICE->getValueKind());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000010997 }
10998
Douglas Gregor699ee522009-11-20 19:42:02 +000010999 if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(E)) {
John McCall2de56d12010-08-25 11:45:40 +000011000 assert(UnOp->getOpcode() == UO_AddrOf &&
Douglas Gregor904eed32008-11-10 20:40:00 +000011001 "Can only take the address of an overloaded function");
Douglas Gregorb86b0572009-02-11 01:18:59 +000011002 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Fn)) {
11003 if (Method->isStatic()) {
11004 // Do nothing: static member functions aren't any different
11005 // from non-member functions.
John McCallba135432009-11-21 08:51:07 +000011006 } else {
John McCallf7a1a742009-11-24 19:00:30 +000011007 // Fix the sub expression, which really has to be an
11008 // UnresolvedLookupExpr holding an overloaded member function
11009 // or template.
John McCall6bb80172010-03-30 21:47:33 +000011010 Expr *SubExpr = FixOverloadedFunctionReference(UnOp->getSubExpr(),
11011 Found, Fn);
John McCallba135432009-11-21 08:51:07 +000011012 if (SubExpr == UnOp->getSubExpr())
John McCall3fa5cae2010-10-26 07:05:15 +000011013 return UnOp;
Douglas Gregor699ee522009-11-20 19:42:02 +000011014
John McCallba135432009-11-21 08:51:07 +000011015 assert(isa<DeclRefExpr>(SubExpr)
11016 && "fixed to something other than a decl ref");
11017 assert(cast<DeclRefExpr>(SubExpr)->getQualifier()
11018 && "fixed to a member ref with no nested name qualifier");
11019
11020 // We have taken the address of a pointer to member
11021 // function. Perform the computation here so that we get the
11022 // appropriate pointer to member type.
11023 QualType ClassType
11024 = Context.getTypeDeclType(cast<RecordDecl>(Method->getDeclContext()));
11025 QualType MemPtrType
11026 = Context.getMemberPointerType(Fn->getType(), ClassType.getTypePtr());
11027
John McCallf89e55a2010-11-18 06:31:45 +000011028 return new (Context) UnaryOperator(SubExpr, UO_AddrOf, MemPtrType,
11029 VK_RValue, OK_Ordinary,
11030 UnOp->getOperatorLoc());
Douglas Gregorb86b0572009-02-11 01:18:59 +000011031 }
11032 }
John McCall6bb80172010-03-30 21:47:33 +000011033 Expr *SubExpr = FixOverloadedFunctionReference(UnOp->getSubExpr(),
11034 Found, Fn);
Douglas Gregor699ee522009-11-20 19:42:02 +000011035 if (SubExpr == UnOp->getSubExpr())
John McCall3fa5cae2010-10-26 07:05:15 +000011036 return UnOp;
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000011037
John McCall2de56d12010-08-25 11:45:40 +000011038 return new (Context) UnaryOperator(SubExpr, UO_AddrOf,
Douglas Gregor699ee522009-11-20 19:42:02 +000011039 Context.getPointerType(SubExpr->getType()),
John McCallf89e55a2010-11-18 06:31:45 +000011040 VK_RValue, OK_Ordinary,
Douglas Gregor699ee522009-11-20 19:42:02 +000011041 UnOp->getOperatorLoc());
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000011042 }
John McCallba135432009-11-21 08:51:07 +000011043
11044 if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(E)) {
John McCallaa81e162009-12-01 22:10:20 +000011045 // FIXME: avoid copy.
11046 TemplateArgumentListInfo TemplateArgsBuffer, *TemplateArgs = 0;
John McCallf7a1a742009-11-24 19:00:30 +000011047 if (ULE->hasExplicitTemplateArgs()) {
John McCallaa81e162009-12-01 22:10:20 +000011048 ULE->copyTemplateArgumentsInto(TemplateArgsBuffer);
11049 TemplateArgs = &TemplateArgsBuffer;
John McCallf7a1a742009-11-24 19:00:30 +000011050 }
11051
Abramo Bagnara7cc58b42011-10-05 07:56:41 +000011052 DeclRefExpr *DRE = DeclRefExpr::Create(Context,
11053 ULE->getQualifierLoc(),
Abramo Bagnarae4b92762012-01-27 09:46:47 +000011054 ULE->getTemplateKeywordLoc(),
Abramo Bagnara7cc58b42011-10-05 07:56:41 +000011055 Fn,
11056 ULE->getNameLoc(),
11057 Fn->getType(),
11058 VK_LValue,
11059 Found.getDecl(),
11060 TemplateArgs);
11061 DRE->setHadMultipleCandidates(ULE->getNumDecls() > 1);
11062 return DRE;
John McCallba135432009-11-21 08:51:07 +000011063 }
11064
John McCall129e2df2009-11-30 22:42:35 +000011065 if (UnresolvedMemberExpr *MemExpr = dyn_cast<UnresolvedMemberExpr>(E)) {
John McCalld5532b62009-11-23 01:53:49 +000011066 // FIXME: avoid copy.
John McCallaa81e162009-12-01 22:10:20 +000011067 TemplateArgumentListInfo TemplateArgsBuffer, *TemplateArgs = 0;
11068 if (MemExpr->hasExplicitTemplateArgs()) {
11069 MemExpr->copyTemplateArgumentsInto(TemplateArgsBuffer);
11070 TemplateArgs = &TemplateArgsBuffer;
11071 }
John McCalld5532b62009-11-23 01:53:49 +000011072
John McCallaa81e162009-12-01 22:10:20 +000011073 Expr *Base;
11074
John McCallf89e55a2010-11-18 06:31:45 +000011075 // If we're filling in a static method where we used to have an
11076 // implicit member access, rewrite to a simple decl ref.
John McCallaa81e162009-12-01 22:10:20 +000011077 if (MemExpr->isImplicitAccess()) {
11078 if (cast<CXXMethodDecl>(Fn)->isStatic()) {
Abramo Bagnara7cc58b42011-10-05 07:56:41 +000011079 DeclRefExpr *DRE = DeclRefExpr::Create(Context,
11080 MemExpr->getQualifierLoc(),
Abramo Bagnarae4b92762012-01-27 09:46:47 +000011081 MemExpr->getTemplateKeywordLoc(),
Abramo Bagnara7cc58b42011-10-05 07:56:41 +000011082 Fn,
11083 MemExpr->getMemberLoc(),
11084 Fn->getType(),
11085 VK_LValue,
11086 Found.getDecl(),
11087 TemplateArgs);
11088 DRE->setHadMultipleCandidates(MemExpr->getNumDecls() > 1);
11089 return DRE;
Douglas Gregor828a1972010-01-07 23:12:05 +000011090 } else {
11091 SourceLocation Loc = MemExpr->getMemberLoc();
11092 if (MemExpr->getQualifier())
Douglas Gregor4c9be892011-02-28 20:01:57 +000011093 Loc = MemExpr->getQualifierLoc().getBeginLoc();
Eli Friedman72899c32012-01-07 04:59:52 +000011094 CheckCXXThisCapture(Loc);
Douglas Gregor828a1972010-01-07 23:12:05 +000011095 Base = new (Context) CXXThisExpr(Loc,
11096 MemExpr->getBaseType(),
11097 /*isImplicit=*/true);
11098 }
John McCallaa81e162009-12-01 22:10:20 +000011099 } else
John McCall3fa5cae2010-10-26 07:05:15 +000011100 Base = MemExpr->getBase();
John McCallaa81e162009-12-01 22:10:20 +000011101
John McCallf5307512011-04-27 00:36:17 +000011102 ExprValueKind valueKind;
11103 QualType type;
11104 if (cast<CXXMethodDecl>(Fn)->isStatic()) {
11105 valueKind = VK_LValue;
11106 type = Fn->getType();
11107 } else {
11108 valueKind = VK_RValue;
11109 type = Context.BoundMemberTy;
11110 }
11111
Abramo Bagnara7cc58b42011-10-05 07:56:41 +000011112 MemberExpr *ME = MemberExpr::Create(Context, Base,
11113 MemExpr->isArrow(),
11114 MemExpr->getQualifierLoc(),
Abramo Bagnarae4b92762012-01-27 09:46:47 +000011115 MemExpr->getTemplateKeywordLoc(),
Abramo Bagnara7cc58b42011-10-05 07:56:41 +000011116 Fn,
11117 Found,
11118 MemExpr->getMemberNameInfo(),
11119 TemplateArgs,
11120 type, valueKind, OK_Ordinary);
11121 ME->setHadMultipleCandidates(true);
11122 return ME;
Douglas Gregor699ee522009-11-20 19:42:02 +000011123 }
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000011124
John McCall3fa5cae2010-10-26 07:05:15 +000011125 llvm_unreachable("Invalid reference to overloaded function");
Douglas Gregor904eed32008-11-10 20:40:00 +000011126}
11127
NAKAMURA Takumidfbb02a2011-01-27 07:10:08 +000011128ExprResult Sema::FixOverloadedFunctionReference(ExprResult E,
John McCall60d7b3a2010-08-24 06:29:42 +000011129 DeclAccessPair Found,
11130 FunctionDecl *Fn) {
John McCall6bb80172010-03-30 21:47:33 +000011131 return Owned(FixOverloadedFunctionReference((Expr *)E.get(), Found, Fn));
Douglas Gregor20093b42009-12-09 23:02:17 +000011132}
11133
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000011134} // end namespace clang