blob: 4bfd4fa0b569bf17684896a964afebe8616b5815 [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
Sebastian Redl7c8bd602009-02-07 20:10:22 +000014#include "SemaInherit.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000015#include "Sema.h"
16#include "clang/AST/ExprCXX.h"
Steve Naroff210679c2007-08-25 14:02:58 +000017#include "clang/AST/ASTContext.h"
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +000018#include "clang/Parse/DeclSpec.h"
Argyrios Kyrtzidis4021a842008-10-06 23:16:35 +000019#include "clang/Lex/Preprocessor.h"
Sebastian Redlb5a57a62008-12-03 20:26:15 +000020#include "clang/Basic/TargetInfo.h"
Douglas Gregor3fc749d2008-12-23 00:26:44 +000021#include "llvm/ADT/STLExtras.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000022using namespace clang;
23
Douglas Gregor487a75a2008-11-19 19:09:45 +000024/// ActOnCXXConversionFunctionExpr - Parse a C++ conversion function
Douglas Gregor2def4832008-11-17 20:34:05 +000025/// name (e.g., operator void const *) as an expression. This is
26/// very similar to ActOnIdentifierExpr, except that instead of
27/// providing an identifier the parser provides the type of the
28/// conversion function.
Sebastian Redlcd965b92009-01-18 18:53:16 +000029Sema::OwningExprResult
Douglas Gregor487a75a2008-11-19 19:09:45 +000030Sema::ActOnCXXConversionFunctionExpr(Scope *S, SourceLocation OperatorLoc,
31 TypeTy *Ty, bool HasTrailingLParen,
Sebastian Redlebc07d52009-02-03 20:19:35 +000032 const CXXScopeSpec &SS,
33 bool isAddressOfOperand) {
Douglas Gregor2def4832008-11-17 20:34:05 +000034 QualType ConvType = QualType::getFromOpaquePtr(Ty);
35 QualType ConvTypeCanon = Context.getCanonicalType(ConvType);
36 DeclarationName ConvName
37 = Context.DeclarationNames.getCXXConversionFunctionName(ConvTypeCanon);
Sebastian Redlcd965b92009-01-18 18:53:16 +000038 return ActOnDeclarationNameExpr(S, OperatorLoc, ConvName, HasTrailingLParen,
Douglas Gregor17330012009-02-04 15:01:18 +000039 &SS, isAddressOfOperand);
Douglas Gregor2def4832008-11-17 20:34:05 +000040}
Sebastian Redlc42e1182008-11-11 11:37:55 +000041
Douglas Gregor487a75a2008-11-19 19:09:45 +000042/// ActOnCXXOperatorFunctionIdExpr - Parse a C++ overloaded operator
Douglas Gregore94ca9e42008-11-18 14:39:36 +000043/// name (e.g., @c operator+ ) as an expression. This is very
44/// similar to ActOnIdentifierExpr, except that instead of providing
45/// an identifier the parser provides the kind of overloaded
46/// operator that was parsed.
Sebastian Redlcd965b92009-01-18 18:53:16 +000047Sema::OwningExprResult
Douglas Gregor487a75a2008-11-19 19:09:45 +000048Sema::ActOnCXXOperatorFunctionIdExpr(Scope *S, SourceLocation OperatorLoc,
49 OverloadedOperatorKind Op,
50 bool HasTrailingLParen,
Sebastian Redlebc07d52009-02-03 20:19:35 +000051 const CXXScopeSpec &SS,
52 bool isAddressOfOperand) {
Douglas Gregore94ca9e42008-11-18 14:39:36 +000053 DeclarationName Name = Context.DeclarationNames.getCXXOperatorName(Op);
Sebastian Redlebc07d52009-02-03 20:19:35 +000054 return ActOnDeclarationNameExpr(S, OperatorLoc, Name, HasTrailingLParen, &SS,
Douglas Gregor17330012009-02-04 15:01:18 +000055 isAddressOfOperand);
Douglas Gregore94ca9e42008-11-18 14:39:36 +000056}
57
Sebastian Redlc42e1182008-11-11 11:37:55 +000058/// ActOnCXXTypeidOfType - Parse typeid( type-id ).
59Action::ExprResult
60Sema::ActOnCXXTypeid(SourceLocation OpLoc, SourceLocation LParenLoc,
61 bool isType, void *TyOrExpr, SourceLocation RParenLoc) {
Douglas Gregor4c921ae2009-01-30 01:04:22 +000062 NamespaceDecl *StdNs = GetStdNamespace();
Chris Lattner572af492008-11-20 05:51:55 +000063 if (!StdNs)
64 return Diag(OpLoc, diag::err_need_header_before_typeid);
65
66 IdentifierInfo *TypeInfoII = &PP.getIdentifierTable().get("type_info");
Douglas Gregor4c921ae2009-01-30 01:04:22 +000067 Decl *TypeInfoDecl = LookupQualifiedName(StdNs, TypeInfoII, LookupTagName);
Sebastian Redlc42e1182008-11-11 11:37:55 +000068 RecordDecl *TypeInfoRecordDecl = dyn_cast_or_null<RecordDecl>(TypeInfoDecl);
Chris Lattner572af492008-11-20 05:51:55 +000069 if (!TypeInfoRecordDecl)
70 return Diag(OpLoc, diag::err_need_header_before_typeid);
Sebastian Redlc42e1182008-11-11 11:37:55 +000071
72 QualType TypeInfoType = Context.getTypeDeclType(TypeInfoRecordDecl);
73
Ted Kremenek8189cde2009-02-07 01:47:29 +000074 return new (Context) CXXTypeidExpr(isType, TyOrExpr, TypeInfoType.withConst(),
75 SourceRange(OpLoc, RParenLoc));
Sebastian Redlc42e1182008-11-11 11:37:55 +000076}
77
Steve Naroff1b273c42007-09-16 14:56:35 +000078/// ActOnCXXBoolLiteral - Parse {true,false} literals.
Reid Spencer5f016e22007-07-11 17:01:13 +000079Action::ExprResult
Steve Naroff1b273c42007-09-16 14:56:35 +000080Sema::ActOnCXXBoolLiteral(SourceLocation OpLoc, tok::TokenKind Kind) {
Douglas Gregor2f639b92008-10-24 15:36:09 +000081 assert((Kind == tok::kw_true || Kind == tok::kw_false) &&
Reid Spencer5f016e22007-07-11 17:01:13 +000082 "Unknown C++ Boolean value!");
Ted Kremenek8189cde2009-02-07 01:47:29 +000083 return new (Context) CXXBoolLiteralExpr(Kind == tok::kw_true, Context.BoolTy, OpLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +000084}
Chris Lattner50dd2892008-02-26 00:51:44 +000085
86/// ActOnCXXThrow - Parse throw expressions.
87Action::ExprResult
88Sema::ActOnCXXThrow(SourceLocation OpLoc, ExprTy *E) {
Ted Kremenek8189cde2009-02-07 01:47:29 +000089 return new (Context) CXXThrowExpr((Expr*)E, Context.VoidTy, OpLoc);
Chris Lattner50dd2892008-02-26 00:51:44 +000090}
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +000091
92Action::ExprResult Sema::ActOnCXXThis(SourceLocation ThisLoc) {
93 /// C++ 9.3.2: In the body of a non-static member function, the keyword this
94 /// is a non-lvalue expression whose value is the address of the object for
95 /// which the function is called.
96
97 if (!isa<FunctionDecl>(CurContext)) {
98 Diag(ThisLoc, diag::err_invalid_this_use);
99 return ExprResult(true);
100 }
101
102 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext))
103 if (MD->isInstance())
Ted Kremenek8189cde2009-02-07 01:47:29 +0000104 return new (Context) CXXThisExpr(ThisLoc, MD->getThisType(Context));
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000105
106 return Diag(ThisLoc, diag::err_invalid_this_use);
107}
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000108
109/// ActOnCXXTypeConstructExpr - Parse construction of a specified type.
110/// Can be interpreted either as function-style casting ("int(x)")
111/// or class type construction ("ClassType(x,y,z)")
112/// or creation of a value-initialized type ("int()").
113Action::ExprResult
114Sema::ActOnCXXTypeConstructExpr(SourceRange TypeRange, TypeTy *TypeRep,
115 SourceLocation LParenLoc,
116 ExprTy **ExprTys, unsigned NumExprs,
117 SourceLocation *CommaLocs,
118 SourceLocation RParenLoc) {
119 assert(TypeRep && "Missing type!");
120 QualType Ty = QualType::getFromOpaquePtr(TypeRep);
121 Expr **Exprs = (Expr**)ExprTys;
122 SourceLocation TyBeginLoc = TypeRange.getBegin();
123 SourceRange FullRange = SourceRange(TyBeginLoc, RParenLoc);
124
Douglas Gregor506ae412009-01-16 18:33:17 +0000125 // C++ [expr.type.conv]p1:
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000126 // If the expression list is a single expression, the type conversion
127 // expression is equivalent (in definedness, and if defined in meaning) to the
128 // corresponding cast expression.
129 //
130 if (NumExprs == 1) {
131 if (CheckCastTypes(TypeRange, Ty, Exprs[0]))
132 return true;
Ted Kremenek8189cde2009-02-07 01:47:29 +0000133 return new (Context) CXXFunctionalCastExpr(Ty.getNonReferenceType(), Ty,
134 TyBeginLoc, Exprs[0], RParenLoc);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000135 }
136
Douglas Gregor506ae412009-01-16 18:33:17 +0000137 if (const RecordType *RT = Ty->getAsRecordType()) {
138 CXXRecordDecl *Record = cast<CXXRecordDecl>(RT->getDecl());
139
140 if (NumExprs > 1 || Record->hasUserDeclaredConstructor()) {
141 CXXConstructorDecl *Constructor
142 = PerformInitializationByConstructor(Ty, Exprs, NumExprs,
143 TypeRange.getBegin(),
144 SourceRange(TypeRange.getBegin(),
145 RParenLoc),
146 DeclarationName(),
147 IK_Direct);
148
149 if (!Constructor)
150 return true;
151
Ted Kremenek8189cde2009-02-07 01:47:29 +0000152 return new (Context) CXXTemporaryObjectExpr(Constructor, Ty, TyBeginLoc,
Douglas Gregor506ae412009-01-16 18:33:17 +0000153 Exprs, NumExprs, RParenLoc);
154 }
155
156 // Fall through to value-initialize an object of class type that
157 // doesn't have a user-declared default constructor.
158 }
159
160 // C++ [expr.type.conv]p1:
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000161 // If the expression list specifies more than a single value, the type shall
162 // be a class with a suitably declared constructor.
163 //
164 if (NumExprs > 1)
Chris Lattnerdcd5ef12008-11-19 05:27:50 +0000165 return Diag(CommaLocs[0], diag::err_builtin_func_cast_more_than_one_arg)
166 << FullRange;
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000167
168 assert(NumExprs == 0 && "Expected 0 expressions");
169
Douglas Gregor506ae412009-01-16 18:33:17 +0000170 // C++ [expr.type.conv]p2:
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000171 // The expression T(), where T is a simple-type-specifier for a non-array
172 // complete object type or the (possibly cv-qualified) void type, creates an
173 // rvalue of the specified type, which is value-initialized.
174 //
175 if (Ty->isArrayType())
Chris Lattnerdcd5ef12008-11-19 05:27:50 +0000176 return Diag(TyBeginLoc, diag::err_value_init_for_array_type) << FullRange;
Douglas Gregor4ec339f2009-01-19 19:26:10 +0000177 if (!Ty->isDependentType() && !Ty->isVoidType() &&
178 DiagnoseIncompleteType(TyBeginLoc, Ty,
179 diag::err_invalid_incomplete_type_use, FullRange))
180 return true;
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000181
Ted Kremenek8189cde2009-02-07 01:47:29 +0000182 return new (Context) CXXZeroInitValueExpr(Ty, TyBeginLoc, RParenLoc);
Argyrios Kyrtzidis987a14b2008-08-22 15:38:55 +0000183}
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000184
185
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000186/// ActOnCXXNew - Parsed a C++ 'new' expression (C++ 5.3.4), as in e.g.:
187/// @code new (memory) int[size][4] @endcode
188/// or
189/// @code ::new Foo(23, "hello") @endcode
190/// For the interpretation of this heap of arguments, consult the base version.
191Action::ExprResult
192Sema::ActOnCXXNew(SourceLocation StartLoc, bool UseGlobal,
193 SourceLocation PlacementLParen,
194 ExprTy **PlacementArgs, unsigned NumPlaceArgs,
195 SourceLocation PlacementRParen, bool ParenTypeId,
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000196 Declarator &D, SourceLocation ConstructorLParen,
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000197 ExprTy **ConstructorArgs, unsigned NumConsArgs,
198 SourceLocation ConstructorRParen)
199{
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000200 Expr *ArraySize = 0;
201 unsigned Skip = 0;
202 // If the specified type is an array, unwrap it and save the expression.
203 if (D.getNumTypeObjects() > 0 &&
204 D.getTypeObject(0).Kind == DeclaratorChunk::Array) {
205 DeclaratorChunk &Chunk = D.getTypeObject(0);
206 if (Chunk.Arr.hasStatic)
Sebastian Redl00e68e22009-02-09 18:24:27 +0000207 return Diag(Chunk.Loc, diag::err_static_illegal_in_new)
208 << D.getSourceRange();
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000209 if (!Chunk.Arr.NumElts)
Sebastian Redl00e68e22009-02-09 18:24:27 +0000210 return Diag(Chunk.Loc, diag::err_array_new_needs_size)
211 << D.getSourceRange();
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000212 ArraySize = static_cast<Expr*>(Chunk.Arr.NumElts);
213 Skip = 1;
214 }
215
216 QualType AllocType = GetTypeForDeclarator(D, /*Scope=*/0, Skip);
217 if (D.getInvalidType())
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000218 return true;
219
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000220 if (CheckAllocatedType(AllocType, D))
221 return true;
222
223 QualType ResultType = Context.getPointerType(AllocType);
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000224
225 // That every array dimension except the first is constant was already
226 // checked by the type check above.
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000227
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000228 // C++ 5.3.4p6: "The expression in a direct-new-declarator shall have integral
229 // or enumeration type with a non-negative value."
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000230 if (ArraySize) {
231 QualType SizeType = ArraySize->getType();
232 if (!SizeType->isIntegralType() && !SizeType->isEnumeralType())
233 return Diag(ArraySize->getSourceRange().getBegin(),
234 diag::err_array_size_not_integral)
235 << SizeType << ArraySize->getSourceRange();
236 // Let's see if this is a constant < 0. If so, we reject it out of hand.
237 // We don't care about special rules, so we tell the machinery it's not
238 // evaluated - it gives us a result in more cases.
239 llvm::APSInt Value;
240 if (ArraySize->isIntegerConstantExpr(Value, Context, 0, false)) {
241 if (Value < llvm::APSInt(
242 llvm::APInt::getNullValue(Value.getBitWidth()), false))
243 return Diag(ArraySize->getSourceRange().getBegin(),
244 diag::err_typecheck_negative_array_size)
245 << ArraySize->getSourceRange();
246 }
247 }
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000248
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000249 FunctionDecl *OperatorNew = 0;
250 FunctionDecl *OperatorDelete = 0;
251 Expr **PlaceArgs = (Expr**)PlacementArgs;
Sebastian Redl00e68e22009-02-09 18:24:27 +0000252 if (FindAllocationFunctions(StartLoc,
253 SourceRange(PlacementLParen, PlacementRParen),
254 UseGlobal, AllocType, ArraySize, PlaceArgs,
255 NumPlaceArgs, OperatorNew, OperatorDelete))
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000256 return true;
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000257
258 bool Init = ConstructorLParen.isValid();
259 // --- Choosing a constructor ---
260 // C++ 5.3.4p15
261 // 1) If T is a POD and there's no initializer (ConstructorLParen is invalid)
262 // the object is not initialized. If the object, or any part of it, is
263 // const-qualified, it's an error.
264 // 2) If T is a POD and there's an empty initializer, the object is value-
265 // initialized.
266 // 3) If T is a POD and there's one initializer argument, the object is copy-
267 // constructed.
268 // 4) If T is a POD and there's more initializer arguments, it's an error.
269 // 5) If T is not a POD, the initializer arguments are used as constructor
270 // arguments.
271 //
272 // Or by the C++0x formulation:
273 // 1) If there's no initializer, the object is default-initialized according
274 // to C++0x rules.
275 // 2) Otherwise, the object is direct-initialized.
276 CXXConstructorDecl *Constructor = 0;
277 Expr **ConsArgs = (Expr**)ConstructorArgs;
Sebastian Redl00e68e22009-02-09 18:24:27 +0000278 // FIXME: Should check for primitive/aggregate here, not record.
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000279 if (const RecordType *RT = AllocType->getAsRecordType()) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000280 // FIXME: This is incorrect for when there is an empty initializer and
281 // no user-defined constructor. Must zero-initialize, not default-construct.
282 Constructor = PerformInitializationByConstructor(
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000283 AllocType, ConsArgs, NumConsArgs,
Sebastian Redl00e68e22009-02-09 18:24:27 +0000284 D.getSourceRange().getBegin(),
285 SourceRange(D.getSourceRange().getBegin(),
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000286 ConstructorRParen),
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000287 RT->getDecl()->getDeclName(),
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000288 NumConsArgs != 0 ? IK_Direct : IK_Default);
289 if (!Constructor)
290 return true;
291 } else {
292 if (!Init) {
293 // FIXME: Check that no subpart is const.
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000294 if (AllocType.isConstQualified()) {
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000295 Diag(StartLoc, diag::err_new_uninitialized_const)
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000296 << D.getSourceRange();
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000297 return true;
298 }
299 } else if (NumConsArgs == 0) {
300 // Object is value-initialized. Do nothing.
301 } else if (NumConsArgs == 1) {
302 // Object is direct-initialized.
Chris Lattnerd9d22dd2008-11-24 05:29:24 +0000303 // FIXME: WHAT DeclarationName do we pass in here?
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000304 if (CheckInitializerTypes(ConsArgs[0], AllocType, StartLoc,
Douglas Gregor09f41cf2009-01-14 15:45:31 +0000305 DeclarationName() /*AllocType.getAsString()*/,
306 /*DirectInit=*/true))
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000307 return true;
308 } else {
309 Diag(StartLoc, diag::err_builtin_direct_init_more_than_one_arg)
310 << SourceRange(ConstructorLParen, ConstructorRParen);
311 }
312 }
313
314 // FIXME: Also check that the destructor is accessible. (C++ 5.3.4p16)
315
Ted Kremenek8189cde2009-02-07 01:47:29 +0000316 return new (Context) CXXNewExpr(UseGlobal, OperatorNew, PlaceArgs,
317 NumPlaceArgs, ParenTypeId, ArraySize, Constructor, Init,
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000318 ConsArgs, NumConsArgs, OperatorDelete, ResultType,
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000319 StartLoc, Init ? ConstructorRParen : SourceLocation());
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000320}
321
322/// CheckAllocatedType - Checks that a type is suitable as the allocated type
323/// in a new-expression.
324/// dimension off and stores the size expression in ArraySize.
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000325bool Sema::CheckAllocatedType(QualType AllocType, const Declarator &D)
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000326{
327 // C++ 5.3.4p1: "[The] type shall be a complete object type, but not an
328 // abstract class type or array thereof.
329 // FIXME: We don't have abstract types yet.
330 // FIXME: Under C++ semantics, an incomplete object type is still an object
331 // type. This code assumes the C semantics, where it's not.
332 if (!AllocType->isObjectType()) {
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000333 unsigned type; // For the select in the message.
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000334 if (AllocType->isFunctionType()) {
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000335 type = 0;
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000336 } else if(AllocType->isIncompleteType()) {
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000337 type = 1;
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000338 } else {
Sebastian Redl00e68e22009-02-09 18:24:27 +0000339 assert(AllocType->isReferenceType() && "Unhandled non-object type.");
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000340 type = 2;
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000341 }
Sebastian Redl00e68e22009-02-09 18:24:27 +0000342 Diag(D.getSourceRange().getBegin(), diag::err_bad_new_type)
343 << AllocType << type << D.getSourceRange();
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000344 return true;
345 }
346
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000347 // Every dimension shall be of constant size.
348 unsigned i = 1;
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000349 while (const ArrayType *Array = Context.getAsArrayType(AllocType)) {
350 if (!Array->isConstantArrayType()) {
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000351 Diag(D.getTypeObject(i).Loc, diag::err_new_array_nonconst)
352 << static_cast<Expr*>(D.getTypeObject(i).Arr.NumElts)->getSourceRange();
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000353 return true;
354 }
355 AllocType = Array->getElementType();
Sebastian Redlcee63fb2008-12-02 14:43:59 +0000356 ++i;
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000357 }
358
359 return false;
360}
361
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000362/// FindAllocationFunctions - Finds the overloads of operator new and delete
363/// that are appropriate for the allocation.
Sebastian Redl00e68e22009-02-09 18:24:27 +0000364bool Sema::FindAllocationFunctions(SourceLocation StartLoc, SourceRange Range,
365 bool UseGlobal, QualType AllocType,
366 bool IsArray, Expr **PlaceArgs,
367 unsigned NumPlaceArgs,
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000368 FunctionDecl *&OperatorNew,
369 FunctionDecl *&OperatorDelete)
370{
371 // --- Choosing an allocation function ---
372 // C++ 5.3.4p8 - 14 & 18
373 // 1) If UseGlobal is true, only look in the global scope. Else, also look
374 // in the scope of the allocated class.
375 // 2) If an array size is given, look for operator new[], else look for
376 // operator new.
377 // 3) The first argument is always size_t. Append the arguments from the
378 // placement form.
379 // FIXME: Also find the appropriate delete operator.
380
381 llvm::SmallVector<Expr*, 8> AllocArgs(1 + NumPlaceArgs);
382 // We don't care about the actual value of this argument.
383 // FIXME: Should the Sema create the expression and embed it in the syntax
384 // tree? Or should the consumer just recalculate the value?
Ted Kremenek8189cde2009-02-07 01:47:29 +0000385 AllocArgs[0] = new (Context) IntegerLiteral(llvm::APInt::getNullValue(
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000386 Context.Target.getPointerWidth(0)),
387 Context.getSizeType(),
388 SourceLocation());
389 std::copy(PlaceArgs, PlaceArgs + NumPlaceArgs, AllocArgs.begin() + 1);
390
391 DeclarationName NewName = Context.DeclarationNames.getCXXOperatorName(
392 IsArray ? OO_Array_New : OO_New);
393 if (AllocType->isRecordType() && !UseGlobal) {
Sebastian Redl7f662392008-12-04 22:20:51 +0000394 CXXRecordDecl *Record = cast<CXXRecordType>(AllocType->getAsRecordType())
395 ->getDecl();
396 // FIXME: We fail to find inherited overloads.
Sebastian Redl00e68e22009-02-09 18:24:27 +0000397 if (FindAllocationOverload(StartLoc, Range, NewName, &AllocArgs[0],
Sebastian Redl7f662392008-12-04 22:20:51 +0000398 AllocArgs.size(), Record, /*AllowMissing=*/true,
399 OperatorNew))
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000400 return true;
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000401 }
402 if (!OperatorNew) {
403 // Didn't find a member overload. Look for a global one.
404 DeclareGlobalNewDelete();
Sebastian Redl7f662392008-12-04 22:20:51 +0000405 DeclContext *TUDecl = Context.getTranslationUnitDecl();
Sebastian Redl00e68e22009-02-09 18:24:27 +0000406 if (FindAllocationOverload(StartLoc, Range, NewName, &AllocArgs[0],
Sebastian Redl7f662392008-12-04 22:20:51 +0000407 AllocArgs.size(), TUDecl, /*AllowMissing=*/false,
408 OperatorNew))
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000409 return true;
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000410 }
411
Sebastian Redl7f662392008-12-04 22:20:51 +0000412 // FIXME: This is leaked on error. But so much is currently in Sema that it's
413 // easier to clean it in one go.
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000414 AllocArgs[0]->Destroy(Context);
415 return false;
416}
417
Sebastian Redl7f662392008-12-04 22:20:51 +0000418/// FindAllocationOverload - Find an fitting overload for the allocation
419/// function in the specified scope.
Sebastian Redl00e68e22009-02-09 18:24:27 +0000420bool Sema::FindAllocationOverload(SourceLocation StartLoc, SourceRange Range,
421 DeclarationName Name, Expr** Args,
422 unsigned NumArgs, DeclContext *Ctx,
423 bool AllowMissing, FunctionDecl *&Operator)
Sebastian Redl7f662392008-12-04 22:20:51 +0000424{
Douglas Gregor3fc749d2008-12-23 00:26:44 +0000425 DeclContext::lookup_iterator Alloc, AllocEnd;
Steve Naroff0701bbb2009-01-08 17:28:14 +0000426 llvm::tie(Alloc, AllocEnd) = Ctx->lookup(Name);
Douglas Gregor3fc749d2008-12-23 00:26:44 +0000427 if (Alloc == AllocEnd) {
Sebastian Redl7f662392008-12-04 22:20:51 +0000428 if (AllowMissing)
429 return false;
Sebastian Redl7f662392008-12-04 22:20:51 +0000430 return Diag(StartLoc, diag::err_ovl_no_viable_function_in_call)
Sebastian Redl00e68e22009-02-09 18:24:27 +0000431 << Name << 0 << Range;
Sebastian Redl7f662392008-12-04 22:20:51 +0000432 }
433
434 OverloadCandidateSet Candidates;
Douglas Gregor3fc749d2008-12-23 00:26:44 +0000435 for (; Alloc != AllocEnd; ++Alloc) {
436 // Even member operator new/delete are implicitly treated as
437 // static, so don't use AddMemberCandidate.
438 if (FunctionDecl *Fn = dyn_cast<FunctionDecl>(*Alloc))
439 AddOverloadCandidate(Fn, Args, NumArgs, Candidates,
440 /*SuppressUserConversions=*/false);
Sebastian Redl7f662392008-12-04 22:20:51 +0000441 }
442
443 // Do the resolution.
444 OverloadCandidateSet::iterator Best;
445 switch(BestViableFunction(Candidates, Best)) {
446 case OR_Success: {
447 // Got one!
448 FunctionDecl *FnDecl = Best->Function;
449 // The first argument is size_t, and the first parameter must be size_t,
450 // too. This is checked on declaration and can be assumed. (It can't be
451 // asserted on, though, since invalid decls are left in there.)
452 for (unsigned i = 1; i < NumArgs; ++i) {
453 // FIXME: Passing word to diagnostic.
454 if (PerformCopyInitialization(Args[i-1],
455 FnDecl->getParamDecl(i)->getType(),
456 "passing"))
457 return true;
458 }
459 Operator = FnDecl;
460 return false;
461 }
462
463 case OR_No_Viable_Function:
464 if (AllowMissing)
465 return false;
Sebastian Redl7f662392008-12-04 22:20:51 +0000466 Diag(StartLoc, diag::err_ovl_no_viable_function_in_call)
Sebastian Redl00e68e22009-02-09 18:24:27 +0000467 << Name << (unsigned)Candidates.size() << Range;
Sebastian Redl7f662392008-12-04 22:20:51 +0000468 PrintOverloadCandidates(Candidates, /*OnlyViable=*/false);
469 return true;
470
471 case OR_Ambiguous:
Sebastian Redl7f662392008-12-04 22:20:51 +0000472 Diag(StartLoc, diag::err_ovl_ambiguous_call)
Sebastian Redl00e68e22009-02-09 18:24:27 +0000473 << Name << Range;
Sebastian Redl7f662392008-12-04 22:20:51 +0000474 PrintOverloadCandidates(Candidates, /*OnlyViable=*/true);
475 return true;
476 }
477 assert(false && "Unreachable, bad result from BestViableFunction");
478 return true;
479}
480
481
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000482/// DeclareGlobalNewDelete - Declare the global forms of operator new and
483/// delete. These are:
484/// @code
485/// void* operator new(std::size_t) throw(std::bad_alloc);
486/// void* operator new[](std::size_t) throw(std::bad_alloc);
487/// void operator delete(void *) throw();
488/// void operator delete[](void *) throw();
489/// @endcode
490/// Note that the placement and nothrow forms of new are *not* implicitly
491/// declared. Their use requires including \<new\>.
492void Sema::DeclareGlobalNewDelete()
493{
494 if (GlobalNewDeleteDeclared)
495 return;
496 GlobalNewDeleteDeclared = true;
497
498 QualType VoidPtr = Context.getPointerType(Context.VoidTy);
499 QualType SizeT = Context.getSizeType();
500
501 // FIXME: Exception specifications are not added.
502 DeclareGlobalAllocationFunction(
503 Context.DeclarationNames.getCXXOperatorName(OO_New),
504 VoidPtr, SizeT);
505 DeclareGlobalAllocationFunction(
506 Context.DeclarationNames.getCXXOperatorName(OO_Array_New),
507 VoidPtr, SizeT);
508 DeclareGlobalAllocationFunction(
509 Context.DeclarationNames.getCXXOperatorName(OO_Delete),
510 Context.VoidTy, VoidPtr);
511 DeclareGlobalAllocationFunction(
512 Context.DeclarationNames.getCXXOperatorName(OO_Array_Delete),
513 Context.VoidTy, VoidPtr);
514}
515
516/// DeclareGlobalAllocationFunction - Declares a single implicit global
517/// allocation function if it doesn't already exist.
518void Sema::DeclareGlobalAllocationFunction(DeclarationName Name,
519 QualType Return, QualType Argument)
520{
521 DeclContext *GlobalCtx = Context.getTranslationUnitDecl();
522
523 // Check if this function is already declared.
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000524 {
Douglas Gregor5cc37092008-12-23 22:05:29 +0000525 DeclContext::lookup_iterator Alloc, AllocEnd;
Steve Naroff0701bbb2009-01-08 17:28:14 +0000526 for (llvm::tie(Alloc, AllocEnd) = GlobalCtx->lookup(Name);
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000527 Alloc != AllocEnd; ++Alloc) {
528 // FIXME: Do we need to check for default arguments here?
529 FunctionDecl *Func = cast<FunctionDecl>(*Alloc);
530 if (Func->getNumParams() == 1 &&
Ted Kremenek8189cde2009-02-07 01:47:29 +0000531 Context.getCanonicalType(Func->getParamDecl(0)->getType())==Argument)
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000532 return;
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000533 }
534 }
535
536 QualType FnType = Context.getFunctionType(Return, &Argument, 1, false, 0);
537 FunctionDecl *Alloc =
538 FunctionDecl::Create(Context, GlobalCtx, SourceLocation(), Name,
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000539 FnType, FunctionDecl::None, false,
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000540 SourceLocation());
541 Alloc->setImplicit();
542 ParmVarDecl *Param = ParmVarDecl::Create(Context, Alloc, SourceLocation(),
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000543 0, Argument, VarDecl::None, 0);
Ted Kremenekfc767612009-01-14 00:42:25 +0000544 Alloc->setParams(Context, &Param, 1);
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000545
Douglas Gregor6ed40e32008-12-23 21:05:05 +0000546 // FIXME: Also add this declaration to the IdentifierResolver, but
547 // make sure it is at the end of the chain to coincide with the
548 // global scope.
Douglas Gregor482b77d2009-01-12 23:27:07 +0000549 ((DeclContext *)TUScope->getEntity())->addDecl(Alloc);
Sebastian Redlb5a57a62008-12-03 20:26:15 +0000550}
551
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000552/// ActOnCXXDelete - Parsed a C++ 'delete' expression (C++ 5.3.5), as in:
553/// @code ::delete ptr; @endcode
554/// or
555/// @code delete [] ptr; @endcode
556Action::ExprResult
557Sema::ActOnCXXDelete(SourceLocation StartLoc, bool UseGlobal,
558 bool ArrayForm, ExprTy *Operand)
559{
560 // C++ 5.3.5p1: "The operand shall have a pointer type, or a class type
561 // having a single conversion function to a pointer type. The result has
562 // type void."
563 // DR599 amends "pointer type" to "pointer to object type" in both cases.
564
565 Expr *Ex = (Expr *)Operand;
566 QualType Type = Ex->getType();
567
568 if (Type->isRecordType()) {
569 // FIXME: Find that one conversion function and amend the type.
570 }
571
572 if (!Type->isPointerType()) {
Chris Lattnerd1625842008-11-24 06:25:27 +0000573 Diag(StartLoc, diag::err_delete_operand) << Type << Ex->getSourceRange();
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000574 return true;
575 }
576
577 QualType Pointee = Type->getAsPointerType()->getPointeeType();
Douglas Gregor4ec339f2009-01-19 19:26:10 +0000578 if (!Pointee->isVoidType() &&
579 DiagnoseIncompleteType(StartLoc, Pointee, diag::warn_delete_incomplete,
580 Ex->getSourceRange()))
581 return true;
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000582 else if (!Pointee->isObjectType()) {
583 Diag(StartLoc, diag::err_delete_operand)
Chris Lattnerd1625842008-11-24 06:25:27 +0000584 << Type << Ex->getSourceRange();
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000585 return true;
586 }
587
588 // FIXME: Look up the correct operator delete overload and pass a pointer
589 // along.
590 // FIXME: Check access and ambiguity of operator delete and destructor.
591
Ted Kremenek8189cde2009-02-07 01:47:29 +0000592 return new (Context) CXXDeleteExpr(Context.VoidTy, UseGlobal, ArrayForm, 0,
593 Ex, StartLoc);
Sebastian Redl4c5d3202008-11-21 19:14:01 +0000594}
595
596
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000597/// ActOnCXXConditionDeclarationExpr - Parsed a condition declaration of a
598/// C++ if/switch/while/for statement.
599/// e.g: "if (int x = f()) {...}"
600Action::ExprResult
601Sema::ActOnCXXConditionDeclarationExpr(Scope *S, SourceLocation StartLoc,
602 Declarator &D,
603 SourceLocation EqualLoc,
604 ExprTy *AssignExprVal) {
605 assert(AssignExprVal && "Null assignment expression");
606
607 // C++ 6.4p2:
608 // The declarator shall not specify a function or an array.
609 // The type-specifier-seq shall not contain typedef and shall not declare a
610 // new class or enumeration.
611
612 assert(D.getDeclSpec().getStorageClassSpec() != DeclSpec::SCS_typedef &&
613 "Parser allowed 'typedef' as storage class of condition decl.");
614
615 QualType Ty = GetTypeForDeclarator(D, S);
616
617 if (Ty->isFunctionType()) { // The declarator shall not specify a function...
618 // We exit without creating a CXXConditionDeclExpr because a FunctionDecl
619 // would be created and CXXConditionDeclExpr wants a VarDecl.
Chris Lattnerdcd5ef12008-11-19 05:27:50 +0000620 return Diag(StartLoc, diag::err_invalid_use_of_function_type)
621 << SourceRange(StartLoc, EqualLoc);
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000622 } else if (Ty->isArrayType()) { // ...or an array.
Chris Lattnerdcd5ef12008-11-19 05:27:50 +0000623 Diag(StartLoc, diag::err_invalid_use_of_array_type)
624 << SourceRange(StartLoc, EqualLoc);
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000625 } else if (const RecordType *RT = Ty->getAsRecordType()) {
626 RecordDecl *RD = RT->getDecl();
627 // The type-specifier-seq shall not declare a new class...
628 if (RD->isDefinition() && (RD->getIdentifier() == 0 || S->isDeclScope(RD)))
629 Diag(RD->getLocation(), diag::err_type_defined_in_condition);
630 } else if (const EnumType *ET = Ty->getAsEnumType()) {
631 EnumDecl *ED = ET->getDecl();
632 // ...or enumeration.
633 if (ED->isDefinition() && (ED->getIdentifier() == 0 || S->isDeclScope(ED)))
634 Diag(ED->getLocation(), diag::err_type_defined_in_condition);
635 }
636
637 DeclTy *Dcl = ActOnDeclarator(S, D, 0);
638 if (!Dcl)
639 return true;
Sebastian Redl798d1192008-12-13 16:23:55 +0000640 AddInitializerToDecl(Dcl, ExprArg(*this, AssignExprVal));
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000641
Douglas Gregorcaaf29a2008-12-10 23:01:14 +0000642 // Mark this variable as one that is declared within a conditional.
643 if (VarDecl *VD = dyn_cast<VarDecl>((Decl *)Dcl))
644 VD->setDeclaredInCondition(true);
645
Ted Kremenek8189cde2009-02-07 01:47:29 +0000646 return new (Context) CXXConditionDeclExpr(StartLoc, EqualLoc,
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000647 cast<VarDecl>(static_cast<Decl *>(Dcl)));
648}
649
650/// CheckCXXBooleanCondition - Returns true if a conversion to bool is invalid.
651bool Sema::CheckCXXBooleanCondition(Expr *&CondExpr) {
652 // C++ 6.4p4:
653 // The value of a condition that is an initialized declaration in a statement
654 // other than a switch statement is the value of the declared variable
655 // implicitly converted to type bool. If that conversion is ill-formed, the
656 // program is ill-formed.
657 // The value of a condition that is an expression is the value of the
658 // expression, implicitly converted to bool.
659 //
Douglas Gregor09f41cf2009-01-14 15:45:31 +0000660 return PerformContextuallyConvertToBool(CondExpr);
Argyrios Kyrtzidis59210932008-09-10 02:17:11 +0000661}
Douglas Gregor77a52232008-09-12 00:47:35 +0000662
663/// Helper function to determine whether this is the (deprecated) C++
664/// conversion from a string literal to a pointer to non-const char or
665/// non-const wchar_t (for narrow and wide string literals,
666/// respectively).
667bool
668Sema::IsStringLiteralToNonConstPointerConversion(Expr *From, QualType ToType) {
669 // Look inside the implicit cast, if it exists.
670 if (ImplicitCastExpr *Cast = dyn_cast<ImplicitCastExpr>(From))
671 From = Cast->getSubExpr();
672
673 // A string literal (2.13.4) that is not a wide string literal can
674 // be converted to an rvalue of type "pointer to char"; a wide
675 // string literal can be converted to an rvalue of type "pointer
676 // to wchar_t" (C++ 4.2p2).
677 if (StringLiteral *StrLit = dyn_cast<StringLiteral>(From))
678 if (const PointerType *ToPtrType = ToType->getAsPointerType())
679 if (const BuiltinType *ToPointeeType
680 = ToPtrType->getPointeeType()->getAsBuiltinType()) {
681 // This conversion is considered only when there is an
682 // explicit appropriate pointer target type (C++ 4.2p2).
683 if (ToPtrType->getPointeeType().getCVRQualifiers() == 0 &&
684 ((StrLit->isWide() && ToPointeeType->isWideCharType()) ||
685 (!StrLit->isWide() &&
686 (ToPointeeType->getKind() == BuiltinType::Char_U ||
687 ToPointeeType->getKind() == BuiltinType::Char_S))))
688 return true;
689 }
690
691 return false;
692}
Douglas Gregor94b1dd22008-10-24 04:54:22 +0000693
694/// PerformImplicitConversion - Perform an implicit conversion of the
695/// expression From to the type ToType. Returns true if there was an
696/// error, false otherwise. The expression From is replaced with the
Douglas Gregor45920e82008-12-19 17:40:08 +0000697/// converted expression. Flavor is the kind of conversion we're
Douglas Gregor09f41cf2009-01-14 15:45:31 +0000698/// performing, used in the error message. If @p AllowExplicit,
699/// explicit user-defined conversions are permitted.
Douglas Gregor94b1dd22008-10-24 04:54:22 +0000700bool
Douglas Gregor45920e82008-12-19 17:40:08 +0000701Sema::PerformImplicitConversion(Expr *&From, QualType ToType,
Douglas Gregor09f41cf2009-01-14 15:45:31 +0000702 const char *Flavor, bool AllowExplicit)
Douglas Gregor94b1dd22008-10-24 04:54:22 +0000703{
Douglas Gregor09f41cf2009-01-14 15:45:31 +0000704 ImplicitConversionSequence ICS = TryImplicitConversion(From, ToType, false,
705 AllowExplicit);
706 return PerformImplicitConversion(From, ToType, ICS, Flavor);
707}
708
709/// PerformImplicitConversion - Perform an implicit conversion of the
710/// expression From to the type ToType using the pre-computed implicit
711/// conversion sequence ICS. Returns true if there was an error, false
712/// otherwise. The expression From is replaced with the converted
713/// expression. Flavor is the kind of conversion we're performing,
714/// used in the error message.
715bool
716Sema::PerformImplicitConversion(Expr *&From, QualType ToType,
717 const ImplicitConversionSequence &ICS,
718 const char* Flavor) {
Douglas Gregor94b1dd22008-10-24 04:54:22 +0000719 switch (ICS.ConversionKind) {
720 case ImplicitConversionSequence::StandardConversion:
Douglas Gregor45920e82008-12-19 17:40:08 +0000721 if (PerformImplicitConversion(From, ToType, ICS.Standard, Flavor))
Douglas Gregor94b1dd22008-10-24 04:54:22 +0000722 return true;
723 break;
724
725 case ImplicitConversionSequence::UserDefinedConversion:
726 // FIXME: This is, of course, wrong. We'll need to actually call
727 // the constructor or conversion operator, and then cope with the
728 // standard conversions.
Douglas Gregor09f41cf2009-01-14 15:45:31 +0000729 ImpCastExprToType(From, ToType.getNonReferenceType(),
730 ToType->isReferenceType());
Douglas Gregor60d62c22008-10-31 16:23:19 +0000731 return false;
Douglas Gregor94b1dd22008-10-24 04:54:22 +0000732
733 case ImplicitConversionSequence::EllipsisConversion:
734 assert(false && "Cannot perform an ellipsis conversion");
Douglas Gregor60d62c22008-10-31 16:23:19 +0000735 return false;
Douglas Gregor94b1dd22008-10-24 04:54:22 +0000736
737 case ImplicitConversionSequence::BadConversion:
738 return true;
739 }
740
741 // Everything went well.
742 return false;
743}
744
745/// PerformImplicitConversion - Perform an implicit conversion of the
746/// expression From to the type ToType by following the standard
747/// conversion sequence SCS. Returns true if there was an error, false
748/// otherwise. The expression From is replaced with the converted
Douglas Gregor45920e82008-12-19 17:40:08 +0000749/// expression. Flavor is the context in which we're performing this
750/// conversion, for use in error messages.
Douglas Gregor94b1dd22008-10-24 04:54:22 +0000751bool
752Sema::PerformImplicitConversion(Expr *&From, QualType ToType,
Douglas Gregor45920e82008-12-19 17:40:08 +0000753 const StandardConversionSequence& SCS,
Douglas Gregor09f41cf2009-01-14 15:45:31 +0000754 const char *Flavor) {
Douglas Gregor94b1dd22008-10-24 04:54:22 +0000755 // Overall FIXME: we are recomputing too many types here and doing
756 // far too much extra work. What this means is that we need to keep
757 // track of more information that is computed when we try the
758 // implicit conversion initially, so that we don't need to recompute
759 // anything here.
760 QualType FromType = From->getType();
761
Douglas Gregor225c41e2008-11-03 19:09:14 +0000762 if (SCS.CopyConstructor) {
763 // FIXME: Create a temporary object by calling the copy
764 // constructor.
Douglas Gregor66b947f2009-01-16 19:38:23 +0000765 ImpCastExprToType(From, ToType.getNonReferenceType(),
766 ToType->isReferenceType());
Douglas Gregor225c41e2008-11-03 19:09:14 +0000767 return false;
768 }
769
Douglas Gregor94b1dd22008-10-24 04:54:22 +0000770 // Perform the first implicit conversion.
771 switch (SCS.First) {
772 case ICK_Identity:
773 case ICK_Lvalue_To_Rvalue:
774 // Nothing to do.
775 break;
776
777 case ICK_Array_To_Pointer:
Douglas Gregor904eed32008-11-10 20:40:00 +0000778 if (FromType->isOverloadType()) {
779 FunctionDecl *Fn = ResolveAddressOfOverloadedFunction(From, ToType, true);
780 if (!Fn)
781 return true;
782
783 FixOverloadedFunctionReference(From, Fn);
784 FromType = From->getType();
785 } else {
786 FromType = Context.getArrayDecayedType(FromType);
787 }
Douglas Gregor94b1dd22008-10-24 04:54:22 +0000788 ImpCastExprToType(From, FromType);
789 break;
790
791 case ICK_Function_To_Pointer:
792 FromType = Context.getPointerType(FromType);
793 ImpCastExprToType(From, FromType);
794 break;
795
796 default:
797 assert(false && "Improper first standard conversion");
798 break;
799 }
800
801 // Perform the second implicit conversion
802 switch (SCS.Second) {
803 case ICK_Identity:
804 // Nothing to do.
805 break;
806
807 case ICK_Integral_Promotion:
808 case ICK_Floating_Promotion:
809 case ICK_Integral_Conversion:
810 case ICK_Floating_Conversion:
811 case ICK_Floating_Integral:
812 FromType = ToType.getUnqualifiedType();
813 ImpCastExprToType(From, FromType);
814 break;
815
816 case ICK_Pointer_Conversion:
Douglas Gregor45920e82008-12-19 17:40:08 +0000817 if (SCS.IncompatibleObjC) {
818 // Diagnose incompatible Objective-C conversions
819 Diag(From->getSourceRange().getBegin(),
820 diag::ext_typecheck_convert_incompatible_pointer)
821 << From->getType() << ToType << Flavor
822 << From->getSourceRange();
823 }
824
Douglas Gregor94b1dd22008-10-24 04:54:22 +0000825 if (CheckPointerConversion(From, ToType))
826 return true;
827 ImpCastExprToType(From, ToType);
828 break;
829
830 case ICK_Pointer_Member:
Sebastian Redl4433aaf2009-01-25 19:43:20 +0000831 if (CheckMemberPointerConversion(From, ToType))
832 return true;
833 ImpCastExprToType(From, ToType);
Douglas Gregor94b1dd22008-10-24 04:54:22 +0000834 break;
835
836 case ICK_Boolean_Conversion:
837 FromType = Context.BoolTy;
838 ImpCastExprToType(From, FromType);
839 break;
840
841 default:
842 assert(false && "Improper second standard conversion");
843 break;
844 }
845
846 switch (SCS.Third) {
847 case ICK_Identity:
848 // Nothing to do.
849 break;
850
851 case ICK_Qualification:
Douglas Gregor66b947f2009-01-16 19:38:23 +0000852 ImpCastExprToType(From, ToType.getNonReferenceType(),
853 ToType->isReferenceType());
Douglas Gregor94b1dd22008-10-24 04:54:22 +0000854 break;
855
856 default:
857 assert(false && "Improper second standard conversion");
858 break;
859 }
860
861 return false;
862}
863
Sebastian Redl64b45f72009-01-05 20:52:13 +0000864Sema::OwningExprResult Sema::ActOnUnaryTypeTrait(UnaryTypeTrait OTT,
865 SourceLocation KWLoc,
866 SourceLocation LParen,
867 TypeTy *Ty,
868 SourceLocation RParen) {
869 // FIXME: Some of the type traits have requirements. Interestingly, only the
870 // __is_base_of requirement is explicitly stated to be diagnosed. Indeed,
871 // G++ accepts __is_pod(Incomplete) without complaints, and claims that the
872 // type is indeed a POD.
873
874 // There is no point in eagerly computing the value. The traits are designed
875 // to be used from type trait templates, so Ty will be a template parameter
876 // 99% of the time.
Ted Kremenek8189cde2009-02-07 01:47:29 +0000877 return Owned(new (Context) UnaryTypeTraitExpr(KWLoc, OTT,
Sebastian Redl64b45f72009-01-05 20:52:13 +0000878 QualType::getFromOpaquePtr(Ty),
879 RParen, Context.BoolTy));
880}
Sebastian Redl7c8bd602009-02-07 20:10:22 +0000881
882QualType Sema::CheckPointerToMemberOperands(
883 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isIndirect)
884{
885 const char *OpSpelling = isIndirect ? "->*" : ".*";
886 // C++ 5.5p2
887 // The binary operator .* [p3: ->*] binds its second operand, which shall
888 // be of type "pointer to member of T" (where T is a completely-defined
889 // class type) [...]
890 QualType RType = rex->getType();
891 const MemberPointerType *MemPtr = RType->getAsMemberPointerType();
892 if (!MemPtr || MemPtr->getClass()->isIncompleteType()) {
893 Diag(Loc, diag::err_bad_memptr_rhs)
894 << OpSpelling << RType << rex->getSourceRange();
895 return QualType();
896 }
897 QualType Class(MemPtr->getClass(), 0);
898
899 // C++ 5.5p2
900 // [...] to its first operand, which shall be of class T or of a class of
901 // which T is an unambiguous and accessible base class. [p3: a pointer to
902 // such a class]
903 QualType LType = lex->getType();
904 if (isIndirect) {
905 if (const PointerType *Ptr = LType->getAsPointerType())
906 LType = Ptr->getPointeeType().getNonReferenceType();
907 else {
908 Diag(Loc, diag::err_bad_memptr_lhs)
909 << OpSpelling << 1 << LType << lex->getSourceRange();
910 return QualType();
911 }
912 }
913
914 if (Context.getCanonicalType(Class).getUnqualifiedType() !=
915 Context.getCanonicalType(LType).getUnqualifiedType()) {
916 BasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/false,
917 /*DetectVirtual=*/false);
918 // FIXME: Would it be useful to print full ambiguity paths,
919 // or is that overkill?
920 if (!IsDerivedFrom(LType, Class, Paths) ||
921 Paths.isAmbiguous(Context.getCanonicalType(Class))) {
922 Diag(Loc, diag::err_bad_memptr_lhs) << OpSpelling
923 << (int)isIndirect << lex->getType() << lex->getSourceRange();
924 return QualType();
925 }
926 }
927
928 // C++ 5.5p2
929 // The result is an object or a function of the type specified by the
930 // second operand.
931 // The cv qualifiers are the union of those in the pointer and the left side,
932 // in accordance with 5.5p5 and 5.2.5.
933 // FIXME: This returns a dereferenced member function pointer as a normal
934 // function type. However, the only operation valid on such functions is
935 // calling them. There's also a GCC extension to get a function pointer to
936 // the thing, which is another complication, because this type - unlike the
937 // type that is the result of this expression - takes the class as the first
938 // argument.
939 // We probably need a "MemberFunctionClosureType" or something like that.
940 QualType Result = MemPtr->getPointeeType();
941 if (LType.isConstQualified())
942 Result.addConst();
943 if (LType.isVolatileQualified())
944 Result.addVolatile();
945 return Result;
946}