blob: d395673e75bd65c7681d926178a12f8f29f63786 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- SemaExprCXX.cpp - Semantic Analysis for Expressions --------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for C++ expressions.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
Douglas Gregor20093b42009-12-09 23:02:17 +000015#include "SemaInit.h"
John McCall7d384dd2009-11-18 07:57:50 +000016#include "Lookup.h"
Steve Naroff210679c2007-08-25 14:02:58 +000017#include "clang/AST/ASTContext.h"
Douglas Gregora8f32e02009-10-06 17:59:45 +000018#include "clang/AST/CXXInheritance.h"
Anders Carlssond497ba72009-08-26 22:59:12 +000019#include "clang/AST/ExprCXX.h"
20#include "clang/Basic/PartialDiagnostic.h"
Sebastian Redlb5a57a62008-12-03 20:26:15 +000021#include "clang/Basic/TargetInfo.h"
Anders Carlssond497ba72009-08-26 22:59:12 +000022#include "clang/Lex/Preprocessor.h"
23#include "clang/Parse/DeclSpec.h"
Douglas Gregor3fc749d2008-12-23 00:26:44 +000024#include "llvm/ADT/STLExtras.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000025using namespace clang;
26
Sebastian Redlc42e1182008-11-11 11:37:55 +000027/// ActOnCXXTypeidOfType - Parse typeid( type-id ).
Sebastian Redlf53597f2009-03-15 17:47:39 +000028Action::OwningExprResult
Sebastian Redlc42e1182008-11-11 11:37:55 +000029Sema::ActOnCXXTypeid(SourceLocation OpLoc, SourceLocation LParenLoc,
30 bool isType, void *TyOrExpr, SourceLocation RParenLoc) {
Douglas Gregor7adb10f2009-09-15 22:30:29 +000031 if (!StdNamespace)
Sebastian Redlf53597f2009-03-15 17:47:39 +000032 return ExprError(Diag(OpLoc, diag::err_need_header_before_typeid));
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +000033
Douglas Gregorf57f2072009-12-23 20:51:04 +000034 if (isType) {
35 // C++ [expr.typeid]p4:
36 // The top-level cv-qualifiers of the lvalue expression or the type-id
37 // that is the operand of typeid are always ignored.
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +000038 // FIXME: Preserve type source info.
Douglas Gregorf57f2072009-12-23 20:51:04 +000039 // FIXME: Preserve the type before we stripped the cv-qualifiers?
40 TyOrExpr =GetTypeFromParser(TyOrExpr).getUnqualifiedType().getAsOpaquePtr();
41 }
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +000042
Chris Lattner572af492008-11-20 05:51:55 +000043 IdentifierInfo *TypeInfoII = &PP.getIdentifierTable().get("type_info");
John McCalla24dc2e2009-11-17 02:14:36 +000044 LookupResult R(*this, TypeInfoII, SourceLocation(), LookupTagName);
45 LookupQualifiedName(R, StdNamespace);
John McCall1bcee0a2009-12-02 08:25:40 +000046 RecordDecl *TypeInfoRecordDecl = R.getAsSingle<RecordDecl>();
Chris Lattner572af492008-11-20 05:51:55 +000047 if (!TypeInfoRecordDecl)
Sebastian Redlf53597f2009-03-15 17:47:39 +000048 return ExprError(Diag(OpLoc, diag::err_need_header_before_typeid));
Sebastian Redlc42e1182008-11-11 11:37:55 +000049
50 QualType TypeInfoType = Context.getTypeDeclType(TypeInfoRecordDecl);
51
Douglas Gregorac7610d2009-06-22 20:57:11 +000052 if (!isType) {
Douglas Gregorac7610d2009-06-22 20:57:11 +000053 bool isUnevaluatedOperand = true;
54 Expr *E = static_cast<Expr *>(TyOrExpr);
Douglas Gregorf57f2072009-12-23 20:51:04 +000055 if (E && !E->isTypeDependent()) {
Douglas Gregorac7610d2009-06-22 20:57:11 +000056 QualType T = E->getType();
Ted Kremenek6217b802009-07-29 21:53:49 +000057 if (const RecordType *RecordT = T->getAs<RecordType>()) {
Douglas Gregorac7610d2009-06-22 20:57:11 +000058 CXXRecordDecl *RecordD = cast<CXXRecordDecl>(RecordT->getDecl());
Douglas Gregorf57f2072009-12-23 20:51:04 +000059 // C++ [expr.typeid]p3:
60 // When typeid is applied to an expression other than an lvalue of a
61 // polymorphic class type [...] [the] expression is an unevaluated
62 // operand. [...]
63 if (RecordD->isPolymorphic() && E->isLvalue(Context) == Expr::LV_Valid)
Douglas Gregorac7610d2009-06-22 20:57:11 +000064 isUnevaluatedOperand = false;
Douglas Gregorf57f2072009-12-23 20:51:04 +000065 else {
66 // C++ [expr.typeid]p3:
67 // [...] If the type of the expression is a class type, the class
68 // shall be completely-defined.
69 // FIXME: implement this!
70 }
71 }
72
73 // C++ [expr.typeid]p4:
74 // [...] If the type of the type-id is a reference to a possibly
75 // cv-qualified type, the result of the typeid expression refers to a
76 // std::type_info object representing the cv-unqualified referenced
77 // type.
78 if (T.hasQualifiers()) {
79 ImpCastExprToType(E, T.getUnqualifiedType(), CastExpr::CK_NoOp,
80 E->isLvalue(Context));
81 TyOrExpr = E;
Douglas Gregorac7610d2009-06-22 20:57:11 +000082 }
83 }
Mike Stump1eb44332009-09-09 15:08:12 +000084
Douglas Gregor2afce722009-11-26 00:44:06 +000085 // If this is an unevaluated operand, clear out the set of
86 // declaration references we have been computing and eliminate any
87 // temporaries introduced in its computation.
Douglas Gregorac7610d2009-06-22 20:57:11 +000088 if (isUnevaluatedOperand)
Douglas Gregor2afce722009-11-26 00:44:06 +000089 ExprEvalContexts.back().Context = Unevaluated;
Douglas Gregorac7610d2009-06-22 20:57:11 +000090 }
Mike Stump1eb44332009-09-09 15:08:12 +000091
Sebastian Redlf53597f2009-03-15 17:47:39 +000092 return Owned(new (Context) CXXTypeidExpr(isType, TyOrExpr,
93 TypeInfoType.withConst(),
94 SourceRange(OpLoc, RParenLoc)));
Sebastian Redlc42e1182008-11-11 11:37:55 +000095}
96
Steve Naroff1b273c42007-09-16 14:56:35 +000097/// ActOnCXXBoolLiteral - Parse {true,false} literals.
Sebastian Redlf53597f2009-03-15 17:47:39 +000098Action::OwningExprResult
Steve Naroff1b273c42007-09-16 14:56:35 +000099Sema::ActOnCXXBoolLiteral(SourceLocation OpLoc, tok::TokenKind Kind) {
Douglas Gregor2f639b92008-10-24 15:36:09 +0000100 assert((Kind == tok::kw_true || Kind == tok::kw_false) &&
Reid Spencer5f016e22007-07-11 17:01:13 +0000101 "Unknown C++ Boolean value!");
Sebastian Redlf53597f2009-03-15 17:47:39 +0000102 return Owned(new (Context) CXXBoolLiteralExpr(Kind == tok::kw_true,
103 Context.BoolTy, OpLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +0000104}
Chris Lattner50dd2892008-02-26 00:51:44 +0000105
Sebastian Redl6e8ed162009-05-10 18:38:11 +0000106/// ActOnCXXNullPtrLiteral - Parse 'nullptr'.
107Action::OwningExprResult
108Sema::ActOnCXXNullPtrLiteral(SourceLocation Loc) {
109 return Owned(new (Context) CXXNullPtrLiteralExpr(Context.NullPtrTy, Loc));
110}
111
Chris Lattner50dd2892008-02-26 00:51:44 +0000112/// ActOnCXXThrow - Parse throw expressions.
Sebastian Redlf53597f2009-03-15 17:47:39 +0000113Action::OwningExprResult
114Sema::ActOnCXXThrow(SourceLocation OpLoc, ExprArg E) {
Sebastian Redl972041f2009-04-27 20:27:31 +0000115 Expr *Ex = E.takeAs<Expr>();
116 if (Ex && !Ex->isTypeDependent() && CheckCXXThrowOperand(OpLoc, Ex))
117 return ExprError();
118 return Owned(new (Context) CXXThrowExpr(Ex, Context.VoidTy, OpLoc));
119}
120
121/// CheckCXXThrowOperand - Validate the operand of a throw.
122bool Sema::CheckCXXThrowOperand(SourceLocation ThrowLoc, Expr *&E) {
123 // C++ [except.throw]p3:
124 // [...] adjusting the type from "array of T" or "function returning T"
125 // to "pointer to T" or "pointer to function returning T", [...]
126 DefaultFunctionArrayConversion(E);
127
128 // If the type of the exception would be an incomplete type or a pointer
129 // to an incomplete type other than (cv) void the program is ill-formed.
130 QualType Ty = E->getType();
131 int isPointer = 0;
Ted Kremenek6217b802009-07-29 21:53:49 +0000132 if (const PointerType* Ptr = Ty->getAs<PointerType>()) {
Sebastian Redl972041f2009-04-27 20:27:31 +0000133 Ty = Ptr->getPointeeType();
134 isPointer = 1;
135 }
136 if (!isPointer || !Ty->isVoidType()) {
137 if (RequireCompleteType(ThrowLoc, Ty,
Anders Carlssond497ba72009-08-26 22:59:12 +0000138 PDiag(isPointer ? diag::err_throw_incomplete_ptr
139 : diag::err_throw_incomplete)
140 << E->getSourceRange()))
Sebastian Redl972041f2009-04-27 20:27:31 +0000141 return true;
142 }
143
144 // FIXME: Construct a temporary here.
145 return false;
Chris Lattner50dd2892008-02-26 00:51:44 +0000146}
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000147
Sebastian Redlf53597f2009-03-15 17:47:39 +0000148Action::OwningExprResult Sema::ActOnCXXThis(SourceLocation ThisLoc) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000149 /// C++ 9.3.2: In the body of a non-static member function, the keyword this
150 /// is a non-lvalue expression whose value is the address of the object for
151 /// which the function is called.
152
Sebastian Redlf53597f2009-03-15 17:47:39 +0000153 if (!isa<FunctionDecl>(CurContext))
154 return ExprError(Diag(ThisLoc, diag::err_invalid_this_use));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000155
156 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext))
157 if (MD->isInstance())
Sebastian Redlf53597f2009-03-15 17:47:39 +0000158 return Owned(new (Context) CXXThisExpr(ThisLoc,
159 MD->getThisType(Context)));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000160
Sebastian Redlf53597f2009-03-15 17:47:39 +0000161 return ExprError(Diag(ThisLoc, diag::err_invalid_this_use));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000162}
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000163
164/// ActOnCXXTypeConstructExpr - Parse construction of a specified type.
165/// Can be interpreted either as function-style casting ("int(x)")
166/// or class type construction ("ClassType(x,y,z)")
167/// or creation of a value-initialized type ("int()").
Sebastian Redlf53597f2009-03-15 17:47:39 +0000168Action::OwningExprResult
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000169Sema::ActOnCXXTypeConstructExpr(SourceRange TypeRange, TypeTy *TypeRep,
170 SourceLocation LParenLoc,
Sebastian Redlf53597f2009-03-15 17:47:39 +0000171 MultiExprArg exprs,
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000172 SourceLocation *CommaLocs,
173 SourceLocation RParenLoc) {
174 assert(TypeRep && "Missing type!");
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +0000175 // FIXME: Preserve type source info.
176 QualType Ty = GetTypeFromParser(TypeRep);
Sebastian Redlf53597f2009-03-15 17:47:39 +0000177 unsigned NumExprs = exprs.size();
178 Expr **Exprs = (Expr**)exprs.get();
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000179 SourceLocation TyBeginLoc = TypeRange.getBegin();
180 SourceRange FullRange = SourceRange(TyBeginLoc, RParenLoc);
181
Sebastian Redlf53597f2009-03-15 17:47:39 +0000182 if (Ty->isDependentType() ||
Douglas Gregorba498172009-03-13 21:01:28 +0000183 CallExpr::hasAnyTypeDependentArguments(Exprs, NumExprs)) {
Sebastian Redlf53597f2009-03-15 17:47:39 +0000184 exprs.release();
Mike Stump1eb44332009-09-09 15:08:12 +0000185
186 return Owned(CXXUnresolvedConstructExpr::Create(Context,
187 TypeRange.getBegin(), Ty,
Douglas Gregord81e6ca2009-05-20 18:46:25 +0000188 LParenLoc,
189 Exprs, NumExprs,
190 RParenLoc));
Douglas Gregorba498172009-03-13 21:01:28 +0000191 }
192
Anders Carlssonbb60a502009-08-27 03:53:50 +0000193 if (Ty->isArrayType())
194 return ExprError(Diag(TyBeginLoc,
195 diag::err_value_init_for_array_type) << FullRange);
196 if (!Ty->isVoidType() &&
197 RequireCompleteType(TyBeginLoc, Ty,
198 PDiag(diag::err_invalid_incomplete_type_use)
199 << FullRange))
200 return ExprError();
Fariborz Jahanianf071e9b2009-10-23 21:01:39 +0000201
Anders Carlssonbb60a502009-08-27 03:53:50 +0000202 if (RequireNonAbstractType(TyBeginLoc, Ty,
203 diag::err_allocation_of_abstract_type))
204 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +0000205
206
Douglas Gregor506ae412009-01-16 18:33:17 +0000207 // C++ [expr.type.conv]p1:
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000208 // If the expression list is a single expression, the type conversion
209 // expression is equivalent (in definedness, and if defined in meaning) to the
210 // corresponding cast expression.
211 //
212 if (NumExprs == 1) {
Anders Carlssoncdb61972009-08-07 22:21:05 +0000213 CastExpr::CastKind Kind = CastExpr::CK_Unknown;
Anders Carlsson0aebc812009-09-09 21:33:21 +0000214 CXXMethodDecl *Method = 0;
215 if (CheckCastTypes(TypeRange, Ty, Exprs[0], Kind, Method,
216 /*FunctionalStyle=*/true))
Sebastian Redlf53597f2009-03-15 17:47:39 +0000217 return ExprError();
Anders Carlsson0aebc812009-09-09 21:33:21 +0000218
219 exprs.release();
220 if (Method) {
221 OwningExprResult CastArg
222 = BuildCXXCastArgument(TypeRange.getBegin(), Ty.getNonReferenceType(),
223 Kind, Method, Owned(Exprs[0]));
224 if (CastArg.isInvalid())
225 return ExprError();
226
227 Exprs[0] = CastArg.takeAs<Expr>();
Fariborz Jahanian4fc7ab32009-08-28 15:11:24 +0000228 }
Anders Carlsson0aebc812009-09-09 21:33:21 +0000229
230 return Owned(new (Context) CXXFunctionalCastExpr(Ty.getNonReferenceType(),
231 Ty, TyBeginLoc, Kind,
232 Exprs[0], RParenLoc));
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000233 }
234
Ted Kremenek6217b802009-07-29 21:53:49 +0000235 if (const RecordType *RT = Ty->getAs<RecordType>()) {
Douglas Gregor506ae412009-01-16 18:33:17 +0000236 CXXRecordDecl *Record = cast<CXXRecordDecl>(RT->getDecl());
Sebastian Redlf53597f2009-03-15 17:47:39 +0000237
Mike Stump1eb44332009-09-09 15:08:12 +0000238 if (NumExprs > 1 || !Record->hasTrivialConstructor() ||
Anders Carlssone7624a72009-08-27 05:08:22 +0000239 !Record->hasTrivialDestructor()) {
Douglas Gregor39da0b82009-09-09 23:08:42 +0000240 ASTOwningVector<&ActionBase::DeleteExpr> ConstructorArgs(*this);
241
Douglas Gregor506ae412009-01-16 18:33:17 +0000242 CXXConstructorDecl *Constructor
Douglas Gregor39da0b82009-09-09 23:08:42 +0000243 = PerformInitializationByConstructor(Ty, move(exprs),
Douglas Gregor506ae412009-01-16 18:33:17 +0000244 TypeRange.getBegin(),
245 SourceRange(TypeRange.getBegin(),
246 RParenLoc),
247 DeclarationName(),
Douglas Gregor20093b42009-12-09 23:02:17 +0000248 InitializationKind::CreateDirect(TypeRange.getBegin(),
249 LParenLoc,
250 RParenLoc),
Douglas Gregor39da0b82009-09-09 23:08:42 +0000251 ConstructorArgs);
Douglas Gregor506ae412009-01-16 18:33:17 +0000252
Sebastian Redlf53597f2009-03-15 17:47:39 +0000253 if (!Constructor)
254 return ExprError();
255
Mike Stump1eb44332009-09-09 15:08:12 +0000256 OwningExprResult Result =
257 BuildCXXTemporaryObjectExpr(Constructor, Ty, TyBeginLoc,
Douglas Gregor39da0b82009-09-09 23:08:42 +0000258 move_arg(ConstructorArgs), RParenLoc);
Anders Carlssone7624a72009-08-27 05:08:22 +0000259 if (Result.isInvalid())
260 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +0000261
Anders Carlssone7624a72009-08-27 05:08:22 +0000262 return MaybeBindToTemporary(Result.takeAs<Expr>());
Douglas Gregor506ae412009-01-16 18:33:17 +0000263 }
264
265 // Fall through to value-initialize an object of class type that
266 // doesn't have a user-declared default constructor.
267 }
268
269 // C++ [expr.type.conv]p1:
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000270 // If the expression list specifies more than a single value, the type shall
271 // be a class with a suitably declared constructor.
272 //
273 if (NumExprs > 1)
Sebastian Redlf53597f2009-03-15 17:47:39 +0000274 return ExprError(Diag(CommaLocs[0],
275 diag::err_builtin_func_cast_more_than_one_arg)
276 << FullRange);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000277
278 assert(NumExprs == 0 && "Expected 0 expressions");
Douglas Gregor506ae412009-01-16 18:33:17 +0000279 // C++ [expr.type.conv]p2:
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000280 // The expression T(), where T is a simple-type-specifier for a non-array
281 // complete object type or the (possibly cv-qualified) void type, creates an
282 // rvalue of the specified type, which is value-initialized.
283 //
Sebastian Redlf53597f2009-03-15 17:47:39 +0000284 exprs.release();
285 return Owned(new (Context) CXXZeroInitValueExpr(Ty, TyBeginLoc, RParenLoc));
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000286}
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000287
288
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000289/// ActOnCXXNew - Parsed a C++ 'new' expression (C++ 5.3.4), as in e.g.:
290/// @code new (memory) int[size][4] @endcode
291/// or
292/// @code ::new Foo(23, "hello") @endcode
293/// For the interpretation of this heap of arguments, consult the base version.
Sebastian Redlf53597f2009-03-15 17:47:39 +0000294Action::OwningExprResult
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000295Sema::ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal,
Sebastian Redlf53597f2009-03-15 17:47:39 +0000296 SourceLocation PlacementLParen, MultiExprArg PlacementArgs,
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000297 SourceLocation PlacementRParen, bool ParenTypeId,
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000298 Declarator &D, SourceLocation ConstructorLParen,
Sebastian Redlf53597f2009-03-15 17:47:39 +0000299 MultiExprArg ConstructorArgs,
Mike Stump1eb44332009-09-09 15:08:12 +0000300 SourceLocation ConstructorRParen) {
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000301 Expr *ArraySize = 0;
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000302 // If the specified type is an array, unwrap it and save the expression.
303 if (D.getNumTypeObjects() > 0 &&
304 D.getTypeObject(0).Kind == DeclaratorChunk::Array) {
305 DeclaratorChunk &Chunk = D.getTypeObject(0);
306 if (Chunk.Arr.hasStatic)
Sebastian Redlf53597f2009-03-15 17:47:39 +0000307 return ExprError(Diag(Chunk.Loc, diag::err_static_illegal_in_new)
308 << D.getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000309 if (!Chunk.Arr.NumElts)
Sebastian Redlf53597f2009-03-15 17:47:39 +0000310 return ExprError(Diag(Chunk.Loc, diag::err_array_new_needs_size)
311 << D.getSourceRange());
Sebastian Redl8ce35b02009-10-25 21:45:37 +0000312
313 if (ParenTypeId) {
314 // Can't have dynamic array size when the type-id is in parentheses.
315 Expr *NumElts = (Expr *)Chunk.Arr.NumElts;
316 if (!NumElts->isTypeDependent() && !NumElts->isValueDependent() &&
317 !NumElts->isIntegerConstantExpr(Context)) {
318 Diag(D.getTypeObject(0).Loc, diag::err_new_paren_array_nonconst)
319 << NumElts->getSourceRange();
320 return ExprError();
321 }
322 }
323
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000324 ArraySize = static_cast<Expr*>(Chunk.Arr.NumElts);
Sebastian Redl8ce35b02009-10-25 21:45:37 +0000325 D.DropFirstTypeObject();
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000326 }
327
Douglas Gregor043cad22009-09-11 00:18:58 +0000328 // Every dimension shall be of constant size.
Sebastian Redl8ce35b02009-10-25 21:45:37 +0000329 if (ArraySize) {
330 for (unsigned I = 0, N = D.getNumTypeObjects(); I < N; ++I) {
Douglas Gregor043cad22009-09-11 00:18:58 +0000331 if (D.getTypeObject(I).Kind != DeclaratorChunk::Array)
332 break;
333
334 DeclaratorChunk::ArrayTypeInfo &Array = D.getTypeObject(I).Arr;
335 if (Expr *NumElts = (Expr *)Array.NumElts) {
336 if (!NumElts->isTypeDependent() && !NumElts->isValueDependent() &&
337 !NumElts->isIntegerConstantExpr(Context)) {
338 Diag(D.getTypeObject(I).Loc, diag::err_new_array_nonconst)
339 << NumElts->getSourceRange();
340 return ExprError();
341 }
342 }
343 }
344 }
Sebastian Redl8ce35b02009-10-25 21:45:37 +0000345
John McCalla93c9342009-12-07 02:54:59 +0000346 //FIXME: Store TypeSourceInfo in CXXNew expression.
347 TypeSourceInfo *TInfo = 0;
348 QualType AllocType = GetTypeForDeclarator(D, /*Scope=*/0, &TInfo);
Chris Lattnereaaebc72009-04-25 08:06:05 +0000349 if (D.isInvalidType())
Sebastian Redlf53597f2009-03-15 17:47:39 +0000350 return ExprError();
Fariborz Jahanian498429f2009-11-19 18:39:40 +0000351
Mike Stump1eb44332009-09-09 15:08:12 +0000352 return BuildCXXNew(StartLoc, UseGlobal,
Douglas Gregor3433cf72009-05-21 00:00:09 +0000353 PlacementLParen,
Mike Stump1eb44332009-09-09 15:08:12 +0000354 move(PlacementArgs),
Douglas Gregor3433cf72009-05-21 00:00:09 +0000355 PlacementRParen,
356 ParenTypeId,
Mike Stump1eb44332009-09-09 15:08:12 +0000357 AllocType,
Douglas Gregor3433cf72009-05-21 00:00:09 +0000358 D.getSourceRange().getBegin(),
359 D.getSourceRange(),
360 Owned(ArraySize),
361 ConstructorLParen,
362 move(ConstructorArgs),
363 ConstructorRParen);
364}
365
Mike Stump1eb44332009-09-09 15:08:12 +0000366Sema::OwningExprResult
Douglas Gregor3433cf72009-05-21 00:00:09 +0000367Sema::BuildCXXNew(SourceLocation StartLoc, bool UseGlobal,
368 SourceLocation PlacementLParen,
369 MultiExprArg PlacementArgs,
370 SourceLocation PlacementRParen,
Mike Stump1eb44332009-09-09 15:08:12 +0000371 bool ParenTypeId,
Douglas Gregor3433cf72009-05-21 00:00:09 +0000372 QualType AllocType,
373 SourceLocation TypeLoc,
374 SourceRange TypeRange,
375 ExprArg ArraySizeE,
376 SourceLocation ConstructorLParen,
377 MultiExprArg ConstructorArgs,
378 SourceLocation ConstructorRParen) {
379 if (CheckAllocatedType(AllocType, TypeLoc, TypeRange))
Sebastian Redlf53597f2009-03-15 17:47:39 +0000380 return ExprError();
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000381
Douglas Gregor3433cf72009-05-21 00:00:09 +0000382 QualType ResultType = Context.getPointerType(AllocType);
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000383
384 // That every array dimension except the first is constant was already
385 // checked by the type check above.
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000386
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000387 // C++ 5.3.4p6: "The expression in a direct-new-declarator shall have integral
388 // or enumeration type with a non-negative value."
Douglas Gregor3433cf72009-05-21 00:00:09 +0000389 Expr *ArraySize = (Expr *)ArraySizeE.get();
Sebastian Redl28507842009-02-26 14:39:58 +0000390 if (ArraySize && !ArraySize->isTypeDependent()) {
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000391 QualType SizeType = ArraySize->getType();
392 if (!SizeType->isIntegralType() && !SizeType->isEnumeralType())
Sebastian Redlf53597f2009-03-15 17:47:39 +0000393 return ExprError(Diag(ArraySize->getSourceRange().getBegin(),
394 diag::err_array_size_not_integral)
395 << SizeType << ArraySize->getSourceRange());
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000396 // Let's see if this is a constant < 0. If so, we reject it out of hand.
397 // We don't care about special rules, so we tell the machinery it's not
398 // evaluated - it gives us a result in more cases.
Sebastian Redl28507842009-02-26 14:39:58 +0000399 if (!ArraySize->isValueDependent()) {
400 llvm::APSInt Value;
401 if (ArraySize->isIntegerConstantExpr(Value, Context, 0, false)) {
402 if (Value < llvm::APSInt(
Anders Carlssonac18b2e2009-09-23 00:37:25 +0000403 llvm::APInt::getNullValue(Value.getBitWidth()),
404 Value.isUnsigned()))
Sebastian Redlf53597f2009-03-15 17:47:39 +0000405 return ExprError(Diag(ArraySize->getSourceRange().getBegin(),
406 diag::err_typecheck_negative_array_size)
407 << ArraySize->getSourceRange());
Sebastian Redl28507842009-02-26 14:39:58 +0000408 }
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000409 }
Anders Carlssonac18b2e2009-09-23 00:37:25 +0000410
Eli Friedman73c39ab2009-10-20 08:27:19 +0000411 ImpCastExprToType(ArraySize, Context.getSizeType(),
412 CastExpr::CK_IntegralCast);
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000413 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000414
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000415 FunctionDecl *OperatorNew = 0;
416 FunctionDecl *OperatorDelete = 0;
Sebastian Redlf53597f2009-03-15 17:47:39 +0000417 Expr **PlaceArgs = (Expr**)PlacementArgs.get();
418 unsigned NumPlaceArgs = PlacementArgs.size();
Fariborz Jahanian498429f2009-11-19 18:39:40 +0000419
Sebastian Redl28507842009-02-26 14:39:58 +0000420 if (!AllocType->isDependentType() &&
421 !Expr::hasAnyTypeDependentArguments(PlaceArgs, NumPlaceArgs) &&
422 FindAllocationFunctions(StartLoc,
Sebastian Redl00e68e22009-02-09 18:24:27 +0000423 SourceRange(PlacementLParen, PlacementRParen),
424 UseGlobal, AllocType, ArraySize, PlaceArgs,
425 NumPlaceArgs, OperatorNew, OperatorDelete))
Sebastian Redlf53597f2009-03-15 17:47:39 +0000426 return ExprError();
Fariborz Jahanian048f52a2009-11-24 18:29:37 +0000427 llvm::SmallVector<Expr *, 8> AllPlaceArgs;
Fariborz Jahanian498429f2009-11-19 18:39:40 +0000428 if (OperatorNew) {
429 // Add default arguments, if any.
430 const FunctionProtoType *Proto =
431 OperatorNew->getType()->getAs<FunctionProtoType>();
Fariborz Jahanian4cd1c702009-11-24 19:27:49 +0000432 VariadicCallType CallType =
433 Proto->isVariadic() ? VariadicFunction : VariadicDoesNotApply;
Fariborz Jahanian048f52a2009-11-24 18:29:37 +0000434 bool Invalid = GatherArgumentsForCall(PlacementLParen, OperatorNew,
435 Proto, 1, PlaceArgs, NumPlaceArgs,
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +0000436 AllPlaceArgs, CallType);
Fariborz Jahanian048f52a2009-11-24 18:29:37 +0000437 if (Invalid)
438 return ExprError();
Fariborz Jahanian498429f2009-11-19 18:39:40 +0000439
Fariborz Jahanian498429f2009-11-19 18:39:40 +0000440 NumPlaceArgs = AllPlaceArgs.size();
441 if (NumPlaceArgs > 0)
442 PlaceArgs = &AllPlaceArgs[0];
443 }
444
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000445 bool Init = ConstructorLParen.isValid();
446 // --- Choosing a constructor ---
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000447 CXXConstructorDecl *Constructor = 0;
Sebastian Redlf53597f2009-03-15 17:47:39 +0000448 Expr **ConsArgs = (Expr**)ConstructorArgs.get();
449 unsigned NumConsArgs = ConstructorArgs.size();
Eli Friedmana8ce9ec2009-11-08 22:15:39 +0000450 ASTOwningVector<&ActionBase::DeleteExpr> ConvertedConstructorArgs(*this);
451
Douglas Gregor99a2e602009-12-16 01:38:02 +0000452 if (!AllocType->isDependentType() &&
453 !Expr::hasAnyTypeDependentArguments(ConsArgs, NumConsArgs)) {
454 // C++0x [expr.new]p15:
455 // A new-expression that creates an object of type T initializes that
456 // object as follows:
457 InitializationKind Kind
458 // - If the new-initializer is omitted, the object is default-
459 // initialized (8.5); if no initialization is performed,
460 // the object has indeterminate value
461 = !Init? InitializationKind::CreateDefault(TypeLoc)
462 // - Otherwise, the new-initializer is interpreted according to the
463 // initialization rules of 8.5 for direct-initialization.
464 : InitializationKind::CreateDirect(TypeLoc,
465 ConstructorLParen,
466 ConstructorRParen);
467
Douglas Gregor99a2e602009-12-16 01:38:02 +0000468 InitializedEntity Entity
Douglas Gregord6542d82009-12-22 15:35:07 +0000469 = InitializedEntity::InitializeNew(StartLoc, AllocType);
Douglas Gregor99a2e602009-12-16 01:38:02 +0000470 InitializationSequence InitSeq(*this, Entity, Kind, ConsArgs, NumConsArgs);
Douglas Gregor99a2e602009-12-16 01:38:02 +0000471 OwningExprResult FullInit = InitSeq.Perform(*this, Entity, Kind,
472 move(ConstructorArgs));
473 if (FullInit.isInvalid())
474 return ExprError();
475
476 // FullInit is our initializer; walk through it to determine if it's a
477 // constructor call, which CXXNewExpr handles directly.
478 if (Expr *FullInitExpr = (Expr *)FullInit.get()) {
479 if (CXXBindTemporaryExpr *Binder
480 = dyn_cast<CXXBindTemporaryExpr>(FullInitExpr))
481 FullInitExpr = Binder->getSubExpr();
482 if (CXXConstructExpr *Construct
483 = dyn_cast<CXXConstructExpr>(FullInitExpr)) {
484 Constructor = Construct->getConstructor();
485 for (CXXConstructExpr::arg_iterator A = Construct->arg_begin(),
486 AEnd = Construct->arg_end();
487 A != AEnd; ++A)
488 ConvertedConstructorArgs.push_back(A->Retain());
489 } else {
490 // Take the converted initializer.
491 ConvertedConstructorArgs.push_back(FullInit.release());
492 }
493 } else {
494 // No initialization required.
495 }
496
497 // Take the converted arguments and use them for the new expression.
Douglas Gregor39da0b82009-09-09 23:08:42 +0000498 NumConsArgs = ConvertedConstructorArgs.size();
499 ConsArgs = (Expr **)ConvertedConstructorArgs.take();
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000500 }
Douglas Gregor99a2e602009-12-16 01:38:02 +0000501
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000502 // FIXME: Also check that the destructor is accessible. (C++ 5.3.4p16)
Douglas Gregor089407b2009-10-17 21:40:42 +0000503
Sebastian Redlf53597f2009-03-15 17:47:39 +0000504 PlacementArgs.release();
505 ConstructorArgs.release();
Douglas Gregor3433cf72009-05-21 00:00:09 +0000506 ArraySizeE.release();
Sebastian Redlf53597f2009-03-15 17:47:39 +0000507 return Owned(new (Context) CXXNewExpr(UseGlobal, OperatorNew, PlaceArgs,
Ted Kremenek8189cde2009-02-07 01:47:29 +0000508 NumPlaceArgs, ParenTypeId, ArraySize, Constructor, Init,
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000509 ConsArgs, NumConsArgs, OperatorDelete, ResultType,
Mike Stump1eb44332009-09-09 15:08:12 +0000510 StartLoc, Init ? ConstructorRParen : SourceLocation()));
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000511}
512
513/// CheckAllocatedType - Checks that a type is suitable as the allocated type
514/// in a new-expression.
515/// dimension off and stores the size expression in ArraySize.
Douglas Gregor3433cf72009-05-21 00:00:09 +0000516bool Sema::CheckAllocatedType(QualType AllocType, SourceLocation Loc,
Mike Stump1eb44332009-09-09 15:08:12 +0000517 SourceRange R) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000518 // C++ 5.3.4p1: "[The] type shall be a complete object type, but not an
519 // abstract class type or array thereof.
Douglas Gregore7450f52009-03-24 19:52:54 +0000520 if (AllocType->isFunctionType())
Douglas Gregor3433cf72009-05-21 00:00:09 +0000521 return Diag(Loc, diag::err_bad_new_type)
522 << AllocType << 0 << R;
Douglas Gregore7450f52009-03-24 19:52:54 +0000523 else if (AllocType->isReferenceType())
Douglas Gregor3433cf72009-05-21 00:00:09 +0000524 return Diag(Loc, diag::err_bad_new_type)
525 << AllocType << 1 << R;
Douglas Gregore7450f52009-03-24 19:52:54 +0000526 else if (!AllocType->isDependentType() &&
Douglas Gregor3433cf72009-05-21 00:00:09 +0000527 RequireCompleteType(Loc, AllocType,
Anders Carlssonb7906612009-08-26 23:45:07 +0000528 PDiag(diag::err_new_incomplete_type)
529 << R))
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000530 return true;
Douglas Gregor3433cf72009-05-21 00:00:09 +0000531 else if (RequireNonAbstractType(Loc, AllocType,
Douglas Gregore7450f52009-03-24 19:52:54 +0000532 diag::err_allocation_of_abstract_type))
533 return true;
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000534
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000535 return false;
536}
537
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000538/// FindAllocationFunctions - Finds the overloads of operator new and delete
539/// that are appropriate for the allocation.
Sebastian Redl00e68e22009-02-09 18:24:27 +0000540bool Sema::FindAllocationFunctions(SourceLocation StartLoc, SourceRange Range,
541 bool UseGlobal, QualType AllocType,
542 bool IsArray, Expr **PlaceArgs,
543 unsigned NumPlaceArgs,
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000544 FunctionDecl *&OperatorNew,
Mike Stump1eb44332009-09-09 15:08:12 +0000545 FunctionDecl *&OperatorDelete) {
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000546 // --- Choosing an allocation function ---
547 // C++ 5.3.4p8 - 14 & 18
548 // 1) If UseGlobal is true, only look in the global scope. Else, also look
549 // in the scope of the allocated class.
550 // 2) If an array size is given, look for operator new[], else look for
551 // operator new.
552 // 3) The first argument is always size_t. Append the arguments from the
553 // placement form.
554 // FIXME: Also find the appropriate delete operator.
555
556 llvm::SmallVector<Expr*, 8> AllocArgs(1 + NumPlaceArgs);
557 // We don't care about the actual value of this argument.
558 // FIXME: Should the Sema create the expression and embed it in the syntax
559 // tree? Or should the consumer just recalculate the value?
Anders Carlssond67c4c32009-08-16 20:29:29 +0000560 IntegerLiteral Size(llvm::APInt::getNullValue(
561 Context.Target.getPointerWidth(0)),
562 Context.getSizeType(),
563 SourceLocation());
564 AllocArgs[0] = &Size;
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000565 std::copy(PlaceArgs, PlaceArgs + NumPlaceArgs, AllocArgs.begin() + 1);
566
567 DeclarationName NewName = Context.DeclarationNames.getCXXOperatorName(
568 IsArray ? OO_Array_New : OO_New);
569 if (AllocType->isRecordType() && !UseGlobal) {
Mike Stump1eb44332009-09-09 15:08:12 +0000570 CXXRecordDecl *Record
Ted Kremenek6217b802009-07-29 21:53:49 +0000571 = cast<CXXRecordDecl>(AllocType->getAs<RecordType>()->getDecl());
Sebastian Redl7f662392008-12-04 22:20:51 +0000572 // FIXME: We fail to find inherited overloads.
Sebastian Redl00e68e22009-02-09 18:24:27 +0000573 if (FindAllocationOverload(StartLoc, Range, NewName, &AllocArgs[0],
Sebastian Redl7f662392008-12-04 22:20:51 +0000574 AllocArgs.size(), Record, /*AllowMissing=*/true,
575 OperatorNew))
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000576 return true;
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000577 }
578 if (!OperatorNew) {
579 // Didn't find a member overload. Look for a global one.
580 DeclareGlobalNewDelete();
Sebastian Redl7f662392008-12-04 22:20:51 +0000581 DeclContext *TUDecl = Context.getTranslationUnitDecl();
Sebastian Redl00e68e22009-02-09 18:24:27 +0000582 if (FindAllocationOverload(StartLoc, Range, NewName, &AllocArgs[0],
Sebastian Redl7f662392008-12-04 22:20:51 +0000583 AllocArgs.size(), TUDecl, /*AllowMissing=*/false,
584 OperatorNew))
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000585 return true;
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000586 }
587
Anders Carlssond9583892009-05-31 20:26:12 +0000588 // FindAllocationOverload can change the passed in arguments, so we need to
589 // copy them back.
590 if (NumPlaceArgs > 0)
591 std::copy(&AllocArgs[1], AllocArgs.end(), PlaceArgs);
Mike Stump1eb44332009-09-09 15:08:12 +0000592
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000593 return false;
594}
595
Sebastian Redl7f662392008-12-04 22:20:51 +0000596/// FindAllocationOverload - Find an fitting overload for the allocation
597/// function in the specified scope.
Sebastian Redl00e68e22009-02-09 18:24:27 +0000598bool Sema::FindAllocationOverload(SourceLocation StartLoc, SourceRange Range,
599 DeclarationName Name, Expr** Args,
600 unsigned NumArgs, DeclContext *Ctx,
Mike Stump1eb44332009-09-09 15:08:12 +0000601 bool AllowMissing, FunctionDecl *&Operator) {
John McCalla24dc2e2009-11-17 02:14:36 +0000602 LookupResult R(*this, Name, StartLoc, LookupOrdinaryName);
603 LookupQualifiedName(R, Ctx);
John McCallf36e02d2009-10-09 21:13:30 +0000604 if (R.empty()) {
Sebastian Redl7f662392008-12-04 22:20:51 +0000605 if (AllowMissing)
606 return false;
Sebastian Redl7f662392008-12-04 22:20:51 +0000607 return Diag(StartLoc, diag::err_ovl_no_viable_function_in_call)
Chris Lattner4330d652009-02-17 07:29:20 +0000608 << Name << Range;
Sebastian Redl7f662392008-12-04 22:20:51 +0000609 }
610
John McCallf36e02d2009-10-09 21:13:30 +0000611 // FIXME: handle ambiguity
612
Sebastian Redl7f662392008-12-04 22:20:51 +0000613 OverloadCandidateSet Candidates;
Douglas Gregor5d64e5b2009-09-30 00:03:47 +0000614 for (LookupResult::iterator Alloc = R.begin(), AllocEnd = R.end();
615 Alloc != AllocEnd; ++Alloc) {
Douglas Gregor3fc749d2008-12-23 00:26:44 +0000616 // Even member operator new/delete are implicitly treated as
617 // static, so don't use AddMemberCandidate.
Anders Carlssoneac81392009-12-09 07:39:44 +0000618 if (FunctionDecl *Fn =
619 dyn_cast<FunctionDecl>((*Alloc)->getUnderlyingDecl())) {
Douglas Gregor3fc749d2008-12-23 00:26:44 +0000620 AddOverloadCandidate(Fn, Args, NumArgs, Candidates,
621 /*SuppressUserConversions=*/false);
Douglas Gregor90916562009-09-29 18:16:17 +0000622 continue;
623 }
624
625 // FIXME: Handle function templates
Sebastian Redl7f662392008-12-04 22:20:51 +0000626 }
627
628 // Do the resolution.
629 OverloadCandidateSet::iterator Best;
Douglas Gregore0762c92009-06-19 23:52:42 +0000630 switch(BestViableFunction(Candidates, StartLoc, Best)) {
Sebastian Redl7f662392008-12-04 22:20:51 +0000631 case OR_Success: {
632 // Got one!
633 FunctionDecl *FnDecl = Best->Function;
634 // The first argument is size_t, and the first parameter must be size_t,
635 // too. This is checked on declaration and can be assumed. (It can't be
636 // asserted on, though, since invalid decls are left in there.)
Fariborz Jahanian048f52a2009-11-24 18:29:37 +0000637 // Whatch out for variadic allocator function.
638 unsigned NumArgsInFnDecl = FnDecl->getNumParams();
639 for (unsigned i = 0; (i < NumArgs && i < NumArgsInFnDecl); ++i) {
Anders Carlssonfc27d262009-05-31 19:49:47 +0000640 if (PerformCopyInitialization(Args[i],
Sebastian Redl7f662392008-12-04 22:20:51 +0000641 FnDecl->getParamDecl(i)->getType(),
Douglas Gregor68647482009-12-16 03:45:30 +0000642 AA_Passing))
Sebastian Redl7f662392008-12-04 22:20:51 +0000643 return true;
644 }
645 Operator = FnDecl;
646 return false;
647 }
648
649 case OR_No_Viable_Function:
Sebastian Redl7f662392008-12-04 22:20:51 +0000650 Diag(StartLoc, diag::err_ovl_no_viable_function_in_call)
Chris Lattner4330d652009-02-17 07:29:20 +0000651 << Name << Range;
Sebastian Redl7f662392008-12-04 22:20:51 +0000652 PrintOverloadCandidates(Candidates, /*OnlyViable=*/false);
653 return true;
654
655 case OR_Ambiguous:
Sebastian Redl7f662392008-12-04 22:20:51 +0000656 Diag(StartLoc, diag::err_ovl_ambiguous_call)
Sebastian Redl00e68e22009-02-09 18:24:27 +0000657 << Name << Range;
Sebastian Redl7f662392008-12-04 22:20:51 +0000658 PrintOverloadCandidates(Candidates, /*OnlyViable=*/true);
659 return true;
Douglas Gregor48f3bb92009-02-18 21:56:37 +0000660
661 case OR_Deleted:
662 Diag(StartLoc, diag::err_ovl_deleted_call)
663 << Best->Function->isDeleted()
664 << Name << Range;
665 PrintOverloadCandidates(Candidates, /*OnlyViable=*/true);
666 return true;
Sebastian Redl7f662392008-12-04 22:20:51 +0000667 }
668 assert(false && "Unreachable, bad result from BestViableFunction");
669 return true;
670}
671
672
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000673/// DeclareGlobalNewDelete - Declare the global forms of operator new and
674/// delete. These are:
675/// @code
676/// void* operator new(std::size_t) throw(std::bad_alloc);
677/// void* operator new[](std::size_t) throw(std::bad_alloc);
678/// void operator delete(void *) throw();
679/// void operator delete[](void *) throw();
680/// @endcode
681/// Note that the placement and nothrow forms of new are *not* implicitly
682/// declared. Their use requires including \<new\>.
Mike Stump1eb44332009-09-09 15:08:12 +0000683void Sema::DeclareGlobalNewDelete() {
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000684 if (GlobalNewDeleteDeclared)
685 return;
Douglas Gregor7adb10f2009-09-15 22:30:29 +0000686
687 // C++ [basic.std.dynamic]p2:
688 // [...] The following allocation and deallocation functions (18.4) are
689 // implicitly declared in global scope in each translation unit of a
690 // program
691 //
692 // void* operator new(std::size_t) throw(std::bad_alloc);
693 // void* operator new[](std::size_t) throw(std::bad_alloc);
694 // void operator delete(void*) throw();
695 // void operator delete[](void*) throw();
696 //
697 // These implicit declarations introduce only the function names operator
698 // new, operator new[], operator delete, operator delete[].
699 //
700 // Here, we need to refer to std::bad_alloc, so we will implicitly declare
701 // "std" or "bad_alloc" as necessary to form the exception specification.
702 // However, we do not make these implicit declarations visible to name
703 // lookup.
704 if (!StdNamespace) {
705 // The "std" namespace has not yet been defined, so build one implicitly.
706 StdNamespace = NamespaceDecl::Create(Context,
707 Context.getTranslationUnitDecl(),
708 SourceLocation(),
709 &PP.getIdentifierTable().get("std"));
710 StdNamespace->setImplicit(true);
711 }
712
713 if (!StdBadAlloc) {
714 // The "std::bad_alloc" class has not yet been declared, so build it
715 // implicitly.
716 StdBadAlloc = CXXRecordDecl::Create(Context, TagDecl::TK_class,
717 StdNamespace,
718 SourceLocation(),
719 &PP.getIdentifierTable().get("bad_alloc"),
720 SourceLocation(), 0);
721 StdBadAlloc->setImplicit(true);
722 }
723
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000724 GlobalNewDeleteDeclared = true;
725
726 QualType VoidPtr = Context.getPointerType(Context.VoidTy);
727 QualType SizeT = Context.getSizeType();
Nuno Lopesfc284482009-12-16 16:59:22 +0000728 bool AssumeSaneOperatorNew = getLangOptions().AssumeSaneOperatorNew;
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000729
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000730 DeclareGlobalAllocationFunction(
731 Context.DeclarationNames.getCXXOperatorName(OO_New),
Nuno Lopesfc284482009-12-16 16:59:22 +0000732 VoidPtr, SizeT, AssumeSaneOperatorNew);
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000733 DeclareGlobalAllocationFunction(
734 Context.DeclarationNames.getCXXOperatorName(OO_Array_New),
Nuno Lopesfc284482009-12-16 16:59:22 +0000735 VoidPtr, SizeT, AssumeSaneOperatorNew);
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000736 DeclareGlobalAllocationFunction(
737 Context.DeclarationNames.getCXXOperatorName(OO_Delete),
738 Context.VoidTy, VoidPtr);
739 DeclareGlobalAllocationFunction(
740 Context.DeclarationNames.getCXXOperatorName(OO_Array_Delete),
741 Context.VoidTy, VoidPtr);
742}
743
744/// DeclareGlobalAllocationFunction - Declares a single implicit global
745/// allocation function if it doesn't already exist.
746void Sema::DeclareGlobalAllocationFunction(DeclarationName Name,
Nuno Lopesfc284482009-12-16 16:59:22 +0000747 QualType Return, QualType Argument,
748 bool AddMallocAttr) {
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000749 DeclContext *GlobalCtx = Context.getTranslationUnitDecl();
750
751 // Check if this function is already declared.
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000752 {
Douglas Gregor5cc37092008-12-23 22:05:29 +0000753 DeclContext::lookup_iterator Alloc, AllocEnd;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000754 for (llvm::tie(Alloc, AllocEnd) = GlobalCtx->lookup(Name);
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000755 Alloc != AllocEnd; ++Alloc) {
756 // FIXME: Do we need to check for default arguments here?
757 FunctionDecl *Func = cast<FunctionDecl>(*Alloc);
758 if (Func->getNumParams() == 1 &&
Douglas Gregor6e790ab2009-12-22 23:42:49 +0000759 Context.getCanonicalType(
760 Func->getParamDecl(0)->getType().getUnqualifiedType()) == Argument)
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000761 return;
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000762 }
763 }
764
Douglas Gregor7adb10f2009-09-15 22:30:29 +0000765 QualType BadAllocType;
766 bool HasBadAllocExceptionSpec
767 = (Name.getCXXOverloadedOperator() == OO_New ||
768 Name.getCXXOverloadedOperator() == OO_Array_New);
769 if (HasBadAllocExceptionSpec) {
770 assert(StdBadAlloc && "Must have std::bad_alloc declared");
771 BadAllocType = Context.getTypeDeclType(StdBadAlloc);
772 }
773
774 QualType FnType = Context.getFunctionType(Return, &Argument, 1, false, 0,
775 true, false,
776 HasBadAllocExceptionSpec? 1 : 0,
777 &BadAllocType);
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000778 FunctionDecl *Alloc =
779 FunctionDecl::Create(Context, GlobalCtx, SourceLocation(), Name,
John McCalla93c9342009-12-07 02:54:59 +0000780 FnType, /*TInfo=*/0, FunctionDecl::None, false, true);
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000781 Alloc->setImplicit();
Nuno Lopesfc284482009-12-16 16:59:22 +0000782
783 if (AddMallocAttr)
784 Alloc->addAttr(::new (Context) MallocAttr());
785
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000786 ParmVarDecl *Param = ParmVarDecl::Create(Context, Alloc, SourceLocation(),
John McCalla93c9342009-12-07 02:54:59 +0000787 0, Argument, /*TInfo=*/0,
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +0000788 VarDecl::None, 0);
Ted Kremenekfc767612009-01-14 00:42:25 +0000789 Alloc->setParams(Context, &Param, 1);
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000790
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000791 // FIXME: Also add this declaration to the IdentifierResolver, but
792 // make sure it is at the end of the chain to coincide with the
793 // global scope.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000794 ((DeclContext *)TUScope->getEntity())->addDecl(Alloc);
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000795}
796
Anders Carlsson78f74552009-11-15 18:45:20 +0000797bool Sema::FindDeallocationFunction(SourceLocation StartLoc, CXXRecordDecl *RD,
798 DeclarationName Name,
Anders Carlsson5ec02ae2009-12-02 17:15:43 +0000799 FunctionDecl* &Operator) {
John McCalla24dc2e2009-11-17 02:14:36 +0000800 LookupResult Found(*this, Name, StartLoc, LookupOrdinaryName);
Anders Carlsson78f74552009-11-15 18:45:20 +0000801 // Try to find operator delete/operator delete[] in class scope.
John McCalla24dc2e2009-11-17 02:14:36 +0000802 LookupQualifiedName(Found, RD);
Anders Carlsson78f74552009-11-15 18:45:20 +0000803
John McCalla24dc2e2009-11-17 02:14:36 +0000804 if (Found.isAmbiguous())
Anders Carlsson78f74552009-11-15 18:45:20 +0000805 return true;
Anders Carlsson78f74552009-11-15 18:45:20 +0000806
807 for (LookupResult::iterator F = Found.begin(), FEnd = Found.end();
808 F != FEnd; ++F) {
809 if (CXXMethodDecl *Delete = dyn_cast<CXXMethodDecl>(*F))
810 if (Delete->isUsualDeallocationFunction()) {
811 Operator = Delete;
812 return false;
813 }
814 }
815
816 // We did find operator delete/operator delete[] declarations, but
817 // none of them were suitable.
818 if (!Found.empty()) {
819 Diag(StartLoc, diag::err_no_suitable_delete_member_function_found)
820 << Name << RD;
821
822 for (LookupResult::iterator F = Found.begin(), FEnd = Found.end();
823 F != FEnd; ++F) {
824 Diag((*F)->getLocation(),
825 diag::note_delete_member_function_declared_here)
826 << Name;
827 }
828
829 return true;
830 }
831
832 // Look for a global declaration.
833 DeclareGlobalNewDelete();
834 DeclContext *TUDecl = Context.getTranslationUnitDecl();
835
836 CXXNullPtrLiteralExpr Null(Context.VoidPtrTy, SourceLocation());
837 Expr* DeallocArgs[1];
838 DeallocArgs[0] = &Null;
839 if (FindAllocationOverload(StartLoc, SourceRange(), Name,
840 DeallocArgs, 1, TUDecl, /*AllowMissing=*/false,
841 Operator))
842 return true;
843
844 assert(Operator && "Did not find a deallocation function!");
845 return false;
846}
847
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000848/// ActOnCXXDelete - Parsed a C++ 'delete' expression (C++ 5.3.5), as in:
849/// @code ::delete ptr; @endcode
850/// or
851/// @code delete [] ptr; @endcode
Sebastian Redlf53597f2009-03-15 17:47:39 +0000852Action::OwningExprResult
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000853Sema::ActOnCXXDelete(SourceLocation StartLoc, bool UseGlobal,
Mike Stump1eb44332009-09-09 15:08:12 +0000854 bool ArrayForm, ExprArg Operand) {
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +0000855 // C++ [expr.delete]p1:
856 // The operand shall have a pointer type, or a class type having a single
857 // conversion function to a pointer type. The result has type void.
858 //
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000859 // DR599 amends "pointer type" to "pointer to object type" in both cases.
860
Anders Carlssond67c4c32009-08-16 20:29:29 +0000861 FunctionDecl *OperatorDelete = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000862
Sebastian Redlf53597f2009-03-15 17:47:39 +0000863 Expr *Ex = (Expr *)Operand.get();
Sebastian Redl28507842009-02-26 14:39:58 +0000864 if (!Ex->isTypeDependent()) {
865 QualType Type = Ex->getType();
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000866
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +0000867 if (const RecordType *Record = Type->getAs<RecordType>()) {
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +0000868 llvm::SmallVector<CXXConversionDecl *, 4> ObjectPtrConversions;
Fariborz Jahanian53462782009-09-11 21:44:33 +0000869 CXXRecordDecl *RD = cast<CXXRecordDecl>(Record->getDecl());
John McCallba135432009-11-21 08:51:07 +0000870 const UnresolvedSet *Conversions = RD->getVisibleConversionFunctions();
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +0000871
John McCallba135432009-11-21 08:51:07 +0000872 for (UnresolvedSet::iterator I = Conversions->begin(),
873 E = Conversions->end(); I != E; ++I) {
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +0000874 // Skip over templated conversion functions; they aren't considered.
John McCallba135432009-11-21 08:51:07 +0000875 if (isa<FunctionTemplateDecl>(*I))
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +0000876 continue;
877
John McCallba135432009-11-21 08:51:07 +0000878 CXXConversionDecl *Conv = cast<CXXConversionDecl>(*I);
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +0000879
880 QualType ConvType = Conv->getConversionType().getNonReferenceType();
881 if (const PointerType *ConvPtrType = ConvType->getAs<PointerType>())
882 if (ConvPtrType->getPointeeType()->isObjectType())
Fariborz Jahanian8b915e72009-09-15 22:15:23 +0000883 ObjectPtrConversions.push_back(Conv);
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +0000884 }
Fariborz Jahanian8b915e72009-09-15 22:15:23 +0000885 if (ObjectPtrConversions.size() == 1) {
886 // We have a single conversion to a pointer-to-object type. Perform
887 // that conversion.
888 Operand.release();
889 if (!PerformImplicitConversion(Ex,
890 ObjectPtrConversions.front()->getConversionType(),
Douglas Gregor68647482009-12-16 03:45:30 +0000891 AA_Converting)) {
Fariborz Jahanian8b915e72009-09-15 22:15:23 +0000892 Operand = Owned(Ex);
893 Type = Ex->getType();
894 }
895 }
896 else if (ObjectPtrConversions.size() > 1) {
897 Diag(StartLoc, diag::err_ambiguous_delete_operand)
898 << Type << Ex->getSourceRange();
899 for (unsigned i= 0; i < ObjectPtrConversions.size(); i++) {
900 CXXConversionDecl *Conv = ObjectPtrConversions[i];
901 Diag(Conv->getLocation(), diag::err_ovl_candidate);
902 }
903 return ExprError();
Douglas Gregor9cd9f3f2009-09-09 23:39:55 +0000904 }
Sebastian Redl28507842009-02-26 14:39:58 +0000905 }
906
Sebastian Redlf53597f2009-03-15 17:47:39 +0000907 if (!Type->isPointerType())
908 return ExprError(Diag(StartLoc, diag::err_delete_operand)
909 << Type << Ex->getSourceRange());
Sebastian Redl28507842009-02-26 14:39:58 +0000910
Ted Kremenek6217b802009-07-29 21:53:49 +0000911 QualType Pointee = Type->getAs<PointerType>()->getPointeeType();
Douglas Gregor8dcb29d2009-03-24 20:13:58 +0000912 if (Pointee->isFunctionType() || Pointee->isVoidType())
Sebastian Redlf53597f2009-03-15 17:47:39 +0000913 return ExprError(Diag(StartLoc, diag::err_delete_operand)
914 << Type << Ex->getSourceRange());
Douglas Gregor8dcb29d2009-03-24 20:13:58 +0000915 else if (!Pointee->isDependentType() &&
Mike Stump1eb44332009-09-09 15:08:12 +0000916 RequireCompleteType(StartLoc, Pointee,
Anders Carlssonb7906612009-08-26 23:45:07 +0000917 PDiag(diag::warn_delete_incomplete)
918 << Ex->getSourceRange()))
Douglas Gregor8dcb29d2009-03-24 20:13:58 +0000919 return ExprError();
Sebastian Redl28507842009-02-26 14:39:58 +0000920
Douglas Gregor1070c9f2009-09-29 21:38:53 +0000921 // C++ [expr.delete]p2:
922 // [Note: a pointer to a const type can be the operand of a
923 // delete-expression; it is not necessary to cast away the constness
924 // (5.2.11) of the pointer expression before it is used as the operand
925 // of the delete-expression. ]
926 ImpCastExprToType(Ex, Context.getPointerType(Context.VoidTy),
927 CastExpr::CK_NoOp);
928
929 // Update the operand.
930 Operand.take();
931 Operand = ExprArg(*this, Ex);
932
Anders Carlssond67c4c32009-08-16 20:29:29 +0000933 DeclarationName DeleteName = Context.DeclarationNames.getCXXOperatorName(
934 ArrayForm ? OO_Array_Delete : OO_Delete);
935
Anders Carlsson78f74552009-11-15 18:45:20 +0000936 if (const RecordType *RT = Pointee->getAs<RecordType>()) {
937 CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
938
939 if (!UseGlobal &&
940 FindDeallocationFunction(StartLoc, RD, DeleteName, OperatorDelete))
Anders Carlsson0ba63ea2009-11-14 03:17:38 +0000941 return ExprError();
Anders Carlsson0ba63ea2009-11-14 03:17:38 +0000942
Anders Carlsson78f74552009-11-15 18:45:20 +0000943 if (!RD->hasTrivialDestructor())
944 if (const CXXDestructorDecl *Dtor = RD->getDestructor(Context))
Mike Stump1eb44332009-09-09 15:08:12 +0000945 MarkDeclarationReferenced(StartLoc,
Fariborz Jahanian34374e62009-09-03 23:18:17 +0000946 const_cast<CXXDestructorDecl*>(Dtor));
Anders Carlssond67c4c32009-08-16 20:29:29 +0000947 }
Anders Carlsson78f74552009-11-15 18:45:20 +0000948
Anders Carlssond67c4c32009-08-16 20:29:29 +0000949 if (!OperatorDelete) {
Anders Carlsson78f74552009-11-15 18:45:20 +0000950 // Look for a global declaration.
Anders Carlssond67c4c32009-08-16 20:29:29 +0000951 DeclareGlobalNewDelete();
952 DeclContext *TUDecl = Context.getTranslationUnitDecl();
Mike Stump1eb44332009-09-09 15:08:12 +0000953 if (FindAllocationOverload(StartLoc, SourceRange(), DeleteName,
Douglas Gregor90916562009-09-29 18:16:17 +0000954 &Ex, 1, TUDecl, /*AllowMissing=*/false,
Anders Carlssond67c4c32009-08-16 20:29:29 +0000955 OperatorDelete))
956 return ExprError();
957 }
Mike Stump1eb44332009-09-09 15:08:12 +0000958
Sebastian Redl28507842009-02-26 14:39:58 +0000959 // FIXME: Check access and ambiguity of operator delete and destructor.
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000960 }
961
Sebastian Redlf53597f2009-03-15 17:47:39 +0000962 Operand.release();
963 return Owned(new (Context) CXXDeleteExpr(Context.VoidTy, UseGlobal, ArrayForm,
Anders Carlssond67c4c32009-08-16 20:29:29 +0000964 OperatorDelete, Ex, StartLoc));
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000965}
966
Douglas Gregor8cfe5a72009-11-23 23:44:04 +0000967/// \brief Check the use of the given variable as a C++ condition in an if,
968/// while, do-while, or switch statement.
969Action::OwningExprResult Sema::CheckConditionVariable(VarDecl *ConditionVar) {
970 QualType T = ConditionVar->getType();
971
972 // C++ [stmt.select]p2:
973 // The declarator shall not specify a function or an array.
974 if (T->isFunctionType())
975 return ExprError(Diag(ConditionVar->getLocation(),
976 diag::err_invalid_use_of_function_type)
977 << ConditionVar->getSourceRange());
978 else if (T->isArrayType())
979 return ExprError(Diag(ConditionVar->getLocation(),
980 diag::err_invalid_use_of_array_type)
981 << ConditionVar->getSourceRange());
Douglas Gregora7605db2009-11-24 16:07:02 +0000982
Douglas Gregor8cfe5a72009-11-23 23:44:04 +0000983 return Owned(DeclRefExpr::Create(Context, 0, SourceRange(), ConditionVar,
984 ConditionVar->getLocation(),
985 ConditionVar->getType().getNonReferenceType()));
986}
987
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000988/// CheckCXXBooleanCondition - Returns true if a conversion to bool is invalid.
989bool Sema::CheckCXXBooleanCondition(Expr *&CondExpr) {
990 // C++ 6.4p4:
991 // The value of a condition that is an initialized declaration in a statement
992 // other than a switch statement is the value of the declared variable
993 // implicitly converted to type bool. If that conversion is ill-formed, the
994 // program is ill-formed.
995 // The value of a condition that is an expression is the value of the
996 // expression, implicitly converted to bool.
997 //
Douglas Gregor09f41cf2009-01-14 15:45:31 +0000998 return PerformContextuallyConvertToBool(CondExpr);
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000999}
Douglas Gregor77a52232008-09-12 00:47:35 +00001000
1001/// Helper function to determine whether this is the (deprecated) C++
1002/// conversion from a string literal to a pointer to non-const char or
1003/// non-const wchar_t (for narrow and wide string literals,
1004/// respectively).
Mike Stump1eb44332009-09-09 15:08:12 +00001005bool
Douglas Gregor77a52232008-09-12 00:47:35 +00001006Sema::IsStringLiteralToNonConstPointerConversion(Expr *From, QualType ToType) {
1007 // Look inside the implicit cast, if it exists.
1008 if (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(From))
1009 From = Cast->getSubExpr();
1010
1011 // A string literal (2.13.4) that is not a wide string literal can
1012 // be converted to an rvalue of type "pointer to char"; a wide
1013 // string literal can be converted to an rvalue of type "pointer
1014 // to wchar_t" (C++ 4.2p2).
1015 if (StringLiteral *StrLit = dyn_cast<StringLiteral>(From))
Ted Kremenek6217b802009-07-29 21:53:49 +00001016 if (const PointerType *ToPtrType = ToType->getAs<PointerType>())
Mike Stump1eb44332009-09-09 15:08:12 +00001017 if (const BuiltinType *ToPointeeType
John McCall183700f2009-09-21 23:43:11 +00001018 = ToPtrType->getPointeeType()->getAs<BuiltinType>()) {
Douglas Gregor77a52232008-09-12 00:47:35 +00001019 // This conversion is considered only when there is an
1020 // explicit appropriate pointer target type (C++ 4.2p2).
John McCall0953e762009-09-24 19:53:00 +00001021 if (!ToPtrType->getPointeeType().hasQualifiers() &&
Douglas Gregor77a52232008-09-12 00:47:35 +00001022 ((StrLit->isWide() && ToPointeeType->isWideCharType()) ||
1023 (!StrLit->isWide() &&
1024 (ToPointeeType->getKind() == BuiltinType::Char_U ||
1025 ToPointeeType->getKind() == BuiltinType::Char_S))))
1026 return true;
1027 }
1028
1029 return false;
1030}
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001031
1032/// PerformImplicitConversion - Perform an implicit conversion of the
1033/// expression From to the type ToType. Returns true if there was an
1034/// error, false otherwise. The expression From is replaced with the
Douglas Gregor45920e82008-12-19 17:40:08 +00001035/// converted expression. Flavor is the kind of conversion we're
Douglas Gregor09f41cf2009-01-14 15:45:31 +00001036/// performing, used in the error message. If @p AllowExplicit,
Sebastian Redle2b68332009-04-12 17:16:29 +00001037/// explicit user-defined conversions are permitted. @p Elidable should be true
1038/// when called for copies which may be elided (C++ 12.8p15). C++0x overload
1039/// resolution works differently in that case.
1040bool
Douglas Gregor45920e82008-12-19 17:40:08 +00001041Sema::PerformImplicitConversion(Expr *&From, QualType ToType,
Douglas Gregor68647482009-12-16 03:45:30 +00001042 AssignmentAction Action, bool AllowExplicit,
Mike Stump1eb44332009-09-09 15:08:12 +00001043 bool Elidable) {
Sebastian Redle2b68332009-04-12 17:16:29 +00001044 ImplicitConversionSequence ICS;
Douglas Gregor68647482009-12-16 03:45:30 +00001045 return PerformImplicitConversion(From, ToType, Action, AllowExplicit,
Fariborz Jahanian51bebc82009-09-23 20:55:32 +00001046 Elidable, ICS);
1047}
1048
1049bool
1050Sema::PerformImplicitConversion(Expr *&From, QualType ToType,
Douglas Gregor68647482009-12-16 03:45:30 +00001051 AssignmentAction Action, bool AllowExplicit,
Fariborz Jahanian51bebc82009-09-23 20:55:32 +00001052 bool Elidable,
1053 ImplicitConversionSequence& ICS) {
Sebastian Redle2b68332009-04-12 17:16:29 +00001054 ICS.ConversionKind = ImplicitConversionSequence::BadConversion;
1055 if (Elidable && getLangOptions().CPlusPlus0x) {
Mike Stump1eb44332009-09-09 15:08:12 +00001056 ICS = TryImplicitConversion(From, ToType,
Anders Carlssonda7a18b2009-08-27 17:24:15 +00001057 /*SuppressUserConversions=*/false,
Mike Stump1eb44332009-09-09 15:08:12 +00001058 AllowExplicit,
Anders Carlsson08972922009-08-28 15:33:32 +00001059 /*ForceRValue=*/true,
1060 /*InOverloadResolution=*/false);
Sebastian Redle2b68332009-04-12 17:16:29 +00001061 }
1062 if (ICS.ConversionKind == ImplicitConversionSequence::BadConversion) {
Mike Stump1eb44332009-09-09 15:08:12 +00001063 ICS = TryImplicitConversion(From, ToType,
Anders Carlssonda7a18b2009-08-27 17:24:15 +00001064 /*SuppressUserConversions=*/false,
1065 AllowExplicit,
Anders Carlsson08972922009-08-28 15:33:32 +00001066 /*ForceRValue=*/false,
1067 /*InOverloadResolution=*/false);
Sebastian Redle2b68332009-04-12 17:16:29 +00001068 }
Douglas Gregor68647482009-12-16 03:45:30 +00001069 return PerformImplicitConversion(From, ToType, ICS, Action);
Douglas Gregor09f41cf2009-01-14 15:45:31 +00001070}
1071
Fariborz Jahanian93034ca2009-10-16 19:20:59 +00001072/// BuildCXXDerivedToBaseExpr - This routine generates the suitable AST
1073/// for the derived to base conversion of the expression 'From'. All
1074/// necessary information is passed in ICS.
1075bool
1076Sema::BuildCXXDerivedToBaseExpr(Expr *&From, CastExpr::CastKind CastKind,
Douglas Gregor68647482009-12-16 03:45:30 +00001077 const ImplicitConversionSequence& ICS) {
Fariborz Jahanian93034ca2009-10-16 19:20:59 +00001078 QualType BaseType =
1079 QualType::getFromOpaquePtr(ICS.UserDefined.After.ToTypePtr);
1080 // Must do additional defined to base conversion.
1081 QualType DerivedType =
1082 QualType::getFromOpaquePtr(ICS.UserDefined.After.FromTypePtr);
1083
1084 From = new (Context) ImplicitCastExpr(
1085 DerivedType.getNonReferenceType(),
1086 CastKind,
1087 From,
1088 DerivedType->isLValueReferenceType());
1089 From = new (Context) ImplicitCastExpr(BaseType.getNonReferenceType(),
1090 CastExpr::CK_DerivedToBase, From,
1091 BaseType->isLValueReferenceType());
1092 ASTOwningVector<&ActionBase::DeleteExpr> ConstructorArgs(*this);
1093 OwningExprResult FromResult =
1094 BuildCXXConstructExpr(
1095 ICS.UserDefined.After.CopyConstructor->getLocation(),
1096 BaseType,
1097 ICS.UserDefined.After.CopyConstructor,
1098 MultiExprArg(*this, (void **)&From, 1));
1099 if (FromResult.isInvalid())
1100 return true;
1101 From = FromResult.takeAs<Expr>();
1102 return false;
1103}
1104
Douglas Gregor09f41cf2009-01-14 15:45:31 +00001105/// PerformImplicitConversion - Perform an implicit conversion of the
1106/// expression From to the type ToType using the pre-computed implicit
1107/// conversion sequence ICS. Returns true if there was an error, false
1108/// otherwise. The expression From is replaced with the converted
Douglas Gregor68647482009-12-16 03:45:30 +00001109/// expression. Action is the kind of conversion we're performing,
Douglas Gregor09f41cf2009-01-14 15:45:31 +00001110/// used in the error message.
1111bool
1112Sema::PerformImplicitConversion(Expr *&From, QualType ToType,
1113 const ImplicitConversionSequence &ICS,
Douglas Gregor68647482009-12-16 03:45:30 +00001114 AssignmentAction Action, bool IgnoreBaseAccess) {
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001115 switch (ICS.ConversionKind) {
1116 case ImplicitConversionSequence::StandardConversion:
Douglas Gregor68647482009-12-16 03:45:30 +00001117 if (PerformImplicitConversion(From, ToType, ICS.Standard, Action,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001118 IgnoreBaseAccess))
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001119 return true;
1120 break;
1121
Anders Carlssonf6c213a2009-09-15 06:28:28 +00001122 case ImplicitConversionSequence::UserDefinedConversion: {
1123
Fariborz Jahanian7fe5d722009-08-28 22:04:50 +00001124 FunctionDecl *FD = ICS.UserDefined.ConversionFunction;
1125 CastExpr::CastKind CastKind = CastExpr::CK_Unknown;
Anders Carlssonf6c213a2009-09-15 06:28:28 +00001126 QualType BeforeToType;
1127 if (const CXXConversionDecl *Conv = dyn_cast<CXXConversionDecl>(FD)) {
Fariborz Jahanian7fe5d722009-08-28 22:04:50 +00001128 CastKind = CastExpr::CK_UserDefinedConversion;
Anders Carlssonf6c213a2009-09-15 06:28:28 +00001129
1130 // If the user-defined conversion is specified by a conversion function,
1131 // the initial standard conversion sequence converts the source type to
1132 // the implicit object parameter of the conversion function.
1133 BeforeToType = Context.getTagDeclType(Conv->getParent());
1134 } else if (const CXXConstructorDecl *Ctor =
1135 dyn_cast<CXXConstructorDecl>(FD)) {
Anders Carlsson0aebc812009-09-09 21:33:21 +00001136 CastKind = CastExpr::CK_ConstructorConversion;
Fariborz Jahanian966256a2009-11-06 00:23:08 +00001137 // Do no conversion if dealing with ... for the first conversion.
Douglas Gregore44201a2009-11-20 02:31:03 +00001138 if (!ICS.UserDefined.EllipsisConversion) {
Fariborz Jahanian966256a2009-11-06 00:23:08 +00001139 // If the user-defined conversion is specified by a constructor, the
1140 // initial standard conversion sequence converts the source type to the
1141 // type required by the argument of the constructor
Douglas Gregore44201a2009-11-20 02:31:03 +00001142 BeforeToType = Ctor->getParamDecl(0)->getType().getNonReferenceType();
1143 }
Anders Carlssonf6c213a2009-09-15 06:28:28 +00001144 }
Anders Carlsson0aebc812009-09-09 21:33:21 +00001145 else
1146 assert(0 && "Unknown conversion function kind!");
Fariborz Jahanian966256a2009-11-06 00:23:08 +00001147 // Whatch out for elipsis conversion.
Fariborz Jahanian4c0cea22009-11-06 00:55:14 +00001148 if (!ICS.UserDefined.EllipsisConversion) {
Fariborz Jahanian966256a2009-11-06 00:23:08 +00001149 if (PerformImplicitConversion(From, BeforeToType,
Douglas Gregor68647482009-12-16 03:45:30 +00001150 ICS.UserDefined.Before, AA_Converting,
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001151 IgnoreBaseAccess))
Fariborz Jahanian966256a2009-11-06 00:23:08 +00001152 return true;
1153 }
Anders Carlssonf6c213a2009-09-15 06:28:28 +00001154
Anders Carlsson0aebc812009-09-09 21:33:21 +00001155 OwningExprResult CastArg
1156 = BuildCXXCastArgument(From->getLocStart(),
1157 ToType.getNonReferenceType(),
1158 CastKind, cast<CXXMethodDecl>(FD),
1159 Owned(From));
1160
1161 if (CastArg.isInvalid())
1162 return true;
Eli Friedmand8889622009-11-27 04:41:50 +00001163
1164 From = CastArg.takeAs<Expr>();
1165
1166 // FIXME: This and the following if statement shouldn't be necessary, but
1167 // there's some nasty stuff involving MaybeBindToTemporary going on here.
Fariborz Jahanian93034ca2009-10-16 19:20:59 +00001168 if (ICS.UserDefined.After.Second == ICK_Derived_To_Base &&
1169 ICS.UserDefined.After.CopyConstructor) {
Douglas Gregor68647482009-12-16 03:45:30 +00001170 return BuildCXXDerivedToBaseExpr(From, CastKind, ICS);
Fariborz Jahanian93034ca2009-10-16 19:20:59 +00001171 }
Eli Friedmand8889622009-11-27 04:41:50 +00001172
1173 if (ICS.UserDefined.After.CopyConstructor) {
1174 From = new (Context) ImplicitCastExpr(ToType.getNonReferenceType(),
1175 CastKind, From,
1176 ToType->isLValueReferenceType());
1177 return false;
1178 }
1179
1180 return PerformImplicitConversion(From, ToType, ICS.UserDefined.After,
Douglas Gregor68647482009-12-16 03:45:30 +00001181 AA_Converting, IgnoreBaseAccess);
Fariborz Jahanian93034ca2009-10-16 19:20:59 +00001182 }
1183
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001184 case ImplicitConversionSequence::EllipsisConversion:
1185 assert(false && "Cannot perform an ellipsis conversion");
Douglas Gregor60d62c22008-10-31 16:23:19 +00001186 return false;
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001187
1188 case ImplicitConversionSequence::BadConversion:
1189 return true;
1190 }
1191
1192 // Everything went well.
1193 return false;
1194}
1195
1196/// PerformImplicitConversion - Perform an implicit conversion of the
1197/// expression From to the type ToType by following the standard
1198/// conversion sequence SCS. Returns true if there was an error, false
1199/// otherwise. The expression From is replaced with the converted
Douglas Gregor45920e82008-12-19 17:40:08 +00001200/// expression. Flavor is the context in which we're performing this
1201/// conversion, for use in error messages.
Mike Stump1eb44332009-09-09 15:08:12 +00001202bool
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001203Sema::PerformImplicitConversion(Expr *&From, QualType ToType,
Douglas Gregor45920e82008-12-19 17:40:08 +00001204 const StandardConversionSequence& SCS,
Douglas Gregor68647482009-12-16 03:45:30 +00001205 AssignmentAction Action, bool IgnoreBaseAccess) {
Mike Stump390b4cc2009-05-16 07:39:55 +00001206 // Overall FIXME: we are recomputing too many types here and doing far too
1207 // much extra work. What this means is that we need to keep track of more
1208 // information that is computed when we try the implicit conversion initially,
1209 // so that we don't need to recompute anything here.
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001210 QualType FromType = From->getType();
1211
Douglas Gregor225c41e2008-11-03 19:09:14 +00001212 if (SCS.CopyConstructor) {
Anders Carlsson7c3e8a12009-05-19 04:45:15 +00001213 // FIXME: When can ToType be a reference type?
1214 assert(!ToType->isReferenceType());
Fariborz Jahanianb3c47742009-09-25 18:59:21 +00001215 if (SCS.Second == ICK_Derived_To_Base) {
1216 ASTOwningVector<&ActionBase::DeleteExpr> ConstructorArgs(*this);
1217 if (CompleteConstructorCall(cast<CXXConstructorDecl>(SCS.CopyConstructor),
1218 MultiExprArg(*this, (void **)&From, 1),
1219 /*FIXME:ConstructLoc*/SourceLocation(),
1220 ConstructorArgs))
1221 return true;
1222 OwningExprResult FromResult =
1223 BuildCXXConstructExpr(/*FIXME:ConstructLoc*/SourceLocation(),
1224 ToType, SCS.CopyConstructor,
1225 move_arg(ConstructorArgs));
1226 if (FromResult.isInvalid())
1227 return true;
1228 From = FromResult.takeAs<Expr>();
1229 return false;
1230 }
Mike Stump1eb44332009-09-09 15:08:12 +00001231 OwningExprResult FromResult =
1232 BuildCXXConstructExpr(/*FIXME:ConstructLoc*/SourceLocation(),
1233 ToType, SCS.CopyConstructor,
Anders Carlssonf47511a2009-09-07 22:23:31 +00001234 MultiExprArg(*this, (void**)&From, 1));
Mike Stump1eb44332009-09-09 15:08:12 +00001235
Anders Carlssonda3f4e22009-08-25 05:12:04 +00001236 if (FromResult.isInvalid())
1237 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001238
Anders Carlssonda3f4e22009-08-25 05:12:04 +00001239 From = FromResult.takeAs<Expr>();
Douglas Gregor225c41e2008-11-03 19:09:14 +00001240 return false;
1241 }
1242
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001243 // Perform the first implicit conversion.
1244 switch (SCS.First) {
1245 case ICK_Identity:
1246 case ICK_Lvalue_To_Rvalue:
1247 // Nothing to do.
1248 break;
1249
1250 case ICK_Array_To_Pointer:
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001251 FromType = Context.getArrayDecayedType(FromType);
Anders Carlsson82495762009-08-08 21:04:35 +00001252 ImpCastExprToType(From, FromType, CastExpr::CK_ArrayToPointerDecay);
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001253 break;
1254
1255 case ICK_Function_To_Pointer:
Douglas Gregor063daf62009-03-13 18:40:31 +00001256 if (Context.getCanonicalType(FromType) == Context.OverloadTy) {
Douglas Gregor904eed32008-11-10 20:40:00 +00001257 FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(From, ToType, true);
1258 if (!Fn)
1259 return true;
1260
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001261 if (DiagnoseUseOfDecl(Fn, From->getSourceRange().getBegin()))
1262 return true;
1263
Anders Carlsson96ad5332009-10-21 17:16:23 +00001264 From = FixOverloadedFunctionReference(From, Fn);
Douglas Gregor904eed32008-11-10 20:40:00 +00001265 FromType = From->getType();
Anders Carlsson96ad5332009-10-21 17:16:23 +00001266
Sebastian Redl759986e2009-10-17 20:50:27 +00001267 // If there's already an address-of operator in the expression, we have
1268 // the right type already, and the code below would just introduce an
1269 // invalid additional pointer level.
Anders Carlsson96ad5332009-10-21 17:16:23 +00001270 if (FromType->isPointerType() || FromType->isMemberFunctionPointerType())
Sebastian Redl759986e2009-10-17 20:50:27 +00001271 break;
Douglas Gregor904eed32008-11-10 20:40:00 +00001272 }
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001273 FromType = Context.getPointerType(FromType);
Anders Carlssonb633c4e2009-09-01 20:37:18 +00001274 ImpCastExprToType(From, FromType, CastExpr::CK_FunctionToPointerDecay);
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001275 break;
1276
1277 default:
1278 assert(false && "Improper first standard conversion");
1279 break;
1280 }
1281
1282 // Perform the second implicit conversion
1283 switch (SCS.Second) {
1284 case ICK_Identity:
Sebastian Redl2c7588f2009-10-10 12:04:10 +00001285 // If both sides are functions (or pointers/references to them), there could
1286 // be incompatible exception declarations.
1287 if (CheckExceptionSpecCompatibility(From, ToType))
1288 return true;
1289 // Nothing else to do.
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001290 break;
1291
Douglas Gregor43c79c22009-12-09 00:47:37 +00001292 case ICK_NoReturn_Adjustment:
1293 // If both sides are functions (or pointers/references to them), there could
1294 // be incompatible exception declarations.
1295 if (CheckExceptionSpecCompatibility(From, ToType))
1296 return true;
1297
1298 ImpCastExprToType(From, Context.getNoReturnType(From->getType(), false),
1299 CastExpr::CK_NoOp);
1300 break;
1301
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001302 case ICK_Integral_Promotion:
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001303 case ICK_Integral_Conversion:
Eli Friedman73c39ab2009-10-20 08:27:19 +00001304 ImpCastExprToType(From, ToType, CastExpr::CK_IntegralCast);
1305 break;
1306
1307 case ICK_Floating_Promotion:
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001308 case ICK_Floating_Conversion:
Eli Friedman73c39ab2009-10-20 08:27:19 +00001309 ImpCastExprToType(From, ToType, CastExpr::CK_FloatingCast);
1310 break;
1311
1312 case ICK_Complex_Promotion:
Douglas Gregor5cdf8212009-02-12 00:15:05 +00001313 case ICK_Complex_Conversion:
Eli Friedman73c39ab2009-10-20 08:27:19 +00001314 ImpCastExprToType(From, ToType, CastExpr::CK_Unknown);
1315 break;
1316
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001317 case ICK_Floating_Integral:
Eli Friedman73c39ab2009-10-20 08:27:19 +00001318 if (ToType->isFloatingType())
1319 ImpCastExprToType(From, ToType, CastExpr::CK_IntegralToFloating);
1320 else
1321 ImpCastExprToType(From, ToType, CastExpr::CK_FloatingToIntegral);
1322 break;
1323
Douglas Gregor5cdf8212009-02-12 00:15:05 +00001324 case ICK_Complex_Real:
Eli Friedman73c39ab2009-10-20 08:27:19 +00001325 ImpCastExprToType(From, ToType, CastExpr::CK_Unknown);
1326 break;
1327
Douglas Gregorf9201e02009-02-11 23:02:49 +00001328 case ICK_Compatible_Conversion:
Eli Friedman73c39ab2009-10-20 08:27:19 +00001329 ImpCastExprToType(From, ToType, CastExpr::CK_NoOp);
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001330 break;
1331
Anders Carlsson61faec12009-09-12 04:46:44 +00001332 case ICK_Pointer_Conversion: {
Douglas Gregor45920e82008-12-19 17:40:08 +00001333 if (SCS.IncompatibleObjC) {
1334 // Diagnose incompatible Objective-C conversions
Mike Stump1eb44332009-09-09 15:08:12 +00001335 Diag(From->getSourceRange().getBegin(),
Douglas Gregor45920e82008-12-19 17:40:08 +00001336 diag::ext_typecheck_convert_incompatible_pointer)
Douglas Gregor68647482009-12-16 03:45:30 +00001337 << From->getType() << ToType << Action
Douglas Gregor45920e82008-12-19 17:40:08 +00001338 << From->getSourceRange();
1339 }
1340
Anders Carlsson61faec12009-09-12 04:46:44 +00001341
1342 CastExpr::CastKind Kind = CastExpr::CK_Unknown;
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001343 if (CheckPointerConversion(From, ToType, Kind, IgnoreBaseAccess))
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001344 return true;
Anders Carlsson61faec12009-09-12 04:46:44 +00001345 ImpCastExprToType(From, ToType, Kind);
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001346 break;
Anders Carlsson61faec12009-09-12 04:46:44 +00001347 }
1348
1349 case ICK_Pointer_Member: {
1350 CastExpr::CastKind Kind = CastExpr::CK_Unknown;
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001351 if (CheckMemberPointerConversion(From, ToType, Kind, IgnoreBaseAccess))
Anders Carlsson61faec12009-09-12 04:46:44 +00001352 return true;
Sebastian Redl2c7588f2009-10-10 12:04:10 +00001353 if (CheckExceptionSpecCompatibility(From, ToType))
1354 return true;
Anders Carlsson61faec12009-09-12 04:46:44 +00001355 ImpCastExprToType(From, ToType, Kind);
1356 break;
1357 }
Anders Carlssonbc0e0782009-11-23 20:04:44 +00001358 case ICK_Boolean_Conversion: {
1359 CastExpr::CastKind Kind = CastExpr::CK_Unknown;
1360 if (FromType->isMemberPointerType())
1361 Kind = CastExpr::CK_MemberPointerToBoolean;
1362
1363 ImpCastExprToType(From, Context.BoolTy, Kind);
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001364 break;
Anders Carlssonbc0e0782009-11-23 20:04:44 +00001365 }
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001366
Douglas Gregorb7a86f52009-11-06 01:02:41 +00001367 case ICK_Derived_To_Base:
1368 if (CheckDerivedToBaseConversion(From->getType(),
1369 ToType.getNonReferenceType(),
1370 From->getLocStart(),
Sebastian Redla82e4ae2009-11-14 21:15:49 +00001371 From->getSourceRange(),
1372 IgnoreBaseAccess))
Douglas Gregorb7a86f52009-11-06 01:02:41 +00001373 return true;
1374 ImpCastExprToType(From, ToType.getNonReferenceType(),
1375 CastExpr::CK_DerivedToBase);
1376 break;
1377
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001378 default:
1379 assert(false && "Improper second standard conversion");
1380 break;
1381 }
1382
1383 switch (SCS.Third) {
1384 case ICK_Identity:
1385 // Nothing to do.
1386 break;
1387
1388 case ICK_Qualification:
Mike Stump390b4cc2009-05-16 07:39:55 +00001389 // FIXME: Not sure about lvalue vs rvalue here in the presence of rvalue
1390 // references.
Mike Stump1eb44332009-09-09 15:08:12 +00001391 ImpCastExprToType(From, ToType.getNonReferenceType(),
Eli Friedman73c39ab2009-10-20 08:27:19 +00001392 CastExpr::CK_NoOp,
Sebastian Redl7c80bd62009-03-16 23:22:08 +00001393 ToType->isLValueReferenceType());
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001394 break;
Douglas Gregorb7a86f52009-11-06 01:02:41 +00001395
Douglas Gregor94b1dd22008-10-24 04:54:22 +00001396 default:
1397 assert(false && "Improper second standard conversion");
1398 break;
1399 }
1400
1401 return false;
1402}
1403
Sebastian Redl64b45f72009-01-05 20:52:13 +00001404Sema::OwningExprResult Sema::ActOnUnaryTypeTrait(UnaryTypeTrait OTT,
1405 SourceLocation KWLoc,
1406 SourceLocation LParen,
1407 TypeTy *Ty,
1408 SourceLocation RParen) {
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00001409 QualType T = GetTypeFromParser(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +00001410
Anders Carlsson3292d5c2009-07-07 19:06:02 +00001411 // According to http://gcc.gnu.org/onlinedocs/gcc/Type-Traits.html
1412 // all traits except __is_class, __is_enum and __is_union require a the type
1413 // to be complete.
1414 if (OTT != UTT_IsClass && OTT != UTT_IsEnum && OTT != UTT_IsUnion) {
Mike Stump1eb44332009-09-09 15:08:12 +00001415 if (RequireCompleteType(KWLoc, T,
Anders Carlssond497ba72009-08-26 22:59:12 +00001416 diag::err_incomplete_type_used_in_type_trait_expr))
Anders Carlsson3292d5c2009-07-07 19:06:02 +00001417 return ExprError();
1418 }
Sebastian Redl64b45f72009-01-05 20:52:13 +00001419
1420 // There is no point in eagerly computing the value. The traits are designed
1421 // to be used from type trait templates, so Ty will be a template parameter
1422 // 99% of the time.
Anders Carlsson3292d5c2009-07-07 19:06:02 +00001423 return Owned(new (Context) UnaryTypeTraitExpr(KWLoc, OTT, T,
1424 RParen, Context.BoolTy));
Sebastian Redl64b45f72009-01-05 20:52:13 +00001425}
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001426
1427QualType Sema::CheckPointerToMemberOperands(
Mike Stump1eb44332009-09-09 15:08:12 +00001428 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isIndirect) {
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001429 const char *OpSpelling = isIndirect ? "->*" : ".*";
1430 // C++ 5.5p2
1431 // The binary operator .* [p3: ->*] binds its second operand, which shall
1432 // be of type "pointer to member of T" (where T is a completely-defined
1433 // class type) [...]
1434 QualType RType = rex->getType();
Ted Kremenek6217b802009-07-29 21:53:49 +00001435 const MemberPointerType *MemPtr = RType->getAs<MemberPointerType>();
Douglas Gregore7450f52009-03-24 19:52:54 +00001436 if (!MemPtr) {
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001437 Diag(Loc, diag::err_bad_memptr_rhs)
1438 << OpSpelling << RType << rex->getSourceRange();
1439 return QualType();
Mike Stump1eb44332009-09-09 15:08:12 +00001440 }
Douglas Gregore7450f52009-03-24 19:52:54 +00001441
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001442 QualType Class(MemPtr->getClass(), 0);
1443
1444 // C++ 5.5p2
1445 // [...] to its first operand, which shall be of class T or of a class of
1446 // which T is an unambiguous and accessible base class. [p3: a pointer to
1447 // such a class]
1448 QualType LType = lex->getType();
1449 if (isIndirect) {
Ted Kremenek6217b802009-07-29 21:53:49 +00001450 if (const PointerType *Ptr = LType->getAs<PointerType>())
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001451 LType = Ptr->getPointeeType().getNonReferenceType();
1452 else {
1453 Diag(Loc, diag::err_bad_memptr_lhs)
Fariborz Jahanianef78ac62009-10-26 20:45:27 +00001454 << OpSpelling << 1 << LType
1455 << CodeModificationHint::CreateReplacement(SourceRange(Loc), ".*");
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001456 return QualType();
1457 }
1458 }
1459
Douglas Gregora4923eb2009-11-16 21:35:15 +00001460 if (!Context.hasSameUnqualifiedType(Class, LType)) {
Douglas Gregora8f32e02009-10-06 17:59:45 +00001461 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/false,
1462 /*DetectVirtual=*/false);
Mike Stump390b4cc2009-05-16 07:39:55 +00001463 // FIXME: Would it be useful to print full ambiguity paths, or is that
1464 // overkill?
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001465 if (!IsDerivedFrom(LType, Class, Paths) ||
1466 Paths.isAmbiguous(Context.getCanonicalType(Class))) {
Fariborz Jahanianef78ac62009-10-26 20:45:27 +00001467 const char *ReplaceStr = isIndirect ? ".*" : "->*";
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001468 Diag(Loc, diag::err_bad_memptr_lhs) << OpSpelling
Fariborz Jahanianef78ac62009-10-26 20:45:27 +00001469 << (int)isIndirect << lex->getType() <<
1470 CodeModificationHint::CreateReplacement(SourceRange(Loc), ReplaceStr);
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001471 return QualType();
1472 }
1473 }
1474
Fariborz Jahanian19d70732009-11-18 22:16:17 +00001475 if (isa<CXXZeroInitValueExpr>(rex->IgnoreParens())) {
Fariborz Jahanian05ebda92009-11-18 21:54:48 +00001476 // Diagnose use of pointer-to-member type which when used as
1477 // the functional cast in a pointer-to-member expression.
1478 Diag(Loc, diag::err_pointer_to_member_type) << isIndirect;
1479 return QualType();
1480 }
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001481 // C++ 5.5p2
1482 // The result is an object or a function of the type specified by the
1483 // second operand.
1484 // The cv qualifiers are the union of those in the pointer and the left side,
1485 // in accordance with 5.5p5 and 5.2.5.
1486 // FIXME: This returns a dereferenced member function pointer as a normal
1487 // function type. However, the only operation valid on such functions is
Mike Stump390b4cc2009-05-16 07:39:55 +00001488 // calling them. There's also a GCC extension to get a function pointer to the
1489 // thing, which is another complication, because this type - unlike the type
1490 // that is the result of this expression - takes the class as the first
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001491 // argument.
1492 // We probably need a "MemberFunctionClosureType" or something like that.
1493 QualType Result = MemPtr->getPointeeType();
John McCall0953e762009-09-24 19:53:00 +00001494 Result = Context.getCVRQualifiedType(Result, LType.getCVRQualifiers());
Sebastian Redl7c8bd602009-02-07 20:10:22 +00001495 return Result;
1496}
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001497
1498/// \brief Get the target type of a standard or user-defined conversion.
1499static QualType TargetType(const ImplicitConversionSequence &ICS) {
1500 assert((ICS.ConversionKind ==
1501 ImplicitConversionSequence::StandardConversion ||
1502 ICS.ConversionKind ==
1503 ImplicitConversionSequence::UserDefinedConversion) &&
1504 "function only valid for standard or user-defined conversions");
1505 if (ICS.ConversionKind == ImplicitConversionSequence::StandardConversion)
1506 return QualType::getFromOpaquePtr(ICS.Standard.ToTypePtr);
1507 return QualType::getFromOpaquePtr(ICS.UserDefined.After.ToTypePtr);
1508}
1509
1510/// \brief Try to convert a type to another according to C++0x 5.16p3.
1511///
1512/// This is part of the parameter validation for the ? operator. If either
1513/// value operand is a class type, the two operands are attempted to be
1514/// converted to each other. This function does the conversion in one direction.
1515/// It emits a diagnostic and returns true only if it finds an ambiguous
1516/// conversion.
1517static bool TryClassUnification(Sema &Self, Expr *From, Expr *To,
1518 SourceLocation QuestionLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001519 ImplicitConversionSequence &ICS) {
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001520 // C++0x 5.16p3
1521 // The process for determining whether an operand expression E1 of type T1
1522 // can be converted to match an operand expression E2 of type T2 is defined
1523 // as follows:
1524 // -- If E2 is an lvalue:
1525 if (To->isLvalue(Self.Context) == Expr::LV_Valid) {
1526 // E1 can be converted to match E2 if E1 can be implicitly converted to
1527 // type "lvalue reference to T2", subject to the constraint that in the
1528 // conversion the reference must bind directly to E1.
1529 if (!Self.CheckReferenceInit(From,
1530 Self.Context.getLValueReferenceType(To->getType()),
Douglas Gregor739d8282009-09-23 23:04:10 +00001531 To->getLocStart(),
Anders Carlsson2de3ace2009-08-27 17:30:43 +00001532 /*SuppressUserConversions=*/false,
1533 /*AllowExplicit=*/false,
1534 /*ForceRValue=*/false,
1535 &ICS))
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001536 {
1537 assert((ICS.ConversionKind ==
1538 ImplicitConversionSequence::StandardConversion ||
1539 ICS.ConversionKind ==
1540 ImplicitConversionSequence::UserDefinedConversion) &&
1541 "expected a definite conversion");
1542 bool DirectBinding =
1543 ICS.ConversionKind == ImplicitConversionSequence::StandardConversion ?
1544 ICS.Standard.DirectBinding : ICS.UserDefined.After.DirectBinding;
1545 if (DirectBinding)
1546 return false;
1547 }
1548 }
1549 ICS.ConversionKind = ImplicitConversionSequence::BadConversion;
1550 // -- If E2 is an rvalue, or if the conversion above cannot be done:
1551 // -- if E1 and E2 have class type, and the underlying class types are
1552 // the same or one is a base class of the other:
1553 QualType FTy = From->getType();
1554 QualType TTy = To->getType();
Ted Kremenek6217b802009-07-29 21:53:49 +00001555 const RecordType *FRec = FTy->getAs<RecordType>();
1556 const RecordType *TRec = TTy->getAs<RecordType>();
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001557 bool FDerivedFromT = FRec && TRec && Self.IsDerivedFrom(FTy, TTy);
1558 if (FRec && TRec && (FRec == TRec ||
1559 FDerivedFromT || Self.IsDerivedFrom(TTy, FTy))) {
1560 // E1 can be converted to match E2 if the class of T2 is the
1561 // same type as, or a base class of, the class of T1, and
1562 // [cv2 > cv1].
1563 if ((FRec == TRec || FDerivedFromT) && TTy.isAtLeastAsQualifiedAs(FTy)) {
1564 // Could still fail if there's no copy constructor.
1565 // FIXME: Is this a hard error then, or just a conversion failure? The
1566 // standard doesn't say.
Mike Stump1eb44332009-09-09 15:08:12 +00001567 ICS = Self.TryCopyInitialization(From, TTy,
Anders Carlssond28b4282009-08-27 17:18:13 +00001568 /*SuppressUserConversions=*/false,
Anders Carlsson7b361b52009-08-27 17:37:39 +00001569 /*ForceRValue=*/false,
1570 /*InOverloadResolution=*/false);
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001571 }
1572 } else {
1573 // -- Otherwise: E1 can be converted to match E2 if E1 can be
1574 // implicitly converted to the type that expression E2 would have
1575 // if E2 were converted to an rvalue.
1576 // First find the decayed type.
1577 if (TTy->isFunctionType())
1578 TTy = Self.Context.getPointerType(TTy);
Mike Stump1eb44332009-09-09 15:08:12 +00001579 else if (TTy->isArrayType())
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001580 TTy = Self.Context.getArrayDecayedType(TTy);
1581
1582 // Now try the implicit conversion.
1583 // FIXME: This doesn't detect ambiguities.
Anders Carlssonda7a18b2009-08-27 17:24:15 +00001584 ICS = Self.TryImplicitConversion(From, TTy,
1585 /*SuppressUserConversions=*/false,
1586 /*AllowExplicit=*/false,
Anders Carlsson08972922009-08-28 15:33:32 +00001587 /*ForceRValue=*/false,
1588 /*InOverloadResolution=*/false);
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001589 }
1590 return false;
1591}
1592
1593/// \brief Try to find a common type for two according to C++0x 5.16p5.
1594///
1595/// This is part of the parameter validation for the ? operator. If either
1596/// value operand is a class type, overload resolution is used to find a
1597/// conversion to a common type.
1598static bool FindConditionalOverload(Sema &Self, Expr *&LHS, Expr *&RHS,
1599 SourceLocation Loc) {
1600 Expr *Args[2] = { LHS, RHS };
1601 OverloadCandidateSet CandidateSet;
Douglas Gregor573d9c32009-10-21 23:19:44 +00001602 Self.AddBuiltinOperatorCandidates(OO_Conditional, Loc, Args, 2, CandidateSet);
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001603
1604 OverloadCandidateSet::iterator Best;
Douglas Gregore0762c92009-06-19 23:52:42 +00001605 switch (Self.BestViableFunction(CandidateSet, Loc, Best)) {
Douglas Gregor20093b42009-12-09 23:02:17 +00001606 case OR_Success:
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001607 // We found a match. Perform the conversions on the arguments and move on.
1608 if (Self.PerformImplicitConversion(LHS, Best->BuiltinTypes.ParamTypes[0],
Douglas Gregor68647482009-12-16 03:45:30 +00001609 Best->Conversions[0], Sema::AA_Converting) ||
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001610 Self.PerformImplicitConversion(RHS, Best->BuiltinTypes.ParamTypes[1],
Douglas Gregor68647482009-12-16 03:45:30 +00001611 Best->Conversions[1], Sema::AA_Converting))
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001612 break;
1613 return false;
1614
Douglas Gregor20093b42009-12-09 23:02:17 +00001615 case OR_No_Viable_Function:
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001616 Self.Diag(Loc, diag::err_typecheck_cond_incompatible_operands)
1617 << LHS->getType() << RHS->getType()
1618 << LHS->getSourceRange() << RHS->getSourceRange();
1619 return true;
1620
Douglas Gregor20093b42009-12-09 23:02:17 +00001621 case OR_Ambiguous:
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001622 Self.Diag(Loc, diag::err_conditional_ambiguous_ovl)
1623 << LHS->getType() << RHS->getType()
1624 << LHS->getSourceRange() << RHS->getSourceRange();
Mike Stump390b4cc2009-05-16 07:39:55 +00001625 // FIXME: Print the possible common types by printing the return types of
1626 // the viable candidates.
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001627 break;
1628
Douglas Gregor20093b42009-12-09 23:02:17 +00001629 case OR_Deleted:
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001630 assert(false && "Conditional operator has only built-in overloads");
1631 break;
1632 }
1633 return true;
1634}
1635
Sebastian Redl76458502009-04-17 16:30:52 +00001636/// \brief Perform an "extended" implicit conversion as returned by
1637/// TryClassUnification.
1638///
1639/// TryClassUnification generates ICSs that include reference bindings.
1640/// PerformImplicitConversion is not suitable for this; it chokes if the
1641/// second part of a standard conversion is ICK_DerivedToBase. This function
1642/// handles the reference binding specially.
1643static bool ConvertForConditional(Sema &Self, Expr *&E,
Mike Stump1eb44332009-09-09 15:08:12 +00001644 const ImplicitConversionSequence &ICS) {
Sebastian Redl76458502009-04-17 16:30:52 +00001645 if (ICS.ConversionKind == ImplicitConversionSequence::StandardConversion &&
1646 ICS.Standard.ReferenceBinding) {
1647 assert(ICS.Standard.DirectBinding &&
1648 "TryClassUnification should never generate indirect ref bindings");
Sebastian Redla5cd2cd2009-04-26 11:21:02 +00001649 // FIXME: CheckReferenceInit should be able to reuse the ICS instead of
1650 // redoing all the work.
1651 return Self.CheckReferenceInit(E, Self.Context.getLValueReferenceType(
Anders Carlsson2de3ace2009-08-27 17:30:43 +00001652 TargetType(ICS)),
Douglas Gregor739d8282009-09-23 23:04:10 +00001653 /*FIXME:*/E->getLocStart(),
Anders Carlsson2de3ace2009-08-27 17:30:43 +00001654 /*SuppressUserConversions=*/false,
1655 /*AllowExplicit=*/false,
1656 /*ForceRValue=*/false);
Sebastian Redl76458502009-04-17 16:30:52 +00001657 }
1658 if (ICS.ConversionKind == ImplicitConversionSequence::UserDefinedConversion &&
1659 ICS.UserDefined.After.ReferenceBinding) {
1660 assert(ICS.UserDefined.After.DirectBinding &&
1661 "TryClassUnification should never generate indirect ref bindings");
Sebastian Redla5cd2cd2009-04-26 11:21:02 +00001662 return Self.CheckReferenceInit(E, Self.Context.getLValueReferenceType(
Anders Carlsson2de3ace2009-08-27 17:30:43 +00001663 TargetType(ICS)),
Douglas Gregor739d8282009-09-23 23:04:10 +00001664 /*FIXME:*/E->getLocStart(),
Anders Carlsson2de3ace2009-08-27 17:30:43 +00001665 /*SuppressUserConversions=*/false,
1666 /*AllowExplicit=*/false,
1667 /*ForceRValue=*/false);
Sebastian Redl76458502009-04-17 16:30:52 +00001668 }
Douglas Gregor68647482009-12-16 03:45:30 +00001669 if (Self.PerformImplicitConversion(E, TargetType(ICS), ICS, Sema::AA_Converting))
Sebastian Redl76458502009-04-17 16:30:52 +00001670 return true;
1671 return false;
1672}
1673
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001674/// \brief Check the operands of ?: under C++ semantics.
1675///
1676/// See C++ [expr.cond]. Note that LHS is never null, even for the GNU x ?: y
1677/// extension. In this case, LHS == Cond. (But they're not aliases.)
1678QualType Sema::CXXCheckConditionalOperands(Expr *&Cond, Expr *&LHS, Expr *&RHS,
1679 SourceLocation QuestionLoc) {
Mike Stump390b4cc2009-05-16 07:39:55 +00001680 // FIXME: Handle C99's complex types, vector types, block pointers and Obj-C++
1681 // interface pointers.
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001682
1683 // C++0x 5.16p1
1684 // The first expression is contextually converted to bool.
1685 if (!Cond->isTypeDependent()) {
1686 if (CheckCXXBooleanCondition(Cond))
1687 return QualType();
1688 }
1689
1690 // Either of the arguments dependent?
1691 if (LHS->isTypeDependent() || RHS->isTypeDependent())
1692 return Context.DependentTy;
1693
John McCallb13c87f2009-11-05 09:23:39 +00001694 CheckSignCompare(LHS, RHS, QuestionLoc, diag::warn_mixed_sign_conditional);
1695
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001696 // C++0x 5.16p2
1697 // If either the second or the third operand has type (cv) void, ...
1698 QualType LTy = LHS->getType();
1699 QualType RTy = RHS->getType();
1700 bool LVoid = LTy->isVoidType();
1701 bool RVoid = RTy->isVoidType();
1702 if (LVoid || RVoid) {
1703 // ... then the [l2r] conversions are performed on the second and third
1704 // operands ...
1705 DefaultFunctionArrayConversion(LHS);
1706 DefaultFunctionArrayConversion(RHS);
1707 LTy = LHS->getType();
1708 RTy = RHS->getType();
1709
1710 // ... and one of the following shall hold:
1711 // -- The second or the third operand (but not both) is a throw-
1712 // expression; the result is of the type of the other and is an rvalue.
1713 bool LThrow = isa<CXXThrowExpr>(LHS);
1714 bool RThrow = isa<CXXThrowExpr>(RHS);
1715 if (LThrow && !RThrow)
1716 return RTy;
1717 if (RThrow && !LThrow)
1718 return LTy;
1719
1720 // -- Both the second and third operands have type void; the result is of
1721 // type void and is an rvalue.
1722 if (LVoid && RVoid)
1723 return Context.VoidTy;
1724
1725 // Neither holds, error.
1726 Diag(QuestionLoc, diag::err_conditional_void_nonvoid)
1727 << (LVoid ? RTy : LTy) << (LVoid ? 0 : 1)
1728 << LHS->getSourceRange() << RHS->getSourceRange();
1729 return QualType();
1730 }
1731
1732 // Neither is void.
1733
1734 // C++0x 5.16p3
1735 // Otherwise, if the second and third operand have different types, and
1736 // either has (cv) class type, and attempt is made to convert each of those
1737 // operands to the other.
1738 if (Context.getCanonicalType(LTy) != Context.getCanonicalType(RTy) &&
1739 (LTy->isRecordType() || RTy->isRecordType())) {
1740 ImplicitConversionSequence ICSLeftToRight, ICSRightToLeft;
1741 // These return true if a single direction is already ambiguous.
1742 if (TryClassUnification(*this, LHS, RHS, QuestionLoc, ICSLeftToRight))
1743 return QualType();
1744 if (TryClassUnification(*this, RHS, LHS, QuestionLoc, ICSRightToLeft))
1745 return QualType();
1746
1747 bool HaveL2R = ICSLeftToRight.ConversionKind !=
1748 ImplicitConversionSequence::BadConversion;
1749 bool HaveR2L = ICSRightToLeft.ConversionKind !=
1750 ImplicitConversionSequence::BadConversion;
1751 // If both can be converted, [...] the program is ill-formed.
1752 if (HaveL2R && HaveR2L) {
1753 Diag(QuestionLoc, diag::err_conditional_ambiguous)
1754 << LTy << RTy << LHS->getSourceRange() << RHS->getSourceRange();
1755 return QualType();
1756 }
1757
1758 // If exactly one conversion is possible, that conversion is applied to
1759 // the chosen operand and the converted operands are used in place of the
1760 // original operands for the remainder of this section.
1761 if (HaveL2R) {
Sebastian Redl76458502009-04-17 16:30:52 +00001762 if (ConvertForConditional(*this, LHS, ICSLeftToRight))
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001763 return QualType();
1764 LTy = LHS->getType();
1765 } else if (HaveR2L) {
Sebastian Redl76458502009-04-17 16:30:52 +00001766 if (ConvertForConditional(*this, RHS, ICSRightToLeft))
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001767 return QualType();
1768 RTy = RHS->getType();
1769 }
1770 }
1771
1772 // C++0x 5.16p4
1773 // If the second and third operands are lvalues and have the same type,
1774 // the result is of that type [...]
1775 bool Same = Context.getCanonicalType(LTy) == Context.getCanonicalType(RTy);
1776 if (Same && LHS->isLvalue(Context) == Expr::LV_Valid &&
1777 RHS->isLvalue(Context) == Expr::LV_Valid)
1778 return LTy;
1779
1780 // C++0x 5.16p5
1781 // Otherwise, the result is an rvalue. If the second and third operands
1782 // do not have the same type, and either has (cv) class type, ...
1783 if (!Same && (LTy->isRecordType() || RTy->isRecordType())) {
1784 // ... overload resolution is used to determine the conversions (if any)
1785 // to be applied to the operands. If the overload resolution fails, the
1786 // program is ill-formed.
1787 if (FindConditionalOverload(*this, LHS, RHS, QuestionLoc))
1788 return QualType();
1789 }
1790
1791 // C++0x 5.16p6
1792 // LValue-to-rvalue, array-to-pointer, and function-to-pointer standard
1793 // conversions are performed on the second and third operands.
1794 DefaultFunctionArrayConversion(LHS);
1795 DefaultFunctionArrayConversion(RHS);
1796 LTy = LHS->getType();
1797 RTy = RHS->getType();
1798
1799 // After those conversions, one of the following shall hold:
1800 // -- The second and third operands have the same type; the result
1801 // is of that type.
1802 if (Context.getCanonicalType(LTy) == Context.getCanonicalType(RTy))
1803 return LTy;
1804
1805 // -- The second and third operands have arithmetic or enumeration type;
1806 // the usual arithmetic conversions are performed to bring them to a
1807 // common type, and the result is of that type.
1808 if (LTy->isArithmeticType() && RTy->isArithmeticType()) {
1809 UsualArithmeticConversions(LHS, RHS);
1810 return LHS->getType();
1811 }
1812
1813 // -- The second and third operands have pointer type, or one has pointer
1814 // type and the other is a null pointer constant; pointer conversions
1815 // and qualification conversions are performed to bring them to their
1816 // composite pointer type. The result is of the composite pointer type.
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00001817 QualType Composite = FindCompositePointerType(LHS, RHS);
1818 if (!Composite.isNull())
1819 return Composite;
Fariborz Jahanian55016362009-12-10 20:46:08 +00001820
1821 // Similarly, attempt to find composite type of twp objective-c pointers.
1822 Composite = FindCompositeObjCPointerType(LHS, RHS, QuestionLoc);
1823 if (!Composite.isNull())
1824 return Composite;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001825
Sebastian Redl9bebfad2009-04-19 21:15:26 +00001826 // Fourth bullet is same for pointers-to-member. However, the possible
1827 // conversions are far more limited: we have null-to-pointer, upcast of
1828 // containing class, and second-level cv-ness.
1829 // cv-ness is not a union, but must match one of the two operands. (Which,
1830 // frankly, is stupid.)
Ted Kremenek6217b802009-07-29 21:53:49 +00001831 const MemberPointerType *LMemPtr = LTy->getAs<MemberPointerType>();
1832 const MemberPointerType *RMemPtr = RTy->getAs<MemberPointerType>();
Douglas Gregorce940492009-09-25 04:25:58 +00001833 if (LMemPtr &&
1834 RHS->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
Eli Friedman73c39ab2009-10-20 08:27:19 +00001835 ImpCastExprToType(RHS, LTy, CastExpr::CK_NullToMemberPointer);
Sebastian Redl9bebfad2009-04-19 21:15:26 +00001836 return LTy;
1837 }
Douglas Gregorce940492009-09-25 04:25:58 +00001838 if (RMemPtr &&
1839 LHS->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
Eli Friedman73c39ab2009-10-20 08:27:19 +00001840 ImpCastExprToType(LHS, RTy, CastExpr::CK_NullToMemberPointer);
Sebastian Redl9bebfad2009-04-19 21:15:26 +00001841 return RTy;
1842 }
1843 if (LMemPtr && RMemPtr) {
1844 QualType LPointee = LMemPtr->getPointeeType();
1845 QualType RPointee = RMemPtr->getPointeeType();
John McCall0953e762009-09-24 19:53:00 +00001846
1847 QualifierCollector LPQuals, RPQuals;
1848 const Type *LPCan = LPQuals.strip(Context.getCanonicalType(LPointee));
1849 const Type *RPCan = RPQuals.strip(Context.getCanonicalType(RPointee));
1850
Sebastian Redl9bebfad2009-04-19 21:15:26 +00001851 // First, we check that the unqualified pointee type is the same. If it's
1852 // not, there's no conversion that will unify the two pointers.
John McCall0953e762009-09-24 19:53:00 +00001853 if (LPCan == RPCan) {
1854
1855 // Second, we take the greater of the two qualifications. If neither
Sebastian Redl9bebfad2009-04-19 21:15:26 +00001856 // is greater than the other, the conversion is not possible.
John McCall0953e762009-09-24 19:53:00 +00001857
1858 Qualifiers MergedQuals = LPQuals + RPQuals;
1859
1860 bool CompatibleQuals = true;
1861 if (MergedQuals.getCVRQualifiers() != LPQuals.getCVRQualifiers() &&
1862 MergedQuals.getCVRQualifiers() != RPQuals.getCVRQualifiers())
1863 CompatibleQuals = false;
1864 else if (LPQuals.getAddressSpace() != RPQuals.getAddressSpace())
1865 // FIXME:
1866 // C99 6.5.15 as modified by TR 18037:
1867 // If the second and third operands are pointers into different
1868 // address spaces, the address spaces must overlap.
1869 CompatibleQuals = false;
1870 // FIXME: GC qualifiers?
1871
1872 if (CompatibleQuals) {
Sebastian Redl9bebfad2009-04-19 21:15:26 +00001873 // Third, we check if either of the container classes is derived from
1874 // the other.
1875 QualType LContainer(LMemPtr->getClass(), 0);
1876 QualType RContainer(RMemPtr->getClass(), 0);
1877 QualType MoreDerived;
1878 if (Context.getCanonicalType(LContainer) ==
1879 Context.getCanonicalType(RContainer))
1880 MoreDerived = LContainer;
1881 else if (IsDerivedFrom(LContainer, RContainer))
1882 MoreDerived = LContainer;
1883 else if (IsDerivedFrom(RContainer, LContainer))
1884 MoreDerived = RContainer;
1885
1886 if (!MoreDerived.isNull()) {
1887 // The type 'Q Pointee (MoreDerived::*)' is the common type.
1888 // We don't use ImpCastExprToType here because this could still fail
1889 // for ambiguous or inaccessible conversions.
John McCall0953e762009-09-24 19:53:00 +00001890 LPointee = Context.getQualifiedType(LPointee, MergedQuals);
1891 QualType Common
1892 = Context.getMemberPointerType(LPointee, MoreDerived.getTypePtr());
Douglas Gregor68647482009-12-16 03:45:30 +00001893 if (PerformImplicitConversion(LHS, Common, Sema::AA_Converting))
Sebastian Redl9bebfad2009-04-19 21:15:26 +00001894 return QualType();
Douglas Gregor68647482009-12-16 03:45:30 +00001895 if (PerformImplicitConversion(RHS, Common, Sema::AA_Converting))
Sebastian Redl9bebfad2009-04-19 21:15:26 +00001896 return QualType();
1897 return Common;
1898 }
1899 }
1900 }
1901 }
1902
Sebastian Redl3201f6b2009-04-16 17:51:27 +00001903 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
1904 << LHS->getType() << RHS->getType()
1905 << LHS->getSourceRange() << RHS->getSourceRange();
1906 return QualType();
1907}
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00001908
1909/// \brief Find a merged pointer type and convert the two expressions to it.
1910///
Douglas Gregor20b3e992009-08-24 17:42:35 +00001911/// This finds the composite pointer type (or member pointer type) for @p E1
1912/// and @p E2 according to C++0x 5.9p2. It converts both expressions to this
1913/// type and returns it.
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00001914/// It does not emit diagnostics.
1915QualType Sema::FindCompositePointerType(Expr *&E1, Expr *&E2) {
1916 assert(getLangOptions().CPlusPlus && "This function assumes C++");
1917 QualType T1 = E1->getType(), T2 = E2->getType();
Mike Stump1eb44332009-09-09 15:08:12 +00001918
Fariborz Jahanian0cedfbd2009-12-08 20:04:24 +00001919 if (!T1->isAnyPointerType() && !T1->isMemberPointerType() &&
1920 !T2->isAnyPointerType() && !T2->isMemberPointerType())
Douglas Gregor20b3e992009-08-24 17:42:35 +00001921 return QualType();
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00001922
1923 // C++0x 5.9p2
1924 // Pointer conversions and qualification conversions are performed on
1925 // pointer operands to bring them to their composite pointer type. If
1926 // one operand is a null pointer constant, the composite pointer type is
1927 // the type of the other operand.
Douglas Gregorce940492009-09-25 04:25:58 +00001928 if (E1->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
Eli Friedman73c39ab2009-10-20 08:27:19 +00001929 if (T2->isMemberPointerType())
1930 ImpCastExprToType(E1, T2, CastExpr::CK_NullToMemberPointer);
1931 else
1932 ImpCastExprToType(E1, T2, CastExpr::CK_IntegralToPointer);
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00001933 return T2;
1934 }
Douglas Gregorce940492009-09-25 04:25:58 +00001935 if (E2->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
Eli Friedman73c39ab2009-10-20 08:27:19 +00001936 if (T1->isMemberPointerType())
1937 ImpCastExprToType(E2, T1, CastExpr::CK_NullToMemberPointer);
1938 else
1939 ImpCastExprToType(E2, T1, CastExpr::CK_IntegralToPointer);
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00001940 return T1;
1941 }
Mike Stump1eb44332009-09-09 15:08:12 +00001942
Douglas Gregor20b3e992009-08-24 17:42:35 +00001943 // Now both have to be pointers or member pointers.
Sebastian Redla439e6f2009-11-16 21:03:45 +00001944 if ((!T1->isPointerType() && !T1->isMemberPointerType()) ||
1945 (!T2->isPointerType() && !T2->isMemberPointerType()))
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00001946 return QualType();
1947
1948 // Otherwise, of one of the operands has type "pointer to cv1 void," then
1949 // the other has type "pointer to cv2 T" and the composite pointer type is
1950 // "pointer to cv12 void," where cv12 is the union of cv1 and cv2.
1951 // Otherwise, the composite pointer type is a pointer type similar to the
1952 // type of one of the operands, with a cv-qualification signature that is
1953 // the union of the cv-qualification signatures of the operand types.
1954 // In practice, the first part here is redundant; it's subsumed by the second.
1955 // What we do here is, we build the two possible composite types, and try the
1956 // conversions in both directions. If only one works, or if the two composite
1957 // types are the same, we have succeeded.
John McCall0953e762009-09-24 19:53:00 +00001958 // FIXME: extended qualifiers?
Sebastian Redla439e6f2009-11-16 21:03:45 +00001959 typedef llvm::SmallVector<unsigned, 4> QualifierVector;
1960 QualifierVector QualifierUnion;
1961 typedef llvm::SmallVector<std::pair<const Type *, const Type *>, 4>
1962 ContainingClassVector;
1963 ContainingClassVector MemberOfClass;
1964 QualType Composite1 = Context.getCanonicalType(T1),
1965 Composite2 = Context.getCanonicalType(T2);
Douglas Gregor20b3e992009-08-24 17:42:35 +00001966 do {
1967 const PointerType *Ptr1, *Ptr2;
1968 if ((Ptr1 = Composite1->getAs<PointerType>()) &&
1969 (Ptr2 = Composite2->getAs<PointerType>())) {
1970 Composite1 = Ptr1->getPointeeType();
1971 Composite2 = Ptr2->getPointeeType();
1972 QualifierUnion.push_back(
1973 Composite1.getCVRQualifiers() | Composite2.getCVRQualifiers());
1974 MemberOfClass.push_back(std::make_pair((const Type *)0, (const Type *)0));
1975 continue;
1976 }
Mike Stump1eb44332009-09-09 15:08:12 +00001977
Douglas Gregor20b3e992009-08-24 17:42:35 +00001978 const MemberPointerType *MemPtr1, *MemPtr2;
1979 if ((MemPtr1 = Composite1->getAs<MemberPointerType>()) &&
1980 (MemPtr2 = Composite2->getAs<MemberPointerType>())) {
1981 Composite1 = MemPtr1->getPointeeType();
1982 Composite2 = MemPtr2->getPointeeType();
1983 QualifierUnion.push_back(
1984 Composite1.getCVRQualifiers() | Composite2.getCVRQualifiers());
1985 MemberOfClass.push_back(std::make_pair(MemPtr1->getClass(),
1986 MemPtr2->getClass()));
1987 continue;
1988 }
Mike Stump1eb44332009-09-09 15:08:12 +00001989
Douglas Gregor20b3e992009-08-24 17:42:35 +00001990 // FIXME: block pointer types?
Mike Stump1eb44332009-09-09 15:08:12 +00001991
Douglas Gregor20b3e992009-08-24 17:42:35 +00001992 // Cannot unwrap any more types.
1993 break;
1994 } while (true);
Mike Stump1eb44332009-09-09 15:08:12 +00001995
Douglas Gregor20b3e992009-08-24 17:42:35 +00001996 // Rewrap the composites as pointers or member pointers with the union CVRs.
Sebastian Redla439e6f2009-11-16 21:03:45 +00001997 ContainingClassVector::reverse_iterator MOC
1998 = MemberOfClass.rbegin();
1999 for (QualifierVector::reverse_iterator
2000 I = QualifierUnion.rbegin(),
2001 E = QualifierUnion.rend();
Douglas Gregor20b3e992009-08-24 17:42:35 +00002002 I != E; (void)++I, ++MOC) {
John McCall0953e762009-09-24 19:53:00 +00002003 Qualifiers Quals = Qualifiers::fromCVRMask(*I);
Douglas Gregor20b3e992009-08-24 17:42:35 +00002004 if (MOC->first && MOC->second) {
2005 // Rebuild member pointer type
John McCall0953e762009-09-24 19:53:00 +00002006 Composite1 = Context.getMemberPointerType(
2007 Context.getQualifiedType(Composite1, Quals),
2008 MOC->first);
2009 Composite2 = Context.getMemberPointerType(
2010 Context.getQualifiedType(Composite2, Quals),
2011 MOC->second);
Douglas Gregor20b3e992009-08-24 17:42:35 +00002012 } else {
2013 // Rebuild pointer type
John McCall0953e762009-09-24 19:53:00 +00002014 Composite1
2015 = Context.getPointerType(Context.getQualifiedType(Composite1, Quals));
2016 Composite2
2017 = Context.getPointerType(Context.getQualifiedType(Composite2, Quals));
Douglas Gregor20b3e992009-08-24 17:42:35 +00002018 }
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002019 }
2020
Mike Stump1eb44332009-09-09 15:08:12 +00002021 ImplicitConversionSequence E1ToC1 =
Anders Carlssonda7a18b2009-08-27 17:24:15 +00002022 TryImplicitConversion(E1, Composite1,
2023 /*SuppressUserConversions=*/false,
2024 /*AllowExplicit=*/false,
Anders Carlsson08972922009-08-28 15:33:32 +00002025 /*ForceRValue=*/false,
2026 /*InOverloadResolution=*/false);
Mike Stump1eb44332009-09-09 15:08:12 +00002027 ImplicitConversionSequence E2ToC1 =
Anders Carlssonda7a18b2009-08-27 17:24:15 +00002028 TryImplicitConversion(E2, Composite1,
2029 /*SuppressUserConversions=*/false,
2030 /*AllowExplicit=*/false,
Anders Carlsson08972922009-08-28 15:33:32 +00002031 /*ForceRValue=*/false,
2032 /*InOverloadResolution=*/false);
Mike Stump1eb44332009-09-09 15:08:12 +00002033
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002034 ImplicitConversionSequence E1ToC2, E2ToC2;
2035 E1ToC2.ConversionKind = ImplicitConversionSequence::BadConversion;
2036 E2ToC2.ConversionKind = ImplicitConversionSequence::BadConversion;
2037 if (Context.getCanonicalType(Composite1) !=
2038 Context.getCanonicalType(Composite2)) {
Anders Carlssonda7a18b2009-08-27 17:24:15 +00002039 E1ToC2 = TryImplicitConversion(E1, Composite2,
2040 /*SuppressUserConversions=*/false,
2041 /*AllowExplicit=*/false,
Anders Carlsson08972922009-08-28 15:33:32 +00002042 /*ForceRValue=*/false,
2043 /*InOverloadResolution=*/false);
Anders Carlssonda7a18b2009-08-27 17:24:15 +00002044 E2ToC2 = TryImplicitConversion(E2, Composite2,
2045 /*SuppressUserConversions=*/false,
2046 /*AllowExplicit=*/false,
Anders Carlsson08972922009-08-28 15:33:32 +00002047 /*ForceRValue=*/false,
2048 /*InOverloadResolution=*/false);
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002049 }
2050
2051 bool ToC1Viable = E1ToC1.ConversionKind !=
2052 ImplicitConversionSequence::BadConversion
2053 && E2ToC1.ConversionKind !=
2054 ImplicitConversionSequence::BadConversion;
2055 bool ToC2Viable = E1ToC2.ConversionKind !=
2056 ImplicitConversionSequence::BadConversion
2057 && E2ToC2.ConversionKind !=
2058 ImplicitConversionSequence::BadConversion;
2059 if (ToC1Viable && !ToC2Viable) {
Douglas Gregor68647482009-12-16 03:45:30 +00002060 if (!PerformImplicitConversion(E1, Composite1, E1ToC1, Sema::AA_Converting) &&
2061 !PerformImplicitConversion(E2, Composite1, E2ToC1, Sema::AA_Converting))
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002062 return Composite1;
2063 }
2064 if (ToC2Viable && !ToC1Viable) {
Douglas Gregor68647482009-12-16 03:45:30 +00002065 if (!PerformImplicitConversion(E1, Composite2, E1ToC2, Sema::AA_Converting) &&
2066 !PerformImplicitConversion(E2, Composite2, E2ToC2, Sema::AA_Converting))
Sebastian Redld1bd7fc2009-04-19 19:26:31 +00002067 return Composite2;
2068 }
2069 return QualType();
2070}
Anders Carlsson165a0a02009-05-17 18:41:29 +00002071
Anders Carlssondef11992009-05-30 20:36:53 +00002072Sema::OwningExprResult Sema::MaybeBindToTemporary(Expr *E) {
Anders Carlsson089c2602009-08-15 23:41:35 +00002073 if (!Context.getLangOptions().CPlusPlus)
2074 return Owned(E);
Mike Stump1eb44332009-09-09 15:08:12 +00002075
Ted Kremenek6217b802009-07-29 21:53:49 +00002076 const RecordType *RT = E->getType()->getAs<RecordType>();
Anders Carlssondef11992009-05-30 20:36:53 +00002077 if (!RT)
2078 return Owned(E);
Mike Stump1eb44332009-09-09 15:08:12 +00002079
Anders Carlssondef11992009-05-30 20:36:53 +00002080 CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
2081 if (RD->hasTrivialDestructor())
2082 return Owned(E);
Mike Stump1eb44332009-09-09 15:08:12 +00002083
Anders Carlsson283e4d52009-09-14 01:30:44 +00002084 if (CallExpr *CE = dyn_cast<CallExpr>(E)) {
2085 QualType Ty = CE->getCallee()->getType();
2086 if (const PointerType *PT = Ty->getAs<PointerType>())
2087 Ty = PT->getPointeeType();
2088
John McCall183700f2009-09-21 23:43:11 +00002089 const FunctionType *FTy = Ty->getAs<FunctionType>();
Anders Carlsson283e4d52009-09-14 01:30:44 +00002090 if (FTy->getResultType()->isReferenceType())
2091 return Owned(E);
2092 }
Mike Stump1eb44332009-09-09 15:08:12 +00002093 CXXTemporary *Temp = CXXTemporary::Create(Context,
Anders Carlssondef11992009-05-30 20:36:53 +00002094 RD->getDestructor(Context));
Anders Carlsson860306e2009-05-30 21:21:49 +00002095 ExprTemporaries.push_back(Temp);
Fariborz Jahaniana83f7ed2009-08-03 19:13:25 +00002096 if (CXXDestructorDecl *Destructor =
2097 const_cast<CXXDestructorDecl*>(RD->getDestructor(Context)))
2098 MarkDeclarationReferenced(E->getExprLoc(), Destructor);
Anders Carlssondef11992009-05-30 20:36:53 +00002099 // FIXME: Add the temporary to the temporaries vector.
2100 return Owned(CXXBindTemporaryExpr::Create(Context, Temp, E));
2101}
2102
Anders Carlsson0ece4912009-12-15 20:51:39 +00002103Expr *Sema::MaybeCreateCXXExprWithTemporaries(Expr *SubExpr) {
Anders Carlsson99ba36d2009-06-05 15:38:08 +00002104 assert(SubExpr && "sub expression can't be null!");
Mike Stump1eb44332009-09-09 15:08:12 +00002105
Douglas Gregor1f5f3a42009-12-03 17:10:37 +00002106 unsigned FirstTemporary = ExprEvalContexts.back().NumTemporaries;
2107 assert(ExprTemporaries.size() >= FirstTemporary);
2108 if (ExprTemporaries.size() == FirstTemporary)
Anders Carlsson99ba36d2009-06-05 15:38:08 +00002109 return SubExpr;
Mike Stump1eb44332009-09-09 15:08:12 +00002110
Anders Carlsson99ba36d2009-06-05 15:38:08 +00002111 Expr *E = CXXExprWithTemporaries::Create(Context, SubExpr,
Douglas Gregor1f5f3a42009-12-03 17:10:37 +00002112 &ExprTemporaries[FirstTemporary],
Anders Carlsson0ece4912009-12-15 20:51:39 +00002113 ExprTemporaries.size() - FirstTemporary);
Douglas Gregor1f5f3a42009-12-03 17:10:37 +00002114 ExprTemporaries.erase(ExprTemporaries.begin() + FirstTemporary,
2115 ExprTemporaries.end());
Mike Stump1eb44332009-09-09 15:08:12 +00002116
Anders Carlsson99ba36d2009-06-05 15:38:08 +00002117 return E;
2118}
2119
Douglas Gregor90f93822009-12-22 22:17:25 +00002120Sema::OwningExprResult
2121Sema::MaybeCreateCXXExprWithTemporaries(OwningExprResult SubExpr) {
2122 if (SubExpr.isInvalid())
2123 return ExprError();
2124
2125 return Owned(MaybeCreateCXXExprWithTemporaries(SubExpr.takeAs<Expr>()));
2126}
2127
Anders Carlsson5ee56e92009-12-16 02:09:40 +00002128FullExpr Sema::CreateFullExpr(Expr *SubExpr) {
2129 unsigned FirstTemporary = ExprEvalContexts.back().NumTemporaries;
2130 assert(ExprTemporaries.size() >= FirstTemporary);
2131
2132 unsigned NumTemporaries = ExprTemporaries.size() - FirstTemporary;
2133 CXXTemporary **Temporaries =
2134 NumTemporaries == 0 ? 0 : &ExprTemporaries[FirstTemporary];
2135
2136 FullExpr E = FullExpr::Create(Context, SubExpr, Temporaries, NumTemporaries);
2137
2138 ExprTemporaries.erase(ExprTemporaries.begin() + FirstTemporary,
2139 ExprTemporaries.end());
2140
2141 return E;
2142}
2143
Mike Stump1eb44332009-09-09 15:08:12 +00002144Sema::OwningExprResult
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002145Sema::ActOnStartCXXMemberReference(Scope *S, ExprArg Base, SourceLocation OpLoc,
2146 tok::TokenKind OpKind, TypeTy *&ObjectType) {
2147 // Since this might be a postfix expression, get rid of ParenListExprs.
2148 Base = MaybeConvertParenListExprToParenExpr(S, move(Base));
Mike Stump1eb44332009-09-09 15:08:12 +00002149
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002150 Expr *BaseExpr = (Expr*)Base.get();
2151 assert(BaseExpr && "no record expansion");
Mike Stump1eb44332009-09-09 15:08:12 +00002152
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002153 QualType BaseType = BaseExpr->getType();
2154 if (BaseType->isDependentType()) {
Douglas Gregor43d88632009-11-04 22:49:18 +00002155 // If we have a pointer to a dependent type and are using the -> operator,
2156 // the object type is the type that the pointer points to. We might still
2157 // have enough information about that type to do something useful.
2158 if (OpKind == tok::arrow)
2159 if (const PointerType *Ptr = BaseType->getAs<PointerType>())
2160 BaseType = Ptr->getPointeeType();
2161
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002162 ObjectType = BaseType.getAsOpaquePtr();
2163 return move(Base);
2164 }
Mike Stump1eb44332009-09-09 15:08:12 +00002165
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002166 // C++ [over.match.oper]p8:
Mike Stump1eb44332009-09-09 15:08:12 +00002167 // [...] When operator->returns, the operator-> is applied to the value
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002168 // returned, with the original second operand.
2169 if (OpKind == tok::arrow) {
John McCallc4e83212009-09-30 01:01:30 +00002170 // The set of types we've considered so far.
John McCall432887f2009-09-30 01:30:54 +00002171 llvm::SmallPtrSet<CanQualType,8> CTypes;
Fariborz Jahanian7a8233a2009-09-30 17:46:20 +00002172 llvm::SmallVector<SourceLocation, 8> Locations;
John McCall432887f2009-09-30 01:30:54 +00002173 CTypes.insert(Context.getCanonicalType(BaseType));
John McCallc4e83212009-09-30 01:01:30 +00002174
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002175 while (BaseType->isRecordType()) {
Anders Carlsson15ea3782009-10-13 22:43:21 +00002176 Base = BuildOverloadedArrowExpr(S, move(Base), OpLoc);
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002177 BaseExpr = (Expr*)Base.get();
2178 if (BaseExpr == NULL)
2179 return ExprError();
Fariborz Jahanian7a8233a2009-09-30 17:46:20 +00002180 if (CXXOperatorCallExpr *OpCall = dyn_cast<CXXOperatorCallExpr>(BaseExpr))
Anders Carlssonde699e52009-10-13 22:55:59 +00002181 Locations.push_back(OpCall->getDirectCallee()->getLocation());
John McCallc4e83212009-09-30 01:01:30 +00002182 BaseType = BaseExpr->getType();
2183 CanQualType CBaseType = Context.getCanonicalType(BaseType);
John McCall432887f2009-09-30 01:30:54 +00002184 if (!CTypes.insert(CBaseType)) {
Fariborz Jahanian4a4e3452009-09-30 00:19:41 +00002185 Diag(OpLoc, diag::err_operator_arrow_circular);
Fariborz Jahanian7a8233a2009-09-30 17:46:20 +00002186 for (unsigned i = 0; i < Locations.size(); i++)
2187 Diag(Locations[i], diag::note_declared_at);
Fariborz Jahanian4a4e3452009-09-30 00:19:41 +00002188 return ExprError();
2189 }
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002190 }
Mike Stump1eb44332009-09-09 15:08:12 +00002191
Douglas Gregor31658df2009-11-20 19:58:21 +00002192 if (BaseType->isPointerType())
2193 BaseType = BaseType->getPointeeType();
2194 }
Mike Stump1eb44332009-09-09 15:08:12 +00002195
2196 // We could end up with various non-record types here, such as extended
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002197 // vector types or Objective-C interfaces. Just return early and let
2198 // ActOnMemberReferenceExpr do the work.
Douglas Gregorc68afe22009-09-03 21:38:09 +00002199 if (!BaseType->isRecordType()) {
2200 // C++ [basic.lookup.classref]p2:
2201 // [...] If the type of the object expression is of pointer to scalar
2202 // type, the unqualified-id is looked up in the context of the complete
2203 // postfix-expression.
2204 ObjectType = 0;
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002205 return move(Base);
Douglas Gregorc68afe22009-09-03 21:38:09 +00002206 }
Mike Stump1eb44332009-09-09 15:08:12 +00002207
Douglas Gregor03c57052009-11-17 05:17:33 +00002208 // The object type must be complete (or dependent).
2209 if (!BaseType->isDependentType() &&
2210 RequireCompleteType(OpLoc, BaseType,
2211 PDiag(diag::err_incomplete_member_access)))
2212 return ExprError();
2213
Douglas Gregorc68afe22009-09-03 21:38:09 +00002214 // C++ [basic.lookup.classref]p2:
Mike Stump1eb44332009-09-09 15:08:12 +00002215 // If the id-expression in a class member access (5.2.5) is an
Douglas Gregor03c57052009-11-17 05:17:33 +00002216 // unqualified-id, and the type of the object expression is of a class
Douglas Gregorc68afe22009-09-03 21:38:09 +00002217 // type C (or of pointer to a class type C), the unqualified-id is looked
2218 // up in the scope of class C. [...]
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002219 ObjectType = BaseType.getAsOpaquePtr();
Douglas Gregor03c57052009-11-17 05:17:33 +00002220
Mike Stump1eb44332009-09-09 15:08:12 +00002221 return move(Base);
Douglas Gregor2dd078a2009-09-02 22:59:36 +00002222}
2223
Fariborz Jahanianb7400232009-09-28 23:23:40 +00002224CXXMemberCallExpr *Sema::BuildCXXMemberCallExpr(Expr *Exp,
2225 CXXMethodDecl *Method) {
Eli Friedman772fffa2009-12-09 04:53:56 +00002226 if (PerformObjectArgumentInitialization(Exp, Method))
2227 assert(0 && "Calling BuildCXXMemberCallExpr with invalid call?");
2228
Fariborz Jahanianb7400232009-09-28 23:23:40 +00002229 MemberExpr *ME =
2230 new (Context) MemberExpr(Exp, /*IsArrow=*/false, Method,
2231 SourceLocation(), Method->getType());
Eli Friedman772fffa2009-12-09 04:53:56 +00002232 QualType ResultType = Method->getResultType().getNonReferenceType();
Douglas Gregor7edfb692009-11-23 12:27:39 +00002233 MarkDeclarationReferenced(Exp->getLocStart(), Method);
2234 CXXMemberCallExpr *CE =
2235 new (Context) CXXMemberCallExpr(Context, ME, 0, 0, ResultType,
2236 Exp->getLocEnd());
Fariborz Jahanianb7400232009-09-28 23:23:40 +00002237 return CE;
2238}
2239
Anders Carlsson0aebc812009-09-09 21:33:21 +00002240Sema::OwningExprResult Sema::BuildCXXCastArgument(SourceLocation CastLoc,
2241 QualType Ty,
2242 CastExpr::CastKind Kind,
2243 CXXMethodDecl *Method,
2244 ExprArg Arg) {
2245 Expr *From = Arg.takeAs<Expr>();
2246
2247 switch (Kind) {
2248 default: assert(0 && "Unhandled cast kind!");
2249 case CastExpr::CK_ConstructorConversion: {
Douglas Gregor39da0b82009-09-09 23:08:42 +00002250 ASTOwningVector<&ActionBase::DeleteExpr> ConstructorArgs(*this);
2251
2252 if (CompleteConstructorCall(cast<CXXConstructorDecl>(Method),
2253 MultiExprArg(*this, (void **)&From, 1),
2254 CastLoc, ConstructorArgs))
2255 return ExprError();
Anders Carlsson4fa26842009-10-18 21:20:14 +00002256
2257 OwningExprResult Result =
2258 BuildCXXConstructExpr(CastLoc, Ty, cast<CXXConstructorDecl>(Method),
2259 move_arg(ConstructorArgs));
2260 if (Result.isInvalid())
2261 return ExprError();
2262
2263 return MaybeBindToTemporary(Result.takeAs<Expr>());
Anders Carlsson0aebc812009-09-09 21:33:21 +00002264 }
2265
2266 case CastExpr::CK_UserDefinedConversion: {
Anders Carlssonaac6e3a2009-09-15 07:42:44 +00002267 assert(!From->getType()->isPointerType() && "Arg can't have pointer type!");
Eli Friedman772fffa2009-12-09 04:53:56 +00002268
Fariborz Jahanianb7400232009-09-28 23:23:40 +00002269 // Create an implicit call expr that calls it.
2270 CXXMemberCallExpr *CE = BuildCXXMemberCallExpr(From, Method);
Anders Carlsson4fa26842009-10-18 21:20:14 +00002271 return MaybeBindToTemporary(CE);
Anders Carlsson0aebc812009-09-09 21:33:21 +00002272 }
Anders Carlsson0aebc812009-09-09 21:33:21 +00002273 }
2274}
2275
Anders Carlsson165a0a02009-05-17 18:41:29 +00002276Sema::OwningExprResult Sema::ActOnFinishFullExpr(ExprArg Arg) {
2277 Expr *FullExpr = Arg.takeAs<Expr>();
Anders Carlsson99ba36d2009-06-05 15:38:08 +00002278 if (FullExpr)
Anders Carlsson0ece4912009-12-15 20:51:39 +00002279 FullExpr = MaybeCreateCXXExprWithTemporaries(FullExpr);
Anders Carlssonec773872009-08-25 23:46:41 +00002280
Anders Carlsson165a0a02009-05-17 18:41:29 +00002281 return Owned(FullExpr);
2282}
Douglas Gregore961afb2009-10-22 07:08:30 +00002283
2284/// \brief Determine whether a reference to the given declaration in the
2285/// current context is an implicit member access
2286/// (C++ [class.mfct.non-static]p2).
2287///
2288/// FIXME: Should Objective-C also use this approach?
2289///
Douglas Gregore961afb2009-10-22 07:08:30 +00002290/// \param D the declaration being referenced from the current scope.
2291///
2292/// \param NameLoc the location of the name in the source.
2293///
2294/// \param ThisType if the reference to this declaration is an implicit member
2295/// access, will be set to the type of the "this" pointer to be used when
2296/// building that implicit member access.
2297///
Douglas Gregore961afb2009-10-22 07:08:30 +00002298/// \returns true if this is an implicit member reference (in which case
2299/// \p ThisType and \p MemberType will be set), or false if it is not an
2300/// implicit member reference.
John McCall129e2df2009-11-30 22:42:35 +00002301bool Sema::isImplicitMemberReference(const LookupResult &R,
2302 QualType &ThisType) {
Douglas Gregore961afb2009-10-22 07:08:30 +00002303 // If this isn't a C++ method, then it isn't an implicit member reference.
2304 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext);
2305 if (!MD || MD->isStatic())
2306 return false;
2307
2308 // C++ [class.mfct.nonstatic]p2:
2309 // [...] if name lookup (3.4.1) resolves the name in the
2310 // id-expression to a nonstatic nontype member of class X or of
2311 // a base class of X, the id-expression is transformed into a
2312 // class member access expression (5.2.5) using (*this) (9.3.2)
2313 // as the postfix-expression to the left of the '.' operator.
2314 DeclContext *Ctx = 0;
John McCall129e2df2009-11-30 22:42:35 +00002315 if (R.isUnresolvableResult()) {
2316 // FIXME: this is just picking one at random
2317 Ctx = R.getRepresentativeDecl()->getDeclContext();
2318 } else if (FieldDecl *FD = R.getAsSingle<FieldDecl>()) {
Douglas Gregore961afb2009-10-22 07:08:30 +00002319 Ctx = FD->getDeclContext();
Douglas Gregore961afb2009-10-22 07:08:30 +00002320 } else {
John McCall129e2df2009-11-30 22:42:35 +00002321 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
2322 CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(*I);
Douglas Gregore961afb2009-10-22 07:08:30 +00002323 FunctionTemplateDecl *FunTmpl = 0;
John McCall129e2df2009-11-30 22:42:35 +00002324 if (!Method && (FunTmpl = dyn_cast<FunctionTemplateDecl>(*I)))
Douglas Gregore961afb2009-10-22 07:08:30 +00002325 Method = dyn_cast<CXXMethodDecl>(FunTmpl->getTemplatedDecl());
2326
Douglas Gregor3eefb1c2009-10-24 04:59:53 +00002327 // FIXME: Do we have to know if there are explicit template arguments?
Douglas Gregore961afb2009-10-22 07:08:30 +00002328 if (Method && !Method->isStatic()) {
2329 Ctx = Method->getParent();
Douglas Gregore961afb2009-10-22 07:08:30 +00002330 break;
2331 }
2332 }
2333 }
2334
2335 if (!Ctx || !Ctx->isRecord())
2336 return false;
2337
2338 // Determine whether the declaration(s) we found are actually in a base
2339 // class. If not, this isn't an implicit member reference.
2340 ThisType = MD->getThisType(Context);
John McCall129e2df2009-11-30 22:42:35 +00002341
2342 // FIXME: this doesn't really work for overloaded lookups.
Douglas Gregor7a343142009-11-01 17:08:18 +00002343
Douglas Gregore961afb2009-10-22 07:08:30 +00002344 QualType CtxType = Context.getTypeDeclType(cast<CXXRecordDecl>(Ctx));
2345 QualType ClassType
2346 = Context.getTypeDeclType(cast<CXXRecordDecl>(MD->getParent()));
2347 return Context.hasSameType(CtxType, ClassType) ||
2348 IsDerivedFrom(ClassType, CtxType);
2349}
2350