blob: 6b30643db91aa4f5e3f318e75416098d17253121 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- SemaExpr.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 expressions.
11//
12//===----------------------------------------------------------------------===//
13
John McCall2d887082010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
Eli Friedman93c878e2012-01-18 01:05:54 +000015#include "clang/Sema/DelayedDiagnostic.h"
Douglas Gregore737f502010-08-12 20:07:10 +000016#include "clang/Sema/Initialization.h"
17#include "clang/Sema/Lookup.h"
Eli Friedman93c878e2012-01-18 01:05:54 +000018#include "clang/Sema/ScopeInfo.h"
Douglas Gregore737f502010-08-12 20:07:10 +000019#include "clang/Sema/AnalysisBasedWarnings.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000020#include "clang/AST/ASTContext.h"
Argyrios Kyrtzidis6d968362012-02-10 20:10:44 +000021#include "clang/AST/ASTConsumer.h"
Sebastian Redlf79a7192011-04-29 08:19:30 +000022#include "clang/AST/ASTMutationListener.h"
Douglas Gregorcc8a5d52010-04-29 00:18:15 +000023#include "clang/AST/CXXInheritance.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000024#include "clang/AST/DeclObjC.h"
Anders Carlssond497ba72009-08-26 22:59:12 +000025#include "clang/AST/DeclTemplate.h"
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +000026#include "clang/AST/EvaluatedExprVisitor.h"
Douglas Gregor8ecdb652010-04-28 22:16:22 +000027#include "clang/AST/Expr.h"
Chris Lattner04421082008-04-08 04:40:51 +000028#include "clang/AST/ExprCXX.h"
Steve Narofff494b572008-05-29 21:12:08 +000029#include "clang/AST/ExprObjC.h"
Douglas Gregorb4eeaff2010-05-07 23:12:07 +000030#include "clang/AST/RecursiveASTVisitor.h"
Douglas Gregor8ecdb652010-04-28 22:16:22 +000031#include "clang/AST/TypeLoc.h"
Anders Carlssond497ba72009-08-26 22:59:12 +000032#include "clang/Basic/PartialDiagnostic.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000033#include "clang/Basic/SourceManager.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000034#include "clang/Basic/TargetInfo.h"
Anders Carlssond497ba72009-08-26 22:59:12 +000035#include "clang/Lex/LiteralSupport.h"
36#include "clang/Lex/Preprocessor.h"
John McCall19510852010-08-20 18:27:03 +000037#include "clang/Sema/DeclSpec.h"
38#include "clang/Sema/Designator.h"
39#include "clang/Sema/Scope.h"
John McCall781472f2010-08-25 08:40:02 +000040#include "clang/Sema/ScopeInfo.h"
John McCall19510852010-08-20 18:27:03 +000041#include "clang/Sema/ParsedTemplate.h"
Anna Zaks67221552011-07-28 19:51:27 +000042#include "clang/Sema/SemaFixItUtils.h"
John McCall7cd088e2010-08-24 07:21:54 +000043#include "clang/Sema/Template.h"
Eli Friedmanef331b72012-01-20 01:26:23 +000044#include "TreeTransform.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000045using namespace clang;
John McCall781472f2010-08-25 08:40:02 +000046using namespace sema;
Reid Spencer5f016e22007-07-11 17:01:13 +000047
Sebastian Redl14b0c192011-09-24 17:48:00 +000048/// \brief Determine whether the use of this declaration is valid, without
49/// emitting diagnostics.
50bool Sema::CanUseDecl(NamedDecl *D) {
51 // See if this is an auto-typed variable whose initializer we are parsing.
52 if (ParsingInitForAutoVars.count(D))
53 return false;
54
55 // See if this is a deleted function.
56 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
57 if (FD->isDeleted())
58 return false;
59 }
Sebastian Redl28bdb142011-10-16 18:19:16 +000060
61 // See if this function is unavailable.
62 if (D->getAvailability() == AR_Unavailable &&
63 cast<Decl>(CurContext)->getAvailability() != AR_Unavailable)
64 return false;
65
Sebastian Redl14b0c192011-09-24 17:48:00 +000066 return true;
67}
David Chisnall0f436562009-08-17 16:35:33 +000068
Ted Kremenekd6cf9122012-02-10 02:45:47 +000069static AvailabilityResult DiagnoseAvailabilityOfDecl(Sema &S,
Fariborz Jahanian0f32caf2011-09-29 22:45:21 +000070 NamedDecl *D, SourceLocation Loc,
71 const ObjCInterfaceDecl *UnknownObjCClass) {
72 // See if this declaration is unavailable or deprecated.
73 std::string Message;
74 AvailabilityResult Result = D->getAvailability(&Message);
Fariborz Jahanian39b4fc82011-11-28 19:45:58 +000075 if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(D))
76 if (Result == AR_Available) {
77 const DeclContext *DC = ECD->getDeclContext();
78 if (const EnumDecl *TheEnumDecl = dyn_cast<EnumDecl>(DC))
79 Result = TheEnumDecl->getAvailability(&Message);
80 }
81
Fariborz Jahanian0f32caf2011-09-29 22:45:21 +000082 switch (Result) {
83 case AR_Available:
84 case AR_NotYetIntroduced:
85 break;
86
87 case AR_Deprecated:
Ted Kremenekd6cf9122012-02-10 02:45:47 +000088 S.EmitDeprecationWarning(D, Message, Loc, UnknownObjCClass);
Fariborz Jahanian0f32caf2011-09-29 22:45:21 +000089 break;
90
91 case AR_Unavailable:
Ted Kremenekd6cf9122012-02-10 02:45:47 +000092 if (S.getCurContextAvailability() != AR_Unavailable) {
Fariborz Jahanian0f32caf2011-09-29 22:45:21 +000093 if (Message.empty()) {
94 if (!UnknownObjCClass)
Ted Kremenekd6cf9122012-02-10 02:45:47 +000095 S.Diag(Loc, diag::err_unavailable) << D->getDeclName();
Fariborz Jahanian0f32caf2011-09-29 22:45:21 +000096 else
Ted Kremenekd6cf9122012-02-10 02:45:47 +000097 S.Diag(Loc, diag::warn_unavailable_fwdclass_message)
Fariborz Jahanian0f32caf2011-09-29 22:45:21 +000098 << D->getDeclName();
99 }
100 else
Ted Kremenekd6cf9122012-02-10 02:45:47 +0000101 S.Diag(Loc, diag::err_unavailable_message)
Fariborz Jahanian0f32caf2011-09-29 22:45:21 +0000102 << D->getDeclName() << Message;
Ted Kremenekd6cf9122012-02-10 02:45:47 +0000103 S.Diag(D->getLocation(), diag::note_unavailable_here)
Fariborz Jahanian0f32caf2011-09-29 22:45:21 +0000104 << isa<FunctionDecl>(D) << false;
105 }
106 break;
107 }
108 return Result;
109}
110
Douglas Gregor48f3bb92009-02-18 21:56:37 +0000111/// \brief Determine whether the use of this declaration is valid, and
112/// emit any corresponding diagnostics.
113///
114/// This routine diagnoses various problems with referencing
115/// declarations that can occur when using a declaration. For example,
116/// it might warn if a deprecated or unavailable declaration is being
117/// used, or produce an error (and return true) if a C++0x deleted
118/// function is being used.
119///
120/// \returns true if there was an error (this declaration cannot be
121/// referenced), false otherwise.
Chris Lattner52338262009-10-25 22:31:57 +0000122///
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +0000123bool Sema::DiagnoseUseOfDecl(NamedDecl *D, SourceLocation Loc,
Fariborz Jahanian0f32caf2011-09-29 22:45:21 +0000124 const ObjCInterfaceDecl *UnknownObjCClass) {
David Blaikie4e4d0842012-03-11 07:00:24 +0000125 if (getLangOpts().CPlusPlus && isa<FunctionDecl>(D)) {
Douglas Gregor9b623632010-10-12 23:32:35 +0000126 // If there were any diagnostics suppressed by template argument deduction,
127 // emit them now.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000128 llvm::DenseMap<Decl *, SmallVector<PartialDiagnosticAt, 1> >::iterator
Douglas Gregor9b623632010-10-12 23:32:35 +0000129 Pos = SuppressedDiagnostics.find(D->getCanonicalDecl());
130 if (Pos != SuppressedDiagnostics.end()) {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000131 SmallVectorImpl<PartialDiagnosticAt> &Suppressed = Pos->second;
Douglas Gregor9b623632010-10-12 23:32:35 +0000132 for (unsigned I = 0, N = Suppressed.size(); I != N; ++I)
133 Diag(Suppressed[I].first, Suppressed[I].second);
134
135 // Clear out the list of suppressed diagnostics, so that we don't emit
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000136 // them again for this specialization. However, we don't obsolete this
Douglas Gregor9b623632010-10-12 23:32:35 +0000137 // entry from the table, because we want to avoid ever emitting these
138 // diagnostics again.
139 Suppressed.clear();
140 }
141 }
142
Richard Smith34b41d92011-02-20 03:19:35 +0000143 // See if this is an auto-typed variable whose initializer we are parsing.
Richard Smith483b9f32011-02-21 20:05:19 +0000144 if (ParsingInitForAutoVars.count(D)) {
145 Diag(Loc, diag::err_auto_variable_cannot_appear_in_own_initializer)
146 << D->getDeclName();
147 return true;
Richard Smith34b41d92011-02-20 03:19:35 +0000148 }
149
Douglas Gregor48f3bb92009-02-18 21:56:37 +0000150 // See if this is a deleted function.
Douglas Gregor25d944a2009-02-24 04:26:15 +0000151 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Douglas Gregor48f3bb92009-02-18 21:56:37 +0000152 if (FD->isDeleted()) {
153 Diag(Loc, diag::err_deleted_function_use);
John McCallf85e1932011-06-15 23:02:42 +0000154 Diag(D->getLocation(), diag::note_unavailable_here) << 1 << true;
Douglas Gregor48f3bb92009-02-18 21:56:37 +0000155 return true;
156 }
Douglas Gregor25d944a2009-02-24 04:26:15 +0000157 }
Ted Kremenekd6cf9122012-02-10 02:45:47 +0000158 DiagnoseAvailabilityOfDecl(*this, D, Loc, UnknownObjCClass);
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000159
Anders Carlsson2127ecc2010-10-22 23:37:08 +0000160 // Warn if this is used but marked unused.
Fariborz Jahanian0f32caf2011-09-29 22:45:21 +0000161 if (D->hasAttr<UnusedAttr>())
Anders Carlsson2127ecc2010-10-22 23:37:08 +0000162 Diag(Loc, diag::warn_used_but_marked_unused) << D->getDeclName();
Douglas Gregor48f3bb92009-02-18 21:56:37 +0000163 return false;
Chris Lattner76a642f2009-02-15 22:43:40 +0000164}
165
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000166/// \brief Retrieve the message suffix that should be added to a
167/// diagnostic complaining about the given function being deleted or
168/// unavailable.
169std::string Sema::getDeletedOrUnavailableSuffix(const FunctionDecl *FD) {
170 // FIXME: C++0x implicitly-deleted special member functions could be
171 // detected here so that we could improve diagnostics to say, e.g.,
172 // "base class 'A' had a deleted copy constructor".
173 if (FD->isDeleted())
174 return std::string();
175
176 std::string Message;
177 if (FD->getAvailability(&Message))
178 return ": " + Message;
179
180 return std::string();
181}
182
John McCall3323fad2011-09-09 07:56:05 +0000183/// DiagnoseSentinelCalls - This routine checks whether a call or
184/// message-send is to a declaration with the sentinel attribute, and
185/// if so, it checks that the requirements of the sentinel are
186/// satisfied.
Fariborz Jahanian5b530052009-05-13 18:09:35 +0000187void Sema::DiagnoseSentinelCalls(NamedDecl *D, SourceLocation Loc,
John McCall3323fad2011-09-09 07:56:05 +0000188 Expr **args, unsigned numArgs) {
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000189 const SentinelAttr *attr = D->getAttr<SentinelAttr>();
Mike Stump1eb44332009-09-09 15:08:12 +0000190 if (!attr)
Fariborz Jahanian88f1ba02009-05-13 23:20:50 +0000191 return;
Douglas Gregor92e986e2010-04-22 16:44:27 +0000192
John McCall3323fad2011-09-09 07:56:05 +0000193 // The number of formal parameters of the declaration.
194 unsigned numFormalParams;
Mike Stump1eb44332009-09-09 15:08:12 +0000195
John McCall3323fad2011-09-09 07:56:05 +0000196 // The kind of declaration. This is also an index into a %select in
197 // the diagnostic.
198 enum CalleeType { CT_Function, CT_Method, CT_Block } calleeType;
199
Fariborz Jahanian236673e2009-05-14 18:00:00 +0000200 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
John McCall3323fad2011-09-09 07:56:05 +0000201 numFormalParams = MD->param_size();
202 calleeType = CT_Method;
Mike Stumpac5fc7c2009-08-04 21:02:39 +0000203 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
John McCall3323fad2011-09-09 07:56:05 +0000204 numFormalParams = FD->param_size();
205 calleeType = CT_Function;
206 } else if (isa<VarDecl>(D)) {
207 QualType type = cast<ValueDecl>(D)->getType();
208 const FunctionType *fn = 0;
209 if (const PointerType *ptr = type->getAs<PointerType>()) {
210 fn = ptr->getPointeeType()->getAs<FunctionType>();
211 if (!fn) return;
212 calleeType = CT_Function;
213 } else if (const BlockPointerType *ptr = type->getAs<BlockPointerType>()) {
214 fn = ptr->getPointeeType()->castAs<FunctionType>();
215 calleeType = CT_Block;
216 } else {
Fariborz Jahaniandaf04152009-05-15 20:33:25 +0000217 return;
John McCall3323fad2011-09-09 07:56:05 +0000218 }
Fariborz Jahanian236673e2009-05-14 18:00:00 +0000219
John McCall3323fad2011-09-09 07:56:05 +0000220 if (const FunctionProtoType *proto = dyn_cast<FunctionProtoType>(fn)) {
221 numFormalParams = proto->getNumArgs();
222 } else {
223 numFormalParams = 0;
224 }
225 } else {
Fariborz Jahanian88f1ba02009-05-13 23:20:50 +0000226 return;
227 }
John McCall3323fad2011-09-09 07:56:05 +0000228
229 // "nullPos" is the number of formal parameters at the end which
230 // effectively count as part of the variadic arguments. This is
231 // useful if you would prefer to not have *any* formal parameters,
232 // but the language forces you to have at least one.
233 unsigned nullPos = attr->getNullPos();
234 assert((nullPos == 0 || nullPos == 1) && "invalid null position on sentinel");
235 numFormalParams = (nullPos > numFormalParams ? 0 : numFormalParams - nullPos);
236
237 // The number of arguments which should follow the sentinel.
238 unsigned numArgsAfterSentinel = attr->getSentinel();
239
240 // If there aren't enough arguments for all the formal parameters,
241 // the sentinel, and the args after the sentinel, complain.
242 if (numArgs < numFormalParams + numArgsAfterSentinel + 1) {
Fariborz Jahanian88f1ba02009-05-13 23:20:50 +0000243 Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName();
John McCall3323fad2011-09-09 07:56:05 +0000244 Diag(D->getLocation(), diag::note_sentinel_here) << calleeType;
Fariborz Jahanian88f1ba02009-05-13 23:20:50 +0000245 return;
246 }
John McCall3323fad2011-09-09 07:56:05 +0000247
248 // Otherwise, find the sentinel expression.
249 Expr *sentinelExpr = args[numArgs - numArgsAfterSentinel - 1];
John McCall8eb662e2010-05-06 23:53:00 +0000250 if (!sentinelExpr) return;
John McCall8eb662e2010-05-06 23:53:00 +0000251 if (sentinelExpr->isValueDependent()) return;
Argyrios Kyrtzidis8deabc12012-02-03 05:58:16 +0000252 if (Context.isSentinelNullExpr(sentinelExpr)) return;
John McCall8eb662e2010-05-06 23:53:00 +0000253
John McCall3323fad2011-09-09 07:56:05 +0000254 // Pick a reasonable string to insert. Optimistically use 'nil' or
255 // 'NULL' if those are actually defined in the context. Only use
256 // 'nil' for ObjC methods, where it's much more likely that the
257 // variadic arguments form a list of object pointers.
258 SourceLocation MissingNilLoc
Douglas Gregorf78c4e52011-07-30 08:57:03 +0000259 = PP.getLocForEndOfToken(sentinelExpr->getLocEnd());
260 std::string NullValue;
John McCall3323fad2011-09-09 07:56:05 +0000261 if (calleeType == CT_Method &&
262 PP.getIdentifierInfo("nil")->hasMacroDefinition())
Douglas Gregorf78c4e52011-07-30 08:57:03 +0000263 NullValue = "nil";
264 else if (PP.getIdentifierInfo("NULL")->hasMacroDefinition())
265 NullValue = "NULL";
Douglas Gregorf78c4e52011-07-30 08:57:03 +0000266 else
John McCall3323fad2011-09-09 07:56:05 +0000267 NullValue = "(void*) 0";
Eli Friedman39834ba2011-09-27 23:46:37 +0000268
269 if (MissingNilLoc.isInvalid())
270 Diag(Loc, diag::warn_missing_sentinel) << calleeType;
271 else
272 Diag(MissingNilLoc, diag::warn_missing_sentinel)
273 << calleeType
274 << FixItHint::CreateInsertion(MissingNilLoc, ", " + NullValue);
John McCall3323fad2011-09-09 07:56:05 +0000275 Diag(D->getLocation(), diag::note_sentinel_here) << calleeType;
Fariborz Jahanian5b530052009-05-13 18:09:35 +0000276}
277
Richard Trieuccd891a2011-09-09 01:45:06 +0000278SourceRange Sema::getExprRange(Expr *E) const {
279 return E ? E->getSourceRange() : SourceRange();
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000280}
281
Chris Lattnere7a2e912008-07-25 21:10:04 +0000282//===----------------------------------------------------------------------===//
283// Standard Promotions and Conversions
284//===----------------------------------------------------------------------===//
285
Chris Lattnere7a2e912008-07-25 21:10:04 +0000286/// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4).
John Wiegley429bb272011-04-08 18:41:53 +0000287ExprResult Sema::DefaultFunctionArrayConversion(Expr *E) {
John McCall6dbba4f2011-10-11 23:14:30 +0000288 // Handle any placeholder expressions which made it here.
289 if (E->getType()->isPlaceholderType()) {
290 ExprResult result = CheckPlaceholderExpr(E);
291 if (result.isInvalid()) return ExprError();
292 E = result.take();
293 }
294
Chris Lattnere7a2e912008-07-25 21:10:04 +0000295 QualType Ty = E->getType();
296 assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type");
297
Chris Lattnere7a2e912008-07-25 21:10:04 +0000298 if (Ty->isFunctionType())
John Wiegley429bb272011-04-08 18:41:53 +0000299 E = ImpCastExprToType(E, Context.getPointerType(Ty),
300 CK_FunctionToPointerDecay).take();
Chris Lattner67d33d82008-07-25 21:33:13 +0000301 else if (Ty->isArrayType()) {
302 // In C90 mode, arrays only promote to pointers if the array expression is
303 // an lvalue. The relevant legalese is C90 6.2.2.1p3: "an lvalue that has
304 // type 'array of type' is converted to an expression that has type 'pointer
305 // to type'...". In C99 this was changed to: C99 6.3.2.1p3: "an expression
306 // that has type 'array of type' ...". The relevant change is "an lvalue"
307 // (C90) to "an expression" (C99).
Argyrios Kyrtzidisc39a3d72008-09-11 04:25:59 +0000308 //
309 // C++ 4.2p1:
310 // An lvalue or rvalue of type "array of N T" or "array of unknown bound of
311 // T" can be converted to an rvalue of type "pointer to T".
312 //
David Blaikie4e4d0842012-03-11 07:00:24 +0000313 if (getLangOpts().C99 || getLangOpts().CPlusPlus || E->isLValue())
John Wiegley429bb272011-04-08 18:41:53 +0000314 E = ImpCastExprToType(E, Context.getArrayDecayedType(Ty),
315 CK_ArrayToPointerDecay).take();
Chris Lattner67d33d82008-07-25 21:33:13 +0000316 }
John Wiegley429bb272011-04-08 18:41:53 +0000317 return Owned(E);
Chris Lattnere7a2e912008-07-25 21:10:04 +0000318}
319
Argyrios Kyrtzidis8a285ae2011-04-26 17:41:22 +0000320static void CheckForNullPointerDereference(Sema &S, Expr *E) {
321 // Check to see if we are dereferencing a null pointer. If so,
322 // and if not volatile-qualified, this is undefined behavior that the
323 // optimizer will delete, so warn about it. People sometimes try to use this
324 // to get a deterministic trap and are surprised by clang's behavior. This
325 // only handles the pattern "*null", which is a very syntactic check.
326 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E->IgnoreParenCasts()))
327 if (UO->getOpcode() == UO_Deref &&
328 UO->getSubExpr()->IgnoreParenCasts()->
329 isNullPointerConstant(S.Context, Expr::NPC_ValueDependentIsNotNull) &&
330 !UO->getType().isVolatileQualified()) {
331 S.DiagRuntimeBehavior(UO->getOperatorLoc(), UO,
332 S.PDiag(diag::warn_indirection_through_null)
333 << UO->getSubExpr()->getSourceRange());
334 S.DiagRuntimeBehavior(UO->getOperatorLoc(), UO,
335 S.PDiag(diag::note_indirection_through_null));
336 }
337}
338
John Wiegley429bb272011-04-08 18:41:53 +0000339ExprResult Sema::DefaultLvalueConversion(Expr *E) {
John McCall6dbba4f2011-10-11 23:14:30 +0000340 // Handle any placeholder expressions which made it here.
341 if (E->getType()->isPlaceholderType()) {
342 ExprResult result = CheckPlaceholderExpr(E);
343 if (result.isInvalid()) return ExprError();
344 E = result.take();
345 }
346
John McCall0ae287a2010-12-01 04:43:34 +0000347 // C++ [conv.lval]p1:
348 // A glvalue of a non-function, non-array type T can be
349 // converted to a prvalue.
John Wiegley429bb272011-04-08 18:41:53 +0000350 if (!E->isGLValue()) return Owned(E);
Kaelyn Uhraind6c88652011-08-05 23:18:04 +0000351
John McCall409fa9a2010-12-06 20:48:59 +0000352 QualType T = E->getType();
353 assert(!T.isNull() && "r-value conversion on typeless expression?");
John McCallf6a16482010-12-04 03:47:34 +0000354
Eli Friedmanb001de72011-10-06 23:00:33 +0000355 // We can't do lvalue-to-rvalue on atomics yet.
John McCall3c3b7f92011-10-25 17:37:35 +0000356 if (T->isAtomicType())
Eli Friedmanb001de72011-10-06 23:00:33 +0000357 return Owned(E);
358
John McCall409fa9a2010-12-06 20:48:59 +0000359 // We don't want to throw lvalue-to-rvalue casts on top of
360 // expressions of certain types in C++.
David Blaikie4e4d0842012-03-11 07:00:24 +0000361 if (getLangOpts().CPlusPlus &&
John McCall409fa9a2010-12-06 20:48:59 +0000362 (E->getType() == Context.OverloadTy ||
363 T->isDependentType() ||
364 T->isRecordType()))
John Wiegley429bb272011-04-08 18:41:53 +0000365 return Owned(E);
John McCall409fa9a2010-12-06 20:48:59 +0000366
367 // The C standard is actually really unclear on this point, and
368 // DR106 tells us what the result should be but not why. It's
369 // generally best to say that void types just doesn't undergo
370 // lvalue-to-rvalue at all. Note that expressions of unqualified
371 // 'void' type are never l-values, but qualified void can be.
372 if (T->isVoidType())
John Wiegley429bb272011-04-08 18:41:53 +0000373 return Owned(E);
John McCall409fa9a2010-12-06 20:48:59 +0000374
Argyrios Kyrtzidis8a285ae2011-04-26 17:41:22 +0000375 CheckForNullPointerDereference(*this, E);
376
John McCall409fa9a2010-12-06 20:48:59 +0000377 // C++ [conv.lval]p1:
378 // [...] If T is a non-class type, the type of the prvalue is the
379 // cv-unqualified version of T. Otherwise, the type of the
380 // rvalue is T.
381 //
382 // C99 6.3.2.1p2:
383 // If the lvalue has qualified type, the value has the unqualified
384 // version of the type of the lvalue; otherwise, the value has the
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +0000385 // type of the lvalue.
John McCall409fa9a2010-12-06 20:48:59 +0000386 if (T.hasQualifiers())
387 T = T.getUnqualifiedType();
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +0000388
Eli Friedmand2cce132012-02-02 23:15:15 +0000389 UpdateMarkingForLValueToRValue(E);
390
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +0000391 ExprResult Res = Owned(ImplicitCastExpr::Create(Context, T, CK_LValueToRValue,
392 E, 0, VK_RValue));
393
394 return Res;
John McCall409fa9a2010-12-06 20:48:59 +0000395}
396
John Wiegley429bb272011-04-08 18:41:53 +0000397ExprResult Sema::DefaultFunctionArrayLvalueConversion(Expr *E) {
398 ExprResult Res = DefaultFunctionArrayConversion(E);
399 if (Res.isInvalid())
400 return ExprError();
401 Res = DefaultLvalueConversion(Res.take());
402 if (Res.isInvalid())
403 return ExprError();
404 return move(Res);
Douglas Gregora873dfc2010-02-03 00:27:59 +0000405}
406
407
Chris Lattnere7a2e912008-07-25 21:10:04 +0000408/// UsualUnaryConversions - Performs various conversions that are common to most
Mike Stump1eb44332009-09-09 15:08:12 +0000409/// operators (C99 6.3). The conversions of array and function types are
Chris Lattnerfc8f0e12011-04-15 05:22:18 +0000410/// sometimes suppressed. For example, the array->pointer conversion doesn't
Chris Lattnere7a2e912008-07-25 21:10:04 +0000411/// apply if the array is an argument to the sizeof or address (&) operators.
412/// In these instances, this routine should *not* be called.
John Wiegley429bb272011-04-08 18:41:53 +0000413ExprResult Sema::UsualUnaryConversions(Expr *E) {
John McCall0ae287a2010-12-01 04:43:34 +0000414 // First, convert to an r-value.
John Wiegley429bb272011-04-08 18:41:53 +0000415 ExprResult Res = DefaultFunctionArrayLvalueConversion(E);
416 if (Res.isInvalid())
417 return Owned(E);
418 E = Res.take();
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +0000419
John McCall0ae287a2010-12-01 04:43:34 +0000420 QualType Ty = E->getType();
Chris Lattnere7a2e912008-07-25 21:10:04 +0000421 assert(!Ty.isNull() && "UsualUnaryConversions - missing type");
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +0000422
423 // Half FP is a bit different: it's a storage-only type, meaning that any
424 // "use" of it should be promoted to float.
425 if (Ty->isHalfType())
426 return ImpCastExprToType(Res.take(), Context.FloatTy, CK_FloatingCast);
427
John McCall0ae287a2010-12-01 04:43:34 +0000428 // Try to perform integral promotions if the object has a theoretically
429 // promotable type.
430 if (Ty->isIntegralOrUnscopedEnumerationType()) {
431 // C99 6.3.1.1p2:
432 //
433 // The following may be used in an expression wherever an int or
434 // unsigned int may be used:
435 // - an object or expression with an integer type whose integer
436 // conversion rank is less than or equal to the rank of int
437 // and unsigned int.
438 // - A bit-field of type _Bool, int, signed int, or unsigned int.
439 //
440 // If an int can represent all values of the original type, the
441 // value is converted to an int; otherwise, it is converted to an
442 // unsigned int. These are called the integer promotions. All
443 // other types are unchanged by the integer promotions.
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +0000444
John McCall0ae287a2010-12-01 04:43:34 +0000445 QualType PTy = Context.isPromotableBitField(E);
446 if (!PTy.isNull()) {
John Wiegley429bb272011-04-08 18:41:53 +0000447 E = ImpCastExprToType(E, PTy, CK_IntegralCast).take();
448 return Owned(E);
John McCall0ae287a2010-12-01 04:43:34 +0000449 }
450 if (Ty->isPromotableIntegerType()) {
451 QualType PT = Context.getPromotedIntegerType(Ty);
John Wiegley429bb272011-04-08 18:41:53 +0000452 E = ImpCastExprToType(E, PT, CK_IntegralCast).take();
453 return Owned(E);
John McCall0ae287a2010-12-01 04:43:34 +0000454 }
Eli Friedman04e83572009-08-20 04:21:42 +0000455 }
John Wiegley429bb272011-04-08 18:41:53 +0000456 return Owned(E);
Chris Lattnere7a2e912008-07-25 21:10:04 +0000457}
458
Chris Lattner05faf172008-07-25 22:25:12 +0000459/// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that
Mike Stump1eb44332009-09-09 15:08:12 +0000460/// do not have a prototype. Arguments that have type float are promoted to
Chris Lattner05faf172008-07-25 22:25:12 +0000461/// double. All other argument types are converted by UsualUnaryConversions().
John Wiegley429bb272011-04-08 18:41:53 +0000462ExprResult Sema::DefaultArgumentPromotion(Expr *E) {
463 QualType Ty = E->getType();
Chris Lattner05faf172008-07-25 22:25:12 +0000464 assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type");
Mike Stump1eb44332009-09-09 15:08:12 +0000465
John Wiegley429bb272011-04-08 18:41:53 +0000466 ExprResult Res = UsualUnaryConversions(E);
467 if (Res.isInvalid())
468 return Owned(E);
469 E = Res.take();
John McCall40c29132010-12-06 18:36:11 +0000470
Chris Lattner05faf172008-07-25 22:25:12 +0000471 // If this is a 'float' (CVR qualified or typedef) promote to double.
Chris Lattner40378332010-05-16 04:01:30 +0000472 if (Ty->isSpecificBuiltinType(BuiltinType::Float))
John Wiegley429bb272011-04-08 18:41:53 +0000473 E = ImpCastExprToType(E, Context.DoubleTy, CK_FloatingCast).take();
474
John McCall96a914a2011-08-27 22:06:17 +0000475 // C++ performs lvalue-to-rvalue conversion as a default argument
John McCall709bca82011-08-29 23:55:37 +0000476 // promotion, even on class types, but note:
477 // C++11 [conv.lval]p2:
478 // When an lvalue-to-rvalue conversion occurs in an unevaluated
479 // operand or a subexpression thereof the value contained in the
480 // referenced object is not accessed. Otherwise, if the glvalue
481 // has a class type, the conversion copy-initializes a temporary
482 // of type T from the glvalue and the result of the conversion
483 // is a prvalue for the temporary.
Eli Friedman55693fb2012-01-17 02:13:45 +0000484 // FIXME: add some way to gate this entire thing for correctness in
485 // potentially potentially evaluated contexts.
David Blaikie4e4d0842012-03-11 07:00:24 +0000486 if (getLangOpts().CPlusPlus && E->isGLValue() &&
Eli Friedman55693fb2012-01-17 02:13:45 +0000487 ExprEvalContexts.back().Context != Unevaluated) {
488 ExprResult Temp = PerformCopyInitialization(
489 InitializedEntity::InitializeTemporary(E->getType()),
490 E->getExprLoc(),
491 Owned(E));
492 if (Temp.isInvalid())
493 return ExprError();
494 E = Temp.get();
John McCall5f8d6042011-08-27 01:09:30 +0000495 }
496
John Wiegley429bb272011-04-08 18:41:53 +0000497 return Owned(E);
Chris Lattner05faf172008-07-25 22:25:12 +0000498}
499
Chris Lattner312531a2009-04-12 08:11:20 +0000500/// DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but
501/// will warn if the resulting type is not a POD type, and rejects ObjC
John Wiegley429bb272011-04-08 18:41:53 +0000502/// interfaces passed by value.
503ExprResult Sema::DefaultVariadicArgumentPromotion(Expr *E, VariadicCallType CT,
John McCallf85e1932011-06-15 23:02:42 +0000504 FunctionDecl *FDecl) {
John McCall5acb0c92011-10-17 18:40:02 +0000505 if (const BuiltinType *PlaceholderTy = E->getType()->getAsPlaceholderType()) {
506 // Strip the unbridged-cast placeholder expression off, if applicable.
507 if (PlaceholderTy->getKind() == BuiltinType::ARCUnbridgedCast &&
508 (CT == VariadicMethod ||
509 (FDecl && FDecl->hasAttr<CFAuditedTransferAttr>()))) {
510 E = stripARCUnbridgedCast(E);
511
512 // Otherwise, do normal placeholder checking.
513 } else {
514 ExprResult ExprRes = CheckPlaceholderExpr(E);
515 if (ExprRes.isInvalid())
516 return ExprError();
517 E = ExprRes.take();
518 }
519 }
Douglas Gregor8d5e18c2011-06-17 00:15:10 +0000520
John McCall5acb0c92011-10-17 18:40:02 +0000521 ExprResult ExprRes = DefaultArgumentPromotion(E);
John Wiegley429bb272011-04-08 18:41:53 +0000522 if (ExprRes.isInvalid())
523 return ExprError();
524 E = ExprRes.take();
Mike Stump1eb44332009-09-09 15:08:12 +0000525
Douglas Gregor930a9ab2011-05-21 19:26:31 +0000526 // Don't allow one to pass an Objective-C interface to a vararg.
John Wiegley429bb272011-04-08 18:41:53 +0000527 if (E->getType()->isObjCObjectType() &&
Douglas Gregor930a9ab2011-05-21 19:26:31 +0000528 DiagRuntimeBehavior(E->getLocStart(), 0,
529 PDiag(diag::err_cannot_pass_objc_interface_to_vararg)
530 << E->getType() << CT))
John Wiegley429bb272011-04-08 18:41:53 +0000531 return ExprError();
John McCall5f8d6042011-08-27 01:09:30 +0000532
Douglas Gregorb8e778d2011-10-14 20:34:19 +0000533 // Complain about passing non-POD types through varargs. However, don't
534 // perform this check for incomplete types, which we can get here when we're
535 // in an unevaluated context.
536 if (!E->getType()->isIncompleteType() && !E->getType().isPODType(Context)) {
Douglas Gregor0fd228d2011-05-21 16:27:21 +0000537 // C++0x [expr.call]p7:
538 // Passing a potentially-evaluated argument of class type (Clause 9)
539 // having a non-trivial copy constructor, a non-trivial move constructor,
540 // or a non-trivial destructor, with no corresponding parameter,
541 // is conditionally-supported with implementation-defined semantics.
542 bool TrivialEnough = false;
David Blaikie4e4d0842012-03-11 07:00:24 +0000543 if (getLangOpts().CPlusPlus0x && !E->getType()->isDependentType()) {
Douglas Gregor0fd228d2011-05-21 16:27:21 +0000544 if (CXXRecordDecl *Record = E->getType()->getAsCXXRecordDecl()) {
545 if (Record->hasTrivialCopyConstructor() &&
546 Record->hasTrivialMoveConstructor() &&
Richard Smithebaf0e62011-10-18 20:49:44 +0000547 Record->hasTrivialDestructor()) {
548 DiagRuntimeBehavior(E->getLocStart(), 0,
549 PDiag(diag::warn_cxx98_compat_pass_non_pod_arg_to_vararg)
550 << E->getType() << CT);
Douglas Gregor0fd228d2011-05-21 16:27:21 +0000551 TrivialEnough = true;
Richard Smithebaf0e62011-10-18 20:49:44 +0000552 }
Douglas Gregor0fd228d2011-05-21 16:27:21 +0000553 }
554 }
John McCallf85e1932011-06-15 23:02:42 +0000555
556 if (!TrivialEnough &&
David Blaikie4e4d0842012-03-11 07:00:24 +0000557 getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +0000558 E->getType()->isObjCLifetimeType())
559 TrivialEnough = true;
Douglas Gregor0fd228d2011-05-21 16:27:21 +0000560
561 if (TrivialEnough) {
562 // Nothing to diagnose. This is okay.
563 } else if (DiagRuntimeBehavior(E->getLocStart(), 0,
Douglas Gregor1c7c3fb2009-12-22 01:01:55 +0000564 PDiag(diag::warn_cannot_pass_non_pod_arg_to_vararg)
David Blaikie4e4d0842012-03-11 07:00:24 +0000565 << getLangOpts().CPlusPlus0x << E->getType()
Douglas Gregor930a9ab2011-05-21 19:26:31 +0000566 << CT)) {
567 // Turn this into a trap.
568 CXXScopeSpec SS;
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000569 SourceLocation TemplateKWLoc;
Douglas Gregor930a9ab2011-05-21 19:26:31 +0000570 UnqualifiedId Name;
571 Name.setIdentifier(PP.getIdentifierInfo("__builtin_trap"),
572 E->getLocStart());
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000573 ExprResult TrapFn = ActOnIdExpression(TUScope, SS, TemplateKWLoc, Name,
574 true, false);
Douglas Gregor930a9ab2011-05-21 19:26:31 +0000575 if (TrapFn.isInvalid())
576 return ExprError();
577
578 ExprResult Call = ActOnCallExpr(TUScope, TrapFn.get(), E->getLocStart(),
579 MultiExprArg(), E->getLocEnd());
580 if (Call.isInvalid())
581 return ExprError();
582
583 ExprResult Comma = ActOnBinOp(TUScope, E->getLocStart(), tok::comma,
584 Call.get(), E);
585 if (Comma.isInvalid())
John McCall66c20302011-08-26 18:41:18 +0000586 return ExprError();
Douglas Gregor930a9ab2011-05-21 19:26:31 +0000587 E = Comma.get();
588 }
Douglas Gregor0fd228d2011-05-21 16:27:21 +0000589 }
Fariborz Jahaniana0e005b2012-03-02 17:05:03 +0000590 // c++ rules are enforced elsewhere.
David Blaikie4e4d0842012-03-11 07:00:24 +0000591 if (!getLangOpts().CPlusPlus &&
Fariborz Jahaniane853bb32012-03-01 23:42:00 +0000592 RequireCompleteType(E->getExprLoc(), E->getType(),
Fariborz Jahaniana0e005b2012-03-02 17:05:03 +0000593 diag::err_call_incomplete_argument))
Fariborz Jahaniane853bb32012-03-01 23:42:00 +0000594 return ExprError();
Douglas Gregor0fd228d2011-05-21 16:27:21 +0000595
John Wiegley429bb272011-04-08 18:41:53 +0000596 return Owned(E);
Anders Carlssondce5e2c2009-01-16 16:48:51 +0000597}
598
Richard Trieu8289f492011-09-02 20:58:51 +0000599/// \brief Converts an integer to complex float type. Helper function of
600/// UsualArithmeticConversions()
601///
602/// \return false if the integer expression is an integer type and is
603/// successfully converted to the complex type.
Richard Trieuccd891a2011-09-09 01:45:06 +0000604static bool handleIntegerToComplexFloatConversion(Sema &S, ExprResult &IntExpr,
605 ExprResult &ComplexExpr,
606 QualType IntTy,
607 QualType ComplexTy,
608 bool SkipCast) {
609 if (IntTy->isComplexType() || IntTy->isRealFloatingType()) return true;
610 if (SkipCast) return false;
611 if (IntTy->isIntegerType()) {
612 QualType fpTy = cast<ComplexType>(ComplexTy)->getElementType();
613 IntExpr = S.ImpCastExprToType(IntExpr.take(), fpTy, CK_IntegralToFloating);
614 IntExpr = S.ImpCastExprToType(IntExpr.take(), ComplexTy,
Richard Trieu8289f492011-09-02 20:58:51 +0000615 CK_FloatingRealToComplex);
616 } else {
Richard Trieuccd891a2011-09-09 01:45:06 +0000617 assert(IntTy->isComplexIntegerType());
618 IntExpr = S.ImpCastExprToType(IntExpr.take(), ComplexTy,
Richard Trieu8289f492011-09-02 20:58:51 +0000619 CK_IntegralComplexToFloatingComplex);
620 }
621 return false;
622}
623
624/// \brief Takes two complex float types and converts them to the same type.
625/// Helper function of UsualArithmeticConversions()
626static QualType
Richard Trieucafd30b2011-09-06 18:25:09 +0000627handleComplexFloatToComplexFloatConverstion(Sema &S, ExprResult &LHS,
628 ExprResult &RHS, QualType LHSType,
629 QualType RHSType,
Richard Trieuccd891a2011-09-09 01:45:06 +0000630 bool IsCompAssign) {
Richard Trieucafd30b2011-09-06 18:25:09 +0000631 int order = S.Context.getFloatingTypeOrder(LHSType, RHSType);
Richard Trieu8289f492011-09-02 20:58:51 +0000632
633 if (order < 0) {
634 // _Complex float -> _Complex double
Richard Trieuccd891a2011-09-09 01:45:06 +0000635 if (!IsCompAssign)
Richard Trieucafd30b2011-09-06 18:25:09 +0000636 LHS = S.ImpCastExprToType(LHS.take(), RHSType, CK_FloatingComplexCast);
637 return RHSType;
Richard Trieu8289f492011-09-02 20:58:51 +0000638 }
639 if (order > 0)
640 // _Complex float -> _Complex double
Richard Trieucafd30b2011-09-06 18:25:09 +0000641 RHS = S.ImpCastExprToType(RHS.take(), LHSType, CK_FloatingComplexCast);
642 return LHSType;
Richard Trieu8289f492011-09-02 20:58:51 +0000643}
644
645/// \brief Converts otherExpr to complex float and promotes complexExpr if
646/// necessary. Helper function of UsualArithmeticConversions()
647static QualType handleOtherComplexFloatConversion(Sema &S,
Richard Trieuccd891a2011-09-09 01:45:06 +0000648 ExprResult &ComplexExpr,
649 ExprResult &OtherExpr,
650 QualType ComplexTy,
651 QualType OtherTy,
652 bool ConvertComplexExpr,
653 bool ConvertOtherExpr) {
654 int order = S.Context.getFloatingTypeOrder(ComplexTy, OtherTy);
Richard Trieu8289f492011-09-02 20:58:51 +0000655
656 // If just the complexExpr is complex, the otherExpr needs to be converted,
657 // and the complexExpr might need to be promoted.
658 if (order > 0) { // complexExpr is wider
659 // float -> _Complex double
Richard Trieuccd891a2011-09-09 01:45:06 +0000660 if (ConvertOtherExpr) {
661 QualType fp = cast<ComplexType>(ComplexTy)->getElementType();
662 OtherExpr = S.ImpCastExprToType(OtherExpr.take(), fp, CK_FloatingCast);
663 OtherExpr = S.ImpCastExprToType(OtherExpr.take(), ComplexTy,
Richard Trieu8289f492011-09-02 20:58:51 +0000664 CK_FloatingRealToComplex);
665 }
Richard Trieuccd891a2011-09-09 01:45:06 +0000666 return ComplexTy;
Richard Trieu8289f492011-09-02 20:58:51 +0000667 }
668
669 // otherTy is at least as wide. Find its corresponding complex type.
Richard Trieuccd891a2011-09-09 01:45:06 +0000670 QualType result = (order == 0 ? ComplexTy :
671 S.Context.getComplexType(OtherTy));
Richard Trieu8289f492011-09-02 20:58:51 +0000672
673 // double -> _Complex double
Richard Trieuccd891a2011-09-09 01:45:06 +0000674 if (ConvertOtherExpr)
675 OtherExpr = S.ImpCastExprToType(OtherExpr.take(), result,
Richard Trieu8289f492011-09-02 20:58:51 +0000676 CK_FloatingRealToComplex);
677
678 // _Complex float -> _Complex double
Richard Trieuccd891a2011-09-09 01:45:06 +0000679 if (ConvertComplexExpr && order < 0)
680 ComplexExpr = S.ImpCastExprToType(ComplexExpr.take(), result,
Richard Trieu8289f492011-09-02 20:58:51 +0000681 CK_FloatingComplexCast);
682
683 return result;
684}
685
686/// \brief Handle arithmetic conversion with complex types. Helper function of
687/// UsualArithmeticConversions()
Richard Trieucafd30b2011-09-06 18:25:09 +0000688static QualType handleComplexFloatConversion(Sema &S, ExprResult &LHS,
689 ExprResult &RHS, QualType LHSType,
690 QualType RHSType,
Richard Trieuccd891a2011-09-09 01:45:06 +0000691 bool IsCompAssign) {
Richard Trieu8289f492011-09-02 20:58:51 +0000692 // if we have an integer operand, the result is the complex type.
Richard Trieucafd30b2011-09-06 18:25:09 +0000693 if (!handleIntegerToComplexFloatConversion(S, RHS, LHS, RHSType, LHSType,
Richard Trieu8289f492011-09-02 20:58:51 +0000694 /*skipCast*/false))
Richard Trieucafd30b2011-09-06 18:25:09 +0000695 return LHSType;
696 if (!handleIntegerToComplexFloatConversion(S, LHS, RHS, LHSType, RHSType,
Richard Trieuccd891a2011-09-09 01:45:06 +0000697 /*skipCast*/IsCompAssign))
Richard Trieucafd30b2011-09-06 18:25:09 +0000698 return RHSType;
Richard Trieu8289f492011-09-02 20:58:51 +0000699
700 // This handles complex/complex, complex/float, or float/complex.
701 // When both operands are complex, the shorter operand is converted to the
702 // type of the longer, and that is the type of the result. This corresponds
703 // to what is done when combining two real floating-point operands.
704 // The fun begins when size promotion occur across type domains.
705 // From H&S 6.3.4: When one operand is complex and the other is a real
706 // floating-point type, the less precise type is converted, within it's
707 // real or complex domain, to the precision of the other type. For example,
708 // when combining a "long double" with a "double _Complex", the
709 // "double _Complex" is promoted to "long double _Complex".
710
Richard Trieucafd30b2011-09-06 18:25:09 +0000711 bool LHSComplexFloat = LHSType->isComplexType();
712 bool RHSComplexFloat = RHSType->isComplexType();
Richard Trieu8289f492011-09-02 20:58:51 +0000713
714 // If both are complex, just cast to the more precise type.
715 if (LHSComplexFloat && RHSComplexFloat)
Richard Trieucafd30b2011-09-06 18:25:09 +0000716 return handleComplexFloatToComplexFloatConverstion(S, LHS, RHS,
717 LHSType, RHSType,
Richard Trieuccd891a2011-09-09 01:45:06 +0000718 IsCompAssign);
Richard Trieu8289f492011-09-02 20:58:51 +0000719
720 // If only one operand is complex, promote it if necessary and convert the
721 // other operand to complex.
722 if (LHSComplexFloat)
723 return handleOtherComplexFloatConversion(
Richard Trieuccd891a2011-09-09 01:45:06 +0000724 S, LHS, RHS, LHSType, RHSType, /*convertComplexExpr*/!IsCompAssign,
Richard Trieu8289f492011-09-02 20:58:51 +0000725 /*convertOtherExpr*/ true);
726
727 assert(RHSComplexFloat);
728 return handleOtherComplexFloatConversion(
Richard Trieucafd30b2011-09-06 18:25:09 +0000729 S, RHS, LHS, RHSType, LHSType, /*convertComplexExpr*/true,
Richard Trieuccd891a2011-09-09 01:45:06 +0000730 /*convertOtherExpr*/ !IsCompAssign);
Richard Trieu8289f492011-09-02 20:58:51 +0000731}
732
733/// \brief Hande arithmetic conversion from integer to float. Helper function
734/// of UsualArithmeticConversions()
Richard Trieuccd891a2011-09-09 01:45:06 +0000735static QualType handleIntToFloatConversion(Sema &S, ExprResult &FloatExpr,
736 ExprResult &IntExpr,
737 QualType FloatTy, QualType IntTy,
738 bool ConvertFloat, bool ConvertInt) {
739 if (IntTy->isIntegerType()) {
740 if (ConvertInt)
Richard Trieu8289f492011-09-02 20:58:51 +0000741 // Convert intExpr to the lhs floating point type.
Richard Trieuccd891a2011-09-09 01:45:06 +0000742 IntExpr = S.ImpCastExprToType(IntExpr.take(), FloatTy,
Richard Trieu8289f492011-09-02 20:58:51 +0000743 CK_IntegralToFloating);
Richard Trieuccd891a2011-09-09 01:45:06 +0000744 return FloatTy;
Richard Trieu8289f492011-09-02 20:58:51 +0000745 }
746
747 // Convert both sides to the appropriate complex float.
Richard Trieuccd891a2011-09-09 01:45:06 +0000748 assert(IntTy->isComplexIntegerType());
749 QualType result = S.Context.getComplexType(FloatTy);
Richard Trieu8289f492011-09-02 20:58:51 +0000750
751 // _Complex int -> _Complex float
Richard Trieuccd891a2011-09-09 01:45:06 +0000752 if (ConvertInt)
753 IntExpr = S.ImpCastExprToType(IntExpr.take(), result,
Richard Trieu8289f492011-09-02 20:58:51 +0000754 CK_IntegralComplexToFloatingComplex);
755
756 // float -> _Complex float
Richard Trieuccd891a2011-09-09 01:45:06 +0000757 if (ConvertFloat)
758 FloatExpr = S.ImpCastExprToType(FloatExpr.take(), result,
Richard Trieu8289f492011-09-02 20:58:51 +0000759 CK_FloatingRealToComplex);
760
761 return result;
762}
763
764/// \brief Handle arithmethic conversion with floating point types. Helper
765/// function of UsualArithmeticConversions()
Richard Trieu8ef5c8e2011-09-06 18:38:41 +0000766static QualType handleFloatConversion(Sema &S, ExprResult &LHS,
767 ExprResult &RHS, QualType LHSType,
Richard Trieuccd891a2011-09-09 01:45:06 +0000768 QualType RHSType, bool IsCompAssign) {
Richard Trieu8ef5c8e2011-09-06 18:38:41 +0000769 bool LHSFloat = LHSType->isRealFloatingType();
770 bool RHSFloat = RHSType->isRealFloatingType();
Richard Trieu8289f492011-09-02 20:58:51 +0000771
772 // If we have two real floating types, convert the smaller operand
773 // to the bigger result.
774 if (LHSFloat && RHSFloat) {
Richard Trieu8ef5c8e2011-09-06 18:38:41 +0000775 int order = S.Context.getFloatingTypeOrder(LHSType, RHSType);
Richard Trieu8289f492011-09-02 20:58:51 +0000776 if (order > 0) {
Richard Trieu8ef5c8e2011-09-06 18:38:41 +0000777 RHS = S.ImpCastExprToType(RHS.take(), LHSType, CK_FloatingCast);
778 return LHSType;
Richard Trieu8289f492011-09-02 20:58:51 +0000779 }
780
781 assert(order < 0 && "illegal float comparison");
Richard Trieuccd891a2011-09-09 01:45:06 +0000782 if (!IsCompAssign)
Richard Trieu8ef5c8e2011-09-06 18:38:41 +0000783 LHS = S.ImpCastExprToType(LHS.take(), RHSType, CK_FloatingCast);
784 return RHSType;
Richard Trieu8289f492011-09-02 20:58:51 +0000785 }
786
787 if (LHSFloat)
Richard Trieu8ef5c8e2011-09-06 18:38:41 +0000788 return handleIntToFloatConversion(S, LHS, RHS, LHSType, RHSType,
Richard Trieuccd891a2011-09-09 01:45:06 +0000789 /*convertFloat=*/!IsCompAssign,
Richard Trieu8289f492011-09-02 20:58:51 +0000790 /*convertInt=*/ true);
791 assert(RHSFloat);
Richard Trieu8ef5c8e2011-09-06 18:38:41 +0000792 return handleIntToFloatConversion(S, RHS, LHS, RHSType, LHSType,
Richard Trieu8289f492011-09-02 20:58:51 +0000793 /*convertInt=*/ true,
Richard Trieuccd891a2011-09-09 01:45:06 +0000794 /*convertFloat=*/!IsCompAssign);
Richard Trieu8289f492011-09-02 20:58:51 +0000795}
796
797/// \brief Handle conversions with GCC complex int extension. Helper function
Benjamin Kramer5cc86802011-09-06 19:57:14 +0000798/// of UsualArithmeticConversions()
Richard Trieu8289f492011-09-02 20:58:51 +0000799// FIXME: if the operands are (int, _Complex long), we currently
800// don't promote the complex. Also, signedness?
Benjamin Kramer5cc86802011-09-06 19:57:14 +0000801static QualType handleComplexIntConversion(Sema &S, ExprResult &LHS,
802 ExprResult &RHS, QualType LHSType,
803 QualType RHSType,
Richard Trieuccd891a2011-09-09 01:45:06 +0000804 bool IsCompAssign) {
Richard Trieu8ef5c8e2011-09-06 18:38:41 +0000805 const ComplexType *LHSComplexInt = LHSType->getAsComplexIntegerType();
806 const ComplexType *RHSComplexInt = RHSType->getAsComplexIntegerType();
Richard Trieu8289f492011-09-02 20:58:51 +0000807
Richard Trieu8ef5c8e2011-09-06 18:38:41 +0000808 if (LHSComplexInt && RHSComplexInt) {
809 int order = S.Context.getIntegerTypeOrder(LHSComplexInt->getElementType(),
810 RHSComplexInt->getElementType());
Richard Trieu8289f492011-09-02 20:58:51 +0000811 assert(order && "inequal types with equal element ordering");
812 if (order > 0) {
813 // _Complex int -> _Complex long
Richard Trieu8ef5c8e2011-09-06 18:38:41 +0000814 RHS = S.ImpCastExprToType(RHS.take(), LHSType, CK_IntegralComplexCast);
815 return LHSType;
Richard Trieu8289f492011-09-02 20:58:51 +0000816 }
817
Richard Trieuccd891a2011-09-09 01:45:06 +0000818 if (!IsCompAssign)
Richard Trieu8ef5c8e2011-09-06 18:38:41 +0000819 LHS = S.ImpCastExprToType(LHS.take(), RHSType, CK_IntegralComplexCast);
820 return RHSType;
Richard Trieu8289f492011-09-02 20:58:51 +0000821 }
822
Richard Trieu8ef5c8e2011-09-06 18:38:41 +0000823 if (LHSComplexInt) {
Richard Trieu8289f492011-09-02 20:58:51 +0000824 // int -> _Complex int
Eli Friedmanddadaa42011-11-12 03:56:23 +0000825 // FIXME: This needs to take integer ranks into account
826 RHS = S.ImpCastExprToType(RHS.take(), LHSComplexInt->getElementType(),
827 CK_IntegralCast);
Richard Trieu8ef5c8e2011-09-06 18:38:41 +0000828 RHS = S.ImpCastExprToType(RHS.take(), LHSType, CK_IntegralRealToComplex);
829 return LHSType;
Richard Trieu8289f492011-09-02 20:58:51 +0000830 }
831
Richard Trieu8ef5c8e2011-09-06 18:38:41 +0000832 assert(RHSComplexInt);
Richard Trieu8289f492011-09-02 20:58:51 +0000833 // int -> _Complex int
Eli Friedmanddadaa42011-11-12 03:56:23 +0000834 // FIXME: This needs to take integer ranks into account
835 if (!IsCompAssign) {
836 LHS = S.ImpCastExprToType(LHS.take(), RHSComplexInt->getElementType(),
837 CK_IntegralCast);
Richard Trieu8ef5c8e2011-09-06 18:38:41 +0000838 LHS = S.ImpCastExprToType(LHS.take(), RHSType, CK_IntegralRealToComplex);
Eli Friedmanddadaa42011-11-12 03:56:23 +0000839 }
Richard Trieu8ef5c8e2011-09-06 18:38:41 +0000840 return RHSType;
Richard Trieu8289f492011-09-02 20:58:51 +0000841}
842
843/// \brief Handle integer arithmetic conversions. Helper function of
844/// UsualArithmeticConversions()
Richard Trieu2e8a95d2011-09-06 19:52:52 +0000845static QualType handleIntegerConversion(Sema &S, ExprResult &LHS,
846 ExprResult &RHS, QualType LHSType,
Richard Trieuccd891a2011-09-09 01:45:06 +0000847 QualType RHSType, bool IsCompAssign) {
Richard Trieu8289f492011-09-02 20:58:51 +0000848 // The rules for this case are in C99 6.3.1.8
Richard Trieu2e8a95d2011-09-06 19:52:52 +0000849 int order = S.Context.getIntegerTypeOrder(LHSType, RHSType);
850 bool LHSSigned = LHSType->hasSignedIntegerRepresentation();
851 bool RHSSigned = RHSType->hasSignedIntegerRepresentation();
852 if (LHSSigned == RHSSigned) {
Richard Trieu8289f492011-09-02 20:58:51 +0000853 // Same signedness; use the higher-ranked type
854 if (order >= 0) {
Richard Trieu2e8a95d2011-09-06 19:52:52 +0000855 RHS = S.ImpCastExprToType(RHS.take(), LHSType, CK_IntegralCast);
856 return LHSType;
Richard Trieuccd891a2011-09-09 01:45:06 +0000857 } else if (!IsCompAssign)
Richard Trieu2e8a95d2011-09-06 19:52:52 +0000858 LHS = S.ImpCastExprToType(LHS.take(), RHSType, CK_IntegralCast);
859 return RHSType;
860 } else if (order != (LHSSigned ? 1 : -1)) {
Richard Trieu8289f492011-09-02 20:58:51 +0000861 // The unsigned type has greater than or equal rank to the
862 // signed type, so use the unsigned type
Richard Trieu2e8a95d2011-09-06 19:52:52 +0000863 if (RHSSigned) {
864 RHS = S.ImpCastExprToType(RHS.take(), LHSType, CK_IntegralCast);
865 return LHSType;
Richard Trieuccd891a2011-09-09 01:45:06 +0000866 } else if (!IsCompAssign)
Richard Trieu2e8a95d2011-09-06 19:52:52 +0000867 LHS = S.ImpCastExprToType(LHS.take(), RHSType, CK_IntegralCast);
868 return RHSType;
869 } else if (S.Context.getIntWidth(LHSType) != S.Context.getIntWidth(RHSType)) {
Richard Trieu8289f492011-09-02 20:58:51 +0000870 // The two types are different widths; if we are here, that
871 // means the signed type is larger than the unsigned type, so
872 // use the signed type.
Richard Trieu2e8a95d2011-09-06 19:52:52 +0000873 if (LHSSigned) {
874 RHS = S.ImpCastExprToType(RHS.take(), LHSType, CK_IntegralCast);
875 return LHSType;
Richard Trieuccd891a2011-09-09 01:45:06 +0000876 } else if (!IsCompAssign)
Richard Trieu2e8a95d2011-09-06 19:52:52 +0000877 LHS = S.ImpCastExprToType(LHS.take(), RHSType, CK_IntegralCast);
878 return RHSType;
Richard Trieu8289f492011-09-02 20:58:51 +0000879 } else {
880 // The signed type is higher-ranked than the unsigned type,
881 // but isn't actually any bigger (like unsigned int and long
882 // on most 32-bit systems). Use the unsigned type corresponding
883 // to the signed type.
884 QualType result =
Richard Trieu2e8a95d2011-09-06 19:52:52 +0000885 S.Context.getCorrespondingUnsignedType(LHSSigned ? LHSType : RHSType);
886 RHS = S.ImpCastExprToType(RHS.take(), result, CK_IntegralCast);
Richard Trieuccd891a2011-09-09 01:45:06 +0000887 if (!IsCompAssign)
Richard Trieu2e8a95d2011-09-06 19:52:52 +0000888 LHS = S.ImpCastExprToType(LHS.take(), result, CK_IntegralCast);
Richard Trieu8289f492011-09-02 20:58:51 +0000889 return result;
890 }
891}
892
Chris Lattnere7a2e912008-07-25 21:10:04 +0000893/// UsualArithmeticConversions - Performs various conversions that are common to
894/// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this
Mike Stump1eb44332009-09-09 15:08:12 +0000895/// routine returns the first non-arithmetic type found. The client is
Chris Lattnere7a2e912008-07-25 21:10:04 +0000896/// responsible for emitting appropriate error diagnostics.
897/// FIXME: verify the conversion rules for "complex int" are consistent with
898/// GCC.
Richard Trieu2e8a95d2011-09-06 19:52:52 +0000899QualType Sema::UsualArithmeticConversions(ExprResult &LHS, ExprResult &RHS,
Richard Trieuccd891a2011-09-09 01:45:06 +0000900 bool IsCompAssign) {
901 if (!IsCompAssign) {
Richard Trieu2e8a95d2011-09-06 19:52:52 +0000902 LHS = UsualUnaryConversions(LHS.take());
903 if (LHS.isInvalid())
John Wiegley429bb272011-04-08 18:41:53 +0000904 return QualType();
905 }
Eli Friedmanab3a8522009-03-28 01:22:36 +0000906
Richard Trieu2e8a95d2011-09-06 19:52:52 +0000907 RHS = UsualUnaryConversions(RHS.take());
908 if (RHS.isInvalid())
John Wiegley429bb272011-04-08 18:41:53 +0000909 return QualType();
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000910
Mike Stump1eb44332009-09-09 15:08:12 +0000911 // For conversion purposes, we ignore any qualifiers.
Chris Lattnere7a2e912008-07-25 21:10:04 +0000912 // For example, "const float" and "float" are equivalent.
Richard Trieu2e8a95d2011-09-06 19:52:52 +0000913 QualType LHSType =
914 Context.getCanonicalType(LHS.get()->getType()).getUnqualifiedType();
915 QualType RHSType =
916 Context.getCanonicalType(RHS.get()->getType()).getUnqualifiedType();
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000917
918 // If both types are identical, no conversion is needed.
Richard Trieu2e8a95d2011-09-06 19:52:52 +0000919 if (LHSType == RHSType)
920 return LHSType;
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000921
922 // If either side is a non-arithmetic type (e.g. a pointer), we are done.
923 // The caller can deal with this (e.g. pointer + int).
Richard Trieu2e8a95d2011-09-06 19:52:52 +0000924 if (!LHSType->isArithmeticType() || !RHSType->isArithmeticType())
925 return LHSType;
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000926
John McCallcf33b242010-11-13 08:17:45 +0000927 // Apply unary and bitfield promotions to the LHS's type.
Richard Trieu2e8a95d2011-09-06 19:52:52 +0000928 QualType LHSUnpromotedType = LHSType;
929 if (LHSType->isPromotableIntegerType())
930 LHSType = Context.getPromotedIntegerType(LHSType);
931 QualType LHSBitfieldPromoteTy = Context.isPromotableBitField(LHS.get());
Douglas Gregor2d833e32009-05-02 00:36:19 +0000932 if (!LHSBitfieldPromoteTy.isNull())
Richard Trieu2e8a95d2011-09-06 19:52:52 +0000933 LHSType = LHSBitfieldPromoteTy;
Richard Trieuccd891a2011-09-09 01:45:06 +0000934 if (LHSType != LHSUnpromotedType && !IsCompAssign)
Richard Trieu2e8a95d2011-09-06 19:52:52 +0000935 LHS = ImpCastExprToType(LHS.take(), LHSType, CK_IntegralCast);
Douglas Gregor2d833e32009-05-02 00:36:19 +0000936
John McCallcf33b242010-11-13 08:17:45 +0000937 // If both types are identical, no conversion is needed.
Richard Trieu2e8a95d2011-09-06 19:52:52 +0000938 if (LHSType == RHSType)
939 return LHSType;
John McCallcf33b242010-11-13 08:17:45 +0000940
941 // At this point, we have two different arithmetic types.
942
943 // Handle complex types first (C99 6.3.1.8p1).
Richard Trieu2e8a95d2011-09-06 19:52:52 +0000944 if (LHSType->isComplexType() || RHSType->isComplexType())
945 return handleComplexFloatConversion(*this, LHS, RHS, LHSType, RHSType,
Richard Trieuccd891a2011-09-09 01:45:06 +0000946 IsCompAssign);
John McCallcf33b242010-11-13 08:17:45 +0000947
948 // Now handle "real" floating types (i.e. float, double, long double).
Richard Trieu2e8a95d2011-09-06 19:52:52 +0000949 if (LHSType->isRealFloatingType() || RHSType->isRealFloatingType())
950 return handleFloatConversion(*this, LHS, RHS, LHSType, RHSType,
Richard Trieuccd891a2011-09-09 01:45:06 +0000951 IsCompAssign);
John McCallcf33b242010-11-13 08:17:45 +0000952
953 // Handle GCC complex int extension.
Richard Trieu2e8a95d2011-09-06 19:52:52 +0000954 if (LHSType->isComplexIntegerType() || RHSType->isComplexIntegerType())
Benjamin Kramer5cc86802011-09-06 19:57:14 +0000955 return handleComplexIntConversion(*this, LHS, RHS, LHSType, RHSType,
Richard Trieuccd891a2011-09-09 01:45:06 +0000956 IsCompAssign);
John McCallcf33b242010-11-13 08:17:45 +0000957
958 // Finally, we have two differing integer types.
Richard Trieu2e8a95d2011-09-06 19:52:52 +0000959 return handleIntegerConversion(*this, LHS, RHS, LHSType, RHSType,
Richard Trieuccd891a2011-09-09 01:45:06 +0000960 IsCompAssign);
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000961}
962
Chris Lattnere7a2e912008-07-25 21:10:04 +0000963//===----------------------------------------------------------------------===//
964// Semantic Analysis for various Expression Types
965//===----------------------------------------------------------------------===//
966
967
Peter Collingbournef111d932011-04-15 00:35:48 +0000968ExprResult
969Sema::ActOnGenericSelectionExpr(SourceLocation KeyLoc,
970 SourceLocation DefaultLoc,
971 SourceLocation RParenLoc,
972 Expr *ControllingExpr,
Richard Trieuccd891a2011-09-09 01:45:06 +0000973 MultiTypeArg ArgTypes,
974 MultiExprArg ArgExprs) {
975 unsigned NumAssocs = ArgTypes.size();
976 assert(NumAssocs == ArgExprs.size());
Peter Collingbournef111d932011-04-15 00:35:48 +0000977
Richard Trieuccd891a2011-09-09 01:45:06 +0000978 ParsedType *ParsedTypes = ArgTypes.release();
979 Expr **Exprs = ArgExprs.release();
Peter Collingbournef111d932011-04-15 00:35:48 +0000980
981 TypeSourceInfo **Types = new TypeSourceInfo*[NumAssocs];
982 for (unsigned i = 0; i < NumAssocs; ++i) {
983 if (ParsedTypes[i])
984 (void) GetTypeFromParser(ParsedTypes[i], &Types[i]);
985 else
986 Types[i] = 0;
987 }
988
989 ExprResult ER = CreateGenericSelectionExpr(KeyLoc, DefaultLoc, RParenLoc,
990 ControllingExpr, Types, Exprs,
991 NumAssocs);
Benjamin Kramer5bf47f72011-04-15 11:21:57 +0000992 delete [] Types;
Peter Collingbournef111d932011-04-15 00:35:48 +0000993 return ER;
994}
995
996ExprResult
997Sema::CreateGenericSelectionExpr(SourceLocation KeyLoc,
998 SourceLocation DefaultLoc,
999 SourceLocation RParenLoc,
1000 Expr *ControllingExpr,
1001 TypeSourceInfo **Types,
1002 Expr **Exprs,
1003 unsigned NumAssocs) {
1004 bool TypeErrorFound = false,
1005 IsResultDependent = ControllingExpr->isTypeDependent(),
1006 ContainsUnexpandedParameterPack
1007 = ControllingExpr->containsUnexpandedParameterPack();
1008
1009 for (unsigned i = 0; i < NumAssocs; ++i) {
1010 if (Exprs[i]->containsUnexpandedParameterPack())
1011 ContainsUnexpandedParameterPack = true;
1012
1013 if (Types[i]) {
1014 if (Types[i]->getType()->containsUnexpandedParameterPack())
1015 ContainsUnexpandedParameterPack = true;
1016
1017 if (Types[i]->getType()->isDependentType()) {
1018 IsResultDependent = true;
1019 } else {
Benjamin Kramerffbe9b92011-12-23 17:00:35 +00001020 // C11 6.5.1.1p2 "The type name in a generic association shall specify a
Peter Collingbournef111d932011-04-15 00:35:48 +00001021 // complete object type other than a variably modified type."
1022 unsigned D = 0;
1023 if (Types[i]->getType()->isIncompleteType())
1024 D = diag::err_assoc_type_incomplete;
1025 else if (!Types[i]->getType()->isObjectType())
1026 D = diag::err_assoc_type_nonobject;
1027 else if (Types[i]->getType()->isVariablyModifiedType())
1028 D = diag::err_assoc_type_variably_modified;
1029
1030 if (D != 0) {
1031 Diag(Types[i]->getTypeLoc().getBeginLoc(), D)
1032 << Types[i]->getTypeLoc().getSourceRange()
1033 << Types[i]->getType();
1034 TypeErrorFound = true;
1035 }
1036
Benjamin Kramerffbe9b92011-12-23 17:00:35 +00001037 // C11 6.5.1.1p2 "No two generic associations in the same generic
Peter Collingbournef111d932011-04-15 00:35:48 +00001038 // selection shall specify compatible types."
1039 for (unsigned j = i+1; j < NumAssocs; ++j)
1040 if (Types[j] && !Types[j]->getType()->isDependentType() &&
1041 Context.typesAreCompatible(Types[i]->getType(),
1042 Types[j]->getType())) {
1043 Diag(Types[j]->getTypeLoc().getBeginLoc(),
1044 diag::err_assoc_compatible_types)
1045 << Types[j]->getTypeLoc().getSourceRange()
1046 << Types[j]->getType()
1047 << Types[i]->getType();
1048 Diag(Types[i]->getTypeLoc().getBeginLoc(),
1049 diag::note_compat_assoc)
1050 << Types[i]->getTypeLoc().getSourceRange()
1051 << Types[i]->getType();
1052 TypeErrorFound = true;
1053 }
1054 }
1055 }
1056 }
1057 if (TypeErrorFound)
1058 return ExprError();
1059
1060 // If we determined that the generic selection is result-dependent, don't
1061 // try to compute the result expression.
1062 if (IsResultDependent)
1063 return Owned(new (Context) GenericSelectionExpr(
1064 Context, KeyLoc, ControllingExpr,
1065 Types, Exprs, NumAssocs, DefaultLoc,
1066 RParenLoc, ContainsUnexpandedParameterPack));
1067
Chris Lattner5f9e2722011-07-23 10:55:15 +00001068 SmallVector<unsigned, 1> CompatIndices;
Peter Collingbournef111d932011-04-15 00:35:48 +00001069 unsigned DefaultIndex = -1U;
1070 for (unsigned i = 0; i < NumAssocs; ++i) {
1071 if (!Types[i])
1072 DefaultIndex = i;
1073 else if (Context.typesAreCompatible(ControllingExpr->getType(),
1074 Types[i]->getType()))
1075 CompatIndices.push_back(i);
1076 }
1077
Benjamin Kramerffbe9b92011-12-23 17:00:35 +00001078 // C11 6.5.1.1p2 "The controlling expression of a generic selection shall have
Peter Collingbournef111d932011-04-15 00:35:48 +00001079 // type compatible with at most one of the types named in its generic
1080 // association list."
1081 if (CompatIndices.size() > 1) {
1082 // We strip parens here because the controlling expression is typically
1083 // parenthesized in macro definitions.
1084 ControllingExpr = ControllingExpr->IgnoreParens();
1085 Diag(ControllingExpr->getLocStart(), diag::err_generic_sel_multi_match)
1086 << ControllingExpr->getSourceRange() << ControllingExpr->getType()
1087 << (unsigned) CompatIndices.size();
Chris Lattner5f9e2722011-07-23 10:55:15 +00001088 for (SmallVector<unsigned, 1>::iterator I = CompatIndices.begin(),
Peter Collingbournef111d932011-04-15 00:35:48 +00001089 E = CompatIndices.end(); I != E; ++I) {
1090 Diag(Types[*I]->getTypeLoc().getBeginLoc(),
1091 diag::note_compat_assoc)
1092 << Types[*I]->getTypeLoc().getSourceRange()
1093 << Types[*I]->getType();
1094 }
1095 return ExprError();
1096 }
1097
Benjamin Kramerffbe9b92011-12-23 17:00:35 +00001098 // C11 6.5.1.1p2 "If a generic selection has no default generic association,
Peter Collingbournef111d932011-04-15 00:35:48 +00001099 // its controlling expression shall have type compatible with exactly one of
1100 // the types named in its generic association list."
1101 if (DefaultIndex == -1U && CompatIndices.size() == 0) {
1102 // We strip parens here because the controlling expression is typically
1103 // parenthesized in macro definitions.
1104 ControllingExpr = ControllingExpr->IgnoreParens();
1105 Diag(ControllingExpr->getLocStart(), diag::err_generic_sel_no_match)
1106 << ControllingExpr->getSourceRange() << ControllingExpr->getType();
1107 return ExprError();
1108 }
1109
Benjamin Kramerffbe9b92011-12-23 17:00:35 +00001110 // C11 6.5.1.1p3 "If a generic selection has a generic association with a
Peter Collingbournef111d932011-04-15 00:35:48 +00001111 // type name that is compatible with the type of the controlling expression,
1112 // then the result expression of the generic selection is the expression
1113 // in that generic association. Otherwise, the result expression of the
1114 // generic selection is the expression in the default generic association."
1115 unsigned ResultIndex =
1116 CompatIndices.size() ? CompatIndices[0] : DefaultIndex;
1117
1118 return Owned(new (Context) GenericSelectionExpr(
1119 Context, KeyLoc, ControllingExpr,
1120 Types, Exprs, NumAssocs, DefaultLoc,
1121 RParenLoc, ContainsUnexpandedParameterPack,
1122 ResultIndex));
1123}
1124
Richard Smithdd66be72012-03-08 01:34:56 +00001125/// getUDSuffixLoc - Create a SourceLocation for a ud-suffix, given the
1126/// location of the token and the offset of the ud-suffix within it.
1127static SourceLocation getUDSuffixLoc(Sema &S, SourceLocation TokLoc,
1128 unsigned Offset) {
1129 return Lexer::AdvanceToTokenCharacter(TokLoc, Offset, S.getSourceManager(),
David Blaikie4e4d0842012-03-11 07:00:24 +00001130 S.getLangOpts());
Richard Smithdd66be72012-03-08 01:34:56 +00001131}
1132
Richard Smith36f5cfe2012-03-09 08:00:36 +00001133/// BuildCookedLiteralOperatorCall - A user-defined literal was found. Look up
1134/// the corresponding cooked (non-raw) literal operator, and build a call to it.
1135static ExprResult BuildCookedLiteralOperatorCall(Sema &S, Scope *Scope,
1136 IdentifierInfo *UDSuffix,
1137 SourceLocation UDSuffixLoc,
1138 ArrayRef<Expr*> Args,
1139 SourceLocation LitEndLoc) {
1140 assert(Args.size() <= 2 && "too many arguments for literal operator");
1141
1142 QualType ArgTy[2];
1143 for (unsigned ArgIdx = 0; ArgIdx != Args.size(); ++ArgIdx) {
1144 ArgTy[ArgIdx] = Args[ArgIdx]->getType();
1145 if (ArgTy[ArgIdx]->isArrayType())
1146 ArgTy[ArgIdx] = S.Context.getArrayDecayedType(ArgTy[ArgIdx]);
1147 }
1148
1149 DeclarationName OpName =
1150 S.Context.DeclarationNames.getCXXLiteralOperatorName(UDSuffix);
1151 DeclarationNameInfo OpNameInfo(OpName, UDSuffixLoc);
1152 OpNameInfo.setCXXLiteralOperatorNameLoc(UDSuffixLoc);
1153
1154 LookupResult R(S, OpName, UDSuffixLoc, Sema::LookupOrdinaryName);
1155 if (S.LookupLiteralOperator(Scope, R, llvm::makeArrayRef(ArgTy, Args.size()),
1156 /*AllowRawAndTemplate*/false) == Sema::LOLR_Error)
1157 return ExprError();
1158
1159 return S.BuildLiteralOperatorCall(R, OpNameInfo, Args, LitEndLoc);
1160}
1161
Steve Narofff69936d2007-09-16 03:34:24 +00001162/// ActOnStringLiteral - The specified tokens were lexed as pasted string
Reid Spencer5f016e22007-07-11 17:01:13 +00001163/// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string
1164/// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from
1165/// multiple tokens. However, the common case is that StringToks points to one
1166/// string.
Sebastian Redlcd965b92009-01-18 18:53:16 +00001167///
John McCall60d7b3a2010-08-24 06:29:42 +00001168ExprResult
Richard Smith36f5cfe2012-03-09 08:00:36 +00001169Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks,
1170 Scope *UDLScope) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001171 assert(NumStringToks && "Must have at least one string!");
1172
Chris Lattnerbbee00b2009-01-16 18:51:42 +00001173 StringLiteralParser Literal(StringToks, NumStringToks, PP);
Reid Spencer5f016e22007-07-11 17:01:13 +00001174 if (Literal.hadError)
Sebastian Redlcd965b92009-01-18 18:53:16 +00001175 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +00001176
Chris Lattner5f9e2722011-07-23 10:55:15 +00001177 SmallVector<SourceLocation, 4> StringTokLocs;
Reid Spencer5f016e22007-07-11 17:01:13 +00001178 for (unsigned i = 0; i != NumStringToks; ++i)
1179 StringTokLocs.push_back(StringToks[i].getLocation());
Chris Lattnera7ad98f2008-02-11 00:02:17 +00001180
Chris Lattnera7ad98f2008-02-11 00:02:17 +00001181 QualType StrTy = Context.CharTy;
Douglas Gregor5cee1192011-07-27 05:40:30 +00001182 if (Literal.isWide())
Anders Carlsson96b4adc2011-04-06 18:42:48 +00001183 StrTy = Context.getWCharType();
Douglas Gregor5cee1192011-07-27 05:40:30 +00001184 else if (Literal.isUTF16())
1185 StrTy = Context.Char16Ty;
1186 else if (Literal.isUTF32())
1187 StrTy = Context.Char32Ty;
Eli Friedman64f45a22011-11-01 02:23:42 +00001188 else if (Literal.isPascal())
Anders Carlsson96b4adc2011-04-06 18:42:48 +00001189 StrTy = Context.UnsignedCharTy;
Douglas Gregor77a52232008-09-12 00:47:35 +00001190
Douglas Gregor5cee1192011-07-27 05:40:30 +00001191 StringLiteral::StringKind Kind = StringLiteral::Ascii;
1192 if (Literal.isWide())
1193 Kind = StringLiteral::Wide;
1194 else if (Literal.isUTF8())
1195 Kind = StringLiteral::UTF8;
1196 else if (Literal.isUTF16())
1197 Kind = StringLiteral::UTF16;
1198 else if (Literal.isUTF32())
1199 Kind = StringLiteral::UTF32;
1200
Douglas Gregor77a52232008-09-12 00:47:35 +00001201 // A C++ string literal has a const-qualified element type (C++ 2.13.4p1).
David Blaikie4e4d0842012-03-11 07:00:24 +00001202 if (getLangOpts().CPlusPlus || getLangOpts().ConstStrings)
Douglas Gregor77a52232008-09-12 00:47:35 +00001203 StrTy.addConst();
Sebastian Redlcd965b92009-01-18 18:53:16 +00001204
Chris Lattnera7ad98f2008-02-11 00:02:17 +00001205 // Get an array type for the string, according to C99 6.4.5. This includes
1206 // the nul terminator character as well as the string length for pascal
1207 // strings.
1208 StrTy = Context.getConstantArrayType(StrTy,
Chris Lattnerdbb1ecc2009-02-26 23:01:51 +00001209 llvm::APInt(32, Literal.GetNumStringChars()+1),
Chris Lattnera7ad98f2008-02-11 00:02:17 +00001210 ArrayType::Normal, 0);
Mike Stump1eb44332009-09-09 15:08:12 +00001211
Reid Spencer5f016e22007-07-11 17:01:13 +00001212 // Pass &StringTokLocs[0], StringTokLocs.size() to factory!
Richard Smith9fcce652012-03-07 08:35:16 +00001213 StringLiteral *Lit = StringLiteral::Create(Context, Literal.GetString(),
1214 Kind, Literal.Pascal, StrTy,
1215 &StringTokLocs[0],
1216 StringTokLocs.size());
1217 if (Literal.getUDSuffix().empty())
1218 return Owned(Lit);
1219
1220 // We're building a user-defined literal.
1221 IdentifierInfo *UDSuffix = &Context.Idents.get(Literal.getUDSuffix());
Richard Smithdd66be72012-03-08 01:34:56 +00001222 SourceLocation UDSuffixLoc =
1223 getUDSuffixLoc(*this, StringTokLocs[Literal.getUDSuffixToken()],
1224 Literal.getUDSuffixOffset());
Richard Smith9fcce652012-03-07 08:35:16 +00001225
Richard Smith36f5cfe2012-03-09 08:00:36 +00001226 // Make sure we're allowed user-defined literals here.
1227 if (!UDLScope)
1228 return ExprError(Diag(UDSuffixLoc, diag::err_invalid_string_udl));
1229
Richard Smith9fcce652012-03-07 08:35:16 +00001230 // C++11 [lex.ext]p5: The literal L is treated as a call of the form
1231 // operator "" X (str, len)
1232 QualType SizeType = Context.getSizeType();
1233 llvm::APInt Len(Context.getIntWidth(SizeType), Literal.GetNumStringChars());
1234 IntegerLiteral *LenArg = IntegerLiteral::Create(Context, Len, SizeType,
1235 StringTokLocs[0]);
1236 Expr *Args[] = { Lit, LenArg };
Richard Smith36f5cfe2012-03-09 08:00:36 +00001237 return BuildCookedLiteralOperatorCall(*this, UDLScope, UDSuffix, UDSuffixLoc,
1238 Args, StringTokLocs.back());
Reid Spencer5f016e22007-07-11 17:01:13 +00001239}
1240
John McCall60d7b3a2010-08-24 06:29:42 +00001241ExprResult
John McCallf89e55a2010-11-18 06:31:45 +00001242Sema::BuildDeclRefExpr(ValueDecl *D, QualType Ty, ExprValueKind VK,
John McCall76a40212011-02-09 01:13:10 +00001243 SourceLocation Loc,
1244 const CXXScopeSpec *SS) {
Abramo Bagnara25777432010-08-11 22:01:17 +00001245 DeclarationNameInfo NameInfo(D->getDeclName(), Loc);
John McCallf89e55a2010-11-18 06:31:45 +00001246 return BuildDeclRefExpr(D, Ty, VK, NameInfo, SS);
Abramo Bagnara25777432010-08-11 22:01:17 +00001247}
1248
John McCall76a40212011-02-09 01:13:10 +00001249/// BuildDeclRefExpr - Build an expression that references a
1250/// declaration that does not require a closure capture.
John McCall60d7b3a2010-08-24 06:29:42 +00001251ExprResult
John McCall76a40212011-02-09 01:13:10 +00001252Sema::BuildDeclRefExpr(ValueDecl *D, QualType Ty, ExprValueKind VK,
Abramo Bagnara25777432010-08-11 22:01:17 +00001253 const DeclarationNameInfo &NameInfo,
1254 const CXXScopeSpec *SS) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001255 if (getLangOpts().CUDA)
Peter Collingbourne78dd67e2011-10-02 23:49:40 +00001256 if (const FunctionDecl *Caller = dyn_cast<FunctionDecl>(CurContext))
1257 if (const FunctionDecl *Callee = dyn_cast<FunctionDecl>(D)) {
1258 CUDAFunctionTarget CallerTarget = IdentifyCUDATarget(Caller),
1259 CalleeTarget = IdentifyCUDATarget(Callee);
1260 if (CheckCUDATarget(CallerTarget, CalleeTarget)) {
1261 Diag(NameInfo.getLoc(), diag::err_ref_bad_target)
1262 << CalleeTarget << D->getIdentifier() << CallerTarget;
1263 Diag(D->getLocation(), diag::note_previous_decl)
1264 << D->getIdentifier();
1265 return ExprError();
1266 }
1267 }
1268
John McCallf4b88a42012-03-10 09:33:50 +00001269 bool refersToEnclosingScope =
1270 (CurContext != D->getDeclContext() &&
1271 D->getDeclContext()->isFunctionOrMethod());
1272
Eli Friedman5f2987c2012-02-02 03:46:19 +00001273 DeclRefExpr *E = DeclRefExpr::Create(Context,
1274 SS ? SS->getWithLocInContext(Context)
1275 : NestedNameSpecifierLoc(),
John McCallf4b88a42012-03-10 09:33:50 +00001276 SourceLocation(),
1277 D, refersToEnclosingScope,
1278 NameInfo, Ty, VK);
Mike Stump1eb44332009-09-09 15:08:12 +00001279
Eli Friedman5f2987c2012-02-02 03:46:19 +00001280 MarkDeclRefReferenced(E);
John McCall7eb0a9e2010-11-24 05:12:34 +00001281
1282 // Just in case we're building an illegal pointer-to-member.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00001283 FieldDecl *FD = dyn_cast<FieldDecl>(D);
1284 if (FD && FD->isBitField())
John McCall7eb0a9e2010-11-24 05:12:34 +00001285 E->setObjectKind(OK_BitField);
1286
1287 return Owned(E);
Douglas Gregor1a49af92009-01-06 05:10:23 +00001288}
1289
Abramo Bagnara25777432010-08-11 22:01:17 +00001290/// Decomposes the given name into a DeclarationNameInfo, its location, and
John McCall129e2df2009-11-30 22:42:35 +00001291/// possibly a list of template arguments.
1292///
1293/// If this produces template arguments, it is permitted to call
1294/// DecomposeTemplateName.
1295///
1296/// This actually loses a lot of source location information for
1297/// non-standard name kinds; we should consider preserving that in
1298/// some way.
Richard Trieu67e29332011-08-02 04:35:43 +00001299void
1300Sema::DecomposeUnqualifiedId(const UnqualifiedId &Id,
1301 TemplateArgumentListInfo &Buffer,
1302 DeclarationNameInfo &NameInfo,
1303 const TemplateArgumentListInfo *&TemplateArgs) {
John McCall129e2df2009-11-30 22:42:35 +00001304 if (Id.getKind() == UnqualifiedId::IK_TemplateId) {
1305 Buffer.setLAngleLoc(Id.TemplateId->LAngleLoc);
1306 Buffer.setRAngleLoc(Id.TemplateId->RAngleLoc);
1307
Douglas Gregor2b1ad8b2011-06-23 00:49:38 +00001308 ASTTemplateArgsPtr TemplateArgsPtr(*this,
John McCall129e2df2009-11-30 22:42:35 +00001309 Id.TemplateId->getTemplateArgs(),
1310 Id.TemplateId->NumArgs);
Douglas Gregor2b1ad8b2011-06-23 00:49:38 +00001311 translateTemplateArguments(TemplateArgsPtr, Buffer);
John McCall129e2df2009-11-30 22:42:35 +00001312 TemplateArgsPtr.release();
1313
John McCall2b5289b2010-08-23 07:28:44 +00001314 TemplateName TName = Id.TemplateId->Template.get();
Abramo Bagnara25777432010-08-11 22:01:17 +00001315 SourceLocation TNameLoc = Id.TemplateId->TemplateNameLoc;
Douglas Gregor2b1ad8b2011-06-23 00:49:38 +00001316 NameInfo = Context.getNameForTemplate(TName, TNameLoc);
John McCall129e2df2009-11-30 22:42:35 +00001317 TemplateArgs = &Buffer;
1318 } else {
Douglas Gregor2b1ad8b2011-06-23 00:49:38 +00001319 NameInfo = GetNameFromUnqualifiedId(Id);
John McCall129e2df2009-11-30 22:42:35 +00001320 TemplateArgs = 0;
1321 }
1322}
1323
John McCall578b69b2009-12-16 08:11:27 +00001324/// Diagnose an empty lookup.
1325///
1326/// \return false if new lookup candidates were found
Nick Lewycky03d98c52010-07-06 19:51:49 +00001327bool Sema::DiagnoseEmptyLookup(Scope *S, CXXScopeSpec &SS, LookupResult &R,
Kaelyn Uhrain4798f8d2012-01-18 05:58:54 +00001328 CorrectionCandidateCallback &CCC,
Kaelyn Uhrainace5e762011-08-05 00:09:52 +00001329 TemplateArgumentListInfo *ExplicitTemplateArgs,
Ahmed Charles13a140c2012-02-25 11:00:22 +00001330 llvm::ArrayRef<Expr *> Args) {
John McCall578b69b2009-12-16 08:11:27 +00001331 DeclarationName Name = R.getLookupName();
1332
John McCall578b69b2009-12-16 08:11:27 +00001333 unsigned diagnostic = diag::err_undeclared_var_use;
Douglas Gregorbb092ba2009-12-31 05:20:13 +00001334 unsigned diagnostic_suggest = diag::err_undeclared_var_use_suggest;
John McCall578b69b2009-12-16 08:11:27 +00001335 if (Name.getNameKind() == DeclarationName::CXXOperatorName ||
1336 Name.getNameKind() == DeclarationName::CXXLiteralOperatorName ||
Douglas Gregorbb092ba2009-12-31 05:20:13 +00001337 Name.getNameKind() == DeclarationName::CXXConversionFunctionName) {
John McCall578b69b2009-12-16 08:11:27 +00001338 diagnostic = diag::err_undeclared_use;
Douglas Gregorbb092ba2009-12-31 05:20:13 +00001339 diagnostic_suggest = diag::err_undeclared_use_suggest;
1340 }
John McCall578b69b2009-12-16 08:11:27 +00001341
Douglas Gregorbb092ba2009-12-31 05:20:13 +00001342 // If the original lookup was an unqualified lookup, fake an
1343 // unqualified lookup. This is useful when (for example) the
1344 // original lookup would not have found something because it was a
1345 // dependent name.
Francois Pichetc8ff9152011-11-25 01:10:54 +00001346 DeclContext *DC = SS.isEmpty() ? CurContext : 0;
1347 while (DC) {
John McCall578b69b2009-12-16 08:11:27 +00001348 if (isa<CXXRecordDecl>(DC)) {
1349 LookupQualifiedName(R, DC);
1350
1351 if (!R.empty()) {
1352 // Don't give errors about ambiguities in this lookup.
1353 R.suppressDiagnostics();
1354
Francois Pichete6226ae2011-11-17 03:44:24 +00001355 // During a default argument instantiation the CurContext points
1356 // to a CXXMethodDecl; but we can't apply a this-> fixit inside a
1357 // function parameter list, hence add an explicit check.
1358 bool isDefaultArgument = !ActiveTemplateInstantiations.empty() &&
1359 ActiveTemplateInstantiations.back().Kind ==
1360 ActiveTemplateInstantiation::DefaultFunctionArgumentInstantiation;
John McCall578b69b2009-12-16 08:11:27 +00001361 CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext);
1362 bool isInstance = CurMethod &&
1363 CurMethod->isInstance() &&
Francois Pichete6226ae2011-11-17 03:44:24 +00001364 DC == CurMethod->getParent() && !isDefaultArgument;
1365
John McCall578b69b2009-12-16 08:11:27 +00001366
1367 // Give a code modification hint to insert 'this->'.
1368 // TODO: fixit for inserting 'Base<T>::' in the other cases.
1369 // Actually quite difficult!
Nick Lewycky03d98c52010-07-06 19:51:49 +00001370 if (isInstance) {
Nick Lewycky03d98c52010-07-06 19:51:49 +00001371 UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>(
1372 CallsUndergoingInstantiation.back()->getCallee());
Nick Lewyckyd9ca4ab2010-08-20 20:54:15 +00001373 CXXMethodDecl *DepMethod = cast_or_null<CXXMethodDecl>(
Nick Lewycky03d98c52010-07-06 19:51:49 +00001374 CurMethod->getInstantiatedFromMemberFunction());
Eli Friedmana7e68452010-08-22 01:00:03 +00001375 if (DepMethod) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001376 if (getLangOpts().MicrosoftMode)
Francois Pichet0f74d1e2011-09-07 00:14:57 +00001377 diagnostic = diag::warn_found_via_dependent_bases_lookup;
Nick Lewyckyd9ca4ab2010-08-20 20:54:15 +00001378 Diag(R.getNameLoc(), diagnostic) << Name
1379 << FixItHint::CreateInsertion(R.getNameLoc(), "this->");
1380 QualType DepThisType = DepMethod->getThisType(Context);
Eli Friedman72899c32012-01-07 04:59:52 +00001381 CheckCXXThisCapture(R.getNameLoc());
Nick Lewyckyd9ca4ab2010-08-20 20:54:15 +00001382 CXXThisExpr *DepThis = new (Context) CXXThisExpr(
1383 R.getNameLoc(), DepThisType, false);
1384 TemplateArgumentListInfo TList;
1385 if (ULE->hasExplicitTemplateArgs())
1386 ULE->copyTemplateArgumentsInto(TList);
Douglas Gregor7c3179c2011-02-28 18:50:33 +00001387
Douglas Gregor7c3179c2011-02-28 18:50:33 +00001388 CXXScopeSpec SS;
Douglas Gregor4c9be892011-02-28 20:01:57 +00001389 SS.Adopt(ULE->getQualifierLoc());
Nick Lewyckyd9ca4ab2010-08-20 20:54:15 +00001390 CXXDependentScopeMemberExpr *DepExpr =
1391 CXXDependentScopeMemberExpr::Create(
1392 Context, DepThis, DepThisType, true, SourceLocation(),
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001393 SS.getWithLocInContext(Context),
1394 ULE->getTemplateKeywordLoc(), 0,
Francois Pichetf7400122011-09-04 23:00:48 +00001395 R.getLookupNameInfo(),
1396 ULE->hasExplicitTemplateArgs() ? &TList : 0);
Nick Lewyckyd9ca4ab2010-08-20 20:54:15 +00001397 CallsUndergoingInstantiation.back()->setCallee(DepExpr);
Eli Friedmana7e68452010-08-22 01:00:03 +00001398 } else {
Nick Lewyckyd9ca4ab2010-08-20 20:54:15 +00001399 // FIXME: we should be able to handle this case too. It is correct
1400 // to add this-> here. This is a workaround for PR7947.
1401 Diag(R.getNameLoc(), diagnostic) << Name;
Eli Friedmana7e68452010-08-22 01:00:03 +00001402 }
Nick Lewycky03d98c52010-07-06 19:51:49 +00001403 } else {
David Blaikie4e4d0842012-03-11 07:00:24 +00001404 if (getLangOpts().MicrosoftMode)
Francois Pichete614d6c2011-11-15 23:33:34 +00001405 diagnostic = diag::warn_found_via_dependent_bases_lookup;
John McCall578b69b2009-12-16 08:11:27 +00001406 Diag(R.getNameLoc(), diagnostic) << Name;
Nick Lewycky03d98c52010-07-06 19:51:49 +00001407 }
John McCall578b69b2009-12-16 08:11:27 +00001408
1409 // Do we really want to note all of these?
1410 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
1411 Diag((*I)->getLocation(), diag::note_dependent_var_use);
1412
Francois Pichete6226ae2011-11-17 03:44:24 +00001413 // Return true if we are inside a default argument instantiation
1414 // and the found name refers to an instance member function, otherwise
1415 // the function calling DiagnoseEmptyLookup will try to create an
1416 // implicit member call and this is wrong for default argument.
1417 if (isDefaultArgument && ((*R.begin())->isCXXInstanceMember())) {
1418 Diag(R.getNameLoc(), diag::err_member_call_without_object);
1419 return true;
1420 }
1421
John McCall578b69b2009-12-16 08:11:27 +00001422 // Tell the callee to try to recover.
1423 return false;
1424 }
Douglas Gregore26f0432010-08-09 22:38:14 +00001425
1426 R.clear();
John McCall578b69b2009-12-16 08:11:27 +00001427 }
Francois Pichetc8ff9152011-11-25 01:10:54 +00001428
1429 // In Microsoft mode, if we are performing lookup from within a friend
1430 // function definition declared at class scope then we must set
1431 // DC to the lexical parent to be able to search into the parent
1432 // class.
David Blaikie4e4d0842012-03-11 07:00:24 +00001433 if (getLangOpts().MicrosoftMode && isa<FunctionDecl>(DC) &&
Francois Pichetc8ff9152011-11-25 01:10:54 +00001434 cast<FunctionDecl>(DC)->getFriendObjectKind() &&
1435 DC->getLexicalParent()->isRecord())
1436 DC = DC->getLexicalParent();
1437 else
1438 DC = DC->getParent();
John McCall578b69b2009-12-16 08:11:27 +00001439 }
1440
Douglas Gregorbb092ba2009-12-31 05:20:13 +00001441 // We didn't find anything, so try to correct for a typo.
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001442 TypoCorrection Corrected;
1443 if (S && (Corrected = CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(),
Kaelyn Uhrain16e46dd2012-01-31 23:49:25 +00001444 S, &SS, CCC))) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001445 std::string CorrectedStr(Corrected.getAsString(getLangOpts()));
1446 std::string CorrectedQuotedStr(Corrected.getQuoted(getLangOpts()));
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001447 R.setLookupName(Corrected.getCorrection());
1448
Hans Wennborg701d1e72011-07-12 08:45:31 +00001449 if (NamedDecl *ND = Corrected.getCorrectionDecl()) {
Kaelyn Uhrainf0c1d8f2011-08-03 20:36:05 +00001450 if (Corrected.isOverloaded()) {
1451 OverloadCandidateSet OCS(R.getNameLoc());
1452 OverloadCandidateSet::iterator Best;
1453 for (TypoCorrection::decl_iterator CD = Corrected.begin(),
1454 CDEnd = Corrected.end();
1455 CD != CDEnd; ++CD) {
Kaelyn Uhrainadc7a732011-08-08 17:35:31 +00001456 if (FunctionTemplateDecl *FTD =
Kaelyn Uhrainace5e762011-08-05 00:09:52 +00001457 dyn_cast<FunctionTemplateDecl>(*CD))
1458 AddTemplateOverloadCandidate(
1459 FTD, DeclAccessPair::make(FTD, AS_none), ExplicitTemplateArgs,
Ahmed Charles13a140c2012-02-25 11:00:22 +00001460 Args, OCS);
Kaelyn Uhrainadc7a732011-08-08 17:35:31 +00001461 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(*CD))
1462 if (!ExplicitTemplateArgs || ExplicitTemplateArgs->size() == 0)
1463 AddOverloadCandidate(FD, DeclAccessPair::make(FD, AS_none),
Ahmed Charles13a140c2012-02-25 11:00:22 +00001464 Args, OCS);
Kaelyn Uhrainf0c1d8f2011-08-03 20:36:05 +00001465 }
1466 switch (OCS.BestViableFunction(*this, R.getNameLoc(), Best)) {
1467 case OR_Success:
1468 ND = Best->Function;
1469 break;
1470 default:
Kaelyn Uhrain844d5722011-08-04 23:30:54 +00001471 break;
Kaelyn Uhrainf0c1d8f2011-08-03 20:36:05 +00001472 }
1473 }
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001474 R.addDecl(ND);
1475 if (isa<ValueDecl>(ND) || isa<FunctionTemplateDecl>(ND)) {
Douglas Gregoraaf87162010-04-14 20:04:41 +00001476 if (SS.isEmpty())
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001477 Diag(R.getNameLoc(), diagnostic_suggest) << Name << CorrectedQuotedStr
1478 << FixItHint::CreateReplacement(R.getNameLoc(), CorrectedStr);
Douglas Gregoraaf87162010-04-14 20:04:41 +00001479 else
1480 Diag(R.getNameLoc(), diag::err_no_member_suggest)
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001481 << Name << computeDeclContext(SS, false) << CorrectedQuotedStr
Douglas Gregoraaf87162010-04-14 20:04:41 +00001482 << SS.getRange()
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001483 << FixItHint::CreateReplacement(R.getNameLoc(), CorrectedStr);
1484 if (ND)
Douglas Gregoraaf87162010-04-14 20:04:41 +00001485 Diag(ND->getLocation(), diag::note_previous_decl)
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001486 << CorrectedQuotedStr;
Douglas Gregoraaf87162010-04-14 20:04:41 +00001487
1488 // Tell the callee to try to recover.
1489 return false;
1490 }
Sean Hunt1e3f5ba2010-04-28 23:02:27 +00001491
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001492 if (isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND)) {
Douglas Gregoraaf87162010-04-14 20:04:41 +00001493 // FIXME: If we ended up with a typo for a type name or
1494 // Objective-C class name, we're in trouble because the parser
1495 // is in the wrong place to recover. Suggest the typo
1496 // correction, but don't make it a fix-it since we're not going
1497 // to recover well anyway.
1498 if (SS.isEmpty())
Richard Trieu67e29332011-08-02 04:35:43 +00001499 Diag(R.getNameLoc(), diagnostic_suggest)
1500 << Name << CorrectedQuotedStr;
Douglas Gregoraaf87162010-04-14 20:04:41 +00001501 else
1502 Diag(R.getNameLoc(), diag::err_no_member_suggest)
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001503 << Name << computeDeclContext(SS, false) << CorrectedQuotedStr
Douglas Gregoraaf87162010-04-14 20:04:41 +00001504 << SS.getRange();
1505
1506 // Don't try to recover; it won't work.
1507 return true;
1508 }
1509 } else {
Sean Hunt1e3f5ba2010-04-28 23:02:27 +00001510 // FIXME: We found a keyword. Suggest it, but don't provide a fix-it
Douglas Gregoraaf87162010-04-14 20:04:41 +00001511 // because we aren't able to recover.
Douglas Gregord203a162010-01-01 00:15:04 +00001512 if (SS.isEmpty())
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001513 Diag(R.getNameLoc(), diagnostic_suggest) << Name << CorrectedQuotedStr;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001514 else
Douglas Gregord203a162010-01-01 00:15:04 +00001515 Diag(R.getNameLoc(), diag::err_no_member_suggest)
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001516 << Name << computeDeclContext(SS, false) << CorrectedQuotedStr
Douglas Gregoraaf87162010-04-14 20:04:41 +00001517 << SS.getRange();
Douglas Gregord203a162010-01-01 00:15:04 +00001518 return true;
1519 }
Douglas Gregorbb092ba2009-12-31 05:20:13 +00001520 }
Douglas Gregord8bba9c2011-06-28 16:20:02 +00001521 R.clear();
Douglas Gregorbb092ba2009-12-31 05:20:13 +00001522
1523 // Emit a special diagnostic for failed member lookups.
1524 // FIXME: computing the declaration context might fail here (?)
1525 if (!SS.isEmpty()) {
1526 Diag(R.getNameLoc(), diag::err_no_member)
1527 << Name << computeDeclContext(SS, false)
1528 << SS.getRange();
1529 return true;
1530 }
1531
John McCall578b69b2009-12-16 08:11:27 +00001532 // Give up, we can't recover.
1533 Diag(R.getNameLoc(), diagnostic) << Name;
1534 return true;
1535}
1536
John McCall60d7b3a2010-08-24 06:29:42 +00001537ExprResult Sema::ActOnIdExpression(Scope *S,
John McCallfb97e752010-08-24 22:52:39 +00001538 CXXScopeSpec &SS,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001539 SourceLocation TemplateKWLoc,
John McCallfb97e752010-08-24 22:52:39 +00001540 UnqualifiedId &Id,
1541 bool HasTrailingLParen,
Kaelyn Uhraincd78e612012-01-25 20:49:08 +00001542 bool IsAddressOfOperand,
1543 CorrectionCandidateCallback *CCC) {
Richard Trieuccd891a2011-09-09 01:45:06 +00001544 assert(!(IsAddressOfOperand && HasTrailingLParen) &&
John McCallf7a1a742009-11-24 19:00:30 +00001545 "cannot be direct & operand and have a trailing lparen");
1546
1547 if (SS.isInvalid())
Douglas Gregor4c921ae2009-01-30 01:04:22 +00001548 return ExprError();
Douglas Gregor5953d8b2009-03-19 17:26:29 +00001549
John McCall129e2df2009-11-30 22:42:35 +00001550 TemplateArgumentListInfo TemplateArgsBuffer;
John McCallf7a1a742009-11-24 19:00:30 +00001551
1552 // Decompose the UnqualifiedId into the following data.
Abramo Bagnara25777432010-08-11 22:01:17 +00001553 DeclarationNameInfo NameInfo;
John McCallf7a1a742009-11-24 19:00:30 +00001554 const TemplateArgumentListInfo *TemplateArgs;
Douglas Gregor2b1ad8b2011-06-23 00:49:38 +00001555 DecomposeUnqualifiedId(Id, TemplateArgsBuffer, NameInfo, TemplateArgs);
Douglas Gregor5953d8b2009-03-19 17:26:29 +00001556
Abramo Bagnara25777432010-08-11 22:01:17 +00001557 DeclarationName Name = NameInfo.getName();
Douglas Gregor10c42622008-11-18 15:03:34 +00001558 IdentifierInfo *II = Name.getAsIdentifierInfo();
Abramo Bagnara25777432010-08-11 22:01:17 +00001559 SourceLocation NameLoc = NameInfo.getLoc();
John McCallba135432009-11-21 08:51:07 +00001560
John McCallf7a1a742009-11-24 19:00:30 +00001561 // C++ [temp.dep.expr]p3:
1562 // An id-expression is type-dependent if it contains:
Douglas Gregor48026d22010-01-11 18:40:55 +00001563 // -- an identifier that was declared with a dependent type,
1564 // (note: handled after lookup)
1565 // -- a template-id that is dependent,
1566 // (note: handled in BuildTemplateIdExpr)
1567 // -- a conversion-function-id that specifies a dependent type,
John McCallf7a1a742009-11-24 19:00:30 +00001568 // -- a nested-name-specifier that contains a class-name that
1569 // names a dependent type.
1570 // Determine whether this is a member of an unknown specialization;
1571 // we need to handle these differently.
Eli Friedman647c8b32010-08-06 23:41:47 +00001572 bool DependentID = false;
1573 if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName &&
1574 Name.getCXXNameType()->isDependentType()) {
1575 DependentID = true;
1576 } else if (SS.isSet()) {
Chris Lattner337e5502011-02-18 01:27:55 +00001577 if (DeclContext *DC = computeDeclContext(SS, false)) {
Eli Friedman647c8b32010-08-06 23:41:47 +00001578 if (RequireCompleteDeclContext(SS, DC))
1579 return ExprError();
Eli Friedman647c8b32010-08-06 23:41:47 +00001580 } else {
1581 DependentID = true;
1582 }
1583 }
1584
Chris Lattner337e5502011-02-18 01:27:55 +00001585 if (DependentID)
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001586 return ActOnDependentIdExpression(SS, TemplateKWLoc, NameInfo,
1587 IsAddressOfOperand, TemplateArgs);
Chris Lattner337e5502011-02-18 01:27:55 +00001588
John McCallf7a1a742009-11-24 19:00:30 +00001589 // Perform the required lookup.
Fariborz Jahanian98a54032011-07-12 17:16:56 +00001590 LookupResult R(*this, NameInfo,
1591 (Id.getKind() == UnqualifiedId::IK_ImplicitSelfParam)
1592 ? LookupObjCImplicitSelfParam : LookupOrdinaryName);
John McCallf7a1a742009-11-24 19:00:30 +00001593 if (TemplateArgs) {
Douglas Gregord2235f62010-05-20 20:58:56 +00001594 // Lookup the template name again to correctly establish the context in
1595 // which it was found. This is really unfortunate as we already did the
1596 // lookup to determine that it was a template name in the first place. If
1597 // this becomes a performance hit, we can work harder to preserve those
1598 // results until we get here but it's likely not worth it.
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001599 bool MemberOfUnknownSpecialization;
1600 LookupTemplateName(R, S, SS, QualType(), /*EnteringContext=*/false,
1601 MemberOfUnknownSpecialization);
Douglas Gregor2f9f89c2011-02-04 13:35:07 +00001602
1603 if (MemberOfUnknownSpecialization ||
1604 (R.getResultKind() == LookupResult::NotFoundInCurrentInstantiation))
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001605 return ActOnDependentIdExpression(SS, TemplateKWLoc, NameInfo,
1606 IsAddressOfOperand, TemplateArgs);
John McCallf7a1a742009-11-24 19:00:30 +00001607 } else {
Benjamin Kramerb7ff74a2012-01-20 14:57:34 +00001608 bool IvarLookupFollowUp = II && !SS.isSet() && getCurMethodDecl();
Fariborz Jahanian48c2d562010-01-12 23:58:59 +00001609 LookupParsedName(R, S, &SS, !IvarLookupFollowUp);
Mike Stump1eb44332009-09-09 15:08:12 +00001610
Douglas Gregor2f9f89c2011-02-04 13:35:07 +00001611 // If the result might be in a dependent base class, this is a dependent
1612 // id-expression.
1613 if (R.getResultKind() == LookupResult::NotFoundInCurrentInstantiation)
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001614 return ActOnDependentIdExpression(SS, TemplateKWLoc, NameInfo,
1615 IsAddressOfOperand, TemplateArgs);
1616
John McCallf7a1a742009-11-24 19:00:30 +00001617 // If this reference is in an Objective-C method, then we need to do
1618 // some special Objective-C lookup, too.
Fariborz Jahanian48c2d562010-01-12 23:58:59 +00001619 if (IvarLookupFollowUp) {
John McCall60d7b3a2010-08-24 06:29:42 +00001620 ExprResult E(LookupInObjCMethod(R, S, II, true));
John McCallf7a1a742009-11-24 19:00:30 +00001621 if (E.isInvalid())
1622 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +00001623
Chris Lattner337e5502011-02-18 01:27:55 +00001624 if (Expr *Ex = E.takeAs<Expr>())
1625 return Owned(Ex);
Steve Naroffe3e9add2008-06-02 23:03:37 +00001626 }
Chris Lattner8a934232008-03-31 00:36:02 +00001627 }
Douglas Gregorc71e28c2009-02-16 19:28:42 +00001628
John McCallf7a1a742009-11-24 19:00:30 +00001629 if (R.isAmbiguous())
1630 return ExprError();
1631
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001632 // Determine whether this name might be a candidate for
1633 // argument-dependent lookup.
John McCallf7a1a742009-11-24 19:00:30 +00001634 bool ADL = UseArgumentDependentLookup(SS, R, HasTrailingLParen);
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001635
John McCallf7a1a742009-11-24 19:00:30 +00001636 if (R.empty() && !ADL) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001637 // Otherwise, this could be an implicitly declared function reference (legal
John McCallf7a1a742009-11-24 19:00:30 +00001638 // in C90, extension in C99, forbidden in C++).
David Blaikie4e4d0842012-03-11 07:00:24 +00001639 if (HasTrailingLParen && II && !getLangOpts().CPlusPlus) {
John McCallf7a1a742009-11-24 19:00:30 +00001640 NamedDecl *D = ImplicitlyDefineFunction(NameLoc, *II, S);
1641 if (D) R.addDecl(D);
1642 }
1643
1644 // If this name wasn't predeclared and if this is not a function
1645 // call, diagnose the problem.
1646 if (R.empty()) {
Francois Pichetfce1a3a2011-09-24 10:38:05 +00001647
1648 // In Microsoft mode, if we are inside a template class member function
1649 // and we can't resolve an identifier then assume the identifier is type
1650 // dependent. The goal is to postpone name lookup to instantiation time
1651 // to be able to search into type dependent base classes.
David Blaikie4e4d0842012-03-11 07:00:24 +00001652 if (getLangOpts().MicrosoftMode && CurContext->isDependentContext() &&
Francois Pichetfce1a3a2011-09-24 10:38:05 +00001653 isa<CXXMethodDecl>(CurContext))
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001654 return ActOnDependentIdExpression(SS, TemplateKWLoc, NameInfo,
1655 IsAddressOfOperand, TemplateArgs);
Francois Pichetfce1a3a2011-09-24 10:38:05 +00001656
Kaelyn Uhrain4798f8d2012-01-18 05:58:54 +00001657 CorrectionCandidateCallback DefaultValidator;
Kaelyn Uhraincd78e612012-01-25 20:49:08 +00001658 if (DiagnoseEmptyLookup(S, SS, R, CCC ? *CCC : DefaultValidator))
John McCall578b69b2009-12-16 08:11:27 +00001659 return ExprError();
1660
1661 assert(!R.empty() &&
1662 "DiagnoseEmptyLookup returned false but added no results");
Douglas Gregorf06cdae2010-01-03 18:01:57 +00001663
1664 // If we found an Objective-C instance variable, let
1665 // LookupInObjCMethod build the appropriate expression to
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001666 // reference the ivar.
Douglas Gregorf06cdae2010-01-03 18:01:57 +00001667 if (ObjCIvarDecl *Ivar = R.getAsSingle<ObjCIvarDecl>()) {
1668 R.clear();
John McCall60d7b3a2010-08-24 06:29:42 +00001669 ExprResult E(LookupInObjCMethod(R, S, Ivar->getIdentifier()));
Fariborz Jahanianbc2b91a2011-09-23 23:11:38 +00001670 // In a hopelessly buggy code, Objective-C instance variable
1671 // lookup fails and no expression will be built to reference it.
1672 if (!E.isInvalid() && !E.get())
1673 return ExprError();
Douglas Gregorf06cdae2010-01-03 18:01:57 +00001674 return move(E);
1675 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001676 }
1677 }
Mike Stump1eb44332009-09-09 15:08:12 +00001678
John McCallf7a1a742009-11-24 19:00:30 +00001679 // This is guaranteed from this point on.
1680 assert(!R.empty() || ADL);
1681
John McCallaa81e162009-12-01 22:10:20 +00001682 // Check whether this might be a C++ implicit instance member access.
John McCallfb97e752010-08-24 22:52:39 +00001683 // C++ [class.mfct.non-static]p3:
1684 // When an id-expression that is not part of a class member access
1685 // syntax and not used to form a pointer to member is used in the
1686 // body of a non-static member function of class X, if name lookup
1687 // resolves the name in the id-expression to a non-static non-type
1688 // member of some class C, the id-expression is transformed into a
1689 // class member access expression using (*this) as the
1690 // postfix-expression to the left of the . operator.
John McCall9c72c602010-08-27 09:08:28 +00001691 //
1692 // But we don't actually need to do this for '&' operands if R
1693 // resolved to a function or overloaded function set, because the
1694 // expression is ill-formed if it actually works out to be a
1695 // non-static member function:
1696 //
1697 // C++ [expr.ref]p4:
1698 // Otherwise, if E1.E2 refers to a non-static member function. . .
1699 // [t]he expression can be used only as the left-hand operand of a
1700 // member function call.
1701 //
1702 // There are other safeguards against such uses, but it's important
1703 // to get this right here so that we don't end up making a
1704 // spuriously dependent expression if we're inside a dependent
1705 // instance method.
John McCall3b4294e2009-12-16 12:17:52 +00001706 if (!R.empty() && (*R.begin())->isCXXClassMember()) {
John McCall9c72c602010-08-27 09:08:28 +00001707 bool MightBeImplicitMember;
Richard Trieuccd891a2011-09-09 01:45:06 +00001708 if (!IsAddressOfOperand)
John McCall9c72c602010-08-27 09:08:28 +00001709 MightBeImplicitMember = true;
1710 else if (!SS.isEmpty())
1711 MightBeImplicitMember = false;
1712 else if (R.isOverloadedResult())
1713 MightBeImplicitMember = false;
Douglas Gregore2248be2010-08-30 16:00:47 +00001714 else if (R.isUnresolvableResult())
1715 MightBeImplicitMember = true;
John McCall9c72c602010-08-27 09:08:28 +00001716 else
Francois Pichet87c2e122010-11-21 06:08:52 +00001717 MightBeImplicitMember = isa<FieldDecl>(R.getFoundDecl()) ||
1718 isa<IndirectFieldDecl>(R.getFoundDecl());
John McCall9c72c602010-08-27 09:08:28 +00001719
1720 if (MightBeImplicitMember)
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001721 return BuildPossibleImplicitMemberExpr(SS, TemplateKWLoc,
1722 R, TemplateArgs);
John McCall5b3f9132009-11-22 01:44:31 +00001723 }
1724
Abramo Bagnara9d9922a2012-02-06 14:31:00 +00001725 if (TemplateArgs || TemplateKWLoc.isValid())
1726 return BuildTemplateIdExpr(SS, TemplateKWLoc, R, ADL, TemplateArgs);
John McCall5b3f9132009-11-22 01:44:31 +00001727
John McCallf7a1a742009-11-24 19:00:30 +00001728 return BuildDeclarationNameExpr(SS, R, ADL);
1729}
1730
John McCall129e2df2009-11-30 22:42:35 +00001731/// BuildQualifiedDeclarationNameExpr - Build a C++ qualified
1732/// declaration name, generally during template instantiation.
1733/// There's a large number of things which don't need to be done along
1734/// this path.
John McCall60d7b3a2010-08-24 06:29:42 +00001735ExprResult
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00001736Sema::BuildQualifiedDeclarationNameExpr(CXXScopeSpec &SS,
Abramo Bagnara25777432010-08-11 22:01:17 +00001737 const DeclarationNameInfo &NameInfo) {
John McCallf7a1a742009-11-24 19:00:30 +00001738 DeclContext *DC;
Douglas Gregore6ec5c42010-04-28 07:04:26 +00001739 if (!(DC = computeDeclContext(SS, false)) || DC->isDependentContext())
Abramo Bagnara9d9922a2012-02-06 14:31:00 +00001740 return BuildDependentDeclRefExpr(SS, /*TemplateKWLoc=*/SourceLocation(),
1741 NameInfo, /*TemplateArgs=*/0);
John McCallf7a1a742009-11-24 19:00:30 +00001742
John McCall77bb1aa2010-05-01 00:40:08 +00001743 if (RequireCompleteDeclContext(SS, DC))
Douglas Gregore6ec5c42010-04-28 07:04:26 +00001744 return ExprError();
1745
Abramo Bagnara25777432010-08-11 22:01:17 +00001746 LookupResult R(*this, NameInfo, LookupOrdinaryName);
John McCallf7a1a742009-11-24 19:00:30 +00001747 LookupQualifiedName(R, DC);
1748
1749 if (R.isAmbiguous())
1750 return ExprError();
1751
1752 if (R.empty()) {
Abramo Bagnara25777432010-08-11 22:01:17 +00001753 Diag(NameInfo.getLoc(), diag::err_no_member)
1754 << NameInfo.getName() << DC << SS.getRange();
John McCallf7a1a742009-11-24 19:00:30 +00001755 return ExprError();
1756 }
1757
1758 return BuildDeclarationNameExpr(SS, R, /*ADL*/ false);
1759}
1760
1761/// LookupInObjCMethod - The parser has read a name in, and Sema has
1762/// detected that we're currently inside an ObjC method. Perform some
1763/// additional lookup.
1764///
1765/// Ideally, most of this would be done by lookup, but there's
1766/// actually quite a lot of extra work involved.
1767///
1768/// Returns a null sentinel to indicate trivial success.
John McCall60d7b3a2010-08-24 06:29:42 +00001769ExprResult
John McCallf7a1a742009-11-24 19:00:30 +00001770Sema::LookupInObjCMethod(LookupResult &Lookup, Scope *S,
Chris Lattnereb483eb2010-04-11 08:28:14 +00001771 IdentifierInfo *II, bool AllowBuiltinCreation) {
John McCallf7a1a742009-11-24 19:00:30 +00001772 SourceLocation Loc = Lookup.getNameLoc();
Chris Lattneraec43db2010-04-12 05:10:17 +00001773 ObjCMethodDecl *CurMethod = getCurMethodDecl();
Sean Hunt1e3f5ba2010-04-28 23:02:27 +00001774
John McCallf7a1a742009-11-24 19:00:30 +00001775 // There are two cases to handle here. 1) scoped lookup could have failed,
1776 // in which case we should look for an ivar. 2) scoped lookup could have
1777 // found a decl, but that decl is outside the current instance method (i.e.
1778 // a global variable). In these two cases, we do a lookup for an ivar with
1779 // this name, if the lookup sucedes, we replace it our current decl.
1780
1781 // If we're in a class method, we don't normally want to look for
1782 // ivars. But if we don't find anything else, and there's an
1783 // ivar, that's an error.
Chris Lattneraec43db2010-04-12 05:10:17 +00001784 bool IsClassMethod = CurMethod->isClassMethod();
John McCallf7a1a742009-11-24 19:00:30 +00001785
1786 bool LookForIvars;
1787 if (Lookup.empty())
1788 LookForIvars = true;
1789 else if (IsClassMethod)
1790 LookForIvars = false;
1791 else
1792 LookForIvars = (Lookup.isSingleResult() &&
1793 Lookup.getFoundDecl()->isDefinedOutsideFunctionOrMethod());
Fariborz Jahanian412e7982010-02-09 19:31:38 +00001794 ObjCInterfaceDecl *IFace = 0;
John McCallf7a1a742009-11-24 19:00:30 +00001795 if (LookForIvars) {
Chris Lattneraec43db2010-04-12 05:10:17 +00001796 IFace = CurMethod->getClassInterface();
John McCallf7a1a742009-11-24 19:00:30 +00001797 ObjCInterfaceDecl *ClassDeclared;
Argyrios Kyrtzidis7c81c2a2011-10-19 02:25:16 +00001798 ObjCIvarDecl *IV = 0;
1799 if (IFace && (IV = IFace->lookupInstanceVariable(II, ClassDeclared))) {
John McCallf7a1a742009-11-24 19:00:30 +00001800 // Diagnose using an ivar in a class method.
1801 if (IsClassMethod)
1802 return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method)
1803 << IV->getDeclName());
1804
1805 // If we're referencing an invalid decl, just return this as a silent
1806 // error node. The error diagnostic was already emitted on the decl.
1807 if (IV->isInvalidDecl())
1808 return ExprError();
1809
1810 // Check if referencing a field with __attribute__((deprecated)).
1811 if (DiagnoseUseOfDecl(IV, Loc))
1812 return ExprError();
1813
1814 // Diagnose the use of an ivar outside of the declaring class.
1815 if (IV->getAccessControl() == ObjCIvarDecl::Private &&
Fariborz Jahanian458a7fb2012-03-07 00:58:41 +00001816 !declaresSameEntity(ClassDeclared, IFace) &&
David Blaikie4e4d0842012-03-11 07:00:24 +00001817 !getLangOpts().DebuggerSupport)
John McCallf7a1a742009-11-24 19:00:30 +00001818 Diag(Loc, diag::error_private_ivar_access) << IV->getDeclName();
1819
1820 // FIXME: This should use a new expr for a direct reference, don't
1821 // turn this into Self->ivar, just return a BareIVarExpr or something.
1822 IdentifierInfo &II = Context.Idents.get("self");
1823 UnqualifiedId SelfName;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001824 SelfName.setIdentifier(&II, SourceLocation());
Fariborz Jahanian98a54032011-07-12 17:16:56 +00001825 SelfName.setKind(UnqualifiedId::IK_ImplicitSelfParam);
John McCallf7a1a742009-11-24 19:00:30 +00001826 CXXScopeSpec SelfScopeSpec;
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001827 SourceLocation TemplateKWLoc;
1828 ExprResult SelfExpr = ActOnIdExpression(S, SelfScopeSpec, TemplateKWLoc,
Douglas Gregore45bb6a2010-09-22 16:33:13 +00001829 SelfName, false, false);
1830 if (SelfExpr.isInvalid())
1831 return ExprError();
1832
John Wiegley429bb272011-04-08 18:41:53 +00001833 SelfExpr = DefaultLvalueConversion(SelfExpr.take());
1834 if (SelfExpr.isInvalid())
1835 return ExprError();
John McCall409fa9a2010-12-06 20:48:59 +00001836
Eli Friedman5f2987c2012-02-02 03:46:19 +00001837 MarkAnyDeclReferenced(Loc, IV);
John McCallf7a1a742009-11-24 19:00:30 +00001838 return Owned(new (Context)
1839 ObjCIvarRefExpr(IV, IV->getType(), Loc,
John Wiegley429bb272011-04-08 18:41:53 +00001840 SelfExpr.take(), true, true));
John McCallf7a1a742009-11-24 19:00:30 +00001841 }
Chris Lattneraec43db2010-04-12 05:10:17 +00001842 } else if (CurMethod->isInstanceMethod()) {
John McCallf7a1a742009-11-24 19:00:30 +00001843 // We should warn if a local variable hides an ivar.
Fariborz Jahanian90f7b622011-11-08 22:51:27 +00001844 if (ObjCInterfaceDecl *IFace = CurMethod->getClassInterface()) {
1845 ObjCInterfaceDecl *ClassDeclared;
1846 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) {
1847 if (IV->getAccessControl() != ObjCIvarDecl::Private ||
Douglas Gregor60ef3082011-12-15 00:29:59 +00001848 declaresSameEntity(IFace, ClassDeclared))
Fariborz Jahanian90f7b622011-11-08 22:51:27 +00001849 Diag(Loc, diag::warn_ivar_use_hidden) << IV->getDeclName();
1850 }
John McCallf7a1a742009-11-24 19:00:30 +00001851 }
Fariborz Jahanianb5ea9db2011-12-20 22:21:08 +00001852 } else if (Lookup.isSingleResult() &&
1853 Lookup.getFoundDecl()->isDefinedOutsideFunctionOrMethod()) {
1854 // If accessing a stand-alone ivar in a class method, this is an error.
1855 if (const ObjCIvarDecl *IV = dyn_cast<ObjCIvarDecl>(Lookup.getFoundDecl()))
1856 return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method)
1857 << IV->getDeclName());
John McCallf7a1a742009-11-24 19:00:30 +00001858 }
1859
Fariborz Jahanian48c2d562010-01-12 23:58:59 +00001860 if (Lookup.empty() && II && AllowBuiltinCreation) {
1861 // FIXME. Consolidate this with similar code in LookupName.
1862 if (unsigned BuiltinID = II->getBuiltinID()) {
David Blaikie4e4d0842012-03-11 07:00:24 +00001863 if (!(getLangOpts().CPlusPlus &&
Fariborz Jahanian48c2d562010-01-12 23:58:59 +00001864 Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID))) {
1865 NamedDecl *D = LazilyCreateBuiltin((IdentifierInfo *)II, BuiltinID,
1866 S, Lookup.isForRedeclaration(),
1867 Lookup.getNameLoc());
1868 if (D) Lookup.addDecl(D);
1869 }
1870 }
1871 }
John McCallf7a1a742009-11-24 19:00:30 +00001872 // Sentinel value saying that we didn't do anything special.
1873 return Owned((Expr*) 0);
Douglas Gregor751f9a42009-06-30 15:47:41 +00001874}
John McCallba135432009-11-21 08:51:07 +00001875
John McCall6bb80172010-03-30 21:47:33 +00001876/// \brief Cast a base object to a member's actual type.
1877///
1878/// Logically this happens in three phases:
1879///
1880/// * First we cast from the base type to the naming class.
1881/// The naming class is the class into which we were looking
1882/// when we found the member; it's the qualifier type if a
1883/// qualifier was provided, and otherwise it's the base type.
1884///
1885/// * Next we cast from the naming class to the declaring class.
1886/// If the member we found was brought into a class's scope by
1887/// a using declaration, this is that class; otherwise it's
1888/// the class declaring the member.
1889///
1890/// * Finally we cast from the declaring class to the "true"
1891/// declaring class of the member. This conversion does not
1892/// obey access control.
John Wiegley429bb272011-04-08 18:41:53 +00001893ExprResult
1894Sema::PerformObjectMemberConversion(Expr *From,
Douglas Gregor5fccd362010-03-03 23:55:11 +00001895 NestedNameSpecifier *Qualifier,
John McCall6bb80172010-03-30 21:47:33 +00001896 NamedDecl *FoundDecl,
Douglas Gregor5fccd362010-03-03 23:55:11 +00001897 NamedDecl *Member) {
1898 CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Member->getDeclContext());
1899 if (!RD)
John Wiegley429bb272011-04-08 18:41:53 +00001900 return Owned(From);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001901
Douglas Gregor5fccd362010-03-03 23:55:11 +00001902 QualType DestRecordType;
1903 QualType DestType;
1904 QualType FromRecordType;
1905 QualType FromType = From->getType();
1906 bool PointerConversions = false;
1907 if (isa<FieldDecl>(Member)) {
1908 DestRecordType = Context.getCanonicalType(Context.getTypeDeclType(RD));
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001909
Douglas Gregor5fccd362010-03-03 23:55:11 +00001910 if (FromType->getAs<PointerType>()) {
1911 DestType = Context.getPointerType(DestRecordType);
1912 FromRecordType = FromType->getPointeeType();
1913 PointerConversions = true;
1914 } else {
1915 DestType = DestRecordType;
1916 FromRecordType = FromType;
Fariborz Jahanian98a541e2009-07-29 18:40:24 +00001917 }
Douglas Gregor5fccd362010-03-03 23:55:11 +00001918 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Member)) {
1919 if (Method->isStatic())
John Wiegley429bb272011-04-08 18:41:53 +00001920 return Owned(From);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001921
Douglas Gregor5fccd362010-03-03 23:55:11 +00001922 DestType = Method->getThisType(Context);
1923 DestRecordType = DestType->getPointeeType();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001924
Douglas Gregor5fccd362010-03-03 23:55:11 +00001925 if (FromType->getAs<PointerType>()) {
1926 FromRecordType = FromType->getPointeeType();
1927 PointerConversions = true;
1928 } else {
1929 FromRecordType = FromType;
1930 DestType = DestRecordType;
1931 }
1932 } else {
1933 // No conversion necessary.
John Wiegley429bb272011-04-08 18:41:53 +00001934 return Owned(From);
Douglas Gregor5fccd362010-03-03 23:55:11 +00001935 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001936
Douglas Gregor5fccd362010-03-03 23:55:11 +00001937 if (DestType->isDependentType() || FromType->isDependentType())
John Wiegley429bb272011-04-08 18:41:53 +00001938 return Owned(From);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001939
Douglas Gregor5fccd362010-03-03 23:55:11 +00001940 // If the unqualified types are the same, no conversion is necessary.
1941 if (Context.hasSameUnqualifiedType(FromRecordType, DestRecordType))
John Wiegley429bb272011-04-08 18:41:53 +00001942 return Owned(From);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001943
John McCall6bb80172010-03-30 21:47:33 +00001944 SourceRange FromRange = From->getSourceRange();
1945 SourceLocation FromLoc = FromRange.getBegin();
1946
Eli Friedmanc1c0dfb2011-09-27 21:58:52 +00001947 ExprValueKind VK = From->getValueKind();
Sebastian Redl906082e2010-07-20 04:20:21 +00001948
Douglas Gregor5fccd362010-03-03 23:55:11 +00001949 // C++ [class.member.lookup]p8:
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001950 // [...] Ambiguities can often be resolved by qualifying a name with its
Douglas Gregor5fccd362010-03-03 23:55:11 +00001951 // class name.
1952 //
1953 // If the member was a qualified name and the qualified referred to a
1954 // specific base subobject type, we'll cast to that intermediate type
1955 // first and then to the object in which the member is declared. That allows
1956 // one to resolve ambiguities in, e.g., a diamond-shaped hierarchy such as:
1957 //
1958 // class Base { public: int x; };
1959 // class Derived1 : public Base { };
1960 // class Derived2 : public Base { };
1961 // class VeryDerived : public Derived1, public Derived2 { void f(); };
1962 //
1963 // void VeryDerived::f() {
1964 // x = 17; // error: ambiguous base subobjects
1965 // Derived1::x = 17; // okay, pick the Base subobject of Derived1
1966 // }
Douglas Gregor5fccd362010-03-03 23:55:11 +00001967 if (Qualifier) {
John McCall6bb80172010-03-30 21:47:33 +00001968 QualType QType = QualType(Qualifier->getAsType(), 0);
1969 assert(!QType.isNull() && "lookup done with dependent qualifier?");
1970 assert(QType->isRecordType() && "lookup done with non-record type");
1971
1972 QualType QRecordType = QualType(QType->getAs<RecordType>(), 0);
1973
1974 // In C++98, the qualifier type doesn't actually have to be a base
1975 // type of the object type, in which case we just ignore it.
1976 // Otherwise build the appropriate casts.
1977 if (IsDerivedFrom(FromRecordType, QRecordType)) {
John McCallf871d0c2010-08-07 06:22:56 +00001978 CXXCastPath BasePath;
John McCall6bb80172010-03-30 21:47:33 +00001979 if (CheckDerivedToBaseConversion(FromRecordType, QRecordType,
Anders Carlssoncee22422010-04-24 19:22:20 +00001980 FromLoc, FromRange, &BasePath))
John Wiegley429bb272011-04-08 18:41:53 +00001981 return ExprError();
John McCall6bb80172010-03-30 21:47:33 +00001982
Douglas Gregor5fccd362010-03-03 23:55:11 +00001983 if (PointerConversions)
John McCall6bb80172010-03-30 21:47:33 +00001984 QType = Context.getPointerType(QType);
John Wiegley429bb272011-04-08 18:41:53 +00001985 From = ImpCastExprToType(From, QType, CK_UncheckedDerivedToBase,
1986 VK, &BasePath).take();
John McCall6bb80172010-03-30 21:47:33 +00001987
1988 FromType = QType;
1989 FromRecordType = QRecordType;
1990
1991 // If the qualifier type was the same as the destination type,
1992 // we're done.
1993 if (Context.hasSameUnqualifiedType(FromRecordType, DestRecordType))
John Wiegley429bb272011-04-08 18:41:53 +00001994 return Owned(From);
Douglas Gregor5fccd362010-03-03 23:55:11 +00001995 }
1996 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001997
John McCall6bb80172010-03-30 21:47:33 +00001998 bool IgnoreAccess = false;
Douglas Gregor5fccd362010-03-03 23:55:11 +00001999
John McCall6bb80172010-03-30 21:47:33 +00002000 // If we actually found the member through a using declaration, cast
2001 // down to the using declaration's type.
2002 //
2003 // Pointer equality is fine here because only one declaration of a
2004 // class ever has member declarations.
2005 if (FoundDecl->getDeclContext() != Member->getDeclContext()) {
2006 assert(isa<UsingShadowDecl>(FoundDecl));
2007 QualType URecordType = Context.getTypeDeclType(
2008 cast<CXXRecordDecl>(FoundDecl->getDeclContext()));
2009
2010 // We only need to do this if the naming-class to declaring-class
2011 // conversion is non-trivial.
2012 if (!Context.hasSameUnqualifiedType(FromRecordType, URecordType)) {
2013 assert(IsDerivedFrom(FromRecordType, URecordType));
John McCallf871d0c2010-08-07 06:22:56 +00002014 CXXCastPath BasePath;
John McCall6bb80172010-03-30 21:47:33 +00002015 if (CheckDerivedToBaseConversion(FromRecordType, URecordType,
Anders Carlssoncee22422010-04-24 19:22:20 +00002016 FromLoc, FromRange, &BasePath))
John Wiegley429bb272011-04-08 18:41:53 +00002017 return ExprError();
Sean Hunt1e3f5ba2010-04-28 23:02:27 +00002018
John McCall6bb80172010-03-30 21:47:33 +00002019 QualType UType = URecordType;
2020 if (PointerConversions)
2021 UType = Context.getPointerType(UType);
John Wiegley429bb272011-04-08 18:41:53 +00002022 From = ImpCastExprToType(From, UType, CK_UncheckedDerivedToBase,
2023 VK, &BasePath).take();
John McCall6bb80172010-03-30 21:47:33 +00002024 FromType = UType;
2025 FromRecordType = URecordType;
2026 }
2027
2028 // We don't do access control for the conversion from the
2029 // declaring class to the true declaring class.
2030 IgnoreAccess = true;
Douglas Gregor5fccd362010-03-03 23:55:11 +00002031 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002032
John McCallf871d0c2010-08-07 06:22:56 +00002033 CXXCastPath BasePath;
Anders Carlssoncee22422010-04-24 19:22:20 +00002034 if (CheckDerivedToBaseConversion(FromRecordType, DestRecordType,
2035 FromLoc, FromRange, &BasePath,
John McCall6bb80172010-03-30 21:47:33 +00002036 IgnoreAccess))
John Wiegley429bb272011-04-08 18:41:53 +00002037 return ExprError();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002038
John Wiegley429bb272011-04-08 18:41:53 +00002039 return ImpCastExprToType(From, DestType, CK_UncheckedDerivedToBase,
2040 VK, &BasePath);
Fariborz Jahanian98a541e2009-07-29 18:40:24 +00002041}
Douglas Gregor751f9a42009-06-30 15:47:41 +00002042
John McCallf7a1a742009-11-24 19:00:30 +00002043bool Sema::UseArgumentDependentLookup(const CXXScopeSpec &SS,
John McCall5b3f9132009-11-22 01:44:31 +00002044 const LookupResult &R,
2045 bool HasTrailingLParen) {
John McCallba135432009-11-21 08:51:07 +00002046 // Only when used directly as the postfix-expression of a call.
2047 if (!HasTrailingLParen)
2048 return false;
2049
2050 // Never if a scope specifier was provided.
John McCallf7a1a742009-11-24 19:00:30 +00002051 if (SS.isSet())
John McCallba135432009-11-21 08:51:07 +00002052 return false;
2053
2054 // Only in C++ or ObjC++.
David Blaikie4e4d0842012-03-11 07:00:24 +00002055 if (!getLangOpts().CPlusPlus)
John McCallba135432009-11-21 08:51:07 +00002056 return false;
2057
2058 // Turn off ADL when we find certain kinds of declarations during
2059 // normal lookup:
2060 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
2061 NamedDecl *D = *I;
2062
2063 // C++0x [basic.lookup.argdep]p3:
2064 // -- a declaration of a class member
2065 // Since using decls preserve this property, we check this on the
2066 // original decl.
John McCall3b4294e2009-12-16 12:17:52 +00002067 if (D->isCXXClassMember())
John McCallba135432009-11-21 08:51:07 +00002068 return false;
2069
2070 // C++0x [basic.lookup.argdep]p3:
2071 // -- a block-scope function declaration that is not a
2072 // using-declaration
2073 // NOTE: we also trigger this for function templates (in fact, we
2074 // don't check the decl type at all, since all other decl types
2075 // turn off ADL anyway).
2076 if (isa<UsingShadowDecl>(D))
2077 D = cast<UsingShadowDecl>(D)->getTargetDecl();
2078 else if (D->getDeclContext()->isFunctionOrMethod())
2079 return false;
2080
2081 // C++0x [basic.lookup.argdep]p3:
2082 // -- a declaration that is neither a function or a function
2083 // template
2084 // And also for builtin functions.
2085 if (isa<FunctionDecl>(D)) {
2086 FunctionDecl *FDecl = cast<FunctionDecl>(D);
2087
2088 // But also builtin functions.
2089 if (FDecl->getBuiltinID() && FDecl->isImplicit())
2090 return false;
2091 } else if (!isa<FunctionTemplateDecl>(D))
2092 return false;
2093 }
2094
2095 return true;
2096}
2097
2098
John McCallba135432009-11-21 08:51:07 +00002099/// Diagnoses obvious problems with the use of the given declaration
2100/// as an expression. This is only actually called for lookups that
2101/// were not overloaded, and it doesn't promise that the declaration
2102/// will in fact be used.
2103static bool CheckDeclInExpr(Sema &S, SourceLocation Loc, NamedDecl *D) {
Richard Smith162e1c12011-04-15 14:24:37 +00002104 if (isa<TypedefNameDecl>(D)) {
John McCallba135432009-11-21 08:51:07 +00002105 S.Diag(Loc, diag::err_unexpected_typedef) << D->getDeclName();
2106 return true;
2107 }
2108
2109 if (isa<ObjCInterfaceDecl>(D)) {
2110 S.Diag(Loc, diag::err_unexpected_interface) << D->getDeclName();
2111 return true;
2112 }
2113
2114 if (isa<NamespaceDecl>(D)) {
2115 S.Diag(Loc, diag::err_unexpected_namespace) << D->getDeclName();
2116 return true;
2117 }
2118
2119 return false;
2120}
2121
John McCall60d7b3a2010-08-24 06:29:42 +00002122ExprResult
John McCallf7a1a742009-11-24 19:00:30 +00002123Sema::BuildDeclarationNameExpr(const CXXScopeSpec &SS,
John McCall5b3f9132009-11-22 01:44:31 +00002124 LookupResult &R,
2125 bool NeedsADL) {
John McCallfead20c2009-12-08 22:45:53 +00002126 // If this is a single, fully-resolved result and we don't need ADL,
2127 // just build an ordinary singleton decl ref.
Douglas Gregor86b8e092010-01-29 17:15:43 +00002128 if (!NeedsADL && R.isSingleResult() && !R.getAsSingle<FunctionTemplateDecl>())
Abramo Bagnara25777432010-08-11 22:01:17 +00002129 return BuildDeclarationNameExpr(SS, R.getLookupNameInfo(),
2130 R.getFoundDecl());
John McCallba135432009-11-21 08:51:07 +00002131
2132 // We only need to check the declaration if there's exactly one
2133 // result, because in the overloaded case the results can only be
2134 // functions and function templates.
John McCall5b3f9132009-11-22 01:44:31 +00002135 if (R.isSingleResult() &&
2136 CheckDeclInExpr(*this, R.getNameLoc(), R.getFoundDecl()))
John McCallba135432009-11-21 08:51:07 +00002137 return ExprError();
2138
John McCallc373d482010-01-27 01:50:18 +00002139 // Otherwise, just build an unresolved lookup expression. Suppress
2140 // any lookup-related diagnostics; we'll hash these out later, when
2141 // we've picked a target.
2142 R.suppressDiagnostics();
2143
John McCallba135432009-11-21 08:51:07 +00002144 UnresolvedLookupExpr *ULE
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00002145 = UnresolvedLookupExpr::Create(Context, R.getNamingClass(),
Douglas Gregor4c9be892011-02-28 20:01:57 +00002146 SS.getWithLocInContext(Context),
2147 R.getLookupNameInfo(),
Douglas Gregor5a84dec2010-05-23 18:57:34 +00002148 NeedsADL, R.isOverloadedResult(),
2149 R.begin(), R.end());
John McCallba135432009-11-21 08:51:07 +00002150
2151 return Owned(ULE);
2152}
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002153
John McCallba135432009-11-21 08:51:07 +00002154/// \brief Complete semantic analysis for a reference to the given declaration.
John McCall60d7b3a2010-08-24 06:29:42 +00002155ExprResult
John McCallf7a1a742009-11-24 19:00:30 +00002156Sema::BuildDeclarationNameExpr(const CXXScopeSpec &SS,
Abramo Bagnara25777432010-08-11 22:01:17 +00002157 const DeclarationNameInfo &NameInfo,
2158 NamedDecl *D) {
John McCallba135432009-11-21 08:51:07 +00002159 assert(D && "Cannot refer to a NULL declaration");
John McCall7453ed42009-11-22 00:44:51 +00002160 assert(!isa<FunctionTemplateDecl>(D) &&
2161 "Cannot refer unambiguously to a function template");
John McCallba135432009-11-21 08:51:07 +00002162
Abramo Bagnara25777432010-08-11 22:01:17 +00002163 SourceLocation Loc = NameInfo.getLoc();
John McCallba135432009-11-21 08:51:07 +00002164 if (CheckDeclInExpr(*this, Loc, D))
2165 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +00002166
Douglas Gregor9af2f522009-12-01 16:58:18 +00002167 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D)) {
2168 // Specifically diagnose references to class templates that are missing
2169 // a template argument list.
2170 Diag(Loc, diag::err_template_decl_ref)
2171 << Template << SS.getRange();
2172 Diag(Template->getLocation(), diag::note_template_decl_here);
2173 return ExprError();
2174 }
2175
2176 // Make sure that we're referring to a value.
2177 ValueDecl *VD = dyn_cast<ValueDecl>(D);
2178 if (!VD) {
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002179 Diag(Loc, diag::err_ref_non_value)
Douglas Gregor9af2f522009-12-01 16:58:18 +00002180 << D << SS.getRange();
John McCall87cf6702009-12-18 18:35:10 +00002181 Diag(D->getLocation(), diag::note_declared_at);
Douglas Gregor9af2f522009-12-01 16:58:18 +00002182 return ExprError();
2183 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00002184
Douglas Gregor48f3bb92009-02-18 21:56:37 +00002185 // Check whether this declaration can be used. Note that we suppress
2186 // this check when we're going to perform argument-dependent lookup
2187 // on this function name, because this might not be the function
2188 // that overload resolution actually selects.
John McCallba135432009-11-21 08:51:07 +00002189 if (DiagnoseUseOfDecl(VD, Loc))
Douglas Gregor48f3bb92009-02-18 21:56:37 +00002190 return ExprError();
2191
Steve Naroffdd972f22008-09-05 22:11:13 +00002192 // Only create DeclRefExpr's for valid Decl's.
2193 if (VD->isInvalidDecl())
Sebastian Redlcd965b92009-01-18 18:53:16 +00002194 return ExprError();
2195
John McCall5808ce42011-02-03 08:15:49 +00002196 // Handle members of anonymous structs and unions. If we got here,
2197 // and the reference is to a class member indirect field, then this
2198 // must be the subject of a pointer-to-member expression.
2199 if (IndirectFieldDecl *indirectField = dyn_cast<IndirectFieldDecl>(VD))
2200 if (!indirectField->isCXXClassMember())
2201 return BuildAnonymousStructUnionMemberReference(SS, NameInfo.getLoc(),
2202 indirectField);
Francois Pichet87c2e122010-11-21 06:08:52 +00002203
Eli Friedman3c0e80e2012-02-03 02:04:35 +00002204 {
John McCall76a40212011-02-09 01:13:10 +00002205 QualType type = VD->getType();
Daniel Dunbarb20de812011-02-10 18:29:28 +00002206 ExprValueKind valueKind = VK_RValue;
John McCall76a40212011-02-09 01:13:10 +00002207
2208 switch (D->getKind()) {
2209 // Ignore all the non-ValueDecl kinds.
2210#define ABSTRACT_DECL(kind)
2211#define VALUE(type, base)
2212#define DECL(type, base) \
2213 case Decl::type:
2214#include "clang/AST/DeclNodes.inc"
2215 llvm_unreachable("invalid value decl kind");
John McCall76a40212011-02-09 01:13:10 +00002216
2217 // These shouldn't make it here.
2218 case Decl::ObjCAtDefsField:
2219 case Decl::ObjCIvar:
2220 llvm_unreachable("forming non-member reference to ivar?");
John McCall76a40212011-02-09 01:13:10 +00002221
2222 // Enum constants are always r-values and never references.
2223 // Unresolved using declarations are dependent.
2224 case Decl::EnumConstant:
2225 case Decl::UnresolvedUsingValue:
2226 valueKind = VK_RValue;
2227 break;
2228
2229 // Fields and indirect fields that got here must be for
2230 // pointer-to-member expressions; we just call them l-values for
2231 // internal consistency, because this subexpression doesn't really
2232 // exist in the high-level semantics.
2233 case Decl::Field:
2234 case Decl::IndirectField:
David Blaikie4e4d0842012-03-11 07:00:24 +00002235 assert(getLangOpts().CPlusPlus &&
John McCall76a40212011-02-09 01:13:10 +00002236 "building reference to field in C?");
2237
2238 // These can't have reference type in well-formed programs, but
2239 // for internal consistency we do this anyway.
2240 type = type.getNonReferenceType();
2241 valueKind = VK_LValue;
2242 break;
2243
2244 // Non-type template parameters are either l-values or r-values
2245 // depending on the type.
2246 case Decl::NonTypeTemplateParm: {
2247 if (const ReferenceType *reftype = type->getAs<ReferenceType>()) {
2248 type = reftype->getPointeeType();
2249 valueKind = VK_LValue; // even if the parameter is an r-value reference
2250 break;
2251 }
2252
2253 // For non-references, we need to strip qualifiers just in case
2254 // the template parameter was declared as 'const int' or whatever.
2255 valueKind = VK_RValue;
2256 type = type.getUnqualifiedType();
2257 break;
2258 }
2259
2260 case Decl::Var:
2261 // In C, "extern void blah;" is valid and is an r-value.
David Blaikie4e4d0842012-03-11 07:00:24 +00002262 if (!getLangOpts().CPlusPlus &&
John McCall76a40212011-02-09 01:13:10 +00002263 !type.hasQualifiers() &&
2264 type->isVoidType()) {
2265 valueKind = VK_RValue;
2266 break;
2267 }
2268 // fallthrough
2269
2270 case Decl::ImplicitParam:
Douglas Gregor68932842012-02-18 05:51:20 +00002271 case Decl::ParmVar: {
John McCall76a40212011-02-09 01:13:10 +00002272 // These are always l-values.
2273 valueKind = VK_LValue;
2274 type = type.getNonReferenceType();
Eli Friedman3c0e80e2012-02-03 02:04:35 +00002275
Douglas Gregor68932842012-02-18 05:51:20 +00002276 // FIXME: Does the addition of const really only apply in
2277 // potentially-evaluated contexts? Since the variable isn't actually
2278 // captured in an unevaluated context, it seems that the answer is no.
2279 if (ExprEvalContexts.back().Context != Sema::Unevaluated) {
2280 QualType CapturedType = getCapturedDeclRefType(cast<VarDecl>(VD), Loc);
2281 if (!CapturedType.isNull())
2282 type = CapturedType;
2283 }
2284
John McCall76a40212011-02-09 01:13:10 +00002285 break;
Douglas Gregor68932842012-02-18 05:51:20 +00002286 }
2287
John McCall76a40212011-02-09 01:13:10 +00002288 case Decl::Function: {
John McCall755d8492011-04-12 00:42:48 +00002289 const FunctionType *fty = type->castAs<FunctionType>();
2290
2291 // If we're referring to a function with an __unknown_anytype
2292 // result type, make the entire expression __unknown_anytype.
2293 if (fty->getResultType() == Context.UnknownAnyTy) {
2294 type = Context.UnknownAnyTy;
2295 valueKind = VK_RValue;
2296 break;
2297 }
2298
John McCall76a40212011-02-09 01:13:10 +00002299 // Functions are l-values in C++.
David Blaikie4e4d0842012-03-11 07:00:24 +00002300 if (getLangOpts().CPlusPlus) {
John McCall76a40212011-02-09 01:13:10 +00002301 valueKind = VK_LValue;
2302 break;
2303 }
2304
2305 // C99 DR 316 says that, if a function type comes from a
2306 // function definition (without a prototype), that type is only
2307 // used for checking compatibility. Therefore, when referencing
2308 // the function, we pretend that we don't have the full function
2309 // type.
John McCall755d8492011-04-12 00:42:48 +00002310 if (!cast<FunctionDecl>(VD)->hasPrototype() &&
2311 isa<FunctionProtoType>(fty))
2312 type = Context.getFunctionNoProtoType(fty->getResultType(),
2313 fty->getExtInfo());
John McCall76a40212011-02-09 01:13:10 +00002314
2315 // Functions are r-values in C.
2316 valueKind = VK_RValue;
2317 break;
2318 }
2319
2320 case Decl::CXXMethod:
John McCall755d8492011-04-12 00:42:48 +00002321 // If we're referring to a method with an __unknown_anytype
2322 // result type, make the entire expression __unknown_anytype.
2323 // This should only be possible with a type written directly.
Richard Trieu67e29332011-08-02 04:35:43 +00002324 if (const FunctionProtoType *proto
2325 = dyn_cast<FunctionProtoType>(VD->getType()))
John McCall755d8492011-04-12 00:42:48 +00002326 if (proto->getResultType() == Context.UnknownAnyTy) {
2327 type = Context.UnknownAnyTy;
2328 valueKind = VK_RValue;
2329 break;
2330 }
2331
John McCall76a40212011-02-09 01:13:10 +00002332 // C++ methods are l-values if static, r-values if non-static.
2333 if (cast<CXXMethodDecl>(VD)->isStatic()) {
2334 valueKind = VK_LValue;
2335 break;
2336 }
2337 // fallthrough
2338
2339 case Decl::CXXConversion:
2340 case Decl::CXXDestructor:
2341 case Decl::CXXConstructor:
2342 valueKind = VK_RValue;
2343 break;
2344 }
2345
2346 return BuildDeclRefExpr(VD, type, valueKind, NameInfo, &SS);
2347 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002348}
2349
John McCall755d8492011-04-12 00:42:48 +00002350ExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc, tok::TokenKind Kind) {
Chris Lattnerd9f69102008-08-10 01:53:14 +00002351 PredefinedExpr::IdentType IT;
Sebastian Redlcd965b92009-01-18 18:53:16 +00002352
Reid Spencer5f016e22007-07-11 17:01:13 +00002353 switch (Kind) {
David Blaikieb219cfc2011-09-23 05:06:16 +00002354 default: llvm_unreachable("Unknown simple primary expr!");
Chris Lattnerd9f69102008-08-10 01:53:14 +00002355 case tok::kw___func__: IT = PredefinedExpr::Func; break; // [C99 6.4.2.2]
2356 case tok::kw___FUNCTION__: IT = PredefinedExpr::Function; break;
2357 case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break;
Reid Spencer5f016e22007-07-11 17:01:13 +00002358 }
Chris Lattner1423ea42008-01-12 18:39:25 +00002359
Chris Lattnerfa28b302008-01-12 08:14:25 +00002360 // Pre-defined identifiers are of type char[x], where x is the length of the
2361 // string.
Mike Stump1eb44332009-09-09 15:08:12 +00002362
Anders Carlsson3a082d82009-09-08 18:24:21 +00002363 Decl *currentDecl = getCurFunctionOrMethodDecl();
Fariborz Jahanianeb024ac2010-07-23 21:53:24 +00002364 if (!currentDecl && getCurBlock())
2365 currentDecl = getCurBlock()->TheDecl;
Anders Carlsson3a082d82009-09-08 18:24:21 +00002366 if (!currentDecl) {
Chris Lattnerb0da9232008-12-12 05:05:20 +00002367 Diag(Loc, diag::ext_predef_outside_function);
Anders Carlsson3a082d82009-09-08 18:24:21 +00002368 currentDecl = Context.getTranslationUnitDecl();
Chris Lattnerb0da9232008-12-12 05:05:20 +00002369 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00002370
Anders Carlsson773f3972009-09-11 01:22:35 +00002371 QualType ResTy;
2372 if (cast<DeclContext>(currentDecl)->isDependentContext()) {
2373 ResTy = Context.DependentTy;
2374 } else {
Anders Carlsson848fa642010-02-11 18:20:28 +00002375 unsigned Length = PredefinedExpr::ComputeName(IT, currentDecl).length();
Sebastian Redlcd965b92009-01-18 18:53:16 +00002376
Anders Carlsson773f3972009-09-11 01:22:35 +00002377 llvm::APInt LengthI(32, Length + 1);
John McCall0953e762009-09-24 19:53:00 +00002378 ResTy = Context.CharTy.withConst();
Anders Carlsson773f3972009-09-11 01:22:35 +00002379 ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal, 0);
2380 }
Steve Naroff6ece14c2009-01-21 00:14:39 +00002381 return Owned(new (Context) PredefinedExpr(Loc, ResTy, IT));
Reid Spencer5f016e22007-07-11 17:01:13 +00002382}
2383
Richard Smith36f5cfe2012-03-09 08:00:36 +00002384ExprResult Sema::ActOnCharacterConstant(const Token &Tok, Scope *UDLScope) {
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00002385 SmallString<16> CharBuffer;
Douglas Gregor453091c2010-03-16 22:30:13 +00002386 bool Invalid = false;
Chris Lattner5f9e2722011-07-23 10:55:15 +00002387 StringRef ThisTok = PP.getSpelling(Tok, CharBuffer, &Invalid);
Douglas Gregor453091c2010-03-16 22:30:13 +00002388 if (Invalid)
2389 return ExprError();
Sebastian Redlcd965b92009-01-18 18:53:16 +00002390
Benjamin Kramerddeea562010-02-27 13:44:12 +00002391 CharLiteralParser Literal(ThisTok.begin(), ThisTok.end(), Tok.getLocation(),
Douglas Gregor5cee1192011-07-27 05:40:30 +00002392 PP, Tok.getKind());
Reid Spencer5f016e22007-07-11 17:01:13 +00002393 if (Literal.hadError())
Sebastian Redlcd965b92009-01-18 18:53:16 +00002394 return ExprError();
Chris Lattnerfc62bfd2008-03-01 08:32:21 +00002395
Chris Lattnere8337df2009-12-30 21:19:39 +00002396 QualType Ty;
Seth Cantrell79f0a822012-01-18 12:27:06 +00002397 if (Literal.isWide())
2398 Ty = Context.WCharTy; // L'x' -> wchar_t in C and C++.
Douglas Gregor5cee1192011-07-27 05:40:30 +00002399 else if (Literal.isUTF16())
Seth Cantrell79f0a822012-01-18 12:27:06 +00002400 Ty = Context.Char16Ty; // u'x' -> char16_t in C11 and C++11.
Douglas Gregor5cee1192011-07-27 05:40:30 +00002401 else if (Literal.isUTF32())
Seth Cantrell79f0a822012-01-18 12:27:06 +00002402 Ty = Context.Char32Ty; // U'x' -> char32_t in C11 and C++11.
David Blaikie4e4d0842012-03-11 07:00:24 +00002403 else if (!getLangOpts().CPlusPlus || Literal.isMultiChar())
Seth Cantrell79f0a822012-01-18 12:27:06 +00002404 Ty = Context.IntTy; // 'x' -> int in C, 'wxyz' -> int in C++.
Chris Lattnere8337df2009-12-30 21:19:39 +00002405 else
2406 Ty = Context.CharTy; // 'x' -> char in C++
Chris Lattnerfc62bfd2008-03-01 08:32:21 +00002407
Douglas Gregor5cee1192011-07-27 05:40:30 +00002408 CharacterLiteral::CharacterKind Kind = CharacterLiteral::Ascii;
2409 if (Literal.isWide())
2410 Kind = CharacterLiteral::Wide;
2411 else if (Literal.isUTF16())
2412 Kind = CharacterLiteral::UTF16;
2413 else if (Literal.isUTF32())
2414 Kind = CharacterLiteral::UTF32;
2415
Richard Smithdd66be72012-03-08 01:34:56 +00002416 Expr *Lit = new (Context) CharacterLiteral(Literal.getValue(), Kind, Ty,
2417 Tok.getLocation());
2418
2419 if (Literal.getUDSuffix().empty())
2420 return Owned(Lit);
2421
2422 // We're building a user-defined literal.
2423 IdentifierInfo *UDSuffix = &Context.Idents.get(Literal.getUDSuffix());
2424 SourceLocation UDSuffixLoc =
2425 getUDSuffixLoc(*this, Tok.getLocation(), Literal.getUDSuffixOffset());
2426
Richard Smith36f5cfe2012-03-09 08:00:36 +00002427 // Make sure we're allowed user-defined literals here.
2428 if (!UDLScope)
2429 return ExprError(Diag(UDSuffixLoc, diag::err_invalid_character_udl));
2430
Richard Smithdd66be72012-03-08 01:34:56 +00002431 // C++11 [lex.ext]p6: The literal L is treated as a call of the form
2432 // operator "" X (ch)
Richard Smith36f5cfe2012-03-09 08:00:36 +00002433 return BuildCookedLiteralOperatorCall(*this, UDLScope, UDSuffix, UDSuffixLoc,
2434 llvm::makeArrayRef(&Lit, 1),
2435 Tok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00002436}
2437
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002438ExprResult Sema::ActOnIntegerConstant(SourceLocation Loc, uint64_t Val) {
2439 unsigned IntSize = Context.getTargetInfo().getIntWidth();
2440 return Owned(IntegerLiteral::Create(Context, llvm::APInt(IntSize, Val),
2441 Context.IntTy, Loc));
2442}
2443
Richard Smithb453ad32012-03-08 08:45:32 +00002444static Expr *BuildFloatingLiteral(Sema &S, NumericLiteralParser &Literal,
2445 QualType Ty, SourceLocation Loc) {
2446 const llvm::fltSemantics &Format = S.Context.getFloatTypeSemantics(Ty);
2447
2448 using llvm::APFloat;
2449 APFloat Val(Format);
2450
2451 APFloat::opStatus result = Literal.GetFloatValue(Val);
2452
2453 // Overflow is always an error, but underflow is only an error if
2454 // we underflowed to zero (APFloat reports denormals as underflow).
2455 if ((result & APFloat::opOverflow) ||
2456 ((result & APFloat::opUnderflow) && Val.isZero())) {
2457 unsigned diagnostic;
2458 SmallString<20> buffer;
2459 if (result & APFloat::opOverflow) {
2460 diagnostic = diag::warn_float_overflow;
2461 APFloat::getLargest(Format).toString(buffer);
2462 } else {
2463 diagnostic = diag::warn_float_underflow;
2464 APFloat::getSmallest(Format).toString(buffer);
2465 }
2466
2467 S.Diag(Loc, diagnostic)
2468 << Ty
2469 << StringRef(buffer.data(), buffer.size());
2470 }
2471
2472 bool isExact = (result == APFloat::opOK);
2473 return FloatingLiteral::Create(S.Context, Val, isExact, Ty, Loc);
2474}
2475
Richard Smith36f5cfe2012-03-09 08:00:36 +00002476ExprResult Sema::ActOnNumericConstant(const Token &Tok, Scope *UDLScope) {
Sebastian Redlcd965b92009-01-18 18:53:16 +00002477 // Fast path for a single digit (which is quite common). A single digit
Richard Smith36f5cfe2012-03-09 08:00:36 +00002478 // cannot have a trigraph, escaped newline, radix prefix, or suffix.
Reid Spencer5f016e22007-07-11 17:01:13 +00002479 if (Tok.getLength() == 1) {
Chris Lattner7216dc92009-01-26 22:36:52 +00002480 const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok);
Ted Kremenekebcb57a2012-03-06 20:05:56 +00002481 return ActOnIntegerConstant(Tok.getLocation(), Val-'0');
Reid Spencer5f016e22007-07-11 17:01:13 +00002482 }
Ted Kremenek28396602009-01-13 23:19:12 +00002483
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00002484 SmallString<512> IntegerBuffer;
Chris Lattner2a299042008-09-30 20:53:45 +00002485 // Add padding so that NumericLiteralParser can overread by one character.
2486 IntegerBuffer.resize(Tok.getLength()+1);
Reid Spencer5f016e22007-07-11 17:01:13 +00002487 const char *ThisTokBegin = &IntegerBuffer[0];
Sebastian Redlcd965b92009-01-18 18:53:16 +00002488
Reid Spencer5f016e22007-07-11 17:01:13 +00002489 // Get the spelling of the token, which eliminates trigraphs, etc.
Douglas Gregor453091c2010-03-16 22:30:13 +00002490 bool Invalid = false;
2491 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin, &Invalid);
2492 if (Invalid)
2493 return ExprError();
Sebastian Redlcd965b92009-01-18 18:53:16 +00002494
Mike Stump1eb44332009-09-09 15:08:12 +00002495 NumericLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength,
Reid Spencer5f016e22007-07-11 17:01:13 +00002496 Tok.getLocation(), PP);
2497 if (Literal.hadError)
Sebastian Redlcd965b92009-01-18 18:53:16 +00002498 return ExprError();
2499
Richard Smithb453ad32012-03-08 08:45:32 +00002500 if (Literal.hasUDSuffix()) {
2501 // We're building a user-defined literal.
2502 IdentifierInfo *UDSuffix = &Context.Idents.get(Literal.getUDSuffix());
2503 SourceLocation UDSuffixLoc =
2504 getUDSuffixLoc(*this, Tok.getLocation(), Literal.getUDSuffixOffset());
2505
Richard Smith36f5cfe2012-03-09 08:00:36 +00002506 // Make sure we're allowed user-defined literals here.
2507 if (!UDLScope)
2508 return ExprError(Diag(UDSuffixLoc, diag::err_invalid_numeric_udl));
Richard Smithb453ad32012-03-08 08:45:32 +00002509
Richard Smith36f5cfe2012-03-09 08:00:36 +00002510 QualType CookedTy;
Richard Smithb453ad32012-03-08 08:45:32 +00002511 if (Literal.isFloatingLiteral()) {
2512 // C++11 [lex.ext]p4: If S contains a literal operator with parameter type
2513 // long double, the literal is treated as a call of the form
2514 // operator "" X (f L)
Richard Smith36f5cfe2012-03-09 08:00:36 +00002515 CookedTy = Context.LongDoubleTy;
Richard Smithb453ad32012-03-08 08:45:32 +00002516 } else {
2517 // C++11 [lex.ext]p3: If S contains a literal operator with parameter type
2518 // unsigned long long, the literal is treated as a call of the form
2519 // operator "" X (n ULL)
Richard Smith36f5cfe2012-03-09 08:00:36 +00002520 CookedTy = Context.UnsignedLongLongTy;
Richard Smithb453ad32012-03-08 08:45:32 +00002521 }
2522
Richard Smith36f5cfe2012-03-09 08:00:36 +00002523 DeclarationName OpName =
2524 Context.DeclarationNames.getCXXLiteralOperatorName(UDSuffix);
2525 DeclarationNameInfo OpNameInfo(OpName, UDSuffixLoc);
2526 OpNameInfo.setCXXLiteralOperatorNameLoc(UDSuffixLoc);
2527
2528 // Perform literal operator lookup to determine if we're building a raw
2529 // literal or a cooked one.
2530 LookupResult R(*this, OpName, UDSuffixLoc, LookupOrdinaryName);
2531 switch (LookupLiteralOperator(UDLScope, R, llvm::makeArrayRef(&CookedTy, 1),
2532 /*AllowRawAndTemplate*/true)) {
2533 case LOLR_Error:
2534 return ExprError();
2535
2536 case LOLR_Cooked: {
2537 Expr *Lit;
2538 if (Literal.isFloatingLiteral()) {
2539 Lit = BuildFloatingLiteral(*this, Literal, CookedTy, Tok.getLocation());
2540 } else {
2541 llvm::APInt ResultVal(Context.getTargetInfo().getLongLongWidth(), 0);
2542 if (Literal.GetIntegerValue(ResultVal))
2543 Diag(Tok.getLocation(), diag::warn_integer_too_large);
2544 Lit = IntegerLiteral::Create(Context, ResultVal, CookedTy,
2545 Tok.getLocation());
2546 }
2547 return BuildLiteralOperatorCall(R, OpNameInfo,
2548 llvm::makeArrayRef(&Lit, 1),
2549 Tok.getLocation());
2550 }
2551
2552 case LOLR_Raw: {
2553 // C++11 [lit.ext]p3, p4: If S contains a raw literal operator, the
2554 // literal is treated as a call of the form
2555 // operator "" X ("n")
2556 SourceLocation TokLoc = Tok.getLocation();
2557 unsigned Length = Literal.getUDSuffixOffset();
2558 QualType StrTy = Context.getConstantArrayType(
2559 Context.CharTy, llvm::APInt(32, Length + 1),
2560 ArrayType::Normal, 0);
2561 Expr *Lit = StringLiteral::Create(
2562 Context, StringRef(ThisTokBegin, Length), StringLiteral::Ascii,
2563 /*Pascal*/false, StrTy, &TokLoc, 1);
2564 return BuildLiteralOperatorCall(R, OpNameInfo,
2565 llvm::makeArrayRef(&Lit, 1), TokLoc);
2566 }
2567
2568 case LOLR_Template:
2569 // C++11 [lit.ext]p3, p4: Otherwise (S contains a literal operator
2570 // template), L is treated as a call fo the form
2571 // operator "" X <'c1', 'c2', ... 'ck'>()
2572 // where n is the source character sequence c1 c2 ... ck.
2573 TemplateArgumentListInfo ExplicitArgs;
2574 unsigned CharBits = Context.getIntWidth(Context.CharTy);
2575 bool CharIsUnsigned = Context.CharTy->isUnsignedIntegerType();
2576 llvm::APSInt Value(CharBits, CharIsUnsigned);
2577 for (unsigned I = 0, N = Literal.getUDSuffixOffset(); I != N; ++I) {
2578 Value = ThisTokBegin[I];
2579 TemplateArgument Arg(Value, Context.CharTy);
2580 TemplateArgumentLocInfo ArgInfo;
2581 ExplicitArgs.addArgument(TemplateArgumentLoc(Arg, ArgInfo));
2582 }
2583 return BuildLiteralOperatorCall(R, OpNameInfo, ArrayRef<Expr*>(),
2584 Tok.getLocation(), &ExplicitArgs);
2585 }
2586
2587 llvm_unreachable("unexpected literal operator lookup result");
Richard Smithb453ad32012-03-08 08:45:32 +00002588 }
2589
Chris Lattner5d661452007-08-26 03:42:43 +00002590 Expr *Res;
Sebastian Redlcd965b92009-01-18 18:53:16 +00002591
Chris Lattner5d661452007-08-26 03:42:43 +00002592 if (Literal.isFloatingLiteral()) {
Chris Lattner525a0502007-09-22 18:29:59 +00002593 QualType Ty;
Chris Lattnerb7cfe882008-06-30 18:32:54 +00002594 if (Literal.isFloat)
Chris Lattner525a0502007-09-22 18:29:59 +00002595 Ty = Context.FloatTy;
Chris Lattnerb7cfe882008-06-30 18:32:54 +00002596 else if (!Literal.isLong)
Chris Lattner525a0502007-09-22 18:29:59 +00002597 Ty = Context.DoubleTy;
Chris Lattnerb7cfe882008-06-30 18:32:54 +00002598 else
Chris Lattner9e9b6dc2008-03-08 08:52:55 +00002599 Ty = Context.LongDoubleTy;
Chris Lattnerb7cfe882008-06-30 18:32:54 +00002600
Richard Smithb453ad32012-03-08 08:45:32 +00002601 Res = BuildFloatingLiteral(*this, Literal, Ty, Tok.getLocation());
Sebastian Redlcd965b92009-01-18 18:53:16 +00002602
Peter Collingbournef4f7cb82011-03-11 19:24:59 +00002603 if (Ty == Context.DoubleTy) {
David Blaikie4e4d0842012-03-11 07:00:24 +00002604 if (getLangOpts().SinglePrecisionConstants) {
John Wiegley429bb272011-04-08 18:41:53 +00002605 Res = ImpCastExprToType(Res, Context.FloatTy, CK_FloatingCast).take();
David Blaikie4e4d0842012-03-11 07:00:24 +00002606 } else if (getLangOpts().OpenCL && !getOpenCLOptions().cl_khr_fp64) {
Peter Collingbournef4f7cb82011-03-11 19:24:59 +00002607 Diag(Tok.getLocation(), diag::warn_double_const_requires_fp64);
John Wiegley429bb272011-04-08 18:41:53 +00002608 Res = ImpCastExprToType(Res, Context.FloatTy, CK_FloatingCast).take();
Peter Collingbournef4f7cb82011-03-11 19:24:59 +00002609 }
2610 }
Chris Lattner5d661452007-08-26 03:42:43 +00002611 } else if (!Literal.isIntegerLiteral()) {
Sebastian Redlcd965b92009-01-18 18:53:16 +00002612 return ExprError();
Chris Lattner5d661452007-08-26 03:42:43 +00002613 } else {
Chris Lattnerf0467b32008-04-02 04:24:33 +00002614 QualType Ty;
Reid Spencer5f016e22007-07-11 17:01:13 +00002615
Neil Boothb9449512007-08-29 22:00:19 +00002616 // long long is a C99 feature.
David Blaikie4e4d0842012-03-11 07:00:24 +00002617 if (!getLangOpts().C99 && Literal.isLongLong)
Richard Smithebaf0e62011-10-18 20:49:44 +00002618 Diag(Tok.getLocation(),
David Blaikie4e4d0842012-03-11 07:00:24 +00002619 getLangOpts().CPlusPlus0x ?
Richard Smithebaf0e62011-10-18 20:49:44 +00002620 diag::warn_cxx98_compat_longlong : diag::ext_longlong);
Neil Boothb9449512007-08-29 22:00:19 +00002621
Reid Spencer5f016e22007-07-11 17:01:13 +00002622 // Get the value in the widest-possible width.
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002623 llvm::APInt ResultVal(Context.getTargetInfo().getIntMaxTWidth(), 0);
Sebastian Redlcd965b92009-01-18 18:53:16 +00002624
Reid Spencer5f016e22007-07-11 17:01:13 +00002625 if (Literal.GetIntegerValue(ResultVal)) {
2626 // If this value didn't fit into uintmax_t, warn and force to ull.
2627 Diag(Tok.getLocation(), diag::warn_integer_too_large);
Chris Lattnerf0467b32008-04-02 04:24:33 +00002628 Ty = Context.UnsignedLongLongTy;
2629 assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() &&
Chris Lattner98be4942008-03-05 18:54:05 +00002630 "long long is not intmax_t?");
Reid Spencer5f016e22007-07-11 17:01:13 +00002631 } else {
2632 // If this value fits into a ULL, try to figure out what else it fits into
2633 // according to the rules of C99 6.4.4.1p5.
Sebastian Redlcd965b92009-01-18 18:53:16 +00002634
Reid Spencer5f016e22007-07-11 17:01:13 +00002635 // Octal, Hexadecimal, and integers with a U suffix are allowed to
2636 // be an unsigned int.
2637 bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10;
2638
2639 // Check from smallest to largest, picking the smallest type we can.
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00002640 unsigned Width = 0;
Chris Lattner97c51562007-08-23 21:58:08 +00002641 if (!Literal.isLong && !Literal.isLongLong) {
2642 // Are int/unsigned possibilities?
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002643 unsigned IntSize = Context.getTargetInfo().getIntWidth();
Sebastian Redlcd965b92009-01-18 18:53:16 +00002644
Reid Spencer5f016e22007-07-11 17:01:13 +00002645 // Does it fit in a unsigned int?
2646 if (ResultVal.isIntN(IntSize)) {
2647 // Does it fit in a signed int?
2648 if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0)
Chris Lattnerf0467b32008-04-02 04:24:33 +00002649 Ty = Context.IntTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00002650 else if (AllowUnsigned)
Chris Lattnerf0467b32008-04-02 04:24:33 +00002651 Ty = Context.UnsignedIntTy;
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00002652 Width = IntSize;
Reid Spencer5f016e22007-07-11 17:01:13 +00002653 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002654 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00002655
Reid Spencer5f016e22007-07-11 17:01:13 +00002656 // Are long/unsigned long possibilities?
Chris Lattnerf0467b32008-04-02 04:24:33 +00002657 if (Ty.isNull() && !Literal.isLongLong) {
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002658 unsigned LongSize = Context.getTargetInfo().getLongWidth();
Sebastian Redlcd965b92009-01-18 18:53:16 +00002659
Reid Spencer5f016e22007-07-11 17:01:13 +00002660 // Does it fit in a unsigned long?
2661 if (ResultVal.isIntN(LongSize)) {
2662 // Does it fit in a signed long?
2663 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0)
Chris Lattnerf0467b32008-04-02 04:24:33 +00002664 Ty = Context.LongTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00002665 else if (AllowUnsigned)
Chris Lattnerf0467b32008-04-02 04:24:33 +00002666 Ty = Context.UnsignedLongTy;
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00002667 Width = LongSize;
Reid Spencer5f016e22007-07-11 17:01:13 +00002668 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00002669 }
2670
Reid Spencer5f016e22007-07-11 17:01:13 +00002671 // Finally, check long long if needed.
Chris Lattnerf0467b32008-04-02 04:24:33 +00002672 if (Ty.isNull()) {
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002673 unsigned LongLongSize = Context.getTargetInfo().getLongLongWidth();
Sebastian Redlcd965b92009-01-18 18:53:16 +00002674
Reid Spencer5f016e22007-07-11 17:01:13 +00002675 // Does it fit in a unsigned long long?
2676 if (ResultVal.isIntN(LongLongSize)) {
2677 // Does it fit in a signed long long?
Francois Pichet24323202011-01-11 23:38:13 +00002678 // To be compatible with MSVC, hex integer literals ending with the
2679 // LL or i64 suffix are always signed in Microsoft mode.
Francois Picheta15a5ee2011-01-11 12:23:00 +00002680 if (!Literal.isUnsigned && (ResultVal[LongLongSize-1] == 0 ||
David Blaikie4e4d0842012-03-11 07:00:24 +00002681 (getLangOpts().MicrosoftExt && Literal.isLongLong)))
Chris Lattnerf0467b32008-04-02 04:24:33 +00002682 Ty = Context.LongLongTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00002683 else if (AllowUnsigned)
Chris Lattnerf0467b32008-04-02 04:24:33 +00002684 Ty = Context.UnsignedLongLongTy;
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00002685 Width = LongLongSize;
Reid Spencer5f016e22007-07-11 17:01:13 +00002686 }
2687 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00002688
Reid Spencer5f016e22007-07-11 17:01:13 +00002689 // If we still couldn't decide a type, we probably have something that
2690 // does not fit in a signed long long, but has no U suffix.
Chris Lattnerf0467b32008-04-02 04:24:33 +00002691 if (Ty.isNull()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002692 Diag(Tok.getLocation(), diag::warn_integer_too_large_for_signed);
Chris Lattnerf0467b32008-04-02 04:24:33 +00002693 Ty = Context.UnsignedLongLongTy;
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00002694 Width = Context.getTargetInfo().getLongLongWidth();
Reid Spencer5f016e22007-07-11 17:01:13 +00002695 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00002696
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00002697 if (ResultVal.getBitWidth() != Width)
Jay Foad9f71a8f2010-12-07 08:25:34 +00002698 ResultVal = ResultVal.trunc(Width);
Reid Spencer5f016e22007-07-11 17:01:13 +00002699 }
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +00002700 Res = IntegerLiteral::Create(Context, ResultVal, Ty, Tok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00002701 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00002702
Chris Lattner5d661452007-08-26 03:42:43 +00002703 // If this is an imaginary literal, create the ImaginaryLiteral wrapper.
2704 if (Literal.isImaginary)
Mike Stump1eb44332009-09-09 15:08:12 +00002705 Res = new (Context) ImaginaryLiteral(Res,
Steve Naroff6ece14c2009-01-21 00:14:39 +00002706 Context.getComplexType(Res->getType()));
Sebastian Redlcd965b92009-01-18 18:53:16 +00002707
2708 return Owned(Res);
Reid Spencer5f016e22007-07-11 17:01:13 +00002709}
2710
Richard Trieuccd891a2011-09-09 01:45:06 +00002711ExprResult Sema::ActOnParenExpr(SourceLocation L, SourceLocation R, Expr *E) {
Chris Lattnerf0467b32008-04-02 04:24:33 +00002712 assert((E != 0) && "ActOnParenExpr() missing expr");
Steve Naroff6ece14c2009-01-21 00:14:39 +00002713 return Owned(new (Context) ParenExpr(L, R, E));
Reid Spencer5f016e22007-07-11 17:01:13 +00002714}
2715
Chandler Carruthdf1f3772011-05-26 08:53:12 +00002716static bool CheckVecStepTraitOperandType(Sema &S, QualType T,
2717 SourceLocation Loc,
2718 SourceRange ArgRange) {
2719 // [OpenCL 1.1 6.11.12] "The vec_step built-in function takes a built-in
2720 // scalar or vector data type argument..."
2721 // Every built-in scalar type (OpenCL 1.1 6.1.1) is either an arithmetic
2722 // type (C99 6.2.5p18) or void.
2723 if (!(T->isArithmeticType() || T->isVoidType() || T->isVectorType())) {
2724 S.Diag(Loc, diag::err_vecstep_non_scalar_vector_type)
2725 << T << ArgRange;
2726 return true;
2727 }
2728
2729 assert((T->isVoidType() || !T->isIncompleteType()) &&
2730 "Scalar types should always be complete");
2731 return false;
2732}
2733
Chandler Carruth42ec65d2011-05-26 08:53:16 +00002734static bool CheckExtensionTraitOperandType(Sema &S, QualType T,
2735 SourceLocation Loc,
2736 SourceRange ArgRange,
2737 UnaryExprOrTypeTrait TraitKind) {
2738 // C99 6.5.3.4p1:
2739 if (T->isFunctionType()) {
2740 // alignof(function) is allowed as an extension.
2741 if (TraitKind == UETT_SizeOf)
2742 S.Diag(Loc, diag::ext_sizeof_function_type) << ArgRange;
2743 return false;
2744 }
2745
2746 // Allow sizeof(void)/alignof(void) as an extension.
2747 if (T->isVoidType()) {
2748 S.Diag(Loc, diag::ext_sizeof_void_type) << TraitKind << ArgRange;
2749 return false;
2750 }
2751
2752 return true;
2753}
2754
2755static bool CheckObjCTraitOperandConstraints(Sema &S, QualType T,
2756 SourceLocation Loc,
2757 SourceRange ArgRange,
2758 UnaryExprOrTypeTrait TraitKind) {
2759 // Reject sizeof(interface) and sizeof(interface<proto>) in 64-bit mode.
2760 if (S.LangOpts.ObjCNonFragileABI && T->isObjCObjectType()) {
2761 S.Diag(Loc, diag::err_sizeof_nonfragile_interface)
2762 << T << (TraitKind == UETT_SizeOf)
2763 << ArgRange;
2764 return true;
2765 }
2766
2767 return false;
2768}
2769
Chandler Carruth9d342d02011-05-26 08:53:10 +00002770/// \brief Check the constrains on expression operands to unary type expression
2771/// and type traits.
2772///
Chandler Carruthe4d645c2011-05-27 01:33:31 +00002773/// Completes any types necessary and validates the constraints on the operand
2774/// expression. The logic mostly mirrors the type-based overload, but may modify
2775/// the expression as it completes the type for that expression through template
2776/// instantiation, etc.
Richard Trieuccd891a2011-09-09 01:45:06 +00002777bool Sema::CheckUnaryExprOrTypeTraitOperand(Expr *E,
Chandler Carruth9d342d02011-05-26 08:53:10 +00002778 UnaryExprOrTypeTrait ExprKind) {
Richard Trieuccd891a2011-09-09 01:45:06 +00002779 QualType ExprTy = E->getType();
Chandler Carruthe4d645c2011-05-27 01:33:31 +00002780
2781 // C++ [expr.sizeof]p2: "When applied to a reference or a reference type,
2782 // the result is the size of the referenced type."
2783 // C++ [expr.alignof]p3: "When alignof is applied to a reference type, the
2784 // result shall be the alignment of the referenced type."
2785 if (const ReferenceType *Ref = ExprTy->getAs<ReferenceType>())
2786 ExprTy = Ref->getPointeeType();
2787
2788 if (ExprKind == UETT_VecStep)
Richard Trieuccd891a2011-09-09 01:45:06 +00002789 return CheckVecStepTraitOperandType(*this, ExprTy, E->getExprLoc(),
2790 E->getSourceRange());
Chandler Carruthe4d645c2011-05-27 01:33:31 +00002791
2792 // Whitelist some types as extensions
Richard Trieuccd891a2011-09-09 01:45:06 +00002793 if (!CheckExtensionTraitOperandType(*this, ExprTy, E->getExprLoc(),
2794 E->getSourceRange(), ExprKind))
Chandler Carruthe4d645c2011-05-27 01:33:31 +00002795 return false;
2796
Richard Trieuccd891a2011-09-09 01:45:06 +00002797 if (RequireCompleteExprType(E,
Chandler Carruthe4d645c2011-05-27 01:33:31 +00002798 PDiag(diag::err_sizeof_alignof_incomplete_type)
Richard Trieuccd891a2011-09-09 01:45:06 +00002799 << ExprKind << E->getSourceRange(),
Chandler Carruthe4d645c2011-05-27 01:33:31 +00002800 std::make_pair(SourceLocation(), PDiag(0))))
2801 return true;
2802
2803 // Completeing the expression's type may have changed it.
Richard Trieuccd891a2011-09-09 01:45:06 +00002804 ExprTy = E->getType();
Chandler Carruthe4d645c2011-05-27 01:33:31 +00002805 if (const ReferenceType *Ref = ExprTy->getAs<ReferenceType>())
2806 ExprTy = Ref->getPointeeType();
2807
Richard Trieuccd891a2011-09-09 01:45:06 +00002808 if (CheckObjCTraitOperandConstraints(*this, ExprTy, E->getExprLoc(),
2809 E->getSourceRange(), ExprKind))
Chandler Carruthe4d645c2011-05-27 01:33:31 +00002810 return true;
2811
Nico Webercf739922011-06-15 02:47:03 +00002812 if (ExprKind == UETT_SizeOf) {
Richard Trieuccd891a2011-09-09 01:45:06 +00002813 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E->IgnoreParens())) {
Nico Webercf739922011-06-15 02:47:03 +00002814 if (ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(DeclRef->getFoundDecl())) {
2815 QualType OType = PVD->getOriginalType();
2816 QualType Type = PVD->getType();
2817 if (Type->isPointerType() && OType->isArrayType()) {
Richard Trieuccd891a2011-09-09 01:45:06 +00002818 Diag(E->getExprLoc(), diag::warn_sizeof_array_param)
Nico Webercf739922011-06-15 02:47:03 +00002819 << Type << OType;
2820 Diag(PVD->getLocation(), diag::note_declared_at);
2821 }
2822 }
2823 }
2824 }
2825
Chandler Carruthe4d645c2011-05-27 01:33:31 +00002826 return false;
Chandler Carruth9d342d02011-05-26 08:53:10 +00002827}
2828
2829/// \brief Check the constraints on operands to unary expression and type
2830/// traits.
2831///
2832/// This will complete any types necessary, and validate the various constraints
2833/// on those operands.
2834///
Reid Spencer5f016e22007-07-11 17:01:13 +00002835/// The UsualUnaryConversions() function is *not* called by this routine.
Chandler Carruth9d342d02011-05-26 08:53:10 +00002836/// C99 6.3.2.1p[2-4] all state:
2837/// Except when it is the operand of the sizeof operator ...
2838///
2839/// C++ [expr.sizeof]p4
2840/// The lvalue-to-rvalue, array-to-pointer, and function-to-pointer
2841/// standard conversions are not applied to the operand of sizeof.
2842///
2843/// This policy is followed for all of the unary trait expressions.
Richard Trieuccd891a2011-09-09 01:45:06 +00002844bool Sema::CheckUnaryExprOrTypeTraitOperand(QualType ExprType,
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002845 SourceLocation OpLoc,
2846 SourceRange ExprRange,
2847 UnaryExprOrTypeTrait ExprKind) {
Richard Trieuccd891a2011-09-09 01:45:06 +00002848 if (ExprType->isDependentType())
Sebastian Redl28507842009-02-26 14:39:58 +00002849 return false;
2850
Sebastian Redl5d484e82009-11-23 17:18:46 +00002851 // C++ [expr.sizeof]p2: "When applied to a reference or a reference type,
2852 // the result is the size of the referenced type."
2853 // C++ [expr.alignof]p3: "When alignof is applied to a reference type, the
2854 // result shall be the alignment of the referenced type."
Richard Trieuccd891a2011-09-09 01:45:06 +00002855 if (const ReferenceType *Ref = ExprType->getAs<ReferenceType>())
2856 ExprType = Ref->getPointeeType();
Sebastian Redl5d484e82009-11-23 17:18:46 +00002857
Chandler Carruthdf1f3772011-05-26 08:53:12 +00002858 if (ExprKind == UETT_VecStep)
Richard Trieuccd891a2011-09-09 01:45:06 +00002859 return CheckVecStepTraitOperandType(*this, ExprType, OpLoc, ExprRange);
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002860
Chandler Carruth42ec65d2011-05-26 08:53:16 +00002861 // Whitelist some types as extensions
Richard Trieuccd891a2011-09-09 01:45:06 +00002862 if (!CheckExtensionTraitOperandType(*this, ExprType, OpLoc, ExprRange,
Chandler Carruth42ec65d2011-05-26 08:53:16 +00002863 ExprKind))
Chris Lattner01072922009-01-24 19:46:37 +00002864 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00002865
Richard Trieuccd891a2011-09-09 01:45:06 +00002866 if (RequireCompleteType(OpLoc, ExprType,
Douglas Gregor5cc07df2009-12-15 16:44:32 +00002867 PDiag(diag::err_sizeof_alignof_incomplete_type)
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002868 << ExprKind << ExprRange))
Chris Lattner1efaa952009-04-24 00:30:45 +00002869 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002870
Richard Trieuccd891a2011-09-09 01:45:06 +00002871 if (CheckObjCTraitOperandConstraints(*this, ExprType, OpLoc, ExprRange,
Chandler Carruth42ec65d2011-05-26 08:53:16 +00002872 ExprKind))
Chris Lattner5cb10d32009-04-24 22:30:50 +00002873 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002874
Chris Lattner1efaa952009-04-24 00:30:45 +00002875 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00002876}
2877
Chandler Carruth9d342d02011-05-26 08:53:10 +00002878static bool CheckAlignOfExpr(Sema &S, Expr *E) {
Chris Lattner31e21e02009-01-24 20:17:12 +00002879 E = E->IgnoreParens();
Sebastian Redl28507842009-02-26 14:39:58 +00002880
Mike Stump1eb44332009-09-09 15:08:12 +00002881 // alignof decl is always ok.
Chris Lattner31e21e02009-01-24 20:17:12 +00002882 if (isa<DeclRefExpr>(E))
2883 return false;
Sebastian Redl28507842009-02-26 14:39:58 +00002884
2885 // Cannot know anything else if the expression is dependent.
2886 if (E->isTypeDependent())
2887 return false;
2888
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002889 if (E->getBitField()) {
Chandler Carruth9d342d02011-05-26 08:53:10 +00002890 S.Diag(E->getExprLoc(), diag::err_sizeof_alignof_bitfield)
2891 << 1 << E->getSourceRange();
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002892 return true;
Chris Lattner31e21e02009-01-24 20:17:12 +00002893 }
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002894
2895 // Alignment of a field access is always okay, so long as it isn't a
2896 // bit-field.
2897 if (MemberExpr *ME = dyn_cast<MemberExpr>(E))
Mike Stump8e1fab22009-07-22 18:58:19 +00002898 if (isa<FieldDecl>(ME->getMemberDecl()))
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002899 return false;
2900
Chandler Carruth9d342d02011-05-26 08:53:10 +00002901 return S.CheckUnaryExprOrTypeTraitOperand(E, UETT_AlignOf);
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002902}
2903
Chandler Carruth9d342d02011-05-26 08:53:10 +00002904bool Sema::CheckVecStepExpr(Expr *E) {
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002905 E = E->IgnoreParens();
2906
2907 // Cannot know anything else if the expression is dependent.
2908 if (E->isTypeDependent())
2909 return false;
2910
Chandler Carruth9d342d02011-05-26 08:53:10 +00002911 return CheckUnaryExprOrTypeTraitOperand(E, UETT_VecStep);
Chris Lattner31e21e02009-01-24 20:17:12 +00002912}
2913
Douglas Gregorba498172009-03-13 21:01:28 +00002914/// \brief Build a sizeof or alignof expression given a type operand.
John McCall60d7b3a2010-08-24 06:29:42 +00002915ExprResult
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002916Sema::CreateUnaryExprOrTypeTraitExpr(TypeSourceInfo *TInfo,
2917 SourceLocation OpLoc,
2918 UnaryExprOrTypeTrait ExprKind,
2919 SourceRange R) {
John McCalla93c9342009-12-07 02:54:59 +00002920 if (!TInfo)
Douglas Gregorba498172009-03-13 21:01:28 +00002921 return ExprError();
2922
John McCalla93c9342009-12-07 02:54:59 +00002923 QualType T = TInfo->getType();
John McCall5ab75172009-11-04 07:28:41 +00002924
Douglas Gregorba498172009-03-13 21:01:28 +00002925 if (!T->isDependentType() &&
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002926 CheckUnaryExprOrTypeTraitOperand(T, OpLoc, R, ExprKind))
Douglas Gregorba498172009-03-13 21:01:28 +00002927 return ExprError();
2928
2929 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002930 return Owned(new (Context) UnaryExprOrTypeTraitExpr(ExprKind, TInfo,
2931 Context.getSizeType(),
2932 OpLoc, R.getEnd()));
Douglas Gregorba498172009-03-13 21:01:28 +00002933}
2934
2935/// \brief Build a sizeof or alignof expression given an expression
2936/// operand.
John McCall60d7b3a2010-08-24 06:29:42 +00002937ExprResult
Chandler Carruthe72c55b2011-05-29 07:32:14 +00002938Sema::CreateUnaryExprOrTypeTraitExpr(Expr *E, SourceLocation OpLoc,
2939 UnaryExprOrTypeTrait ExprKind) {
Douglas Gregor4f0845e2011-06-22 23:21:00 +00002940 ExprResult PE = CheckPlaceholderExpr(E);
2941 if (PE.isInvalid())
2942 return ExprError();
2943
2944 E = PE.get();
2945
Douglas Gregorba498172009-03-13 21:01:28 +00002946 // Verify that the operand is valid.
2947 bool isInvalid = false;
2948 if (E->isTypeDependent()) {
2949 // Delay type-checking for type-dependent expressions.
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002950 } else if (ExprKind == UETT_AlignOf) {
Chandler Carruth9d342d02011-05-26 08:53:10 +00002951 isInvalid = CheckAlignOfExpr(*this, E);
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002952 } else if (ExprKind == UETT_VecStep) {
Chandler Carruth9d342d02011-05-26 08:53:10 +00002953 isInvalid = CheckVecStepExpr(E);
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002954 } else if (E->getBitField()) { // C99 6.5.3.4p1.
Chandler Carruth9d342d02011-05-26 08:53:10 +00002955 Diag(E->getExprLoc(), diag::err_sizeof_alignof_bitfield) << 0;
Douglas Gregorba498172009-03-13 21:01:28 +00002956 isInvalid = true;
2957 } else {
Chandler Carruth9d342d02011-05-26 08:53:10 +00002958 isInvalid = CheckUnaryExprOrTypeTraitOperand(E, UETT_SizeOf);
Douglas Gregorba498172009-03-13 21:01:28 +00002959 }
2960
2961 if (isInvalid)
2962 return ExprError();
2963
Eli Friedman71b8fb52012-01-21 01:01:51 +00002964 if (ExprKind == UETT_SizeOf && E->getType()->isVariableArrayType()) {
2965 PE = TranformToPotentiallyEvaluated(E);
2966 if (PE.isInvalid()) return ExprError();
2967 E = PE.take();
2968 }
2969
Douglas Gregorba498172009-03-13 21:01:28 +00002970 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
Chandler Carruth9d342d02011-05-26 08:53:10 +00002971 return Owned(new (Context) UnaryExprOrTypeTraitExpr(
Chandler Carruthe72c55b2011-05-29 07:32:14 +00002972 ExprKind, E, Context.getSizeType(), OpLoc,
Chandler Carruth9d342d02011-05-26 08:53:10 +00002973 E->getSourceRange().getEnd()));
Douglas Gregorba498172009-03-13 21:01:28 +00002974}
2975
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002976/// ActOnUnaryExprOrTypeTraitExpr - Handle @c sizeof(type) and @c sizeof @c
2977/// expr and the same for @c alignof and @c __alignof
Sebastian Redl05189992008-11-11 17:56:53 +00002978/// Note that the ArgRange is invalid if isType is false.
John McCall60d7b3a2010-08-24 06:29:42 +00002979ExprResult
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002980Sema::ActOnUnaryExprOrTypeTraitExpr(SourceLocation OpLoc,
Richard Trieuccd891a2011-09-09 01:45:06 +00002981 UnaryExprOrTypeTrait ExprKind, bool IsType,
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002982 void *TyOrEx, const SourceRange &ArgRange) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002983 // If error parsing type, ignore.
Sebastian Redl0eb23302009-01-19 00:08:26 +00002984 if (TyOrEx == 0) return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +00002985
Richard Trieuccd891a2011-09-09 01:45:06 +00002986 if (IsType) {
John McCalla93c9342009-12-07 02:54:59 +00002987 TypeSourceInfo *TInfo;
John McCallb3d87482010-08-24 05:47:05 +00002988 (void) GetTypeFromParser(ParsedType::getFromOpaquePtr(TyOrEx), &TInfo);
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002989 return CreateUnaryExprOrTypeTraitExpr(TInfo, OpLoc, ExprKind, ArgRange);
Mike Stump1eb44332009-09-09 15:08:12 +00002990 }
Sebastian Redl05189992008-11-11 17:56:53 +00002991
Douglas Gregorba498172009-03-13 21:01:28 +00002992 Expr *ArgEx = (Expr *)TyOrEx;
Chandler Carruthe72c55b2011-05-29 07:32:14 +00002993 ExprResult Result = CreateUnaryExprOrTypeTraitExpr(ArgEx, OpLoc, ExprKind);
Douglas Gregorba498172009-03-13 21:01:28 +00002994 return move(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +00002995}
2996
John Wiegley429bb272011-04-08 18:41:53 +00002997static QualType CheckRealImagOperand(Sema &S, ExprResult &V, SourceLocation Loc,
Richard Trieuccd891a2011-09-09 01:45:06 +00002998 bool IsReal) {
John Wiegley429bb272011-04-08 18:41:53 +00002999 if (V.get()->isTypeDependent())
John McCall09431682010-11-18 19:01:18 +00003000 return S.Context.DependentTy;
Mike Stump1eb44332009-09-09 15:08:12 +00003001
John McCallf6a16482010-12-04 03:47:34 +00003002 // _Real and _Imag are only l-values for normal l-values.
John Wiegley429bb272011-04-08 18:41:53 +00003003 if (V.get()->getObjectKind() != OK_Ordinary) {
3004 V = S.DefaultLvalueConversion(V.take());
3005 if (V.isInvalid())
3006 return QualType();
3007 }
John McCallf6a16482010-12-04 03:47:34 +00003008
Chris Lattnercc26ed72007-08-26 05:39:26 +00003009 // These operators return the element type of a complex type.
John Wiegley429bb272011-04-08 18:41:53 +00003010 if (const ComplexType *CT = V.get()->getType()->getAs<ComplexType>())
Chris Lattnerdbb36972007-08-24 21:16:53 +00003011 return CT->getElementType();
Mike Stump1eb44332009-09-09 15:08:12 +00003012
Chris Lattnercc26ed72007-08-26 05:39:26 +00003013 // Otherwise they pass through real integer and floating point types here.
John Wiegley429bb272011-04-08 18:41:53 +00003014 if (V.get()->getType()->isArithmeticType())
3015 return V.get()->getType();
Mike Stump1eb44332009-09-09 15:08:12 +00003016
John McCall2cd11fe2010-10-12 02:09:17 +00003017 // Test for placeholders.
John McCallfb8721c2011-04-10 19:13:55 +00003018 ExprResult PR = S.CheckPlaceholderExpr(V.get());
John McCall2cd11fe2010-10-12 02:09:17 +00003019 if (PR.isInvalid()) return QualType();
John Wiegley429bb272011-04-08 18:41:53 +00003020 if (PR.get() != V.get()) {
3021 V = move(PR);
Richard Trieuccd891a2011-09-09 01:45:06 +00003022 return CheckRealImagOperand(S, V, Loc, IsReal);
John McCall2cd11fe2010-10-12 02:09:17 +00003023 }
3024
Chris Lattnercc26ed72007-08-26 05:39:26 +00003025 // Reject anything else.
John Wiegley429bb272011-04-08 18:41:53 +00003026 S.Diag(Loc, diag::err_realimag_invalid_type) << V.get()->getType()
Richard Trieuccd891a2011-09-09 01:45:06 +00003027 << (IsReal ? "__real" : "__imag");
Chris Lattnercc26ed72007-08-26 05:39:26 +00003028 return QualType();
Chris Lattnerdbb36972007-08-24 21:16:53 +00003029}
3030
3031
Reid Spencer5f016e22007-07-11 17:01:13 +00003032
John McCall60d7b3a2010-08-24 06:29:42 +00003033ExprResult
Sebastian Redl0eb23302009-01-19 00:08:26 +00003034Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc,
John McCall9ae2f072010-08-23 23:25:46 +00003035 tok::TokenKind Kind, Expr *Input) {
John McCall2de56d12010-08-25 11:45:40 +00003036 UnaryOperatorKind Opc;
Reid Spencer5f016e22007-07-11 17:01:13 +00003037 switch (Kind) {
David Blaikieb219cfc2011-09-23 05:06:16 +00003038 default: llvm_unreachable("Unknown unary op!");
John McCall2de56d12010-08-25 11:45:40 +00003039 case tok::plusplus: Opc = UO_PostInc; break;
3040 case tok::minusminus: Opc = UO_PostDec; break;
Reid Spencer5f016e22007-07-11 17:01:13 +00003041 }
Sebastian Redl0eb23302009-01-19 00:08:26 +00003042
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00003043 // Since this might is a postfix expression, get rid of ParenListExprs.
3044 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Input);
3045 if (Result.isInvalid()) return ExprError();
3046 Input = Result.take();
3047
John McCall9ae2f072010-08-23 23:25:46 +00003048 return BuildUnaryOp(S, OpLoc, Opc, Input);
Reid Spencer5f016e22007-07-11 17:01:13 +00003049}
3050
John McCall60d7b3a2010-08-24 06:29:42 +00003051ExprResult
John McCall9ae2f072010-08-23 23:25:46 +00003052Sema::ActOnArraySubscriptExpr(Scope *S, Expr *Base, SourceLocation LLoc,
3053 Expr *Idx, SourceLocation RLoc) {
Nate Begeman2ef13e52009-08-10 23:49:36 +00003054 // Since this might be a postfix expression, get rid of ParenListExprs.
John McCall60d7b3a2010-08-24 06:29:42 +00003055 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Base);
John McCall9ae2f072010-08-23 23:25:46 +00003056 if (Result.isInvalid()) return ExprError();
3057 Base = Result.take();
Nate Begeman2ef13e52009-08-10 23:49:36 +00003058
John McCall9ae2f072010-08-23 23:25:46 +00003059 Expr *LHSExp = Base, *RHSExp = Idx;
Mike Stump1eb44332009-09-09 15:08:12 +00003060
David Blaikie4e4d0842012-03-11 07:00:24 +00003061 if (getLangOpts().CPlusPlus &&
Douglas Gregor3384c9c2009-05-19 00:01:19 +00003062 (LHSExp->isTypeDependent() || RHSExp->isTypeDependent())) {
Douglas Gregor3384c9c2009-05-19 00:01:19 +00003063 return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp,
John McCallf89e55a2010-11-18 06:31:45 +00003064 Context.DependentTy,
3065 VK_LValue, OK_Ordinary,
3066 RLoc));
Douglas Gregor3384c9c2009-05-19 00:01:19 +00003067 }
3068
David Blaikie4e4d0842012-03-11 07:00:24 +00003069 if (getLangOpts().CPlusPlus &&
Sebastian Redl0eb23302009-01-19 00:08:26 +00003070 (LHSExp->getType()->isRecordType() ||
Eli Friedman03f332a2008-12-15 22:34:21 +00003071 LHSExp->getType()->isEnumeralType() ||
3072 RHSExp->getType()->isRecordType() ||
Ted Kremenekebcb57a2012-03-06 20:05:56 +00003073 RHSExp->getType()->isEnumeralType()) &&
3074 !LHSExp->getType()->isObjCObjectPointerType()) {
John McCall9ae2f072010-08-23 23:25:46 +00003075 return CreateOverloadedArraySubscriptExpr(LLoc, RLoc, Base, Idx);
Douglas Gregor337c6b92008-11-19 17:17:41 +00003076 }
3077
John McCall9ae2f072010-08-23 23:25:46 +00003078 return CreateBuiltinArraySubscriptExpr(Base, LLoc, Idx, RLoc);
Sebastian Redlf322ed62009-10-29 20:17:01 +00003079}
3080
3081
John McCall60d7b3a2010-08-24 06:29:42 +00003082ExprResult
John McCall9ae2f072010-08-23 23:25:46 +00003083Sema::CreateBuiltinArraySubscriptExpr(Expr *Base, SourceLocation LLoc,
Richard Trieuccd891a2011-09-09 01:45:06 +00003084 Expr *Idx, SourceLocation RLoc) {
John McCall9ae2f072010-08-23 23:25:46 +00003085 Expr *LHSExp = Base;
3086 Expr *RHSExp = Idx;
Sebastian Redlf322ed62009-10-29 20:17:01 +00003087
Chris Lattner12d9ff62007-07-16 00:14:47 +00003088 // Perform default conversions.
John Wiegley429bb272011-04-08 18:41:53 +00003089 if (!LHSExp->getType()->getAs<VectorType>()) {
3090 ExprResult Result = DefaultFunctionArrayLvalueConversion(LHSExp);
3091 if (Result.isInvalid())
3092 return ExprError();
3093 LHSExp = Result.take();
3094 }
3095 ExprResult Result = DefaultFunctionArrayLvalueConversion(RHSExp);
3096 if (Result.isInvalid())
3097 return ExprError();
3098 RHSExp = Result.take();
Sebastian Redl0eb23302009-01-19 00:08:26 +00003099
Chris Lattner12d9ff62007-07-16 00:14:47 +00003100 QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType();
John McCallf89e55a2010-11-18 06:31:45 +00003101 ExprValueKind VK = VK_LValue;
3102 ExprObjectKind OK = OK_Ordinary;
Reid Spencer5f016e22007-07-11 17:01:13 +00003103
Reid Spencer5f016e22007-07-11 17:01:13 +00003104 // C99 6.5.2.1p2: the expression e1[e2] is by definition precisely equivalent
Chris Lattner73d0d4f2007-08-30 17:45:32 +00003105 // to the expression *((e1)+(e2)). This means the array "Base" may actually be
Mike Stumpeed9cac2009-02-19 03:04:26 +00003106 // in the subscript position. As a result, we need to derive the array base
Reid Spencer5f016e22007-07-11 17:01:13 +00003107 // and index from the expression types.
Chris Lattner12d9ff62007-07-16 00:14:47 +00003108 Expr *BaseExpr, *IndexExpr;
3109 QualType ResultType;
Sebastian Redl28507842009-02-26 14:39:58 +00003110 if (LHSTy->isDependentType() || RHSTy->isDependentType()) {
3111 BaseExpr = LHSExp;
3112 IndexExpr = RHSExp;
3113 ResultType = Context.DependentTy;
Ted Kremenek6217b802009-07-29 21:53:49 +00003114 } else if (const PointerType *PTy = LHSTy->getAs<PointerType>()) {
Chris Lattner12d9ff62007-07-16 00:14:47 +00003115 BaseExpr = LHSExp;
3116 IndexExpr = RHSExp;
Chris Lattner12d9ff62007-07-16 00:14:47 +00003117 ResultType = PTy->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +00003118 } else if (const ObjCObjectPointerType *PTy =
Fariborz Jahaniana78eca22012-03-28 17:56:49 +00003119 LHSTy->getAs<ObjCObjectPointerType>()) {
Steve Naroff14108da2009-07-10 23:34:53 +00003120 BaseExpr = LHSExp;
3121 IndexExpr = RHSExp;
Ted Kremenekebcb57a2012-03-06 20:05:56 +00003122 Result = BuildObjCSubscriptExpression(RLoc, BaseExpr, IndexExpr, 0, 0);
3123 if (!Result.isInvalid())
3124 return Owned(Result.take());
Steve Naroff14108da2009-07-10 23:34:53 +00003125 ResultType = PTy->getPointeeType();
Fariborz Jahaniana78eca22012-03-28 17:56:49 +00003126 } else if (const PointerType *PTy = RHSTy->getAs<PointerType>()) {
3127 // Handle the uncommon case of "123[Ptr]".
3128 BaseExpr = RHSExp;
3129 IndexExpr = LHSExp;
3130 ResultType = PTy->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +00003131 } else if (const ObjCObjectPointerType *PTy =
John McCall183700f2009-09-21 23:43:11 +00003132 RHSTy->getAs<ObjCObjectPointerType>()) {
Steve Naroff14108da2009-07-10 23:34:53 +00003133 // Handle the uncommon case of "123[Ptr]".
3134 BaseExpr = RHSExp;
3135 IndexExpr = LHSExp;
3136 ResultType = PTy->getPointeeType();
John McCall183700f2009-09-21 23:43:11 +00003137 } else if (const VectorType *VTy = LHSTy->getAs<VectorType>()) {
Chris Lattnerc8629632007-07-31 19:29:30 +00003138 BaseExpr = LHSExp; // vectors: V[123]
Chris Lattner12d9ff62007-07-16 00:14:47 +00003139 IndexExpr = RHSExp;
John McCallf89e55a2010-11-18 06:31:45 +00003140 VK = LHSExp->getValueKind();
3141 if (VK != VK_RValue)
3142 OK = OK_VectorComponent;
Nate Begeman334a8022009-01-18 00:45:31 +00003143
Chris Lattner12d9ff62007-07-16 00:14:47 +00003144 // FIXME: need to deal with const...
3145 ResultType = VTy->getElementType();
Eli Friedman7c32f8e2009-04-25 23:46:54 +00003146 } else if (LHSTy->isArrayType()) {
3147 // If we see an array that wasn't promoted by
Douglas Gregora873dfc2010-02-03 00:27:59 +00003148 // DefaultFunctionArrayLvalueConversion, it must be an array that
Eli Friedman7c32f8e2009-04-25 23:46:54 +00003149 // wasn't promoted because of the C90 rule that doesn't
3150 // allow promoting non-lvalue arrays. Warn, then
3151 // force the promotion here.
3152 Diag(LHSExp->getLocStart(), diag::ext_subscript_non_lvalue) <<
3153 LHSExp->getSourceRange();
John Wiegley429bb272011-04-08 18:41:53 +00003154 LHSExp = ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy),
3155 CK_ArrayToPointerDecay).take();
Eli Friedman7c32f8e2009-04-25 23:46:54 +00003156 LHSTy = LHSExp->getType();
3157
3158 BaseExpr = LHSExp;
3159 IndexExpr = RHSExp;
Ted Kremenek6217b802009-07-29 21:53:49 +00003160 ResultType = LHSTy->getAs<PointerType>()->getPointeeType();
Eli Friedman7c32f8e2009-04-25 23:46:54 +00003161 } else if (RHSTy->isArrayType()) {
3162 // Same as previous, except for 123[f().a] case
3163 Diag(RHSExp->getLocStart(), diag::ext_subscript_non_lvalue) <<
3164 RHSExp->getSourceRange();
John Wiegley429bb272011-04-08 18:41:53 +00003165 RHSExp = ImpCastExprToType(RHSExp, Context.getArrayDecayedType(RHSTy),
3166 CK_ArrayToPointerDecay).take();
Eli Friedman7c32f8e2009-04-25 23:46:54 +00003167 RHSTy = RHSExp->getType();
3168
3169 BaseExpr = RHSExp;
3170 IndexExpr = LHSExp;
Ted Kremenek6217b802009-07-29 21:53:49 +00003171 ResultType = RHSTy->getAs<PointerType>()->getPointeeType();
Reid Spencer5f016e22007-07-11 17:01:13 +00003172 } else {
Chris Lattner338395d2009-04-25 22:50:55 +00003173 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value)
3174 << LHSExp->getSourceRange() << RHSExp->getSourceRange());
Sebastian Redl0eb23302009-01-19 00:08:26 +00003175 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003176 // C99 6.5.2.1p1
Douglas Gregorf6094622010-07-23 15:58:24 +00003177 if (!IndexExpr->getType()->isIntegerType() && !IndexExpr->isTypeDependent())
Chris Lattner338395d2009-04-25 22:50:55 +00003178 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer)
3179 << IndexExpr->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +00003180
Daniel Dunbar7e88a602009-09-17 06:31:17 +00003181 if ((IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_S) ||
Sam Weinig0f9a5b52009-09-14 20:14:57 +00003182 IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_U))
3183 && !IndexExpr->isTypeDependent())
Sam Weinig76e2b712009-09-14 01:58:58 +00003184 Diag(LLoc, diag::warn_subscript_is_char) << IndexExpr->getSourceRange();
3185
Douglas Gregore7450f52009-03-24 19:52:54 +00003186 // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly,
Mike Stump1eb44332009-09-09 15:08:12 +00003187 // C++ [expr.sub]p1: The type "T" shall be a completely-defined object
3188 // type. Note that Functions are not objects, and that (in C99 parlance)
Douglas Gregore7450f52009-03-24 19:52:54 +00003189 // incomplete types are not object types.
3190 if (ResultType->isFunctionType()) {
3191 Diag(BaseExpr->getLocStart(), diag::err_subscript_function_type)
3192 << ResultType << BaseExpr->getSourceRange();
3193 return ExprError();
3194 }
Mike Stump1eb44332009-09-09 15:08:12 +00003195
David Blaikie4e4d0842012-03-11 07:00:24 +00003196 if (ResultType->isVoidType() && !getLangOpts().CPlusPlus) {
Abramo Bagnara46358452010-09-13 06:50:07 +00003197 // GNU extension: subscripting on pointer to void
Chandler Carruth66289692011-06-27 16:32:27 +00003198 Diag(LLoc, diag::ext_gnu_subscript_void_type)
3199 << BaseExpr->getSourceRange();
John McCall09431682010-11-18 19:01:18 +00003200
3201 // C forbids expressions of unqualified void type from being l-values.
3202 // See IsCForbiddenLValueType.
3203 if (!ResultType.hasQualifiers()) VK = VK_RValue;
Abramo Bagnara46358452010-09-13 06:50:07 +00003204 } else if (!ResultType->isDependentType() &&
Mike Stump1eb44332009-09-09 15:08:12 +00003205 RequireCompleteType(LLoc, ResultType,
Anders Carlssonb7906612009-08-26 23:45:07 +00003206 PDiag(diag::err_subscript_incomplete_type)
3207 << BaseExpr->getSourceRange()))
Douglas Gregore7450f52009-03-24 19:52:54 +00003208 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +00003209
Chris Lattner1efaa952009-04-24 00:30:45 +00003210 // Diagnose bad cases where we step over interface counts.
John McCallc12c5bb2010-05-15 11:32:37 +00003211 if (ResultType->isObjCObjectType() && LangOpts.ObjCNonFragileABI) {
Chris Lattner1efaa952009-04-24 00:30:45 +00003212 Diag(LLoc, diag::err_subscript_nonfragile_interface)
3213 << ResultType << BaseExpr->getSourceRange();
3214 return ExprError();
3215 }
Mike Stump1eb44332009-09-09 15:08:12 +00003216
John McCall09431682010-11-18 19:01:18 +00003217 assert(VK == VK_RValue || LangOpts.CPlusPlus ||
Douglas Gregor2b1ad8b2011-06-23 00:49:38 +00003218 !ResultType.isCForbiddenLValueType());
John McCall09431682010-11-18 19:01:18 +00003219
Mike Stumpeed9cac2009-02-19 03:04:26 +00003220 return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp,
John McCallf89e55a2010-11-18 06:31:45 +00003221 ResultType, VK, OK, RLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +00003222}
3223
John McCall60d7b3a2010-08-24 06:29:42 +00003224ExprResult Sema::BuildCXXDefaultArgExpr(SourceLocation CallLoc,
Nico Weber08e41a62010-11-29 18:19:25 +00003225 FunctionDecl *FD,
3226 ParmVarDecl *Param) {
Anders Carlsson56c5e332009-08-25 03:49:14 +00003227 if (Param->hasUnparsedDefaultArg()) {
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00003228 Diag(CallLoc,
Nico Weber15d5c832010-11-30 04:44:33 +00003229 diag::err_use_of_default_argument_to_function_declared_later) <<
Anders Carlsson56c5e332009-08-25 03:49:14 +00003230 FD << cast<CXXRecordDecl>(FD->getDeclContext())->getDeclName();
Mike Stump1eb44332009-09-09 15:08:12 +00003231 Diag(UnparsedDefaultArgLocs[Param],
Nico Weber15d5c832010-11-30 04:44:33 +00003232 diag::note_default_argument_declared_here);
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00003233 return ExprError();
3234 }
3235
3236 if (Param->hasUninstantiatedDefaultArg()) {
3237 Expr *UninstExpr = Param->getUninstantiatedDefaultArg();
Anders Carlsson56c5e332009-08-25 03:49:14 +00003238
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00003239 // Instantiate the expression.
3240 MultiLevelTemplateArgumentList ArgList
3241 = getTemplateInstantiationArgs(FD, 0, /*RelativeToPrimary=*/true);
Anders Carlsson25cae7f2009-09-05 05:14:19 +00003242
Nico Weber08e41a62010-11-29 18:19:25 +00003243 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00003244 = ArgList.getInnermost();
3245 InstantiatingTemplate Inst(*this, CallLoc, Param, Innermost.first,
3246 Innermost.second);
Anders Carlsson56c5e332009-08-25 03:49:14 +00003247
Nico Weber08e41a62010-11-29 18:19:25 +00003248 ExprResult Result;
3249 {
3250 // C++ [dcl.fct.default]p5:
3251 // The names in the [default argument] expression are bound, and
3252 // the semantic constraints are checked, at the point where the
3253 // default argument expression appears.
Nico Weber15d5c832010-11-30 04:44:33 +00003254 ContextRAII SavedContext(*this, FD);
Douglas Gregor7bdc1522012-02-16 21:36:18 +00003255 LocalInstantiationScope Local(*this);
Nico Weber08e41a62010-11-29 18:19:25 +00003256 Result = SubstExpr(UninstExpr, ArgList);
3257 }
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00003258 if (Result.isInvalid())
3259 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +00003260
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00003261 // Check the expression as an initializer for the parameter.
3262 InitializedEntity Entity
Fariborz Jahanian745da3a2010-09-24 17:30:16 +00003263 = InitializedEntity::InitializeParameter(Context, Param);
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00003264 InitializationKind Kind
3265 = InitializationKind::CreateCopy(Param->getLocation(),
Daniel Dunbar96a00142012-03-09 18:35:03 +00003266 /*FIXME:EqualLoc*/UninstExpr->getLocStart());
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00003267 Expr *ResultE = Result.takeAs<Expr>();
Douglas Gregor65222e82009-12-23 18:19:08 +00003268
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00003269 InitializationSequence InitSeq(*this, Entity, Kind, &ResultE, 1);
3270 Result = InitSeq.Perform(*this, Entity, Kind,
3271 MultiExprArg(*this, &ResultE, 1));
3272 if (Result.isInvalid())
3273 return ExprError();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00003274
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00003275 // Build the default argument expression.
3276 return Owned(CXXDefaultArgExpr::Create(Context, CallLoc, Param,
3277 Result.takeAs<Expr>()));
Anders Carlsson56c5e332009-08-25 03:49:14 +00003278 }
3279
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00003280 // If the default expression creates temporaries, we need to
3281 // push them to the current stack of expression temporaries so they'll
3282 // be properly destroyed.
3283 // FIXME: We should really be rebuilding the default argument with new
3284 // bound temporaries; see the comment in PR5810.
John McCall80ee6e82011-11-10 05:35:25 +00003285 // We don't need to do that with block decls, though, because
3286 // blocks in default argument expression can never capture anything.
3287 if (isa<ExprWithCleanups>(Param->getInit())) {
3288 // Set the "needs cleanups" bit regardless of whether there are
3289 // any explicit objects.
John McCallf85e1932011-06-15 23:02:42 +00003290 ExprNeedsCleanups = true;
John McCall80ee6e82011-11-10 05:35:25 +00003291
3292 // Append all the objects to the cleanup list. Right now, this
3293 // should always be a no-op, because blocks in default argument
3294 // expressions should never be able to capture anything.
3295 assert(!cast<ExprWithCleanups>(Param->getInit())->getNumObjects() &&
3296 "default argument expression has capturing blocks?");
Douglas Gregor5833b0b2010-09-14 22:55:20 +00003297 }
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00003298
3299 // We already type-checked the argument, so we know it works.
Douglas Gregor4fcf5b22010-09-11 23:32:50 +00003300 // Just mark all of the declarations in this potentially-evaluated expression
3301 // as being "referenced".
Douglas Gregorf4b7de12012-02-21 19:11:17 +00003302 MarkDeclarationsReferencedInExpr(Param->getDefaultArg(),
3303 /*SkipLocalVariables=*/true);
Douglas Gregor036aed12009-12-23 23:03:06 +00003304 return Owned(CXXDefaultArgExpr::Create(Context, CallLoc, Param));
Anders Carlsson56c5e332009-08-25 03:49:14 +00003305}
3306
Douglas Gregor88a35142008-12-22 05:46:06 +00003307/// ConvertArgumentsForCall - Converts the arguments specified in
3308/// Args/NumArgs to the parameter types of the function FDecl with
3309/// function prototype Proto. Call is the call expression itself, and
3310/// Fn is the function expression. For a C++ member function, this
3311/// routine does not attempt to convert the object argument. Returns
3312/// true if the call is ill-formed.
Mike Stumpeed9cac2009-02-19 03:04:26 +00003313bool
3314Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn,
Douglas Gregor88a35142008-12-22 05:46:06 +00003315 FunctionDecl *FDecl,
Douglas Gregor72564e72009-02-26 23:50:07 +00003316 const FunctionProtoType *Proto,
Douglas Gregor88a35142008-12-22 05:46:06 +00003317 Expr **Args, unsigned NumArgs,
Peter Collingbourne1f240762011-10-02 23:49:29 +00003318 SourceLocation RParenLoc,
3319 bool IsExecConfig) {
John McCall8e10f3b2011-02-26 05:39:39 +00003320 // Bail out early if calling a builtin with custom typechecking.
3321 // We don't need to do this in the
3322 if (FDecl)
3323 if (unsigned ID = FDecl->getBuiltinID())
3324 if (Context.BuiltinInfo.hasCustomTypechecking(ID))
3325 return false;
3326
Mike Stumpeed9cac2009-02-19 03:04:26 +00003327 // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by
Douglas Gregor88a35142008-12-22 05:46:06 +00003328 // assignment, to the types of the corresponding parameter, ...
3329 unsigned NumArgsInProto = Proto->getNumArgs();
Douglas Gregor3fd56d72009-01-23 21:30:56 +00003330 bool Invalid = false;
Peter Collingbourneaf15b4d2011-10-02 23:49:20 +00003331 unsigned MinArgs = FDecl ? FDecl->getMinRequiredArguments() : NumArgsInProto;
Peter Collingbourne1f240762011-10-02 23:49:29 +00003332 unsigned FnKind = Fn->getType()->isBlockPointerType()
3333 ? 1 /* block */
3334 : (IsExecConfig ? 3 /* kernel function (exec config) */
3335 : 0 /* function */);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00003336
Douglas Gregor88a35142008-12-22 05:46:06 +00003337 // If too few arguments are available (and we don't have default
3338 // arguments for the remaining parameters), don't make the call.
3339 if (NumArgs < NumArgsInProto) {
Peter Collingbourneaf15b4d2011-10-02 23:49:20 +00003340 if (NumArgs < MinArgs) {
3341 Diag(RParenLoc, MinArgs == NumArgsInProto
3342 ? diag::err_typecheck_call_too_few_args
3343 : diag::err_typecheck_call_too_few_args_at_least)
Peter Collingbourne1f240762011-10-02 23:49:29 +00003344 << FnKind
Peter Collingbourneaf15b4d2011-10-02 23:49:20 +00003345 << MinArgs << NumArgs << Fn->getSourceRange();
Peter Collingbourne9aab1482011-07-29 00:24:42 +00003346
3347 // Emit the location of the prototype.
Peter Collingbourne1f240762011-10-02 23:49:29 +00003348 if (FDecl && !FDecl->getBuiltinID() && !IsExecConfig)
Peter Collingbourne9aab1482011-07-29 00:24:42 +00003349 Diag(FDecl->getLocStart(), diag::note_callee_decl)
3350 << FDecl;
3351
3352 return true;
3353 }
Ted Kremenek8189cde2009-02-07 01:47:29 +00003354 Call->setNumArgs(Context, NumArgsInProto);
Douglas Gregor88a35142008-12-22 05:46:06 +00003355 }
3356
3357 // If too many are passed and not variadic, error on the extras and drop
3358 // them.
3359 if (NumArgs > NumArgsInProto) {
3360 if (!Proto->isVariadic()) {
3361 Diag(Args[NumArgsInProto]->getLocStart(),
Peter Collingbourneaf15b4d2011-10-02 23:49:20 +00003362 MinArgs == NumArgsInProto
3363 ? diag::err_typecheck_call_too_many_args
3364 : diag::err_typecheck_call_too_many_args_at_most)
Peter Collingbourne1f240762011-10-02 23:49:29 +00003365 << FnKind
Eric Christopherccfa9632010-04-16 04:56:46 +00003366 << NumArgsInProto << NumArgs << Fn->getSourceRange()
Douglas Gregor88a35142008-12-22 05:46:06 +00003367 << SourceRange(Args[NumArgsInProto]->getLocStart(),
3368 Args[NumArgs-1]->getLocEnd());
Ted Kremenek5862f0e2011-04-04 17:22:27 +00003369
3370 // Emit the location of the prototype.
Peter Collingbourne1f240762011-10-02 23:49:29 +00003371 if (FDecl && !FDecl->getBuiltinID() && !IsExecConfig)
Peter Collingbourne9aab1482011-07-29 00:24:42 +00003372 Diag(FDecl->getLocStart(), diag::note_callee_decl)
3373 << FDecl;
Ted Kremenek5862f0e2011-04-04 17:22:27 +00003374
Douglas Gregor88a35142008-12-22 05:46:06 +00003375 // This deletes the extra arguments.
Ted Kremenek8189cde2009-02-07 01:47:29 +00003376 Call->setNumArgs(Context, NumArgsInProto);
Fariborz Jahanian048f52a2009-11-24 18:29:37 +00003377 return true;
Douglas Gregor88a35142008-12-22 05:46:06 +00003378 }
Douglas Gregor88a35142008-12-22 05:46:06 +00003379 }
Chris Lattner5f9e2722011-07-23 10:55:15 +00003380 SmallVector<Expr *, 8> AllArgs;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00003381 VariadicCallType CallType =
Fariborz Jahanian4cd1c702009-11-24 19:27:49 +00003382 Proto->isVariadic() ? VariadicFunction : VariadicDoesNotApply;
3383 if (Fn->getType()->isBlockPointerType())
3384 CallType = VariadicBlock; // Block
3385 else if (isa<MemberExpr>(Fn))
3386 CallType = VariadicMethod;
Daniel Dunbar96a00142012-03-09 18:35:03 +00003387 Invalid = GatherArgumentsForCall(Call->getLocStart(), FDecl,
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00003388 Proto, 0, Args, NumArgs, AllArgs, CallType);
Fariborz Jahanian048f52a2009-11-24 18:29:37 +00003389 if (Invalid)
3390 return true;
3391 unsigned TotalNumArgs = AllArgs.size();
3392 for (unsigned i = 0; i < TotalNumArgs; ++i)
3393 Call->setArg(i, AllArgs[i]);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00003394
Fariborz Jahanian048f52a2009-11-24 18:29:37 +00003395 return false;
3396}
Mike Stumpeed9cac2009-02-19 03:04:26 +00003397
Fariborz Jahanian048f52a2009-11-24 18:29:37 +00003398bool Sema::GatherArgumentsForCall(SourceLocation CallLoc,
3399 FunctionDecl *FDecl,
3400 const FunctionProtoType *Proto,
3401 unsigned FirstProtoArg,
3402 Expr **Args, unsigned NumArgs,
Chris Lattner5f9e2722011-07-23 10:55:15 +00003403 SmallVector<Expr *, 8> &AllArgs,
Douglas Gregored878af2012-02-24 23:56:31 +00003404 VariadicCallType CallType,
3405 bool AllowExplicit) {
Fariborz Jahanian048f52a2009-11-24 18:29:37 +00003406 unsigned NumArgsInProto = Proto->getNumArgs();
3407 unsigned NumArgsToCheck = NumArgs;
3408 bool Invalid = false;
3409 if (NumArgs != NumArgsInProto)
3410 // Use default arguments for missing arguments
3411 NumArgsToCheck = NumArgsInProto;
3412 unsigned ArgIx = 0;
Douglas Gregor88a35142008-12-22 05:46:06 +00003413 // Continue to check argument types (even if we have too few/many args).
Fariborz Jahanian048f52a2009-11-24 18:29:37 +00003414 for (unsigned i = FirstProtoArg; i != NumArgsToCheck; i++) {
Douglas Gregor88a35142008-12-22 05:46:06 +00003415 QualType ProtoArgType = Proto->getArgType(i);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00003416
Douglas Gregor88a35142008-12-22 05:46:06 +00003417 Expr *Arg;
Peter Collingbourne013e5ce2011-10-19 00:16:45 +00003418 ParmVarDecl *Param;
Fariborz Jahanian048f52a2009-11-24 18:29:37 +00003419 if (ArgIx < NumArgs) {
3420 Arg = Args[ArgIx++];
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00003421
Daniel Dunbar96a00142012-03-09 18:35:03 +00003422 if (RequireCompleteType(Arg->getLocStart(),
Eli Friedmane7c6f7a2009-03-22 22:00:50 +00003423 ProtoArgType,
Anders Carlssonb7906612009-08-26 23:45:07 +00003424 PDiag(diag::err_call_incomplete_argument)
Fariborz Jahanian048f52a2009-11-24 18:29:37 +00003425 << Arg->getSourceRange()))
Eli Friedmane7c6f7a2009-03-22 22:00:50 +00003426 return true;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00003427
Douglas Gregora188ff22009-12-22 16:09:06 +00003428 // Pass the argument
Peter Collingbourne013e5ce2011-10-19 00:16:45 +00003429 Param = 0;
Douglas Gregora188ff22009-12-22 16:09:06 +00003430 if (FDecl && i < FDecl->getNumParams())
3431 Param = FDecl->getParamDecl(i);
Douglas Gregoraa037312009-12-22 07:24:36 +00003432
John McCall5acb0c92011-10-17 18:40:02 +00003433 // Strip the unbridged-cast placeholder expression off, if applicable.
3434 if (Arg->getType() == Context.ARCUnbridgedCastTy &&
3435 FDecl && FDecl->hasAttr<CFAuditedTransferAttr>() &&
3436 (!Param || !Param->hasAttr<CFConsumedAttr>()))
3437 Arg = stripARCUnbridgedCast(Arg);
3438
Douglas Gregora188ff22009-12-22 16:09:06 +00003439 InitializedEntity Entity =
Fariborz Jahanian745da3a2010-09-24 17:30:16 +00003440 Param? InitializedEntity::InitializeParameter(Context, Param)
John McCallf85e1932011-06-15 23:02:42 +00003441 : InitializedEntity::InitializeParameter(Context, ProtoArgType,
3442 Proto->isArgConsumed(i));
John McCall60d7b3a2010-08-24 06:29:42 +00003443 ExprResult ArgE = PerformCopyInitialization(Entity,
John McCallf6a16482010-12-04 03:47:34 +00003444 SourceLocation(),
Douglas Gregored878af2012-02-24 23:56:31 +00003445 Owned(Arg),
3446 /*TopLevelOfInitList=*/false,
3447 AllowExplicit);
Douglas Gregora188ff22009-12-22 16:09:06 +00003448 if (ArgE.isInvalid())
3449 return true;
3450
3451 Arg = ArgE.takeAs<Expr>();
Anders Carlsson5e300d12009-06-12 16:51:40 +00003452 } else {
Peter Collingbourne013e5ce2011-10-19 00:16:45 +00003453 Param = FDecl->getParamDecl(i);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00003454
John McCall60d7b3a2010-08-24 06:29:42 +00003455 ExprResult ArgExpr =
Fariborz Jahanian048f52a2009-11-24 18:29:37 +00003456 BuildCXXDefaultArgExpr(CallLoc, FDecl, Param);
Anders Carlsson56c5e332009-08-25 03:49:14 +00003457 if (ArgExpr.isInvalid())
3458 return true;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00003459
Anders Carlsson56c5e332009-08-25 03:49:14 +00003460 Arg = ArgExpr.takeAs<Expr>();
Anders Carlsson5e300d12009-06-12 16:51:40 +00003461 }
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00003462
3463 // Check for array bounds violations for each argument to the call. This
3464 // check only triggers warnings when the argument isn't a more complex Expr
3465 // with its own checking, such as a BinaryOperator.
3466 CheckArrayAccess(Arg);
3467
Peter Collingbourne013e5ce2011-10-19 00:16:45 +00003468 // Check for violations of C99 static array rules (C99 6.7.5.3p7).
3469 CheckStaticArrayArgument(CallLoc, Param, Arg);
3470
Fariborz Jahanian048f52a2009-11-24 18:29:37 +00003471 AllArgs.push_back(Arg);
Douglas Gregor88a35142008-12-22 05:46:06 +00003472 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00003473
Douglas Gregor88a35142008-12-22 05:46:06 +00003474 // If this is a variadic call, handle args passed through "...".
Fariborz Jahanian4cd1c702009-11-24 19:27:49 +00003475 if (CallType != VariadicDoesNotApply) {
John McCall755d8492011-04-12 00:42:48 +00003476
3477 // Assume that extern "C" functions with variadic arguments that
3478 // return __unknown_anytype aren't *really* variadic.
3479 if (Proto->getResultType() == Context.UnknownAnyTy &&
3480 FDecl && FDecl->isExternC()) {
3481 for (unsigned i = ArgIx; i != NumArgs; ++i) {
3482 ExprResult arg;
3483 if (isa<ExplicitCastExpr>(Args[i]->IgnoreParens()))
3484 arg = DefaultFunctionArrayLvalueConversion(Args[i]);
3485 else
3486 arg = DefaultVariadicArgumentPromotion(Args[i], CallType, FDecl);
3487 Invalid |= arg.isInvalid();
3488 AllArgs.push_back(arg.take());
3489 }
3490
3491 // Otherwise do argument promotion, (C99 6.5.2.2p7).
3492 } else {
3493 for (unsigned i = ArgIx; i != NumArgs; ++i) {
Richard Trieu67e29332011-08-02 04:35:43 +00003494 ExprResult Arg = DefaultVariadicArgumentPromotion(Args[i], CallType,
3495 FDecl);
John McCall755d8492011-04-12 00:42:48 +00003496 Invalid |= Arg.isInvalid();
3497 AllArgs.push_back(Arg.take());
3498 }
Douglas Gregor88a35142008-12-22 05:46:06 +00003499 }
Ted Kremenek615eb7c2011-09-26 23:36:13 +00003500
3501 // Check for array bounds violations.
3502 for (unsigned i = ArgIx; i != NumArgs; ++i)
3503 CheckArrayAccess(Args[i]);
Douglas Gregor88a35142008-12-22 05:46:06 +00003504 }
Douglas Gregor3fd56d72009-01-23 21:30:56 +00003505 return Invalid;
Douglas Gregor88a35142008-12-22 05:46:06 +00003506}
3507
Peter Collingbourne013e5ce2011-10-19 00:16:45 +00003508static void DiagnoseCalleeStaticArrayParam(Sema &S, ParmVarDecl *PVD) {
3509 TypeLoc TL = PVD->getTypeSourceInfo()->getTypeLoc();
3510 if (ArrayTypeLoc *ATL = dyn_cast<ArrayTypeLoc>(&TL))
3511 S.Diag(PVD->getLocation(), diag::note_callee_static_array)
3512 << ATL->getLocalSourceRange();
3513}
3514
3515/// CheckStaticArrayArgument - If the given argument corresponds to a static
3516/// array parameter, check that it is non-null, and that if it is formed by
3517/// array-to-pointer decay, the underlying array is sufficiently large.
3518///
3519/// C99 6.7.5.3p7: If the keyword static also appears within the [ and ] of the
3520/// array type derivation, then for each call to the function, the value of the
3521/// corresponding actual argument shall provide access to the first element of
3522/// an array with at least as many elements as specified by the size expression.
3523void
3524Sema::CheckStaticArrayArgument(SourceLocation CallLoc,
3525 ParmVarDecl *Param,
3526 const Expr *ArgExpr) {
3527 // Static array parameters are not supported in C++.
David Blaikie4e4d0842012-03-11 07:00:24 +00003528 if (!Param || getLangOpts().CPlusPlus)
Peter Collingbourne013e5ce2011-10-19 00:16:45 +00003529 return;
3530
3531 QualType OrigTy = Param->getOriginalType();
3532
3533 const ArrayType *AT = Context.getAsArrayType(OrigTy);
3534 if (!AT || AT->getSizeModifier() != ArrayType::Static)
3535 return;
3536
3537 if (ArgExpr->isNullPointerConstant(Context,
3538 Expr::NPC_NeverValueDependent)) {
3539 Diag(CallLoc, diag::warn_null_arg) << ArgExpr->getSourceRange();
3540 DiagnoseCalleeStaticArrayParam(*this, Param);
3541 return;
3542 }
3543
3544 const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT);
3545 if (!CAT)
3546 return;
3547
3548 const ConstantArrayType *ArgCAT =
3549 Context.getAsConstantArrayType(ArgExpr->IgnoreParenImpCasts()->getType());
3550 if (!ArgCAT)
3551 return;
3552
3553 if (ArgCAT->getSize().ult(CAT->getSize())) {
3554 Diag(CallLoc, diag::warn_static_array_too_small)
3555 << ArgExpr->getSourceRange()
3556 << (unsigned) ArgCAT->getSize().getZExtValue()
3557 << (unsigned) CAT->getSize().getZExtValue();
3558 DiagnoseCalleeStaticArrayParam(*this, Param);
3559 }
3560}
3561
John McCall755d8492011-04-12 00:42:48 +00003562/// Given a function expression of unknown-any type, try to rebuild it
3563/// to have a function type.
3564static ExprResult rebuildUnknownAnyFunction(Sema &S, Expr *fn);
3565
Steve Narofff69936d2007-09-16 03:34:24 +00003566/// ActOnCallExpr - Handle a call to Fn with the specified array of arguments.
Reid Spencer5f016e22007-07-11 17:01:13 +00003567/// This provides the location of the left/right parens and a list of comma
3568/// locations.
John McCall60d7b3a2010-08-24 06:29:42 +00003569ExprResult
John McCall9ae2f072010-08-23 23:25:46 +00003570Sema::ActOnCallExpr(Scope *S, Expr *Fn, SourceLocation LParenLoc,
Richard Trieuccd891a2011-09-09 01:45:06 +00003571 MultiExprArg ArgExprs, SourceLocation RParenLoc,
Peter Collingbourne1f240762011-10-02 23:49:29 +00003572 Expr *ExecConfig, bool IsExecConfig) {
Richard Trieuccd891a2011-09-09 01:45:06 +00003573 unsigned NumArgs = ArgExprs.size();
Nate Begeman2ef13e52009-08-10 23:49:36 +00003574
3575 // Since this might be a postfix expression, get rid of ParenListExprs.
John McCall60d7b3a2010-08-24 06:29:42 +00003576 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Fn);
John McCall9ae2f072010-08-23 23:25:46 +00003577 if (Result.isInvalid()) return ExprError();
3578 Fn = Result.take();
Mike Stump1eb44332009-09-09 15:08:12 +00003579
Richard Trieuccd891a2011-09-09 01:45:06 +00003580 Expr **Args = ArgExprs.release();
Mike Stump1eb44332009-09-09 15:08:12 +00003581
David Blaikie4e4d0842012-03-11 07:00:24 +00003582 if (getLangOpts().CPlusPlus) {
Douglas Gregora71d8192009-09-04 17:36:40 +00003583 // If this is a pseudo-destructor expression, build the call immediately.
3584 if (isa<CXXPseudoDestructorExpr>(Fn)) {
3585 if (NumArgs > 0) {
3586 // Pseudo-destructor calls should not have any arguments.
3587 Diag(Fn->getLocStart(), diag::err_pseudo_dtor_call_with_args)
Douglas Gregor849b2432010-03-31 17:46:05 +00003588 << FixItHint::CreateRemoval(
Douglas Gregora71d8192009-09-04 17:36:40 +00003589 SourceRange(Args[0]->getLocStart(),
3590 Args[NumArgs-1]->getLocEnd()));
Mike Stump1eb44332009-09-09 15:08:12 +00003591
Douglas Gregora71d8192009-09-04 17:36:40 +00003592 NumArgs = 0;
3593 }
Mike Stump1eb44332009-09-09 15:08:12 +00003594
Douglas Gregora71d8192009-09-04 17:36:40 +00003595 return Owned(new (Context) CallExpr(Context, Fn, 0, 0, Context.VoidTy,
John McCallf89e55a2010-11-18 06:31:45 +00003596 VK_RValue, RParenLoc));
Douglas Gregora71d8192009-09-04 17:36:40 +00003597 }
Mike Stump1eb44332009-09-09 15:08:12 +00003598
Douglas Gregor17330012009-02-04 15:01:18 +00003599 // Determine whether this is a dependent call inside a C++ template,
Mike Stumpeed9cac2009-02-19 03:04:26 +00003600 // in which case we won't do any semantic analysis now.
Mike Stump390b4cc2009-05-16 07:39:55 +00003601 // FIXME: Will need to cache the results of name lookup (including ADL) in
3602 // Fn.
Douglas Gregor17330012009-02-04 15:01:18 +00003603 bool Dependent = false;
3604 if (Fn->isTypeDependent())
3605 Dependent = true;
Ahmed Charles13a140c2012-02-25 11:00:22 +00003606 else if (Expr::hasAnyTypeDependentArguments(
3607 llvm::makeArrayRef(Args, NumArgs)))
Douglas Gregor17330012009-02-04 15:01:18 +00003608 Dependent = true;
3609
Peter Collingbournee08ce652011-02-09 21:07:24 +00003610 if (Dependent) {
3611 if (ExecConfig) {
3612 return Owned(new (Context) CUDAKernelCallExpr(
3613 Context, Fn, cast<CallExpr>(ExecConfig), Args, NumArgs,
3614 Context.DependentTy, VK_RValue, RParenLoc));
3615 } else {
3616 return Owned(new (Context) CallExpr(Context, Fn, Args, NumArgs,
3617 Context.DependentTy, VK_RValue,
3618 RParenLoc));
3619 }
3620 }
Douglas Gregor17330012009-02-04 15:01:18 +00003621
3622 // Determine whether this is a call to an object (C++ [over.call.object]).
3623 if (Fn->getType()->isRecordType())
3624 return Owned(BuildCallToObjectOfClassType(S, Fn, LParenLoc, Args, NumArgs,
Douglas Gregora1a04782010-09-09 16:33:13 +00003625 RParenLoc));
Douglas Gregor17330012009-02-04 15:01:18 +00003626
John McCall755d8492011-04-12 00:42:48 +00003627 if (Fn->getType() == Context.UnknownAnyTy) {
3628 ExprResult result = rebuildUnknownAnyFunction(*this, Fn);
3629 if (result.isInvalid()) return ExprError();
3630 Fn = result.take();
3631 }
3632
John McCall864c0412011-04-26 20:42:42 +00003633 if (Fn->getType() == Context.BoundMemberTy) {
John McCallaa81e162009-12-01 22:10:20 +00003634 return BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs,
Douglas Gregora1a04782010-09-09 16:33:13 +00003635 RParenLoc);
John McCall129e2df2009-11-30 22:42:35 +00003636 }
John McCall864c0412011-04-26 20:42:42 +00003637 }
John McCall129e2df2009-11-30 22:42:35 +00003638
John McCall864c0412011-04-26 20:42:42 +00003639 // Check for overloaded calls. This can happen even in C due to extensions.
3640 if (Fn->getType() == Context.OverloadTy) {
3641 OverloadExpr::FindResult find = OverloadExpr::find(Fn);
3642
Douglas Gregoree697e62011-10-13 18:10:35 +00003643 // We aren't supposed to apply this logic for if there's an '&' involved.
Douglas Gregor64a371f2011-10-13 18:26:27 +00003644 if (!find.HasFormOfMemberPointer) {
John McCall864c0412011-04-26 20:42:42 +00003645 OverloadExpr *ovl = find.Expression;
3646 if (isa<UnresolvedLookupExpr>(ovl)) {
3647 UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>(ovl);
3648 return BuildOverloadedCallExpr(S, Fn, ULE, LParenLoc, Args, NumArgs,
3649 RParenLoc, ExecConfig);
3650 } else {
John McCallaa81e162009-12-01 22:10:20 +00003651 return BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs,
Douglas Gregora1a04782010-09-09 16:33:13 +00003652 RParenLoc);
Anders Carlsson83ccfc32009-10-03 17:40:22 +00003653 }
3654 }
Douglas Gregor88a35142008-12-22 05:46:06 +00003655 }
3656
Douglas Gregorfa047642009-02-04 00:32:51 +00003657 // If we're directly calling a function, get the appropriate declaration.
Douglas Gregorf1d1ca52011-12-01 01:37:36 +00003658 if (Fn->getType() == Context.UnknownAnyTy) {
3659 ExprResult result = rebuildUnknownAnyFunction(*this, Fn);
3660 if (result.isInvalid()) return ExprError();
3661 Fn = result.take();
3662 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00003663
Eli Friedmanefa42f72009-12-26 03:35:45 +00003664 Expr *NakedFn = Fn->IgnoreParens();
Douglas Gregoref9b1492010-11-09 20:03:54 +00003665
John McCall3b4294e2009-12-16 12:17:52 +00003666 NamedDecl *NDecl = 0;
Douglas Gregord8f0ade2010-10-25 20:48:33 +00003667 if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(NakedFn))
3668 if (UnOp->getOpcode() == UO_AddrOf)
3669 NakedFn = UnOp->getSubExpr()->IgnoreParens();
3670
John McCall3b4294e2009-12-16 12:17:52 +00003671 if (isa<DeclRefExpr>(NakedFn))
3672 NDecl = cast<DeclRefExpr>(NakedFn)->getDecl();
John McCall864c0412011-04-26 20:42:42 +00003673 else if (isa<MemberExpr>(NakedFn))
3674 NDecl = cast<MemberExpr>(NakedFn)->getMemberDecl();
John McCall3b4294e2009-12-16 12:17:52 +00003675
Peter Collingbournee08ce652011-02-09 21:07:24 +00003676 return BuildResolvedCallExpr(Fn, NDecl, LParenLoc, Args, NumArgs, RParenLoc,
Peter Collingbourne1f240762011-10-02 23:49:29 +00003677 ExecConfig, IsExecConfig);
Peter Collingbournee08ce652011-02-09 21:07:24 +00003678}
3679
3680ExprResult
3681Sema::ActOnCUDAExecConfigExpr(Scope *S, SourceLocation LLLLoc,
Richard Trieuccd891a2011-09-09 01:45:06 +00003682 MultiExprArg ExecConfig, SourceLocation GGGLoc) {
Peter Collingbournee08ce652011-02-09 21:07:24 +00003683 FunctionDecl *ConfigDecl = Context.getcudaConfigureCallDecl();
3684 if (!ConfigDecl)
3685 return ExprError(Diag(LLLLoc, diag::err_undeclared_var_use)
3686 << "cudaConfigureCall");
3687 QualType ConfigQTy = ConfigDecl->getType();
3688
3689 DeclRefExpr *ConfigDR = new (Context) DeclRefExpr(
John McCallf4b88a42012-03-10 09:33:50 +00003690 ConfigDecl, false, ConfigQTy, VK_LValue, LLLLoc);
Eli Friedman5f2987c2012-02-02 03:46:19 +00003691 MarkFunctionReferenced(LLLLoc, ConfigDecl);
Peter Collingbournee08ce652011-02-09 21:07:24 +00003692
Peter Collingbourne1f240762011-10-02 23:49:29 +00003693 return ActOnCallExpr(S, ConfigDR, LLLLoc, ExecConfig, GGGLoc, 0,
3694 /*IsExecConfig=*/true);
John McCallaa81e162009-12-01 22:10:20 +00003695}
3696
Tanya Lattner61eee0c2011-06-04 00:47:47 +00003697/// ActOnAsTypeExpr - create a new asType (bitcast) from the arguments.
3698///
3699/// __builtin_astype( value, dst type )
3700///
Richard Trieuccd891a2011-09-09 01:45:06 +00003701ExprResult Sema::ActOnAsTypeExpr(Expr *E, ParsedType ParsedDestTy,
Tanya Lattner61eee0c2011-06-04 00:47:47 +00003702 SourceLocation BuiltinLoc,
3703 SourceLocation RParenLoc) {
3704 ExprValueKind VK = VK_RValue;
3705 ExprObjectKind OK = OK_Ordinary;
Richard Trieuccd891a2011-09-09 01:45:06 +00003706 QualType DstTy = GetTypeFromParser(ParsedDestTy);
3707 QualType SrcTy = E->getType();
Tanya Lattner61eee0c2011-06-04 00:47:47 +00003708 if (Context.getTypeSize(DstTy) != Context.getTypeSize(SrcTy))
3709 return ExprError(Diag(BuiltinLoc,
3710 diag::err_invalid_astype_of_different_size)
Peter Collingbourneaf9cddf2011-06-08 15:15:17 +00003711 << DstTy
3712 << SrcTy
Richard Trieuccd891a2011-09-09 01:45:06 +00003713 << E->getSourceRange());
3714 return Owned(new (Context) AsTypeExpr(E, DstTy, VK, OK, BuiltinLoc,
Richard Trieu67e29332011-08-02 04:35:43 +00003715 RParenLoc));
Tanya Lattner61eee0c2011-06-04 00:47:47 +00003716}
3717
John McCall3b4294e2009-12-16 12:17:52 +00003718/// BuildResolvedCallExpr - Build a call to a resolved expression,
3719/// i.e. an expression not of \p OverloadTy. The expression should
John McCallaa81e162009-12-01 22:10:20 +00003720/// unary-convert to an expression of function-pointer or
3721/// block-pointer type.
3722///
3723/// \param NDecl the declaration being called, if available
John McCall60d7b3a2010-08-24 06:29:42 +00003724ExprResult
John McCallaa81e162009-12-01 22:10:20 +00003725Sema::BuildResolvedCallExpr(Expr *Fn, NamedDecl *NDecl,
3726 SourceLocation LParenLoc,
3727 Expr **Args, unsigned NumArgs,
Peter Collingbournee08ce652011-02-09 21:07:24 +00003728 SourceLocation RParenLoc,
Peter Collingbourne1f240762011-10-02 23:49:29 +00003729 Expr *Config, bool IsExecConfig) {
John McCallaa81e162009-12-01 22:10:20 +00003730 FunctionDecl *FDecl = dyn_cast_or_null<FunctionDecl>(NDecl);
3731
Chris Lattner04421082008-04-08 04:40:51 +00003732 // Promote the function operand.
John Wiegley429bb272011-04-08 18:41:53 +00003733 ExprResult Result = UsualUnaryConversions(Fn);
3734 if (Result.isInvalid())
3735 return ExprError();
3736 Fn = Result.take();
Chris Lattner04421082008-04-08 04:40:51 +00003737
Chris Lattner925e60d2007-12-28 05:29:59 +00003738 // Make the call expr early, before semantic checks. This guarantees cleanup
3739 // of arguments and function on error.
Peter Collingbournee08ce652011-02-09 21:07:24 +00003740 CallExpr *TheCall;
3741 if (Config) {
3742 TheCall = new (Context) CUDAKernelCallExpr(Context, Fn,
3743 cast<CallExpr>(Config),
3744 Args, NumArgs,
3745 Context.BoolTy,
3746 VK_RValue,
3747 RParenLoc);
3748 } else {
3749 TheCall = new (Context) CallExpr(Context, Fn,
3750 Args, NumArgs,
3751 Context.BoolTy,
3752 VK_RValue,
3753 RParenLoc);
3754 }
Sebastian Redl0eb23302009-01-19 00:08:26 +00003755
John McCall8e10f3b2011-02-26 05:39:39 +00003756 unsigned BuiltinID = (FDecl ? FDecl->getBuiltinID() : 0);
3757
3758 // Bail out early if calling a builtin with custom typechecking.
3759 if (BuiltinID && Context.BuiltinInfo.hasCustomTypechecking(BuiltinID))
3760 return CheckBuiltinFunctionCall(BuiltinID, TheCall);
3761
John McCall1de4d4e2011-04-07 08:22:57 +00003762 retry:
Steve Naroffdd972f22008-09-05 22:11:13 +00003763 const FunctionType *FuncT;
John McCall8e10f3b2011-02-26 05:39:39 +00003764 if (const PointerType *PT = Fn->getType()->getAs<PointerType>()) {
Steve Naroffdd972f22008-09-05 22:11:13 +00003765 // C99 6.5.2.2p1 - "The expression that denotes the called function shall
3766 // have type pointer to function".
John McCall183700f2009-09-21 23:43:11 +00003767 FuncT = PT->getPointeeType()->getAs<FunctionType>();
John McCall8e10f3b2011-02-26 05:39:39 +00003768 if (FuncT == 0)
3769 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
3770 << Fn->getType() << Fn->getSourceRange());
3771 } else if (const BlockPointerType *BPT =
3772 Fn->getType()->getAs<BlockPointerType>()) {
3773 FuncT = BPT->getPointeeType()->castAs<FunctionType>();
3774 } else {
John McCall1de4d4e2011-04-07 08:22:57 +00003775 // Handle calls to expressions of unknown-any type.
3776 if (Fn->getType() == Context.UnknownAnyTy) {
John McCall755d8492011-04-12 00:42:48 +00003777 ExprResult rewrite = rebuildUnknownAnyFunction(*this, Fn);
John McCall1de4d4e2011-04-07 08:22:57 +00003778 if (rewrite.isInvalid()) return ExprError();
3779 Fn = rewrite.take();
John McCalla5fc4722011-04-09 22:50:59 +00003780 TheCall->setCallee(Fn);
John McCall1de4d4e2011-04-07 08:22:57 +00003781 goto retry;
3782 }
3783
Sebastian Redl0eb23302009-01-19 00:08:26 +00003784 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
3785 << Fn->getType() << Fn->getSourceRange());
John McCall8e10f3b2011-02-26 05:39:39 +00003786 }
Sebastian Redl0eb23302009-01-19 00:08:26 +00003787
David Blaikie4e4d0842012-03-11 07:00:24 +00003788 if (getLangOpts().CUDA) {
Peter Collingbourne0423fc62011-02-23 01:53:29 +00003789 if (Config) {
3790 // CUDA: Kernel calls must be to global functions
3791 if (FDecl && !FDecl->hasAttr<CUDAGlobalAttr>())
3792 return ExprError(Diag(LParenLoc,diag::err_kern_call_not_global_function)
3793 << FDecl->getName() << Fn->getSourceRange());
3794
3795 // CUDA: Kernel function must have 'void' return type
3796 if (!FuncT->getResultType()->isVoidType())
3797 return ExprError(Diag(LParenLoc, diag::err_kern_type_not_void_return)
3798 << Fn->getType() << Fn->getSourceRange());
Peter Collingbourne8591a7f2011-10-02 23:49:15 +00003799 } else {
3800 // CUDA: Calls to global functions must be configured
3801 if (FDecl && FDecl->hasAttr<CUDAGlobalAttr>())
3802 return ExprError(Diag(LParenLoc, diag::err_global_call_not_config)
3803 << FDecl->getName() << Fn->getSourceRange());
Peter Collingbourne0423fc62011-02-23 01:53:29 +00003804 }
3805 }
3806
Eli Friedmane7c6f7a2009-03-22 22:00:50 +00003807 // Check for a valid return type
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00003808 if (CheckCallReturnType(FuncT->getResultType(),
Daniel Dunbar96a00142012-03-09 18:35:03 +00003809 Fn->getLocStart(), TheCall,
Anders Carlsson8c8d9192009-10-09 23:51:55 +00003810 FDecl))
Eli Friedmane7c6f7a2009-03-22 22:00:50 +00003811 return ExprError();
3812
Chris Lattner925e60d2007-12-28 05:29:59 +00003813 // We know the result type of the call, set it.
Douglas Gregor5291c3c2010-07-13 08:18:22 +00003814 TheCall->setType(FuncT->getCallResultType(Context));
John McCallf89e55a2010-11-18 06:31:45 +00003815 TheCall->setValueKind(Expr::getValueKindForType(FuncT->getResultType()));
Sebastian Redl0eb23302009-01-19 00:08:26 +00003816
Douglas Gregor72564e72009-02-26 23:50:07 +00003817 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT)) {
John McCall9ae2f072010-08-23 23:25:46 +00003818 if (ConvertArgumentsForCall(TheCall, Fn, FDecl, Proto, Args, NumArgs,
Peter Collingbourne1f240762011-10-02 23:49:29 +00003819 RParenLoc, IsExecConfig))
Sebastian Redl0eb23302009-01-19 00:08:26 +00003820 return ExprError();
Chris Lattner925e60d2007-12-28 05:29:59 +00003821 } else {
Douglas Gregor72564e72009-02-26 23:50:07 +00003822 assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!");
Sebastian Redl0eb23302009-01-19 00:08:26 +00003823
Douglas Gregor74734d52009-04-02 15:37:10 +00003824 if (FDecl) {
3825 // Check if we have too few/too many template arguments, based
3826 // on our knowledge of the function definition.
3827 const FunctionDecl *Def = 0;
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00003828 if (FDecl->hasBody(Def) && NumArgs != Def->param_size()) {
Douglas Gregor46542412010-10-25 20:39:23 +00003829 const FunctionProtoType *Proto
3830 = Def->getType()->getAs<FunctionProtoType>();
3831 if (!Proto || !(Proto->isVariadic() && NumArgs >= Def->param_size()))
Eli Friedmanbc4e29f2009-06-01 09:24:59 +00003832 Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments)
3833 << (NumArgs > Def->param_size()) << FDecl << Fn->getSourceRange();
Eli Friedmanbc4e29f2009-06-01 09:24:59 +00003834 }
Douglas Gregor46542412010-10-25 20:39:23 +00003835
3836 // If the function we're calling isn't a function prototype, but we have
3837 // a function prototype from a prior declaratiom, use that prototype.
3838 if (!FDecl->hasPrototype())
3839 Proto = FDecl->getType()->getAs<FunctionProtoType>();
Douglas Gregor74734d52009-04-02 15:37:10 +00003840 }
3841
Steve Naroffb291ab62007-08-28 23:30:39 +00003842 // Promote the arguments (C99 6.5.2.2p6).
Chris Lattner925e60d2007-12-28 05:29:59 +00003843 for (unsigned i = 0; i != NumArgs; i++) {
3844 Expr *Arg = Args[i];
Douglas Gregor46542412010-10-25 20:39:23 +00003845
3846 if (Proto && i < Proto->getNumArgs()) {
Douglas Gregor46542412010-10-25 20:39:23 +00003847 InitializedEntity Entity
3848 = InitializedEntity::InitializeParameter(Context,
John McCallf85e1932011-06-15 23:02:42 +00003849 Proto->getArgType(i),
3850 Proto->isArgConsumed(i));
Douglas Gregor46542412010-10-25 20:39:23 +00003851 ExprResult ArgE = PerformCopyInitialization(Entity,
3852 SourceLocation(),
3853 Owned(Arg));
3854 if (ArgE.isInvalid())
3855 return true;
3856
3857 Arg = ArgE.takeAs<Expr>();
3858
3859 } else {
John Wiegley429bb272011-04-08 18:41:53 +00003860 ExprResult ArgE = DefaultArgumentPromotion(Arg);
3861
3862 if (ArgE.isInvalid())
3863 return true;
3864
3865 Arg = ArgE.takeAs<Expr>();
Douglas Gregor46542412010-10-25 20:39:23 +00003866 }
3867
Daniel Dunbar96a00142012-03-09 18:35:03 +00003868 if (RequireCompleteType(Arg->getLocStart(),
Douglas Gregor0700bbf2010-10-26 05:45:40 +00003869 Arg->getType(),
3870 PDiag(diag::err_call_incomplete_argument)
3871 << Arg->getSourceRange()))
3872 return ExprError();
3873
Chris Lattner925e60d2007-12-28 05:29:59 +00003874 TheCall->setArg(i, Arg);
Steve Naroffb291ab62007-08-28 23:30:39 +00003875 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003876 }
Chris Lattner925e60d2007-12-28 05:29:59 +00003877
Douglas Gregor88a35142008-12-22 05:46:06 +00003878 if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl))
3879 if (!Method->isStatic())
Sebastian Redl0eb23302009-01-19 00:08:26 +00003880 return ExprError(Diag(LParenLoc, diag::err_member_call_without_object)
3881 << Fn->getSourceRange());
Douglas Gregor88a35142008-12-22 05:46:06 +00003882
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00003883 // Check for sentinels
3884 if (NDecl)
3885 DiagnoseSentinelCalls(NDecl, LParenLoc, Args, NumArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00003886
Chris Lattner59907c42007-08-10 20:18:51 +00003887 // Do special checking on direct calls to functions.
Anders Carlssond406bf02009-08-16 01:56:34 +00003888 if (FDecl) {
John McCall9ae2f072010-08-23 23:25:46 +00003889 if (CheckFunctionCall(FDecl, TheCall))
Anders Carlssond406bf02009-08-16 01:56:34 +00003890 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +00003891
John McCall8e10f3b2011-02-26 05:39:39 +00003892 if (BuiltinID)
Fariborz Jahanian67aba812010-11-30 17:35:24 +00003893 return CheckBuiltinFunctionCall(BuiltinID, TheCall);
Anders Carlssond406bf02009-08-16 01:56:34 +00003894 } else if (NDecl) {
John McCall9ae2f072010-08-23 23:25:46 +00003895 if (CheckBlockCall(NDecl, TheCall))
Anders Carlssond406bf02009-08-16 01:56:34 +00003896 return ExprError();
3897 }
Chris Lattner59907c42007-08-10 20:18:51 +00003898
John McCall9ae2f072010-08-23 23:25:46 +00003899 return MaybeBindToTemporary(TheCall);
Reid Spencer5f016e22007-07-11 17:01:13 +00003900}
3901
John McCall60d7b3a2010-08-24 06:29:42 +00003902ExprResult
John McCallb3d87482010-08-24 05:47:05 +00003903Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, ParsedType Ty,
John McCall9ae2f072010-08-23 23:25:46 +00003904 SourceLocation RParenLoc, Expr *InitExpr) {
Steve Narofff69936d2007-09-16 03:34:24 +00003905 assert((Ty != 0) && "ActOnCompoundLiteral(): missing type");
Steve Naroffaff1edd2007-07-19 21:32:11 +00003906 // FIXME: put back this assert when initializers are worked out.
Steve Narofff69936d2007-09-16 03:34:24 +00003907 //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression");
John McCall42f56b52010-01-18 19:35:47 +00003908
3909 TypeSourceInfo *TInfo;
3910 QualType literalType = GetTypeFromParser(Ty, &TInfo);
3911 if (!TInfo)
3912 TInfo = Context.getTrivialTypeSourceInfo(literalType);
3913
John McCall9ae2f072010-08-23 23:25:46 +00003914 return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, InitExpr);
John McCall42f56b52010-01-18 19:35:47 +00003915}
3916
John McCall60d7b3a2010-08-24 06:29:42 +00003917ExprResult
John McCall42f56b52010-01-18 19:35:47 +00003918Sema::BuildCompoundLiteralExpr(SourceLocation LParenLoc, TypeSourceInfo *TInfo,
Richard Trieuccd891a2011-09-09 01:45:06 +00003919 SourceLocation RParenLoc, Expr *LiteralExpr) {
John McCall42f56b52010-01-18 19:35:47 +00003920 QualType literalType = TInfo->getType();
Anders Carlssond35c8322007-12-05 07:24:19 +00003921
Eli Friedman6223c222008-05-20 05:22:08 +00003922 if (literalType->isArrayType()) {
Argyrios Kyrtzidise6fe9a22010-11-08 19:14:19 +00003923 if (RequireCompleteType(LParenLoc, Context.getBaseElementType(literalType),
3924 PDiag(diag::err_illegal_decl_array_incomplete_type)
3925 << SourceRange(LParenLoc,
Richard Trieuccd891a2011-09-09 01:45:06 +00003926 LiteralExpr->getSourceRange().getEnd())))
Argyrios Kyrtzidise6fe9a22010-11-08 19:14:19 +00003927 return ExprError();
Chris Lattnerc63a1f22008-08-04 07:31:14 +00003928 if (literalType->isVariableArrayType())
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003929 return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init)
Richard Trieuccd891a2011-09-09 01:45:06 +00003930 << SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd()));
Douglas Gregor690dc7f2009-05-21 23:48:18 +00003931 } else if (!literalType->isDependentType() &&
3932 RequireCompleteType(LParenLoc, literalType,
Anders Carlssonb7906612009-08-26 23:45:07 +00003933 PDiag(diag::err_typecheck_decl_incomplete_type)
Mike Stump1eb44332009-09-09 15:08:12 +00003934 << SourceRange(LParenLoc,
Richard Trieuccd891a2011-09-09 01:45:06 +00003935 LiteralExpr->getSourceRange().getEnd())))
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003936 return ExprError();
Eli Friedman6223c222008-05-20 05:22:08 +00003937
Douglas Gregor99a2e602009-12-16 01:38:02 +00003938 InitializedEntity Entity
Douglas Gregord6542d82009-12-22 15:35:07 +00003939 = InitializedEntity::InitializeTemporary(literalType);
Douglas Gregor99a2e602009-12-16 01:38:02 +00003940 InitializationKind Kind
John McCallf85e1932011-06-15 23:02:42 +00003941 = InitializationKind::CreateCStyleCast(LParenLoc,
Sebastian Redl3a45c0e2012-02-12 16:37:36 +00003942 SourceRange(LParenLoc, RParenLoc),
3943 /*InitList=*/true);
Richard Trieuccd891a2011-09-09 01:45:06 +00003944 InitializationSequence InitSeq(*this, Entity, Kind, &LiteralExpr, 1);
John McCall60d7b3a2010-08-24 06:29:42 +00003945 ExprResult Result = InitSeq.Perform(*this, Entity, Kind,
Richard Trieuccd891a2011-09-09 01:45:06 +00003946 MultiExprArg(*this, &LiteralExpr, 1),
Eli Friedman08544622009-12-22 02:35:53 +00003947 &literalType);
3948 if (Result.isInvalid())
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003949 return ExprError();
Richard Trieuccd891a2011-09-09 01:45:06 +00003950 LiteralExpr = Result.get();
Steve Naroffe9b12192008-01-14 18:19:28 +00003951
Chris Lattner371f2582008-12-04 23:50:19 +00003952 bool isFileScope = getCurFunctionOrMethodDecl() == 0;
Steve Naroffe9b12192008-01-14 18:19:28 +00003953 if (isFileScope) { // 6.5.2.5p3
Richard Trieuccd891a2011-09-09 01:45:06 +00003954 if (CheckForConstantInitializer(LiteralExpr, literalType))
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003955 return ExprError();
Steve Naroffd0091aa2008-01-10 22:15:12 +00003956 }
Eli Friedman08544622009-12-22 02:35:53 +00003957
John McCallf89e55a2010-11-18 06:31:45 +00003958 // In C, compound literals are l-values for some reason.
David Blaikie4e4d0842012-03-11 07:00:24 +00003959 ExprValueKind VK = getLangOpts().CPlusPlus ? VK_RValue : VK_LValue;
John McCallf89e55a2010-11-18 06:31:45 +00003960
Douglas Gregor751ec9b2011-06-17 04:59:12 +00003961 return MaybeBindToTemporary(
3962 new (Context) CompoundLiteralExpr(LParenLoc, TInfo, literalType,
Richard Trieuccd891a2011-09-09 01:45:06 +00003963 VK, LiteralExpr, isFileScope));
Steve Naroff4aa88f82007-07-19 01:06:55 +00003964}
3965
John McCall60d7b3a2010-08-24 06:29:42 +00003966ExprResult
Richard Trieuccd891a2011-09-09 01:45:06 +00003967Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg InitArgList,
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003968 SourceLocation RBraceLoc) {
Richard Trieuccd891a2011-09-09 01:45:06 +00003969 unsigned NumInit = InitArgList.size();
3970 Expr **InitList = InitArgList.release();
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00003971
John McCall3c3b7f92011-10-25 17:37:35 +00003972 // Immediately handle non-overload placeholders. Overloads can be
3973 // resolved contextually, but everything else here can't.
3974 for (unsigned I = 0; I != NumInit; ++I) {
John McCall32509f12011-11-15 01:35:18 +00003975 if (InitList[I]->getType()->isNonOverloadPlaceholderType()) {
John McCall3c3b7f92011-10-25 17:37:35 +00003976 ExprResult result = CheckPlaceholderExpr(InitList[I]);
3977
3978 // Ignore failures; dropping the entire initializer list because
3979 // of one failure would be terrible for indexing/etc.
3980 if (result.isInvalid()) continue;
3981
3982 InitList[I] = result.take();
3983 }
3984 }
3985
Steve Naroff08d92e42007-09-15 18:49:24 +00003986 // Semantic analysis for initializers is done by ActOnDeclarator() and
Mike Stumpeed9cac2009-02-19 03:04:26 +00003987 // CheckInitializer() - it requires knowledge of the object being intialized.
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003988
Ted Kremenek709210f2010-04-13 23:39:13 +00003989 InitListExpr *E = new (Context) InitListExpr(Context, LBraceLoc, InitList,
3990 NumInit, RBraceLoc);
Chris Lattnerf0467b32008-04-02 04:24:33 +00003991 E->setType(Context.VoidTy); // FIXME: just a place holder for now.
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003992 return Owned(E);
Steve Naroff4aa88f82007-07-19 01:06:55 +00003993}
3994
John McCalldc05b112011-09-10 01:16:55 +00003995/// Do an explicit extend of the given block pointer if we're in ARC.
3996static void maybeExtendBlockObject(Sema &S, ExprResult &E) {
3997 assert(E.get()->getType()->isBlockPointerType());
3998 assert(E.get()->isRValue());
3999
4000 // Only do this in an r-value context.
David Blaikie4e4d0842012-03-11 07:00:24 +00004001 if (!S.getLangOpts().ObjCAutoRefCount) return;
John McCalldc05b112011-09-10 01:16:55 +00004002
4003 E = ImplicitCastExpr::Create(S.Context, E.get()->getType(),
John McCall33e56f32011-09-10 06:18:15 +00004004 CK_ARCExtendBlockObject, E.get(),
John McCalldc05b112011-09-10 01:16:55 +00004005 /*base path*/ 0, VK_RValue);
4006 S.ExprNeedsCleanups = true;
4007}
4008
4009/// Prepare a conversion of the given expression to an ObjC object
4010/// pointer type.
4011CastKind Sema::PrepareCastToObjCObjectPointer(ExprResult &E) {
4012 QualType type = E.get()->getType();
4013 if (type->isObjCObjectPointerType()) {
4014 return CK_BitCast;
4015 } else if (type->isBlockPointerType()) {
4016 maybeExtendBlockObject(*this, E);
4017 return CK_BlockPointerToObjCPointerCast;
4018 } else {
4019 assert(type->isPointerType());
4020 return CK_CPointerToObjCPointerCast;
4021 }
4022}
4023
John McCallf3ea8cf2010-11-14 08:17:51 +00004024/// Prepares for a scalar cast, performing all the necessary stages
4025/// except the final cast and returning the kind required.
John McCalla180f042011-10-06 23:25:11 +00004026CastKind Sema::PrepareScalarCast(ExprResult &Src, QualType DestTy) {
John McCallf3ea8cf2010-11-14 08:17:51 +00004027 // Both Src and Dest are scalar types, i.e. arithmetic or pointer.
4028 // Also, callers should have filtered out the invalid cases with
4029 // pointers. Everything else should be possible.
4030
John Wiegley429bb272011-04-08 18:41:53 +00004031 QualType SrcTy = Src.get()->getType();
David Chisnall7a7ee302012-01-16 17:27:18 +00004032 if (const AtomicType *SrcAtomicTy = SrcTy->getAs<AtomicType>())
4033 SrcTy = SrcAtomicTy->getValueType();
4034 if (const AtomicType *DestAtomicTy = DestTy->getAs<AtomicType>())
4035 DestTy = DestAtomicTy->getValueType();
4036
John McCalla180f042011-10-06 23:25:11 +00004037 if (Context.hasSameUnqualifiedType(SrcTy, DestTy))
John McCall2de56d12010-08-25 11:45:40 +00004038 return CK_NoOp;
Anders Carlsson82debc72009-10-18 18:12:03 +00004039
John McCall1d9b3b22011-09-09 05:25:32 +00004040 switch (Type::ScalarTypeKind SrcKind = SrcTy->getScalarTypeKind()) {
John McCalldaa8e4e2010-11-15 09:13:47 +00004041 case Type::STK_MemberPointer:
4042 llvm_unreachable("member pointer type in C");
Abramo Bagnarabb03f5d2011-01-04 09:50:03 +00004043
John McCall1d9b3b22011-09-09 05:25:32 +00004044 case Type::STK_CPointer:
4045 case Type::STK_BlockPointer:
4046 case Type::STK_ObjCObjectPointer:
John McCalldaa8e4e2010-11-15 09:13:47 +00004047 switch (DestTy->getScalarTypeKind()) {
John McCall1d9b3b22011-09-09 05:25:32 +00004048 case Type::STK_CPointer:
4049 return CK_BitCast;
4050 case Type::STK_BlockPointer:
4051 return (SrcKind == Type::STK_BlockPointer
4052 ? CK_BitCast : CK_AnyPointerToBlockPointerCast);
4053 case Type::STK_ObjCObjectPointer:
4054 if (SrcKind == Type::STK_ObjCObjectPointer)
4055 return CK_BitCast;
David Blaikie7530c032012-01-17 06:56:22 +00004056 if (SrcKind == Type::STK_CPointer)
John McCall1d9b3b22011-09-09 05:25:32 +00004057 return CK_CPointerToObjCPointerCast;
David Blaikie7530c032012-01-17 06:56:22 +00004058 maybeExtendBlockObject(*this, Src);
4059 return CK_BlockPointerToObjCPointerCast;
John McCalldaa8e4e2010-11-15 09:13:47 +00004060 case Type::STK_Bool:
4061 return CK_PointerToBoolean;
4062 case Type::STK_Integral:
4063 return CK_PointerToIntegral;
4064 case Type::STK_Floating:
4065 case Type::STK_FloatingComplex:
4066 case Type::STK_IntegralComplex:
4067 case Type::STK_MemberPointer:
4068 llvm_unreachable("illegal cast from pointer");
4069 }
David Blaikie7530c032012-01-17 06:56:22 +00004070 llvm_unreachable("Should have returned before this");
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00004071
John McCalldaa8e4e2010-11-15 09:13:47 +00004072 case Type::STK_Bool: // casting from bool is like casting from an integer
4073 case Type::STK_Integral:
4074 switch (DestTy->getScalarTypeKind()) {
John McCall1d9b3b22011-09-09 05:25:32 +00004075 case Type::STK_CPointer:
4076 case Type::STK_ObjCObjectPointer:
4077 case Type::STK_BlockPointer:
John McCalla180f042011-10-06 23:25:11 +00004078 if (Src.get()->isNullPointerConstant(Context,
Richard Trieu67e29332011-08-02 04:35:43 +00004079 Expr::NPC_ValueDependentIsNull))
John McCall404cd162010-11-13 01:35:44 +00004080 return CK_NullToPointer;
John McCall2de56d12010-08-25 11:45:40 +00004081 return CK_IntegralToPointer;
John McCalldaa8e4e2010-11-15 09:13:47 +00004082 case Type::STK_Bool:
4083 return CK_IntegralToBoolean;
4084 case Type::STK_Integral:
John McCallf3ea8cf2010-11-14 08:17:51 +00004085 return CK_IntegralCast;
John McCalldaa8e4e2010-11-15 09:13:47 +00004086 case Type::STK_Floating:
John McCall2de56d12010-08-25 11:45:40 +00004087 return CK_IntegralToFloating;
John McCalldaa8e4e2010-11-15 09:13:47 +00004088 case Type::STK_IntegralComplex:
John McCalla180f042011-10-06 23:25:11 +00004089 Src = ImpCastExprToType(Src.take(),
4090 DestTy->castAs<ComplexType>()->getElementType(),
4091 CK_IntegralCast);
John McCallf3ea8cf2010-11-14 08:17:51 +00004092 return CK_IntegralRealToComplex;
John McCalldaa8e4e2010-11-15 09:13:47 +00004093 case Type::STK_FloatingComplex:
John McCalla180f042011-10-06 23:25:11 +00004094 Src = ImpCastExprToType(Src.take(),
4095 DestTy->castAs<ComplexType>()->getElementType(),
4096 CK_IntegralToFloating);
John McCallf3ea8cf2010-11-14 08:17:51 +00004097 return CK_FloatingRealToComplex;
John McCalldaa8e4e2010-11-15 09:13:47 +00004098 case Type::STK_MemberPointer:
4099 llvm_unreachable("member pointer type in C");
John McCallf3ea8cf2010-11-14 08:17:51 +00004100 }
David Blaikie7530c032012-01-17 06:56:22 +00004101 llvm_unreachable("Should have returned before this");
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00004102
John McCalldaa8e4e2010-11-15 09:13:47 +00004103 case Type::STK_Floating:
4104 switch (DestTy->getScalarTypeKind()) {
4105 case Type::STK_Floating:
John McCall2de56d12010-08-25 11:45:40 +00004106 return CK_FloatingCast;
John McCalldaa8e4e2010-11-15 09:13:47 +00004107 case Type::STK_Bool:
4108 return CK_FloatingToBoolean;
4109 case Type::STK_Integral:
John McCall2de56d12010-08-25 11:45:40 +00004110 return CK_FloatingToIntegral;
John McCalldaa8e4e2010-11-15 09:13:47 +00004111 case Type::STK_FloatingComplex:
John McCalla180f042011-10-06 23:25:11 +00004112 Src = ImpCastExprToType(Src.take(),
4113 DestTy->castAs<ComplexType>()->getElementType(),
4114 CK_FloatingCast);
John McCallf3ea8cf2010-11-14 08:17:51 +00004115 return CK_FloatingRealToComplex;
John McCalldaa8e4e2010-11-15 09:13:47 +00004116 case Type::STK_IntegralComplex:
John McCalla180f042011-10-06 23:25:11 +00004117 Src = ImpCastExprToType(Src.take(),
4118 DestTy->castAs<ComplexType>()->getElementType(),
4119 CK_FloatingToIntegral);
John McCallf3ea8cf2010-11-14 08:17:51 +00004120 return CK_IntegralRealToComplex;
John McCall1d9b3b22011-09-09 05:25:32 +00004121 case Type::STK_CPointer:
4122 case Type::STK_ObjCObjectPointer:
4123 case Type::STK_BlockPointer:
John McCalldaa8e4e2010-11-15 09:13:47 +00004124 llvm_unreachable("valid float->pointer cast?");
4125 case Type::STK_MemberPointer:
4126 llvm_unreachable("member pointer type in C");
John McCallf3ea8cf2010-11-14 08:17:51 +00004127 }
David Blaikie7530c032012-01-17 06:56:22 +00004128 llvm_unreachable("Should have returned before this");
John McCallf3ea8cf2010-11-14 08:17:51 +00004129
John McCalldaa8e4e2010-11-15 09:13:47 +00004130 case Type::STK_FloatingComplex:
4131 switch (DestTy->getScalarTypeKind()) {
4132 case Type::STK_FloatingComplex:
John McCallf3ea8cf2010-11-14 08:17:51 +00004133 return CK_FloatingComplexCast;
John McCalldaa8e4e2010-11-15 09:13:47 +00004134 case Type::STK_IntegralComplex:
John McCallf3ea8cf2010-11-14 08:17:51 +00004135 return CK_FloatingComplexToIntegralComplex;
John McCall8786da72010-12-14 17:51:41 +00004136 case Type::STK_Floating: {
John McCalla180f042011-10-06 23:25:11 +00004137 QualType ET = SrcTy->castAs<ComplexType>()->getElementType();
4138 if (Context.hasSameType(ET, DestTy))
John McCall8786da72010-12-14 17:51:41 +00004139 return CK_FloatingComplexToReal;
John McCalla180f042011-10-06 23:25:11 +00004140 Src = ImpCastExprToType(Src.take(), ET, CK_FloatingComplexToReal);
John McCall8786da72010-12-14 17:51:41 +00004141 return CK_FloatingCast;
4142 }
John McCalldaa8e4e2010-11-15 09:13:47 +00004143 case Type::STK_Bool:
John McCallf3ea8cf2010-11-14 08:17:51 +00004144 return CK_FloatingComplexToBoolean;
John McCalldaa8e4e2010-11-15 09:13:47 +00004145 case Type::STK_Integral:
John McCalla180f042011-10-06 23:25:11 +00004146 Src = ImpCastExprToType(Src.take(),
4147 SrcTy->castAs<ComplexType>()->getElementType(),
4148 CK_FloatingComplexToReal);
John McCallf3ea8cf2010-11-14 08:17:51 +00004149 return CK_FloatingToIntegral;
John McCall1d9b3b22011-09-09 05:25:32 +00004150 case Type::STK_CPointer:
4151 case Type::STK_ObjCObjectPointer:
4152 case Type::STK_BlockPointer:
John McCalldaa8e4e2010-11-15 09:13:47 +00004153 llvm_unreachable("valid complex float->pointer cast?");
4154 case Type::STK_MemberPointer:
4155 llvm_unreachable("member pointer type in C");
John McCallf3ea8cf2010-11-14 08:17:51 +00004156 }
David Blaikie7530c032012-01-17 06:56:22 +00004157 llvm_unreachable("Should have returned before this");
John McCallf3ea8cf2010-11-14 08:17:51 +00004158
John McCalldaa8e4e2010-11-15 09:13:47 +00004159 case Type::STK_IntegralComplex:
4160 switch (DestTy->getScalarTypeKind()) {
4161 case Type::STK_FloatingComplex:
John McCallf3ea8cf2010-11-14 08:17:51 +00004162 return CK_IntegralComplexToFloatingComplex;
John McCalldaa8e4e2010-11-15 09:13:47 +00004163 case Type::STK_IntegralComplex:
John McCallf3ea8cf2010-11-14 08:17:51 +00004164 return CK_IntegralComplexCast;
John McCall8786da72010-12-14 17:51:41 +00004165 case Type::STK_Integral: {
John McCalla180f042011-10-06 23:25:11 +00004166 QualType ET = SrcTy->castAs<ComplexType>()->getElementType();
4167 if (Context.hasSameType(ET, DestTy))
John McCall8786da72010-12-14 17:51:41 +00004168 return CK_IntegralComplexToReal;
John McCalla180f042011-10-06 23:25:11 +00004169 Src = ImpCastExprToType(Src.take(), ET, CK_IntegralComplexToReal);
John McCall8786da72010-12-14 17:51:41 +00004170 return CK_IntegralCast;
4171 }
John McCalldaa8e4e2010-11-15 09:13:47 +00004172 case Type::STK_Bool:
John McCallf3ea8cf2010-11-14 08:17:51 +00004173 return CK_IntegralComplexToBoolean;
John McCalldaa8e4e2010-11-15 09:13:47 +00004174 case Type::STK_Floating:
John McCalla180f042011-10-06 23:25:11 +00004175 Src = ImpCastExprToType(Src.take(),
4176 SrcTy->castAs<ComplexType>()->getElementType(),
4177 CK_IntegralComplexToReal);
John McCallf3ea8cf2010-11-14 08:17:51 +00004178 return CK_IntegralToFloating;
John McCall1d9b3b22011-09-09 05:25:32 +00004179 case Type::STK_CPointer:
4180 case Type::STK_ObjCObjectPointer:
4181 case Type::STK_BlockPointer:
John McCalldaa8e4e2010-11-15 09:13:47 +00004182 llvm_unreachable("valid complex int->pointer cast?");
4183 case Type::STK_MemberPointer:
4184 llvm_unreachable("member pointer type in C");
John McCallf3ea8cf2010-11-14 08:17:51 +00004185 }
David Blaikie7530c032012-01-17 06:56:22 +00004186 llvm_unreachable("Should have returned before this");
Anders Carlsson82debc72009-10-18 18:12:03 +00004187 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00004188
John McCallf3ea8cf2010-11-14 08:17:51 +00004189 llvm_unreachable("Unhandled scalar cast");
Anders Carlsson82debc72009-10-18 18:12:03 +00004190}
4191
Anders Carlssonc3516322009-10-16 02:48:28 +00004192bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty,
John McCall2de56d12010-08-25 11:45:40 +00004193 CastKind &Kind) {
Anders Carlssona64db8f2007-11-27 05:51:55 +00004194 assert(VectorTy->isVectorType() && "Not a vector type!");
Mike Stumpeed9cac2009-02-19 03:04:26 +00004195
Anders Carlssona64db8f2007-11-27 05:51:55 +00004196 if (Ty->isVectorType() || Ty->isIntegerType()) {
Chris Lattner98be4942008-03-05 18:54:05 +00004197 if (Context.getTypeSize(VectorTy) != Context.getTypeSize(Ty))
Anders Carlssona64db8f2007-11-27 05:51:55 +00004198 return Diag(R.getBegin(),
Mike Stumpeed9cac2009-02-19 03:04:26 +00004199 Ty->isVectorType() ?
Anders Carlssona64db8f2007-11-27 05:51:55 +00004200 diag::err_invalid_conversion_between_vectors :
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004201 diag::err_invalid_conversion_between_vector_and_integer)
Chris Lattnerd1625842008-11-24 06:25:27 +00004202 << VectorTy << Ty << R;
Anders Carlssona64db8f2007-11-27 05:51:55 +00004203 } else
4204 return Diag(R.getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004205 diag::err_invalid_conversion_between_vector_and_scalar)
Chris Lattnerd1625842008-11-24 06:25:27 +00004206 << VectorTy << Ty << R;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004207
John McCall2de56d12010-08-25 11:45:40 +00004208 Kind = CK_BitCast;
Anders Carlssona64db8f2007-11-27 05:51:55 +00004209 return false;
4210}
4211
John Wiegley429bb272011-04-08 18:41:53 +00004212ExprResult Sema::CheckExtVectorCast(SourceRange R, QualType DestTy,
4213 Expr *CastExpr, CastKind &Kind) {
Nate Begeman58d29a42009-06-26 00:50:28 +00004214 assert(DestTy->isExtVectorType() && "Not an extended vector type!");
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00004215
Anders Carlsson16a89042009-10-16 05:23:41 +00004216 QualType SrcTy = CastExpr->getType();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00004217
Nate Begeman9b10da62009-06-27 22:05:55 +00004218 // If SrcTy is a VectorType, the total size must match to explicitly cast to
4219 // an ExtVectorType.
Tobias Grosser9df05ea2011-09-22 13:03:14 +00004220 // In OpenCL, casts between vectors of different types are not allowed.
4221 // (See OpenCL 6.2).
Nate Begeman58d29a42009-06-26 00:50:28 +00004222 if (SrcTy->isVectorType()) {
Tobias Grosser9df05ea2011-09-22 13:03:14 +00004223 if (Context.getTypeSize(DestTy) != Context.getTypeSize(SrcTy)
David Blaikie4e4d0842012-03-11 07:00:24 +00004224 || (getLangOpts().OpenCL &&
Tobias Grosser9df05ea2011-09-22 13:03:14 +00004225 (DestTy.getCanonicalType() != SrcTy.getCanonicalType()))) {
John Wiegley429bb272011-04-08 18:41:53 +00004226 Diag(R.getBegin(),diag::err_invalid_conversion_between_ext_vectors)
Nate Begeman58d29a42009-06-26 00:50:28 +00004227 << DestTy << SrcTy << R;
John Wiegley429bb272011-04-08 18:41:53 +00004228 return ExprError();
4229 }
John McCall2de56d12010-08-25 11:45:40 +00004230 Kind = CK_BitCast;
John Wiegley429bb272011-04-08 18:41:53 +00004231 return Owned(CastExpr);
Nate Begeman58d29a42009-06-26 00:50:28 +00004232 }
4233
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00004234 // All non-pointer scalars can be cast to ExtVector type. The appropriate
Nate Begeman58d29a42009-06-26 00:50:28 +00004235 // conversion will take place first from scalar to elt type, and then
4236 // splat from elt type to vector.
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00004237 if (SrcTy->isPointerType())
4238 return Diag(R.getBegin(),
4239 diag::err_invalid_conversion_between_vector_and_scalar)
4240 << DestTy << SrcTy << R;
Eli Friedman73c39ab2009-10-20 08:27:19 +00004241
4242 QualType DestElemTy = DestTy->getAs<ExtVectorType>()->getElementType();
John Wiegley429bb272011-04-08 18:41:53 +00004243 ExprResult CastExprRes = Owned(CastExpr);
John McCalla180f042011-10-06 23:25:11 +00004244 CastKind CK = PrepareScalarCast(CastExprRes, DestElemTy);
John Wiegley429bb272011-04-08 18:41:53 +00004245 if (CastExprRes.isInvalid())
4246 return ExprError();
4247 CastExpr = ImpCastExprToType(CastExprRes.take(), DestElemTy, CK).take();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00004248
John McCall2de56d12010-08-25 11:45:40 +00004249 Kind = CK_VectorSplat;
John Wiegley429bb272011-04-08 18:41:53 +00004250 return Owned(CastExpr);
Nate Begeman58d29a42009-06-26 00:50:28 +00004251}
4252
John McCall60d7b3a2010-08-24 06:29:42 +00004253ExprResult
Argyrios Kyrtzidis0a851832011-07-01 22:22:59 +00004254Sema::ActOnCastExpr(Scope *S, SourceLocation LParenLoc,
4255 Declarator &D, ParsedType &Ty,
Richard Trieuccd891a2011-09-09 01:45:06 +00004256 SourceLocation RParenLoc, Expr *CastExpr) {
4257 assert(!D.isInvalidType() && (CastExpr != 0) &&
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00004258 "ActOnCastExpr(): missing type or expr");
Steve Naroff16beff82007-07-16 23:25:18 +00004259
Richard Trieuccd891a2011-09-09 01:45:06 +00004260 TypeSourceInfo *castTInfo = GetTypeForDeclaratorCast(D, CastExpr->getType());
Argyrios Kyrtzidis0a851832011-07-01 22:22:59 +00004261 if (D.isInvalidType())
4262 return ExprError();
4263
David Blaikie4e4d0842012-03-11 07:00:24 +00004264 if (getLangOpts().CPlusPlus) {
Argyrios Kyrtzidis0a851832011-07-01 22:22:59 +00004265 // Check that there are no default arguments (C++ only).
4266 CheckExtraCXXDefaultArguments(D);
4267 }
4268
John McCalle82247a2011-10-01 05:17:03 +00004269 checkUnusedDeclAttributes(D);
4270
Argyrios Kyrtzidis0a851832011-07-01 22:22:59 +00004271 QualType castType = castTInfo->getType();
4272 Ty = CreateParsedType(castType, castTInfo);
Mike Stump1eb44332009-09-09 15:08:12 +00004273
Argyrios Kyrtzidis707f1012011-07-01 22:22:54 +00004274 bool isVectorLiteral = false;
4275
4276 // Check for an altivec or OpenCL literal,
4277 // i.e. all the elements are integer constants.
Richard Trieuccd891a2011-09-09 01:45:06 +00004278 ParenExpr *PE = dyn_cast<ParenExpr>(CastExpr);
4279 ParenListExpr *PLE = dyn_cast<ParenListExpr>(CastExpr);
David Blaikie4e4d0842012-03-11 07:00:24 +00004280 if ((getLangOpts().AltiVec || getLangOpts().OpenCL)
Tobias Grosser37c31c22011-09-21 18:28:29 +00004281 && castType->isVectorType() && (PE || PLE)) {
Argyrios Kyrtzidis707f1012011-07-01 22:22:54 +00004282 if (PLE && PLE->getNumExprs() == 0) {
4283 Diag(PLE->getExprLoc(), diag::err_altivec_empty_initializer);
4284 return ExprError();
4285 }
4286 if (PE || PLE->getNumExprs() == 1) {
4287 Expr *E = (PE ? PE->getSubExpr() : PLE->getExpr(0));
4288 if (!E->getType()->isVectorType())
4289 isVectorLiteral = true;
4290 }
4291 else
4292 isVectorLiteral = true;
4293 }
4294
4295 // If this is a vector initializer, '(' type ')' '(' init, ..., init ')'
4296 // then handle it as such.
4297 if (isVectorLiteral)
Richard Trieuccd891a2011-09-09 01:45:06 +00004298 return BuildVectorLiteral(LParenLoc, RParenLoc, CastExpr, castTInfo);
Argyrios Kyrtzidis707f1012011-07-01 22:22:54 +00004299
Nate Begeman2ef13e52009-08-10 23:49:36 +00004300 // If the Expr being casted is a ParenListExpr, handle it specially.
Argyrios Kyrtzidis707f1012011-07-01 22:22:54 +00004301 // This is not an AltiVec-style cast, so turn the ParenListExpr into a
4302 // sequence of BinOp comma operators.
Richard Trieuccd891a2011-09-09 01:45:06 +00004303 if (isa<ParenListExpr>(CastExpr)) {
4304 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, CastExpr);
Argyrios Kyrtzidis707f1012011-07-01 22:22:54 +00004305 if (Result.isInvalid()) return ExprError();
Richard Trieuccd891a2011-09-09 01:45:06 +00004306 CastExpr = Result.take();
Argyrios Kyrtzidis707f1012011-07-01 22:22:54 +00004307 }
John McCallb042fdf2010-01-15 18:56:44 +00004308
Richard Trieuccd891a2011-09-09 01:45:06 +00004309 return BuildCStyleCastExpr(LParenLoc, castTInfo, RParenLoc, CastExpr);
John McCallb042fdf2010-01-15 18:56:44 +00004310}
4311
Argyrios Kyrtzidis707f1012011-07-01 22:22:54 +00004312ExprResult Sema::BuildVectorLiteral(SourceLocation LParenLoc,
4313 SourceLocation RParenLoc, Expr *E,
4314 TypeSourceInfo *TInfo) {
4315 assert((isa<ParenListExpr>(E) || isa<ParenExpr>(E)) &&
4316 "Expected paren or paren list expression");
4317
4318 Expr **exprs;
4319 unsigned numExprs;
4320 Expr *subExpr;
4321 if (ParenListExpr *PE = dyn_cast<ParenListExpr>(E)) {
4322 exprs = PE->getExprs();
4323 numExprs = PE->getNumExprs();
4324 } else {
4325 subExpr = cast<ParenExpr>(E)->getSubExpr();
4326 exprs = &subExpr;
4327 numExprs = 1;
4328 }
4329
4330 QualType Ty = TInfo->getType();
4331 assert(Ty->isVectorType() && "Expected vector type");
4332
Chris Lattner5f9e2722011-07-23 10:55:15 +00004333 SmallVector<Expr *, 8> initExprs;
Tanya Lattner61b4bc82011-07-15 23:07:01 +00004334 const VectorType *VTy = Ty->getAs<VectorType>();
4335 unsigned numElems = Ty->getAs<VectorType>()->getNumElements();
4336
Argyrios Kyrtzidis707f1012011-07-01 22:22:54 +00004337 // '(...)' form of vector initialization in AltiVec: the number of
4338 // initializers must be one or must match the size of the vector.
4339 // If a single value is specified in the initializer then it will be
4340 // replicated to all the components of the vector
Tanya Lattner61b4bc82011-07-15 23:07:01 +00004341 if (VTy->getVectorKind() == VectorType::AltiVecVector) {
Argyrios Kyrtzidis707f1012011-07-01 22:22:54 +00004342 // The number of initializers must be one or must match the size of the
4343 // vector. If a single value is specified in the initializer then it will
4344 // be replicated to all the components of the vector
4345 if (numExprs == 1) {
4346 QualType ElemTy = Ty->getAs<VectorType>()->getElementType();
Richard Smith61ffd092011-10-27 23:31:58 +00004347 ExprResult Literal = DefaultLvalueConversion(exprs[0]);
4348 if (Literal.isInvalid())
4349 return ExprError();
Argyrios Kyrtzidis707f1012011-07-01 22:22:54 +00004350 Literal = ImpCastExprToType(Literal.take(), ElemTy,
John McCalla180f042011-10-06 23:25:11 +00004351 PrepareScalarCast(Literal, ElemTy));
Argyrios Kyrtzidis707f1012011-07-01 22:22:54 +00004352 return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Literal.take());
4353 }
4354 else if (numExprs < numElems) {
4355 Diag(E->getExprLoc(),
4356 diag::err_incorrect_number_of_vector_initializers);
4357 return ExprError();
4358 }
4359 else
Benjamin Kramer14c59822012-02-14 12:06:21 +00004360 initExprs.append(exprs, exprs + numExprs);
Argyrios Kyrtzidis707f1012011-07-01 22:22:54 +00004361 }
Tanya Lattner61b4bc82011-07-15 23:07:01 +00004362 else {
4363 // For OpenCL, when the number of initializers is a single value,
4364 // it will be replicated to all components of the vector.
David Blaikie4e4d0842012-03-11 07:00:24 +00004365 if (getLangOpts().OpenCL &&
Tanya Lattner61b4bc82011-07-15 23:07:01 +00004366 VTy->getVectorKind() == VectorType::GenericVector &&
4367 numExprs == 1) {
4368 QualType ElemTy = Ty->getAs<VectorType>()->getElementType();
Richard Smith61ffd092011-10-27 23:31:58 +00004369 ExprResult Literal = DefaultLvalueConversion(exprs[0]);
4370 if (Literal.isInvalid())
4371 return ExprError();
Tanya Lattner61b4bc82011-07-15 23:07:01 +00004372 Literal = ImpCastExprToType(Literal.take(), ElemTy,
John McCalla180f042011-10-06 23:25:11 +00004373 PrepareScalarCast(Literal, ElemTy));
Tanya Lattner61b4bc82011-07-15 23:07:01 +00004374 return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Literal.take());
4375 }
4376
Benjamin Kramer14c59822012-02-14 12:06:21 +00004377 initExprs.append(exprs, exprs + numExprs);
Tanya Lattner61b4bc82011-07-15 23:07:01 +00004378 }
Argyrios Kyrtzidis707f1012011-07-01 22:22:54 +00004379 // FIXME: This means that pretty-printing the final AST will produce curly
4380 // braces instead of the original commas.
4381 InitListExpr *initE = new (Context) InitListExpr(Context, LParenLoc,
4382 &initExprs[0],
4383 initExprs.size(), RParenLoc);
4384 initE->setType(Ty);
4385 return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, initE);
4386}
4387
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00004388/// This is not an AltiVec-style cast or or C++ direct-initialization, so turn
4389/// the ParenListExpr into a sequence of comma binary operators.
John McCall60d7b3a2010-08-24 06:29:42 +00004390ExprResult
Richard Trieuccd891a2011-09-09 01:45:06 +00004391Sema::MaybeConvertParenListExprToParenExpr(Scope *S, Expr *OrigExpr) {
4392 ParenListExpr *E = dyn_cast<ParenListExpr>(OrigExpr);
Nate Begeman2ef13e52009-08-10 23:49:36 +00004393 if (!E)
Richard Trieuccd891a2011-09-09 01:45:06 +00004394 return Owned(OrigExpr);
Mike Stump1eb44332009-09-09 15:08:12 +00004395
John McCall60d7b3a2010-08-24 06:29:42 +00004396 ExprResult Result(E->getExpr(0));
Mike Stump1eb44332009-09-09 15:08:12 +00004397
Nate Begeman2ef13e52009-08-10 23:49:36 +00004398 for (unsigned i = 1, e = E->getNumExprs(); i != e && !Result.isInvalid(); ++i)
John McCall9ae2f072010-08-23 23:25:46 +00004399 Result = ActOnBinOp(S, E->getExprLoc(), tok::comma, Result.get(),
4400 E->getExpr(i));
Mike Stump1eb44332009-09-09 15:08:12 +00004401
John McCall9ae2f072010-08-23 23:25:46 +00004402 if (Result.isInvalid()) return ExprError();
4403
4404 return ActOnParenExpr(E->getLParenLoc(), E->getRParenLoc(), Result.get());
Nate Begeman2ef13e52009-08-10 23:49:36 +00004405}
4406
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00004407ExprResult Sema::ActOnParenListExpr(SourceLocation L,
4408 SourceLocation R,
4409 MultiExprArg Val) {
Nate Begeman2ef13e52009-08-10 23:49:36 +00004410 unsigned nexprs = Val.size();
4411 Expr **exprs = reinterpret_cast<Expr**>(Val.release());
Fariborz Jahanianf88f7ab2009-11-25 01:26:41 +00004412 assert((exprs != 0) && "ActOnParenOrParenListExpr() missing expr list");
Sebastian Redl5b9cc5d2012-02-11 23:51:47 +00004413 Expr *expr = new (Context) ParenListExpr(Context, L, exprs, nexprs, R);
Nate Begeman2ef13e52009-08-10 23:49:36 +00004414 return Owned(expr);
4415}
4416
Chandler Carruth82214a82011-02-18 23:54:50 +00004417/// \brief Emit a specialized diagnostic when one expression is a null pointer
Richard Trieu26f96072011-09-02 01:51:02 +00004418/// constant and the other is not a pointer. Returns true if a diagnostic is
4419/// emitted.
Richard Trieu33fc7572011-09-06 20:06:39 +00004420bool Sema::DiagnoseConditionalForNull(Expr *LHSExpr, Expr *RHSExpr,
Chandler Carruth82214a82011-02-18 23:54:50 +00004421 SourceLocation QuestionLoc) {
Richard Trieu33fc7572011-09-06 20:06:39 +00004422 Expr *NullExpr = LHSExpr;
4423 Expr *NonPointerExpr = RHSExpr;
Chandler Carruth82214a82011-02-18 23:54:50 +00004424 Expr::NullPointerConstantKind NullKind =
4425 NullExpr->isNullPointerConstant(Context,
4426 Expr::NPC_ValueDependentIsNotNull);
4427
4428 if (NullKind == Expr::NPCK_NotNull) {
Richard Trieu33fc7572011-09-06 20:06:39 +00004429 NullExpr = RHSExpr;
4430 NonPointerExpr = LHSExpr;
Chandler Carruth82214a82011-02-18 23:54:50 +00004431 NullKind =
4432 NullExpr->isNullPointerConstant(Context,
4433 Expr::NPC_ValueDependentIsNotNull);
4434 }
4435
4436 if (NullKind == Expr::NPCK_NotNull)
4437 return false;
4438
4439 if (NullKind == Expr::NPCK_ZeroInteger) {
4440 // In this case, check to make sure that we got here from a "NULL"
4441 // string in the source code.
4442 NullExpr = NullExpr->IgnoreParenImpCasts();
John McCall834e3f62011-03-08 07:59:04 +00004443 SourceLocation loc = NullExpr->getExprLoc();
4444 if (!findMacroSpelling(loc, "NULL"))
Chandler Carruth82214a82011-02-18 23:54:50 +00004445 return false;
4446 }
4447
4448 int DiagType = (NullKind == Expr::NPCK_CXX0X_nullptr);
4449 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands_null)
4450 << NonPointerExpr->getType() << DiagType
4451 << NonPointerExpr->getSourceRange();
4452 return true;
4453}
4454
Richard Trieu26f96072011-09-02 01:51:02 +00004455/// \brief Return false if the condition expression is valid, true otherwise.
4456static bool checkCondition(Sema &S, Expr *Cond) {
4457 QualType CondTy = Cond->getType();
4458
4459 // C99 6.5.15p2
4460 if (CondTy->isScalarType()) return false;
4461
4462 // OpenCL: Sec 6.3.i says the condition is allowed to be a vector or scalar.
David Blaikie4e4d0842012-03-11 07:00:24 +00004463 if (S.getLangOpts().OpenCL && CondTy->isVectorType())
Richard Trieu26f96072011-09-02 01:51:02 +00004464 return false;
4465
4466 // Emit the proper error message.
David Blaikie4e4d0842012-03-11 07:00:24 +00004467 S.Diag(Cond->getLocStart(), S.getLangOpts().OpenCL ?
Richard Trieu26f96072011-09-02 01:51:02 +00004468 diag::err_typecheck_cond_expect_scalar :
4469 diag::err_typecheck_cond_expect_scalar_or_vector)
4470 << CondTy;
4471 return true;
4472}
4473
4474/// \brief Return false if the two expressions can be converted to a vector,
4475/// true otherwise
4476static bool checkConditionalConvertScalarsToVectors(Sema &S, ExprResult &LHS,
4477 ExprResult &RHS,
4478 QualType CondTy) {
4479 // Both operands should be of scalar type.
4480 if (!LHS.get()->getType()->isScalarType()) {
4481 S.Diag(LHS.get()->getLocStart(), diag::err_typecheck_cond_expect_scalar)
4482 << CondTy;
4483 return true;
4484 }
4485 if (!RHS.get()->getType()->isScalarType()) {
4486 S.Diag(RHS.get()->getLocStart(), diag::err_typecheck_cond_expect_scalar)
4487 << CondTy;
4488 return true;
4489 }
4490
4491 // Implicity convert these scalars to the type of the condition.
4492 LHS = S.ImpCastExprToType(LHS.take(), CondTy, CK_IntegralCast);
4493 RHS = S.ImpCastExprToType(RHS.take(), CondTy, CK_IntegralCast);
4494 return false;
4495}
4496
4497/// \brief Handle when one or both operands are void type.
4498static QualType checkConditionalVoidType(Sema &S, ExprResult &LHS,
4499 ExprResult &RHS) {
4500 Expr *LHSExpr = LHS.get();
4501 Expr *RHSExpr = RHS.get();
4502
4503 if (!LHSExpr->getType()->isVoidType())
4504 S.Diag(RHSExpr->getLocStart(), diag::ext_typecheck_cond_one_void)
4505 << RHSExpr->getSourceRange();
4506 if (!RHSExpr->getType()->isVoidType())
4507 S.Diag(LHSExpr->getLocStart(), diag::ext_typecheck_cond_one_void)
4508 << LHSExpr->getSourceRange();
4509 LHS = S.ImpCastExprToType(LHS.take(), S.Context.VoidTy, CK_ToVoid);
4510 RHS = S.ImpCastExprToType(RHS.take(), S.Context.VoidTy, CK_ToVoid);
4511 return S.Context.VoidTy;
4512}
4513
4514/// \brief Return false if the NullExpr can be promoted to PointerTy,
4515/// true otherwise.
4516static bool checkConditionalNullPointer(Sema &S, ExprResult &NullExpr,
4517 QualType PointerTy) {
4518 if ((!PointerTy->isAnyPointerType() && !PointerTy->isBlockPointerType()) ||
4519 !NullExpr.get()->isNullPointerConstant(S.Context,
4520 Expr::NPC_ValueDependentIsNull))
4521 return true;
4522
4523 NullExpr = S.ImpCastExprToType(NullExpr.take(), PointerTy, CK_NullToPointer);
4524 return false;
4525}
4526
4527/// \brief Checks compatibility between two pointers and return the resulting
4528/// type.
4529static QualType checkConditionalPointerCompatibility(Sema &S, ExprResult &LHS,
4530 ExprResult &RHS,
4531 SourceLocation Loc) {
4532 QualType LHSTy = LHS.get()->getType();
4533 QualType RHSTy = RHS.get()->getType();
4534
4535 if (S.Context.hasSameType(LHSTy, RHSTy)) {
4536 // Two identical pointers types are always compatible.
4537 return LHSTy;
4538 }
4539
4540 QualType lhptee, rhptee;
4541
4542 // Get the pointee types.
John McCall1d9b3b22011-09-09 05:25:32 +00004543 if (const BlockPointerType *LHSBTy = LHSTy->getAs<BlockPointerType>()) {
4544 lhptee = LHSBTy->getPointeeType();
4545 rhptee = RHSTy->castAs<BlockPointerType>()->getPointeeType();
Richard Trieu26f96072011-09-02 01:51:02 +00004546 } else {
John McCall1d9b3b22011-09-09 05:25:32 +00004547 lhptee = LHSTy->castAs<PointerType>()->getPointeeType();
4548 rhptee = RHSTy->castAs<PointerType>()->getPointeeType();
Richard Trieu26f96072011-09-02 01:51:02 +00004549 }
4550
4551 if (!S.Context.typesAreCompatible(lhptee.getUnqualifiedType(),
4552 rhptee.getUnqualifiedType())) {
4553 S.Diag(Loc, diag::warn_typecheck_cond_incompatible_pointers)
4554 << LHSTy << RHSTy << LHS.get()->getSourceRange()
4555 << RHS.get()->getSourceRange();
4556 // In this situation, we assume void* type. No especially good
4557 // reason, but this is what gcc does, and we do have to pick
4558 // to get a consistent AST.
4559 QualType incompatTy = S.Context.getPointerType(S.Context.VoidTy);
4560 LHS = S.ImpCastExprToType(LHS.take(), incompatTy, CK_BitCast);
4561 RHS = S.ImpCastExprToType(RHS.take(), incompatTy, CK_BitCast);
4562 return incompatTy;
4563 }
4564
4565 // The pointer types are compatible.
4566 // C99 6.5.15p6: If both operands are pointers to compatible types *or* to
4567 // differently qualified versions of compatible types, the result type is
4568 // a pointer to an appropriately qualified version of the *composite*
4569 // type.
4570 // FIXME: Need to calculate the composite type.
4571 // FIXME: Need to add qualifiers
4572
4573 LHS = S.ImpCastExprToType(LHS.take(), LHSTy, CK_BitCast);
4574 RHS = S.ImpCastExprToType(RHS.take(), LHSTy, CK_BitCast);
4575 return LHSTy;
4576}
4577
4578/// \brief Return the resulting type when the operands are both block pointers.
4579static QualType checkConditionalBlockPointerCompatibility(Sema &S,
4580 ExprResult &LHS,
4581 ExprResult &RHS,
4582 SourceLocation Loc) {
4583 QualType LHSTy = LHS.get()->getType();
4584 QualType RHSTy = RHS.get()->getType();
4585
4586 if (!LHSTy->isBlockPointerType() || !RHSTy->isBlockPointerType()) {
4587 if (LHSTy->isVoidPointerType() || RHSTy->isVoidPointerType()) {
4588 QualType destType = S.Context.getPointerType(S.Context.VoidTy);
4589 LHS = S.ImpCastExprToType(LHS.take(), destType, CK_BitCast);
4590 RHS = S.ImpCastExprToType(RHS.take(), destType, CK_BitCast);
4591 return destType;
4592 }
4593 S.Diag(Loc, diag::err_typecheck_cond_incompatible_operands)
4594 << LHSTy << RHSTy << LHS.get()->getSourceRange()
4595 << RHS.get()->getSourceRange();
4596 return QualType();
4597 }
4598
4599 // We have 2 block pointer types.
4600 return checkConditionalPointerCompatibility(S, LHS, RHS, Loc);
4601}
4602
4603/// \brief Return the resulting type when the operands are both pointers.
4604static QualType
4605checkConditionalObjectPointersCompatibility(Sema &S, ExprResult &LHS,
4606 ExprResult &RHS,
4607 SourceLocation Loc) {
4608 // get the pointer types
4609 QualType LHSTy = LHS.get()->getType();
4610 QualType RHSTy = RHS.get()->getType();
4611
4612 // get the "pointed to" types
4613 QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType();
4614 QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType();
4615
4616 // ignore qualifiers on void (C99 6.5.15p3, clause 6)
4617 if (lhptee->isVoidType() && rhptee->isIncompleteOrObjectType()) {
4618 // Figure out necessary qualifiers (C99 6.5.15p6)
4619 QualType destPointee
4620 = S.Context.getQualifiedType(lhptee, rhptee.getQualifiers());
4621 QualType destType = S.Context.getPointerType(destPointee);
4622 // Add qualifiers if necessary.
4623 LHS = S.ImpCastExprToType(LHS.take(), destType, CK_NoOp);
4624 // Promote to void*.
4625 RHS = S.ImpCastExprToType(RHS.take(), destType, CK_BitCast);
4626 return destType;
4627 }
4628 if (rhptee->isVoidType() && lhptee->isIncompleteOrObjectType()) {
4629 QualType destPointee
4630 = S.Context.getQualifiedType(rhptee, lhptee.getQualifiers());
4631 QualType destType = S.Context.getPointerType(destPointee);
4632 // Add qualifiers if necessary.
4633 RHS = S.ImpCastExprToType(RHS.take(), destType, CK_NoOp);
4634 // Promote to void*.
4635 LHS = S.ImpCastExprToType(LHS.take(), destType, CK_BitCast);
4636 return destType;
4637 }
4638
4639 return checkConditionalPointerCompatibility(S, LHS, RHS, Loc);
4640}
4641
4642/// \brief Return false if the first expression is not an integer and the second
4643/// expression is not a pointer, true otherwise.
4644static bool checkPointerIntegerMismatch(Sema &S, ExprResult &Int,
4645 Expr* PointerExpr, SourceLocation Loc,
Richard Trieuccd891a2011-09-09 01:45:06 +00004646 bool IsIntFirstExpr) {
Richard Trieu26f96072011-09-02 01:51:02 +00004647 if (!PointerExpr->getType()->isPointerType() ||
4648 !Int.get()->getType()->isIntegerType())
4649 return false;
4650
Richard Trieuccd891a2011-09-09 01:45:06 +00004651 Expr *Expr1 = IsIntFirstExpr ? Int.get() : PointerExpr;
4652 Expr *Expr2 = IsIntFirstExpr ? PointerExpr : Int.get();
Richard Trieu26f96072011-09-02 01:51:02 +00004653
4654 S.Diag(Loc, diag::warn_typecheck_cond_pointer_integer_mismatch)
4655 << Expr1->getType() << Expr2->getType()
4656 << Expr1->getSourceRange() << Expr2->getSourceRange();
4657 Int = S.ImpCastExprToType(Int.take(), PointerExpr->getType(),
4658 CK_IntegralToPointer);
4659 return true;
4660}
4661
Richard Trieu33fc7572011-09-06 20:06:39 +00004662/// Note that LHS is not null here, even if this is the gnu "x ?: y" extension.
4663/// In that case, LHS = cond.
Chris Lattnera119a3b2009-02-18 04:38:20 +00004664/// C99 6.5.15
Richard Trieu67e29332011-08-02 04:35:43 +00004665QualType Sema::CheckConditionalOperands(ExprResult &Cond, ExprResult &LHS,
4666 ExprResult &RHS, ExprValueKind &VK,
4667 ExprObjectKind &OK,
Chris Lattnera119a3b2009-02-18 04:38:20 +00004668 SourceLocation QuestionLoc) {
Douglas Gregorfadb53b2011-03-12 01:48:56 +00004669
Richard Trieu33fc7572011-09-06 20:06:39 +00004670 ExprResult LHSResult = CheckPlaceholderExpr(LHS.get());
4671 if (!LHSResult.isUsable()) return QualType();
4672 LHS = move(LHSResult);
Douglas Gregor7ad5d422010-11-09 21:07:58 +00004673
Richard Trieu33fc7572011-09-06 20:06:39 +00004674 ExprResult RHSResult = CheckPlaceholderExpr(RHS.get());
4675 if (!RHSResult.isUsable()) return QualType();
4676 RHS = move(RHSResult);
Douglas Gregor7ad5d422010-11-09 21:07:58 +00004677
Sebastian Redl3201f6b2009-04-16 17:51:27 +00004678 // C++ is sufficiently different to merit its own checker.
David Blaikie4e4d0842012-03-11 07:00:24 +00004679 if (getLangOpts().CPlusPlus)
John McCall56ca35d2011-02-17 10:25:35 +00004680 return CXXCheckConditionalOperands(Cond, LHS, RHS, VK, OK, QuestionLoc);
John McCallf89e55a2010-11-18 06:31:45 +00004681
4682 VK = VK_RValue;
John McCall09431682010-11-18 19:01:18 +00004683 OK = OK_Ordinary;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00004684
John Wiegley429bb272011-04-08 18:41:53 +00004685 Cond = UsualUnaryConversions(Cond.take());
4686 if (Cond.isInvalid())
4687 return QualType();
4688 LHS = UsualUnaryConversions(LHS.take());
4689 if (LHS.isInvalid())
4690 return QualType();
4691 RHS = UsualUnaryConversions(RHS.take());
4692 if (RHS.isInvalid())
4693 return QualType();
4694
4695 QualType CondTy = Cond.get()->getType();
4696 QualType LHSTy = LHS.get()->getType();
4697 QualType RHSTy = RHS.get()->getType();
Steve Naroffc80b4ee2007-07-16 21:54:35 +00004698
Reid Spencer5f016e22007-07-11 17:01:13 +00004699 // first, check the condition.
Richard Trieu26f96072011-09-02 01:51:02 +00004700 if (checkCondition(*this, Cond.get()))
4701 return QualType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004702
Chris Lattner70d67a92008-01-06 22:42:25 +00004703 // Now check the two expressions.
Nate Begeman2ef13e52009-08-10 23:49:36 +00004704 if (LHSTy->isVectorType() || RHSTy->isVectorType())
Eli Friedmanb9b4b782011-06-23 18:10:35 +00004705 return CheckVectorOperands(LHS, RHS, QuestionLoc, /*isCompAssign*/false);
Douglas Gregor898574e2008-12-05 23:32:09 +00004706
Nate Begeman6155d732010-09-20 22:41:17 +00004707 // OpenCL: If the condition is a vector, and both operands are scalar,
4708 // attempt to implicity convert them to the vector type to act like the
4709 // built in select.
David Blaikie4e4d0842012-03-11 07:00:24 +00004710 if (getLangOpts().OpenCL && CondTy->isVectorType())
Richard Trieu26f96072011-09-02 01:51:02 +00004711 if (checkConditionalConvertScalarsToVectors(*this, LHS, RHS, CondTy))
Nate Begeman6155d732010-09-20 22:41:17 +00004712 return QualType();
Nate Begeman6155d732010-09-20 22:41:17 +00004713
Chris Lattner70d67a92008-01-06 22:42:25 +00004714 // If both operands have arithmetic type, do the usual arithmetic conversions
4715 // to find a common type: C99 6.5.15p3,5.
Chris Lattnerefdc39d2009-02-18 04:28:32 +00004716 if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) {
4717 UsualArithmeticConversions(LHS, RHS);
John Wiegley429bb272011-04-08 18:41:53 +00004718 if (LHS.isInvalid() || RHS.isInvalid())
4719 return QualType();
4720 return LHS.get()->getType();
Steve Naroffa4332e22007-07-17 00:58:39 +00004721 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004722
Chris Lattner70d67a92008-01-06 22:42:25 +00004723 // If both operands are the same structure or union type, the result is that
4724 // type.
Ted Kremenek6217b802009-07-29 21:53:49 +00004725 if (const RecordType *LHSRT = LHSTy->getAs<RecordType>()) { // C99 6.5.15p3
4726 if (const RecordType *RHSRT = RHSTy->getAs<RecordType>())
Chris Lattnera21ddb32007-11-26 01:40:58 +00004727 if (LHSRT->getDecl() == RHSRT->getDecl())
Mike Stumpeed9cac2009-02-19 03:04:26 +00004728 // "If both the operands have structure or union type, the result has
Chris Lattner70d67a92008-01-06 22:42:25 +00004729 // that type." This implies that CV qualifiers are dropped.
Chris Lattnerefdc39d2009-02-18 04:28:32 +00004730 return LHSTy.getUnqualifiedType();
Eli Friedmanb1d796d2009-03-23 00:24:07 +00004731 // FIXME: Type of conditional expression must be complete in C mode.
Reid Spencer5f016e22007-07-11 17:01:13 +00004732 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004733
Chris Lattner70d67a92008-01-06 22:42:25 +00004734 // C99 6.5.15p5: "If both operands have void type, the result has void type."
Steve Naroffe701c0a2008-05-12 21:44:38 +00004735 // The following || allows only one side to be void (a GCC-ism).
Chris Lattnerefdc39d2009-02-18 04:28:32 +00004736 if (LHSTy->isVoidType() || RHSTy->isVoidType()) {
Richard Trieu26f96072011-09-02 01:51:02 +00004737 return checkConditionalVoidType(*this, LHS, RHS);
Steve Naroffe701c0a2008-05-12 21:44:38 +00004738 }
Richard Trieu26f96072011-09-02 01:51:02 +00004739
Steve Naroffb6d54e52008-01-08 01:11:38 +00004740 // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has
4741 // the type of the other operand."
Richard Trieu26f96072011-09-02 01:51:02 +00004742 if (!checkConditionalNullPointer(*this, RHS, LHSTy)) return LHSTy;
4743 if (!checkConditionalNullPointer(*this, LHS, RHSTy)) return RHSTy;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00004744
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00004745 // All objective-c pointer type analysis is done here.
4746 QualType compositeType = FindCompositeObjCPointerType(LHS, RHS,
4747 QuestionLoc);
John Wiegley429bb272011-04-08 18:41:53 +00004748 if (LHS.isInvalid() || RHS.isInvalid())
4749 return QualType();
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00004750 if (!compositeType.isNull())
4751 return compositeType;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00004752
4753
Steve Naroff7154a772009-07-01 14:36:47 +00004754 // Handle block pointer types.
Richard Trieu26f96072011-09-02 01:51:02 +00004755 if (LHSTy->isBlockPointerType() || RHSTy->isBlockPointerType())
4756 return checkConditionalBlockPointerCompatibility(*this, LHS, RHS,
4757 QuestionLoc);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00004758
Steve Naroff7154a772009-07-01 14:36:47 +00004759 // Check constraints for C object pointers types (C99 6.5.15p3,6).
Richard Trieu26f96072011-09-02 01:51:02 +00004760 if (LHSTy->isPointerType() && RHSTy->isPointerType())
4761 return checkConditionalObjectPointersCompatibility(*this, LHS, RHS,
4762 QuestionLoc);
Mike Stump1eb44332009-09-09 15:08:12 +00004763
John McCall404cd162010-11-13 01:35:44 +00004764 // GCC compatibility: soften pointer/integer mismatch. Note that
4765 // null pointers have been filtered out by this point.
Richard Trieu26f96072011-09-02 01:51:02 +00004766 if (checkPointerIntegerMismatch(*this, LHS, RHS.get(), QuestionLoc,
4767 /*isIntFirstExpr=*/true))
Steve Naroff7154a772009-07-01 14:36:47 +00004768 return RHSTy;
Richard Trieu26f96072011-09-02 01:51:02 +00004769 if (checkPointerIntegerMismatch(*this, RHS, LHS.get(), QuestionLoc,
4770 /*isIntFirstExpr=*/false))
Steve Naroff7154a772009-07-01 14:36:47 +00004771 return LHSTy;
Daniel Dunbar5e155f02008-09-11 23:12:46 +00004772
Chandler Carruth82214a82011-02-18 23:54:50 +00004773 // Emit a better diagnostic if one of the expressions is a null pointer
4774 // constant and the other is not a pointer type. In this case, the user most
4775 // likely forgot to take the address of the other expression.
John Wiegley429bb272011-04-08 18:41:53 +00004776 if (DiagnoseConditionalForNull(LHS.get(), RHS.get(), QuestionLoc))
Chandler Carruth82214a82011-02-18 23:54:50 +00004777 return QualType();
4778
Chris Lattner70d67a92008-01-06 22:42:25 +00004779 // Otherwise, the operands are not compatible.
Chris Lattnerefdc39d2009-02-18 04:28:32 +00004780 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
Richard Trieu67e29332011-08-02 04:35:43 +00004781 << LHSTy << RHSTy << LHS.get()->getSourceRange()
4782 << RHS.get()->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00004783 return QualType();
4784}
4785
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00004786/// FindCompositeObjCPointerType - Helper method to find composite type of
4787/// two objective-c pointer types of the two input expressions.
John Wiegley429bb272011-04-08 18:41:53 +00004788QualType Sema::FindCompositeObjCPointerType(ExprResult &LHS, ExprResult &RHS,
Richard Trieu67e29332011-08-02 04:35:43 +00004789 SourceLocation QuestionLoc) {
John Wiegley429bb272011-04-08 18:41:53 +00004790 QualType LHSTy = LHS.get()->getType();
4791 QualType RHSTy = RHS.get()->getType();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00004792
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00004793 // Handle things like Class and struct objc_class*. Here we case the result
4794 // to the pseudo-builtin, because that will be implicitly cast back to the
4795 // redefinition type if an attempt is made to access its fields.
4796 if (LHSTy->isObjCClassType() &&
Douglas Gregor01a4cf12011-08-11 20:58:55 +00004797 (Context.hasSameType(RHSTy, Context.getObjCClassRedefinitionType()))) {
John McCall1d9b3b22011-09-09 05:25:32 +00004798 RHS = ImpCastExprToType(RHS.take(), LHSTy, CK_CPointerToObjCPointerCast);
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00004799 return LHSTy;
4800 }
4801 if (RHSTy->isObjCClassType() &&
Douglas Gregor01a4cf12011-08-11 20:58:55 +00004802 (Context.hasSameType(LHSTy, Context.getObjCClassRedefinitionType()))) {
John McCall1d9b3b22011-09-09 05:25:32 +00004803 LHS = ImpCastExprToType(LHS.take(), RHSTy, CK_CPointerToObjCPointerCast);
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00004804 return RHSTy;
4805 }
4806 // And the same for struct objc_object* / id
4807 if (LHSTy->isObjCIdType() &&
Douglas Gregor01a4cf12011-08-11 20:58:55 +00004808 (Context.hasSameType(RHSTy, Context.getObjCIdRedefinitionType()))) {
John McCall1d9b3b22011-09-09 05:25:32 +00004809 RHS = ImpCastExprToType(RHS.take(), LHSTy, CK_CPointerToObjCPointerCast);
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00004810 return LHSTy;
4811 }
4812 if (RHSTy->isObjCIdType() &&
Douglas Gregor01a4cf12011-08-11 20:58:55 +00004813 (Context.hasSameType(LHSTy, Context.getObjCIdRedefinitionType()))) {
John McCall1d9b3b22011-09-09 05:25:32 +00004814 LHS = ImpCastExprToType(LHS.take(), RHSTy, CK_CPointerToObjCPointerCast);
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00004815 return RHSTy;
4816 }
4817 // And the same for struct objc_selector* / SEL
4818 if (Context.isObjCSelType(LHSTy) &&
Douglas Gregor01a4cf12011-08-11 20:58:55 +00004819 (Context.hasSameType(RHSTy, Context.getObjCSelRedefinitionType()))) {
John Wiegley429bb272011-04-08 18:41:53 +00004820 RHS = ImpCastExprToType(RHS.take(), LHSTy, CK_BitCast);
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00004821 return LHSTy;
4822 }
4823 if (Context.isObjCSelType(RHSTy) &&
Douglas Gregor01a4cf12011-08-11 20:58:55 +00004824 (Context.hasSameType(LHSTy, Context.getObjCSelRedefinitionType()))) {
John Wiegley429bb272011-04-08 18:41:53 +00004825 LHS = ImpCastExprToType(LHS.take(), RHSTy, CK_BitCast);
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00004826 return RHSTy;
4827 }
4828 // Check constraints for Objective-C object pointers types.
4829 if (LHSTy->isObjCObjectPointerType() && RHSTy->isObjCObjectPointerType()) {
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00004830
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00004831 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
4832 // Two identical object pointer types are always compatible.
4833 return LHSTy;
4834 }
John McCall1d9b3b22011-09-09 05:25:32 +00004835 const ObjCObjectPointerType *LHSOPT = LHSTy->castAs<ObjCObjectPointerType>();
4836 const ObjCObjectPointerType *RHSOPT = RHSTy->castAs<ObjCObjectPointerType>();
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00004837 QualType compositeType = LHSTy;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00004838
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00004839 // If both operands are interfaces and either operand can be
4840 // assigned to the other, use that type as the composite
4841 // type. This allows
4842 // xxx ? (A*) a : (B*) b
4843 // where B is a subclass of A.
4844 //
4845 // Additionally, as for assignment, if either type is 'id'
4846 // allow silent coercion. Finally, if the types are
4847 // incompatible then make sure to use 'id' as the composite
4848 // type so the result is acceptable for sending messages to.
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00004849
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00004850 // FIXME: Consider unifying with 'areComparableObjCPointerTypes'.
4851 // It could return the composite type.
4852 if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) {
4853 compositeType = RHSOPT->isObjCBuiltinType() ? RHSTy : LHSTy;
4854 } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) {
4855 compositeType = LHSOPT->isObjCBuiltinType() ? LHSTy : RHSTy;
4856 } else if ((LHSTy->isObjCQualifiedIdType() ||
4857 RHSTy->isObjCQualifiedIdType()) &&
4858 Context.ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true)) {
4859 // Need to handle "id<xx>" explicitly.
4860 // GCC allows qualified id and any Objective-C type to devolve to
4861 // id. Currently localizing to here until clear this should be
4862 // part of ObjCQualifiedIdTypesAreCompatible.
4863 compositeType = Context.getObjCIdType();
4864 } else if (LHSTy->isObjCIdType() || RHSTy->isObjCIdType()) {
4865 compositeType = Context.getObjCIdType();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00004866 } else if (!(compositeType =
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00004867 Context.areCommonBaseCompatible(LHSOPT, RHSOPT)).isNull())
4868 ;
4869 else {
4870 Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands)
4871 << LHSTy << RHSTy
John Wiegley429bb272011-04-08 18:41:53 +00004872 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00004873 QualType incompatTy = Context.getObjCIdType();
John Wiegley429bb272011-04-08 18:41:53 +00004874 LHS = ImpCastExprToType(LHS.take(), incompatTy, CK_BitCast);
4875 RHS = ImpCastExprToType(RHS.take(), incompatTy, CK_BitCast);
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00004876 return incompatTy;
4877 }
4878 // The object pointer types are compatible.
John Wiegley429bb272011-04-08 18:41:53 +00004879 LHS = ImpCastExprToType(LHS.take(), compositeType, CK_BitCast);
4880 RHS = ImpCastExprToType(RHS.take(), compositeType, CK_BitCast);
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00004881 return compositeType;
4882 }
4883 // Check Objective-C object pointer types and 'void *'
4884 if (LHSTy->isVoidPointerType() && RHSTy->isObjCObjectPointerType()) {
David Blaikie4e4d0842012-03-11 07:00:24 +00004885 if (getLangOpts().ObjCAutoRefCount) {
Eli Friedmana66eccb2012-02-25 00:23:44 +00004886 // ARC forbids the implicit conversion of object pointers to 'void *',
4887 // so these types are not compatible.
4888 Diag(QuestionLoc, diag::err_cond_voidptr_arc) << LHSTy << RHSTy
4889 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
4890 LHS = RHS = true;
4891 return QualType();
4892 }
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00004893 QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType();
4894 QualType rhptee = RHSTy->getAs<ObjCObjectPointerType>()->getPointeeType();
4895 QualType destPointee
4896 = Context.getQualifiedType(lhptee, rhptee.getQualifiers());
4897 QualType destType = Context.getPointerType(destPointee);
4898 // Add qualifiers if necessary.
John Wiegley429bb272011-04-08 18:41:53 +00004899 LHS = ImpCastExprToType(LHS.take(), destType, CK_NoOp);
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00004900 // Promote to void*.
John Wiegley429bb272011-04-08 18:41:53 +00004901 RHS = ImpCastExprToType(RHS.take(), destType, CK_BitCast);
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00004902 return destType;
4903 }
4904 if (LHSTy->isObjCObjectPointerType() && RHSTy->isVoidPointerType()) {
David Blaikie4e4d0842012-03-11 07:00:24 +00004905 if (getLangOpts().ObjCAutoRefCount) {
Eli Friedmana66eccb2012-02-25 00:23:44 +00004906 // ARC forbids the implicit conversion of object pointers to 'void *',
4907 // so these types are not compatible.
4908 Diag(QuestionLoc, diag::err_cond_voidptr_arc) << LHSTy << RHSTy
4909 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
4910 LHS = RHS = true;
4911 return QualType();
4912 }
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00004913 QualType lhptee = LHSTy->getAs<ObjCObjectPointerType>()->getPointeeType();
4914 QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType();
4915 QualType destPointee
4916 = Context.getQualifiedType(rhptee, lhptee.getQualifiers());
4917 QualType destType = Context.getPointerType(destPointee);
4918 // Add qualifiers if necessary.
John Wiegley429bb272011-04-08 18:41:53 +00004919 RHS = ImpCastExprToType(RHS.take(), destType, CK_NoOp);
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00004920 // Promote to void*.
John Wiegley429bb272011-04-08 18:41:53 +00004921 LHS = ImpCastExprToType(LHS.take(), destType, CK_BitCast);
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00004922 return destType;
4923 }
4924 return QualType();
4925}
4926
Chandler Carruthf0b60d62011-06-16 01:05:14 +00004927/// SuggestParentheses - Emit a note with a fixit hint that wraps
Hans Wennborg9cfdae32011-06-03 18:00:36 +00004928/// ParenRange in parentheses.
4929static void SuggestParentheses(Sema &Self, SourceLocation Loc,
Chandler Carruthf0b60d62011-06-16 01:05:14 +00004930 const PartialDiagnostic &Note,
4931 SourceRange ParenRange) {
4932 SourceLocation EndLoc = Self.PP.getLocForEndOfToken(ParenRange.getEnd());
4933 if (ParenRange.getBegin().isFileID() && ParenRange.getEnd().isFileID() &&
4934 EndLoc.isValid()) {
4935 Self.Diag(Loc, Note)
4936 << FixItHint::CreateInsertion(ParenRange.getBegin(), "(")
4937 << FixItHint::CreateInsertion(EndLoc, ")");
4938 } else {
4939 // We can't display the parentheses, so just show the bare note.
4940 Self.Diag(Loc, Note) << ParenRange;
Hans Wennborg9cfdae32011-06-03 18:00:36 +00004941 }
Hans Wennborg9cfdae32011-06-03 18:00:36 +00004942}
4943
4944static bool IsArithmeticOp(BinaryOperatorKind Opc) {
4945 return Opc >= BO_Mul && Opc <= BO_Shr;
4946}
4947
Hans Wennborg2f072b42011-06-09 17:06:51 +00004948/// IsArithmeticBinaryExpr - Returns true if E is an arithmetic binary
4949/// expression, either using a built-in or overloaded operator,
Richard Trieu33fc7572011-09-06 20:06:39 +00004950/// and sets *OpCode to the opcode and *RHSExprs to the right-hand side
4951/// expression.
Hans Wennborg2f072b42011-06-09 17:06:51 +00004952static bool IsArithmeticBinaryExpr(Expr *E, BinaryOperatorKind *Opcode,
Richard Trieu33fc7572011-09-06 20:06:39 +00004953 Expr **RHSExprs) {
Hans Wennborgcb4d7c22011-09-12 12:07:30 +00004954 // Don't strip parenthesis: we should not warn if E is in parenthesis.
4955 E = E->IgnoreImpCasts();
Hans Wennborg2f072b42011-06-09 17:06:51 +00004956 E = E->IgnoreConversionOperator();
Hans Wennborgcb4d7c22011-09-12 12:07:30 +00004957 E = E->IgnoreImpCasts();
Hans Wennborg2f072b42011-06-09 17:06:51 +00004958
4959 // Built-in binary operator.
4960 if (BinaryOperator *OP = dyn_cast<BinaryOperator>(E)) {
4961 if (IsArithmeticOp(OP->getOpcode())) {
4962 *Opcode = OP->getOpcode();
Richard Trieu33fc7572011-09-06 20:06:39 +00004963 *RHSExprs = OP->getRHS();
Hans Wennborg2f072b42011-06-09 17:06:51 +00004964 return true;
4965 }
4966 }
4967
4968 // Overloaded operator.
4969 if (CXXOperatorCallExpr *Call = dyn_cast<CXXOperatorCallExpr>(E)) {
4970 if (Call->getNumArgs() != 2)
4971 return false;
4972
4973 // Make sure this is really a binary operator that is safe to pass into
4974 // BinaryOperator::getOverloadedOpcode(), e.g. it's not a subscript op.
4975 OverloadedOperatorKind OO = Call->getOperator();
4976 if (OO < OO_Plus || OO > OO_Arrow)
4977 return false;
4978
4979 BinaryOperatorKind OpKind = BinaryOperator::getOverloadedOpcode(OO);
4980 if (IsArithmeticOp(OpKind)) {
4981 *Opcode = OpKind;
Richard Trieu33fc7572011-09-06 20:06:39 +00004982 *RHSExprs = Call->getArg(1);
Hans Wennborg2f072b42011-06-09 17:06:51 +00004983 return true;
4984 }
4985 }
4986
4987 return false;
4988}
4989
Hans Wennborg9cfdae32011-06-03 18:00:36 +00004990static bool IsLogicOp(BinaryOperatorKind Opc) {
4991 return (Opc >= BO_LT && Opc <= BO_NE) || (Opc >= BO_LAnd && Opc <= BO_LOr);
4992}
4993
Hans Wennborg2f072b42011-06-09 17:06:51 +00004994/// ExprLooksBoolean - Returns true if E looks boolean, i.e. it has boolean type
4995/// or is a logical expression such as (x==y) which has int type, but is
4996/// commonly interpreted as boolean.
4997static bool ExprLooksBoolean(Expr *E) {
4998 E = E->IgnoreParenImpCasts();
4999
5000 if (E->getType()->isBooleanType())
5001 return true;
5002 if (BinaryOperator *OP = dyn_cast<BinaryOperator>(E))
5003 return IsLogicOp(OP->getOpcode());
5004 if (UnaryOperator *OP = dyn_cast<UnaryOperator>(E))
5005 return OP->getOpcode() == UO_LNot;
5006
5007 return false;
5008}
5009
Hans Wennborg9cfdae32011-06-03 18:00:36 +00005010/// DiagnoseConditionalPrecedence - Emit a warning when a conditional operator
5011/// and binary operator are mixed in a way that suggests the programmer assumed
5012/// the conditional operator has higher precedence, for example:
5013/// "int x = a + someBinaryCondition ? 1 : 2".
5014static void DiagnoseConditionalPrecedence(Sema &Self,
5015 SourceLocation OpLoc,
Chandler Carruth43bc78d2011-06-16 01:05:08 +00005016 Expr *Condition,
Richard Trieu33fc7572011-09-06 20:06:39 +00005017 Expr *LHSExpr,
5018 Expr *RHSExpr) {
Hans Wennborg2f072b42011-06-09 17:06:51 +00005019 BinaryOperatorKind CondOpcode;
5020 Expr *CondRHS;
Hans Wennborg9cfdae32011-06-03 18:00:36 +00005021
Chandler Carruth43bc78d2011-06-16 01:05:08 +00005022 if (!IsArithmeticBinaryExpr(Condition, &CondOpcode, &CondRHS))
Hans Wennborg2f072b42011-06-09 17:06:51 +00005023 return;
5024 if (!ExprLooksBoolean(CondRHS))
5025 return;
Hans Wennborg9cfdae32011-06-03 18:00:36 +00005026
Hans Wennborg2f072b42011-06-09 17:06:51 +00005027 // The condition is an arithmetic binary expression, with a right-
5028 // hand side that looks boolean, so warn.
Hans Wennborg9cfdae32011-06-03 18:00:36 +00005029
Chandler Carruthf0b60d62011-06-16 01:05:14 +00005030 Self.Diag(OpLoc, diag::warn_precedence_conditional)
Chandler Carruth43bc78d2011-06-16 01:05:08 +00005031 << Condition->getSourceRange()
Hans Wennborg2f072b42011-06-09 17:06:51 +00005032 << BinaryOperator::getOpcodeStr(CondOpcode);
Hans Wennborg9cfdae32011-06-03 18:00:36 +00005033
Chandler Carruthf0b60d62011-06-16 01:05:14 +00005034 SuggestParentheses(Self, OpLoc,
5035 Self.PDiag(diag::note_precedence_conditional_silence)
5036 << BinaryOperator::getOpcodeStr(CondOpcode),
5037 SourceRange(Condition->getLocStart(), Condition->getLocEnd()));
Chandler Carruth9d5353c2011-06-21 23:04:18 +00005038
5039 SuggestParentheses(Self, OpLoc,
5040 Self.PDiag(diag::note_precedence_conditional_first),
Richard Trieu33fc7572011-09-06 20:06:39 +00005041 SourceRange(CondRHS->getLocStart(), RHSExpr->getLocEnd()));
Hans Wennborg9cfdae32011-06-03 18:00:36 +00005042}
5043
Steve Narofff69936d2007-09-16 03:34:24 +00005044/// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null
Reid Spencer5f016e22007-07-11 17:01:13 +00005045/// in the case of a the GNU conditional expr extension.
John McCall60d7b3a2010-08-24 06:29:42 +00005046ExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc,
John McCall56ca35d2011-02-17 10:25:35 +00005047 SourceLocation ColonLoc,
5048 Expr *CondExpr, Expr *LHSExpr,
5049 Expr *RHSExpr) {
Chris Lattnera21ddb32007-11-26 01:40:58 +00005050 // If this is the gnu "x ?: y" extension, analyze the types as though the LHS
5051 // was the condition.
John McCall56ca35d2011-02-17 10:25:35 +00005052 OpaqueValueExpr *opaqueValue = 0;
5053 Expr *commonExpr = 0;
5054 if (LHSExpr == 0) {
5055 commonExpr = CondExpr;
5056
5057 // We usually want to apply unary conversions *before* saving, except
5058 // in the special case of a C++ l-value conditional.
David Blaikie4e4d0842012-03-11 07:00:24 +00005059 if (!(getLangOpts().CPlusPlus
John McCall56ca35d2011-02-17 10:25:35 +00005060 && !commonExpr->isTypeDependent()
5061 && commonExpr->getValueKind() == RHSExpr->getValueKind()
5062 && commonExpr->isGLValue()
5063 && commonExpr->isOrdinaryOrBitFieldObject()
5064 && RHSExpr->isOrdinaryOrBitFieldObject()
5065 && Context.hasSameType(commonExpr->getType(), RHSExpr->getType()))) {
John Wiegley429bb272011-04-08 18:41:53 +00005066 ExprResult commonRes = UsualUnaryConversions(commonExpr);
5067 if (commonRes.isInvalid())
5068 return ExprError();
5069 commonExpr = commonRes.take();
John McCall56ca35d2011-02-17 10:25:35 +00005070 }
5071
5072 opaqueValue = new (Context) OpaqueValueExpr(commonExpr->getExprLoc(),
5073 commonExpr->getType(),
5074 commonExpr->getValueKind(),
Douglas Gregor97df54e2012-02-23 22:17:26 +00005075 commonExpr->getObjectKind(),
5076 commonExpr);
John McCall56ca35d2011-02-17 10:25:35 +00005077 LHSExpr = CondExpr = opaqueValue;
Fariborz Jahanianf9b949f2010-08-31 18:02:20 +00005078 }
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00005079
John McCallf89e55a2010-11-18 06:31:45 +00005080 ExprValueKind VK = VK_RValue;
John McCall09431682010-11-18 19:01:18 +00005081 ExprObjectKind OK = OK_Ordinary;
John Wiegley429bb272011-04-08 18:41:53 +00005082 ExprResult Cond = Owned(CondExpr), LHS = Owned(LHSExpr), RHS = Owned(RHSExpr);
5083 QualType result = CheckConditionalOperands(Cond, LHS, RHS,
John McCall56ca35d2011-02-17 10:25:35 +00005084 VK, OK, QuestionLoc);
John Wiegley429bb272011-04-08 18:41:53 +00005085 if (result.isNull() || Cond.isInvalid() || LHS.isInvalid() ||
5086 RHS.isInvalid())
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00005087 return ExprError();
5088
Hans Wennborg9cfdae32011-06-03 18:00:36 +00005089 DiagnoseConditionalPrecedence(*this, QuestionLoc, Cond.get(), LHS.get(),
5090 RHS.get());
5091
John McCall56ca35d2011-02-17 10:25:35 +00005092 if (!commonExpr)
John Wiegley429bb272011-04-08 18:41:53 +00005093 return Owned(new (Context) ConditionalOperator(Cond.take(), QuestionLoc,
5094 LHS.take(), ColonLoc,
5095 RHS.take(), result, VK, OK));
John McCall56ca35d2011-02-17 10:25:35 +00005096
5097 return Owned(new (Context)
John Wiegley429bb272011-04-08 18:41:53 +00005098 BinaryConditionalOperator(commonExpr, opaqueValue, Cond.take(), LHS.take(),
Richard Trieu67e29332011-08-02 04:35:43 +00005099 RHS.take(), QuestionLoc, ColonLoc, result, VK,
5100 OK));
Reid Spencer5f016e22007-07-11 17:01:13 +00005101}
5102
John McCalle4be87e2011-01-31 23:13:11 +00005103// checkPointerTypesForAssignment - This is a very tricky routine (despite
Mike Stumpeed9cac2009-02-19 03:04:26 +00005104// being closely modeled after the C99 spec:-). The odd characteristic of this
Reid Spencer5f016e22007-07-11 17:01:13 +00005105// routine is it effectively iqnores the qualifiers on the top level pointee.
5106// This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3].
5107// FIXME: add a couple examples in this comment.
John McCalle4be87e2011-01-31 23:13:11 +00005108static Sema::AssignConvertType
Richard Trieu1da27a12011-09-06 20:21:22 +00005109checkPointerTypesForAssignment(Sema &S, QualType LHSType, QualType RHSType) {
5110 assert(LHSType.isCanonical() && "LHS not canonicalized!");
5111 assert(RHSType.isCanonical() && "RHS not canonicalized!");
Mike Stumpeed9cac2009-02-19 03:04:26 +00005112
Reid Spencer5f016e22007-07-11 17:01:13 +00005113 // get the "pointed to" type (ignoring qualifiers at the top level)
John McCall86c05f32011-02-01 00:10:29 +00005114 const Type *lhptee, *rhptee;
5115 Qualifiers lhq, rhq;
Richard Trieu1da27a12011-09-06 20:21:22 +00005116 llvm::tie(lhptee, lhq) = cast<PointerType>(LHSType)->getPointeeType().split();
5117 llvm::tie(rhptee, rhq) = cast<PointerType>(RHSType)->getPointeeType().split();
Mike Stumpeed9cac2009-02-19 03:04:26 +00005118
John McCalle4be87e2011-01-31 23:13:11 +00005119 Sema::AssignConvertType ConvTy = Sema::Compatible;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005120
5121 // C99 6.5.16.1p1: This following citation is common to constraints
5122 // 3 & 4 (below). ...and the type *pointed to* by the left has all the
5123 // qualifiers of the type *pointed to* by the right;
John McCall86c05f32011-02-01 00:10:29 +00005124 Qualifiers lq;
5125
John McCallf85e1932011-06-15 23:02:42 +00005126 // As a special case, 'non-__weak A *' -> 'non-__weak const *' is okay.
5127 if (lhq.getObjCLifetime() != rhq.getObjCLifetime() &&
5128 lhq.compatiblyIncludesObjCLifetime(rhq)) {
5129 // Ignore lifetime for further calculation.
5130 lhq.removeObjCLifetime();
5131 rhq.removeObjCLifetime();
5132 }
5133
John McCall86c05f32011-02-01 00:10:29 +00005134 if (!lhq.compatiblyIncludes(rhq)) {
5135 // Treat address-space mismatches as fatal. TODO: address subspaces
5136 if (lhq.getAddressSpace() != rhq.getAddressSpace())
5137 ConvTy = Sema::IncompatiblePointerDiscardsQualifiers;
5138
John McCallf85e1932011-06-15 23:02:42 +00005139 // It's okay to add or remove GC or lifetime qualifiers when converting to
John McCall22348732011-03-26 02:56:45 +00005140 // and from void*.
John McCall200fa532012-02-08 00:46:36 +00005141 else if (lhq.withoutObjCGCAttr().withoutObjCLifetime()
John McCallf85e1932011-06-15 23:02:42 +00005142 .compatiblyIncludes(
John McCall200fa532012-02-08 00:46:36 +00005143 rhq.withoutObjCGCAttr().withoutObjCLifetime())
John McCall22348732011-03-26 02:56:45 +00005144 && (lhptee->isVoidType() || rhptee->isVoidType()))
5145 ; // keep old
5146
John McCallf85e1932011-06-15 23:02:42 +00005147 // Treat lifetime mismatches as fatal.
5148 else if (lhq.getObjCLifetime() != rhq.getObjCLifetime())
5149 ConvTy = Sema::IncompatiblePointerDiscardsQualifiers;
5150
John McCall86c05f32011-02-01 00:10:29 +00005151 // For GCC compatibility, other qualifier mismatches are treated
5152 // as still compatible in C.
5153 else ConvTy = Sema::CompatiblePointerDiscardsQualifiers;
5154 }
Reid Spencer5f016e22007-07-11 17:01:13 +00005155
Mike Stumpeed9cac2009-02-19 03:04:26 +00005156 // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or
5157 // incomplete type and the other is a pointer to a qualified or unqualified
Reid Spencer5f016e22007-07-11 17:01:13 +00005158 // version of void...
Chris Lattnerbfe639e2008-01-03 22:56:36 +00005159 if (lhptee->isVoidType()) {
Chris Lattnerd805bec2008-04-02 06:59:01 +00005160 if (rhptee->isIncompleteOrObjectType())
Chris Lattner5cf216b2008-01-04 18:04:52 +00005161 return ConvTy;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005162
Chris Lattnerbfe639e2008-01-03 22:56:36 +00005163 // As an extension, we allow cast to/from void* to function pointer.
Chris Lattnerd805bec2008-04-02 06:59:01 +00005164 assert(rhptee->isFunctionType());
John McCalle4be87e2011-01-31 23:13:11 +00005165 return Sema::FunctionVoidPointer;
Chris Lattnerbfe639e2008-01-03 22:56:36 +00005166 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00005167
Chris Lattnerbfe639e2008-01-03 22:56:36 +00005168 if (rhptee->isVoidType()) {
Chris Lattnerd805bec2008-04-02 06:59:01 +00005169 if (lhptee->isIncompleteOrObjectType())
Chris Lattner5cf216b2008-01-04 18:04:52 +00005170 return ConvTy;
Chris Lattnerbfe639e2008-01-03 22:56:36 +00005171
5172 // As an extension, we allow cast to/from void* to function pointer.
Chris Lattnerd805bec2008-04-02 06:59:01 +00005173 assert(lhptee->isFunctionType());
John McCalle4be87e2011-01-31 23:13:11 +00005174 return Sema::FunctionVoidPointer;
Chris Lattnerbfe639e2008-01-03 22:56:36 +00005175 }
John McCall86c05f32011-02-01 00:10:29 +00005176
Mike Stumpeed9cac2009-02-19 03:04:26 +00005177 // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or
Reid Spencer5f016e22007-07-11 17:01:13 +00005178 // unqualified versions of compatible types, ...
John McCall86c05f32011-02-01 00:10:29 +00005179 QualType ltrans = QualType(lhptee, 0), rtrans = QualType(rhptee, 0);
5180 if (!S.Context.typesAreCompatible(ltrans, rtrans)) {
Eli Friedmanf05c05d2009-03-22 23:59:44 +00005181 // Check if the pointee types are compatible ignoring the sign.
5182 // We explicitly check for char so that we catch "char" vs
5183 // "unsigned char" on systems where "char" is unsigned.
Chris Lattner6a2b9262009-10-17 20:33:28 +00005184 if (lhptee->isCharType())
John McCall86c05f32011-02-01 00:10:29 +00005185 ltrans = S.Context.UnsignedCharTy;
Douglas Gregorf6094622010-07-23 15:58:24 +00005186 else if (lhptee->hasSignedIntegerRepresentation())
John McCall86c05f32011-02-01 00:10:29 +00005187 ltrans = S.Context.getCorrespondingUnsignedType(ltrans);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00005188
Chris Lattner6a2b9262009-10-17 20:33:28 +00005189 if (rhptee->isCharType())
John McCall86c05f32011-02-01 00:10:29 +00005190 rtrans = S.Context.UnsignedCharTy;
Douglas Gregorf6094622010-07-23 15:58:24 +00005191 else if (rhptee->hasSignedIntegerRepresentation())
John McCall86c05f32011-02-01 00:10:29 +00005192 rtrans = S.Context.getCorrespondingUnsignedType(rtrans);
Chris Lattner6a2b9262009-10-17 20:33:28 +00005193
John McCall86c05f32011-02-01 00:10:29 +00005194 if (ltrans == rtrans) {
Eli Friedmanf05c05d2009-03-22 23:59:44 +00005195 // Types are compatible ignoring the sign. Qualifier incompatibility
5196 // takes priority over sign incompatibility because the sign
5197 // warning can be disabled.
John McCalle4be87e2011-01-31 23:13:11 +00005198 if (ConvTy != Sema::Compatible)
Eli Friedmanf05c05d2009-03-22 23:59:44 +00005199 return ConvTy;
John McCall86c05f32011-02-01 00:10:29 +00005200
John McCalle4be87e2011-01-31 23:13:11 +00005201 return Sema::IncompatiblePointerSign;
Eli Friedmanf05c05d2009-03-22 23:59:44 +00005202 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00005203
Fariborz Jahanian36a862f2009-11-07 20:20:40 +00005204 // If we are a multi-level pointer, it's possible that our issue is simply
5205 // one of qualification - e.g. char ** -> const char ** is not allowed. If
5206 // the eventual target type is the same and the pointers have the same
5207 // level of indirection, this must be the issue.
John McCalle4be87e2011-01-31 23:13:11 +00005208 if (isa<PointerType>(lhptee) && isa<PointerType>(rhptee)) {
Fariborz Jahanian36a862f2009-11-07 20:20:40 +00005209 do {
John McCall86c05f32011-02-01 00:10:29 +00005210 lhptee = cast<PointerType>(lhptee)->getPointeeType().getTypePtr();
5211 rhptee = cast<PointerType>(rhptee)->getPointeeType().getTypePtr();
John McCalle4be87e2011-01-31 23:13:11 +00005212 } while (isa<PointerType>(lhptee) && isa<PointerType>(rhptee));
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00005213
John McCall86c05f32011-02-01 00:10:29 +00005214 if (lhptee == rhptee)
John McCalle4be87e2011-01-31 23:13:11 +00005215 return Sema::IncompatibleNestedPointerQualifiers;
Fariborz Jahanian36a862f2009-11-07 20:20:40 +00005216 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00005217
Eli Friedmanf05c05d2009-03-22 23:59:44 +00005218 // General pointer incompatibility takes priority over qualifiers.
John McCalle4be87e2011-01-31 23:13:11 +00005219 return Sema::IncompatiblePointer;
Eli Friedmanf05c05d2009-03-22 23:59:44 +00005220 }
David Blaikie4e4d0842012-03-11 07:00:24 +00005221 if (!S.getLangOpts().CPlusPlus &&
Fariborz Jahanian53c81672011-10-05 00:05:34 +00005222 S.IsNoReturnConversion(ltrans, rtrans, ltrans))
5223 return Sema::IncompatiblePointer;
Chris Lattner5cf216b2008-01-04 18:04:52 +00005224 return ConvTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00005225}
5226
John McCalle4be87e2011-01-31 23:13:11 +00005227/// checkBlockPointerTypesForAssignment - This routine determines whether two
Steve Naroff1c7d0672008-09-04 15:10:53 +00005228/// block pointer types are compatible or whether a block and normal pointer
5229/// are compatible. It is more restrict than comparing two function pointer
5230// types.
John McCalle4be87e2011-01-31 23:13:11 +00005231static Sema::AssignConvertType
Richard Trieu1da27a12011-09-06 20:21:22 +00005232checkBlockPointerTypesForAssignment(Sema &S, QualType LHSType,
5233 QualType RHSType) {
5234 assert(LHSType.isCanonical() && "LHS not canonicalized!");
5235 assert(RHSType.isCanonical() && "RHS not canonicalized!");
John McCalle4be87e2011-01-31 23:13:11 +00005236
Steve Naroff1c7d0672008-09-04 15:10:53 +00005237 QualType lhptee, rhptee;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005238
Steve Naroff1c7d0672008-09-04 15:10:53 +00005239 // get the "pointed to" type (ignoring qualifiers at the top level)
Richard Trieu1da27a12011-09-06 20:21:22 +00005240 lhptee = cast<BlockPointerType>(LHSType)->getPointeeType();
5241 rhptee = cast<BlockPointerType>(RHSType)->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00005242
John McCalle4be87e2011-01-31 23:13:11 +00005243 // In C++, the types have to match exactly.
David Blaikie4e4d0842012-03-11 07:00:24 +00005244 if (S.getLangOpts().CPlusPlus)
John McCalle4be87e2011-01-31 23:13:11 +00005245 return Sema::IncompatibleBlockPointer;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005246
John McCalle4be87e2011-01-31 23:13:11 +00005247 Sema::AssignConvertType ConvTy = Sema::Compatible;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005248
Steve Naroff1c7d0672008-09-04 15:10:53 +00005249 // For blocks we enforce that qualifiers are identical.
John McCalle4be87e2011-01-31 23:13:11 +00005250 if (lhptee.getLocalQualifiers() != rhptee.getLocalQualifiers())
5251 ConvTy = Sema::CompatiblePointerDiscardsQualifiers;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005252
Richard Trieu1da27a12011-09-06 20:21:22 +00005253 if (!S.Context.typesAreBlockPointerCompatible(LHSType, RHSType))
John McCalle4be87e2011-01-31 23:13:11 +00005254 return Sema::IncompatibleBlockPointer;
5255
Steve Naroff1c7d0672008-09-04 15:10:53 +00005256 return ConvTy;
5257}
5258
John McCalle4be87e2011-01-31 23:13:11 +00005259/// checkObjCPointerTypesForAssignment - Compares two objective-c pointer types
Fariborz Jahanian52efc3f2009-12-08 18:24:49 +00005260/// for assignment compatibility.
John McCalle4be87e2011-01-31 23:13:11 +00005261static Sema::AssignConvertType
Richard Trieu1da27a12011-09-06 20:21:22 +00005262checkObjCPointerTypesForAssignment(Sema &S, QualType LHSType,
5263 QualType RHSType) {
5264 assert(LHSType.isCanonical() && "LHS was not canonicalized!");
5265 assert(RHSType.isCanonical() && "RHS was not canonicalized!");
John McCalle4be87e2011-01-31 23:13:11 +00005266
Richard Trieu1da27a12011-09-06 20:21:22 +00005267 if (LHSType->isObjCBuiltinType()) {
Fariborz Jahaniand4c60902010-03-19 18:06:10 +00005268 // Class is not compatible with ObjC object pointers.
Richard Trieu1da27a12011-09-06 20:21:22 +00005269 if (LHSType->isObjCClassType() && !RHSType->isObjCBuiltinType() &&
5270 !RHSType->isObjCQualifiedClassType())
John McCalle4be87e2011-01-31 23:13:11 +00005271 return Sema::IncompatiblePointer;
5272 return Sema::Compatible;
Fariborz Jahaniand4c60902010-03-19 18:06:10 +00005273 }
Richard Trieu1da27a12011-09-06 20:21:22 +00005274 if (RHSType->isObjCBuiltinType()) {
Richard Trieu1da27a12011-09-06 20:21:22 +00005275 if (RHSType->isObjCClassType() && !LHSType->isObjCBuiltinType() &&
5276 !LHSType->isObjCQualifiedClassType())
Fariborz Jahanian412a4962011-09-15 20:40:18 +00005277 return Sema::IncompatiblePointer;
John McCalle4be87e2011-01-31 23:13:11 +00005278 return Sema::Compatible;
Fariborz Jahaniand4c60902010-03-19 18:06:10 +00005279 }
Richard Trieu1da27a12011-09-06 20:21:22 +00005280 QualType lhptee = LHSType->getAs<ObjCObjectPointerType>()->getPointeeType();
5281 QualType rhptee = RHSType->getAs<ObjCObjectPointerType>()->getPointeeType();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00005282
Fariborz Jahanianf2b4f7b2012-01-12 22:12:08 +00005283 if (!lhptee.isAtLeastAsQualifiedAs(rhptee) &&
5284 // make an exception for id<P>
5285 !LHSType->isObjCQualifiedIdType())
John McCalle4be87e2011-01-31 23:13:11 +00005286 return Sema::CompatiblePointerDiscardsQualifiers;
5287
Richard Trieu1da27a12011-09-06 20:21:22 +00005288 if (S.Context.typesAreCompatible(LHSType, RHSType))
John McCalle4be87e2011-01-31 23:13:11 +00005289 return Sema::Compatible;
Richard Trieu1da27a12011-09-06 20:21:22 +00005290 if (LHSType->isObjCQualifiedIdType() || RHSType->isObjCQualifiedIdType())
John McCalle4be87e2011-01-31 23:13:11 +00005291 return Sema::IncompatibleObjCQualifiedId;
5292 return Sema::IncompatiblePointer;
Fariborz Jahanian52efc3f2009-12-08 18:24:49 +00005293}
5294
John McCall1c23e912010-11-16 02:32:08 +00005295Sema::AssignConvertType
Douglas Gregorb608b982011-01-28 02:26:04 +00005296Sema::CheckAssignmentConstraints(SourceLocation Loc,
Richard Trieu1da27a12011-09-06 20:21:22 +00005297 QualType LHSType, QualType RHSType) {
John McCall1c23e912010-11-16 02:32:08 +00005298 // Fake up an opaque expression. We don't actually care about what
5299 // cast operations are required, so if CheckAssignmentConstraints
5300 // adds casts to this they'll be wasted, but fortunately that doesn't
5301 // usually happen on valid code.
Richard Trieu1da27a12011-09-06 20:21:22 +00005302 OpaqueValueExpr RHSExpr(Loc, RHSType, VK_RValue);
5303 ExprResult RHSPtr = &RHSExpr;
John McCall1c23e912010-11-16 02:32:08 +00005304 CastKind K = CK_Invalid;
5305
Richard Trieu1da27a12011-09-06 20:21:22 +00005306 return CheckAssignmentConstraints(LHSType, RHSPtr, K);
John McCall1c23e912010-11-16 02:32:08 +00005307}
5308
Mike Stumpeed9cac2009-02-19 03:04:26 +00005309/// CheckAssignmentConstraints (C99 6.5.16) - This routine currently
5310/// has code to accommodate several GCC extensions when type checking
Reid Spencer5f016e22007-07-11 17:01:13 +00005311/// pointers. Here are some objectionable examples that GCC considers warnings:
5312///
5313/// int a, *pint;
5314/// short *pshort;
5315/// struct foo *pfoo;
5316///
5317/// pint = pshort; // warning: assignment from incompatible pointer type
5318/// a = pint; // warning: assignment makes integer from pointer without a cast
5319/// pint = a; // warning: assignment makes pointer from integer without a cast
5320/// pint = pfoo; // warning: assignment from incompatible pointer type
5321///
5322/// As a result, the code for dealing with pointers is more complex than the
Mike Stumpeed9cac2009-02-19 03:04:26 +00005323/// C99 spec dictates.
Reid Spencer5f016e22007-07-11 17:01:13 +00005324///
John McCalldaa8e4e2010-11-15 09:13:47 +00005325/// Sets 'Kind' for any result kind except Incompatible.
Chris Lattner5cf216b2008-01-04 18:04:52 +00005326Sema::AssignConvertType
Richard Trieufacef2e2011-09-06 20:30:53 +00005327Sema::CheckAssignmentConstraints(QualType LHSType, ExprResult &RHS,
John McCalldaa8e4e2010-11-15 09:13:47 +00005328 CastKind &Kind) {
Richard Trieufacef2e2011-09-06 20:30:53 +00005329 QualType RHSType = RHS.get()->getType();
5330 QualType OrigLHSType = LHSType;
John McCall1c23e912010-11-16 02:32:08 +00005331
Chris Lattnerfc144e22008-01-04 23:18:45 +00005332 // Get canonical types. We're not formatting these types, just comparing
5333 // them.
Richard Trieufacef2e2011-09-06 20:30:53 +00005334 LHSType = Context.getCanonicalType(LHSType).getUnqualifiedType();
5335 RHSType = Context.getCanonicalType(RHSType).getUnqualifiedType();
Eli Friedmanf8f873d2008-05-30 18:07:22 +00005336
Eli Friedmanb001de72011-10-06 23:00:33 +00005337
John McCallb6cfa242011-01-31 22:28:28 +00005338 // Common case: no conversion required.
Richard Trieufacef2e2011-09-06 20:30:53 +00005339 if (LHSType == RHSType) {
John McCalldaa8e4e2010-11-15 09:13:47 +00005340 Kind = CK_NoOp;
John McCalldaa8e4e2010-11-15 09:13:47 +00005341 return Compatible;
David Chisnall0f436562009-08-17 16:35:33 +00005342 }
5343
David Chisnall7a7ee302012-01-16 17:27:18 +00005344 if (const AtomicType *AtomicTy = dyn_cast<AtomicType>(LHSType)) {
5345 if (AtomicTy->getValueType() == RHSType) {
5346 Kind = CK_NonAtomicToAtomic;
5347 return Compatible;
5348 }
5349 }
5350
5351 if (const AtomicType *AtomicTy = dyn_cast<AtomicType>(RHSType)) {
5352 if (AtomicTy->getValueType() == LHSType) {
5353 Kind = CK_AtomicToNonAtomic;
5354 return Compatible;
5355 }
5356 }
5357
5358
Douglas Gregor9d293df2008-10-28 00:22:11 +00005359 // If the left-hand side is a reference type, then we are in a
5360 // (rare!) case where we've allowed the use of references in C,
5361 // e.g., as a parameter type in a built-in function. In this case,
5362 // just make sure that the type referenced is compatible with the
5363 // right-hand side type. The caller is responsible for adjusting
Richard Trieufacef2e2011-09-06 20:30:53 +00005364 // LHSType so that the resulting expression does not have reference
Douglas Gregor9d293df2008-10-28 00:22:11 +00005365 // type.
Richard Trieufacef2e2011-09-06 20:30:53 +00005366 if (const ReferenceType *LHSTypeRef = LHSType->getAs<ReferenceType>()) {
5367 if (Context.typesAreCompatible(LHSTypeRef->getPointeeType(), RHSType)) {
John McCalldaa8e4e2010-11-15 09:13:47 +00005368 Kind = CK_LValueBitCast;
Anders Carlsson793680e2007-10-12 23:56:29 +00005369 return Compatible;
John McCalldaa8e4e2010-11-15 09:13:47 +00005370 }
Chris Lattnerfc144e22008-01-04 23:18:45 +00005371 return Incompatible;
Fariborz Jahanian411f3732007-12-19 17:45:58 +00005372 }
John McCallb6cfa242011-01-31 22:28:28 +00005373
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00005374 // Allow scalar to ExtVector assignments, and assignments of an ExtVector type
5375 // to the same ExtVector type.
Richard Trieufacef2e2011-09-06 20:30:53 +00005376 if (LHSType->isExtVectorType()) {
5377 if (RHSType->isExtVectorType())
John McCalldaa8e4e2010-11-15 09:13:47 +00005378 return Incompatible;
Richard Trieufacef2e2011-09-06 20:30:53 +00005379 if (RHSType->isArithmeticType()) {
John McCall1c23e912010-11-16 02:32:08 +00005380 // CK_VectorSplat does T -> vector T, so first cast to the
5381 // element type.
Richard Trieufacef2e2011-09-06 20:30:53 +00005382 QualType elType = cast<ExtVectorType>(LHSType)->getElementType();
5383 if (elType != RHSType) {
John McCalla180f042011-10-06 23:25:11 +00005384 Kind = PrepareScalarCast(RHS, elType);
Richard Trieufacef2e2011-09-06 20:30:53 +00005385 RHS = ImpCastExprToType(RHS.take(), elType, Kind);
John McCall1c23e912010-11-16 02:32:08 +00005386 }
5387 Kind = CK_VectorSplat;
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00005388 return Compatible;
John McCalldaa8e4e2010-11-15 09:13:47 +00005389 }
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00005390 }
Mike Stump1eb44332009-09-09 15:08:12 +00005391
John McCallb6cfa242011-01-31 22:28:28 +00005392 // Conversions to or from vector type.
Richard Trieufacef2e2011-09-06 20:30:53 +00005393 if (LHSType->isVectorType() || RHSType->isVectorType()) {
5394 if (LHSType->isVectorType() && RHSType->isVectorType()) {
Bob Wilsonde3deea2010-12-02 00:25:15 +00005395 // Allow assignments of an AltiVec vector type to an equivalent GCC
5396 // vector type and vice versa
Richard Trieufacef2e2011-09-06 20:30:53 +00005397 if (Context.areCompatibleVectorTypes(LHSType, RHSType)) {
Bob Wilsonde3deea2010-12-02 00:25:15 +00005398 Kind = CK_BitCast;
5399 return Compatible;
5400 }
5401
Douglas Gregor255210e2010-08-06 10:14:59 +00005402 // If we are allowing lax vector conversions, and LHS and RHS are both
5403 // vectors, the total size only needs to be the same. This is a bitcast;
5404 // no bits are changed but the result type is different.
David Blaikie4e4d0842012-03-11 07:00:24 +00005405 if (getLangOpts().LaxVectorConversions &&
Richard Trieufacef2e2011-09-06 20:30:53 +00005406 (Context.getTypeSize(LHSType) == Context.getTypeSize(RHSType))) {
John McCall0c6d28d2010-11-15 10:08:00 +00005407 Kind = CK_BitCast;
Anders Carlssonb0f90cc2009-01-30 23:17:46 +00005408 return IncompatibleVectors;
John McCalldaa8e4e2010-11-15 09:13:47 +00005409 }
Chris Lattnere8b3e962008-01-04 23:32:24 +00005410 }
5411 return Incompatible;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005412 }
Eli Friedmanf8f873d2008-05-30 18:07:22 +00005413
John McCallb6cfa242011-01-31 22:28:28 +00005414 // Arithmetic conversions.
Richard Trieufacef2e2011-09-06 20:30:53 +00005415 if (LHSType->isArithmeticType() && RHSType->isArithmeticType() &&
David Blaikie4e4d0842012-03-11 07:00:24 +00005416 !(getLangOpts().CPlusPlus && LHSType->isEnumeralType())) {
John McCalla180f042011-10-06 23:25:11 +00005417 Kind = PrepareScalarCast(RHS, LHSType);
Reid Spencer5f016e22007-07-11 17:01:13 +00005418 return Compatible;
John McCalldaa8e4e2010-11-15 09:13:47 +00005419 }
Eli Friedmanf8f873d2008-05-30 18:07:22 +00005420
John McCallb6cfa242011-01-31 22:28:28 +00005421 // Conversions to normal pointers.
Richard Trieufacef2e2011-09-06 20:30:53 +00005422 if (const PointerType *LHSPointer = dyn_cast<PointerType>(LHSType)) {
John McCallb6cfa242011-01-31 22:28:28 +00005423 // U* -> T*
Richard Trieufacef2e2011-09-06 20:30:53 +00005424 if (isa<PointerType>(RHSType)) {
John McCalldaa8e4e2010-11-15 09:13:47 +00005425 Kind = CK_BitCast;
Richard Trieufacef2e2011-09-06 20:30:53 +00005426 return checkPointerTypesForAssignment(*this, LHSType, RHSType);
John McCalldaa8e4e2010-11-15 09:13:47 +00005427 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00005428
John McCallb6cfa242011-01-31 22:28:28 +00005429 // int -> T*
Richard Trieufacef2e2011-09-06 20:30:53 +00005430 if (RHSType->isIntegerType()) {
John McCallb6cfa242011-01-31 22:28:28 +00005431 Kind = CK_IntegralToPointer; // FIXME: null?
5432 return IntToPointer;
Steve Naroff14108da2009-07-10 23:34:53 +00005433 }
John McCallb6cfa242011-01-31 22:28:28 +00005434
5435 // C pointers are not compatible with ObjC object pointers,
5436 // with two exceptions:
Richard Trieufacef2e2011-09-06 20:30:53 +00005437 if (isa<ObjCObjectPointerType>(RHSType)) {
John McCallb6cfa242011-01-31 22:28:28 +00005438 // - conversions to void*
Richard Trieufacef2e2011-09-06 20:30:53 +00005439 if (LHSPointer->getPointeeType()->isVoidType()) {
John McCall1d9b3b22011-09-09 05:25:32 +00005440 Kind = CK_BitCast;
John McCallb6cfa242011-01-31 22:28:28 +00005441 return Compatible;
5442 }
5443
5444 // - conversions from 'Class' to the redefinition type
Richard Trieufacef2e2011-09-06 20:30:53 +00005445 if (RHSType->isObjCClassType() &&
5446 Context.hasSameType(LHSType,
Douglas Gregor01a4cf12011-08-11 20:58:55 +00005447 Context.getObjCClassRedefinitionType())) {
John McCalldaa8e4e2010-11-15 09:13:47 +00005448 Kind = CK_BitCast;
Douglas Gregor63a94902008-11-27 00:44:28 +00005449 return Compatible;
John McCalldaa8e4e2010-11-15 09:13:47 +00005450 }
Douglas Gregorc737acb2011-09-27 16:10:05 +00005451
John McCallb6cfa242011-01-31 22:28:28 +00005452 Kind = CK_BitCast;
5453 return IncompatiblePointer;
5454 }
5455
5456 // U^ -> void*
Richard Trieufacef2e2011-09-06 20:30:53 +00005457 if (RHSType->getAs<BlockPointerType>()) {
5458 if (LHSPointer->getPointeeType()->isVoidType()) {
John McCallb6cfa242011-01-31 22:28:28 +00005459 Kind = CK_BitCast;
Steve Naroffb4406862008-09-29 18:10:17 +00005460 return Compatible;
John McCalldaa8e4e2010-11-15 09:13:47 +00005461 }
Steve Naroffb4406862008-09-29 18:10:17 +00005462 }
John McCallb6cfa242011-01-31 22:28:28 +00005463
Steve Naroff1c7d0672008-09-04 15:10:53 +00005464 return Incompatible;
5465 }
5466
John McCallb6cfa242011-01-31 22:28:28 +00005467 // Conversions to block pointers.
Richard Trieufacef2e2011-09-06 20:30:53 +00005468 if (isa<BlockPointerType>(LHSType)) {
John McCallb6cfa242011-01-31 22:28:28 +00005469 // U^ -> T^
Richard Trieufacef2e2011-09-06 20:30:53 +00005470 if (RHSType->isBlockPointerType()) {
John McCall1d9b3b22011-09-09 05:25:32 +00005471 Kind = CK_BitCast;
Richard Trieufacef2e2011-09-06 20:30:53 +00005472 return checkBlockPointerTypesForAssignment(*this, LHSType, RHSType);
John McCallb6cfa242011-01-31 22:28:28 +00005473 }
5474
5475 // int or null -> T^
Richard Trieufacef2e2011-09-06 20:30:53 +00005476 if (RHSType->isIntegerType()) {
John McCalldaa8e4e2010-11-15 09:13:47 +00005477 Kind = CK_IntegralToPointer; // FIXME: null
Eli Friedmand8f4f432009-02-25 04:20:42 +00005478 return IntToBlockPointer;
John McCalldaa8e4e2010-11-15 09:13:47 +00005479 }
5480
John McCallb6cfa242011-01-31 22:28:28 +00005481 // id -> T^
David Blaikie4e4d0842012-03-11 07:00:24 +00005482 if (getLangOpts().ObjC1 && RHSType->isObjCIdType()) {
John McCallb6cfa242011-01-31 22:28:28 +00005483 Kind = CK_AnyPointerToBlockPointerCast;
Steve Naroffb4406862008-09-29 18:10:17 +00005484 return Compatible;
John McCallb6cfa242011-01-31 22:28:28 +00005485 }
Steve Naroffb4406862008-09-29 18:10:17 +00005486
John McCallb6cfa242011-01-31 22:28:28 +00005487 // void* -> T^
Richard Trieufacef2e2011-09-06 20:30:53 +00005488 if (const PointerType *RHSPT = RHSType->getAs<PointerType>())
John McCallb6cfa242011-01-31 22:28:28 +00005489 if (RHSPT->getPointeeType()->isVoidType()) {
5490 Kind = CK_AnyPointerToBlockPointerCast;
Douglas Gregor63a94902008-11-27 00:44:28 +00005491 return Compatible;
John McCallb6cfa242011-01-31 22:28:28 +00005492 }
John McCalldaa8e4e2010-11-15 09:13:47 +00005493
Chris Lattnerfc144e22008-01-04 23:18:45 +00005494 return Incompatible;
5495 }
5496
John McCallb6cfa242011-01-31 22:28:28 +00005497 // Conversions to Objective-C pointers.
Richard Trieufacef2e2011-09-06 20:30:53 +00005498 if (isa<ObjCObjectPointerType>(LHSType)) {
John McCallb6cfa242011-01-31 22:28:28 +00005499 // A* -> B*
Richard Trieufacef2e2011-09-06 20:30:53 +00005500 if (RHSType->isObjCObjectPointerType()) {
John McCallb6cfa242011-01-31 22:28:28 +00005501 Kind = CK_BitCast;
Fariborz Jahanian04e5a252011-07-07 18:55:47 +00005502 Sema::AssignConvertType result =
Richard Trieufacef2e2011-09-06 20:30:53 +00005503 checkObjCPointerTypesForAssignment(*this, LHSType, RHSType);
David Blaikie4e4d0842012-03-11 07:00:24 +00005504 if (getLangOpts().ObjCAutoRefCount &&
Fariborz Jahanian04e5a252011-07-07 18:55:47 +00005505 result == Compatible &&
Richard Trieufacef2e2011-09-06 20:30:53 +00005506 !CheckObjCARCUnavailableWeakConversion(OrigLHSType, RHSType))
Fariborz Jahanian7a084ec2011-07-07 23:04:17 +00005507 result = IncompatibleObjCWeakRef;
Fariborz Jahanian04e5a252011-07-07 18:55:47 +00005508 return result;
John McCallb6cfa242011-01-31 22:28:28 +00005509 }
5510
5511 // int or null -> A*
Richard Trieufacef2e2011-09-06 20:30:53 +00005512 if (RHSType->isIntegerType()) {
John McCalldaa8e4e2010-11-15 09:13:47 +00005513 Kind = CK_IntegralToPointer; // FIXME: null
Steve Naroff14108da2009-07-10 23:34:53 +00005514 return IntToPointer;
John McCalldaa8e4e2010-11-15 09:13:47 +00005515 }
5516
John McCallb6cfa242011-01-31 22:28:28 +00005517 // In general, C pointers are not compatible with ObjC object pointers,
5518 // with two exceptions:
Richard Trieufacef2e2011-09-06 20:30:53 +00005519 if (isa<PointerType>(RHSType)) {
John McCall1d9b3b22011-09-09 05:25:32 +00005520 Kind = CK_CPointerToObjCPointerCast;
5521
John McCallb6cfa242011-01-31 22:28:28 +00005522 // - conversions from 'void*'
Richard Trieufacef2e2011-09-06 20:30:53 +00005523 if (RHSType->isVoidPointerType()) {
Steve Naroff67ef8ea2009-07-20 17:56:53 +00005524 return Compatible;
John McCallb6cfa242011-01-31 22:28:28 +00005525 }
5526
5527 // - conversions to 'Class' from its redefinition type
Richard Trieufacef2e2011-09-06 20:30:53 +00005528 if (LHSType->isObjCClassType() &&
5529 Context.hasSameType(RHSType,
Douglas Gregor01a4cf12011-08-11 20:58:55 +00005530 Context.getObjCClassRedefinitionType())) {
John McCallb6cfa242011-01-31 22:28:28 +00005531 return Compatible;
5532 }
5533
Steve Naroff67ef8ea2009-07-20 17:56:53 +00005534 return IncompatiblePointer;
Steve Naroff14108da2009-07-10 23:34:53 +00005535 }
John McCallb6cfa242011-01-31 22:28:28 +00005536
5537 // T^ -> A*
Richard Trieufacef2e2011-09-06 20:30:53 +00005538 if (RHSType->isBlockPointerType()) {
John McCalldc05b112011-09-10 01:16:55 +00005539 maybeExtendBlockObject(*this, RHS);
John McCall1d9b3b22011-09-09 05:25:32 +00005540 Kind = CK_BlockPointerToObjCPointerCast;
Steve Naroff14108da2009-07-10 23:34:53 +00005541 return Compatible;
John McCallb6cfa242011-01-31 22:28:28 +00005542 }
5543
Steve Naroff14108da2009-07-10 23:34:53 +00005544 return Incompatible;
5545 }
John McCallb6cfa242011-01-31 22:28:28 +00005546
5547 // Conversions from pointers that are not covered by the above.
Richard Trieufacef2e2011-09-06 20:30:53 +00005548 if (isa<PointerType>(RHSType)) {
John McCallb6cfa242011-01-31 22:28:28 +00005549 // T* -> _Bool
Richard Trieufacef2e2011-09-06 20:30:53 +00005550 if (LHSType == Context.BoolTy) {
John McCalldaa8e4e2010-11-15 09:13:47 +00005551 Kind = CK_PointerToBoolean;
Eli Friedmanf8f873d2008-05-30 18:07:22 +00005552 return Compatible;
John McCalldaa8e4e2010-11-15 09:13:47 +00005553 }
Eli Friedmanf8f873d2008-05-30 18:07:22 +00005554
John McCallb6cfa242011-01-31 22:28:28 +00005555 // T* -> int
Richard Trieufacef2e2011-09-06 20:30:53 +00005556 if (LHSType->isIntegerType()) {
John McCalldaa8e4e2010-11-15 09:13:47 +00005557 Kind = CK_PointerToIntegral;
Chris Lattnerb7b61152008-01-04 18:22:42 +00005558 return PointerToInt;
John McCalldaa8e4e2010-11-15 09:13:47 +00005559 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00005560
Chris Lattnerfc144e22008-01-04 23:18:45 +00005561 return Incompatible;
Chris Lattnerfc144e22008-01-04 23:18:45 +00005562 }
John McCallb6cfa242011-01-31 22:28:28 +00005563
5564 // Conversions from Objective-C pointers that are not covered by the above.
Richard Trieufacef2e2011-09-06 20:30:53 +00005565 if (isa<ObjCObjectPointerType>(RHSType)) {
John McCallb6cfa242011-01-31 22:28:28 +00005566 // T* -> _Bool
Richard Trieufacef2e2011-09-06 20:30:53 +00005567 if (LHSType == Context.BoolTy) {
John McCalldaa8e4e2010-11-15 09:13:47 +00005568 Kind = CK_PointerToBoolean;
Steve Naroff14108da2009-07-10 23:34:53 +00005569 return Compatible;
John McCalldaa8e4e2010-11-15 09:13:47 +00005570 }
Steve Naroff14108da2009-07-10 23:34:53 +00005571
John McCallb6cfa242011-01-31 22:28:28 +00005572 // T* -> int
Richard Trieufacef2e2011-09-06 20:30:53 +00005573 if (LHSType->isIntegerType()) {
John McCalldaa8e4e2010-11-15 09:13:47 +00005574 Kind = CK_PointerToIntegral;
Steve Naroff14108da2009-07-10 23:34:53 +00005575 return PointerToInt;
John McCalldaa8e4e2010-11-15 09:13:47 +00005576 }
5577
Steve Naroff14108da2009-07-10 23:34:53 +00005578 return Incompatible;
5579 }
Eli Friedmanf8f873d2008-05-30 18:07:22 +00005580
John McCallb6cfa242011-01-31 22:28:28 +00005581 // struct A -> struct B
Richard Trieufacef2e2011-09-06 20:30:53 +00005582 if (isa<TagType>(LHSType) && isa<TagType>(RHSType)) {
5583 if (Context.typesAreCompatible(LHSType, RHSType)) {
John McCalldaa8e4e2010-11-15 09:13:47 +00005584 Kind = CK_NoOp;
Reid Spencer5f016e22007-07-11 17:01:13 +00005585 return Compatible;
John McCalldaa8e4e2010-11-15 09:13:47 +00005586 }
Reid Spencer5f016e22007-07-11 17:01:13 +00005587 }
John McCallb6cfa242011-01-31 22:28:28 +00005588
Reid Spencer5f016e22007-07-11 17:01:13 +00005589 return Incompatible;
5590}
5591
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00005592/// \brief Constructs a transparent union from an expression that is
5593/// used to initialize the transparent union.
Richard Trieu67e29332011-08-02 04:35:43 +00005594static void ConstructTransparentUnion(Sema &S, ASTContext &C,
5595 ExprResult &EResult, QualType UnionType,
5596 FieldDecl *Field) {
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00005597 // Build an initializer list that designates the appropriate member
5598 // of the transparent union.
John Wiegley429bb272011-04-08 18:41:53 +00005599 Expr *E = EResult.take();
Ted Kremenek709210f2010-04-13 23:39:13 +00005600 InitListExpr *Initializer = new (C) InitListExpr(C, SourceLocation(),
Ted Kremenekba7bc552010-02-19 01:50:18 +00005601 &E, 1,
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00005602 SourceLocation());
5603 Initializer->setType(UnionType);
5604 Initializer->setInitializedFieldInUnion(Field);
5605
5606 // Build a compound literal constructing a value of the transparent
5607 // union type from this initializer list.
John McCall42f56b52010-01-18 19:35:47 +00005608 TypeSourceInfo *unionTInfo = C.getTrivialTypeSourceInfo(UnionType);
John Wiegley429bb272011-04-08 18:41:53 +00005609 EResult = S.Owned(
5610 new (C) CompoundLiteralExpr(SourceLocation(), unionTInfo, UnionType,
5611 VK_RValue, Initializer, false));
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00005612}
5613
5614Sema::AssignConvertType
Richard Trieu67e29332011-08-02 04:35:43 +00005615Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType,
Richard Trieuf7720da2011-09-06 20:40:12 +00005616 ExprResult &RHS) {
5617 QualType RHSType = RHS.get()->getType();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00005618
Mike Stump1eb44332009-09-09 15:08:12 +00005619 // If the ArgType is a Union type, we want to handle a potential
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00005620 // transparent_union GCC extension.
5621 const RecordType *UT = ArgType->getAsUnionType();
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00005622 if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>())
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00005623 return Incompatible;
5624
5625 // The field to initialize within the transparent union.
5626 RecordDecl *UD = UT->getDecl();
5627 FieldDecl *InitField = 0;
5628 // It's compatible if the expression matches any of the fields.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00005629 for (RecordDecl::field_iterator it = UD->field_begin(),
5630 itend = UD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00005631 it != itend; ++it) {
5632 if (it->getType()->isPointerType()) {
5633 // If the transparent union contains a pointer type, we allow:
5634 // 1) void pointer
5635 // 2) null pointer constant
Richard Trieuf7720da2011-09-06 20:40:12 +00005636 if (RHSType->isPointerType())
John McCall1d9b3b22011-09-09 05:25:32 +00005637 if (RHSType->castAs<PointerType>()->getPointeeType()->isVoidType()) {
Richard Trieuf7720da2011-09-06 20:40:12 +00005638 RHS = ImpCastExprToType(RHS.take(), it->getType(), CK_BitCast);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00005639 InitField = *it;
5640 break;
5641 }
Mike Stump1eb44332009-09-09 15:08:12 +00005642
Richard Trieuf7720da2011-09-06 20:40:12 +00005643 if (RHS.get()->isNullPointerConstant(Context,
5644 Expr::NPC_ValueDependentIsNull)) {
5645 RHS = ImpCastExprToType(RHS.take(), it->getType(),
5646 CK_NullToPointer);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00005647 InitField = *it;
5648 break;
5649 }
5650 }
5651
John McCalldaa8e4e2010-11-15 09:13:47 +00005652 CastKind Kind = CK_Invalid;
Richard Trieuf7720da2011-09-06 20:40:12 +00005653 if (CheckAssignmentConstraints(it->getType(), RHS, Kind)
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00005654 == Compatible) {
Richard Trieuf7720da2011-09-06 20:40:12 +00005655 RHS = ImpCastExprToType(RHS.take(), it->getType(), Kind);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00005656 InitField = *it;
5657 break;
5658 }
5659 }
5660
5661 if (!InitField)
5662 return Incompatible;
5663
Richard Trieuf7720da2011-09-06 20:40:12 +00005664 ConstructTransparentUnion(*this, Context, RHS, ArgType, InitField);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00005665 return Compatible;
5666}
5667
Chris Lattner5cf216b2008-01-04 18:04:52 +00005668Sema::AssignConvertType
Sebastian Redl14b0c192011-09-24 17:48:00 +00005669Sema::CheckSingleAssignmentConstraints(QualType LHSType, ExprResult &RHS,
5670 bool Diagnose) {
David Blaikie4e4d0842012-03-11 07:00:24 +00005671 if (getLangOpts().CPlusPlus) {
Eli Friedmanb001de72011-10-06 23:00:33 +00005672 if (!LHSType->isRecordType() && !LHSType->isAtomicType()) {
Douglas Gregor98cd5992008-10-21 23:43:52 +00005673 // C++ 5.17p3: If the left operand is not of class type, the
5674 // expression is implicitly converted (C++ 4) to the
5675 // cv-unqualified type of the left operand.
Sebastian Redl091fffe2011-10-16 18:19:06 +00005676 ExprResult Res;
5677 if (Diagnose) {
5678 Res = PerformImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(),
5679 AA_Assigning);
5680 } else {
5681 ImplicitConversionSequence ICS =
5682 TryImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(),
5683 /*SuppressUserConversions=*/false,
5684 /*AllowExplicit=*/false,
5685 /*InOverloadResolution=*/false,
5686 /*CStyle=*/false,
5687 /*AllowObjCWritebackConversion=*/false);
5688 if (ICS.isFailure())
5689 return Incompatible;
5690 Res = PerformImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(),
5691 ICS, AA_Assigning);
5692 }
John Wiegley429bb272011-04-08 18:41:53 +00005693 if (Res.isInvalid())
Douglas Gregor98cd5992008-10-21 23:43:52 +00005694 return Incompatible;
Fariborz Jahanian7a084ec2011-07-07 23:04:17 +00005695 Sema::AssignConvertType result = Compatible;
David Blaikie4e4d0842012-03-11 07:00:24 +00005696 if (getLangOpts().ObjCAutoRefCount &&
Richard Trieuf7720da2011-09-06 20:40:12 +00005697 !CheckObjCARCUnavailableWeakConversion(LHSType,
5698 RHS.get()->getType()))
Fariborz Jahanian7a084ec2011-07-07 23:04:17 +00005699 result = IncompatibleObjCWeakRef;
Richard Trieuf7720da2011-09-06 20:40:12 +00005700 RHS = move(Res);
Fariborz Jahanian7a084ec2011-07-07 23:04:17 +00005701 return result;
Douglas Gregor98cd5992008-10-21 23:43:52 +00005702 }
5703
5704 // FIXME: Currently, we fall through and treat C++ classes like C
5705 // structures.
Eli Friedmanb001de72011-10-06 23:00:33 +00005706 // FIXME: We also fall through for atomics; not sure what should
5707 // happen there, though.
Sebastian Redl14b0c192011-09-24 17:48:00 +00005708 }
Douglas Gregor98cd5992008-10-21 23:43:52 +00005709
Steve Naroff529a4ad2007-11-27 17:58:44 +00005710 // C99 6.5.16.1p1: the left operand is a pointer and the right is
5711 // a null pointer constant.
Richard Trieuf7720da2011-09-06 20:40:12 +00005712 if ((LHSType->isPointerType() ||
5713 LHSType->isObjCObjectPointerType() ||
5714 LHSType->isBlockPointerType())
5715 && RHS.get()->isNullPointerConstant(Context,
5716 Expr::NPC_ValueDependentIsNull)) {
5717 RHS = ImpCastExprToType(RHS.take(), LHSType, CK_NullToPointer);
Steve Naroff529a4ad2007-11-27 17:58:44 +00005718 return Compatible;
5719 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00005720
Chris Lattner943140e2007-10-16 02:55:40 +00005721 // This check seems unnatural, however it is necessary to ensure the proper
Steve Naroff90045e82007-07-13 23:32:42 +00005722 // conversion of functions/arrays. If the conversion were done for all
Douglas Gregor02a24ee2009-11-03 16:56:39 +00005723 // DeclExpr's (created by ActOnIdExpression), it would mess up the unary
Nick Lewyckyc133e9e2010-08-05 06:27:49 +00005724 // expressions that suppress this implicit conversion (&, sizeof).
Chris Lattner943140e2007-10-16 02:55:40 +00005725 //
Mike Stumpeed9cac2009-02-19 03:04:26 +00005726 // Suppress this for references: C++ 8.5.3p5.
Richard Trieuf7720da2011-09-06 20:40:12 +00005727 if (!LHSType->isReferenceType()) {
5728 RHS = DefaultFunctionArrayLvalueConversion(RHS.take());
5729 if (RHS.isInvalid())
John Wiegley429bb272011-04-08 18:41:53 +00005730 return Incompatible;
5731 }
Steve Narofff1120de2007-08-24 22:33:52 +00005732
John McCalldaa8e4e2010-11-15 09:13:47 +00005733 CastKind Kind = CK_Invalid;
Chris Lattner5cf216b2008-01-04 18:04:52 +00005734 Sema::AssignConvertType result =
Richard Trieuf7720da2011-09-06 20:40:12 +00005735 CheckAssignmentConstraints(LHSType, RHS, Kind);
Mike Stumpeed9cac2009-02-19 03:04:26 +00005736
Steve Narofff1120de2007-08-24 22:33:52 +00005737 // C99 6.5.16.1p2: The value of the right operand is converted to the
5738 // type of the assignment expression.
Douglas Gregor9d293df2008-10-28 00:22:11 +00005739 // CheckAssignmentConstraints allows the left-hand side to be a reference,
5740 // so that we can use references in built-in functions even in C.
5741 // The getNonReferenceType() call makes sure that the resulting expression
5742 // does not have reference type.
Richard Trieuf7720da2011-09-06 20:40:12 +00005743 if (result != Incompatible && RHS.get()->getType() != LHSType)
5744 RHS = ImpCastExprToType(RHS.take(),
5745 LHSType.getNonLValueExprType(Context), Kind);
Steve Narofff1120de2007-08-24 22:33:52 +00005746 return result;
Steve Naroff90045e82007-07-13 23:32:42 +00005747}
5748
Richard Trieuf7720da2011-09-06 20:40:12 +00005749QualType Sema::InvalidOperands(SourceLocation Loc, ExprResult &LHS,
5750 ExprResult &RHS) {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00005751 Diag(Loc, diag::err_typecheck_invalid_operands)
Richard Trieuf7720da2011-09-06 20:40:12 +00005752 << LHS.get()->getType() << RHS.get()->getType()
5753 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
Chris Lattnerca5eede2007-12-12 05:47:28 +00005754 return QualType();
Reid Spencer5f016e22007-07-11 17:01:13 +00005755}
5756
Richard Trieu08062aa2011-09-06 21:01:04 +00005757QualType Sema::CheckVectorOperands(ExprResult &LHS, ExprResult &RHS,
Richard Trieuccd891a2011-09-09 01:45:06 +00005758 SourceLocation Loc, bool IsCompAssign) {
Richard Smith9c129f82011-10-28 03:31:48 +00005759 if (!IsCompAssign) {
5760 LHS = DefaultFunctionArrayLvalueConversion(LHS.take());
5761 if (LHS.isInvalid())
5762 return QualType();
5763 }
5764 RHS = DefaultFunctionArrayLvalueConversion(RHS.take());
5765 if (RHS.isInvalid())
5766 return QualType();
5767
Mike Stumpeed9cac2009-02-19 03:04:26 +00005768 // For conversion purposes, we ignore any qualifiers.
Nate Begeman1330b0e2008-04-04 01:30:25 +00005769 // For example, "const float" and "float" are equivalent.
Richard Trieu08062aa2011-09-06 21:01:04 +00005770 QualType LHSType =
5771 Context.getCanonicalType(LHS.get()->getType()).getUnqualifiedType();
5772 QualType RHSType =
5773 Context.getCanonicalType(RHS.get()->getType()).getUnqualifiedType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00005774
Nate Begemanbe2341d2008-07-14 18:02:46 +00005775 // If the vector types are identical, return.
Richard Trieu08062aa2011-09-06 21:01:04 +00005776 if (LHSType == RHSType)
5777 return LHSType;
Nate Begeman4119d1a2007-12-30 02:59:45 +00005778
Douglas Gregor255210e2010-08-06 10:14:59 +00005779 // Handle the case of equivalent AltiVec and GCC vector types
Richard Trieu08062aa2011-09-06 21:01:04 +00005780 if (LHSType->isVectorType() && RHSType->isVectorType() &&
5781 Context.areCompatibleVectorTypes(LHSType, RHSType)) {
5782 if (LHSType->isExtVectorType()) {
5783 RHS = ImpCastExprToType(RHS.take(), LHSType, CK_BitCast);
5784 return LHSType;
Eli Friedmanb9b4b782011-06-23 18:10:35 +00005785 }
5786
Richard Trieuccd891a2011-09-09 01:45:06 +00005787 if (!IsCompAssign)
Richard Trieu08062aa2011-09-06 21:01:04 +00005788 LHS = ImpCastExprToType(LHS.take(), RHSType, CK_BitCast);
5789 return RHSType;
Douglas Gregor255210e2010-08-06 10:14:59 +00005790 }
5791
David Blaikie4e4d0842012-03-11 07:00:24 +00005792 if (getLangOpts().LaxVectorConversions &&
Richard Trieu08062aa2011-09-06 21:01:04 +00005793 Context.getTypeSize(LHSType) == Context.getTypeSize(RHSType)) {
Eli Friedmanb9b4b782011-06-23 18:10:35 +00005794 // If we are allowing lax vector conversions, and LHS and RHS are both
5795 // vectors, the total size only needs to be the same. This is a
5796 // bitcast; no bits are changed but the result type is different.
5797 // FIXME: Should we really be allowing this?
Richard Trieu08062aa2011-09-06 21:01:04 +00005798 RHS = ImpCastExprToType(RHS.take(), LHSType, CK_BitCast);
5799 return LHSType;
Eli Friedmanb9b4b782011-06-23 18:10:35 +00005800 }
5801
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00005802 // Canonicalize the ExtVector to the LHS, remember if we swapped so we can
5803 // swap back (so that we don't reverse the inputs to a subtract, for instance.
5804 bool swapped = false;
Richard Trieuccd891a2011-09-09 01:45:06 +00005805 if (RHSType->isExtVectorType() && !IsCompAssign) {
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00005806 swapped = true;
Richard Trieu08062aa2011-09-06 21:01:04 +00005807 std::swap(RHS, LHS);
5808 std::swap(RHSType, LHSType);
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00005809 }
Mike Stump1eb44332009-09-09 15:08:12 +00005810
Nate Begemandde25982009-06-28 19:12:57 +00005811 // Handle the case of an ext vector and scalar.
Richard Trieu08062aa2011-09-06 21:01:04 +00005812 if (const ExtVectorType *LV = LHSType->getAs<ExtVectorType>()) {
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00005813 QualType EltTy = LV->getElementType();
Richard Trieu08062aa2011-09-06 21:01:04 +00005814 if (EltTy->isIntegralType(Context) && RHSType->isIntegralType(Context)) {
5815 int order = Context.getIntegerTypeOrder(EltTy, RHSType);
John McCalldaa8e4e2010-11-15 09:13:47 +00005816 if (order > 0)
Richard Trieu08062aa2011-09-06 21:01:04 +00005817 RHS = ImpCastExprToType(RHS.take(), EltTy, CK_IntegralCast);
John McCalldaa8e4e2010-11-15 09:13:47 +00005818 if (order >= 0) {
Richard Trieu08062aa2011-09-06 21:01:04 +00005819 RHS = ImpCastExprToType(RHS.take(), LHSType, CK_VectorSplat);
5820 if (swapped) std::swap(RHS, LHS);
5821 return LHSType;
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00005822 }
5823 }
Richard Trieu08062aa2011-09-06 21:01:04 +00005824 if (EltTy->isRealFloatingType() && RHSType->isScalarType() &&
5825 RHSType->isRealFloatingType()) {
5826 int order = Context.getFloatingTypeOrder(EltTy, RHSType);
John McCalldaa8e4e2010-11-15 09:13:47 +00005827 if (order > 0)
Richard Trieu08062aa2011-09-06 21:01:04 +00005828 RHS = ImpCastExprToType(RHS.take(), EltTy, CK_FloatingCast);
John McCalldaa8e4e2010-11-15 09:13:47 +00005829 if (order >= 0) {
Richard Trieu08062aa2011-09-06 21:01:04 +00005830 RHS = ImpCastExprToType(RHS.take(), LHSType, CK_VectorSplat);
5831 if (swapped) std::swap(RHS, LHS);
5832 return LHSType;
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00005833 }
Nate Begeman4119d1a2007-12-30 02:59:45 +00005834 }
5835 }
Mike Stump1eb44332009-09-09 15:08:12 +00005836
Nate Begemandde25982009-06-28 19:12:57 +00005837 // Vectors of different size or scalar and non-ext-vector are errors.
Richard Trieu08062aa2011-09-06 21:01:04 +00005838 if (swapped) std::swap(RHS, LHS);
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00005839 Diag(Loc, diag::err_typecheck_vector_not_convertable)
Richard Trieu08062aa2011-09-06 21:01:04 +00005840 << LHS.get()->getType() << RHS.get()->getType()
5841 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00005842 return QualType();
Sebastian Redl22460502009-02-07 00:15:38 +00005843}
5844
Richard Trieu481037f2011-09-16 00:53:10 +00005845// checkArithmeticNull - Detect when a NULL constant is used improperly in an
5846// expression. These are mainly cases where the null pointer is used as an
5847// integer instead of a pointer.
5848static void checkArithmeticNull(Sema &S, ExprResult &LHS, ExprResult &RHS,
5849 SourceLocation Loc, bool IsCompare) {
5850 // The canonical way to check for a GNU null is with isNullPointerConstant,
5851 // but we use a bit of a hack here for speed; this is a relatively
5852 // hot path, and isNullPointerConstant is slow.
5853 bool LHSNull = isa<GNUNullExpr>(LHS.get()->IgnoreParenImpCasts());
5854 bool RHSNull = isa<GNUNullExpr>(RHS.get()->IgnoreParenImpCasts());
5855
5856 QualType NonNullType = LHSNull ? RHS.get()->getType() : LHS.get()->getType();
5857
5858 // Avoid analyzing cases where the result will either be invalid (and
5859 // diagnosed as such) or entirely valid and not something to warn about.
5860 if ((!LHSNull && !RHSNull) || NonNullType->isBlockPointerType() ||
5861 NonNullType->isMemberPointerType() || NonNullType->isFunctionType())
5862 return;
5863
5864 // Comparison operations would not make sense with a null pointer no matter
5865 // what the other expression is.
5866 if (!IsCompare) {
5867 S.Diag(Loc, diag::warn_null_in_arithmetic_operation)
5868 << (LHSNull ? LHS.get()->getSourceRange() : SourceRange())
5869 << (RHSNull ? RHS.get()->getSourceRange() : SourceRange());
5870 return;
5871 }
5872
5873 // The rest of the operations only make sense with a null pointer
5874 // if the other expression is a pointer.
5875 if (LHSNull == RHSNull || NonNullType->isAnyPointerType() ||
5876 NonNullType->canDecayToPointerType())
5877 return;
5878
5879 S.Diag(Loc, diag::warn_null_in_comparison_operation)
5880 << LHSNull /* LHS is NULL */ << NonNullType
5881 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
5882}
5883
Richard Trieu08062aa2011-09-06 21:01:04 +00005884QualType Sema::CheckMultiplyDivideOperands(ExprResult &LHS, ExprResult &RHS,
Richard Trieu67e29332011-08-02 04:35:43 +00005885 SourceLocation Loc,
Richard Trieuccd891a2011-09-09 01:45:06 +00005886 bool IsCompAssign, bool IsDiv) {
Richard Trieu481037f2011-09-16 00:53:10 +00005887 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false);
5888
Richard Trieu08062aa2011-09-06 21:01:04 +00005889 if (LHS.get()->getType()->isVectorType() ||
5890 RHS.get()->getType()->isVectorType())
Richard Trieuccd891a2011-09-09 01:45:06 +00005891 return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign);
Mike Stumpeed9cac2009-02-19 03:04:26 +00005892
Richard Trieuccd891a2011-09-09 01:45:06 +00005893 QualType compType = UsualArithmeticConversions(LHS, RHS, IsCompAssign);
Richard Trieu08062aa2011-09-06 21:01:04 +00005894 if (LHS.isInvalid() || RHS.isInvalid())
John Wiegley429bb272011-04-08 18:41:53 +00005895 return QualType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00005896
David Chisnall7a7ee302012-01-16 17:27:18 +00005897
Richard Trieu08062aa2011-09-06 21:01:04 +00005898 if (!LHS.get()->getType()->isArithmeticType() ||
David Chisnall7a7ee302012-01-16 17:27:18 +00005899 !RHS.get()->getType()->isArithmeticType()) {
5900 if (IsCompAssign &&
5901 LHS.get()->getType()->isAtomicType() &&
5902 RHS.get()->getType()->isArithmeticType())
5903 return compType;
Richard Trieu08062aa2011-09-06 21:01:04 +00005904 return InvalidOperands(Loc, LHS, RHS);
David Chisnall7a7ee302012-01-16 17:27:18 +00005905 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00005906
Chris Lattner7ef655a2010-01-12 21:23:57 +00005907 // Check for division by zero.
Richard Trieuccd891a2011-09-09 01:45:06 +00005908 if (IsDiv &&
Richard Trieu08062aa2011-09-06 21:01:04 +00005909 RHS.get()->isNullPointerConstant(Context,
Richard Trieu67e29332011-08-02 04:35:43 +00005910 Expr::NPC_ValueDependentIsNotNull))
Richard Trieu08062aa2011-09-06 21:01:04 +00005911 DiagRuntimeBehavior(Loc, RHS.get(), PDiag(diag::warn_division_by_zero)
5912 << RHS.get()->getSourceRange());
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00005913
Chris Lattner7ef655a2010-01-12 21:23:57 +00005914 return compType;
Reid Spencer5f016e22007-07-11 17:01:13 +00005915}
5916
Chris Lattner7ef655a2010-01-12 21:23:57 +00005917QualType Sema::CheckRemainderOperands(
Richard Trieuccd891a2011-09-09 01:45:06 +00005918 ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, bool IsCompAssign) {
Richard Trieu481037f2011-09-16 00:53:10 +00005919 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false);
5920
Richard Trieu08062aa2011-09-06 21:01:04 +00005921 if (LHS.get()->getType()->isVectorType() ||
5922 RHS.get()->getType()->isVectorType()) {
5923 if (LHS.get()->getType()->hasIntegerRepresentation() &&
5924 RHS.get()->getType()->hasIntegerRepresentation())
Richard Trieuccd891a2011-09-09 01:45:06 +00005925 return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign);
Richard Trieu08062aa2011-09-06 21:01:04 +00005926 return InvalidOperands(Loc, LHS, RHS);
Daniel Dunbar523aa602009-01-05 22:55:36 +00005927 }
Steve Naroff90045e82007-07-13 23:32:42 +00005928
Richard Trieuccd891a2011-09-09 01:45:06 +00005929 QualType compType = UsualArithmeticConversions(LHS, RHS, IsCompAssign);
Richard Trieu08062aa2011-09-06 21:01:04 +00005930 if (LHS.isInvalid() || RHS.isInvalid())
John Wiegley429bb272011-04-08 18:41:53 +00005931 return QualType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00005932
Richard Trieu08062aa2011-09-06 21:01:04 +00005933 if (!LHS.get()->getType()->isIntegerType() ||
5934 !RHS.get()->getType()->isIntegerType())
5935 return InvalidOperands(Loc, LHS, RHS);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00005936
Chris Lattner7ef655a2010-01-12 21:23:57 +00005937 // Check for remainder by zero.
Richard Trieu08062aa2011-09-06 21:01:04 +00005938 if (RHS.get()->isNullPointerConstant(Context,
Richard Trieu67e29332011-08-02 04:35:43 +00005939 Expr::NPC_ValueDependentIsNotNull))
Richard Trieu08062aa2011-09-06 21:01:04 +00005940 DiagRuntimeBehavior(Loc, RHS.get(), PDiag(diag::warn_remainder_by_zero)
5941 << RHS.get()->getSourceRange());
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00005942
Chris Lattner7ef655a2010-01-12 21:23:57 +00005943 return compType;
Reid Spencer5f016e22007-07-11 17:01:13 +00005944}
5945
Chandler Carruth13b21be2011-06-27 08:02:19 +00005946/// \brief Diagnose invalid arithmetic on two void pointers.
5947static void diagnoseArithmeticOnTwoVoidPointers(Sema &S, SourceLocation Loc,
Richard Trieudef75842011-09-06 21:13:51 +00005948 Expr *LHSExpr, Expr *RHSExpr) {
David Blaikie4e4d0842012-03-11 07:00:24 +00005949 S.Diag(Loc, S.getLangOpts().CPlusPlus
Chandler Carruth13b21be2011-06-27 08:02:19 +00005950 ? diag::err_typecheck_pointer_arith_void_type
5951 : diag::ext_gnu_void_ptr)
Richard Trieudef75842011-09-06 21:13:51 +00005952 << 1 /* two pointers */ << LHSExpr->getSourceRange()
5953 << RHSExpr->getSourceRange();
Chandler Carruth13b21be2011-06-27 08:02:19 +00005954}
5955
5956/// \brief Diagnose invalid arithmetic on a void pointer.
5957static void diagnoseArithmeticOnVoidPointer(Sema &S, SourceLocation Loc,
5958 Expr *Pointer) {
David Blaikie4e4d0842012-03-11 07:00:24 +00005959 S.Diag(Loc, S.getLangOpts().CPlusPlus
Chandler Carruth13b21be2011-06-27 08:02:19 +00005960 ? diag::err_typecheck_pointer_arith_void_type
5961 : diag::ext_gnu_void_ptr)
5962 << 0 /* one pointer */ << Pointer->getSourceRange();
5963}
5964
5965/// \brief Diagnose invalid arithmetic on two function pointers.
5966static void diagnoseArithmeticOnTwoFunctionPointers(Sema &S, SourceLocation Loc,
5967 Expr *LHS, Expr *RHS) {
5968 assert(LHS->getType()->isAnyPointerType());
5969 assert(RHS->getType()->isAnyPointerType());
David Blaikie4e4d0842012-03-11 07:00:24 +00005970 S.Diag(Loc, S.getLangOpts().CPlusPlus
Chandler Carruth13b21be2011-06-27 08:02:19 +00005971 ? diag::err_typecheck_pointer_arith_function_type
5972 : diag::ext_gnu_ptr_func_arith)
5973 << 1 /* two pointers */ << LHS->getType()->getPointeeType()
5974 // We only show the second type if it differs from the first.
5975 << (unsigned)!S.Context.hasSameUnqualifiedType(LHS->getType(),
5976 RHS->getType())
5977 << RHS->getType()->getPointeeType()
5978 << LHS->getSourceRange() << RHS->getSourceRange();
5979}
5980
5981/// \brief Diagnose invalid arithmetic on a function pointer.
5982static void diagnoseArithmeticOnFunctionPointer(Sema &S, SourceLocation Loc,
5983 Expr *Pointer) {
5984 assert(Pointer->getType()->isAnyPointerType());
David Blaikie4e4d0842012-03-11 07:00:24 +00005985 S.Diag(Loc, S.getLangOpts().CPlusPlus
Chandler Carruth13b21be2011-06-27 08:02:19 +00005986 ? diag::err_typecheck_pointer_arith_function_type
5987 : diag::ext_gnu_ptr_func_arith)
5988 << 0 /* one pointer */ << Pointer->getType()->getPointeeType()
5989 << 0 /* one pointer, so only one type */
5990 << Pointer->getSourceRange();
5991}
5992
Richard Trieud9f19342011-09-12 18:08:02 +00005993/// \brief Emit error if Operand is incomplete pointer type
Richard Trieu097ecd22011-09-02 02:15:37 +00005994///
5995/// \returns True if pointer has incomplete type
5996static bool checkArithmeticIncompletePointerType(Sema &S, SourceLocation Loc,
5997 Expr *Operand) {
5998 if ((Operand->getType()->isPointerType() &&
5999 !Operand->getType()->isDependentType()) ||
6000 Operand->getType()->isObjCObjectPointerType()) {
6001 QualType PointeeTy = Operand->getType()->getPointeeType();
6002 if (S.RequireCompleteType(
6003 Loc, PointeeTy,
6004 S.PDiag(diag::err_typecheck_arithmetic_incomplete_type)
6005 << PointeeTy << Operand->getSourceRange()))
6006 return true;
6007 }
6008 return false;
6009}
6010
Chandler Carruth13b21be2011-06-27 08:02:19 +00006011/// \brief Check the validity of an arithmetic pointer operand.
6012///
6013/// If the operand has pointer type, this code will check for pointer types
6014/// which are invalid in arithmetic operations. These will be diagnosed
6015/// appropriately, including whether or not the use is supported as an
6016/// extension.
6017///
6018/// \returns True when the operand is valid to use (even if as an extension).
6019static bool checkArithmeticOpPointerOperand(Sema &S, SourceLocation Loc,
6020 Expr *Operand) {
6021 if (!Operand->getType()->isAnyPointerType()) return true;
6022
6023 QualType PointeeTy = Operand->getType()->getPointeeType();
6024 if (PointeeTy->isVoidType()) {
6025 diagnoseArithmeticOnVoidPointer(S, Loc, Operand);
David Blaikie4e4d0842012-03-11 07:00:24 +00006026 return !S.getLangOpts().CPlusPlus;
Chandler Carruth13b21be2011-06-27 08:02:19 +00006027 }
6028 if (PointeeTy->isFunctionType()) {
6029 diagnoseArithmeticOnFunctionPointer(S, Loc, Operand);
David Blaikie4e4d0842012-03-11 07:00:24 +00006030 return !S.getLangOpts().CPlusPlus;
Chandler Carruth13b21be2011-06-27 08:02:19 +00006031 }
6032
Richard Trieu097ecd22011-09-02 02:15:37 +00006033 if (checkArithmeticIncompletePointerType(S, Loc, Operand)) return false;
Chandler Carruth13b21be2011-06-27 08:02:19 +00006034
6035 return true;
6036}
6037
6038/// \brief Check the validity of a binary arithmetic operation w.r.t. pointer
6039/// operands.
6040///
6041/// This routine will diagnose any invalid arithmetic on pointer operands much
6042/// like \see checkArithmeticOpPointerOperand. However, it has special logic
6043/// for emitting a single diagnostic even for operations where both LHS and RHS
6044/// are (potentially problematic) pointers.
6045///
6046/// \returns True when the operand is valid to use (even if as an extension).
6047static bool checkArithmeticBinOpPointerOperands(Sema &S, SourceLocation Loc,
Richard Trieudef75842011-09-06 21:13:51 +00006048 Expr *LHSExpr, Expr *RHSExpr) {
6049 bool isLHSPointer = LHSExpr->getType()->isAnyPointerType();
6050 bool isRHSPointer = RHSExpr->getType()->isAnyPointerType();
Chandler Carruth13b21be2011-06-27 08:02:19 +00006051 if (!isLHSPointer && !isRHSPointer) return true;
6052
6053 QualType LHSPointeeTy, RHSPointeeTy;
Richard Trieudef75842011-09-06 21:13:51 +00006054 if (isLHSPointer) LHSPointeeTy = LHSExpr->getType()->getPointeeType();
6055 if (isRHSPointer) RHSPointeeTy = RHSExpr->getType()->getPointeeType();
Chandler Carruth13b21be2011-06-27 08:02:19 +00006056
6057 // Check for arithmetic on pointers to incomplete types.
6058 bool isLHSVoidPtr = isLHSPointer && LHSPointeeTy->isVoidType();
6059 bool isRHSVoidPtr = isRHSPointer && RHSPointeeTy->isVoidType();
6060 if (isLHSVoidPtr || isRHSVoidPtr) {
Richard Trieudef75842011-09-06 21:13:51 +00006061 if (!isRHSVoidPtr) diagnoseArithmeticOnVoidPointer(S, Loc, LHSExpr);
6062 else if (!isLHSVoidPtr) diagnoseArithmeticOnVoidPointer(S, Loc, RHSExpr);
6063 else diagnoseArithmeticOnTwoVoidPointers(S, Loc, LHSExpr, RHSExpr);
Chandler Carruth13b21be2011-06-27 08:02:19 +00006064
David Blaikie4e4d0842012-03-11 07:00:24 +00006065 return !S.getLangOpts().CPlusPlus;
Chandler Carruth13b21be2011-06-27 08:02:19 +00006066 }
6067
6068 bool isLHSFuncPtr = isLHSPointer && LHSPointeeTy->isFunctionType();
6069 bool isRHSFuncPtr = isRHSPointer && RHSPointeeTy->isFunctionType();
6070 if (isLHSFuncPtr || isRHSFuncPtr) {
Richard Trieudef75842011-09-06 21:13:51 +00006071 if (!isRHSFuncPtr) diagnoseArithmeticOnFunctionPointer(S, Loc, LHSExpr);
6072 else if (!isLHSFuncPtr) diagnoseArithmeticOnFunctionPointer(S, Loc,
6073 RHSExpr);
6074 else diagnoseArithmeticOnTwoFunctionPointers(S, Loc, LHSExpr, RHSExpr);
Chandler Carruth13b21be2011-06-27 08:02:19 +00006075
David Blaikie4e4d0842012-03-11 07:00:24 +00006076 return !S.getLangOpts().CPlusPlus;
Chandler Carruth13b21be2011-06-27 08:02:19 +00006077 }
6078
Richard Trieudef75842011-09-06 21:13:51 +00006079 if (checkArithmeticIncompletePointerType(S, Loc, LHSExpr)) return false;
6080 if (checkArithmeticIncompletePointerType(S, Loc, RHSExpr)) return false;
Richard Trieu097ecd22011-09-02 02:15:37 +00006081
Chandler Carruth13b21be2011-06-27 08:02:19 +00006082 return true;
6083}
6084
Richard Trieudb44a6b2011-09-01 22:53:23 +00006085/// \brief Check bad cases where we step over interface counts.
6086static bool checkArithmethicPointerOnNonFragileABI(Sema &S,
6087 SourceLocation OpLoc,
6088 Expr *Op) {
6089 assert(Op->getType()->isAnyPointerType());
6090 QualType PointeeTy = Op->getType()->getPointeeType();
6091 if (!PointeeTy->isObjCObjectType() || !S.LangOpts.ObjCNonFragileABI)
6092 return true;
6093
6094 S.Diag(OpLoc, diag::err_arithmetic_nonfragile_interface)
6095 << PointeeTy << Op->getSourceRange();
6096 return false;
6097}
6098
Nico Weber1cb2d742012-03-02 22:01:22 +00006099/// diagnoseStringPlusInt - Emit a warning when adding an integer to a string
6100/// literal.
6101static void diagnoseStringPlusInt(Sema &Self, SourceLocation OpLoc,
6102 Expr *LHSExpr, Expr *RHSExpr) {
6103 StringLiteral* StrExpr = dyn_cast<StringLiteral>(LHSExpr->IgnoreImpCasts());
6104 Expr* IndexExpr = RHSExpr;
6105 if (!StrExpr) {
6106 StrExpr = dyn_cast<StringLiteral>(RHSExpr->IgnoreImpCasts());
6107 IndexExpr = LHSExpr;
6108 }
6109
6110 bool IsStringPlusInt = StrExpr &&
6111 IndexExpr->getType()->isIntegralOrUnscopedEnumerationType();
6112 if (!IsStringPlusInt)
6113 return;
6114
6115 llvm::APSInt index;
6116 if (IndexExpr->EvaluateAsInt(index, Self.getASTContext())) {
6117 unsigned StrLenWithNull = StrExpr->getLength() + 1;
6118 if (index.isNonNegative() &&
6119 index <= llvm::APSInt(llvm::APInt(index.getBitWidth(), StrLenWithNull),
6120 index.isUnsigned()))
6121 return;
6122 }
6123
6124 SourceRange DiagRange(LHSExpr->getLocStart(), RHSExpr->getLocEnd());
6125 Self.Diag(OpLoc, diag::warn_string_plus_int)
6126 << DiagRange << IndexExpr->IgnoreImpCasts()->getType();
6127
6128 // Only print a fixit for "str" + int, not for int + "str".
6129 if (IndexExpr == RHSExpr) {
6130 SourceLocation EndLoc = Self.PP.getLocForEndOfToken(RHSExpr->getLocEnd());
6131 Self.Diag(OpLoc, diag::note_string_plus_int_silence)
6132 << FixItHint::CreateInsertion(LHSExpr->getLocStart(), "&")
6133 << FixItHint::CreateReplacement(SourceRange(OpLoc), "[")
6134 << FixItHint::CreateInsertion(EndLoc, "]");
6135 } else
6136 Self.Diag(OpLoc, diag::note_string_plus_int_silence);
6137}
6138
Richard Trieud9f19342011-09-12 18:08:02 +00006139/// \brief Emit error when two pointers are incompatible.
Richard Trieudb44a6b2011-09-01 22:53:23 +00006140static void diagnosePointerIncompatibility(Sema &S, SourceLocation Loc,
Richard Trieudef75842011-09-06 21:13:51 +00006141 Expr *LHSExpr, Expr *RHSExpr) {
6142 assert(LHSExpr->getType()->isAnyPointerType());
6143 assert(RHSExpr->getType()->isAnyPointerType());
Richard Trieudb44a6b2011-09-01 22:53:23 +00006144 S.Diag(Loc, diag::err_typecheck_sub_ptr_compatible)
Richard Trieudef75842011-09-06 21:13:51 +00006145 << LHSExpr->getType() << RHSExpr->getType() << LHSExpr->getSourceRange()
6146 << RHSExpr->getSourceRange();
Richard Trieudb44a6b2011-09-01 22:53:23 +00006147}
6148
Chris Lattner7ef655a2010-01-12 21:23:57 +00006149QualType Sema::CheckAdditionOperands( // C99 6.5.6
Nico Weber1cb2d742012-03-02 22:01:22 +00006150 ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, unsigned Opc,
6151 QualType* CompLHSTy) {
Richard Trieu481037f2011-09-16 00:53:10 +00006152 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false);
6153
Richard Trieudef75842011-09-06 21:13:51 +00006154 if (LHS.get()->getType()->isVectorType() ||
6155 RHS.get()->getType()->isVectorType()) {
6156 QualType compType = CheckVectorOperands(LHS, RHS, Loc, CompLHSTy);
Eli Friedmanab3a8522009-03-28 01:22:36 +00006157 if (CompLHSTy) *CompLHSTy = compType;
6158 return compType;
6159 }
Steve Naroff49b45262007-07-13 16:58:59 +00006160
Richard Trieudef75842011-09-06 21:13:51 +00006161 QualType compType = UsualArithmeticConversions(LHS, RHS, CompLHSTy);
6162 if (LHS.isInvalid() || RHS.isInvalid())
John Wiegley429bb272011-04-08 18:41:53 +00006163 return QualType();
Eli Friedmand72d16e2008-05-18 18:08:51 +00006164
Nico Weber1cb2d742012-03-02 22:01:22 +00006165 // Diagnose "string literal" '+' int.
6166 if (Opc == BO_Add)
6167 diagnoseStringPlusInt(*this, Loc, LHS.get(), RHS.get());
6168
Reid Spencer5f016e22007-07-11 17:01:13 +00006169 // handle the common case first (both operands are arithmetic).
Richard Trieudef75842011-09-06 21:13:51 +00006170 if (LHS.get()->getType()->isArithmeticType() &&
6171 RHS.get()->getType()->isArithmeticType()) {
Eli Friedmanab3a8522009-03-28 01:22:36 +00006172 if (CompLHSTy) *CompLHSTy = compType;
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00006173 return compType;
Eli Friedmanab3a8522009-03-28 01:22:36 +00006174 }
Reid Spencer5f016e22007-07-11 17:01:13 +00006175
David Chisnall7a7ee302012-01-16 17:27:18 +00006176 if (LHS.get()->getType()->isAtomicType() &&
6177 RHS.get()->getType()->isArithmeticType()) {
6178 *CompLHSTy = LHS.get()->getType();
6179 return compType;
6180 }
6181
Eli Friedmand72d16e2008-05-18 18:08:51 +00006182 // Put any potential pointer into PExp
Richard Trieudef75842011-09-06 21:13:51 +00006183 Expr* PExp = LHS.get(), *IExp = RHS.get();
Steve Naroff58f9f2c2009-07-14 18:25:06 +00006184 if (IExp->getType()->isAnyPointerType())
Eli Friedmand72d16e2008-05-18 18:08:51 +00006185 std::swap(PExp, IExp);
6186
Richard Trieu6eef9fb2011-09-12 18:37:54 +00006187 if (!PExp->getType()->isAnyPointerType())
6188 return InvalidOperands(Loc, LHS, RHS);
Chandler Carruth13b21be2011-06-27 08:02:19 +00006189
Richard Trieu6eef9fb2011-09-12 18:37:54 +00006190 if (!IExp->getType()->isIntegerType())
6191 return InvalidOperands(Loc, LHS, RHS);
Mike Stump1eb44332009-09-09 15:08:12 +00006192
Richard Trieu6eef9fb2011-09-12 18:37:54 +00006193 if (!checkArithmeticOpPointerOperand(*this, Loc, PExp))
6194 return QualType();
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00006195
Richard Trieu6eef9fb2011-09-12 18:37:54 +00006196 // Diagnose bad cases where we step over interface counts.
6197 if (!checkArithmethicPointerOnNonFragileABI(*this, Loc, PExp))
6198 return QualType();
6199
6200 // Check array bounds for pointer arithemtic
6201 CheckArrayAccess(PExp, IExp);
6202
6203 if (CompLHSTy) {
6204 QualType LHSTy = Context.isPromotableBitField(LHS.get());
6205 if (LHSTy.isNull()) {
6206 LHSTy = LHS.get()->getType();
6207 if (LHSTy->isPromotableIntegerType())
6208 LHSTy = Context.getPromotedIntegerType(LHSTy);
Eli Friedmand72d16e2008-05-18 18:08:51 +00006209 }
Richard Trieu6eef9fb2011-09-12 18:37:54 +00006210 *CompLHSTy = LHSTy;
Eli Friedmand72d16e2008-05-18 18:08:51 +00006211 }
6212
Richard Trieu6eef9fb2011-09-12 18:37:54 +00006213 return PExp->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00006214}
6215
Chris Lattnereca7be62008-04-07 05:30:13 +00006216// C99 6.5.6
Richard Trieudef75842011-09-06 21:13:51 +00006217QualType Sema::CheckSubtractionOperands(ExprResult &LHS, ExprResult &RHS,
Richard Trieu67e29332011-08-02 04:35:43 +00006218 SourceLocation Loc,
6219 QualType* CompLHSTy) {
Richard Trieu481037f2011-09-16 00:53:10 +00006220 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false);
6221
Richard Trieudef75842011-09-06 21:13:51 +00006222 if (LHS.get()->getType()->isVectorType() ||
6223 RHS.get()->getType()->isVectorType()) {
6224 QualType compType = CheckVectorOperands(LHS, RHS, Loc, CompLHSTy);
Eli Friedmanab3a8522009-03-28 01:22:36 +00006225 if (CompLHSTy) *CompLHSTy = compType;
6226 return compType;
6227 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00006228
Richard Trieudef75842011-09-06 21:13:51 +00006229 QualType compType = UsualArithmeticConversions(LHS, RHS, CompLHSTy);
6230 if (LHS.isInvalid() || RHS.isInvalid())
John Wiegley429bb272011-04-08 18:41:53 +00006231 return QualType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00006232
Chris Lattner6e4ab612007-12-09 21:53:25 +00006233 // Enforce type constraints: C99 6.5.6p3.
Mike Stumpeed9cac2009-02-19 03:04:26 +00006234
Chris Lattner6e4ab612007-12-09 21:53:25 +00006235 // Handle the common case first (both operands are arithmetic).
Richard Trieudef75842011-09-06 21:13:51 +00006236 if (LHS.get()->getType()->isArithmeticType() &&
6237 RHS.get()->getType()->isArithmeticType()) {
Eli Friedmanab3a8522009-03-28 01:22:36 +00006238 if (CompLHSTy) *CompLHSTy = compType;
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00006239 return compType;
Eli Friedmanab3a8522009-03-28 01:22:36 +00006240 }
Mike Stump1eb44332009-09-09 15:08:12 +00006241
David Chisnall7a7ee302012-01-16 17:27:18 +00006242 if (LHS.get()->getType()->isAtomicType() &&
6243 RHS.get()->getType()->isArithmeticType()) {
6244 *CompLHSTy = LHS.get()->getType();
6245 return compType;
6246 }
6247
Chris Lattner6e4ab612007-12-09 21:53:25 +00006248 // Either ptr - int or ptr - ptr.
Richard Trieudef75842011-09-06 21:13:51 +00006249 if (LHS.get()->getType()->isAnyPointerType()) {
6250 QualType lpointee = LHS.get()->getType()->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00006251
Chris Lattnerb5f15622009-04-24 23:50:08 +00006252 // Diagnose bad cases where we step over interface counts.
Richard Trieudef75842011-09-06 21:13:51 +00006253 if (!checkArithmethicPointerOnNonFragileABI(*this, Loc, LHS.get()))
Chris Lattnerb5f15622009-04-24 23:50:08 +00006254 return QualType();
Mike Stump1eb44332009-09-09 15:08:12 +00006255
Chris Lattner6e4ab612007-12-09 21:53:25 +00006256 // The result type of a pointer-int computation is the pointer type.
Richard Trieudef75842011-09-06 21:13:51 +00006257 if (RHS.get()->getType()->isIntegerType()) {
6258 if (!checkArithmeticOpPointerOperand(*this, Loc, LHS.get()))
Chandler Carruth13b21be2011-06-27 08:02:19 +00006259 return QualType();
Douglas Gregore7450f52009-03-24 19:52:54 +00006260
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00006261 // Check array bounds for pointer arithemtic
Richard Smith25b009a2011-12-16 19:31:14 +00006262 CheckArrayAccess(LHS.get(), RHS.get(), /*ArraySubscriptExpr*/0,
6263 /*AllowOnePastEnd*/true, /*IndexNegated*/true);
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00006264
Richard Trieudef75842011-09-06 21:13:51 +00006265 if (CompLHSTy) *CompLHSTy = LHS.get()->getType();
6266 return LHS.get()->getType();
Douglas Gregore7450f52009-03-24 19:52:54 +00006267 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00006268
Chris Lattner6e4ab612007-12-09 21:53:25 +00006269 // Handle pointer-pointer subtractions.
Richard Trieu67e29332011-08-02 04:35:43 +00006270 if (const PointerType *RHSPTy
Richard Trieudef75842011-09-06 21:13:51 +00006271 = RHS.get()->getType()->getAs<PointerType>()) {
Eli Friedman8e54ad02008-02-08 01:19:44 +00006272 QualType rpointee = RHSPTy->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00006273
David Blaikie4e4d0842012-03-11 07:00:24 +00006274 if (getLangOpts().CPlusPlus) {
Eli Friedman88d936b2009-05-16 13:54:38 +00006275 // Pointee types must be the same: C++ [expr.add]
6276 if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) {
Richard Trieudef75842011-09-06 21:13:51 +00006277 diagnosePointerIncompatibility(*this, Loc, LHS.get(), RHS.get());
Eli Friedman88d936b2009-05-16 13:54:38 +00006278 }
6279 } else {
6280 // Pointee types must be compatible C99 6.5.6p3
6281 if (!Context.typesAreCompatible(
6282 Context.getCanonicalType(lpointee).getUnqualifiedType(),
6283 Context.getCanonicalType(rpointee).getUnqualifiedType())) {
Richard Trieudef75842011-09-06 21:13:51 +00006284 diagnosePointerIncompatibility(*this, Loc, LHS.get(), RHS.get());
Eli Friedman88d936b2009-05-16 13:54:38 +00006285 return QualType();
6286 }
Chris Lattner6e4ab612007-12-09 21:53:25 +00006287 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00006288
Chandler Carruth13b21be2011-06-27 08:02:19 +00006289 if (!checkArithmeticBinOpPointerOperands(*this, Loc,
Richard Trieudef75842011-09-06 21:13:51 +00006290 LHS.get(), RHS.get()))
Chandler Carruth13b21be2011-06-27 08:02:19 +00006291 return QualType();
Eli Friedmanab3a8522009-03-28 01:22:36 +00006292
Richard Trieudef75842011-09-06 21:13:51 +00006293 if (CompLHSTy) *CompLHSTy = LHS.get()->getType();
Chris Lattner6e4ab612007-12-09 21:53:25 +00006294 return Context.getPointerDiffType();
6295 }
6296 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00006297
Richard Trieudef75842011-09-06 21:13:51 +00006298 return InvalidOperands(Loc, LHS, RHS);
Reid Spencer5f016e22007-07-11 17:01:13 +00006299}
6300
Douglas Gregor1274ccd2010-10-08 23:50:27 +00006301static bool isScopedEnumerationType(QualType T) {
6302 if (const EnumType *ET = dyn_cast<EnumType>(T))
6303 return ET->getDecl()->isScoped();
6304 return false;
6305}
6306
Richard Trieu1c8cfbf2011-09-06 21:21:28 +00006307static void DiagnoseBadShiftValues(Sema& S, ExprResult &LHS, ExprResult &RHS,
Chandler Carruth21206d52011-02-23 23:34:11 +00006308 SourceLocation Loc, unsigned Opc,
Richard Trieu1c8cfbf2011-09-06 21:21:28 +00006309 QualType LHSType) {
Chandler Carruth21206d52011-02-23 23:34:11 +00006310 llvm::APSInt Right;
6311 // Check right/shifter operand
Richard Trieu1c8cfbf2011-09-06 21:21:28 +00006312 if (RHS.get()->isValueDependent() ||
6313 !RHS.get()->isIntegerConstantExpr(Right, S.Context))
Chandler Carruth21206d52011-02-23 23:34:11 +00006314 return;
6315
6316 if (Right.isNegative()) {
Richard Trieu1c8cfbf2011-09-06 21:21:28 +00006317 S.DiagRuntimeBehavior(Loc, RHS.get(),
Ted Kremenek082bf7a2011-03-01 18:09:31 +00006318 S.PDiag(diag::warn_shift_negative)
Richard Trieu1c8cfbf2011-09-06 21:21:28 +00006319 << RHS.get()->getSourceRange());
Chandler Carruth21206d52011-02-23 23:34:11 +00006320 return;
6321 }
6322 llvm::APInt LeftBits(Right.getBitWidth(),
Richard Trieu1c8cfbf2011-09-06 21:21:28 +00006323 S.Context.getTypeSize(LHS.get()->getType()));
Chandler Carruth21206d52011-02-23 23:34:11 +00006324 if (Right.uge(LeftBits)) {
Richard Trieu1c8cfbf2011-09-06 21:21:28 +00006325 S.DiagRuntimeBehavior(Loc, RHS.get(),
Ted Kremenek425a31e2011-03-01 19:13:22 +00006326 S.PDiag(diag::warn_shift_gt_typewidth)
Richard Trieu1c8cfbf2011-09-06 21:21:28 +00006327 << RHS.get()->getSourceRange());
Chandler Carruth21206d52011-02-23 23:34:11 +00006328 return;
6329 }
6330 if (Opc != BO_Shl)
6331 return;
6332
6333 // When left shifting an ICE which is signed, we can check for overflow which
6334 // according to C++ has undefined behavior ([expr.shift] 5.8/2). Unsigned
6335 // integers have defined behavior modulo one more than the maximum value
6336 // representable in the result type, so never warn for those.
6337 llvm::APSInt Left;
Richard Trieu1c8cfbf2011-09-06 21:21:28 +00006338 if (LHS.get()->isValueDependent() ||
6339 !LHS.get()->isIntegerConstantExpr(Left, S.Context) ||
6340 LHSType->hasUnsignedIntegerRepresentation())
Chandler Carruth21206d52011-02-23 23:34:11 +00006341 return;
6342 llvm::APInt ResultBits =
6343 static_cast<llvm::APInt&>(Right) + Left.getMinSignedBits();
6344 if (LeftBits.uge(ResultBits))
6345 return;
6346 llvm::APSInt Result = Left.extend(ResultBits.getLimitedValue());
6347 Result = Result.shl(Right);
6348
Ted Kremenekfa821382011-06-15 00:54:52 +00006349 // Print the bit representation of the signed integer as an unsigned
6350 // hexadecimal number.
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00006351 SmallString<40> HexResult;
Ted Kremenekfa821382011-06-15 00:54:52 +00006352 Result.toString(HexResult, 16, /*Signed =*/false, /*Literal =*/true);
6353
Chandler Carruth21206d52011-02-23 23:34:11 +00006354 // If we are only missing a sign bit, this is less likely to result in actual
6355 // bugs -- if the result is cast back to an unsigned type, it will have the
6356 // expected value. Thus we place this behind a different warning that can be
6357 // turned off separately if needed.
6358 if (LeftBits == ResultBits - 1) {
Ted Kremenekfa821382011-06-15 00:54:52 +00006359 S.Diag(Loc, diag::warn_shift_result_sets_sign_bit)
Richard Trieu1c8cfbf2011-09-06 21:21:28 +00006360 << HexResult.str() << LHSType
6361 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
Chandler Carruth21206d52011-02-23 23:34:11 +00006362 return;
6363 }
6364
6365 S.Diag(Loc, diag::warn_shift_result_gt_typewidth)
Richard Trieu1c8cfbf2011-09-06 21:21:28 +00006366 << HexResult.str() << Result.getMinSignedBits() << LHSType
6367 << Left.getBitWidth() << LHS.get()->getSourceRange()
6368 << RHS.get()->getSourceRange();
Chandler Carruth21206d52011-02-23 23:34:11 +00006369}
6370
Chris Lattnereca7be62008-04-07 05:30:13 +00006371// C99 6.5.7
Richard Trieu1c8cfbf2011-09-06 21:21:28 +00006372QualType Sema::CheckShiftOperands(ExprResult &LHS, ExprResult &RHS,
Richard Trieu67e29332011-08-02 04:35:43 +00006373 SourceLocation Loc, unsigned Opc,
Richard Trieuccd891a2011-09-09 01:45:06 +00006374 bool IsCompAssign) {
Richard Trieu481037f2011-09-16 00:53:10 +00006375 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false);
6376
Chris Lattnerca5eede2007-12-12 05:47:28 +00006377 // C99 6.5.7p2: Each of the operands shall have integer type.
Richard Trieu1c8cfbf2011-09-06 21:21:28 +00006378 if (!LHS.get()->getType()->hasIntegerRepresentation() ||
6379 !RHS.get()->getType()->hasIntegerRepresentation())
6380 return InvalidOperands(Loc, LHS, RHS);
Mike Stumpeed9cac2009-02-19 03:04:26 +00006381
Douglas Gregor1274ccd2010-10-08 23:50:27 +00006382 // C++0x: Don't allow scoped enums. FIXME: Use something better than
6383 // hasIntegerRepresentation() above instead of this.
Richard Trieu1c8cfbf2011-09-06 21:21:28 +00006384 if (isScopedEnumerationType(LHS.get()->getType()) ||
6385 isScopedEnumerationType(RHS.get()->getType())) {
6386 return InvalidOperands(Loc, LHS, RHS);
Douglas Gregor1274ccd2010-10-08 23:50:27 +00006387 }
6388
Nate Begeman2207d792009-10-25 02:26:48 +00006389 // Vector shifts promote their scalar inputs to vector type.
Richard Trieu1c8cfbf2011-09-06 21:21:28 +00006390 if (LHS.get()->getType()->isVectorType() ||
6391 RHS.get()->getType()->isVectorType())
Richard Trieuccd891a2011-09-09 01:45:06 +00006392 return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign);
Nate Begeman2207d792009-10-25 02:26:48 +00006393
Chris Lattnerca5eede2007-12-12 05:47:28 +00006394 // Shifts don't perform usual arithmetic conversions, they just do integer
6395 // promotions on each operand. C99 6.5.7p3
Eli Friedmanab3a8522009-03-28 01:22:36 +00006396
John McCall1bc80af2010-12-16 19:28:59 +00006397 // For the LHS, do usual unary conversions, but then reset them away
6398 // if this is a compound assignment.
Richard Trieu1c8cfbf2011-09-06 21:21:28 +00006399 ExprResult OldLHS = LHS;
6400 LHS = UsualUnaryConversions(LHS.take());
6401 if (LHS.isInvalid())
John Wiegley429bb272011-04-08 18:41:53 +00006402 return QualType();
Richard Trieu1c8cfbf2011-09-06 21:21:28 +00006403 QualType LHSType = LHS.get()->getType();
Richard Trieuccd891a2011-09-09 01:45:06 +00006404 if (IsCompAssign) LHS = OldLHS;
John McCall1bc80af2010-12-16 19:28:59 +00006405
6406 // The RHS is simpler.
Richard Trieu1c8cfbf2011-09-06 21:21:28 +00006407 RHS = UsualUnaryConversions(RHS.take());
6408 if (RHS.isInvalid())
John Wiegley429bb272011-04-08 18:41:53 +00006409 return QualType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00006410
Ryan Flynnd0439682009-08-07 16:20:20 +00006411 // Sanity-check shift operands
Richard Trieu1c8cfbf2011-09-06 21:21:28 +00006412 DiagnoseBadShiftValues(*this, LHS, RHS, Loc, Opc, LHSType);
Ryan Flynnd0439682009-08-07 16:20:20 +00006413
Chris Lattnerca5eede2007-12-12 05:47:28 +00006414 // "The type of the result is that of the promoted left operand."
Richard Trieu1c8cfbf2011-09-06 21:21:28 +00006415 return LHSType;
Reid Spencer5f016e22007-07-11 17:01:13 +00006416}
6417
Chandler Carruth99919472010-07-10 12:30:03 +00006418static bool IsWithinTemplateSpecialization(Decl *D) {
6419 if (DeclContext *DC = D->getDeclContext()) {
6420 if (isa<ClassTemplateSpecializationDecl>(DC))
6421 return true;
6422 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(DC))
6423 return FD->isFunctionTemplateSpecialization();
6424 }
6425 return false;
6426}
6427
Richard Trieue648ac32011-09-02 03:48:46 +00006428/// If two different enums are compared, raise a warning.
Richard Trieuba261492011-09-06 21:27:33 +00006429static void checkEnumComparison(Sema &S, SourceLocation Loc, ExprResult &LHS,
6430 ExprResult &RHS) {
6431 QualType LHSStrippedType = LHS.get()->IgnoreParenImpCasts()->getType();
6432 QualType RHSStrippedType = RHS.get()->IgnoreParenImpCasts()->getType();
Richard Trieue648ac32011-09-02 03:48:46 +00006433
6434 const EnumType *LHSEnumType = LHSStrippedType->getAs<EnumType>();
6435 if (!LHSEnumType)
6436 return;
6437 const EnumType *RHSEnumType = RHSStrippedType->getAs<EnumType>();
6438 if (!RHSEnumType)
6439 return;
6440
6441 // Ignore anonymous enums.
6442 if (!LHSEnumType->getDecl()->getIdentifier())
6443 return;
6444 if (!RHSEnumType->getDecl()->getIdentifier())
6445 return;
6446
6447 if (S.Context.hasSameUnqualifiedType(LHSStrippedType, RHSStrippedType))
6448 return;
6449
6450 S.Diag(Loc, diag::warn_comparison_of_mixed_enum_types)
6451 << LHSStrippedType << RHSStrippedType
Richard Trieuba261492011-09-06 21:27:33 +00006452 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
Richard Trieue648ac32011-09-02 03:48:46 +00006453}
6454
Richard Trieu7be1be02011-09-02 02:55:45 +00006455/// \brief Diagnose bad pointer comparisons.
6456static void diagnoseDistinctPointerComparison(Sema &S, SourceLocation Loc,
Richard Trieuba261492011-09-06 21:27:33 +00006457 ExprResult &LHS, ExprResult &RHS,
Richard Trieuccd891a2011-09-09 01:45:06 +00006458 bool IsError) {
6459 S.Diag(Loc, IsError ? diag::err_typecheck_comparison_of_distinct_pointers
Richard Trieu7be1be02011-09-02 02:55:45 +00006460 : diag::ext_typecheck_comparison_of_distinct_pointers)
Richard Trieuba261492011-09-06 21:27:33 +00006461 << LHS.get()->getType() << RHS.get()->getType()
6462 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
Richard Trieu7be1be02011-09-02 02:55:45 +00006463}
6464
6465/// \brief Returns false if the pointers are converted to a composite type,
6466/// true otherwise.
6467static bool convertPointersToCompositeType(Sema &S, SourceLocation Loc,
Richard Trieuba261492011-09-06 21:27:33 +00006468 ExprResult &LHS, ExprResult &RHS) {
Richard Trieu7be1be02011-09-02 02:55:45 +00006469 // C++ [expr.rel]p2:
6470 // [...] Pointer conversions (4.10) and qualification
6471 // conversions (4.4) are performed on pointer operands (or on
6472 // a pointer operand and a null pointer constant) to bring
6473 // them to their composite pointer type. [...]
6474 //
6475 // C++ [expr.eq]p1 uses the same notion for (in)equality
6476 // comparisons of pointers.
6477
6478 // C++ [expr.eq]p2:
6479 // In addition, pointers to members can be compared, or a pointer to
6480 // member and a null pointer constant. Pointer to member conversions
6481 // (4.11) and qualification conversions (4.4) are performed to bring
6482 // them to a common type. If one operand is a null pointer constant,
6483 // the common type is the type of the other operand. Otherwise, the
6484 // common type is a pointer to member type similar (4.4) to the type
6485 // of one of the operands, with a cv-qualification signature (4.4)
6486 // that is the union of the cv-qualification signatures of the operand
6487 // types.
6488
Richard Trieuba261492011-09-06 21:27:33 +00006489 QualType LHSType = LHS.get()->getType();
6490 QualType RHSType = RHS.get()->getType();
6491 assert((LHSType->isPointerType() && RHSType->isPointerType()) ||
6492 (LHSType->isMemberPointerType() && RHSType->isMemberPointerType()));
Richard Trieu7be1be02011-09-02 02:55:45 +00006493
6494 bool NonStandardCompositeType = false;
Richard Trieu43dff1b2011-09-02 21:44:27 +00006495 bool *BoolPtr = S.isSFINAEContext() ? 0 : &NonStandardCompositeType;
Richard Trieuba261492011-09-06 21:27:33 +00006496 QualType T = S.FindCompositePointerType(Loc, LHS, RHS, BoolPtr);
Richard Trieu7be1be02011-09-02 02:55:45 +00006497 if (T.isNull()) {
Richard Trieuba261492011-09-06 21:27:33 +00006498 diagnoseDistinctPointerComparison(S, Loc, LHS, RHS, /*isError*/true);
Richard Trieu7be1be02011-09-02 02:55:45 +00006499 return true;
6500 }
6501
6502 if (NonStandardCompositeType)
6503 S.Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers_nonstandard)
Richard Trieuba261492011-09-06 21:27:33 +00006504 << LHSType << RHSType << T << LHS.get()->getSourceRange()
6505 << RHS.get()->getSourceRange();
Richard Trieu7be1be02011-09-02 02:55:45 +00006506
Richard Trieuba261492011-09-06 21:27:33 +00006507 LHS = S.ImpCastExprToType(LHS.take(), T, CK_BitCast);
6508 RHS = S.ImpCastExprToType(RHS.take(), T, CK_BitCast);
Richard Trieu7be1be02011-09-02 02:55:45 +00006509 return false;
6510}
6511
6512static void diagnoseFunctionPointerToVoidComparison(Sema &S, SourceLocation Loc,
Richard Trieuba261492011-09-06 21:27:33 +00006513 ExprResult &LHS,
6514 ExprResult &RHS,
Richard Trieuccd891a2011-09-09 01:45:06 +00006515 bool IsError) {
6516 S.Diag(Loc, IsError ? diag::err_typecheck_comparison_of_fptr_to_void
6517 : diag::ext_typecheck_comparison_of_fptr_to_void)
Richard Trieuba261492011-09-06 21:27:33 +00006518 << LHS.get()->getType() << RHS.get()->getType()
6519 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
Richard Trieu7be1be02011-09-02 02:55:45 +00006520}
6521
Douglas Gregor0c6db942009-05-04 06:07:12 +00006522// C99 6.5.8, C++ [expr.rel]
Richard Trieuf1775fb2011-09-06 21:43:51 +00006523QualType Sema::CheckCompareOperands(ExprResult &LHS, ExprResult &RHS,
Richard Trieu67e29332011-08-02 04:35:43 +00006524 SourceLocation Loc, unsigned OpaqueOpc,
Richard Trieuccd891a2011-09-09 01:45:06 +00006525 bool IsRelational) {
Richard Trieu481037f2011-09-16 00:53:10 +00006526 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/true);
6527
John McCall2de56d12010-08-25 11:45:40 +00006528 BinaryOperatorKind Opc = (BinaryOperatorKind) OpaqueOpc;
Douglas Gregora86b8322009-04-06 18:45:53 +00006529
Chris Lattner02dd4b12009-12-05 05:40:13 +00006530 // Handle vector comparisons separately.
Richard Trieuf1775fb2011-09-06 21:43:51 +00006531 if (LHS.get()->getType()->isVectorType() ||
6532 RHS.get()->getType()->isVectorType())
Richard Trieuccd891a2011-09-09 01:45:06 +00006533 return CheckVectorCompareOperands(LHS, RHS, Loc, IsRelational);
Mike Stumpeed9cac2009-02-19 03:04:26 +00006534
Richard Trieuf1775fb2011-09-06 21:43:51 +00006535 QualType LHSType = LHS.get()->getType();
6536 QualType RHSType = RHS.get()->getType();
Benjamin Kramerfec09592011-09-03 08:46:20 +00006537
Richard Trieuf1775fb2011-09-06 21:43:51 +00006538 Expr *LHSStripped = LHS.get()->IgnoreParenImpCasts();
6539 Expr *RHSStripped = RHS.get()->IgnoreParenImpCasts();
Chandler Carruth543cb652011-02-17 08:37:06 +00006540
Richard Trieuf1775fb2011-09-06 21:43:51 +00006541 checkEnumComparison(*this, Loc, LHS, RHS);
Chandler Carruth543cb652011-02-17 08:37:06 +00006542
Richard Trieuf1775fb2011-09-06 21:43:51 +00006543 if (!LHSType->hasFloatingRepresentation() &&
Richard Trieuccd891a2011-09-09 01:45:06 +00006544 !(LHSType->isBlockPointerType() && IsRelational) &&
Richard Trieuf1775fb2011-09-06 21:43:51 +00006545 !LHS.get()->getLocStart().isMacroID() &&
6546 !RHS.get()->getLocStart().isMacroID()) {
Chris Lattner55660a72009-03-08 19:39:53 +00006547 // For non-floating point types, check for self-comparisons of the form
6548 // x == x, x != x, x < x, etc. These always evaluate to a constant, and
6549 // often indicate logic errors in the program.
Chandler Carruth64d092c2010-07-12 06:23:38 +00006550 //
6551 // NOTE: Don't warn about comparison expressions resulting from macro
6552 // expansion. Also don't warn about comparisons which are only self
6553 // comparisons within a template specialization. The warnings should catch
6554 // obvious cases in the definition of the template anyways. The idea is to
6555 // warn when the typed comparison operator will always evaluate to the same
6556 // result.
Chandler Carruth99919472010-07-10 12:30:03 +00006557 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LHSStripped)) {
Douglas Gregord64fdd02010-06-08 19:50:34 +00006558 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RHSStripped)) {
Ted Kremenekfbcb0eb2010-09-16 00:03:01 +00006559 if (DRL->getDecl() == DRR->getDecl() &&
Chandler Carruth99919472010-07-10 12:30:03 +00006560 !IsWithinTemplateSpecialization(DRL->getDecl())) {
Ted Kremenek351ba912011-02-23 01:52:04 +00006561 DiagRuntimeBehavior(Loc, 0, PDiag(diag::warn_comparison_always)
Douglas Gregord64fdd02010-06-08 19:50:34 +00006562 << 0 // self-
John McCall2de56d12010-08-25 11:45:40 +00006563 << (Opc == BO_EQ
6564 || Opc == BO_LE
6565 || Opc == BO_GE));
Richard Trieuf1775fb2011-09-06 21:43:51 +00006566 } else if (LHSType->isArrayType() && RHSType->isArrayType() &&
Douglas Gregord64fdd02010-06-08 19:50:34 +00006567 !DRL->getDecl()->getType()->isReferenceType() &&
6568 !DRR->getDecl()->getType()->isReferenceType()) {
6569 // what is it always going to eval to?
6570 char always_evals_to;
6571 switch(Opc) {
John McCall2de56d12010-08-25 11:45:40 +00006572 case BO_EQ: // e.g. array1 == array2
Douglas Gregord64fdd02010-06-08 19:50:34 +00006573 always_evals_to = 0; // false
6574 break;
John McCall2de56d12010-08-25 11:45:40 +00006575 case BO_NE: // e.g. array1 != array2
Douglas Gregord64fdd02010-06-08 19:50:34 +00006576 always_evals_to = 1; // true
6577 break;
6578 default:
6579 // best we can say is 'a constant'
6580 always_evals_to = 2; // e.g. array1 <= array2
6581 break;
6582 }
Ted Kremenek351ba912011-02-23 01:52:04 +00006583 DiagRuntimeBehavior(Loc, 0, PDiag(diag::warn_comparison_always)
Douglas Gregord64fdd02010-06-08 19:50:34 +00006584 << 1 // array
6585 << always_evals_to);
6586 }
6587 }
Chandler Carruth99919472010-07-10 12:30:03 +00006588 }
Mike Stump1eb44332009-09-09 15:08:12 +00006589
Chris Lattner55660a72009-03-08 19:39:53 +00006590 if (isa<CastExpr>(LHSStripped))
6591 LHSStripped = LHSStripped->IgnoreParenCasts();
6592 if (isa<CastExpr>(RHSStripped))
6593 RHSStripped = RHSStripped->IgnoreParenCasts();
Mike Stump1eb44332009-09-09 15:08:12 +00006594
Chris Lattner55660a72009-03-08 19:39:53 +00006595 // Warn about comparisons against a string constant (unless the other
6596 // operand is null), the user probably wants strcmp.
Douglas Gregora86b8322009-04-06 18:45:53 +00006597 Expr *literalString = 0;
6598 Expr *literalStringStripped = 0;
Chris Lattner55660a72009-03-08 19:39:53 +00006599 if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) &&
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00006600 !RHSStripped->isNullPointerConstant(Context,
Douglas Gregorce940492009-09-25 04:25:58 +00006601 Expr::NPC_ValueDependentIsNull)) {
Richard Trieuf1775fb2011-09-06 21:43:51 +00006602 literalString = LHS.get();
Douglas Gregora86b8322009-04-06 18:45:53 +00006603 literalStringStripped = LHSStripped;
Mike Stumpac5fc7c2009-08-04 21:02:39 +00006604 } else if ((isa<StringLiteral>(RHSStripped) ||
6605 isa<ObjCEncodeExpr>(RHSStripped)) &&
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00006606 !LHSStripped->isNullPointerConstant(Context,
Douglas Gregorce940492009-09-25 04:25:58 +00006607 Expr::NPC_ValueDependentIsNull)) {
Richard Trieuf1775fb2011-09-06 21:43:51 +00006608 literalString = RHS.get();
Douglas Gregora86b8322009-04-06 18:45:53 +00006609 literalStringStripped = RHSStripped;
6610 }
6611
6612 if (literalString) {
6613 std::string resultComparison;
6614 switch (Opc) {
John McCall2de56d12010-08-25 11:45:40 +00006615 case BO_LT: resultComparison = ") < 0"; break;
6616 case BO_GT: resultComparison = ") > 0"; break;
6617 case BO_LE: resultComparison = ") <= 0"; break;
6618 case BO_GE: resultComparison = ") >= 0"; break;
6619 case BO_EQ: resultComparison = ") == 0"; break;
6620 case BO_NE: resultComparison = ") != 0"; break;
David Blaikieb219cfc2011-09-23 05:06:16 +00006621 default: llvm_unreachable("Invalid comparison operator");
Douglas Gregora86b8322009-04-06 18:45:53 +00006622 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00006623
Ted Kremenek351ba912011-02-23 01:52:04 +00006624 DiagRuntimeBehavior(Loc, 0,
Douglas Gregord1e4d9b2010-01-12 23:18:54 +00006625 PDiag(diag::warn_stringcompare)
6626 << isa<ObjCEncodeExpr>(literalStringStripped)
Ted Kremenek03a4bee2010-04-09 20:26:53 +00006627 << literalString->getSourceRange());
Douglas Gregora86b8322009-04-06 18:45:53 +00006628 }
Ted Kremenek3ca0bf22007-10-29 16:58:49 +00006629 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00006630
Douglas Gregord64fdd02010-06-08 19:50:34 +00006631 // C99 6.5.8p3 / C99 6.5.9p4
Richard Trieuf1775fb2011-09-06 21:43:51 +00006632 if (LHS.get()->getType()->isArithmeticType() &&
6633 RHS.get()->getType()->isArithmeticType()) {
6634 UsualArithmeticConversions(LHS, RHS);
6635 if (LHS.isInvalid() || RHS.isInvalid())
John Wiegley429bb272011-04-08 18:41:53 +00006636 return QualType();
6637 }
Douglas Gregord64fdd02010-06-08 19:50:34 +00006638 else {
Richard Trieuf1775fb2011-09-06 21:43:51 +00006639 LHS = UsualUnaryConversions(LHS.take());
6640 if (LHS.isInvalid())
John Wiegley429bb272011-04-08 18:41:53 +00006641 return QualType();
6642
Richard Trieuf1775fb2011-09-06 21:43:51 +00006643 RHS = UsualUnaryConversions(RHS.take());
6644 if (RHS.isInvalid())
John Wiegley429bb272011-04-08 18:41:53 +00006645 return QualType();
Douglas Gregord64fdd02010-06-08 19:50:34 +00006646 }
6647
Richard Trieuf1775fb2011-09-06 21:43:51 +00006648 LHSType = LHS.get()->getType();
6649 RHSType = RHS.get()->getType();
Douglas Gregord64fdd02010-06-08 19:50:34 +00006650
Douglas Gregor447b69e2008-11-19 03:25:36 +00006651 // The result of comparisons is 'bool' in C++, 'int' in C.
Argyrios Kyrtzidis16f744b2011-02-18 20:55:15 +00006652 QualType ResultTy = Context.getLogicalOperationType();
Douglas Gregor447b69e2008-11-19 03:25:36 +00006653
Richard Trieuccd891a2011-09-09 01:45:06 +00006654 if (IsRelational) {
Richard Trieuf1775fb2011-09-06 21:43:51 +00006655 if (LHSType->isRealType() && RHSType->isRealType())
Douglas Gregor447b69e2008-11-19 03:25:36 +00006656 return ResultTy;
Chris Lattnera5937dd2007-08-26 01:18:55 +00006657 } else {
Ted Kremenek72cb1ae2007-10-29 17:13:39 +00006658 // Check for comparisons of floating point operands using != and ==.
Richard Trieuf1775fb2011-09-06 21:43:51 +00006659 if (LHSType->hasFloatingRepresentation())
6660 CheckFloatComparison(Loc, LHS.get(), RHS.get());
Mike Stumpeed9cac2009-02-19 03:04:26 +00006661
Richard Trieuf1775fb2011-09-06 21:43:51 +00006662 if (LHSType->isArithmeticType() && RHSType->isArithmeticType())
Douglas Gregor447b69e2008-11-19 03:25:36 +00006663 return ResultTy;
Chris Lattnera5937dd2007-08-26 01:18:55 +00006664 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00006665
Richard Trieuf1775fb2011-09-06 21:43:51 +00006666 bool LHSIsNull = LHS.get()->isNullPointerConstant(Context,
Douglas Gregorce940492009-09-25 04:25:58 +00006667 Expr::NPC_ValueDependentIsNull);
Richard Trieuf1775fb2011-09-06 21:43:51 +00006668 bool RHSIsNull = RHS.get()->isNullPointerConstant(Context,
Douglas Gregorce940492009-09-25 04:25:58 +00006669 Expr::NPC_ValueDependentIsNull);
Mike Stumpeed9cac2009-02-19 03:04:26 +00006670
Douglas Gregor6e5122c2010-06-15 21:38:40 +00006671 // All of the following pointer-related warnings are GCC extensions, except
6672 // when handling null pointer constants.
Richard Trieuf1775fb2011-09-06 21:43:51 +00006673 if (LHSType->isPointerType() && RHSType->isPointerType()) { // C99 6.5.8p2
Chris Lattnerbc896f52008-04-03 05:07:25 +00006674 QualType LCanPointeeTy =
John McCall1d9b3b22011-09-09 05:25:32 +00006675 LHSType->castAs<PointerType>()->getPointeeType().getCanonicalType();
Chris Lattnerbc896f52008-04-03 05:07:25 +00006676 QualType RCanPointeeTy =
John McCall1d9b3b22011-09-09 05:25:32 +00006677 RHSType->castAs<PointerType>()->getPointeeType().getCanonicalType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00006678
David Blaikie4e4d0842012-03-11 07:00:24 +00006679 if (getLangOpts().CPlusPlus) {
Eli Friedman3075e762009-08-23 00:27:47 +00006680 if (LCanPointeeTy == RCanPointeeTy)
6681 return ResultTy;
Richard Trieuccd891a2011-09-09 01:45:06 +00006682 if (!IsRelational &&
Fariborz Jahanian51874dd2009-12-21 18:19:17 +00006683 (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) {
6684 // Valid unless comparison between non-null pointer and function pointer
6685 // This is a gcc extension compatibility comparison.
Douglas Gregor6e5122c2010-06-15 21:38:40 +00006686 // In a SFINAE context, we treat this as a hard error to maintain
6687 // conformance with the C++ standard.
Fariborz Jahanian51874dd2009-12-21 18:19:17 +00006688 if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType())
6689 && !LHSIsNull && !RHSIsNull) {
Richard Trieu7be1be02011-09-02 02:55:45 +00006690 diagnoseFunctionPointerToVoidComparison(
Richard Trieuf1775fb2011-09-06 21:43:51 +00006691 *this, Loc, LHS, RHS, /*isError*/ isSFINAEContext());
Douglas Gregor6e5122c2010-06-15 21:38:40 +00006692
6693 if (isSFINAEContext())
6694 return QualType();
6695
Richard Trieuf1775fb2011-09-06 21:43:51 +00006696 RHS = ImpCastExprToType(RHS.take(), LHSType, CK_BitCast);
Fariborz Jahanian51874dd2009-12-21 18:19:17 +00006697 return ResultTy;
6698 }
6699 }
Anders Carlsson0c8209e2010-11-04 03:17:43 +00006700
Richard Trieuf1775fb2011-09-06 21:43:51 +00006701 if (convertPointersToCompositeType(*this, Loc, LHS, RHS))
Douglas Gregor0c6db942009-05-04 06:07:12 +00006702 return QualType();
Richard Trieu7be1be02011-09-02 02:55:45 +00006703 else
6704 return ResultTy;
Douglas Gregor0c6db942009-05-04 06:07:12 +00006705 }
Eli Friedman3075e762009-08-23 00:27:47 +00006706 // C99 6.5.9p2 and C99 6.5.8p2
6707 if (Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(),
6708 RCanPointeeTy.getUnqualifiedType())) {
6709 // Valid unless a relational comparison of function pointers
Richard Trieuccd891a2011-09-09 01:45:06 +00006710 if (IsRelational && LCanPointeeTy->isFunctionType()) {
Eli Friedman3075e762009-08-23 00:27:47 +00006711 Diag(Loc, diag::ext_typecheck_ordered_comparison_of_function_pointers)
Richard Trieuf1775fb2011-09-06 21:43:51 +00006712 << LHSType << RHSType << LHS.get()->getSourceRange()
6713 << RHS.get()->getSourceRange();
Eli Friedman3075e762009-08-23 00:27:47 +00006714 }
Richard Trieuccd891a2011-09-09 01:45:06 +00006715 } else if (!IsRelational &&
Eli Friedman3075e762009-08-23 00:27:47 +00006716 (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) {
6717 // Valid unless comparison between non-null pointer and function pointer
6718 if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType())
Richard Trieu7be1be02011-09-02 02:55:45 +00006719 && !LHSIsNull && !RHSIsNull)
Richard Trieuf1775fb2011-09-06 21:43:51 +00006720 diagnoseFunctionPointerToVoidComparison(*this, Loc, LHS, RHS,
Richard Trieu7be1be02011-09-02 02:55:45 +00006721 /*isError*/false);
Eli Friedman3075e762009-08-23 00:27:47 +00006722 } else {
6723 // Invalid
Richard Trieuf1775fb2011-09-06 21:43:51 +00006724 diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS, /*isError*/false);
Reid Spencer5f016e22007-07-11 17:01:13 +00006725 }
John McCall34d6f932011-03-11 04:25:25 +00006726 if (LCanPointeeTy != RCanPointeeTy) {
6727 if (LHSIsNull && !RHSIsNull)
Richard Trieuf1775fb2011-09-06 21:43:51 +00006728 LHS = ImpCastExprToType(LHS.take(), RHSType, CK_BitCast);
John McCall34d6f932011-03-11 04:25:25 +00006729 else
Richard Trieuf1775fb2011-09-06 21:43:51 +00006730 RHS = ImpCastExprToType(RHS.take(), LHSType, CK_BitCast);
John McCall34d6f932011-03-11 04:25:25 +00006731 }
Douglas Gregor447b69e2008-11-19 03:25:36 +00006732 return ResultTy;
Steve Naroffe77fd3c2007-08-16 21:48:38 +00006733 }
Mike Stump1eb44332009-09-09 15:08:12 +00006734
David Blaikie4e4d0842012-03-11 07:00:24 +00006735 if (getLangOpts().CPlusPlus) {
Anders Carlsson0c8209e2010-11-04 03:17:43 +00006736 // Comparison of nullptr_t with itself.
Richard Trieuf1775fb2011-09-06 21:43:51 +00006737 if (LHSType->isNullPtrType() && RHSType->isNullPtrType())
Anders Carlsson0c8209e2010-11-04 03:17:43 +00006738 return ResultTy;
6739
Mike Stump1eb44332009-09-09 15:08:12 +00006740 // Comparison of pointers with null pointer constants and equality
Douglas Gregor20b3e992009-08-24 17:42:35 +00006741 // comparisons of member pointers to null pointer constants.
Mike Stump1eb44332009-09-09 15:08:12 +00006742 if (RHSIsNull &&
Richard Trieuf1775fb2011-09-06 21:43:51 +00006743 ((LHSType->isAnyPointerType() || LHSType->isNullPtrType()) ||
Richard Trieuccd891a2011-09-09 01:45:06 +00006744 (!IsRelational &&
Richard Trieuf1775fb2011-09-06 21:43:51 +00006745 (LHSType->isMemberPointerType() || LHSType->isBlockPointerType())))) {
6746 RHS = ImpCastExprToType(RHS.take(), LHSType,
6747 LHSType->isMemberPointerType()
John McCall2de56d12010-08-25 11:45:40 +00006748 ? CK_NullToMemberPointer
John McCall404cd162010-11-13 01:35:44 +00006749 : CK_NullToPointer);
Sebastian Redl6e8ed162009-05-10 18:38:11 +00006750 return ResultTy;
6751 }
Douglas Gregor20b3e992009-08-24 17:42:35 +00006752 if (LHSIsNull &&
Richard Trieuf1775fb2011-09-06 21:43:51 +00006753 ((RHSType->isAnyPointerType() || RHSType->isNullPtrType()) ||
Richard Trieuccd891a2011-09-09 01:45:06 +00006754 (!IsRelational &&
Richard Trieuf1775fb2011-09-06 21:43:51 +00006755 (RHSType->isMemberPointerType() || RHSType->isBlockPointerType())))) {
6756 LHS = ImpCastExprToType(LHS.take(), RHSType,
6757 RHSType->isMemberPointerType()
John McCall2de56d12010-08-25 11:45:40 +00006758 ? CK_NullToMemberPointer
John McCall404cd162010-11-13 01:35:44 +00006759 : CK_NullToPointer);
Sebastian Redl6e8ed162009-05-10 18:38:11 +00006760 return ResultTy;
6761 }
Douglas Gregor20b3e992009-08-24 17:42:35 +00006762
6763 // Comparison of member pointers.
Richard Trieuccd891a2011-09-09 01:45:06 +00006764 if (!IsRelational &&
Richard Trieuf1775fb2011-09-06 21:43:51 +00006765 LHSType->isMemberPointerType() && RHSType->isMemberPointerType()) {
6766 if (convertPointersToCompositeType(*this, Loc, LHS, RHS))
Douglas Gregor20b3e992009-08-24 17:42:35 +00006767 return QualType();
Richard Trieu7be1be02011-09-02 02:55:45 +00006768 else
6769 return ResultTy;
Douglas Gregor20b3e992009-08-24 17:42:35 +00006770 }
Douglas Gregor90566c02011-03-01 17:16:20 +00006771
6772 // Handle scoped enumeration types specifically, since they don't promote
6773 // to integers.
Richard Trieuf1775fb2011-09-06 21:43:51 +00006774 if (LHS.get()->getType()->isEnumeralType() &&
6775 Context.hasSameUnqualifiedType(LHS.get()->getType(),
6776 RHS.get()->getType()))
Douglas Gregor90566c02011-03-01 17:16:20 +00006777 return ResultTy;
Sebastian Redl6e8ed162009-05-10 18:38:11 +00006778 }
Mike Stump1eb44332009-09-09 15:08:12 +00006779
Steve Naroff1c7d0672008-09-04 15:10:53 +00006780 // Handle block pointer types.
Richard Trieuccd891a2011-09-09 01:45:06 +00006781 if (!IsRelational && LHSType->isBlockPointerType() &&
Richard Trieuf1775fb2011-09-06 21:43:51 +00006782 RHSType->isBlockPointerType()) {
John McCall1d9b3b22011-09-09 05:25:32 +00006783 QualType lpointee = LHSType->castAs<BlockPointerType>()->getPointeeType();
6784 QualType rpointee = RHSType->castAs<BlockPointerType>()->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00006785
Steve Naroff1c7d0672008-09-04 15:10:53 +00006786 if (!LHSIsNull && !RHSIsNull &&
Eli Friedman26784c12009-06-08 05:08:54 +00006787 !Context.typesAreCompatible(lpointee, rpointee)) {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00006788 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
Richard Trieuf1775fb2011-09-06 21:43:51 +00006789 << LHSType << RHSType << LHS.get()->getSourceRange()
6790 << RHS.get()->getSourceRange();
Steve Naroff1c7d0672008-09-04 15:10:53 +00006791 }
Richard Trieuf1775fb2011-09-06 21:43:51 +00006792 RHS = ImpCastExprToType(RHS.take(), LHSType, CK_BitCast);
Douglas Gregor447b69e2008-11-19 03:25:36 +00006793 return ResultTy;
Steve Naroff1c7d0672008-09-04 15:10:53 +00006794 }
John Wiegley429bb272011-04-08 18:41:53 +00006795
Steve Naroff59f53942008-09-28 01:11:11 +00006796 // Allow block pointers to be compared with null pointer constants.
Richard Trieuccd891a2011-09-09 01:45:06 +00006797 if (!IsRelational
Richard Trieuf1775fb2011-09-06 21:43:51 +00006798 && ((LHSType->isBlockPointerType() && RHSType->isPointerType())
6799 || (LHSType->isPointerType() && RHSType->isBlockPointerType()))) {
Steve Naroff59f53942008-09-28 01:11:11 +00006800 if (!LHSIsNull && !RHSIsNull) {
Richard Trieuf1775fb2011-09-06 21:43:51 +00006801 if (!((RHSType->isPointerType() && RHSType->castAs<PointerType>()
Mike Stumpdd3e1662009-05-07 03:14:14 +00006802 ->getPointeeType()->isVoidType())
Richard Trieuf1775fb2011-09-06 21:43:51 +00006803 || (LHSType->isPointerType() && LHSType->castAs<PointerType>()
Mike Stumpdd3e1662009-05-07 03:14:14 +00006804 ->getPointeeType()->isVoidType())))
6805 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
Richard Trieuf1775fb2011-09-06 21:43:51 +00006806 << LHSType << RHSType << LHS.get()->getSourceRange()
6807 << RHS.get()->getSourceRange();
Steve Naroff59f53942008-09-28 01:11:11 +00006808 }
John McCall34d6f932011-03-11 04:25:25 +00006809 if (LHSIsNull && !RHSIsNull)
John McCall1d9b3b22011-09-09 05:25:32 +00006810 LHS = ImpCastExprToType(LHS.take(), RHSType,
6811 RHSType->isPointerType() ? CK_BitCast
6812 : CK_AnyPointerToBlockPointerCast);
John McCall34d6f932011-03-11 04:25:25 +00006813 else
John McCall1d9b3b22011-09-09 05:25:32 +00006814 RHS = ImpCastExprToType(RHS.take(), LHSType,
6815 LHSType->isPointerType() ? CK_BitCast
6816 : CK_AnyPointerToBlockPointerCast);
Douglas Gregor447b69e2008-11-19 03:25:36 +00006817 return ResultTy;
Steve Naroff59f53942008-09-28 01:11:11 +00006818 }
Steve Naroff1c7d0672008-09-04 15:10:53 +00006819
Richard Trieuf1775fb2011-09-06 21:43:51 +00006820 if (LHSType->isObjCObjectPointerType() ||
6821 RHSType->isObjCObjectPointerType()) {
6822 const PointerType *LPT = LHSType->getAs<PointerType>();
6823 const PointerType *RPT = RHSType->getAs<PointerType>();
John McCall34d6f932011-03-11 04:25:25 +00006824 if (LPT || RPT) {
6825 bool LPtrToVoid = LPT ? LPT->getPointeeType()->isVoidType() : false;
6826 bool RPtrToVoid = RPT ? RPT->getPointeeType()->isVoidType() : false;
Mike Stumpeed9cac2009-02-19 03:04:26 +00006827
Steve Naroffa8069f12008-11-17 19:49:16 +00006828 if (!LPtrToVoid && !RPtrToVoid &&
Richard Trieuf1775fb2011-09-06 21:43:51 +00006829 !Context.typesAreCompatible(LHSType, RHSType)) {
6830 diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS,
Richard Trieu7be1be02011-09-02 02:55:45 +00006831 /*isError*/false);
Steve Naroffa5ad8632008-10-27 10:33:19 +00006832 }
John McCall34d6f932011-03-11 04:25:25 +00006833 if (LHSIsNull && !RHSIsNull)
John McCall1d9b3b22011-09-09 05:25:32 +00006834 LHS = ImpCastExprToType(LHS.take(), RHSType,
6835 RPT ? CK_BitCast :CK_CPointerToObjCPointerCast);
John McCall34d6f932011-03-11 04:25:25 +00006836 else
John McCall1d9b3b22011-09-09 05:25:32 +00006837 RHS = ImpCastExprToType(RHS.take(), LHSType,
6838 LPT ? CK_BitCast :CK_CPointerToObjCPointerCast);
Douglas Gregor447b69e2008-11-19 03:25:36 +00006839 return ResultTy;
Steve Naroff87f3b932008-10-20 18:19:10 +00006840 }
Richard Trieuf1775fb2011-09-06 21:43:51 +00006841 if (LHSType->isObjCObjectPointerType() &&
6842 RHSType->isObjCObjectPointerType()) {
6843 if (!Context.areComparableObjCPointerTypes(LHSType, RHSType))
6844 diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS,
Richard Trieu7be1be02011-09-02 02:55:45 +00006845 /*isError*/false);
John McCall34d6f932011-03-11 04:25:25 +00006846 if (LHSIsNull && !RHSIsNull)
Richard Trieuf1775fb2011-09-06 21:43:51 +00006847 LHS = ImpCastExprToType(LHS.take(), RHSType, CK_BitCast);
John McCall34d6f932011-03-11 04:25:25 +00006848 else
Richard Trieuf1775fb2011-09-06 21:43:51 +00006849 RHS = ImpCastExprToType(RHS.take(), LHSType, CK_BitCast);
Douglas Gregor447b69e2008-11-19 03:25:36 +00006850 return ResultTy;
Steve Naroff20373222008-06-03 14:04:54 +00006851 }
Fariborz Jahanian7359f042007-12-20 01:06:58 +00006852 }
Richard Trieuf1775fb2011-09-06 21:43:51 +00006853 if ((LHSType->isAnyPointerType() && RHSType->isIntegerType()) ||
6854 (LHSType->isIntegerType() && RHSType->isAnyPointerType())) {
Chris Lattner06c0f5b2009-08-23 00:03:44 +00006855 unsigned DiagID = 0;
Douglas Gregor6e5122c2010-06-15 21:38:40 +00006856 bool isError = false;
Richard Trieuf1775fb2011-09-06 21:43:51 +00006857 if ((LHSIsNull && LHSType->isIntegerType()) ||
6858 (RHSIsNull && RHSType->isIntegerType())) {
David Blaikie4e4d0842012-03-11 07:00:24 +00006859 if (IsRelational && !getLangOpts().CPlusPlus)
Chris Lattner06c0f5b2009-08-23 00:03:44 +00006860 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_and_zero;
David Blaikie4e4d0842012-03-11 07:00:24 +00006861 } else if (IsRelational && !getLangOpts().CPlusPlus)
Chris Lattner06c0f5b2009-08-23 00:03:44 +00006862 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer;
David Blaikie4e4d0842012-03-11 07:00:24 +00006863 else if (getLangOpts().CPlusPlus) {
Douglas Gregor6e5122c2010-06-15 21:38:40 +00006864 DiagID = diag::err_typecheck_comparison_of_pointer_integer;
6865 isError = true;
6866 } else
Chris Lattner06c0f5b2009-08-23 00:03:44 +00006867 DiagID = diag::ext_typecheck_comparison_of_pointer_integer;
Mike Stump1eb44332009-09-09 15:08:12 +00006868
Chris Lattner06c0f5b2009-08-23 00:03:44 +00006869 if (DiagID) {
Chris Lattner6365e3e2009-08-22 18:58:31 +00006870 Diag(Loc, DiagID)
Richard Trieuf1775fb2011-09-06 21:43:51 +00006871 << LHSType << RHSType << LHS.get()->getSourceRange()
6872 << RHS.get()->getSourceRange();
Douglas Gregor6e5122c2010-06-15 21:38:40 +00006873 if (isError)
6874 return QualType();
Chris Lattner6365e3e2009-08-22 18:58:31 +00006875 }
Douglas Gregor6e5122c2010-06-15 21:38:40 +00006876
Richard Trieuf1775fb2011-09-06 21:43:51 +00006877 if (LHSType->isIntegerType())
6878 LHS = ImpCastExprToType(LHS.take(), RHSType,
John McCall404cd162010-11-13 01:35:44 +00006879 LHSIsNull ? CK_NullToPointer : CK_IntegralToPointer);
Chris Lattner06c0f5b2009-08-23 00:03:44 +00006880 else
Richard Trieuf1775fb2011-09-06 21:43:51 +00006881 RHS = ImpCastExprToType(RHS.take(), LHSType,
John McCall404cd162010-11-13 01:35:44 +00006882 RHSIsNull ? CK_NullToPointer : CK_IntegralToPointer);
Douglas Gregor447b69e2008-11-19 03:25:36 +00006883 return ResultTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00006884 }
Douglas Gregor6e5122c2010-06-15 21:38:40 +00006885
Steve Naroff39218df2008-09-04 16:56:14 +00006886 // Handle block pointers.
Richard Trieuccd891a2011-09-09 01:45:06 +00006887 if (!IsRelational && RHSIsNull
Richard Trieuf1775fb2011-09-06 21:43:51 +00006888 && LHSType->isBlockPointerType() && RHSType->isIntegerType()) {
6889 RHS = ImpCastExprToType(RHS.take(), LHSType, CK_NullToPointer);
Douglas Gregor447b69e2008-11-19 03:25:36 +00006890 return ResultTy;
Steve Naroff39218df2008-09-04 16:56:14 +00006891 }
Richard Trieuccd891a2011-09-09 01:45:06 +00006892 if (!IsRelational && LHSIsNull
Richard Trieuf1775fb2011-09-06 21:43:51 +00006893 && LHSType->isIntegerType() && RHSType->isBlockPointerType()) {
6894 LHS = ImpCastExprToType(LHS.take(), RHSType, CK_NullToPointer);
Douglas Gregor447b69e2008-11-19 03:25:36 +00006895 return ResultTy;
Steve Naroff39218df2008-09-04 16:56:14 +00006896 }
Douglas Gregor90566c02011-03-01 17:16:20 +00006897
Richard Trieuf1775fb2011-09-06 21:43:51 +00006898 return InvalidOperands(Loc, LHS, RHS);
Reid Spencer5f016e22007-07-11 17:01:13 +00006899}
6900
Tanya Lattner4f692c22012-01-16 21:02:28 +00006901
6902// Return a signed type that is of identical size and number of elements.
6903// For floating point vectors, return an integer type of identical size
6904// and number of elements.
6905QualType Sema::GetSignedVectorType(QualType V) {
6906 const VectorType *VTy = V->getAs<VectorType>();
6907 unsigned TypeSize = Context.getTypeSize(VTy->getElementType());
6908 if (TypeSize == Context.getTypeSize(Context.CharTy))
6909 return Context.getExtVectorType(Context.CharTy, VTy->getNumElements());
6910 else if (TypeSize == Context.getTypeSize(Context.ShortTy))
6911 return Context.getExtVectorType(Context.ShortTy, VTy->getNumElements());
6912 else if (TypeSize == Context.getTypeSize(Context.IntTy))
6913 return Context.getExtVectorType(Context.IntTy, VTy->getNumElements());
6914 else if (TypeSize == Context.getTypeSize(Context.LongTy))
6915 return Context.getExtVectorType(Context.LongTy, VTy->getNumElements());
6916 assert(TypeSize == Context.getTypeSize(Context.LongLongTy) &&
6917 "Unhandled vector element size in vector compare");
6918 return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements());
6919}
6920
Nate Begemanbe2341d2008-07-14 18:02:46 +00006921/// CheckVectorCompareOperands - vector comparisons are a clang extension that
Mike Stumpeed9cac2009-02-19 03:04:26 +00006922/// operates on extended vector types. Instead of producing an IntTy result,
Nate Begemanbe2341d2008-07-14 18:02:46 +00006923/// like a scalar comparison, a vector comparison produces a vector of integer
6924/// types.
Richard Trieu9f60dee2011-09-07 01:19:57 +00006925QualType Sema::CheckVectorCompareOperands(ExprResult &LHS, ExprResult &RHS,
Chris Lattner29a1cfb2008-11-18 01:30:42 +00006926 SourceLocation Loc,
Richard Trieuccd891a2011-09-09 01:45:06 +00006927 bool IsRelational) {
Nate Begemanbe2341d2008-07-14 18:02:46 +00006928 // Check to make sure we're operating on vectors of the same type and width,
6929 // Allowing one side to be a scalar of element type.
Richard Trieu9f60dee2011-09-07 01:19:57 +00006930 QualType vType = CheckVectorOperands(LHS, RHS, Loc, /*isCompAssign*/false);
Nate Begemanbe2341d2008-07-14 18:02:46 +00006931 if (vType.isNull())
6932 return vType;
Mike Stumpeed9cac2009-02-19 03:04:26 +00006933
Richard Trieu9f60dee2011-09-07 01:19:57 +00006934 QualType LHSType = LHS.get()->getType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00006935
Anton Yartsev7870b132011-03-27 15:36:07 +00006936 // If AltiVec, the comparison results in a numeric type, i.e.
6937 // bool for C++, int for C
Anton Yartsev6305f722011-03-28 21:00:05 +00006938 if (vType->getAs<VectorType>()->getVectorKind() == VectorType::AltiVecVector)
Anton Yartsev7870b132011-03-27 15:36:07 +00006939 return Context.getLogicalOperationType();
6940
Nate Begemanbe2341d2008-07-14 18:02:46 +00006941 // For non-floating point types, check for self-comparisons of the form
6942 // x == x, x != x, x < x, etc. These always evaluate to a constant, and
6943 // often indicate logic errors in the program.
Richard Trieu9f60dee2011-09-07 01:19:57 +00006944 if (!LHSType->hasFloatingRepresentation()) {
Richard Smith9c129f82011-10-28 03:31:48 +00006945 if (DeclRefExpr* DRL
6946 = dyn_cast<DeclRefExpr>(LHS.get()->IgnoreParenImpCasts()))
6947 if (DeclRefExpr* DRR
6948 = dyn_cast<DeclRefExpr>(RHS.get()->IgnoreParenImpCasts()))
Nate Begemanbe2341d2008-07-14 18:02:46 +00006949 if (DRL->getDecl() == DRR->getDecl())
Ted Kremenek351ba912011-02-23 01:52:04 +00006950 DiagRuntimeBehavior(Loc, 0,
Douglas Gregord64fdd02010-06-08 19:50:34 +00006951 PDiag(diag::warn_comparison_always)
6952 << 0 // self-
6953 << 2 // "a constant"
6954 );
Nate Begemanbe2341d2008-07-14 18:02:46 +00006955 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00006956
Nate Begemanbe2341d2008-07-14 18:02:46 +00006957 // Check for comparisons of floating point operands using != and ==.
Richard Trieuccd891a2011-09-09 01:45:06 +00006958 if (!IsRelational && LHSType->hasFloatingRepresentation()) {
David Blaikie52e4c602012-01-16 05:16:03 +00006959 assert (RHS.get()->getType()->hasFloatingRepresentation());
Richard Trieu9f60dee2011-09-07 01:19:57 +00006960 CheckFloatComparison(Loc, LHS.get(), RHS.get());
Nate Begemanbe2341d2008-07-14 18:02:46 +00006961 }
Tanya Lattner4f692c22012-01-16 21:02:28 +00006962
6963 // Return a signed type for the vector.
6964 return GetSignedVectorType(LHSType);
6965}
Mike Stumpeed9cac2009-02-19 03:04:26 +00006966
Tanya Lattnerb0f9dd22012-01-19 01:16:16 +00006967QualType Sema::CheckVectorLogicalOperands(ExprResult &LHS, ExprResult &RHS,
6968 SourceLocation Loc) {
Tanya Lattner4f692c22012-01-16 21:02:28 +00006969 // Ensure that either both operands are of the same vector type, or
6970 // one operand is of a vector type and the other is of its element type.
6971 QualType vType = CheckVectorOperands(LHS, RHS, Loc, false);
6972 if (vType.isNull() || vType->isFloatingType())
6973 return InvalidOperands(Loc, LHS, RHS);
6974
6975 return GetSignedVectorType(LHS.get()->getType());
Nate Begemanbe2341d2008-07-14 18:02:46 +00006976}
6977
Reid Spencer5f016e22007-07-11 17:01:13 +00006978inline QualType Sema::CheckBitwiseOperands(
Richard Trieuccd891a2011-09-09 01:45:06 +00006979 ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, bool IsCompAssign) {
Richard Trieu481037f2011-09-16 00:53:10 +00006980 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false);
6981
Richard Trieu9f60dee2011-09-07 01:19:57 +00006982 if (LHS.get()->getType()->isVectorType() ||
6983 RHS.get()->getType()->isVectorType()) {
6984 if (LHS.get()->getType()->hasIntegerRepresentation() &&
6985 RHS.get()->getType()->hasIntegerRepresentation())
Richard Trieuccd891a2011-09-09 01:45:06 +00006986 return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign);
Douglas Gregorf6094622010-07-23 15:58:24 +00006987
Richard Trieu9f60dee2011-09-07 01:19:57 +00006988 return InvalidOperands(Loc, LHS, RHS);
Douglas Gregorf6094622010-07-23 15:58:24 +00006989 }
Steve Naroff90045e82007-07-13 23:32:42 +00006990
Richard Trieu9f60dee2011-09-07 01:19:57 +00006991 ExprResult LHSResult = Owned(LHS), RHSResult = Owned(RHS);
6992 QualType compType = UsualArithmeticConversions(LHSResult, RHSResult,
Richard Trieuccd891a2011-09-09 01:45:06 +00006993 IsCompAssign);
Richard Trieu9f60dee2011-09-07 01:19:57 +00006994 if (LHSResult.isInvalid() || RHSResult.isInvalid())
John Wiegley429bb272011-04-08 18:41:53 +00006995 return QualType();
Richard Trieu9f60dee2011-09-07 01:19:57 +00006996 LHS = LHSResult.take();
6997 RHS = RHSResult.take();
Mike Stumpeed9cac2009-02-19 03:04:26 +00006998
Richard Trieu9f60dee2011-09-07 01:19:57 +00006999 if (LHS.get()->getType()->isIntegralOrUnscopedEnumerationType() &&
7000 RHS.get()->getType()->isIntegralOrUnscopedEnumerationType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00007001 return compType;
Richard Trieu9f60dee2011-09-07 01:19:57 +00007002 return InvalidOperands(Loc, LHS, RHS);
Reid Spencer5f016e22007-07-11 17:01:13 +00007003}
7004
7005inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14]
Richard Trieu9f60dee2011-09-07 01:19:57 +00007006 ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, unsigned Opc) {
Chris Lattner90a8f272010-07-13 19:41:32 +00007007
Tanya Lattner4f692c22012-01-16 21:02:28 +00007008 // Check vector operands differently.
7009 if (LHS.get()->getType()->isVectorType() || RHS.get()->getType()->isVectorType())
7010 return CheckVectorLogicalOperands(LHS, RHS, Loc);
7011
Chris Lattner90a8f272010-07-13 19:41:32 +00007012 // Diagnose cases where the user write a logical and/or but probably meant a
7013 // bitwise one. We do this when the LHS is a non-bool integer and the RHS
7014 // is a constant.
Richard Trieu9f60dee2011-09-07 01:19:57 +00007015 if (LHS.get()->getType()->isIntegerType() &&
7016 !LHS.get()->getType()->isBooleanType() &&
7017 RHS.get()->getType()->isIntegerType() && !RHS.get()->isValueDependent() &&
Richard Trieue5adf592011-07-15 00:00:51 +00007018 // Don't warn in macros or template instantiations.
7019 !Loc.isMacroID() && ActiveTemplateInstantiations.empty()) {
Chris Lattnerb7690b42010-07-24 01:10:11 +00007020 // If the RHS can be constant folded, and if it constant folds to something
7021 // that isn't 0 or 1 (which indicate a potential logical operation that
7022 // happened to fold to true/false) then warn.
Chandler Carruth0683a142011-05-31 05:41:42 +00007023 // Parens on the RHS are ignored.
Richard Smith909c5552011-10-16 23:01:09 +00007024 llvm::APSInt Result;
7025 if (RHS.get()->EvaluateAsInt(Result, Context))
David Blaikie4e4d0842012-03-11 07:00:24 +00007026 if ((getLangOpts().Bool && !RHS.get()->getType()->isBooleanType()) ||
Richard Smith909c5552011-10-16 23:01:09 +00007027 (Result != 0 && Result != 1)) {
Chandler Carruth0683a142011-05-31 05:41:42 +00007028 Diag(Loc, diag::warn_logical_instead_of_bitwise)
Richard Trieu9f60dee2011-09-07 01:19:57 +00007029 << RHS.get()->getSourceRange()
Matt Beaumont-Gay9b127f32011-08-15 17:50:06 +00007030 << (Opc == BO_LAnd ? "&&" : "||");
7031 // Suggest replacing the logical operator with the bitwise version
7032 Diag(Loc, diag::note_logical_instead_of_bitwise_change_operator)
7033 << (Opc == BO_LAnd ? "&" : "|")
7034 << FixItHint::CreateReplacement(SourceRange(
7035 Loc, Lexer::getLocForEndOfToken(Loc, 0, getSourceManager(),
David Blaikie4e4d0842012-03-11 07:00:24 +00007036 getLangOpts())),
Matt Beaumont-Gay9b127f32011-08-15 17:50:06 +00007037 Opc == BO_LAnd ? "&" : "|");
7038 if (Opc == BO_LAnd)
7039 // Suggest replacing "Foo() && kNonZero" with "Foo()"
7040 Diag(Loc, diag::note_logical_instead_of_bitwise_remove_constant)
7041 << FixItHint::CreateRemoval(
7042 SourceRange(
Richard Trieu9f60dee2011-09-07 01:19:57 +00007043 Lexer::getLocForEndOfToken(LHS.get()->getLocEnd(),
Matt Beaumont-Gay9b127f32011-08-15 17:50:06 +00007044 0, getSourceManager(),
David Blaikie4e4d0842012-03-11 07:00:24 +00007045 getLangOpts()),
Richard Trieu9f60dee2011-09-07 01:19:57 +00007046 RHS.get()->getLocEnd()));
Matt Beaumont-Gay9b127f32011-08-15 17:50:06 +00007047 }
Chris Lattnerb7690b42010-07-24 01:10:11 +00007048 }
Chris Lattner90a8f272010-07-13 19:41:32 +00007049
David Blaikie4e4d0842012-03-11 07:00:24 +00007050 if (!Context.getLangOpts().CPlusPlus) {
Richard Trieu9f60dee2011-09-07 01:19:57 +00007051 LHS = UsualUnaryConversions(LHS.take());
7052 if (LHS.isInvalid())
John Wiegley429bb272011-04-08 18:41:53 +00007053 return QualType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00007054
Richard Trieu9f60dee2011-09-07 01:19:57 +00007055 RHS = UsualUnaryConversions(RHS.take());
7056 if (RHS.isInvalid())
John Wiegley429bb272011-04-08 18:41:53 +00007057 return QualType();
7058
Richard Trieu9f60dee2011-09-07 01:19:57 +00007059 if (!LHS.get()->getType()->isScalarType() ||
7060 !RHS.get()->getType()->isScalarType())
7061 return InvalidOperands(Loc, LHS, RHS);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00007062
Anders Carlssona4c98cd2009-11-23 21:47:44 +00007063 return Context.IntTy;
Anders Carlsson04905012009-10-16 01:44:21 +00007064 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00007065
John McCall75f7c0f2010-06-04 00:29:51 +00007066 // The following is safe because we only use this method for
7067 // non-overloadable operands.
7068
Anders Carlssona4c98cd2009-11-23 21:47:44 +00007069 // C++ [expr.log.and]p1
7070 // C++ [expr.log.or]p1
John McCall75f7c0f2010-06-04 00:29:51 +00007071 // The operands are both contextually converted to type bool.
Richard Trieu9f60dee2011-09-07 01:19:57 +00007072 ExprResult LHSRes = PerformContextuallyConvertToBool(LHS.get());
7073 if (LHSRes.isInvalid())
7074 return InvalidOperands(Loc, LHS, RHS);
7075 LHS = move(LHSRes);
John Wiegley429bb272011-04-08 18:41:53 +00007076
Richard Trieu9f60dee2011-09-07 01:19:57 +00007077 ExprResult RHSRes = PerformContextuallyConvertToBool(RHS.get());
7078 if (RHSRes.isInvalid())
7079 return InvalidOperands(Loc, LHS, RHS);
7080 RHS = move(RHSRes);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00007081
Anders Carlssona4c98cd2009-11-23 21:47:44 +00007082 // C++ [expr.log.and]p2
7083 // C++ [expr.log.or]p2
7084 // The result is a bool.
7085 return Context.BoolTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00007086}
7087
Fariborz Jahaniand1fa6442009-01-12 19:55:42 +00007088/// IsReadonlyProperty - Verify that otherwise a valid l-value expression
7089/// is a read-only property; return true if so. A readonly property expression
7090/// depends on various declarations and thus must be treated specially.
7091///
Mike Stump1eb44332009-09-09 15:08:12 +00007092static bool IsReadonlyProperty(Expr *E, Sema &S) {
John McCall3c3b7f92011-10-25 17:37:35 +00007093 const ObjCPropertyRefExpr *PropExpr = dyn_cast<ObjCPropertyRefExpr>(E);
7094 if (!PropExpr) return false;
7095 if (PropExpr->isImplicitProperty()) return false;
John McCall12f78a62010-12-02 01:19:52 +00007096
John McCall3c3b7f92011-10-25 17:37:35 +00007097 ObjCPropertyDecl *PDecl = PropExpr->getExplicitProperty();
7098 QualType BaseType = PropExpr->isSuperReceiver() ?
John McCall12f78a62010-12-02 01:19:52 +00007099 PropExpr->getSuperReceiverType() :
Fariborz Jahanian8ac2d442010-10-14 16:04:05 +00007100 PropExpr->getBase()->getType();
7101
John McCall3c3b7f92011-10-25 17:37:35 +00007102 if (const ObjCObjectPointerType *OPT =
7103 BaseType->getAsObjCInterfacePointerType())
7104 if (ObjCInterfaceDecl *IFace = OPT->getInterfaceDecl())
7105 if (S.isPropertyReadonly(PDecl, IFace))
7106 return true;
Fariborz Jahaniand1fa6442009-01-12 19:55:42 +00007107 return false;
7108}
7109
Fariborz Jahanian14086762011-03-28 23:47:18 +00007110static bool IsConstProperty(Expr *E, Sema &S) {
John McCall3c3b7f92011-10-25 17:37:35 +00007111 const ObjCPropertyRefExpr *PropExpr = dyn_cast<ObjCPropertyRefExpr>(E);
7112 if (!PropExpr) return false;
7113 if (PropExpr->isImplicitProperty()) return false;
Fariborz Jahanian14086762011-03-28 23:47:18 +00007114
John McCall3c3b7f92011-10-25 17:37:35 +00007115 ObjCPropertyDecl *PDecl = PropExpr->getExplicitProperty();
7116 QualType T = PDecl->getType().getNonReferenceType();
7117 return T.isConstQualified();
Fariborz Jahanian14086762011-03-28 23:47:18 +00007118}
7119
Fariborz Jahanian077f4902011-03-26 19:48:30 +00007120static bool IsReadonlyMessage(Expr *E, Sema &S) {
John McCall3c3b7f92011-10-25 17:37:35 +00007121 const MemberExpr *ME = dyn_cast<MemberExpr>(E);
7122 if (!ME) return false;
7123 if (!isa<FieldDecl>(ME->getMemberDecl())) return false;
7124 ObjCMessageExpr *Base =
7125 dyn_cast<ObjCMessageExpr>(ME->getBase()->IgnoreParenImpCasts());
7126 if (!Base) return false;
7127 return Base->getMethodDecl() != 0;
Fariborz Jahanian077f4902011-03-26 19:48:30 +00007128}
7129
John McCall78dae242012-03-13 00:37:01 +00007130/// Is the given expression (which must be 'const') a reference to a
7131/// variable which was originally non-const, but which has become
7132/// 'const' due to being captured within a block?
7133enum NonConstCaptureKind { NCCK_None, NCCK_Block, NCCK_Lambda };
7134static NonConstCaptureKind isReferenceToNonConstCapture(Sema &S, Expr *E) {
7135 assert(E->isLValue() && E->getType().isConstQualified());
7136 E = E->IgnoreParens();
7137
7138 // Must be a reference to a declaration from an enclosing scope.
7139 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E);
7140 if (!DRE) return NCCK_None;
7141 if (!DRE->refersToEnclosingLocal()) return NCCK_None;
7142
7143 // The declaration must be a variable which is not declared 'const'.
7144 VarDecl *var = dyn_cast<VarDecl>(DRE->getDecl());
7145 if (!var) return NCCK_None;
7146 if (var->getType().isConstQualified()) return NCCK_None;
7147 assert(var->hasLocalStorage() && "capture added 'const' to non-local?");
7148
7149 // Decide whether the first capture was for a block or a lambda.
7150 DeclContext *DC = S.CurContext;
7151 while (DC->getParent() != var->getDeclContext())
7152 DC = DC->getParent();
7153 return (isa<BlockDecl>(DC) ? NCCK_Block : NCCK_Lambda);
7154}
7155
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00007156/// CheckForModifiableLvalue - Verify that E is a modifiable lvalue. If not,
7157/// emit an error and return true. If so, return false.
7158static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) {
Daniel Dunbar44e35f72009-04-15 00:08:05 +00007159 SourceLocation OrigLoc = Loc;
Mike Stump1eb44332009-09-09 15:08:12 +00007160 Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context,
Daniel Dunbar44e35f72009-04-15 00:08:05 +00007161 &Loc);
Fariborz Jahaniand1fa6442009-01-12 19:55:42 +00007162 if (IsLV == Expr::MLV_Valid && IsReadonlyProperty(E, S))
7163 IsLV = Expr::MLV_ReadonlyProperty;
Fariborz Jahanian14086762011-03-28 23:47:18 +00007164 else if (Expr::MLV_ConstQualified && IsConstProperty(E, S))
7165 IsLV = Expr::MLV_Valid;
Fariborz Jahanian077f4902011-03-26 19:48:30 +00007166 else if (IsLV == Expr::MLV_ClassTemporary && IsReadonlyMessage(E, S))
7167 IsLV = Expr::MLV_InvalidMessageExpression;
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00007168 if (IsLV == Expr::MLV_Valid)
7169 return false;
Mike Stumpeed9cac2009-02-19 03:04:26 +00007170
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00007171 unsigned Diag = 0;
7172 bool NeedType = false;
7173 switch (IsLV) { // C99 6.5.16p2
John McCallf85e1932011-06-15 23:02:42 +00007174 case Expr::MLV_ConstQualified:
7175 Diag = diag::err_typecheck_assign_const;
7176
John McCall78dae242012-03-13 00:37:01 +00007177 // Use a specialized diagnostic when we're assigning to an object
7178 // from an enclosing function or block.
7179 if (NonConstCaptureKind NCCK = isReferenceToNonConstCapture(S, E)) {
7180 if (NCCK == NCCK_Block)
7181 Diag = diag::err_block_decl_ref_not_modifiable_lvalue;
7182 else
7183 Diag = diag::err_lambda_decl_ref_not_modifiable_lvalue;
7184 break;
7185 }
7186
John McCall7acddac2011-06-17 06:42:21 +00007187 // In ARC, use some specialized diagnostics for occasions where we
7188 // infer 'const'. These are always pseudo-strong variables.
David Blaikie4e4d0842012-03-11 07:00:24 +00007189 if (S.getLangOpts().ObjCAutoRefCount) {
John McCallf85e1932011-06-15 23:02:42 +00007190 DeclRefExpr *declRef = dyn_cast<DeclRefExpr>(E->IgnoreParenCasts());
7191 if (declRef && isa<VarDecl>(declRef->getDecl())) {
7192 VarDecl *var = cast<VarDecl>(declRef->getDecl());
7193
John McCall7acddac2011-06-17 06:42:21 +00007194 // Use the normal diagnostic if it's pseudo-__strong but the
7195 // user actually wrote 'const'.
7196 if (var->isARCPseudoStrong() &&
7197 (!var->getTypeSourceInfo() ||
7198 !var->getTypeSourceInfo()->getType().isConstQualified())) {
7199 // There are two pseudo-strong cases:
7200 // - self
John McCallf85e1932011-06-15 23:02:42 +00007201 ObjCMethodDecl *method = S.getCurMethodDecl();
7202 if (method && var == method->getSelfDecl())
Ted Kremenek2bbcd5c2011-11-14 21:59:25 +00007203 Diag = method->isClassMethod()
7204 ? diag::err_typecheck_arc_assign_self_class_method
7205 : diag::err_typecheck_arc_assign_self;
John McCall7acddac2011-06-17 06:42:21 +00007206
7207 // - fast enumeration variables
7208 else
John McCallf85e1932011-06-15 23:02:42 +00007209 Diag = diag::err_typecheck_arr_assign_enumeration;
John McCall7acddac2011-06-17 06:42:21 +00007210
John McCallf85e1932011-06-15 23:02:42 +00007211 SourceRange Assign;
7212 if (Loc != OrigLoc)
7213 Assign = SourceRange(OrigLoc, OrigLoc);
7214 S.Diag(Loc, Diag) << E->getSourceRange() << Assign;
7215 // We need to preserve the AST regardless, so migration tool
7216 // can do its job.
7217 return false;
7218 }
7219 }
7220 }
7221
7222 break;
Mike Stumpeed9cac2009-02-19 03:04:26 +00007223 case Expr::MLV_ArrayType:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00007224 Diag = diag::err_typecheck_array_not_modifiable_lvalue;
7225 NeedType = true;
7226 break;
Mike Stumpeed9cac2009-02-19 03:04:26 +00007227 case Expr::MLV_NotObjectType:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00007228 Diag = diag::err_typecheck_non_object_not_modifiable_lvalue;
7229 NeedType = true;
7230 break;
Chris Lattnerca354fa2008-11-17 19:51:54 +00007231 case Expr::MLV_LValueCast:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00007232 Diag = diag::err_typecheck_lvalue_casts_not_supported;
7233 break;
Douglas Gregore873fb72010-02-16 21:39:57 +00007234 case Expr::MLV_Valid:
7235 llvm_unreachable("did not take early return for MLV_Valid");
Chris Lattner5cf216b2008-01-04 18:04:52 +00007236 case Expr::MLV_InvalidExpression:
Douglas Gregore873fb72010-02-16 21:39:57 +00007237 case Expr::MLV_MemberFunction:
7238 case Expr::MLV_ClassTemporary:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00007239 Diag = diag::err_typecheck_expression_not_modifiable_lvalue;
7240 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00007241 case Expr::MLV_IncompleteType:
7242 case Expr::MLV_IncompleteVoidType:
Douglas Gregor86447ec2009-03-09 16:13:40 +00007243 return S.RequireCompleteType(Loc, E->getType(),
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00007244 S.PDiag(diag::err_typecheck_incomplete_type_not_modifiable_lvalue)
Anders Carlssonb7906612009-08-26 23:45:07 +00007245 << E->getSourceRange());
Chris Lattner5cf216b2008-01-04 18:04:52 +00007246 case Expr::MLV_DuplicateVectorComponents:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00007247 Diag = diag::err_typecheck_duplicate_vector_components_not_mlvalue;
7248 break;
Fariborz Jahanian5daf5702008-11-22 18:39:36 +00007249 case Expr::MLV_ReadonlyProperty:
Fariborz Jahanianba8d2d62008-11-22 20:25:50 +00007250 case Expr::MLV_NoSetterProperty:
John McCall3c3b7f92011-10-25 17:37:35 +00007251 llvm_unreachable("readonly properties should be processed differently");
Fariborz Jahanian077f4902011-03-26 19:48:30 +00007252 case Expr::MLV_InvalidMessageExpression:
7253 Diag = diag::error_readonly_message_assignment;
7254 break;
Fariborz Jahanian2514a302009-12-15 23:59:41 +00007255 case Expr::MLV_SubObjCPropertySetting:
7256 Diag = diag::error_no_subobject_property_setting;
7257 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00007258 }
Steve Naroffd1861fd2007-07-31 12:34:36 +00007259
Daniel Dunbar44e35f72009-04-15 00:08:05 +00007260 SourceRange Assign;
7261 if (Loc != OrigLoc)
7262 Assign = SourceRange(OrigLoc, OrigLoc);
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00007263 if (NeedType)
Daniel Dunbar44e35f72009-04-15 00:08:05 +00007264 S.Diag(Loc, Diag) << E->getType() << E->getSourceRange() << Assign;
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00007265 else
Mike Stump1eb44332009-09-09 15:08:12 +00007266 S.Diag(Loc, Diag) << E->getSourceRange() << Assign;
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00007267 return true;
7268}
7269
7270
7271
7272// C99 6.5.16.1
Richard Trieu268942b2011-09-07 01:33:52 +00007273QualType Sema::CheckAssignmentOperands(Expr *LHSExpr, ExprResult &RHS,
Chris Lattner29a1cfb2008-11-18 01:30:42 +00007274 SourceLocation Loc,
7275 QualType CompoundType) {
John McCall3c3b7f92011-10-25 17:37:35 +00007276 assert(!LHSExpr->hasPlaceholderType(BuiltinType::PseudoObject));
7277
Chris Lattner29a1cfb2008-11-18 01:30:42 +00007278 // Verify that LHS is a modifiable lvalue, and emit error if not.
Richard Trieu268942b2011-09-07 01:33:52 +00007279 if (CheckForModifiableLvalue(LHSExpr, Loc, *this))
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00007280 return QualType();
Chris Lattner29a1cfb2008-11-18 01:30:42 +00007281
Richard Trieu268942b2011-09-07 01:33:52 +00007282 QualType LHSType = LHSExpr->getType();
Richard Trieu67e29332011-08-02 04:35:43 +00007283 QualType RHSType = CompoundType.isNull() ? RHS.get()->getType() :
7284 CompoundType;
Chris Lattner5cf216b2008-01-04 18:04:52 +00007285 AssignConvertType ConvTy;
Chris Lattner29a1cfb2008-11-18 01:30:42 +00007286 if (CompoundType.isNull()) {
Fariborz Jahaniane2a901a2010-06-07 22:02:01 +00007287 QualType LHSTy(LHSType);
Fariborz Jahaniane2a901a2010-06-07 22:02:01 +00007288 ConvTy = CheckSingleAssignmentConstraints(LHSTy, RHS);
John Wiegley429bb272011-04-08 18:41:53 +00007289 if (RHS.isInvalid())
7290 return QualType();
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00007291 // Special case of NSObject attributes on c-style pointer types.
7292 if (ConvTy == IncompatiblePointer &&
7293 ((Context.isObjCNSObjectType(LHSType) &&
Steve Narofff4954562009-07-16 15:41:00 +00007294 RHSType->isObjCObjectPointerType()) ||
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00007295 (Context.isObjCNSObjectType(RHSType) &&
Steve Narofff4954562009-07-16 15:41:00 +00007296 LHSType->isObjCObjectPointerType())))
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00007297 ConvTy = Compatible;
Mike Stumpeed9cac2009-02-19 03:04:26 +00007298
John McCallf89e55a2010-11-18 06:31:45 +00007299 if (ConvTy == Compatible &&
Fariborz Jahanian466f45a2012-01-24 19:40:13 +00007300 LHSType->isObjCObjectType())
Fariborz Jahanian7b383e42012-01-24 18:05:45 +00007301 Diag(Loc, diag::err_objc_object_assignment)
7302 << LHSType;
John McCallf89e55a2010-11-18 06:31:45 +00007303
Chris Lattner2c156472008-08-21 18:04:13 +00007304 // If the RHS is a unary plus or minus, check to see if they = and + are
7305 // right next to each other. If so, the user may have typo'd "x =+ 4"
7306 // instead of "x += 4".
John Wiegley429bb272011-04-08 18:41:53 +00007307 Expr *RHSCheck = RHS.get();
Chris Lattner2c156472008-08-21 18:04:13 +00007308 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck))
7309 RHSCheck = ICE->getSubExpr();
7310 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) {
John McCall2de56d12010-08-25 11:45:40 +00007311 if ((UO->getOpcode() == UO_Plus ||
7312 UO->getOpcode() == UO_Minus) &&
Chris Lattner29a1cfb2008-11-18 01:30:42 +00007313 Loc.isFileID() && UO->getOperatorLoc().isFileID() &&
Chris Lattner2c156472008-08-21 18:04:13 +00007314 // Only if the two operators are exactly adjacent.
Argyrios Kyrtzidisa64ccef2011-09-19 20:40:19 +00007315 Loc.getLocWithOffset(1) == UO->getOperatorLoc() &&
Chris Lattner399bd1b2009-03-08 06:51:10 +00007316 // And there is a space or other character before the subexpr of the
7317 // unary +/-. We don't want to warn on "x=-1".
Argyrios Kyrtzidisa64ccef2011-09-19 20:40:19 +00007318 Loc.getLocWithOffset(2) != UO->getSubExpr()->getLocStart() &&
Chris Lattner3e872092009-03-09 07:11:10 +00007319 UO->getSubExpr()->getLocStart().isFileID()) {
Chris Lattnerd3a94e22008-11-20 06:06:08 +00007320 Diag(Loc, diag::warn_not_compound_assign)
John McCall2de56d12010-08-25 11:45:40 +00007321 << (UO->getOpcode() == UO_Plus ? "+" : "-")
Chris Lattnerd3a94e22008-11-20 06:06:08 +00007322 << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc());
Chris Lattner399bd1b2009-03-08 06:51:10 +00007323 }
Chris Lattner2c156472008-08-21 18:04:13 +00007324 }
John McCallf85e1932011-06-15 23:02:42 +00007325
7326 if (ConvTy == Compatible) {
7327 if (LHSType.getObjCLifetime() == Qualifiers::OCL_Strong)
Richard Trieu268942b2011-09-07 01:33:52 +00007328 checkRetainCycles(LHSExpr, RHS.get());
David Blaikie4e4d0842012-03-11 07:00:24 +00007329 else if (getLangOpts().ObjCAutoRefCount)
Richard Trieu268942b2011-09-07 01:33:52 +00007330 checkUnsafeExprAssigns(Loc, LHSExpr, RHS.get());
John McCallf85e1932011-06-15 23:02:42 +00007331 }
Chris Lattner2c156472008-08-21 18:04:13 +00007332 } else {
7333 // Compound assignment "x += y"
Douglas Gregorb608b982011-01-28 02:26:04 +00007334 ConvTy = CheckAssignmentConstraints(Loc, LHSType, RHSType);
Chris Lattner2c156472008-08-21 18:04:13 +00007335 }
Chris Lattner5cf216b2008-01-04 18:04:52 +00007336
Chris Lattner29a1cfb2008-11-18 01:30:42 +00007337 if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType,
John Wiegley429bb272011-04-08 18:41:53 +00007338 RHS.get(), AA_Assigning))
Chris Lattner5cf216b2008-01-04 18:04:52 +00007339 return QualType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00007340
Richard Trieu268942b2011-09-07 01:33:52 +00007341 CheckForNullPointerDereference(*this, LHSExpr);
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00007342
Reid Spencer5f016e22007-07-11 17:01:13 +00007343 // C99 6.5.16p3: The type of an assignment expression is the type of the
7344 // left operand unless the left operand has qualified type, in which case
Mike Stumpeed9cac2009-02-19 03:04:26 +00007345 // it is the unqualified version of the type of the left operand.
Reid Spencer5f016e22007-07-11 17:01:13 +00007346 // C99 6.5.16.1p2: In simple assignment, the value of the right operand
7347 // is converted to the type of the assignment expression (above).
Chris Lattner73d0d4f2007-08-30 17:45:32 +00007348 // C++ 5.17p1: the type of the assignment expression is that of its left
Douglas Gregor2d833e32009-05-02 00:36:19 +00007349 // operand.
David Blaikie4e4d0842012-03-11 07:00:24 +00007350 return (getLangOpts().CPlusPlus
John McCall2bf6f492010-10-12 02:19:57 +00007351 ? LHSType : LHSType.getUnqualifiedType());
Reid Spencer5f016e22007-07-11 17:01:13 +00007352}
7353
Chris Lattner29a1cfb2008-11-18 01:30:42 +00007354// C99 6.5.17
John Wiegley429bb272011-04-08 18:41:53 +00007355static QualType CheckCommaOperands(Sema &S, ExprResult &LHS, ExprResult &RHS,
John McCall09431682010-11-18 19:01:18 +00007356 SourceLocation Loc) {
John Wiegley429bb272011-04-08 18:41:53 +00007357 S.DiagnoseUnusedExprResult(LHS.get());
Argyrios Kyrtzidis25973452010-06-30 10:53:14 +00007358
John McCallfb8721c2011-04-10 19:13:55 +00007359 LHS = S.CheckPlaceholderExpr(LHS.take());
7360 RHS = S.CheckPlaceholderExpr(RHS.take());
John Wiegley429bb272011-04-08 18:41:53 +00007361 if (LHS.isInvalid() || RHS.isInvalid())
Douglas Gregor7ad5d422010-11-09 21:07:58 +00007362 return QualType();
7363
John McCallcf2e5062010-10-12 07:14:40 +00007364 // C's comma performs lvalue conversion (C99 6.3.2.1) on both its
7365 // operands, but not unary promotions.
7366 // C++'s comma does not do any conversions at all (C++ [expr.comma]p1).
Eli Friedmanb1d796d2009-03-23 00:24:07 +00007367
John McCallf6a16482010-12-04 03:47:34 +00007368 // So we treat the LHS as a ignored value, and in C++ we allow the
7369 // containing site to determine what should be done with the RHS.
John Wiegley429bb272011-04-08 18:41:53 +00007370 LHS = S.IgnoredValueConversions(LHS.take());
7371 if (LHS.isInvalid())
7372 return QualType();
John McCallf6a16482010-12-04 03:47:34 +00007373
David Blaikie4e4d0842012-03-11 07:00:24 +00007374 if (!S.getLangOpts().CPlusPlus) {
John Wiegley429bb272011-04-08 18:41:53 +00007375 RHS = S.DefaultFunctionArrayLvalueConversion(RHS.take());
7376 if (RHS.isInvalid())
7377 return QualType();
7378 if (!RHS.get()->getType()->isVoidType())
Richard Trieu67e29332011-08-02 04:35:43 +00007379 S.RequireCompleteType(Loc, RHS.get()->getType(),
7380 diag::err_incomplete_type);
John McCallcf2e5062010-10-12 07:14:40 +00007381 }
Eli Friedmanb1d796d2009-03-23 00:24:07 +00007382
John Wiegley429bb272011-04-08 18:41:53 +00007383 return RHS.get()->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00007384}
7385
Steve Naroff49b45262007-07-13 16:58:59 +00007386/// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine
7387/// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions.
John McCall09431682010-11-18 19:01:18 +00007388static QualType CheckIncrementDecrementOperand(Sema &S, Expr *Op,
7389 ExprValueKind &VK,
7390 SourceLocation OpLoc,
Richard Trieuccd891a2011-09-09 01:45:06 +00007391 bool IsInc, bool IsPrefix) {
Sebastian Redl28507842009-02-26 14:39:58 +00007392 if (Op->isTypeDependent())
John McCall09431682010-11-18 19:01:18 +00007393 return S.Context.DependentTy;
Sebastian Redl28507842009-02-26 14:39:58 +00007394
Chris Lattner3528d352008-11-21 07:05:48 +00007395 QualType ResType = Op->getType();
David Chisnall7a7ee302012-01-16 17:27:18 +00007396 // Atomic types can be used for increment / decrement where the non-atomic
7397 // versions can, so ignore the _Atomic() specifier for the purpose of
7398 // checking.
7399 if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>())
7400 ResType = ResAtomicType->getValueType();
7401
Chris Lattner3528d352008-11-21 07:05:48 +00007402 assert(!ResType.isNull() && "no type for increment/decrement expression");
Reid Spencer5f016e22007-07-11 17:01:13 +00007403
David Blaikie4e4d0842012-03-11 07:00:24 +00007404 if (S.getLangOpts().CPlusPlus && ResType->isBooleanType()) {
Sebastian Redle6d5a4a2008-12-20 09:35:34 +00007405 // Decrement of bool is not allowed.
Richard Trieuccd891a2011-09-09 01:45:06 +00007406 if (!IsInc) {
John McCall09431682010-11-18 19:01:18 +00007407 S.Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange();
Sebastian Redle6d5a4a2008-12-20 09:35:34 +00007408 return QualType();
7409 }
7410 // Increment of bool sets it to true, but is deprecated.
John McCall09431682010-11-18 19:01:18 +00007411 S.Diag(OpLoc, diag::warn_increment_bool) << Op->getSourceRange();
Sebastian Redle6d5a4a2008-12-20 09:35:34 +00007412 } else if (ResType->isRealType()) {
Chris Lattner3528d352008-11-21 07:05:48 +00007413 // OK!
Steve Naroff58f9f2c2009-07-14 18:25:06 +00007414 } else if (ResType->isAnyPointerType()) {
Chris Lattner3528d352008-11-21 07:05:48 +00007415 // C99 6.5.2.4p2, 6.5.6p2
Chandler Carruth13b21be2011-06-27 08:02:19 +00007416 if (!checkArithmeticOpPointerOperand(S, OpLoc, Op))
Douglas Gregor4ec339f2009-01-19 19:26:10 +00007417 return QualType();
Chandler Carruth13b21be2011-06-27 08:02:19 +00007418
Fariborz Jahanian9f8a04f2009-07-16 17:59:14 +00007419 // Diagnose bad cases where we step over interface counts.
Richard Trieudb44a6b2011-09-01 22:53:23 +00007420 else if (!checkArithmethicPointerOnNonFragileABI(S, OpLoc, Op))
Fariborz Jahanian9f8a04f2009-07-16 17:59:14 +00007421 return QualType();
Eli Friedman5b088a12010-01-03 00:20:48 +00007422 } else if (ResType->isAnyComplexType()) {
Chris Lattner3528d352008-11-21 07:05:48 +00007423 // C99 does not support ++/-- on complex types, we allow as an extension.
John McCall09431682010-11-18 19:01:18 +00007424 S.Diag(OpLoc, diag::ext_integer_increment_complex)
Chris Lattnerd1625842008-11-24 06:25:27 +00007425 << ResType << Op->getSourceRange();
John McCall2cd11fe2010-10-12 02:09:17 +00007426 } else if (ResType->isPlaceholderType()) {
John McCallfb8721c2011-04-10 19:13:55 +00007427 ExprResult PR = S.CheckPlaceholderExpr(Op);
John McCall2cd11fe2010-10-12 02:09:17 +00007428 if (PR.isInvalid()) return QualType();
John McCall09431682010-11-18 19:01:18 +00007429 return CheckIncrementDecrementOperand(S, PR.take(), VK, OpLoc,
Richard Trieuccd891a2011-09-09 01:45:06 +00007430 IsInc, IsPrefix);
David Blaikie4e4d0842012-03-11 07:00:24 +00007431 } else if (S.getLangOpts().AltiVec && ResType->isVectorType()) {
Anton Yartsev683564a2011-02-07 02:17:30 +00007432 // OK! ( C/C++ Language Extensions for CBEA(Version 2.6) 10.3 )
Chris Lattner3528d352008-11-21 07:05:48 +00007433 } else {
John McCall09431682010-11-18 19:01:18 +00007434 S.Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement)
Richard Trieuccd891a2011-09-09 01:45:06 +00007435 << ResType << int(IsInc) << Op->getSourceRange();
Chris Lattner3528d352008-11-21 07:05:48 +00007436 return QualType();
Reid Spencer5f016e22007-07-11 17:01:13 +00007437 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00007438 // At this point, we know we have a real, complex or pointer type.
Steve Naroffdd10e022007-08-23 21:37:33 +00007439 // Now make sure the operand is a modifiable lvalue.
John McCall09431682010-11-18 19:01:18 +00007440 if (CheckForModifiableLvalue(Op, OpLoc, S))
Reid Spencer5f016e22007-07-11 17:01:13 +00007441 return QualType();
Sean Hunt1e3f5ba2010-04-28 23:02:27 +00007442 // In C++, a prefix increment is the same type as the operand. Otherwise
7443 // (in C or with postfix), the increment is the unqualified type of the
7444 // operand.
David Blaikie4e4d0842012-03-11 07:00:24 +00007445 if (IsPrefix && S.getLangOpts().CPlusPlus) {
John McCall09431682010-11-18 19:01:18 +00007446 VK = VK_LValue;
7447 return ResType;
7448 } else {
7449 VK = VK_RValue;
7450 return ResType.getUnqualifiedType();
7451 }
Reid Spencer5f016e22007-07-11 17:01:13 +00007452}
Fariborz Jahanianc4e1a682010-09-14 23:02:38 +00007453
7454
Anders Carlsson369dee42008-02-01 07:15:58 +00007455/// getPrimaryDecl - Helper function for CheckAddressOfOperand().
Reid Spencer5f016e22007-07-11 17:01:13 +00007456/// This routine allows us to typecheck complex/recursive expressions
Daniel Dunbar1e76ce62008-08-04 20:02:37 +00007457/// where the declaration is needed for type checking. We only need to
7458/// handle cases when the expression references a function designator
7459/// or is an lvalue. Here are some examples:
7460/// - &(x) => x
7461/// - &*****f => f for f a function designator.
7462/// - &s.xx => s
7463/// - &s.zz[1].yy -> s, if zz is an array
7464/// - *(x + 1) -> x, if x is an array
7465/// - &"123"[2] -> 0
7466/// - & __real__ x -> x
John McCall5808ce42011-02-03 08:15:49 +00007467static ValueDecl *getPrimaryDecl(Expr *E) {
Chris Lattnerf0467b32008-04-02 04:24:33 +00007468 switch (E->getStmtClass()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00007469 case Stmt::DeclRefExprClass:
Chris Lattnerf0467b32008-04-02 04:24:33 +00007470 return cast<DeclRefExpr>(E)->getDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00007471 case Stmt::MemberExprClass:
Eli Friedman23d58ce2009-04-20 08:23:18 +00007472 // If this is an arrow operator, the address is an offset from
7473 // the base's value, so the object the base refers to is
7474 // irrelevant.
Chris Lattnerf0467b32008-04-02 04:24:33 +00007475 if (cast<MemberExpr>(E)->isArrow())
Chris Lattnerf82228f2007-11-16 17:46:48 +00007476 return 0;
Eli Friedman23d58ce2009-04-20 08:23:18 +00007477 // Otherwise, the expression refers to a part of the base
Chris Lattnerf0467b32008-04-02 04:24:33 +00007478 return getPrimaryDecl(cast<MemberExpr>(E)->getBase());
Anders Carlsson369dee42008-02-01 07:15:58 +00007479 case Stmt::ArraySubscriptExprClass: {
Mike Stump390b4cc2009-05-16 07:39:55 +00007480 // FIXME: This code shouldn't be necessary! We should catch the implicit
7481 // promotion of register arrays earlier.
Eli Friedman23d58ce2009-04-20 08:23:18 +00007482 Expr* Base = cast<ArraySubscriptExpr>(E)->getBase();
7483 if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) {
7484 if (ICE->getSubExpr()->getType()->isArrayType())
7485 return getPrimaryDecl(ICE->getSubExpr());
7486 }
7487 return 0;
Anders Carlsson369dee42008-02-01 07:15:58 +00007488 }
Daniel Dunbar1e76ce62008-08-04 20:02:37 +00007489 case Stmt::UnaryOperatorClass: {
7490 UnaryOperator *UO = cast<UnaryOperator>(E);
Mike Stumpeed9cac2009-02-19 03:04:26 +00007491
Daniel Dunbar1e76ce62008-08-04 20:02:37 +00007492 switch(UO->getOpcode()) {
John McCall2de56d12010-08-25 11:45:40 +00007493 case UO_Real:
7494 case UO_Imag:
7495 case UO_Extension:
Daniel Dunbar1e76ce62008-08-04 20:02:37 +00007496 return getPrimaryDecl(UO->getSubExpr());
7497 default:
7498 return 0;
7499 }
7500 }
Reid Spencer5f016e22007-07-11 17:01:13 +00007501 case Stmt::ParenExprClass:
Chris Lattnerf0467b32008-04-02 04:24:33 +00007502 return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr());
Chris Lattnerf82228f2007-11-16 17:46:48 +00007503 case Stmt::ImplicitCastExprClass:
Eli Friedman23d58ce2009-04-20 08:23:18 +00007504 // If the result of an implicit cast is an l-value, we care about
7505 // the sub-expression; otherwise, the result here doesn't matter.
Chris Lattnerf0467b32008-04-02 04:24:33 +00007506 return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr());
Reid Spencer5f016e22007-07-11 17:01:13 +00007507 default:
7508 return 0;
7509 }
7510}
7511
Richard Trieu5520f232011-09-07 21:46:33 +00007512namespace {
7513 enum {
7514 AO_Bit_Field = 0,
7515 AO_Vector_Element = 1,
7516 AO_Property_Expansion = 2,
7517 AO_Register_Variable = 3,
7518 AO_No_Error = 4
7519 };
7520}
Richard Trieu09a26ad2011-09-02 00:47:55 +00007521/// \brief Diagnose invalid operand for address of operations.
7522///
7523/// \param Type The type of operand which cannot have its address taken.
Richard Trieu09a26ad2011-09-02 00:47:55 +00007524static void diagnoseAddressOfInvalidType(Sema &S, SourceLocation Loc,
7525 Expr *E, unsigned Type) {
7526 S.Diag(Loc, diag::err_typecheck_address_of) << Type << E->getSourceRange();
7527}
7528
Reid Spencer5f016e22007-07-11 17:01:13 +00007529/// CheckAddressOfOperand - The operand of & must be either a function
Mike Stumpeed9cac2009-02-19 03:04:26 +00007530/// designator or an lvalue designating an object. If it is an lvalue, the
Reid Spencer5f016e22007-07-11 17:01:13 +00007531/// object cannot be declared with storage class register or be a bit field.
Mike Stumpeed9cac2009-02-19 03:04:26 +00007532/// Note: The usual conversions are *not* applied to the operand of the &
Reid Spencer5f016e22007-07-11 17:01:13 +00007533/// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue.
Mike Stumpeed9cac2009-02-19 03:04:26 +00007534/// In C++, the operand might be an overloaded function name, in which case
Douglas Gregor904eed32008-11-10 20:40:00 +00007535/// we allow the '&' but retain the overloaded-function type.
John McCall3c3b7f92011-10-25 17:37:35 +00007536static QualType CheckAddressOfOperand(Sema &S, ExprResult &OrigOp,
John McCall09431682010-11-18 19:01:18 +00007537 SourceLocation OpLoc) {
John McCall3c3b7f92011-10-25 17:37:35 +00007538 if (const BuiltinType *PTy = OrigOp.get()->getType()->getAsPlaceholderType()){
7539 if (PTy->getKind() == BuiltinType::Overload) {
7540 if (!isa<OverloadExpr>(OrigOp.get()->IgnoreParens())) {
7541 S.Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof)
7542 << OrigOp.get()->getSourceRange();
7543 return QualType();
7544 }
7545
7546 return S.Context.OverloadTy;
7547 }
7548
7549 if (PTy->getKind() == BuiltinType::UnknownAny)
7550 return S.Context.UnknownAnyTy;
7551
7552 if (PTy->getKind() == BuiltinType::BoundMember) {
7553 S.Diag(OpLoc, diag::err_invalid_form_pointer_member_function)
7554 << OrigOp.get()->getSourceRange();
Douglas Gregor44efed02011-10-09 19:10:41 +00007555 return QualType();
7556 }
John McCall3c3b7f92011-10-25 17:37:35 +00007557
7558 OrigOp = S.CheckPlaceholderExpr(OrigOp.take());
7559 if (OrigOp.isInvalid()) return QualType();
John McCall864c0412011-04-26 20:42:42 +00007560 }
John McCall9c72c602010-08-27 09:08:28 +00007561
John McCall3c3b7f92011-10-25 17:37:35 +00007562 if (OrigOp.get()->isTypeDependent())
7563 return S.Context.DependentTy;
7564
7565 assert(!OrigOp.get()->getType()->isPlaceholderType());
John McCall2cd11fe2010-10-12 02:09:17 +00007566
John McCall9c72c602010-08-27 09:08:28 +00007567 // Make sure to ignore parentheses in subsequent checks
John McCall3c3b7f92011-10-25 17:37:35 +00007568 Expr *op = OrigOp.get()->IgnoreParens();
Douglas Gregor9103bb22008-12-17 22:52:20 +00007569
David Blaikie4e4d0842012-03-11 07:00:24 +00007570 if (S.getLangOpts().C99) {
Steve Naroff08f19672008-01-13 17:10:08 +00007571 // Implement C99-only parts of addressof rules.
7572 if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) {
John McCall2de56d12010-08-25 11:45:40 +00007573 if (uOp->getOpcode() == UO_Deref)
Steve Naroff08f19672008-01-13 17:10:08 +00007574 // Per C99 6.5.3.2, the address of a deref always returns a valid result
7575 // (assuming the deref expression is valid).
7576 return uOp->getSubExpr()->getType();
7577 }
7578 // Technically, there should be a check for array subscript
7579 // expressions here, but the result of one is always an lvalue anyway.
7580 }
John McCall5808ce42011-02-03 08:15:49 +00007581 ValueDecl *dcl = getPrimaryDecl(op);
John McCall7eb0a9e2010-11-24 05:12:34 +00007582 Expr::LValueClassification lval = op->ClassifyLValue(S.Context);
Richard Trieu5520f232011-09-07 21:46:33 +00007583 unsigned AddressOfError = AO_No_Error;
Nuno Lopes6b6609f2008-12-16 22:59:47 +00007584
Fariborz Jahanian077f4902011-03-26 19:48:30 +00007585 if (lval == Expr::LV_ClassTemporary) {
John McCall09431682010-11-18 19:01:18 +00007586 bool sfinae = S.isSFINAEContext();
7587 S.Diag(OpLoc, sfinae ? diag::err_typecheck_addrof_class_temporary
7588 : diag::ext_typecheck_addrof_class_temporary)
Douglas Gregore873fb72010-02-16 21:39:57 +00007589 << op->getType() << op->getSourceRange();
John McCall09431682010-11-18 19:01:18 +00007590 if (sfinae)
Douglas Gregore873fb72010-02-16 21:39:57 +00007591 return QualType();
John McCall9c72c602010-08-27 09:08:28 +00007592 } else if (isa<ObjCSelectorExpr>(op)) {
John McCall09431682010-11-18 19:01:18 +00007593 return S.Context.getPointerType(op->getType());
John McCall9c72c602010-08-27 09:08:28 +00007594 } else if (lval == Expr::LV_MemberFunction) {
7595 // If it's an instance method, make a member pointer.
7596 // The expression must have exactly the form &A::foo.
7597
7598 // If the underlying expression isn't a decl ref, give up.
7599 if (!isa<DeclRefExpr>(op)) {
John McCall09431682010-11-18 19:01:18 +00007600 S.Diag(OpLoc, diag::err_invalid_form_pointer_member_function)
John McCall3c3b7f92011-10-25 17:37:35 +00007601 << OrigOp.get()->getSourceRange();
John McCall9c72c602010-08-27 09:08:28 +00007602 return QualType();
7603 }
7604 DeclRefExpr *DRE = cast<DeclRefExpr>(op);
7605 CXXMethodDecl *MD = cast<CXXMethodDecl>(DRE->getDecl());
7606
7607 // The id-expression was parenthesized.
John McCall3c3b7f92011-10-25 17:37:35 +00007608 if (OrigOp.get() != DRE) {
John McCall09431682010-11-18 19:01:18 +00007609 S.Diag(OpLoc, diag::err_parens_pointer_member_function)
John McCall3c3b7f92011-10-25 17:37:35 +00007610 << OrigOp.get()->getSourceRange();
John McCall9c72c602010-08-27 09:08:28 +00007611
7612 // The method was named without a qualifier.
7613 } else if (!DRE->getQualifier()) {
John McCall09431682010-11-18 19:01:18 +00007614 S.Diag(OpLoc, diag::err_unqualified_pointer_member_function)
John McCall9c72c602010-08-27 09:08:28 +00007615 << op->getSourceRange();
7616 }
7617
John McCall09431682010-11-18 19:01:18 +00007618 return S.Context.getMemberPointerType(op->getType(),
7619 S.Context.getTypeDeclType(MD->getParent()).getTypePtr());
John McCall9c72c602010-08-27 09:08:28 +00007620 } else if (lval != Expr::LV_Valid && lval != Expr::LV_IncompleteVoidType) {
Eli Friedman441cf102009-05-16 23:27:50 +00007621 // C99 6.5.3.2p1
Eli Friedman23d58ce2009-04-20 08:23:18 +00007622 // The operand must be either an l-value or a function designator
Eli Friedman441cf102009-05-16 23:27:50 +00007623 if (!op->getType()->isFunctionType()) {
John McCall3c3b7f92011-10-25 17:37:35 +00007624 // Use a special diagnostic for loads from property references.
John McCall4b9c2d22011-11-06 09:01:30 +00007625 if (isa<PseudoObjectExpr>(op)) {
John McCall3c3b7f92011-10-25 17:37:35 +00007626 AddressOfError = AO_Property_Expansion;
7627 } else {
7628 // FIXME: emit more specific diag...
7629 S.Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof)
7630 << op->getSourceRange();
7631 return QualType();
7632 }
Reid Spencer5f016e22007-07-11 17:01:13 +00007633 }
John McCall7eb0a9e2010-11-24 05:12:34 +00007634 } else if (op->getObjectKind() == OK_BitField) { // C99 6.5.3.2p1
Eli Friedman23d58ce2009-04-20 08:23:18 +00007635 // The operand cannot be a bit-field
Richard Trieu5520f232011-09-07 21:46:33 +00007636 AddressOfError = AO_Bit_Field;
John McCall7eb0a9e2010-11-24 05:12:34 +00007637 } else if (op->getObjectKind() == OK_VectorComponent) {
Eli Friedman23d58ce2009-04-20 08:23:18 +00007638 // The operand cannot be an element of a vector
Richard Trieu5520f232011-09-07 21:46:33 +00007639 AddressOfError = AO_Vector_Element;
Steve Naroffbcb2b612008-02-29 23:30:25 +00007640 } else if (dcl) { // C99 6.5.3.2p1
Mike Stumpeed9cac2009-02-19 03:04:26 +00007641 // We have an lvalue with a decl. Make sure the decl is not declared
Reid Spencer5f016e22007-07-11 17:01:13 +00007642 // with the register storage-class specifier.
7643 if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) {
Fariborz Jahanian4020f872010-08-24 22:21:48 +00007644 // in C++ it is not error to take address of a register
7645 // variable (c++03 7.1.1P3)
John McCalld931b082010-08-26 03:08:43 +00007646 if (vd->getStorageClass() == SC_Register &&
David Blaikie4e4d0842012-03-11 07:00:24 +00007647 !S.getLangOpts().CPlusPlus) {
Richard Trieu5520f232011-09-07 21:46:33 +00007648 AddressOfError = AO_Register_Variable;
Reid Spencer5f016e22007-07-11 17:01:13 +00007649 }
John McCallba135432009-11-21 08:51:07 +00007650 } else if (isa<FunctionTemplateDecl>(dcl)) {
John McCall09431682010-11-18 19:01:18 +00007651 return S.Context.OverloadTy;
John McCall5808ce42011-02-03 08:15:49 +00007652 } else if (isa<FieldDecl>(dcl) || isa<IndirectFieldDecl>(dcl)) {
Douglas Gregor29882052008-12-10 21:26:49 +00007653 // Okay: we can take the address of a field.
Sebastian Redlebc07d52009-02-03 20:19:35 +00007654 // Could be a pointer to member, though, if there is an explicit
7655 // scope qualifier for the class.
Douglas Gregora2813ce2009-10-23 18:54:35 +00007656 if (isa<DeclRefExpr>(op) && cast<DeclRefExpr>(op)->getQualifier()) {
Sebastian Redlebc07d52009-02-03 20:19:35 +00007657 DeclContext *Ctx = dcl->getDeclContext();
Anders Carlssonf9e48bd2009-07-08 21:45:58 +00007658 if (Ctx && Ctx->isRecord()) {
John McCall5808ce42011-02-03 08:15:49 +00007659 if (dcl->getType()->isReferenceType()) {
John McCall09431682010-11-18 19:01:18 +00007660 S.Diag(OpLoc,
7661 diag::err_cannot_form_pointer_to_member_of_reference_type)
John McCall5808ce42011-02-03 08:15:49 +00007662 << dcl->getDeclName() << dcl->getType();
Anders Carlssonf9e48bd2009-07-08 21:45:58 +00007663 return QualType();
7664 }
Mike Stump1eb44332009-09-09 15:08:12 +00007665
Argyrios Kyrtzidis0413db42011-01-31 07:04:29 +00007666 while (cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion())
7667 Ctx = Ctx->getParent();
John McCall09431682010-11-18 19:01:18 +00007668 return S.Context.getMemberPointerType(op->getType(),
7669 S.Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr());
Anders Carlssonf9e48bd2009-07-08 21:45:58 +00007670 }
Sebastian Redlebc07d52009-02-03 20:19:35 +00007671 }
Eli Friedman7b2f51c2011-08-26 20:28:17 +00007672 } else if (!isa<FunctionDecl>(dcl) && !isa<NonTypeTemplateParmDecl>(dcl))
David Blaikieb219cfc2011-09-23 05:06:16 +00007673 llvm_unreachable("Unknown/unexpected decl type");
Reid Spencer5f016e22007-07-11 17:01:13 +00007674 }
Sebastian Redl33b399a2009-02-04 21:23:32 +00007675
Richard Trieu5520f232011-09-07 21:46:33 +00007676 if (AddressOfError != AO_No_Error) {
7677 diagnoseAddressOfInvalidType(S, OpLoc, op, AddressOfError);
7678 return QualType();
7679 }
7680
Eli Friedman441cf102009-05-16 23:27:50 +00007681 if (lval == Expr::LV_IncompleteVoidType) {
7682 // Taking the address of a void variable is technically illegal, but we
7683 // allow it in cases which are otherwise valid.
7684 // Example: "extern void x; void* y = &x;".
John McCall09431682010-11-18 19:01:18 +00007685 S.Diag(OpLoc, diag::ext_typecheck_addrof_void) << op->getSourceRange();
Eli Friedman441cf102009-05-16 23:27:50 +00007686 }
7687
Reid Spencer5f016e22007-07-11 17:01:13 +00007688 // If the operand has type "type", the result has type "pointer to type".
Douglas Gregor8f70ddb2010-07-29 16:05:45 +00007689 if (op->getType()->isObjCObjectType())
John McCall09431682010-11-18 19:01:18 +00007690 return S.Context.getObjCObjectPointerType(op->getType());
7691 return S.Context.getPointerType(op->getType());
Reid Spencer5f016e22007-07-11 17:01:13 +00007692}
7693
Chris Lattnerfd79a9d2010-07-05 19:17:26 +00007694/// CheckIndirectionOperand - Type check unary indirection (prefix '*').
John McCall09431682010-11-18 19:01:18 +00007695static QualType CheckIndirectionOperand(Sema &S, Expr *Op, ExprValueKind &VK,
7696 SourceLocation OpLoc) {
Sebastian Redl28507842009-02-26 14:39:58 +00007697 if (Op->isTypeDependent())
John McCall09431682010-11-18 19:01:18 +00007698 return S.Context.DependentTy;
Sebastian Redl28507842009-02-26 14:39:58 +00007699
John Wiegley429bb272011-04-08 18:41:53 +00007700 ExprResult ConvResult = S.UsualUnaryConversions(Op);
7701 if (ConvResult.isInvalid())
7702 return QualType();
7703 Op = ConvResult.take();
Chris Lattnerfd79a9d2010-07-05 19:17:26 +00007704 QualType OpTy = Op->getType();
7705 QualType Result;
Argyrios Kyrtzidisf4bbbf02011-05-02 18:21:19 +00007706
7707 if (isa<CXXReinterpretCastExpr>(Op)) {
7708 QualType OpOrigType = Op->IgnoreParenCasts()->getType();
7709 S.CheckCompatibleReinterpretCast(OpOrigType, OpTy, /*IsDereference*/true,
7710 Op->getSourceRange());
7711 }
7712
Chris Lattnerfd79a9d2010-07-05 19:17:26 +00007713 // Note that per both C89 and C99, indirection is always legal, even if OpTy
7714 // is an incomplete type or void. It would be possible to warn about
7715 // dereferencing a void pointer, but it's completely well-defined, and such a
7716 // warning is unlikely to catch any mistakes.
7717 if (const PointerType *PT = OpTy->getAs<PointerType>())
7718 Result = PT->getPointeeType();
7719 else if (const ObjCObjectPointerType *OPT =
7720 OpTy->getAs<ObjCObjectPointerType>())
7721 Result = OPT->getPointeeType();
John McCall2cd11fe2010-10-12 02:09:17 +00007722 else {
John McCallfb8721c2011-04-10 19:13:55 +00007723 ExprResult PR = S.CheckPlaceholderExpr(Op);
John McCall2cd11fe2010-10-12 02:09:17 +00007724 if (PR.isInvalid()) return QualType();
John McCall09431682010-11-18 19:01:18 +00007725 if (PR.take() != Op)
7726 return CheckIndirectionOperand(S, PR.take(), VK, OpLoc);
John McCall2cd11fe2010-10-12 02:09:17 +00007727 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00007728
Chris Lattnerfd79a9d2010-07-05 19:17:26 +00007729 if (Result.isNull()) {
John McCall09431682010-11-18 19:01:18 +00007730 S.Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer)
Chris Lattnerfd79a9d2010-07-05 19:17:26 +00007731 << OpTy << Op->getSourceRange();
7732 return QualType();
7733 }
John McCall09431682010-11-18 19:01:18 +00007734
7735 // Dereferences are usually l-values...
7736 VK = VK_LValue;
7737
7738 // ...except that certain expressions are never l-values in C.
David Blaikie4e4d0842012-03-11 07:00:24 +00007739 if (!S.getLangOpts().CPlusPlus && Result.isCForbiddenLValueType())
John McCall09431682010-11-18 19:01:18 +00007740 VK = VK_RValue;
Chris Lattnerfd79a9d2010-07-05 19:17:26 +00007741
7742 return Result;
Reid Spencer5f016e22007-07-11 17:01:13 +00007743}
7744
John McCall2de56d12010-08-25 11:45:40 +00007745static inline BinaryOperatorKind ConvertTokenKindToBinaryOpcode(
Reid Spencer5f016e22007-07-11 17:01:13 +00007746 tok::TokenKind Kind) {
John McCall2de56d12010-08-25 11:45:40 +00007747 BinaryOperatorKind Opc;
Reid Spencer5f016e22007-07-11 17:01:13 +00007748 switch (Kind) {
David Blaikieb219cfc2011-09-23 05:06:16 +00007749 default: llvm_unreachable("Unknown binop!");
John McCall2de56d12010-08-25 11:45:40 +00007750 case tok::periodstar: Opc = BO_PtrMemD; break;
7751 case tok::arrowstar: Opc = BO_PtrMemI; break;
7752 case tok::star: Opc = BO_Mul; break;
7753 case tok::slash: Opc = BO_Div; break;
7754 case tok::percent: Opc = BO_Rem; break;
7755 case tok::plus: Opc = BO_Add; break;
7756 case tok::minus: Opc = BO_Sub; break;
7757 case tok::lessless: Opc = BO_Shl; break;
7758 case tok::greatergreater: Opc = BO_Shr; break;
7759 case tok::lessequal: Opc = BO_LE; break;
7760 case tok::less: Opc = BO_LT; break;
7761 case tok::greaterequal: Opc = BO_GE; break;
7762 case tok::greater: Opc = BO_GT; break;
7763 case tok::exclaimequal: Opc = BO_NE; break;
7764 case tok::equalequal: Opc = BO_EQ; break;
7765 case tok::amp: Opc = BO_And; break;
7766 case tok::caret: Opc = BO_Xor; break;
7767 case tok::pipe: Opc = BO_Or; break;
7768 case tok::ampamp: Opc = BO_LAnd; break;
7769 case tok::pipepipe: Opc = BO_LOr; break;
7770 case tok::equal: Opc = BO_Assign; break;
7771 case tok::starequal: Opc = BO_MulAssign; break;
7772 case tok::slashequal: Opc = BO_DivAssign; break;
7773 case tok::percentequal: Opc = BO_RemAssign; break;
7774 case tok::plusequal: Opc = BO_AddAssign; break;
7775 case tok::minusequal: Opc = BO_SubAssign; break;
7776 case tok::lesslessequal: Opc = BO_ShlAssign; break;
7777 case tok::greatergreaterequal: Opc = BO_ShrAssign; break;
7778 case tok::ampequal: Opc = BO_AndAssign; break;
7779 case tok::caretequal: Opc = BO_XorAssign; break;
7780 case tok::pipeequal: Opc = BO_OrAssign; break;
7781 case tok::comma: Opc = BO_Comma; break;
Reid Spencer5f016e22007-07-11 17:01:13 +00007782 }
7783 return Opc;
7784}
7785
John McCall2de56d12010-08-25 11:45:40 +00007786static inline UnaryOperatorKind ConvertTokenKindToUnaryOpcode(
Reid Spencer5f016e22007-07-11 17:01:13 +00007787 tok::TokenKind Kind) {
John McCall2de56d12010-08-25 11:45:40 +00007788 UnaryOperatorKind Opc;
Reid Spencer5f016e22007-07-11 17:01:13 +00007789 switch (Kind) {
David Blaikieb219cfc2011-09-23 05:06:16 +00007790 default: llvm_unreachable("Unknown unary op!");
John McCall2de56d12010-08-25 11:45:40 +00007791 case tok::plusplus: Opc = UO_PreInc; break;
7792 case tok::minusminus: Opc = UO_PreDec; break;
7793 case tok::amp: Opc = UO_AddrOf; break;
7794 case tok::star: Opc = UO_Deref; break;
7795 case tok::plus: Opc = UO_Plus; break;
7796 case tok::minus: Opc = UO_Minus; break;
7797 case tok::tilde: Opc = UO_Not; break;
7798 case tok::exclaim: Opc = UO_LNot; break;
7799 case tok::kw___real: Opc = UO_Real; break;
7800 case tok::kw___imag: Opc = UO_Imag; break;
7801 case tok::kw___extension__: Opc = UO_Extension; break;
Reid Spencer5f016e22007-07-11 17:01:13 +00007802 }
7803 return Opc;
7804}
7805
Chandler Carruth9f7a6ee2011-01-04 06:52:15 +00007806/// DiagnoseSelfAssignment - Emits a warning if a value is assigned to itself.
7807/// This warning is only emitted for builtin assignment operations. It is also
7808/// suppressed in the event of macro expansions.
Richard Trieu268942b2011-09-07 01:33:52 +00007809static void DiagnoseSelfAssignment(Sema &S, Expr *LHSExpr, Expr *RHSExpr,
Chandler Carruth9f7a6ee2011-01-04 06:52:15 +00007810 SourceLocation OpLoc) {
7811 if (!S.ActiveTemplateInstantiations.empty())
7812 return;
7813 if (OpLoc.isInvalid() || OpLoc.isMacroID())
7814 return;
Richard Trieu268942b2011-09-07 01:33:52 +00007815 LHSExpr = LHSExpr->IgnoreParenImpCasts();
7816 RHSExpr = RHSExpr->IgnoreParenImpCasts();
7817 const DeclRefExpr *LHSDeclRef = dyn_cast<DeclRefExpr>(LHSExpr);
7818 const DeclRefExpr *RHSDeclRef = dyn_cast<DeclRefExpr>(RHSExpr);
7819 if (!LHSDeclRef || !RHSDeclRef ||
7820 LHSDeclRef->getLocation().isMacroID() ||
7821 RHSDeclRef->getLocation().isMacroID())
Chandler Carruth9f7a6ee2011-01-04 06:52:15 +00007822 return;
Richard Trieu268942b2011-09-07 01:33:52 +00007823 const ValueDecl *LHSDecl =
7824 cast<ValueDecl>(LHSDeclRef->getDecl()->getCanonicalDecl());
7825 const ValueDecl *RHSDecl =
7826 cast<ValueDecl>(RHSDeclRef->getDecl()->getCanonicalDecl());
7827 if (LHSDecl != RHSDecl)
Chandler Carruth9f7a6ee2011-01-04 06:52:15 +00007828 return;
Richard Trieu268942b2011-09-07 01:33:52 +00007829 if (LHSDecl->getType().isVolatileQualified())
Chandler Carruth9f7a6ee2011-01-04 06:52:15 +00007830 return;
Richard Trieu268942b2011-09-07 01:33:52 +00007831 if (const ReferenceType *RefTy = LHSDecl->getType()->getAs<ReferenceType>())
Chandler Carruth9f7a6ee2011-01-04 06:52:15 +00007832 if (RefTy->getPointeeType().isVolatileQualified())
7833 return;
7834
7835 S.Diag(OpLoc, diag::warn_self_assignment)
Richard Trieu268942b2011-09-07 01:33:52 +00007836 << LHSDeclRef->getType()
7837 << LHSExpr->getSourceRange() << RHSExpr->getSourceRange();
Chandler Carruth9f7a6ee2011-01-04 06:52:15 +00007838}
7839
Douglas Gregoreaebc752008-11-06 23:29:22 +00007840/// CreateBuiltinBinOp - Creates a new built-in binary operation with
7841/// operator @p Opc at location @c TokLoc. This routine only supports
7842/// built-in operations; ActOnBinOp handles overloaded operators.
John McCall60d7b3a2010-08-24 06:29:42 +00007843ExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc,
Argyrios Kyrtzidisb1fa3dc2011-01-05 20:09:36 +00007844 BinaryOperatorKind Opc,
Richard Trieu78ea78b2011-09-07 01:49:20 +00007845 Expr *LHSExpr, Expr *RHSExpr) {
David Blaikie4e4d0842012-03-11 07:00:24 +00007846 if (getLangOpts().CPlusPlus0x && isa<InitListExpr>(RHSExpr)) {
Sebastian Redl0d8ab2e2012-02-27 20:34:02 +00007847 // The syntax only allows initializer lists on the RHS of assignment,
7848 // so we don't need to worry about accepting invalid code for
7849 // non-assignment operators.
7850 // C++11 5.17p9:
7851 // The meaning of x = {v} [...] is that of x = T(v) [...]. The meaning
7852 // of x = {} is x = T().
7853 InitializationKind Kind =
7854 InitializationKind::CreateDirectList(RHSExpr->getLocStart());
7855 InitializedEntity Entity =
7856 InitializedEntity::InitializeTemporary(LHSExpr->getType());
7857 InitializationSequence InitSeq(*this, Entity, Kind, &RHSExpr, 1);
7858 ExprResult Init = InitSeq.Perform(*this, Entity, Kind,
7859 MultiExprArg(&RHSExpr, 1));
7860 if (Init.isInvalid())
7861 return Init;
7862 RHSExpr = Init.take();
7863 }
7864
Richard Trieu78ea78b2011-09-07 01:49:20 +00007865 ExprResult LHS = Owned(LHSExpr), RHS = Owned(RHSExpr);
Eli Friedmanab3a8522009-03-28 01:22:36 +00007866 QualType ResultTy; // Result type of the binary operator.
Eli Friedmanab3a8522009-03-28 01:22:36 +00007867 // The following two variables are used for compound assignment operators
7868 QualType CompLHSTy; // Type of LHS after promotions for computation
7869 QualType CompResultTy; // Type of computation result
John McCallf89e55a2010-11-18 06:31:45 +00007870 ExprValueKind VK = VK_RValue;
7871 ExprObjectKind OK = OK_Ordinary;
Douglas Gregoreaebc752008-11-06 23:29:22 +00007872
7873 switch (Opc) {
John McCall2de56d12010-08-25 11:45:40 +00007874 case BO_Assign:
Richard Trieu78ea78b2011-09-07 01:49:20 +00007875 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, QualType());
David Blaikie4e4d0842012-03-11 07:00:24 +00007876 if (getLangOpts().CPlusPlus &&
Richard Trieu78ea78b2011-09-07 01:49:20 +00007877 LHS.get()->getObjectKind() != OK_ObjCProperty) {
7878 VK = LHS.get()->getValueKind();
7879 OK = LHS.get()->getObjectKind();
John McCallf89e55a2010-11-18 06:31:45 +00007880 }
Chandler Carruth9f7a6ee2011-01-04 06:52:15 +00007881 if (!ResultTy.isNull())
Richard Trieu78ea78b2011-09-07 01:49:20 +00007882 DiagnoseSelfAssignment(*this, LHS.get(), RHS.get(), OpLoc);
Douglas Gregoreaebc752008-11-06 23:29:22 +00007883 break;
John McCall2de56d12010-08-25 11:45:40 +00007884 case BO_PtrMemD:
7885 case BO_PtrMemI:
Richard Trieu78ea78b2011-09-07 01:49:20 +00007886 ResultTy = CheckPointerToMemberOperands(LHS, RHS, VK, OpLoc,
John McCall2de56d12010-08-25 11:45:40 +00007887 Opc == BO_PtrMemI);
Sebastian Redl22460502009-02-07 00:15:38 +00007888 break;
John McCall2de56d12010-08-25 11:45:40 +00007889 case BO_Mul:
7890 case BO_Div:
Richard Trieu78ea78b2011-09-07 01:49:20 +00007891 ResultTy = CheckMultiplyDivideOperands(LHS, RHS, OpLoc, false,
John McCall2de56d12010-08-25 11:45:40 +00007892 Opc == BO_Div);
Douglas Gregoreaebc752008-11-06 23:29:22 +00007893 break;
John McCall2de56d12010-08-25 11:45:40 +00007894 case BO_Rem:
Richard Trieu78ea78b2011-09-07 01:49:20 +00007895 ResultTy = CheckRemainderOperands(LHS, RHS, OpLoc);
Douglas Gregoreaebc752008-11-06 23:29:22 +00007896 break;
John McCall2de56d12010-08-25 11:45:40 +00007897 case BO_Add:
Nico Weber1cb2d742012-03-02 22:01:22 +00007898 ResultTy = CheckAdditionOperands(LHS, RHS, OpLoc, Opc);
Douglas Gregoreaebc752008-11-06 23:29:22 +00007899 break;
John McCall2de56d12010-08-25 11:45:40 +00007900 case BO_Sub:
Richard Trieu78ea78b2011-09-07 01:49:20 +00007901 ResultTy = CheckSubtractionOperands(LHS, RHS, OpLoc);
Douglas Gregoreaebc752008-11-06 23:29:22 +00007902 break;
John McCall2de56d12010-08-25 11:45:40 +00007903 case BO_Shl:
7904 case BO_Shr:
Richard Trieu78ea78b2011-09-07 01:49:20 +00007905 ResultTy = CheckShiftOperands(LHS, RHS, OpLoc, Opc);
Douglas Gregoreaebc752008-11-06 23:29:22 +00007906 break;
John McCall2de56d12010-08-25 11:45:40 +00007907 case BO_LE:
7908 case BO_LT:
7909 case BO_GE:
7910 case BO_GT:
Richard Trieu78ea78b2011-09-07 01:49:20 +00007911 ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc, true);
Douglas Gregoreaebc752008-11-06 23:29:22 +00007912 break;
John McCall2de56d12010-08-25 11:45:40 +00007913 case BO_EQ:
7914 case BO_NE:
Richard Trieu78ea78b2011-09-07 01:49:20 +00007915 ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc, false);
Douglas Gregoreaebc752008-11-06 23:29:22 +00007916 break;
John McCall2de56d12010-08-25 11:45:40 +00007917 case BO_And:
7918 case BO_Xor:
7919 case BO_Or:
Richard Trieu78ea78b2011-09-07 01:49:20 +00007920 ResultTy = CheckBitwiseOperands(LHS, RHS, OpLoc);
Douglas Gregoreaebc752008-11-06 23:29:22 +00007921 break;
John McCall2de56d12010-08-25 11:45:40 +00007922 case BO_LAnd:
7923 case BO_LOr:
Richard Trieu78ea78b2011-09-07 01:49:20 +00007924 ResultTy = CheckLogicalOperands(LHS, RHS, OpLoc, Opc);
Douglas Gregoreaebc752008-11-06 23:29:22 +00007925 break;
John McCall2de56d12010-08-25 11:45:40 +00007926 case BO_MulAssign:
7927 case BO_DivAssign:
Richard Trieu78ea78b2011-09-07 01:49:20 +00007928 CompResultTy = CheckMultiplyDivideOperands(LHS, RHS, OpLoc, true,
John McCallf89e55a2010-11-18 06:31:45 +00007929 Opc == BO_DivAssign);
Eli Friedmanab3a8522009-03-28 01:22:36 +00007930 CompLHSTy = CompResultTy;
Richard Trieu78ea78b2011-09-07 01:49:20 +00007931 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
7932 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00007933 break;
John McCall2de56d12010-08-25 11:45:40 +00007934 case BO_RemAssign:
Richard Trieu78ea78b2011-09-07 01:49:20 +00007935 CompResultTy = CheckRemainderOperands(LHS, RHS, OpLoc, true);
Eli Friedmanab3a8522009-03-28 01:22:36 +00007936 CompLHSTy = CompResultTy;
Richard Trieu78ea78b2011-09-07 01:49:20 +00007937 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
7938 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00007939 break;
John McCall2de56d12010-08-25 11:45:40 +00007940 case BO_AddAssign:
Nico Weber1cb2d742012-03-02 22:01:22 +00007941 CompResultTy = CheckAdditionOperands(LHS, RHS, OpLoc, Opc, &CompLHSTy);
Richard Trieu78ea78b2011-09-07 01:49:20 +00007942 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
7943 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00007944 break;
John McCall2de56d12010-08-25 11:45:40 +00007945 case BO_SubAssign:
Richard Trieu78ea78b2011-09-07 01:49:20 +00007946 CompResultTy = CheckSubtractionOperands(LHS, RHS, OpLoc, &CompLHSTy);
7947 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
7948 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00007949 break;
John McCall2de56d12010-08-25 11:45:40 +00007950 case BO_ShlAssign:
7951 case BO_ShrAssign:
Richard Trieu78ea78b2011-09-07 01:49:20 +00007952 CompResultTy = CheckShiftOperands(LHS, RHS, OpLoc, Opc, true);
Eli Friedmanab3a8522009-03-28 01:22:36 +00007953 CompLHSTy = CompResultTy;
Richard Trieu78ea78b2011-09-07 01:49:20 +00007954 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
7955 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00007956 break;
John McCall2de56d12010-08-25 11:45:40 +00007957 case BO_AndAssign:
7958 case BO_XorAssign:
7959 case BO_OrAssign:
Richard Trieu78ea78b2011-09-07 01:49:20 +00007960 CompResultTy = CheckBitwiseOperands(LHS, RHS, OpLoc, true);
Eli Friedmanab3a8522009-03-28 01:22:36 +00007961 CompLHSTy = CompResultTy;
Richard Trieu78ea78b2011-09-07 01:49:20 +00007962 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
7963 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00007964 break;
John McCall2de56d12010-08-25 11:45:40 +00007965 case BO_Comma:
Richard Trieu78ea78b2011-09-07 01:49:20 +00007966 ResultTy = CheckCommaOperands(*this, LHS, RHS, OpLoc);
David Blaikie4e4d0842012-03-11 07:00:24 +00007967 if (getLangOpts().CPlusPlus && !RHS.isInvalid()) {
Richard Trieu78ea78b2011-09-07 01:49:20 +00007968 VK = RHS.get()->getValueKind();
7969 OK = RHS.get()->getObjectKind();
John McCallf89e55a2010-11-18 06:31:45 +00007970 }
Douglas Gregoreaebc752008-11-06 23:29:22 +00007971 break;
7972 }
Richard Trieu78ea78b2011-09-07 01:49:20 +00007973 if (ResultTy.isNull() || LHS.isInvalid() || RHS.isInvalid())
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00007974 return ExprError();
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00007975
7976 // Check for array bounds violations for both sides of the BinaryOperator
Richard Trieu78ea78b2011-09-07 01:49:20 +00007977 CheckArrayAccess(LHS.get());
7978 CheckArrayAccess(RHS.get());
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00007979
Eli Friedmanab3a8522009-03-28 01:22:36 +00007980 if (CompResultTy.isNull())
Richard Trieu78ea78b2011-09-07 01:49:20 +00007981 return Owned(new (Context) BinaryOperator(LHS.take(), RHS.take(), Opc,
John Wiegley429bb272011-04-08 18:41:53 +00007982 ResultTy, VK, OK, OpLoc));
David Blaikie4e4d0842012-03-11 07:00:24 +00007983 if (getLangOpts().CPlusPlus && LHS.get()->getObjectKind() !=
Richard Trieu67e29332011-08-02 04:35:43 +00007984 OK_ObjCProperty) {
John McCallf89e55a2010-11-18 06:31:45 +00007985 VK = VK_LValue;
Richard Trieu78ea78b2011-09-07 01:49:20 +00007986 OK = LHS.get()->getObjectKind();
John McCallf89e55a2010-11-18 06:31:45 +00007987 }
Richard Trieu78ea78b2011-09-07 01:49:20 +00007988 return Owned(new (Context) CompoundAssignOperator(LHS.take(), RHS.take(), Opc,
John Wiegley429bb272011-04-08 18:41:53 +00007989 ResultTy, VK, OK, CompLHSTy,
John McCallf89e55a2010-11-18 06:31:45 +00007990 CompResultTy, OpLoc));
Douglas Gregoreaebc752008-11-06 23:29:22 +00007991}
7992
Sebastian Redlaee3c932009-10-27 12:10:02 +00007993/// DiagnoseBitwisePrecedence - Emit a warning when bitwise and comparison
7994/// operators are mixed in a way that suggests that the programmer forgot that
7995/// comparison operators have higher precedence. The most typical example of
7996/// such code is "flags & 0x0020 != 0", which is equivalent to "flags & 1".
John McCall2de56d12010-08-25 11:45:40 +00007997static void DiagnoseBitwisePrecedence(Sema &Self, BinaryOperatorKind Opc,
Richard Trieu78ea78b2011-09-07 01:49:20 +00007998 SourceLocation OpLoc, Expr *LHSExpr,
7999 Expr *RHSExpr) {
Sebastian Redlaee3c932009-10-27 12:10:02 +00008000 typedef BinaryOperator BinOp;
Richard Trieu78ea78b2011-09-07 01:49:20 +00008001 BinOp::Opcode LHSopc = static_cast<BinOp::Opcode>(-1),
8002 RHSopc = static_cast<BinOp::Opcode>(-1);
8003 if (BinOp *BO = dyn_cast<BinOp>(LHSExpr))
8004 LHSopc = BO->getOpcode();
8005 if (BinOp *BO = dyn_cast<BinOp>(RHSExpr))
8006 RHSopc = BO->getOpcode();
Sebastian Redl9e1d29b2009-10-26 15:24:15 +00008007
8008 // Subs are not binary operators.
Richard Trieu78ea78b2011-09-07 01:49:20 +00008009 if (LHSopc == -1 && RHSopc == -1)
Sebastian Redl9e1d29b2009-10-26 15:24:15 +00008010 return;
8011
8012 // Bitwise operations are sometimes used as eager logical ops.
8013 // Don't diagnose this.
Richard Trieu78ea78b2011-09-07 01:49:20 +00008014 if ((BinOp::isComparisonOp(LHSopc) || BinOp::isBitwiseOp(LHSopc)) &&
8015 (BinOp::isComparisonOp(RHSopc) || BinOp::isBitwiseOp(RHSopc)))
Sebastian Redl9e1d29b2009-10-26 15:24:15 +00008016 return;
8017
Richard Trieu78ea78b2011-09-07 01:49:20 +00008018 bool isLeftComp = BinOp::isComparisonOp(LHSopc);
8019 bool isRightComp = BinOp::isComparisonOp(RHSopc);
Richard Trieu70979d42011-08-10 22:41:34 +00008020 if (!isLeftComp && !isRightComp) return;
8021
Richard Trieu78ea78b2011-09-07 01:49:20 +00008022 SourceRange DiagRange = isLeftComp ? SourceRange(LHSExpr->getLocStart(),
8023 OpLoc)
8024 : SourceRange(OpLoc, RHSExpr->getLocEnd());
8025 std::string OpStr = isLeftComp ? BinOp::getOpcodeStr(LHSopc)
8026 : BinOp::getOpcodeStr(RHSopc);
Richard Trieu70979d42011-08-10 22:41:34 +00008027 SourceRange ParensRange = isLeftComp ?
Richard Trieu78ea78b2011-09-07 01:49:20 +00008028 SourceRange(cast<BinOp>(LHSExpr)->getRHS()->getLocStart(),
8029 RHSExpr->getLocEnd())
8030 : SourceRange(LHSExpr->getLocStart(),
8031 cast<BinOp>(RHSExpr)->getLHS()->getLocStart());
Richard Trieu70979d42011-08-10 22:41:34 +00008032
8033 Self.Diag(OpLoc, diag::warn_precedence_bitwise_rel)
8034 << DiagRange << BinOp::getOpcodeStr(Opc) << OpStr;
8035 SuggestParentheses(Self, OpLoc,
8036 Self.PDiag(diag::note_precedence_bitwise_silence) << OpStr,
Richard Trieu78ea78b2011-09-07 01:49:20 +00008037 RHSExpr->getSourceRange());
Richard Trieu70979d42011-08-10 22:41:34 +00008038 SuggestParentheses(Self, OpLoc,
8039 Self.PDiag(diag::note_precedence_bitwise_first) << BinOp::getOpcodeStr(Opc),
8040 ParensRange);
Sebastian Redl9e1d29b2009-10-26 15:24:15 +00008041}
8042
Argyrios Kyrtzidis33f46e22011-06-20 18:41:26 +00008043/// \brief It accepts a '&' expr that is inside a '|' one.
8044/// Emit a diagnostic together with a fixit hint that wraps the '&' expression
8045/// in parentheses.
8046static void
8047EmitDiagnosticForBitwiseAndInBitwiseOr(Sema &Self, SourceLocation OpLoc,
8048 BinaryOperator *Bop) {
8049 assert(Bop->getOpcode() == BO_And);
8050 Self.Diag(Bop->getOperatorLoc(), diag::warn_bitwise_and_in_bitwise_or)
8051 << Bop->getSourceRange() << OpLoc;
8052 SuggestParentheses(Self, Bop->getOperatorLoc(),
8053 Self.PDiag(diag::note_bitwise_and_in_bitwise_or_silence),
8054 Bop->getSourceRange());
8055}
8056
Argyrios Kyrtzidis567bb712010-11-17 18:26:36 +00008057/// \brief It accepts a '&&' expr that is inside a '||' one.
8058/// Emit a diagnostic together with a fixit hint that wraps the '&&' expression
8059/// in parentheses.
8060static void
8061EmitDiagnosticForLogicalAndInLogicalOr(Sema &Self, SourceLocation OpLoc,
Argyrios Kyrtzidisa61aedc2011-04-22 19:16:27 +00008062 BinaryOperator *Bop) {
8063 assert(Bop->getOpcode() == BO_LAnd);
Chandler Carruthf0b60d62011-06-16 01:05:14 +00008064 Self.Diag(Bop->getOperatorLoc(), diag::warn_logical_and_in_logical_or)
8065 << Bop->getSourceRange() << OpLoc;
Argyrios Kyrtzidisa61aedc2011-04-22 19:16:27 +00008066 SuggestParentheses(Self, Bop->getOperatorLoc(),
Argyrios Kyrtzidis567bb712010-11-17 18:26:36 +00008067 Self.PDiag(diag::note_logical_and_in_logical_or_silence),
Chandler Carruthf0b60d62011-06-16 01:05:14 +00008068 Bop->getSourceRange());
Argyrios Kyrtzidis567bb712010-11-17 18:26:36 +00008069}
8070
8071/// \brief Returns true if the given expression can be evaluated as a constant
8072/// 'true'.
8073static bool EvaluatesAsTrue(Sema &S, Expr *E) {
8074 bool Res;
8075 return E->EvaluateAsBooleanCondition(Res, S.getASTContext()) && Res;
8076}
8077
Argyrios Kyrtzidis47d512c2010-11-17 19:18:19 +00008078/// \brief Returns true if the given expression can be evaluated as a constant
8079/// 'false'.
8080static bool EvaluatesAsFalse(Sema &S, Expr *E) {
8081 bool Res;
8082 return E->EvaluateAsBooleanCondition(Res, S.getASTContext()) && !Res;
8083}
8084
Argyrios Kyrtzidis567bb712010-11-17 18:26:36 +00008085/// \brief Look for '&&' in the left hand of a '||' expr.
8086static void DiagnoseLogicalAndInLogicalOrLHS(Sema &S, SourceLocation OpLoc,
Richard Trieubefece12011-09-07 02:02:10 +00008087 Expr *LHSExpr, Expr *RHSExpr) {
8088 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(LHSExpr)) {
Argyrios Kyrtzidisbee77f72010-11-16 21:00:12 +00008089 if (Bop->getOpcode() == BO_LAnd) {
Argyrios Kyrtzidis47d512c2010-11-17 19:18:19 +00008090 // If it's "a && b || 0" don't warn since the precedence doesn't matter.
Richard Trieubefece12011-09-07 02:02:10 +00008091 if (EvaluatesAsFalse(S, RHSExpr))
Argyrios Kyrtzidis47d512c2010-11-17 19:18:19 +00008092 return;
Argyrios Kyrtzidis567bb712010-11-17 18:26:36 +00008093 // If it's "1 && a || b" don't warn since the precedence doesn't matter.
8094 if (!EvaluatesAsTrue(S, Bop->getLHS()))
8095 return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, Bop);
8096 } else if (Bop->getOpcode() == BO_LOr) {
8097 if (BinaryOperator *RBop = dyn_cast<BinaryOperator>(Bop->getRHS())) {
8098 // If it's "a || b && 1 || c" we didn't warn earlier for
8099 // "a || b && 1", but warn now.
8100 if (RBop->getOpcode() == BO_LAnd && EvaluatesAsTrue(S, RBop->getRHS()))
8101 return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, RBop);
8102 }
8103 }
8104 }
8105}
8106
8107/// \brief Look for '&&' in the right hand of a '||' expr.
8108static void DiagnoseLogicalAndInLogicalOrRHS(Sema &S, SourceLocation OpLoc,
Richard Trieubefece12011-09-07 02:02:10 +00008109 Expr *LHSExpr, Expr *RHSExpr) {
8110 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(RHSExpr)) {
Argyrios Kyrtzidis567bb712010-11-17 18:26:36 +00008111 if (Bop->getOpcode() == BO_LAnd) {
Argyrios Kyrtzidis47d512c2010-11-17 19:18:19 +00008112 // If it's "0 || a && b" don't warn since the precedence doesn't matter.
Richard Trieubefece12011-09-07 02:02:10 +00008113 if (EvaluatesAsFalse(S, LHSExpr))
Argyrios Kyrtzidis47d512c2010-11-17 19:18:19 +00008114 return;
Argyrios Kyrtzidis567bb712010-11-17 18:26:36 +00008115 // If it's "a || b && 1" don't warn since the precedence doesn't matter.
8116 if (!EvaluatesAsTrue(S, Bop->getRHS()))
8117 return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, Bop);
Argyrios Kyrtzidisbee77f72010-11-16 21:00:12 +00008118 }
8119 }
8120}
8121
Argyrios Kyrtzidis33f46e22011-06-20 18:41:26 +00008122/// \brief Look for '&' in the left or right hand of a '|' expr.
8123static void DiagnoseBitwiseAndInBitwiseOr(Sema &S, SourceLocation OpLoc,
8124 Expr *OrArg) {
8125 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(OrArg)) {
8126 if (Bop->getOpcode() == BO_And)
8127 return EmitDiagnosticForBitwiseAndInBitwiseOr(S, OpLoc, Bop);
8128 }
8129}
8130
Sebastian Redl9e1d29b2009-10-26 15:24:15 +00008131/// DiagnoseBinOpPrecedence - Emit warnings for expressions with tricky
Argyrios Kyrtzidisbee77f72010-11-16 21:00:12 +00008132/// precedence.
John McCall2de56d12010-08-25 11:45:40 +00008133static void DiagnoseBinOpPrecedence(Sema &Self, BinaryOperatorKind Opc,
Richard Trieubefece12011-09-07 02:02:10 +00008134 SourceLocation OpLoc, Expr *LHSExpr,
8135 Expr *RHSExpr){
Argyrios Kyrtzidisbee77f72010-11-16 21:00:12 +00008136 // Diagnose "arg1 'bitwise' arg2 'eq' arg3".
Sebastian Redlaee3c932009-10-27 12:10:02 +00008137 if (BinaryOperator::isBitwiseOp(Opc))
Richard Trieubefece12011-09-07 02:02:10 +00008138 DiagnoseBitwisePrecedence(Self, Opc, OpLoc, LHSExpr, RHSExpr);
Argyrios Kyrtzidis33f46e22011-06-20 18:41:26 +00008139
8140 // Diagnose "arg1 & arg2 | arg3"
8141 if (Opc == BO_Or && !OpLoc.isMacroID()/* Don't warn in macros. */) {
Richard Trieubefece12011-09-07 02:02:10 +00008142 DiagnoseBitwiseAndInBitwiseOr(Self, OpLoc, LHSExpr);
8143 DiagnoseBitwiseAndInBitwiseOr(Self, OpLoc, RHSExpr);
Argyrios Kyrtzidis33f46e22011-06-20 18:41:26 +00008144 }
Argyrios Kyrtzidisbee77f72010-11-16 21:00:12 +00008145
Argyrios Kyrtzidis567bb712010-11-17 18:26:36 +00008146 // Warn about arg1 || arg2 && arg3, as GCC 4.3+ does.
8147 // We don't warn for 'assert(a || b && "bad")' since this is safe.
Argyrios Kyrtzidisd92ccaa2010-11-17 18:54:22 +00008148 if (Opc == BO_LOr && !OpLoc.isMacroID()/* Don't warn in macros. */) {
Richard Trieubefece12011-09-07 02:02:10 +00008149 DiagnoseLogicalAndInLogicalOrLHS(Self, OpLoc, LHSExpr, RHSExpr);
8150 DiagnoseLogicalAndInLogicalOrRHS(Self, OpLoc, LHSExpr, RHSExpr);
Argyrios Kyrtzidisbee77f72010-11-16 21:00:12 +00008151 }
Sebastian Redl9e1d29b2009-10-26 15:24:15 +00008152}
8153
Reid Spencer5f016e22007-07-11 17:01:13 +00008154// Binary Operators. 'Tok' is the token for the operator.
John McCall60d7b3a2010-08-24 06:29:42 +00008155ExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc,
John McCall2de56d12010-08-25 11:45:40 +00008156 tok::TokenKind Kind,
Richard Trieubefece12011-09-07 02:02:10 +00008157 Expr *LHSExpr, Expr *RHSExpr) {
John McCall2de56d12010-08-25 11:45:40 +00008158 BinaryOperatorKind Opc = ConvertTokenKindToBinaryOpcode(Kind);
Richard Trieubefece12011-09-07 02:02:10 +00008159 assert((LHSExpr != 0) && "ActOnBinOp(): missing left expression");
8160 assert((RHSExpr != 0) && "ActOnBinOp(): missing right expression");
Reid Spencer5f016e22007-07-11 17:01:13 +00008161
Sebastian Redl9e1d29b2009-10-26 15:24:15 +00008162 // Emit warnings for tricky precedence issues, e.g. "bitfield & 0x4 == 0"
Richard Trieubefece12011-09-07 02:02:10 +00008163 DiagnoseBinOpPrecedence(*this, Opc, TokLoc, LHSExpr, RHSExpr);
Sebastian Redl9e1d29b2009-10-26 15:24:15 +00008164
Richard Trieubefece12011-09-07 02:02:10 +00008165 return BuildBinOp(S, TokLoc, Opc, LHSExpr, RHSExpr);
Douglas Gregor6ca7cfb2009-11-05 00:51:44 +00008166}
8167
John McCall3c3b7f92011-10-25 17:37:35 +00008168/// Build an overloaded binary operator expression in the given scope.
8169static ExprResult BuildOverloadedBinOp(Sema &S, Scope *Sc, SourceLocation OpLoc,
8170 BinaryOperatorKind Opc,
8171 Expr *LHS, Expr *RHS) {
8172 // Find all of the overloaded operators visible from this
8173 // point. We perform both an operator-name lookup from the local
8174 // scope and an argument-dependent lookup based on the types of
8175 // the arguments.
8176 UnresolvedSet<16> Functions;
8177 OverloadedOperatorKind OverOp
8178 = BinaryOperator::getOverloadedOperator(Opc);
8179 if (Sc && OverOp != OO_None)
8180 S.LookupOverloadedOperatorName(OverOp, Sc, LHS->getType(),
8181 RHS->getType(), Functions);
8182
8183 // Build the (potentially-overloaded, potentially-dependent)
8184 // binary operation.
8185 return S.CreateOverloadedBinOp(OpLoc, Opc, Functions, LHS, RHS);
8186}
8187
John McCall60d7b3a2010-08-24 06:29:42 +00008188ExprResult Sema::BuildBinOp(Scope *S, SourceLocation OpLoc,
John McCall2de56d12010-08-25 11:45:40 +00008189 BinaryOperatorKind Opc,
Richard Trieubefece12011-09-07 02:02:10 +00008190 Expr *LHSExpr, Expr *RHSExpr) {
John McCallac516502011-10-28 01:04:34 +00008191 // We want to end up calling one of checkPseudoObjectAssignment
8192 // (if the LHS is a pseudo-object), BuildOverloadedBinOp (if
8193 // both expressions are overloadable or either is type-dependent),
8194 // or CreateBuiltinBinOp (in any other case). We also want to get
8195 // any placeholder types out of the way.
8196
John McCall3c3b7f92011-10-25 17:37:35 +00008197 // Handle pseudo-objects in the LHS.
8198 if (const BuiltinType *pty = LHSExpr->getType()->getAsPlaceholderType()) {
8199 // Assignments with a pseudo-object l-value need special analysis.
8200 if (pty->getKind() == BuiltinType::PseudoObject &&
8201 BinaryOperator::isAssignmentOp(Opc))
8202 return checkPseudoObjectAssignment(S, OpLoc, Opc, LHSExpr, RHSExpr);
8203
8204 // Don't resolve overloads if the other type is overloadable.
8205 if (pty->getKind() == BuiltinType::Overload) {
8206 // We can't actually test that if we still have a placeholder,
8207 // though. Fortunately, none of the exceptions we see in that
John McCallac516502011-10-28 01:04:34 +00008208 // code below are valid when the LHS is an overload set. Note
8209 // that an overload set can be dependently-typed, but it never
8210 // instantiates to having an overloadable type.
John McCall3c3b7f92011-10-25 17:37:35 +00008211 ExprResult resolvedRHS = CheckPlaceholderExpr(RHSExpr);
8212 if (resolvedRHS.isInvalid()) return ExprError();
8213 RHSExpr = resolvedRHS.take();
8214
John McCallac516502011-10-28 01:04:34 +00008215 if (RHSExpr->isTypeDependent() ||
8216 RHSExpr->getType()->isOverloadableType())
John McCall3c3b7f92011-10-25 17:37:35 +00008217 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
8218 }
8219
8220 ExprResult LHS = CheckPlaceholderExpr(LHSExpr);
8221 if (LHS.isInvalid()) return ExprError();
8222 LHSExpr = LHS.take();
8223 }
8224
8225 // Handle pseudo-objects in the RHS.
8226 if (const BuiltinType *pty = RHSExpr->getType()->getAsPlaceholderType()) {
8227 // An overload in the RHS can potentially be resolved by the type
8228 // being assigned to.
John McCallac516502011-10-28 01:04:34 +00008229 if (Opc == BO_Assign && pty->getKind() == BuiltinType::Overload) {
8230 if (LHSExpr->isTypeDependent() || RHSExpr->isTypeDependent())
8231 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
8232
Eli Friedman87884912012-01-17 21:27:43 +00008233 if (LHSExpr->getType()->isOverloadableType())
8234 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
8235
John McCall3c3b7f92011-10-25 17:37:35 +00008236 return CreateBuiltinBinOp(OpLoc, Opc, LHSExpr, RHSExpr);
John McCallac516502011-10-28 01:04:34 +00008237 }
John McCall3c3b7f92011-10-25 17:37:35 +00008238
8239 // Don't resolve overloads if the other type is overloadable.
8240 if (pty->getKind() == BuiltinType::Overload &&
8241 LHSExpr->getType()->isOverloadableType())
8242 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
8243
8244 ExprResult resolvedRHS = CheckPlaceholderExpr(RHSExpr);
8245 if (!resolvedRHS.isUsable()) return ExprError();
8246 RHSExpr = resolvedRHS.take();
8247 }
8248
David Blaikie4e4d0842012-03-11 07:00:24 +00008249 if (getLangOpts().CPlusPlus) {
John McCallac516502011-10-28 01:04:34 +00008250 // If either expression is type-dependent, always build an
8251 // overloaded op.
8252 if (LHSExpr->isTypeDependent() || RHSExpr->isTypeDependent())
8253 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00008254
John McCallac516502011-10-28 01:04:34 +00008255 // Otherwise, build an overloaded op if either expression has an
8256 // overloadable type.
8257 if (LHSExpr->getType()->isOverloadableType() ||
8258 RHSExpr->getType()->isOverloadableType())
John McCall3c3b7f92011-10-25 17:37:35 +00008259 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00008260 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00008261
Douglas Gregoreaebc752008-11-06 23:29:22 +00008262 // Build a built-in binary operation.
Richard Trieubefece12011-09-07 02:02:10 +00008263 return CreateBuiltinBinOp(OpLoc, Opc, LHSExpr, RHSExpr);
Reid Spencer5f016e22007-07-11 17:01:13 +00008264}
8265
John McCall60d7b3a2010-08-24 06:29:42 +00008266ExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc,
Argyrios Kyrtzidisb1fa3dc2011-01-05 20:09:36 +00008267 UnaryOperatorKind Opc,
John Wiegley429bb272011-04-08 18:41:53 +00008268 Expr *InputExpr) {
8269 ExprResult Input = Owned(InputExpr);
John McCallf89e55a2010-11-18 06:31:45 +00008270 ExprValueKind VK = VK_RValue;
8271 ExprObjectKind OK = OK_Ordinary;
Reid Spencer5f016e22007-07-11 17:01:13 +00008272 QualType resultType;
8273 switch (Opc) {
John McCall2de56d12010-08-25 11:45:40 +00008274 case UO_PreInc:
8275 case UO_PreDec:
8276 case UO_PostInc:
8277 case UO_PostDec:
John Wiegley429bb272011-04-08 18:41:53 +00008278 resultType = CheckIncrementDecrementOperand(*this, Input.get(), VK, OpLoc,
John McCall2de56d12010-08-25 11:45:40 +00008279 Opc == UO_PreInc ||
8280 Opc == UO_PostInc,
8281 Opc == UO_PreInc ||
8282 Opc == UO_PreDec);
Reid Spencer5f016e22007-07-11 17:01:13 +00008283 break;
John McCall2de56d12010-08-25 11:45:40 +00008284 case UO_AddrOf:
John McCall3c3b7f92011-10-25 17:37:35 +00008285 resultType = CheckAddressOfOperand(*this, Input, OpLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00008286 break;
John McCall1de4d4e2011-04-07 08:22:57 +00008287 case UO_Deref: {
John Wiegley429bb272011-04-08 18:41:53 +00008288 Input = DefaultFunctionArrayLvalueConversion(Input.take());
8289 resultType = CheckIndirectionOperand(*this, Input.get(), VK, OpLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00008290 break;
John McCall1de4d4e2011-04-07 08:22:57 +00008291 }
John McCall2de56d12010-08-25 11:45:40 +00008292 case UO_Plus:
8293 case UO_Minus:
John Wiegley429bb272011-04-08 18:41:53 +00008294 Input = UsualUnaryConversions(Input.take());
8295 if (Input.isInvalid()) return ExprError();
8296 resultType = Input.get()->getType();
Sebastian Redl28507842009-02-26 14:39:58 +00008297 if (resultType->isDependentType())
8298 break;
Douglas Gregor00619622010-06-22 23:41:02 +00008299 if (resultType->isArithmeticType() || // C99 6.5.3.3p1
8300 resultType->isVectorType())
Douglas Gregor74253732008-11-19 15:42:04 +00008301 break;
David Blaikie4e4d0842012-03-11 07:00:24 +00008302 else if (getLangOpts().CPlusPlus && // C++ [expr.unary.op]p6-7
Douglas Gregor74253732008-11-19 15:42:04 +00008303 resultType->isEnumeralType())
8304 break;
David Blaikie4e4d0842012-03-11 07:00:24 +00008305 else if (getLangOpts().CPlusPlus && // C++ [expr.unary.op]p6
John McCall2de56d12010-08-25 11:45:40 +00008306 Opc == UO_Plus &&
Douglas Gregor74253732008-11-19 15:42:04 +00008307 resultType->isPointerType())
8308 break;
8309
Sebastian Redl0eb23302009-01-19 00:08:26 +00008310 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
John Wiegley429bb272011-04-08 18:41:53 +00008311 << resultType << Input.get()->getSourceRange());
8312
John McCall2de56d12010-08-25 11:45:40 +00008313 case UO_Not: // bitwise complement
John Wiegley429bb272011-04-08 18:41:53 +00008314 Input = UsualUnaryConversions(Input.take());
8315 if (Input.isInvalid()) return ExprError();
8316 resultType = Input.get()->getType();
Sebastian Redl28507842009-02-26 14:39:58 +00008317 if (resultType->isDependentType())
8318 break;
Chris Lattner02a65142008-07-25 23:52:49 +00008319 // C99 6.5.3.3p1. We allow complex int and float as a GCC extension.
8320 if (resultType->isComplexType() || resultType->isComplexIntegerType())
8321 // C99 does not support '~' for complex conjugation.
Chris Lattnerd3a94e22008-11-20 06:06:08 +00008322 Diag(OpLoc, diag::ext_integer_complement_complex)
John Wiegley429bb272011-04-08 18:41:53 +00008323 << resultType << Input.get()->getSourceRange();
John McCall2cd11fe2010-10-12 02:09:17 +00008324 else if (resultType->hasIntegerRepresentation())
8325 break;
John McCall3c3b7f92011-10-25 17:37:35 +00008326 else {
Sebastian Redl0eb23302009-01-19 00:08:26 +00008327 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
John Wiegley429bb272011-04-08 18:41:53 +00008328 << resultType << Input.get()->getSourceRange());
John McCall2cd11fe2010-10-12 02:09:17 +00008329 }
Reid Spencer5f016e22007-07-11 17:01:13 +00008330 break;
John Wiegley429bb272011-04-08 18:41:53 +00008331
John McCall2de56d12010-08-25 11:45:40 +00008332 case UO_LNot: // logical negation
Reid Spencer5f016e22007-07-11 17:01:13 +00008333 // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5).
John Wiegley429bb272011-04-08 18:41:53 +00008334 Input = DefaultFunctionArrayLvalueConversion(Input.take());
8335 if (Input.isInvalid()) return ExprError();
8336 resultType = Input.get()->getType();
Anton Korobeynikovaa4a99b2011-10-14 23:23:15 +00008337
8338 // Though we still have to promote half FP to float...
8339 if (resultType->isHalfType()) {
8340 Input = ImpCastExprToType(Input.take(), Context.FloatTy, CK_FloatingCast).take();
8341 resultType = Context.FloatTy;
8342 }
8343
Sebastian Redl28507842009-02-26 14:39:58 +00008344 if (resultType->isDependentType())
8345 break;
Abramo Bagnara737d5442011-04-07 09:26:19 +00008346 if (resultType->isScalarType()) {
8347 // C99 6.5.3.3p1: ok, fallthrough;
David Blaikie4e4d0842012-03-11 07:00:24 +00008348 if (Context.getLangOpts().CPlusPlus) {
Abramo Bagnara737d5442011-04-07 09:26:19 +00008349 // C++03 [expr.unary.op]p8, C++0x [expr.unary.op]p9:
8350 // operand contextually converted to bool.
John Wiegley429bb272011-04-08 18:41:53 +00008351 Input = ImpCastExprToType(Input.take(), Context.BoolTy,
8352 ScalarTypeToBooleanCastKind(resultType));
Abramo Bagnara737d5442011-04-07 09:26:19 +00008353 }
Tanya Lattnerb0f9dd22012-01-19 01:16:16 +00008354 } else if (resultType->isExtVectorType()) {
Tanya Lattner4f692c22012-01-16 21:02:28 +00008355 // Vector logical not returns the signed variant of the operand type.
8356 resultType = GetSignedVectorType(resultType);
8357 break;
John McCall2cd11fe2010-10-12 02:09:17 +00008358 } else {
Sebastian Redl0eb23302009-01-19 00:08:26 +00008359 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
John Wiegley429bb272011-04-08 18:41:53 +00008360 << resultType << Input.get()->getSourceRange());
John McCall2cd11fe2010-10-12 02:09:17 +00008361 }
Douglas Gregorea844f32010-09-20 17:13:33 +00008362
Reid Spencer5f016e22007-07-11 17:01:13 +00008363 // LNot always has type int. C99 6.5.3.3p5.
Sebastian Redl0eb23302009-01-19 00:08:26 +00008364 // In C++, it's bool. C++ 5.3.1p8
Argyrios Kyrtzidis16f744b2011-02-18 20:55:15 +00008365 resultType = Context.getLogicalOperationType();
Reid Spencer5f016e22007-07-11 17:01:13 +00008366 break;
John McCall2de56d12010-08-25 11:45:40 +00008367 case UO_Real:
8368 case UO_Imag:
John McCall09431682010-11-18 19:01:18 +00008369 resultType = CheckRealImagOperand(*this, Input, OpLoc, Opc == UO_Real);
Richard Smithdfb80de2012-02-18 20:53:32 +00008370 // _Real maps ordinary l-values into ordinary l-values. _Imag maps ordinary
8371 // complex l-values to ordinary l-values and all other values to r-values.
John Wiegley429bb272011-04-08 18:41:53 +00008372 if (Input.isInvalid()) return ExprError();
Richard Smithdfb80de2012-02-18 20:53:32 +00008373 if (Opc == UO_Real || Input.get()->getType()->isAnyComplexType()) {
8374 if (Input.get()->getValueKind() != VK_RValue &&
8375 Input.get()->getObjectKind() == OK_Ordinary)
8376 VK = Input.get()->getValueKind();
David Blaikie4e4d0842012-03-11 07:00:24 +00008377 } else if (!getLangOpts().CPlusPlus) {
Richard Smithdfb80de2012-02-18 20:53:32 +00008378 // In C, a volatile scalar is read by __imag. In C++, it is not.
8379 Input = DefaultLvalueConversion(Input.take());
8380 }
Chris Lattnerdbb36972007-08-24 21:16:53 +00008381 break;
John McCall2de56d12010-08-25 11:45:40 +00008382 case UO_Extension:
John Wiegley429bb272011-04-08 18:41:53 +00008383 resultType = Input.get()->getType();
8384 VK = Input.get()->getValueKind();
8385 OK = Input.get()->getObjectKind();
Reid Spencer5f016e22007-07-11 17:01:13 +00008386 break;
8387 }
John Wiegley429bb272011-04-08 18:41:53 +00008388 if (resultType.isNull() || Input.isInvalid())
Sebastian Redl0eb23302009-01-19 00:08:26 +00008389 return ExprError();
Douglas Gregorbc736fc2009-03-13 23:49:33 +00008390
Kaelyn Uhraind6c88652011-08-05 23:18:04 +00008391 // Check for array bounds violations in the operand of the UnaryOperator,
8392 // except for the '*' and '&' operators that have to be handled specially
8393 // by CheckArrayAccess (as there are special cases like &array[arraysize]
8394 // that are explicitly defined as valid by the standard).
8395 if (Opc != UO_AddrOf && Opc != UO_Deref)
8396 CheckArrayAccess(Input.get());
8397
John Wiegley429bb272011-04-08 18:41:53 +00008398 return Owned(new (Context) UnaryOperator(Input.take(), Opc, resultType,
John McCallf89e55a2010-11-18 06:31:45 +00008399 VK, OK, OpLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +00008400}
8401
Douglas Gregord3d08532011-12-14 21:23:13 +00008402/// \brief Determine whether the given expression is a qualified member
8403/// access expression, of a form that could be turned into a pointer to member
8404/// with the address-of operator.
8405static bool isQualifiedMemberAccess(Expr *E) {
8406 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
8407 if (!DRE->getQualifier())
8408 return false;
8409
8410 ValueDecl *VD = DRE->getDecl();
8411 if (!VD->isCXXClassMember())
8412 return false;
8413
8414 if (isa<FieldDecl>(VD) || isa<IndirectFieldDecl>(VD))
8415 return true;
8416 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(VD))
8417 return Method->isInstance();
8418
8419 return false;
8420 }
8421
8422 if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(E)) {
8423 if (!ULE->getQualifier())
8424 return false;
8425
8426 for (UnresolvedLookupExpr::decls_iterator D = ULE->decls_begin(),
8427 DEnd = ULE->decls_end();
8428 D != DEnd; ++D) {
8429 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(*D)) {
8430 if (Method->isInstance())
8431 return true;
8432 } else {
8433 // Overload set does not contain methods.
8434 break;
8435 }
8436 }
8437
8438 return false;
8439 }
8440
8441 return false;
8442}
8443
John McCall60d7b3a2010-08-24 06:29:42 +00008444ExprResult Sema::BuildUnaryOp(Scope *S, SourceLocation OpLoc,
Richard Trieuccd891a2011-09-09 01:45:06 +00008445 UnaryOperatorKind Opc, Expr *Input) {
John McCall3c3b7f92011-10-25 17:37:35 +00008446 // First things first: handle placeholders so that the
8447 // overloaded-operator check considers the right type.
8448 if (const BuiltinType *pty = Input->getType()->getAsPlaceholderType()) {
8449 // Increment and decrement of pseudo-object references.
8450 if (pty->getKind() == BuiltinType::PseudoObject &&
8451 UnaryOperator::isIncrementDecrementOp(Opc))
8452 return checkPseudoObjectIncDec(S, OpLoc, Opc, Input);
8453
8454 // extension is always a builtin operator.
8455 if (Opc == UO_Extension)
8456 return CreateBuiltinUnaryOp(OpLoc, Opc, Input);
8457
8458 // & gets special logic for several kinds of placeholder.
8459 // The builtin code knows what to do.
8460 if (Opc == UO_AddrOf &&
8461 (pty->getKind() == BuiltinType::Overload ||
8462 pty->getKind() == BuiltinType::UnknownAny ||
8463 pty->getKind() == BuiltinType::BoundMember))
8464 return CreateBuiltinUnaryOp(OpLoc, Opc, Input);
8465
8466 // Anything else needs to be handled now.
8467 ExprResult Result = CheckPlaceholderExpr(Input);
8468 if (Result.isInvalid()) return ExprError();
8469 Input = Result.take();
8470 }
8471
David Blaikie4e4d0842012-03-11 07:00:24 +00008472 if (getLangOpts().CPlusPlus && Input->getType()->isOverloadableType() &&
Douglas Gregord3d08532011-12-14 21:23:13 +00008473 UnaryOperator::getOverloadedOperator(Opc) != OO_None &&
8474 !(Opc == UO_AddrOf && isQualifiedMemberAccess(Input))) {
Douglas Gregorbc736fc2009-03-13 23:49:33 +00008475 // Find all of the overloaded operators visible from this
8476 // point. We perform both an operator-name lookup from the local
8477 // scope and an argument-dependent lookup based on the types of
8478 // the arguments.
John McCall6e266892010-01-26 03:27:55 +00008479 UnresolvedSet<16> Functions;
Douglas Gregorbc736fc2009-03-13 23:49:33 +00008480 OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc);
John McCall6e266892010-01-26 03:27:55 +00008481 if (S && OverOp != OO_None)
8482 LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(),
8483 Functions);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00008484
John McCall9ae2f072010-08-23 23:25:46 +00008485 return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, Input);
Douglas Gregorbc736fc2009-03-13 23:49:33 +00008486 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00008487
John McCall9ae2f072010-08-23 23:25:46 +00008488 return CreateBuiltinUnaryOp(OpLoc, Opc, Input);
Douglas Gregorbc736fc2009-03-13 23:49:33 +00008489}
8490
Douglas Gregor6ca7cfb2009-11-05 00:51:44 +00008491// Unary Operators. 'Tok' is the token for the operator.
John McCall60d7b3a2010-08-24 06:29:42 +00008492ExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc,
John McCallf4c73712011-01-19 06:33:43 +00008493 tok::TokenKind Op, Expr *Input) {
John McCall9ae2f072010-08-23 23:25:46 +00008494 return BuildUnaryOp(S, OpLoc, ConvertTokenKindToUnaryOpcode(Op), Input);
Douglas Gregor6ca7cfb2009-11-05 00:51:44 +00008495}
8496
Steve Naroff1b273c42007-09-16 14:56:35 +00008497/// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo".
Chris Lattnerad8dcf42011-02-17 07:39:24 +00008498ExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc, SourceLocation LabLoc,
Chris Lattner57ad3782011-02-17 20:34:02 +00008499 LabelDecl *TheDecl) {
Chris Lattnerad8dcf42011-02-17 07:39:24 +00008500 TheDecl->setUsed();
Reid Spencer5f016e22007-07-11 17:01:13 +00008501 // Create the AST node. The address of a label always has type 'void*'.
Chris Lattnerad8dcf42011-02-17 07:39:24 +00008502 return Owned(new (Context) AddrLabelExpr(OpLoc, LabLoc, TheDecl,
Sebastian Redlf53597f2009-03-15 17:47:39 +00008503 Context.getPointerType(Context.VoidTy)));
Reid Spencer5f016e22007-07-11 17:01:13 +00008504}
8505
John McCallf85e1932011-06-15 23:02:42 +00008506/// Given the last statement in a statement-expression, check whether
8507/// the result is a producing expression (like a call to an
8508/// ns_returns_retained function) and, if so, rebuild it to hoist the
8509/// release out of the full-expression. Otherwise, return null.
8510/// Cannot fail.
Richard Trieuccd891a2011-09-09 01:45:06 +00008511static Expr *maybeRebuildARCConsumingStmt(Stmt *Statement) {
John McCallf85e1932011-06-15 23:02:42 +00008512 // Should always be wrapped with one of these.
Richard Trieuccd891a2011-09-09 01:45:06 +00008513 ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(Statement);
John McCallf85e1932011-06-15 23:02:42 +00008514 if (!cleanups) return 0;
8515
8516 ImplicitCastExpr *cast = dyn_cast<ImplicitCastExpr>(cleanups->getSubExpr());
John McCall33e56f32011-09-10 06:18:15 +00008517 if (!cast || cast->getCastKind() != CK_ARCConsumeObject)
John McCallf85e1932011-06-15 23:02:42 +00008518 return 0;
8519
8520 // Splice out the cast. This shouldn't modify any interesting
8521 // features of the statement.
8522 Expr *producer = cast->getSubExpr();
8523 assert(producer->getType() == cast->getType());
8524 assert(producer->getValueKind() == cast->getValueKind());
8525 cleanups->setSubExpr(producer);
8526 return cleanups;
8527}
8528
John McCall60d7b3a2010-08-24 06:29:42 +00008529ExprResult
John McCall9ae2f072010-08-23 23:25:46 +00008530Sema::ActOnStmtExpr(SourceLocation LPLoc, Stmt *SubStmt,
Sebastian Redlf53597f2009-03-15 17:47:39 +00008531 SourceLocation RPLoc) { // "({..})"
Chris Lattnerab18c4c2007-07-24 16:58:17 +00008532 assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!");
8533 CompoundStmt *Compound = cast<CompoundStmt>(SubStmt);
8534
Douglas Gregordd8f5692010-03-10 04:54:39 +00008535 bool isFileScope
8536 = (getCurFunctionOrMethodDecl() == 0) && (getCurBlock() == 0);
Chris Lattner4a049f02009-04-25 19:11:05 +00008537 if (isFileScope)
Sebastian Redlf53597f2009-03-15 17:47:39 +00008538 return ExprError(Diag(LPLoc, diag::err_stmtexpr_file_scope));
Eli Friedmandca2b732009-01-24 23:09:00 +00008539
Chris Lattnerab18c4c2007-07-24 16:58:17 +00008540 // FIXME: there are a variety of strange constraints to enforce here, for
8541 // example, it is not possible to goto into a stmt expression apparently.
8542 // More semantic analysis is needed.
Mike Stumpeed9cac2009-02-19 03:04:26 +00008543
Chris Lattnerab18c4c2007-07-24 16:58:17 +00008544 // If there are sub stmts in the compound stmt, take the type of the last one
8545 // as the type of the stmtexpr.
8546 QualType Ty = Context.VoidTy;
Fariborz Jahaniane946fc82010-10-25 23:27:26 +00008547 bool StmtExprMayBindToTemp = false;
Chris Lattner611b2ec2008-07-26 19:51:01 +00008548 if (!Compound->body_empty()) {
8549 Stmt *LastStmt = Compound->body_back();
Fariborz Jahaniane946fc82010-10-25 23:27:26 +00008550 LabelStmt *LastLabelStmt = 0;
Chris Lattner611b2ec2008-07-26 19:51:01 +00008551 // If LastStmt is a label, skip down through into the body.
Fariborz Jahaniane946fc82010-10-25 23:27:26 +00008552 while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt)) {
8553 LastLabelStmt = Label;
Chris Lattner611b2ec2008-07-26 19:51:01 +00008554 LastStmt = Label->getSubStmt();
Fariborz Jahaniane946fc82010-10-25 23:27:26 +00008555 }
John McCallf85e1932011-06-15 23:02:42 +00008556
John Wiegley429bb272011-04-08 18:41:53 +00008557 if (Expr *LastE = dyn_cast<Expr>(LastStmt)) {
John McCallf6a16482010-12-04 03:47:34 +00008558 // Do function/array conversion on the last expression, but not
8559 // lvalue-to-rvalue. However, initialize an unqualified type.
John Wiegley429bb272011-04-08 18:41:53 +00008560 ExprResult LastExpr = DefaultFunctionArrayConversion(LastE);
8561 if (LastExpr.isInvalid())
8562 return ExprError();
8563 Ty = LastExpr.get()->getType().getUnqualifiedType();
John McCallf6a16482010-12-04 03:47:34 +00008564
John Wiegley429bb272011-04-08 18:41:53 +00008565 if (!Ty->isDependentType() && !LastExpr.get()->isTypeDependent()) {
John McCallf85e1932011-06-15 23:02:42 +00008566 // In ARC, if the final expression ends in a consume, splice
8567 // the consume out and bind it later. In the alternate case
8568 // (when dealing with a retainable type), the result
8569 // initialization will create a produce. In both cases the
8570 // result will be +1, and we'll need to balance that out with
8571 // a bind.
8572 if (Expr *rebuiltLastStmt
8573 = maybeRebuildARCConsumingStmt(LastExpr.get())) {
8574 LastExpr = rebuiltLastStmt;
8575 } else {
8576 LastExpr = PerformCopyInitialization(
Fariborz Jahaniane946fc82010-10-25 23:27:26 +00008577 InitializedEntity::InitializeResult(LPLoc,
8578 Ty,
8579 false),
8580 SourceLocation(),
John McCallf85e1932011-06-15 23:02:42 +00008581 LastExpr);
8582 }
8583
John Wiegley429bb272011-04-08 18:41:53 +00008584 if (LastExpr.isInvalid())
Fariborz Jahaniane946fc82010-10-25 23:27:26 +00008585 return ExprError();
John Wiegley429bb272011-04-08 18:41:53 +00008586 if (LastExpr.get() != 0) {
Fariborz Jahaniane946fc82010-10-25 23:27:26 +00008587 if (!LastLabelStmt)
John Wiegley429bb272011-04-08 18:41:53 +00008588 Compound->setLastStmt(LastExpr.take());
Fariborz Jahaniane946fc82010-10-25 23:27:26 +00008589 else
John Wiegley429bb272011-04-08 18:41:53 +00008590 LastLabelStmt->setSubStmt(LastExpr.take());
Fariborz Jahaniane946fc82010-10-25 23:27:26 +00008591 StmtExprMayBindToTemp = true;
8592 }
8593 }
8594 }
Chris Lattner611b2ec2008-07-26 19:51:01 +00008595 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00008596
Eli Friedmanb1d796d2009-03-23 00:24:07 +00008597 // FIXME: Check that expression type is complete/non-abstract; statement
8598 // expressions are not lvalues.
Fariborz Jahaniane946fc82010-10-25 23:27:26 +00008599 Expr *ResStmtExpr = new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc);
8600 if (StmtExprMayBindToTemp)
8601 return MaybeBindToTemporary(ResStmtExpr);
8602 return Owned(ResStmtExpr);
Chris Lattnerab18c4c2007-07-24 16:58:17 +00008603}
Steve Naroffd34e9152007-08-01 22:05:33 +00008604
John McCall60d7b3a2010-08-24 06:29:42 +00008605ExprResult Sema::BuildBuiltinOffsetOf(SourceLocation BuiltinLoc,
John McCall2cd11fe2010-10-12 02:09:17 +00008606 TypeSourceInfo *TInfo,
8607 OffsetOfComponent *CompPtr,
8608 unsigned NumComponents,
8609 SourceLocation RParenLoc) {
Douglas Gregor8ecdb652010-04-28 22:16:22 +00008610 QualType ArgTy = TInfo->getType();
Sebastian Redl28507842009-02-26 14:39:58 +00008611 bool Dependent = ArgTy->isDependentType();
Abramo Bagnarabd054db2010-05-20 10:00:11 +00008612 SourceRange TypeRange = TInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor8ecdb652010-04-28 22:16:22 +00008613
Chris Lattner73d0d4f2007-08-30 17:45:32 +00008614 // We must have at least one component that refers to the type, and the first
8615 // one is known to be a field designator. Verify that the ArgTy represents
8616 // a struct/union/class.
Sebastian Redl28507842009-02-26 14:39:58 +00008617 if (!Dependent && !ArgTy->isRecordType())
Douglas Gregor8ecdb652010-04-28 22:16:22 +00008618 return ExprError(Diag(BuiltinLoc, diag::err_offsetof_record_type)
8619 << ArgTy << TypeRange);
8620
8621 // Type must be complete per C99 7.17p3 because a declaring a variable
8622 // with an incomplete type would be ill-formed.
8623 if (!Dependent
8624 && RequireCompleteType(BuiltinLoc, ArgTy,
8625 PDiag(diag::err_offsetof_incomplete_type)
8626 << TypeRange))
8627 return ExprError();
8628
Chris Lattner9e2b75c2007-08-31 21:49:13 +00008629 // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a
8630 // GCC extension, diagnose them.
Eli Friedman35183ac2009-02-27 06:44:11 +00008631 // FIXME: This diagnostic isn't actually visible because the location is in
8632 // a system header!
Chris Lattner9e2b75c2007-08-31 21:49:13 +00008633 if (NumComponents != 1)
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00008634 Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator)
8635 << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd);
Douglas Gregor8ecdb652010-04-28 22:16:22 +00008636
8637 bool DidWarnAboutNonPOD = false;
8638 QualType CurrentType = ArgTy;
8639 typedef OffsetOfExpr::OffsetOfNode OffsetOfNode;
Chris Lattner5f9e2722011-07-23 10:55:15 +00008640 SmallVector<OffsetOfNode, 4> Comps;
8641 SmallVector<Expr*, 4> Exprs;
Douglas Gregor8ecdb652010-04-28 22:16:22 +00008642 for (unsigned i = 0; i != NumComponents; ++i) {
8643 const OffsetOfComponent &OC = CompPtr[i];
8644 if (OC.isBrackets) {
8645 // Offset of an array sub-field. TODO: Should we allow vector elements?
8646 if (!CurrentType->isDependentType()) {
8647 const ArrayType *AT = Context.getAsArrayType(CurrentType);
8648 if(!AT)
8649 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type)
8650 << CurrentType);
8651 CurrentType = AT->getElementType();
8652 } else
8653 CurrentType = Context.DependentTy;
8654
Richard Smithea011432011-10-17 23:29:39 +00008655 ExprResult IdxRval = DefaultLvalueConversion(static_cast<Expr*>(OC.U.E));
8656 if (IdxRval.isInvalid())
8657 return ExprError();
8658 Expr *Idx = IdxRval.take();
8659
Douglas Gregor8ecdb652010-04-28 22:16:22 +00008660 // The expression must be an integral expression.
8661 // FIXME: An integral constant expression?
Douglas Gregor8ecdb652010-04-28 22:16:22 +00008662 if (!Idx->isTypeDependent() && !Idx->isValueDependent() &&
8663 !Idx->getType()->isIntegerType())
8664 return ExprError(Diag(Idx->getLocStart(),
8665 diag::err_typecheck_subscript_not_integer)
8666 << Idx->getSourceRange());
Richard Smithd82e5d32011-10-17 05:48:07 +00008667
Douglas Gregor8ecdb652010-04-28 22:16:22 +00008668 // Record this array index.
8669 Comps.push_back(OffsetOfNode(OC.LocStart, Exprs.size(), OC.LocEnd));
Richard Smithea011432011-10-17 23:29:39 +00008670 Exprs.push_back(Idx);
Douglas Gregor8ecdb652010-04-28 22:16:22 +00008671 continue;
8672 }
8673
8674 // Offset of a field.
8675 if (CurrentType->isDependentType()) {
8676 // We have the offset of a field, but we can't look into the dependent
8677 // type. Just record the identifier of the field.
8678 Comps.push_back(OffsetOfNode(OC.LocStart, OC.U.IdentInfo, OC.LocEnd));
8679 CurrentType = Context.DependentTy;
8680 continue;
8681 }
8682
8683 // We need to have a complete type to look into.
8684 if (RequireCompleteType(OC.LocStart, CurrentType,
8685 diag::err_offsetof_incomplete_type))
8686 return ExprError();
8687
8688 // Look for the designated field.
8689 const RecordType *RC = CurrentType->getAs<RecordType>();
8690 if (!RC)
8691 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type)
8692 << CurrentType);
8693 RecordDecl *RD = RC->getDecl();
8694
8695 // C++ [lib.support.types]p5:
8696 // The macro offsetof accepts a restricted set of type arguments in this
8697 // International Standard. type shall be a POD structure or a POD union
8698 // (clause 9).
8699 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
8700 if (!CRD->isPOD() && !DidWarnAboutNonPOD &&
Ted Kremenek762696f2011-02-23 01:51:43 +00008701 DiagRuntimeBehavior(BuiltinLoc, 0,
Douglas Gregor8ecdb652010-04-28 22:16:22 +00008702 PDiag(diag::warn_offsetof_non_pod_type)
8703 << SourceRange(CompPtr[0].LocStart, OC.LocEnd)
8704 << CurrentType))
8705 DidWarnAboutNonPOD = true;
8706 }
8707
8708 // Look for the field.
8709 LookupResult R(*this, OC.U.IdentInfo, OC.LocStart, LookupMemberName);
8710 LookupQualifiedName(R, RD);
8711 FieldDecl *MemberDecl = R.getAsSingle<FieldDecl>();
Francois Pichet87c2e122010-11-21 06:08:52 +00008712 IndirectFieldDecl *IndirectMemberDecl = 0;
8713 if (!MemberDecl) {
Benjamin Kramerd9811462010-11-21 14:11:41 +00008714 if ((IndirectMemberDecl = R.getAsSingle<IndirectFieldDecl>()))
Francois Pichet87c2e122010-11-21 06:08:52 +00008715 MemberDecl = IndirectMemberDecl->getAnonField();
8716 }
8717
Douglas Gregor8ecdb652010-04-28 22:16:22 +00008718 if (!MemberDecl)
8719 return ExprError(Diag(BuiltinLoc, diag::err_no_member)
8720 << OC.U.IdentInfo << RD << SourceRange(OC.LocStart,
8721 OC.LocEnd));
8722
Douglas Gregor9d5d60f2010-04-28 22:36:06 +00008723 // C99 7.17p3:
8724 // (If the specified member is a bit-field, the behavior is undefined.)
8725 //
8726 // We diagnose this as an error.
Richard Smitha6b8b2c2011-10-10 18:28:20 +00008727 if (MemberDecl->isBitField()) {
Douglas Gregor9d5d60f2010-04-28 22:36:06 +00008728 Diag(OC.LocEnd, diag::err_offsetof_bitfield)
8729 << MemberDecl->getDeclName()
8730 << SourceRange(BuiltinLoc, RParenLoc);
8731 Diag(MemberDecl->getLocation(), diag::note_bitfield_decl);
8732 return ExprError();
8733 }
Eli Friedman19410a72010-08-05 10:11:36 +00008734
8735 RecordDecl *Parent = MemberDecl->getParent();
Francois Pichet87c2e122010-11-21 06:08:52 +00008736 if (IndirectMemberDecl)
8737 Parent = cast<RecordDecl>(IndirectMemberDecl->getDeclContext());
Eli Friedman19410a72010-08-05 10:11:36 +00008738
Douglas Gregorcc8a5d52010-04-29 00:18:15 +00008739 // If the member was found in a base class, introduce OffsetOfNodes for
8740 // the base class indirections.
8741 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
8742 /*DetectVirtual=*/false);
Eli Friedman19410a72010-08-05 10:11:36 +00008743 if (IsDerivedFrom(CurrentType, Context.getTypeDeclType(Parent), Paths)) {
Douglas Gregorcc8a5d52010-04-29 00:18:15 +00008744 CXXBasePath &Path = Paths.front();
8745 for (CXXBasePath::iterator B = Path.begin(), BEnd = Path.end();
8746 B != BEnd; ++B)
8747 Comps.push_back(OffsetOfNode(B->Base));
8748 }
Eli Friedman19410a72010-08-05 10:11:36 +00008749
Francois Pichet87c2e122010-11-21 06:08:52 +00008750 if (IndirectMemberDecl) {
8751 for (IndirectFieldDecl::chain_iterator FI =
8752 IndirectMemberDecl->chain_begin(),
8753 FEnd = IndirectMemberDecl->chain_end(); FI != FEnd; FI++) {
8754 assert(isa<FieldDecl>(*FI));
8755 Comps.push_back(OffsetOfNode(OC.LocStart,
8756 cast<FieldDecl>(*FI), OC.LocEnd));
8757 }
8758 } else
Douglas Gregor8ecdb652010-04-28 22:16:22 +00008759 Comps.push_back(OffsetOfNode(OC.LocStart, MemberDecl, OC.LocEnd));
Francois Pichet87c2e122010-11-21 06:08:52 +00008760
Douglas Gregor8ecdb652010-04-28 22:16:22 +00008761 CurrentType = MemberDecl->getType().getNonReferenceType();
8762 }
8763
8764 return Owned(OffsetOfExpr::Create(Context, Context.getSizeType(), BuiltinLoc,
8765 TInfo, Comps.data(), Comps.size(),
8766 Exprs.data(), Exprs.size(), RParenLoc));
8767}
Mike Stumpeed9cac2009-02-19 03:04:26 +00008768
John McCall60d7b3a2010-08-24 06:29:42 +00008769ExprResult Sema::ActOnBuiltinOffsetOf(Scope *S,
John McCall2cd11fe2010-10-12 02:09:17 +00008770 SourceLocation BuiltinLoc,
8771 SourceLocation TypeLoc,
Richard Trieuccd891a2011-09-09 01:45:06 +00008772 ParsedType ParsedArgTy,
John McCall2cd11fe2010-10-12 02:09:17 +00008773 OffsetOfComponent *CompPtr,
8774 unsigned NumComponents,
Richard Trieuccd891a2011-09-09 01:45:06 +00008775 SourceLocation RParenLoc) {
John McCall2cd11fe2010-10-12 02:09:17 +00008776
Douglas Gregor8ecdb652010-04-28 22:16:22 +00008777 TypeSourceInfo *ArgTInfo;
Richard Trieuccd891a2011-09-09 01:45:06 +00008778 QualType ArgTy = GetTypeFromParser(ParsedArgTy, &ArgTInfo);
Douglas Gregor8ecdb652010-04-28 22:16:22 +00008779 if (ArgTy.isNull())
8780 return ExprError();
8781
Eli Friedman5a15dc12010-08-05 10:15:45 +00008782 if (!ArgTInfo)
8783 ArgTInfo = Context.getTrivialTypeSourceInfo(ArgTy, TypeLoc);
8784
8785 return BuildBuiltinOffsetOf(BuiltinLoc, ArgTInfo, CompPtr, NumComponents,
Richard Trieuccd891a2011-09-09 01:45:06 +00008786 RParenLoc);
Chris Lattner73d0d4f2007-08-30 17:45:32 +00008787}
8788
8789
John McCall60d7b3a2010-08-24 06:29:42 +00008790ExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc,
John McCall2cd11fe2010-10-12 02:09:17 +00008791 Expr *CondExpr,
8792 Expr *LHSExpr, Expr *RHSExpr,
8793 SourceLocation RPLoc) {
Steve Naroffd04fdd52007-08-03 21:21:27 +00008794 assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)");
8795
John McCallf89e55a2010-11-18 06:31:45 +00008796 ExprValueKind VK = VK_RValue;
8797 ExprObjectKind OK = OK_Ordinary;
Sebastian Redl28507842009-02-26 14:39:58 +00008798 QualType resType;
Douglas Gregorce940492009-09-25 04:25:58 +00008799 bool ValueDependent = false;
Douglas Gregorc9ecc572009-05-19 22:43:30 +00008800 if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) {
Sebastian Redl28507842009-02-26 14:39:58 +00008801 resType = Context.DependentTy;
Douglas Gregorce940492009-09-25 04:25:58 +00008802 ValueDependent = true;
Sebastian Redl28507842009-02-26 14:39:58 +00008803 } else {
8804 // The conditional expression is required to be a constant expression.
8805 llvm::APSInt condEval(32);
Richard Smith282e7e62012-02-04 09:53:13 +00008806 ExprResult CondICE = VerifyIntegerConstantExpression(CondExpr, &condEval,
8807 PDiag(diag::err_typecheck_choose_expr_requires_constant), false);
8808 if (CondICE.isInvalid())
8809 return ExprError();
8810 CondExpr = CondICE.take();
Steve Naroffd04fdd52007-08-03 21:21:27 +00008811
Sebastian Redl28507842009-02-26 14:39:58 +00008812 // If the condition is > zero, then the AST type is the same as the LSHExpr.
John McCallf89e55a2010-11-18 06:31:45 +00008813 Expr *ActiveExpr = condEval.getZExtValue() ? LHSExpr : RHSExpr;
8814
8815 resType = ActiveExpr->getType();
8816 ValueDependent = ActiveExpr->isValueDependent();
8817 VK = ActiveExpr->getValueKind();
8818 OK = ActiveExpr->getObjectKind();
Sebastian Redl28507842009-02-26 14:39:58 +00008819 }
8820
Sebastian Redlf53597f2009-03-15 17:47:39 +00008821 return Owned(new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr,
John McCallf89e55a2010-11-18 06:31:45 +00008822 resType, VK, OK, RPLoc,
Douglas Gregorce940492009-09-25 04:25:58 +00008823 resType->isDependentType(),
8824 ValueDependent));
Steve Naroffd04fdd52007-08-03 21:21:27 +00008825}
8826
Steve Naroff4eb206b2008-09-03 18:15:37 +00008827//===----------------------------------------------------------------------===//
8828// Clang Extensions.
8829//===----------------------------------------------------------------------===//
8830
8831/// ActOnBlockStart - This callback is invoked when a block literal is started.
Richard Trieuccd891a2011-09-09 01:45:06 +00008832void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *CurScope) {
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +00008833 BlockDecl *Block = BlockDecl::Create(Context, CurContext, CaretLoc);
Richard Trieuccd891a2011-09-09 01:45:06 +00008834 PushBlockScope(CurScope, Block);
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +00008835 CurContext->addDecl(Block);
Richard Trieuccd891a2011-09-09 01:45:06 +00008836 if (CurScope)
8837 PushDeclContext(CurScope, Block);
Fariborz Jahaniana729da22010-07-09 18:44:02 +00008838 else
8839 CurContext = Block;
John McCall538773c2011-11-11 03:19:12 +00008840
Eli Friedman84b007f2012-01-26 03:00:14 +00008841 getCurBlock()->HasImplicitReturnType = true;
8842
John McCall538773c2011-11-11 03:19:12 +00008843 // Enter a new evaluation context to insulate the block from any
8844 // cleanups from the enclosing full-expression.
8845 PushExpressionEvaluationContext(PotentiallyEvaluated);
Steve Naroff090276f2008-10-10 01:28:17 +00008846}
8847
Mike Stump98eb8a72009-02-04 22:31:32 +00008848void Sema::ActOnBlockArguments(Declarator &ParamInfo, Scope *CurScope) {
Mike Stumpaf199f32009-05-07 18:43:07 +00008849 assert(ParamInfo.getIdentifier()==0 && "block-id should have no identifier!");
John McCall711c52b2011-01-05 12:14:39 +00008850 assert(ParamInfo.getContext() == Declarator::BlockLiteralContext);
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +00008851 BlockScopeInfo *CurBlock = getCurBlock();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00008852
John McCallbf1a0282010-06-04 23:28:52 +00008853 TypeSourceInfo *Sig = GetTypeForDeclarator(ParamInfo, CurScope);
John McCallbf1a0282010-06-04 23:28:52 +00008854 QualType T = Sig->getType();
Mike Stump98eb8a72009-02-04 22:31:32 +00008855
John McCall711c52b2011-01-05 12:14:39 +00008856 // GetTypeForDeclarator always produces a function type for a block
8857 // literal signature. Furthermore, it is always a FunctionProtoType
8858 // unless the function was written with a typedef.
8859 assert(T->isFunctionType() &&
8860 "GetTypeForDeclarator made a non-function block signature");
8861
8862 // Look for an explicit signature in that function type.
8863 FunctionProtoTypeLoc ExplicitSignature;
8864
8865 TypeLoc tmp = Sig->getTypeLoc().IgnoreParens();
8866 if (isa<FunctionProtoTypeLoc>(tmp)) {
8867 ExplicitSignature = cast<FunctionProtoTypeLoc>(tmp);
8868
8869 // Check whether that explicit signature was synthesized by
8870 // GetTypeForDeclarator. If so, don't save that as part of the
8871 // written signature.
Abramo Bagnara796aa442011-03-12 11:17:06 +00008872 if (ExplicitSignature.getLocalRangeBegin() ==
8873 ExplicitSignature.getLocalRangeEnd()) {
John McCall711c52b2011-01-05 12:14:39 +00008874 // This would be much cheaper if we stored TypeLocs instead of
8875 // TypeSourceInfos.
8876 TypeLoc Result = ExplicitSignature.getResultLoc();
8877 unsigned Size = Result.getFullDataSize();
8878 Sig = Context.CreateTypeSourceInfo(Result.getType(), Size);
8879 Sig->getTypeLoc().initializeFullCopy(Result, Size);
8880
8881 ExplicitSignature = FunctionProtoTypeLoc();
8882 }
John McCall82dc0092010-06-04 11:21:44 +00008883 }
Mike Stump1eb44332009-09-09 15:08:12 +00008884
John McCall711c52b2011-01-05 12:14:39 +00008885 CurBlock->TheDecl->setSignatureAsWritten(Sig);
8886 CurBlock->FunctionType = T;
8887
8888 const FunctionType *Fn = T->getAs<FunctionType>();
8889 QualType RetTy = Fn->getResultType();
8890 bool isVariadic =
8891 (isa<FunctionProtoType>(Fn) && cast<FunctionProtoType>(Fn)->isVariadic());
8892
John McCallc71a4912010-06-04 19:02:56 +00008893 CurBlock->TheDecl->setIsVariadic(isVariadic);
Douglas Gregora873dfc2010-02-03 00:27:59 +00008894
John McCall82dc0092010-06-04 11:21:44 +00008895 // Don't allow returning a objc interface by value.
8896 if (RetTy->isObjCObjectType()) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00008897 Diag(ParamInfo.getLocStart(),
John McCall82dc0092010-06-04 11:21:44 +00008898 diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy;
8899 return;
8900 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00008901
John McCall82dc0092010-06-04 11:21:44 +00008902 // Context.DependentTy is used as a placeholder for a missing block
John McCallc71a4912010-06-04 19:02:56 +00008903 // return type. TODO: what should we do with declarators like:
8904 // ^ * { ... }
8905 // If the answer is "apply template argument deduction"....
Fariborz Jahanian05865202011-12-03 17:47:53 +00008906 if (RetTy != Context.DependentTy) {
John McCall82dc0092010-06-04 11:21:44 +00008907 CurBlock->ReturnType = RetTy;
Fariborz Jahanian05865202011-12-03 17:47:53 +00008908 CurBlock->TheDecl->setBlockMissingReturnType(false);
Eli Friedman84b007f2012-01-26 03:00:14 +00008909 CurBlock->HasImplicitReturnType = false;
Fariborz Jahanian05865202011-12-03 17:47:53 +00008910 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00008911
John McCall82dc0092010-06-04 11:21:44 +00008912 // Push block parameters from the declarator if we had them.
Chris Lattner5f9e2722011-07-23 10:55:15 +00008913 SmallVector<ParmVarDecl*, 8> Params;
John McCall711c52b2011-01-05 12:14:39 +00008914 if (ExplicitSignature) {
8915 for (unsigned I = 0, E = ExplicitSignature.getNumArgs(); I != E; ++I) {
8916 ParmVarDecl *Param = ExplicitSignature.getArg(I);
Fariborz Jahanian9a66c302010-02-12 21:53:14 +00008917 if (Param->getIdentifier() == 0 &&
8918 !Param->isImplicit() &&
8919 !Param->isInvalidDecl() &&
David Blaikie4e4d0842012-03-11 07:00:24 +00008920 !getLangOpts().CPlusPlus)
Fariborz Jahanian9a66c302010-02-12 21:53:14 +00008921 Diag(Param->getLocation(), diag::err_parameter_name_omitted);
John McCallc71a4912010-06-04 19:02:56 +00008922 Params.push_back(Param);
Fariborz Jahanian9a66c302010-02-12 21:53:14 +00008923 }
John McCall82dc0092010-06-04 11:21:44 +00008924
8925 // Fake up parameter variables if we have a typedef, like
8926 // ^ fntype { ... }
8927 } else if (const FunctionProtoType *Fn = T->getAs<FunctionProtoType>()) {
8928 for (FunctionProtoType::arg_type_iterator
8929 I = Fn->arg_type_begin(), E = Fn->arg_type_end(); I != E; ++I) {
8930 ParmVarDecl *Param =
8931 BuildParmVarDeclForTypedef(CurBlock->TheDecl,
Daniel Dunbar96a00142012-03-09 18:35:03 +00008932 ParamInfo.getLocStart(),
John McCall82dc0092010-06-04 11:21:44 +00008933 *I);
John McCallc71a4912010-06-04 19:02:56 +00008934 Params.push_back(Param);
John McCall82dc0092010-06-04 11:21:44 +00008935 }
Steve Naroff4eb206b2008-09-03 18:15:37 +00008936 }
John McCall82dc0092010-06-04 11:21:44 +00008937
John McCallc71a4912010-06-04 19:02:56 +00008938 // Set the parameters on the block decl.
Douglas Gregor82aa7132010-11-01 18:37:59 +00008939 if (!Params.empty()) {
David Blaikie4278c652011-09-21 18:16:56 +00008940 CurBlock->TheDecl->setParams(Params);
Douglas Gregor82aa7132010-11-01 18:37:59 +00008941 CheckParmsForFunctionDef(CurBlock->TheDecl->param_begin(),
8942 CurBlock->TheDecl->param_end(),
8943 /*CheckParameterNames=*/false);
8944 }
8945
John McCall82dc0092010-06-04 11:21:44 +00008946 // Finally we can process decl attributes.
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00008947 ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo);
John McCall053f4bd2010-03-22 09:20:08 +00008948
John McCall82dc0092010-06-04 11:21:44 +00008949 // Put the parameter variables in scope. We can bail out immediately
8950 // if we don't have any.
John McCallc71a4912010-06-04 19:02:56 +00008951 if (Params.empty())
John McCall82dc0092010-06-04 11:21:44 +00008952 return;
8953
Steve Naroff090276f2008-10-10 01:28:17 +00008954 for (BlockDecl::param_iterator AI = CurBlock->TheDecl->param_begin(),
John McCall7a9813c2010-01-22 00:28:27 +00008955 E = CurBlock->TheDecl->param_end(); AI != E; ++AI) {
8956 (*AI)->setOwningFunction(CurBlock->TheDecl);
8957
Steve Naroff090276f2008-10-10 01:28:17 +00008958 // If this has an identifier, add it to the scope stack.
John McCall053f4bd2010-03-22 09:20:08 +00008959 if ((*AI)->getIdentifier()) {
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00008960 CheckShadow(CurBlock->TheScope, *AI);
John McCall053f4bd2010-03-22 09:20:08 +00008961
Steve Naroff090276f2008-10-10 01:28:17 +00008962 PushOnScopeChains(*AI, CurBlock->TheScope);
John McCall053f4bd2010-03-22 09:20:08 +00008963 }
John McCall7a9813c2010-01-22 00:28:27 +00008964 }
Steve Naroff4eb206b2008-09-03 18:15:37 +00008965}
8966
8967/// ActOnBlockError - If there is an error parsing a block, this callback
8968/// is invoked to pop the information about the block from the action impl.
8969void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) {
John McCall538773c2011-11-11 03:19:12 +00008970 // Leave the expression-evaluation context.
8971 DiscardCleanupsInEvaluationContext();
8972 PopExpressionEvaluationContext();
8973
Steve Naroff4eb206b2008-09-03 18:15:37 +00008974 // Pop off CurBlock, handle nested blocks.
Chris Lattner5c59e2b2009-04-21 22:38:46 +00008975 PopDeclContext();
Eli Friedmanec9ea722012-01-05 03:35:19 +00008976 PopFunctionScopeInfo();
Steve Naroff4eb206b2008-09-03 18:15:37 +00008977}
8978
8979/// ActOnBlockStmtExpr - This is called when the body of a block statement
8980/// literal was successfully completed. ^(int x){...}
John McCall60d7b3a2010-08-24 06:29:42 +00008981ExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc,
Chris Lattnere476bdc2011-02-17 23:58:47 +00008982 Stmt *Body, Scope *CurScope) {
Chris Lattner9af55002009-03-27 04:18:06 +00008983 // If blocks are disabled, emit an error.
8984 if (!LangOpts.Blocks)
8985 Diag(CaretLoc, diag::err_blocks_disable);
Mike Stump1eb44332009-09-09 15:08:12 +00008986
John McCall538773c2011-11-11 03:19:12 +00008987 // Leave the expression-evaluation context.
John McCall1e5bc4f2012-03-08 22:00:17 +00008988 if (hasAnyUnrecoverableErrorsInThisFunction())
8989 DiscardCleanupsInEvaluationContext();
John McCall538773c2011-11-11 03:19:12 +00008990 assert(!ExprNeedsCleanups && "cleanups within block not correctly bound!");
8991 PopExpressionEvaluationContext();
8992
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +00008993 BlockScopeInfo *BSI = cast<BlockScopeInfo>(FunctionScopes.back());
Fariborz Jahaniana729da22010-07-09 18:44:02 +00008994
Steve Naroff090276f2008-10-10 01:28:17 +00008995 PopDeclContext();
8996
Steve Naroff4eb206b2008-09-03 18:15:37 +00008997 QualType RetTy = Context.VoidTy;
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +00008998 if (!BSI->ReturnType.isNull())
8999 RetTy = BSI->ReturnType;
Mike Stumpeed9cac2009-02-19 03:04:26 +00009000
Mike Stump56925862009-07-28 22:04:01 +00009001 bool NoReturn = BSI->TheDecl->getAttr<NoReturnAttr>();
Steve Naroff4eb206b2008-09-03 18:15:37 +00009002 QualType BlockTy;
John McCallc71a4912010-06-04 19:02:56 +00009003
John McCall469a1eb2011-02-02 13:00:07 +00009004 // Set the captured variables on the block.
Eli Friedmanb69b42c2012-01-11 02:36:31 +00009005 // FIXME: Share capture structure between BlockDecl and CapturingScopeInfo!
9006 SmallVector<BlockDecl::Capture, 4> Captures;
9007 for (unsigned i = 0, e = BSI->Captures.size(); i != e; i++) {
9008 CapturingScopeInfo::Capture &Cap = BSI->Captures[i];
9009 if (Cap.isThisCapture())
9010 continue;
Eli Friedmanb942cb22012-02-03 22:47:37 +00009011 BlockDecl::Capture NewCap(Cap.getVariable(), Cap.isBlockCapture(),
Eli Friedmanb69b42c2012-01-11 02:36:31 +00009012 Cap.isNested(), Cap.getCopyExpr());
9013 Captures.push_back(NewCap);
9014 }
9015 BSI->TheDecl->setCaptures(Context, Captures.begin(), Captures.end(),
9016 BSI->CXXThisCaptureIndex != 0);
John McCall469a1eb2011-02-02 13:00:07 +00009017
John McCallc71a4912010-06-04 19:02:56 +00009018 // If the user wrote a function type in some form, try to use that.
9019 if (!BSI->FunctionType.isNull()) {
9020 const FunctionType *FTy = BSI->FunctionType->getAs<FunctionType>();
9021
9022 FunctionType::ExtInfo Ext = FTy->getExtInfo();
9023 if (NoReturn && !Ext.getNoReturn()) Ext = Ext.withNoReturn(true);
9024
9025 // Turn protoless block types into nullary block types.
9026 if (isa<FunctionNoProtoType>(FTy)) {
John McCalle23cf432010-12-14 08:05:40 +00009027 FunctionProtoType::ExtProtoInfo EPI;
9028 EPI.ExtInfo = Ext;
9029 BlockTy = Context.getFunctionType(RetTy, 0, 0, EPI);
John McCallc71a4912010-06-04 19:02:56 +00009030
9031 // Otherwise, if we don't need to change anything about the function type,
9032 // preserve its sugar structure.
9033 } else if (FTy->getResultType() == RetTy &&
9034 (!NoReturn || FTy->getNoReturnAttr())) {
9035 BlockTy = BSI->FunctionType;
9036
9037 // Otherwise, make the minimal modifications to the function type.
9038 } else {
9039 const FunctionProtoType *FPT = cast<FunctionProtoType>(FTy);
John McCalle23cf432010-12-14 08:05:40 +00009040 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
9041 EPI.TypeQuals = 0; // FIXME: silently?
9042 EPI.ExtInfo = Ext;
John McCallc71a4912010-06-04 19:02:56 +00009043 BlockTy = Context.getFunctionType(RetTy,
9044 FPT->arg_type_begin(),
9045 FPT->getNumArgs(),
John McCalle23cf432010-12-14 08:05:40 +00009046 EPI);
John McCallc71a4912010-06-04 19:02:56 +00009047 }
9048
9049 // If we don't have a function type, just build one from nothing.
9050 } else {
John McCalle23cf432010-12-14 08:05:40 +00009051 FunctionProtoType::ExtProtoInfo EPI;
John McCallf85e1932011-06-15 23:02:42 +00009052 EPI.ExtInfo = FunctionType::ExtInfo().withNoReturn(NoReturn);
John McCalle23cf432010-12-14 08:05:40 +00009053 BlockTy = Context.getFunctionType(RetTy, 0, 0, EPI);
John McCallc71a4912010-06-04 19:02:56 +00009054 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00009055
John McCallc71a4912010-06-04 19:02:56 +00009056 DiagnoseUnusedParameters(BSI->TheDecl->param_begin(),
9057 BSI->TheDecl->param_end());
Steve Naroff4eb206b2008-09-03 18:15:37 +00009058 BlockTy = Context.getBlockPointerType(BlockTy);
Mike Stumpeed9cac2009-02-19 03:04:26 +00009059
Chris Lattner17a78302009-04-19 05:28:12 +00009060 // If needed, diagnose invalid gotos and switches in the block.
John McCallf85e1932011-06-15 23:02:42 +00009061 if (getCurFunction()->NeedsScopeChecking() &&
9062 !hasAnyUnrecoverableErrorsInThisFunction())
John McCall9ae2f072010-08-23 23:25:46 +00009063 DiagnoseInvalidJumps(cast<CompoundStmt>(Body));
Mike Stump1eb44332009-09-09 15:08:12 +00009064
Chris Lattnere476bdc2011-02-17 23:58:47 +00009065 BSI->TheDecl->setBody(cast<CompoundStmt>(Body));
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00009066
Fariborz Jahanian4e7c7f22011-07-11 18:04:54 +00009067 for (BlockDecl::capture_const_iterator ci = BSI->TheDecl->capture_begin(),
9068 ce = BSI->TheDecl->capture_end(); ci != ce; ++ci) {
9069 const VarDecl *variable = ci->getVariable();
9070 QualType T = variable->getType();
9071 QualType::DestructionKind destructKind = T.isDestructedType();
9072 if (destructKind != QualType::DK_none)
9073 getCurFunction()->setHasBranchProtectedScope();
9074 }
9075
Douglas Gregorf8b7f712011-09-06 20:46:03 +00009076 computeNRVO(Body, getCurBlock());
9077
Benjamin Kramerd2486192011-07-12 14:11:05 +00009078 BlockExpr *Result = new (Context) BlockExpr(BSI->TheDecl, BlockTy);
9079 const AnalysisBasedWarnings::Policy &WP = AnalysisWarnings.getDefaultPolicy();
Eli Friedmanec9ea722012-01-05 03:35:19 +00009080 PopFunctionScopeInfo(&WP, Result->getBlockDecl(), Result);
Benjamin Kramerd2486192011-07-12 14:11:05 +00009081
John McCall80ee6e82011-11-10 05:35:25 +00009082 // If the block isn't obviously global, i.e. it captures anything at
9083 // all, mark this full-expression as needing a cleanup.
9084 if (Result->getBlockDecl()->hasCaptures()) {
9085 ExprCleanupObjects.push_back(Result->getBlockDecl());
9086 ExprNeedsCleanups = true;
9087 }
Fariborz Jahanian27949f62012-03-06 18:41:35 +00009088
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +00009089 return Owned(Result);
Steve Naroff4eb206b2008-09-03 18:15:37 +00009090}
9091
John McCall60d7b3a2010-08-24 06:29:42 +00009092ExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc,
Richard Trieuccd891a2011-09-09 01:45:06 +00009093 Expr *E, ParsedType Ty,
Sebastian Redlf53597f2009-03-15 17:47:39 +00009094 SourceLocation RPLoc) {
Abramo Bagnara2cad9002010-08-10 10:06:15 +00009095 TypeSourceInfo *TInfo;
Richard Trieuccd891a2011-09-09 01:45:06 +00009096 GetTypeFromParser(Ty, &TInfo);
9097 return BuildVAArgExpr(BuiltinLoc, E, TInfo, RPLoc);
Abramo Bagnara2cad9002010-08-10 10:06:15 +00009098}
9099
John McCall60d7b3a2010-08-24 06:29:42 +00009100ExprResult Sema::BuildVAArgExpr(SourceLocation BuiltinLoc,
John McCallf89e55a2010-11-18 06:31:45 +00009101 Expr *E, TypeSourceInfo *TInfo,
9102 SourceLocation RPLoc) {
Chris Lattner0d20b8a2009-04-05 15:49:53 +00009103 Expr *OrigExpr = E;
Mike Stump1eb44332009-09-09 15:08:12 +00009104
Eli Friedmanc34bcde2008-08-09 23:32:40 +00009105 // Get the va_list type
9106 QualType VaListType = Context.getBuiltinVaListType();
Eli Friedman5c091ba2009-05-16 12:46:54 +00009107 if (VaListType->isArrayType()) {
9108 // Deal with implicit array decay; for example, on x86-64,
9109 // va_list is an array, but it's supposed to decay to
9110 // a pointer for va_arg.
Eli Friedmanc34bcde2008-08-09 23:32:40 +00009111 VaListType = Context.getArrayDecayedType(VaListType);
Eli Friedman5c091ba2009-05-16 12:46:54 +00009112 // Make sure the input expression also decays appropriately.
John Wiegley429bb272011-04-08 18:41:53 +00009113 ExprResult Result = UsualUnaryConversions(E);
9114 if (Result.isInvalid())
9115 return ExprError();
9116 E = Result.take();
Eli Friedman5c091ba2009-05-16 12:46:54 +00009117 } else {
9118 // Otherwise, the va_list argument must be an l-value because
9119 // it is modified by va_arg.
Mike Stump1eb44332009-09-09 15:08:12 +00009120 if (!E->isTypeDependent() &&
Douglas Gregordd027302009-05-19 23:10:31 +00009121 CheckForModifiableLvalue(E, BuiltinLoc, *this))
Eli Friedman5c091ba2009-05-16 12:46:54 +00009122 return ExprError();
9123 }
Eli Friedmanc34bcde2008-08-09 23:32:40 +00009124
Douglas Gregordd027302009-05-19 23:10:31 +00009125 if (!E->isTypeDependent() &&
9126 !Context.hasSameType(VaListType, E->getType())) {
Sebastian Redlf53597f2009-03-15 17:47:39 +00009127 return ExprError(Diag(E->getLocStart(),
9128 diag::err_first_argument_to_va_arg_not_of_type_va_list)
Chris Lattner0d20b8a2009-04-05 15:49:53 +00009129 << OrigExpr->getType() << E->getSourceRange());
Chris Lattner9dc8f192009-04-05 00:59:53 +00009130 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00009131
David Majnemer0adde122011-06-14 05:17:32 +00009132 if (!TInfo->getType()->isDependentType()) {
9133 if (RequireCompleteType(TInfo->getTypeLoc().getBeginLoc(), TInfo->getType(),
9134 PDiag(diag::err_second_parameter_to_va_arg_incomplete)
9135 << TInfo->getTypeLoc().getSourceRange()))
9136 return ExprError();
David Majnemerdb11b012011-06-13 06:37:03 +00009137
David Majnemer0adde122011-06-14 05:17:32 +00009138 if (RequireNonAbstractType(TInfo->getTypeLoc().getBeginLoc(),
9139 TInfo->getType(),
9140 PDiag(diag::err_second_parameter_to_va_arg_abstract)
9141 << TInfo->getTypeLoc().getSourceRange()))
9142 return ExprError();
9143
Douglas Gregor4eb75222011-07-30 06:45:27 +00009144 if (!TInfo->getType().isPODType(Context)) {
David Majnemer0adde122011-06-14 05:17:32 +00009145 Diag(TInfo->getTypeLoc().getBeginLoc(),
Douglas Gregor4eb75222011-07-30 06:45:27 +00009146 TInfo->getType()->isObjCLifetimeType()
9147 ? diag::warn_second_parameter_to_va_arg_ownership_qualified
9148 : diag::warn_second_parameter_to_va_arg_not_pod)
David Majnemer0adde122011-06-14 05:17:32 +00009149 << TInfo->getType()
9150 << TInfo->getTypeLoc().getSourceRange();
Douglas Gregor4eb75222011-07-30 06:45:27 +00009151 }
Eli Friedman46d37c12011-07-11 21:45:59 +00009152
9153 // Check for va_arg where arguments of the given type will be promoted
9154 // (i.e. this va_arg is guaranteed to have undefined behavior).
9155 QualType PromoteType;
9156 if (TInfo->getType()->isPromotableIntegerType()) {
9157 PromoteType = Context.getPromotedIntegerType(TInfo->getType());
9158 if (Context.typesAreCompatible(PromoteType, TInfo->getType()))
9159 PromoteType = QualType();
9160 }
9161 if (TInfo->getType()->isSpecificBuiltinType(BuiltinType::Float))
9162 PromoteType = Context.DoubleTy;
9163 if (!PromoteType.isNull())
9164 Diag(TInfo->getTypeLoc().getBeginLoc(),
9165 diag::warn_second_parameter_to_va_arg_never_compatible)
9166 << TInfo->getType()
9167 << PromoteType
9168 << TInfo->getTypeLoc().getSourceRange();
David Majnemer0adde122011-06-14 05:17:32 +00009169 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00009170
Abramo Bagnara2cad9002010-08-10 10:06:15 +00009171 QualType T = TInfo->getType().getNonLValueExprType(Context);
9172 return Owned(new (Context) VAArgExpr(BuiltinLoc, E, TInfo, RPLoc, T));
Anders Carlsson7c50aca2007-10-15 20:28:48 +00009173}
9174
John McCall60d7b3a2010-08-24 06:29:42 +00009175ExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) {
Douglas Gregor2d8b2732008-11-29 04:51:27 +00009176 // The type of __null will be int or long, depending on the size of
9177 // pointers on the target.
9178 QualType Ty;
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00009179 unsigned pw = Context.getTargetInfo().getPointerWidth(0);
9180 if (pw == Context.getTargetInfo().getIntWidth())
Douglas Gregor2d8b2732008-11-29 04:51:27 +00009181 Ty = Context.IntTy;
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00009182 else if (pw == Context.getTargetInfo().getLongWidth())
Douglas Gregor2d8b2732008-11-29 04:51:27 +00009183 Ty = Context.LongTy;
Douglas Gregorbcfd1f52011-09-02 00:18:52 +00009184 else if (pw == Context.getTargetInfo().getLongLongWidth())
NAKAMURA Takumi6e5658d2011-01-19 00:11:41 +00009185 Ty = Context.LongLongTy;
9186 else {
David Blaikieb219cfc2011-09-23 05:06:16 +00009187 llvm_unreachable("I don't know size of pointer!");
NAKAMURA Takumi6e5658d2011-01-19 00:11:41 +00009188 }
Douglas Gregor2d8b2732008-11-29 04:51:27 +00009189
Sebastian Redlf53597f2009-03-15 17:47:39 +00009190 return Owned(new (Context) GNUNullExpr(Ty, TokenLoc));
Douglas Gregor2d8b2732008-11-29 04:51:27 +00009191}
9192
Sean Hunt1e3f5ba2010-04-28 23:02:27 +00009193static void MakeObjCStringLiteralFixItHint(Sema& SemaRef, QualType DstType,
Douglas Gregor849b2432010-03-31 17:46:05 +00009194 Expr *SrcExpr, FixItHint &Hint) {
David Blaikie4e4d0842012-03-11 07:00:24 +00009195 if (!SemaRef.getLangOpts().ObjC1)
Anders Carlssonb76cd3d2009-11-10 04:46:30 +00009196 return;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00009197
Anders Carlssonb76cd3d2009-11-10 04:46:30 +00009198 const ObjCObjectPointerType *PT = DstType->getAs<ObjCObjectPointerType>();
9199 if (!PT)
9200 return;
9201
9202 // Check if the destination is of type 'id'.
9203 if (!PT->isObjCIdType()) {
9204 // Check if the destination is the 'NSString' interface.
9205 const ObjCInterfaceDecl *ID = PT->getInterfaceDecl();
9206 if (!ID || !ID->getIdentifier()->isStr("NSString"))
9207 return;
9208 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00009209
John McCall4b9c2d22011-11-06 09:01:30 +00009210 // Ignore any parens, implicit casts (should only be
9211 // array-to-pointer decays), and not-so-opaque values. The last is
9212 // important for making this trigger for property assignments.
9213 SrcExpr = SrcExpr->IgnoreParenImpCasts();
9214 if (OpaqueValueExpr *OV = dyn_cast<OpaqueValueExpr>(SrcExpr))
9215 if (OV->getSourceExpr())
9216 SrcExpr = OV->getSourceExpr()->IgnoreParenImpCasts();
9217
9218 StringLiteral *SL = dyn_cast<StringLiteral>(SrcExpr);
Douglas Gregor5cee1192011-07-27 05:40:30 +00009219 if (!SL || !SL->isAscii())
Anders Carlssonb76cd3d2009-11-10 04:46:30 +00009220 return;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00009221
Douglas Gregor849b2432010-03-31 17:46:05 +00009222 Hint = FixItHint::CreateInsertion(SL->getLocStart(), "@");
Anders Carlssonb76cd3d2009-11-10 04:46:30 +00009223}
9224
Chris Lattner5cf216b2008-01-04 18:04:52 +00009225bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy,
9226 SourceLocation Loc,
9227 QualType DstType, QualType SrcType,
Douglas Gregora41a8c52010-04-22 00:20:18 +00009228 Expr *SrcExpr, AssignmentAction Action,
9229 bool *Complained) {
9230 if (Complained)
9231 *Complained = false;
9232
Chris Lattner5cf216b2008-01-04 18:04:52 +00009233 // Decode the result (notice that AST's are still created for extensions).
Douglas Gregor926df6c2011-06-11 01:09:30 +00009234 bool CheckInferredResultType = false;
Chris Lattner5cf216b2008-01-04 18:04:52 +00009235 bool isInvalid = false;
Eli Friedmanfd819782012-02-29 20:59:56 +00009236 unsigned DiagKind = 0;
Douglas Gregor849b2432010-03-31 17:46:05 +00009237 FixItHint Hint;
Anna Zaks67221552011-07-28 19:51:27 +00009238 ConversionFixItGenerator ConvHints;
9239 bool MayHaveConvFixit = false;
Richard Trieu6efd4c52011-11-23 22:32:32 +00009240 bool MayHaveFunctionDiff = false;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00009241
Chris Lattner5cf216b2008-01-04 18:04:52 +00009242 switch (ConvTy) {
Chris Lattner5cf216b2008-01-04 18:04:52 +00009243 case Compatible: return false;
Chris Lattnerb7b61152008-01-04 18:22:42 +00009244 case PointerToInt:
Chris Lattner5cf216b2008-01-04 18:04:52 +00009245 DiagKind = diag::ext_typecheck_convert_pointer_int;
Anna Zaks67221552011-07-28 19:51:27 +00009246 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this);
9247 MayHaveConvFixit = true;
Chris Lattner5cf216b2008-01-04 18:04:52 +00009248 break;
Chris Lattnerb7b61152008-01-04 18:22:42 +00009249 case IntToPointer:
9250 DiagKind = diag::ext_typecheck_convert_int_pointer;
Anna Zaks67221552011-07-28 19:51:27 +00009251 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this);
9252 MayHaveConvFixit = true;
Chris Lattnerb7b61152008-01-04 18:22:42 +00009253 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00009254 case IncompatiblePointer:
Douglas Gregor849b2432010-03-31 17:46:05 +00009255 MakeObjCStringLiteralFixItHint(*this, DstType, SrcExpr, Hint);
Chris Lattner5cf216b2008-01-04 18:04:52 +00009256 DiagKind = diag::ext_typecheck_convert_incompatible_pointer;
Douglas Gregor926df6c2011-06-11 01:09:30 +00009257 CheckInferredResultType = DstType->isObjCObjectPointerType() &&
9258 SrcType->isObjCObjectPointerType();
Anna Zaks67221552011-07-28 19:51:27 +00009259 if (Hint.isNull() && !CheckInferredResultType) {
9260 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this);
9261 }
9262 MayHaveConvFixit = true;
Chris Lattner5cf216b2008-01-04 18:04:52 +00009263 break;
Eli Friedmanf05c05d2009-03-22 23:59:44 +00009264 case IncompatiblePointerSign:
9265 DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign;
9266 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00009267 case FunctionVoidPointer:
9268 DiagKind = diag::ext_typecheck_convert_pointer_void_func;
9269 break;
John McCall86c05f32011-02-01 00:10:29 +00009270 case IncompatiblePointerDiscardsQualifiers: {
John McCall40249e72011-02-01 23:28:01 +00009271 // Perform array-to-pointer decay if necessary.
9272 if (SrcType->isArrayType()) SrcType = Context.getArrayDecayedType(SrcType);
9273
John McCall86c05f32011-02-01 00:10:29 +00009274 Qualifiers lhq = SrcType->getPointeeType().getQualifiers();
9275 Qualifiers rhq = DstType->getPointeeType().getQualifiers();
9276 if (lhq.getAddressSpace() != rhq.getAddressSpace()) {
9277 DiagKind = diag::err_typecheck_incompatible_address_space;
9278 break;
John McCallf85e1932011-06-15 23:02:42 +00009279
9280
9281 } else if (lhq.getObjCLifetime() != rhq.getObjCLifetime()) {
Argyrios Kyrtzidisb8b03132011-06-24 00:08:59 +00009282 DiagKind = diag::err_typecheck_incompatible_ownership;
John McCallf85e1932011-06-15 23:02:42 +00009283 break;
John McCall86c05f32011-02-01 00:10:29 +00009284 }
9285
9286 llvm_unreachable("unknown error case for discarding qualifiers!");
9287 // fallthrough
9288 }
Chris Lattner5cf216b2008-01-04 18:04:52 +00009289 case CompatiblePointerDiscardsQualifiers:
Douglas Gregor77a52232008-09-12 00:47:35 +00009290 // If the qualifiers lost were because we were applying the
9291 // (deprecated) C++ conversion from a string literal to a char*
9292 // (or wchar_t*), then there was no error (C++ 4.2p2). FIXME:
9293 // Ideally, this check would be performed in
John McCalle4be87e2011-01-31 23:13:11 +00009294 // checkPointerTypesForAssignment. However, that would require a
Douglas Gregor77a52232008-09-12 00:47:35 +00009295 // bit of refactoring (so that the second argument is an
9296 // expression, rather than a type), which should be done as part
John McCalle4be87e2011-01-31 23:13:11 +00009297 // of a larger effort to fix checkPointerTypesForAssignment for
Douglas Gregor77a52232008-09-12 00:47:35 +00009298 // C++ semantics.
David Blaikie4e4d0842012-03-11 07:00:24 +00009299 if (getLangOpts().CPlusPlus &&
Douglas Gregor77a52232008-09-12 00:47:35 +00009300 IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType))
9301 return false;
Chris Lattner5cf216b2008-01-04 18:04:52 +00009302 DiagKind = diag::ext_typecheck_convert_discards_qualifiers;
9303 break;
Sean Huntc9132b62009-11-08 07:46:34 +00009304 case IncompatibleNestedPointerQualifiers:
Fariborz Jahanian3451e922009-11-09 22:16:37 +00009305 DiagKind = diag::ext_nested_pointer_qualifier_mismatch;
Fariborz Jahanian36a862f2009-11-07 20:20:40 +00009306 break;
Steve Naroff1c7d0672008-09-04 15:10:53 +00009307 case IntToBlockPointer:
9308 DiagKind = diag::err_int_to_block_pointer;
9309 break;
9310 case IncompatibleBlockPointer:
Mike Stump25efa102009-04-21 22:51:42 +00009311 DiagKind = diag::err_typecheck_convert_incompatible_block_pointer;
Steve Naroff1c7d0672008-09-04 15:10:53 +00009312 break;
Steve Naroff39579072008-10-14 22:18:38 +00009313 case IncompatibleObjCQualifiedId:
Mike Stumpeed9cac2009-02-19 03:04:26 +00009314 // FIXME: Diagnose the problem in ObjCQualifiedIdTypesAreCompatible, since
Steve Naroff39579072008-10-14 22:18:38 +00009315 // it can give a more specific diagnostic.
9316 DiagKind = diag::warn_incompatible_qualified_id;
9317 break;
Anders Carlssonb0f90cc2009-01-30 23:17:46 +00009318 case IncompatibleVectors:
9319 DiagKind = diag::warn_incompatible_vectors;
9320 break;
Fariborz Jahanian04e5a252011-07-07 18:55:47 +00009321 case IncompatibleObjCWeakRef:
9322 DiagKind = diag::err_arc_weak_unavailable_assign;
9323 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00009324 case Incompatible:
9325 DiagKind = diag::err_typecheck_convert_incompatible;
Anna Zaks67221552011-07-28 19:51:27 +00009326 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this);
9327 MayHaveConvFixit = true;
Chris Lattner5cf216b2008-01-04 18:04:52 +00009328 isInvalid = true;
Richard Trieu6efd4c52011-11-23 22:32:32 +00009329 MayHaveFunctionDiff = true;
Chris Lattner5cf216b2008-01-04 18:04:52 +00009330 break;
9331 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00009332
Douglas Gregord4eea832010-04-09 00:35:39 +00009333 QualType FirstType, SecondType;
9334 switch (Action) {
9335 case AA_Assigning:
9336 case AA_Initializing:
9337 // The destination type comes first.
9338 FirstType = DstType;
9339 SecondType = SrcType;
9340 break;
Sean Hunt1e3f5ba2010-04-28 23:02:27 +00009341
Douglas Gregord4eea832010-04-09 00:35:39 +00009342 case AA_Returning:
9343 case AA_Passing:
9344 case AA_Converting:
9345 case AA_Sending:
9346 case AA_Casting:
9347 // The source type comes first.
9348 FirstType = SrcType;
9349 SecondType = DstType;
9350 break;
9351 }
Sean Hunt1e3f5ba2010-04-28 23:02:27 +00009352
Anna Zaks67221552011-07-28 19:51:27 +00009353 PartialDiagnostic FDiag = PDiag(DiagKind);
9354 FDiag << FirstType << SecondType << Action << SrcExpr->getSourceRange();
9355
9356 // If we can fix the conversion, suggest the FixIts.
9357 assert(ConvHints.isNull() || Hint.isNull());
9358 if (!ConvHints.isNull()) {
Benjamin Kramer1136ef02012-01-14 21:05:10 +00009359 for (std::vector<FixItHint>::iterator HI = ConvHints.Hints.begin(),
9360 HE = ConvHints.Hints.end(); HI != HE; ++HI)
Anna Zaks67221552011-07-28 19:51:27 +00009361 FDiag << *HI;
9362 } else {
9363 FDiag << Hint;
9364 }
9365 if (MayHaveConvFixit) { FDiag << (unsigned) (ConvHints.Kind); }
9366
Richard Trieu6efd4c52011-11-23 22:32:32 +00009367 if (MayHaveFunctionDiff)
9368 HandleFunctionTypeMismatch(FDiag, SecondType, FirstType);
9369
Anna Zaks67221552011-07-28 19:51:27 +00009370 Diag(Loc, FDiag);
9371
Richard Trieu6efd4c52011-11-23 22:32:32 +00009372 if (SecondType == Context.OverloadTy)
9373 NoteAllOverloadCandidates(OverloadExpr::find(SrcExpr).Expression,
9374 FirstType);
9375
Douglas Gregor926df6c2011-06-11 01:09:30 +00009376 if (CheckInferredResultType)
9377 EmitRelatedResultTypeNote(SrcExpr);
9378
Douglas Gregora41a8c52010-04-22 00:20:18 +00009379 if (Complained)
9380 *Complained = true;
Chris Lattner5cf216b2008-01-04 18:04:52 +00009381 return isInvalid;
9382}
Anders Carlssone21555e2008-11-30 19:50:32 +00009383
Richard Smith282e7e62012-02-04 09:53:13 +00009384ExprResult Sema::VerifyIntegerConstantExpression(Expr *E,
9385 llvm::APSInt *Result) {
9386 return VerifyIntegerConstantExpression(E, Result,
9387 PDiag(diag::err_expr_not_ice) << LangOpts.CPlusPlus);
9388}
9389
9390ExprResult Sema::VerifyIntegerConstantExpression(Expr *E, llvm::APSInt *Result,
9391 PartialDiagnostic NotIceDiag,
9392 bool AllowFold,
9393 PartialDiagnostic FoldDiag) {
Daniel Dunbar96a00142012-03-09 18:35:03 +00009394 SourceLocation DiagLoc = E->getLocStart();
Richard Smith282e7e62012-02-04 09:53:13 +00009395
David Blaikie4e4d0842012-03-11 07:00:24 +00009396 if (getLangOpts().CPlusPlus0x) {
Richard Smith282e7e62012-02-04 09:53:13 +00009397 // C++11 [expr.const]p5:
9398 // If an expression of literal class type is used in a context where an
9399 // integral constant expression is required, then that class type shall
9400 // have a single non-explicit conversion function to an integral or
9401 // unscoped enumeration type
9402 ExprResult Converted;
9403 if (NotIceDiag.getDiagID()) {
9404 Converted = ConvertToIntegralOrEnumerationType(
9405 DiagLoc, E,
9406 PDiag(diag::err_ice_not_integral),
9407 PDiag(diag::err_ice_incomplete_type),
9408 PDiag(diag::err_ice_explicit_conversion),
9409 PDiag(diag::note_ice_conversion_here),
9410 PDiag(diag::err_ice_ambiguous_conversion),
9411 PDiag(diag::note_ice_conversion_here),
9412 PDiag(0),
9413 /*AllowScopedEnumerations*/ false);
9414 } else {
9415 // The caller wants to silently enquire whether this is an ICE. Don't
9416 // produce any diagnostics if it isn't.
9417 Converted = ConvertToIntegralOrEnumerationType(
9418 DiagLoc, E, PDiag(), PDiag(), PDiag(), PDiag(),
9419 PDiag(), PDiag(), PDiag(), false);
9420 }
9421 if (Converted.isInvalid())
9422 return Converted;
9423 E = Converted.take();
9424 if (!E->getType()->isIntegralOrUnscopedEnumerationType())
9425 return ExprError();
9426 } else if (!E->getType()->isIntegralOrUnscopedEnumerationType()) {
9427 // An ICE must be of integral or unscoped enumeration type.
9428 if (NotIceDiag.getDiagID())
9429 Diag(DiagLoc, NotIceDiag) << E->getSourceRange();
9430 return ExprError();
9431 }
9432
Richard Smithdaaefc52011-12-14 23:32:26 +00009433 // Circumvent ICE checking in C++11 to avoid evaluating the expression twice
9434 // in the non-ICE case.
David Blaikie4e4d0842012-03-11 07:00:24 +00009435 if (!getLangOpts().CPlusPlus0x && E->isIntegerConstantExpr(Context)) {
Richard Smith282e7e62012-02-04 09:53:13 +00009436 if (Result)
9437 *Result = E->EvaluateKnownConstInt(Context);
9438 return Owned(E);
Eli Friedman3b5ccca2009-04-25 22:26:58 +00009439 }
9440
Anders Carlssone21555e2008-11-30 19:50:32 +00009441 Expr::EvalResult EvalResult;
Richard Smithdd1f29b2011-12-12 09:28:41 +00009442 llvm::SmallVector<PartialDiagnosticAt, 8> Notes;
9443 EvalResult.Diag = &Notes;
Anders Carlssone21555e2008-11-30 19:50:32 +00009444
Richard Smithdaaefc52011-12-14 23:32:26 +00009445 // Try to evaluate the expression, and produce diagnostics explaining why it's
9446 // not a constant expression as a side-effect.
9447 bool Folded = E->EvaluateAsRValue(EvalResult, Context) &&
9448 EvalResult.Val.isInt() && !EvalResult.HasSideEffects;
9449
9450 // In C++11, we can rely on diagnostics being produced for any expression
9451 // which is not a constant expression. If no diagnostics were produced, then
9452 // this is a constant expression.
David Blaikie4e4d0842012-03-11 07:00:24 +00009453 if (Folded && getLangOpts().CPlusPlus0x && Notes.empty()) {
Richard Smithdaaefc52011-12-14 23:32:26 +00009454 if (Result)
9455 *Result = EvalResult.Val.getInt();
Richard Smith282e7e62012-02-04 09:53:13 +00009456 return Owned(E);
9457 }
9458
9459 // If our only note is the usual "invalid subexpression" note, just point
9460 // the caret at its location rather than producing an essentially
9461 // redundant note.
9462 if (Notes.size() == 1 && Notes[0].second.getDiagID() ==
9463 diag::note_invalid_subexpr_in_const_expr) {
9464 DiagLoc = Notes[0].first;
9465 Notes.clear();
Richard Smithdaaefc52011-12-14 23:32:26 +00009466 }
9467
9468 if (!Folded || !AllowFold) {
Richard Smith282e7e62012-02-04 09:53:13 +00009469 if (NotIceDiag.getDiagID()) {
9470 Diag(DiagLoc, NotIceDiag) << E->getSourceRange();
Richard Smithdd1f29b2011-12-12 09:28:41 +00009471 for (unsigned I = 0, N = Notes.size(); I != N; ++I)
9472 Diag(Notes[I].first, Notes[I].second);
Anders Carlssone21555e2008-11-30 19:50:32 +00009473 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00009474
Richard Smith282e7e62012-02-04 09:53:13 +00009475 return ExprError();
Anders Carlssone21555e2008-11-30 19:50:32 +00009476 }
9477
Richard Smith282e7e62012-02-04 09:53:13 +00009478 if (FoldDiag.getDiagID())
9479 Diag(DiagLoc, FoldDiag) << E->getSourceRange();
9480 else
9481 Diag(DiagLoc, diag::ext_expr_not_ice)
9482 << E->getSourceRange() << LangOpts.CPlusPlus;
Richard Smith244ee7b2012-01-15 03:51:30 +00009483 for (unsigned I = 0, N = Notes.size(); I != N; ++I)
9484 Diag(Notes[I].first, Notes[I].second);
Mike Stumpeed9cac2009-02-19 03:04:26 +00009485
Anders Carlssone21555e2008-11-30 19:50:32 +00009486 if (Result)
9487 *Result = EvalResult.Val.getInt();
Richard Smith282e7e62012-02-04 09:53:13 +00009488 return Owned(E);
Anders Carlssone21555e2008-11-30 19:50:32 +00009489}
Douglas Gregore0762c92009-06-19 23:52:42 +00009490
Eli Friedmanef331b72012-01-20 01:26:23 +00009491namespace {
9492 // Handle the case where we conclude a expression which we speculatively
9493 // considered to be unevaluated is actually evaluated.
9494 class TransformToPE : public TreeTransform<TransformToPE> {
9495 typedef TreeTransform<TransformToPE> BaseTransform;
9496
9497 public:
9498 TransformToPE(Sema &SemaRef) : BaseTransform(SemaRef) { }
9499
9500 // Make sure we redo semantic analysis
9501 bool AlwaysRebuild() { return true; }
9502
Eli Friedman56ff2832012-02-06 23:29:57 +00009503 // Make sure we handle LabelStmts correctly.
9504 // FIXME: This does the right thing, but maybe we need a more general
9505 // fix to TreeTransform?
9506 StmtResult TransformLabelStmt(LabelStmt *S) {
9507 S->getDecl()->setStmt(0);
9508 return BaseTransform::TransformLabelStmt(S);
9509 }
9510
Eli Friedmanef331b72012-01-20 01:26:23 +00009511 // We need to special-case DeclRefExprs referring to FieldDecls which
9512 // are not part of a member pointer formation; normal TreeTransforming
9513 // doesn't catch this case because of the way we represent them in the AST.
9514 // FIXME: This is a bit ugly; is it really the best way to handle this
9515 // case?
9516 //
9517 // Error on DeclRefExprs referring to FieldDecls.
9518 ExprResult TransformDeclRefExpr(DeclRefExpr *E) {
9519 if (isa<FieldDecl>(E->getDecl()) &&
9520 SemaRef.ExprEvalContexts.back().Context != Sema::Unevaluated)
9521 return SemaRef.Diag(E->getLocation(),
9522 diag::err_invalid_non_static_member_use)
9523 << E->getDecl() << E->getSourceRange();
9524
9525 return BaseTransform::TransformDeclRefExpr(E);
9526 }
9527
9528 // Exception: filter out member pointer formation
9529 ExprResult TransformUnaryOperator(UnaryOperator *E) {
9530 if (E->getOpcode() == UO_AddrOf && E->getType()->isMemberPointerType())
9531 return E;
9532
9533 return BaseTransform::TransformUnaryOperator(E);
9534 }
9535
Douglas Gregore2c59132012-02-09 08:14:43 +00009536 ExprResult TransformLambdaExpr(LambdaExpr *E) {
9537 // Lambdas never need to be transformed.
9538 return E;
9539 }
Eli Friedmanef331b72012-01-20 01:26:23 +00009540 };
Eli Friedman93c878e2012-01-18 01:05:54 +00009541}
9542
Eli Friedmanef331b72012-01-20 01:26:23 +00009543ExprResult Sema::TranformToPotentiallyEvaluated(Expr *E) {
Eli Friedman72b8b1e2012-02-29 04:03:55 +00009544 assert(ExprEvalContexts.back().Context == Unevaluated &&
9545 "Should only transform unevaluated expressions");
Eli Friedmanef331b72012-01-20 01:26:23 +00009546 ExprEvalContexts.back().Context =
9547 ExprEvalContexts[ExprEvalContexts.size()-2].Context;
9548 if (ExprEvalContexts.back().Context == Unevaluated)
9549 return E;
9550 return TransformToPE(*this).TransformExpr(E);
Eli Friedman93c878e2012-01-18 01:05:54 +00009551}
9552
Douglas Gregor2afce722009-11-26 00:44:06 +00009553void
Douglas Gregorccc1b5e2012-02-21 00:37:24 +00009554Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext,
Richard Smith76f3f692012-02-22 02:04:18 +00009555 Decl *LambdaContextDecl,
9556 bool IsDecltype) {
Douglas Gregor2afce722009-11-26 00:44:06 +00009557 ExprEvalContexts.push_back(
John McCallf85e1932011-06-15 23:02:42 +00009558 ExpressionEvaluationContextRecord(NewContext,
John McCall80ee6e82011-11-10 05:35:25 +00009559 ExprCleanupObjects.size(),
Douglas Gregorccc1b5e2012-02-21 00:37:24 +00009560 ExprNeedsCleanups,
Richard Smith76f3f692012-02-22 02:04:18 +00009561 LambdaContextDecl,
9562 IsDecltype));
John McCallf85e1932011-06-15 23:02:42 +00009563 ExprNeedsCleanups = false;
Eli Friedmand2cce132012-02-02 23:15:15 +00009564 if (!MaybeODRUseExprs.empty())
9565 std::swap(MaybeODRUseExprs, ExprEvalContexts.back().SavedMaybeODRUseExprs);
Douglas Gregorac7610d2009-06-22 20:57:11 +00009566}
9567
Richard Trieu67e29332011-08-02 04:35:43 +00009568void Sema::PopExpressionEvaluationContext() {
Eli Friedman5f2987c2012-02-02 03:46:19 +00009569 ExpressionEvaluationContextRecord& Rec = ExprEvalContexts.back();
Douglas Gregorac7610d2009-06-22 20:57:11 +00009570
Douglas Gregore2c59132012-02-09 08:14:43 +00009571 if (!Rec.Lambdas.empty()) {
9572 if (Rec.Context == Unevaluated) {
9573 // C++11 [expr.prim.lambda]p2:
9574 // A lambda-expression shall not appear in an unevaluated operand
9575 // (Clause 5).
9576 for (unsigned I = 0, N = Rec.Lambdas.size(); I != N; ++I)
9577 Diag(Rec.Lambdas[I]->getLocStart(),
9578 diag::err_lambda_unevaluated_operand);
9579 } else {
9580 // Mark the capture expressions odr-used. This was deferred
9581 // during lambda expression creation.
9582 for (unsigned I = 0, N = Rec.Lambdas.size(); I != N; ++I) {
9583 LambdaExpr *Lambda = Rec.Lambdas[I];
9584 for (LambdaExpr::capture_init_iterator
9585 C = Lambda->capture_init_begin(),
9586 CEnd = Lambda->capture_init_end();
9587 C != CEnd; ++C) {
9588 MarkDeclarationsReferencedInExpr(*C);
9589 }
9590 }
9591 }
9592 }
9593
Douglas Gregor2afce722009-11-26 00:44:06 +00009594 // When are coming out of an unevaluated context, clear out any
9595 // temporaries that we may have created as part of the evaluation of
9596 // the expression in that context: they aren't relevant because they
9597 // will never be constructed.
Richard Smithf6702a32011-12-20 02:08:33 +00009598 if (Rec.Context == Unevaluated || Rec.Context == ConstantEvaluated) {
John McCall80ee6e82011-11-10 05:35:25 +00009599 ExprCleanupObjects.erase(ExprCleanupObjects.begin() + Rec.NumCleanupObjects,
9600 ExprCleanupObjects.end());
John McCallf85e1932011-06-15 23:02:42 +00009601 ExprNeedsCleanups = Rec.ParentNeedsCleanups;
Eli Friedmand2cce132012-02-02 23:15:15 +00009602 CleanupVarDeclMarking();
9603 std::swap(MaybeODRUseExprs, Rec.SavedMaybeODRUseExprs);
John McCallf85e1932011-06-15 23:02:42 +00009604 // Otherwise, merge the contexts together.
9605 } else {
9606 ExprNeedsCleanups |= Rec.ParentNeedsCleanups;
Eli Friedmand2cce132012-02-02 23:15:15 +00009607 MaybeODRUseExprs.insert(Rec.SavedMaybeODRUseExprs.begin(),
9608 Rec.SavedMaybeODRUseExprs.end());
John McCallf85e1932011-06-15 23:02:42 +00009609 }
Eli Friedman5f2987c2012-02-02 03:46:19 +00009610
9611 // Pop the current expression evaluation context off the stack.
9612 ExprEvalContexts.pop_back();
Douglas Gregorac7610d2009-06-22 20:57:11 +00009613}
Douglas Gregore0762c92009-06-19 23:52:42 +00009614
John McCallf85e1932011-06-15 23:02:42 +00009615void Sema::DiscardCleanupsInEvaluationContext() {
John McCall80ee6e82011-11-10 05:35:25 +00009616 ExprCleanupObjects.erase(
9617 ExprCleanupObjects.begin() + ExprEvalContexts.back().NumCleanupObjects,
9618 ExprCleanupObjects.end());
John McCallf85e1932011-06-15 23:02:42 +00009619 ExprNeedsCleanups = false;
Eli Friedmand2cce132012-02-02 23:15:15 +00009620 MaybeODRUseExprs.clear();
John McCallf85e1932011-06-15 23:02:42 +00009621}
9622
Eli Friedman71b8fb52012-01-21 01:01:51 +00009623ExprResult Sema::HandleExprEvaluationContextForTypeof(Expr *E) {
9624 if (!E->getType()->isVariablyModifiedType())
9625 return E;
9626 return TranformToPotentiallyEvaluated(E);
9627}
9628
Benjamin Kramer5bbc3852012-02-06 11:13:08 +00009629static bool IsPotentiallyEvaluatedContext(Sema &SemaRef) {
Douglas Gregore0762c92009-06-19 23:52:42 +00009630 // Do not mark anything as "used" within a dependent context; wait for
9631 // an instantiation.
Eli Friedman5f2987c2012-02-02 03:46:19 +00009632 if (SemaRef.CurContext->isDependentContext())
9633 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00009634
Eli Friedman5f2987c2012-02-02 03:46:19 +00009635 switch (SemaRef.ExprEvalContexts.back().Context) {
9636 case Sema::Unevaluated:
Douglas Gregorac7610d2009-06-22 20:57:11 +00009637 // We are in an expression that is not potentially evaluated; do nothing.
Eli Friedman78a54242012-01-21 04:44:06 +00009638 // (Depending on how you read the standard, we actually do need to do
9639 // something here for null pointer constants, but the standard's
9640 // definition of a null pointer constant is completely crazy.)
Eli Friedman5f2987c2012-02-02 03:46:19 +00009641 return false;
Mike Stump1eb44332009-09-09 15:08:12 +00009642
Eli Friedman5f2987c2012-02-02 03:46:19 +00009643 case Sema::ConstantEvaluated:
9644 case Sema::PotentiallyEvaluated:
Eli Friedman78a54242012-01-21 04:44:06 +00009645 // We are in a potentially evaluated expression (or a constant-expression
9646 // in C++03); we need to do implicit template instantiation, implicitly
9647 // define class members, and mark most declarations as used.
Eli Friedman5f2987c2012-02-02 03:46:19 +00009648 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00009649
Eli Friedman5f2987c2012-02-02 03:46:19 +00009650 case Sema::PotentiallyEvaluatedIfUsed:
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00009651 // Referenced declarations will only be used if the construct in the
9652 // containing expression is used.
Eli Friedman5f2987c2012-02-02 03:46:19 +00009653 return false;
Douglas Gregorac7610d2009-06-22 20:57:11 +00009654 }
Matt Beaumont-Gay4f7dcdb2012-02-02 18:35:35 +00009655 llvm_unreachable("Invalid context");
Eli Friedman5f2987c2012-02-02 03:46:19 +00009656}
9657
9658/// \brief Mark a function referenced, and check whether it is odr-used
9659/// (C++ [basic.def.odr]p2, C99 6.9p3)
9660void Sema::MarkFunctionReferenced(SourceLocation Loc, FunctionDecl *Func) {
9661 assert(Func && "No function?");
9662
9663 Func->setReferenced();
9664
Richard Smith57b9c4e2012-02-14 22:25:15 +00009665 // Don't mark this function as used multiple times, unless it's a constexpr
9666 // function which we need to instantiate.
9667 if (Func->isUsed(false) &&
9668 !(Func->isConstexpr() && !Func->getBody() &&
9669 Func->isImplicitlyInstantiable()))
Eli Friedman5f2987c2012-02-02 03:46:19 +00009670 return;
9671
9672 if (!IsPotentiallyEvaluatedContext(*this))
9673 return;
Mike Stump1eb44332009-09-09 15:08:12 +00009674
Douglas Gregore0762c92009-06-19 23:52:42 +00009675 // Note that this declaration has been used.
Eli Friedman5f2987c2012-02-02 03:46:19 +00009676 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Func)) {
Richard Smith03f68782012-02-26 07:51:39 +00009677 if (Constructor->isDefaulted() && !Constructor->isDeleted()) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009678 if (Constructor->isDefaultConstructor()) {
9679 if (Constructor->isTrivial())
9680 return;
9681 if (!Constructor->isUsed(false))
9682 DefineImplicitDefaultConstructor(Loc, Constructor);
9683 } else if (Constructor->isCopyConstructor()) {
9684 if (!Constructor->isUsed(false))
9685 DefineImplicitCopyConstructor(Loc, Constructor);
9686 } else if (Constructor->isMoveConstructor()) {
9687 if (!Constructor->isUsed(false))
9688 DefineImplicitMoveConstructor(Loc, Constructor);
9689 }
Fariborz Jahanian485f0872009-06-22 23:34:40 +00009690 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00009691
Douglas Gregor6fb745b2010-05-13 16:44:06 +00009692 MarkVTableUsed(Loc, Constructor->getParent());
Eli Friedman5f2987c2012-02-02 03:46:19 +00009693 } else if (CXXDestructorDecl *Destructor =
9694 dyn_cast<CXXDestructorDecl>(Func)) {
Richard Smith03f68782012-02-26 07:51:39 +00009695 if (Destructor->isDefaulted() && !Destructor->isDeleted() &&
9696 !Destructor->isUsed(false))
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00009697 DefineImplicitDestructor(Loc, Destructor);
Douglas Gregor6fb745b2010-05-13 16:44:06 +00009698 if (Destructor->isVirtual())
9699 MarkVTableUsed(Loc, Destructor->getParent());
Eli Friedman5f2987c2012-02-02 03:46:19 +00009700 } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(Func)) {
Richard Smith03f68782012-02-26 07:51:39 +00009701 if (MethodDecl->isDefaulted() && !MethodDecl->isDeleted() &&
9702 MethodDecl->isOverloadedOperator() &&
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00009703 MethodDecl->getOverloadedOperator() == OO_Equal) {
Sebastian Redl85ea7aa2011-08-30 19:58:05 +00009704 if (!MethodDecl->isUsed(false)) {
9705 if (MethodDecl->isCopyAssignmentOperator())
9706 DefineImplicitCopyAssignment(Loc, MethodDecl);
9707 else
9708 DefineImplicitMoveAssignment(Loc, MethodDecl);
9709 }
Douglas Gregorf6e2e022012-02-16 01:06:16 +00009710 } else if (isa<CXXConversionDecl>(MethodDecl) &&
9711 MethodDecl->getParent()->isLambda()) {
9712 CXXConversionDecl *Conversion = cast<CXXConversionDecl>(MethodDecl);
9713 if (Conversion->isLambdaToBlockPointerConversion())
9714 DefineImplicitLambdaToBlockPointerConversion(Loc, Conversion);
9715 else
9716 DefineImplicitLambdaToFunctionPointerConversion(Loc, Conversion);
Douglas Gregor6fb745b2010-05-13 16:44:06 +00009717 } else if (MethodDecl->isVirtual())
9718 MarkVTableUsed(Loc, MethodDecl->getParent());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00009719 }
John McCall15e310a2011-02-19 02:53:41 +00009720
Eli Friedman5f2987c2012-02-02 03:46:19 +00009721 // Recursive functions should be marked when used from another function.
9722 // FIXME: Is this really right?
9723 if (CurContext == Func) return;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00009724
Eli Friedman5f2987c2012-02-02 03:46:19 +00009725 // Implicit instantiation of function templates and member functions of
9726 // class templates.
9727 if (Func->isImplicitlyInstantiable()) {
9728 bool AlreadyInstantiated = false;
Richard Smith57b9c4e2012-02-14 22:25:15 +00009729 SourceLocation PointOfInstantiation = Loc;
Eli Friedman5f2987c2012-02-02 03:46:19 +00009730 if (FunctionTemplateSpecializationInfo *SpecInfo
9731 = Func->getTemplateSpecializationInfo()) {
9732 if (SpecInfo->getPointOfInstantiation().isInvalid())
9733 SpecInfo->setPointOfInstantiation(Loc);
9734 else if (SpecInfo->getTemplateSpecializationKind()
Richard Smith57b9c4e2012-02-14 22:25:15 +00009735 == TSK_ImplicitInstantiation) {
Eli Friedman5f2987c2012-02-02 03:46:19 +00009736 AlreadyInstantiated = true;
Richard Smith57b9c4e2012-02-14 22:25:15 +00009737 PointOfInstantiation = SpecInfo->getPointOfInstantiation();
9738 }
Eli Friedman5f2987c2012-02-02 03:46:19 +00009739 } else if (MemberSpecializationInfo *MSInfo
9740 = Func->getMemberSpecializationInfo()) {
9741 if (MSInfo->getPointOfInstantiation().isInvalid())
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00009742 MSInfo->setPointOfInstantiation(Loc);
Eli Friedman5f2987c2012-02-02 03:46:19 +00009743 else if (MSInfo->getTemplateSpecializationKind()
Richard Smith57b9c4e2012-02-14 22:25:15 +00009744 == TSK_ImplicitInstantiation) {
Eli Friedman5f2987c2012-02-02 03:46:19 +00009745 AlreadyInstantiated = true;
Richard Smith57b9c4e2012-02-14 22:25:15 +00009746 PointOfInstantiation = MSInfo->getPointOfInstantiation();
9747 }
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00009748 }
Mike Stump1eb44332009-09-09 15:08:12 +00009749
Richard Smith57b9c4e2012-02-14 22:25:15 +00009750 if (!AlreadyInstantiated || Func->isConstexpr()) {
Eli Friedman5f2987c2012-02-02 03:46:19 +00009751 if (isa<CXXRecordDecl>(Func->getDeclContext()) &&
9752 cast<CXXRecordDecl>(Func->getDeclContext())->isLocalClass())
Richard Smith57b9c4e2012-02-14 22:25:15 +00009753 PendingLocalImplicitInstantiations.push_back(
9754 std::make_pair(Func, PointOfInstantiation));
9755 else if (Func->isConstexpr())
Eli Friedman5f2987c2012-02-02 03:46:19 +00009756 // Do not defer instantiations of constexpr functions, to avoid the
9757 // expression evaluator needing to call back into Sema if it sees a
9758 // call to such a function.
Richard Smith57b9c4e2012-02-14 22:25:15 +00009759 InstantiateFunctionDefinition(PointOfInstantiation, Func);
Argyrios Kyrtzidis6d968362012-02-10 20:10:44 +00009760 else {
Richard Smith57b9c4e2012-02-14 22:25:15 +00009761 PendingInstantiations.push_back(std::make_pair(Func,
9762 PointOfInstantiation));
Argyrios Kyrtzidis6d968362012-02-10 20:10:44 +00009763 // Notify the consumer that a function was implicitly instantiated.
9764 Consumer.HandleCXXImplicitFunctionInstantiation(Func);
9765 }
John McCall15e310a2011-02-19 02:53:41 +00009766 }
Eli Friedman5f2987c2012-02-02 03:46:19 +00009767 } else {
9768 // Walk redefinitions, as some of them may be instantiable.
9769 for (FunctionDecl::redecl_iterator i(Func->redecls_begin()),
9770 e(Func->redecls_end()); i != e; ++i) {
9771 if (!i->isUsed(false) && i->isImplicitlyInstantiable())
9772 MarkFunctionReferenced(Loc, *i);
9773 }
Sam Weinigcce6ebc2009-09-11 03:29:30 +00009774 }
Eli Friedman5f2987c2012-02-02 03:46:19 +00009775
9776 // Keep track of used but undefined functions.
9777 if (!Func->isPure() && !Func->hasBody() &&
9778 Func->getLinkage() != ExternalLinkage) {
9779 SourceLocation &old = UndefinedInternals[Func->getCanonicalDecl()];
9780 if (old.isInvalid()) old = Loc;
9781 }
9782
9783 Func->setUsed(true);
9784}
9785
Eli Friedman3c0e80e2012-02-03 02:04:35 +00009786static void
9787diagnoseUncapturableValueReference(Sema &S, SourceLocation loc,
9788 VarDecl *var, DeclContext *DC) {
Eli Friedman0a294222012-02-07 00:15:00 +00009789 DeclContext *VarDC = var->getDeclContext();
9790
Eli Friedman3c0e80e2012-02-03 02:04:35 +00009791 // If the parameter still belongs to the translation unit, then
9792 // we're actually just using one parameter in the declaration of
9793 // the next.
9794 if (isa<ParmVarDecl>(var) &&
Eli Friedman0a294222012-02-07 00:15:00 +00009795 isa<TranslationUnitDecl>(VarDC))
Eli Friedman3c0e80e2012-02-03 02:04:35 +00009796 return;
9797
Eli Friedman0a294222012-02-07 00:15:00 +00009798 // For C code, don't diagnose about capture if we're not actually in code
9799 // right now; it's impossible to write a non-constant expression outside of
9800 // function context, so we'll get other (more useful) diagnostics later.
9801 //
9802 // For C++, things get a bit more nasty... it would be nice to suppress this
9803 // diagnostic for certain cases like using a local variable in an array bound
9804 // for a member of a local class, but the correct predicate is not obvious.
David Blaikie4e4d0842012-03-11 07:00:24 +00009805 if (!S.getLangOpts().CPlusPlus && !S.CurContext->isFunctionOrMethod())
Eli Friedman3c0e80e2012-02-03 02:04:35 +00009806 return;
9807
Eli Friedman0a294222012-02-07 00:15:00 +00009808 if (isa<CXXMethodDecl>(VarDC) &&
9809 cast<CXXRecordDecl>(VarDC->getParent())->isLambda()) {
9810 S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_lambda)
9811 << var->getIdentifier();
9812 } else if (FunctionDecl *fn = dyn_cast<FunctionDecl>(VarDC)) {
9813 S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_function)
9814 << var->getIdentifier() << fn->getDeclName();
9815 } else if (isa<BlockDecl>(VarDC)) {
9816 S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_block)
9817 << var->getIdentifier();
9818 } else {
9819 // FIXME: Is there any other context where a local variable can be
9820 // declared?
9821 S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_context)
9822 << var->getIdentifier();
9823 }
Eli Friedman3c0e80e2012-02-03 02:04:35 +00009824
Eli Friedman3c0e80e2012-02-03 02:04:35 +00009825 S.Diag(var->getLocation(), diag::note_local_variable_declared_here)
9826 << var->getIdentifier();
Eli Friedman0a294222012-02-07 00:15:00 +00009827
9828 // FIXME: Add additional diagnostic info about class etc. which prevents
9829 // capture.
Eli Friedman3c0e80e2012-02-03 02:04:35 +00009830}
9831
Douglas Gregorf8af9822012-02-12 18:42:33 +00009832/// \brief Capture the given variable in the given lambda expression.
9833static ExprResult captureInLambda(Sema &S, LambdaScopeInfo *LSI,
Douglas Gregor999713e2012-02-18 09:37:24 +00009834 VarDecl *Var, QualType FieldType,
9835 QualType DeclRefType,
9836 SourceLocation Loc) {
Douglas Gregorf8af9822012-02-12 18:42:33 +00009837 CXXRecordDecl *Lambda = LSI->Lambda;
Douglas Gregorf8af9822012-02-12 18:42:33 +00009838
Douglas Gregor1f9a5db2012-02-09 01:56:40 +00009839 // Build the non-static data member.
9840 FieldDecl *Field
9841 = FieldDecl::Create(S.Context, Lambda, Loc, Loc, 0, FieldType,
9842 S.Context.getTrivialTypeSourceInfo(FieldType, Loc),
9843 0, false, false);
9844 Field->setImplicit(true);
9845 Field->setAccess(AS_private);
Douglas Gregor20f87a42012-02-09 02:12:34 +00009846 Lambda->addDecl(Field);
Douglas Gregor1f9a5db2012-02-09 01:56:40 +00009847
9848 // C++11 [expr.prim.lambda]p21:
9849 // When the lambda-expression is evaluated, the entities that
9850 // are captured by copy are used to direct-initialize each
9851 // corresponding non-static data member of the resulting closure
9852 // object. (For array members, the array elements are
9853 // direct-initialized in increasing subscript order.) These
9854 // initializations are performed in the (unspecified) order in
9855 // which the non-static data members are declared.
Douglas Gregor1f9a5db2012-02-09 01:56:40 +00009856
Douglas Gregore2c59132012-02-09 08:14:43 +00009857 // Introduce a new evaluation context for the initialization, so
9858 // that temporaries introduced as part of the capture are retained
9859 // to be re-"exported" from the lambda expression itself.
Douglas Gregor1f9a5db2012-02-09 01:56:40 +00009860 S.PushExpressionEvaluationContext(Sema::PotentiallyEvaluated);
9861
Douglas Gregor73d90922012-02-10 09:26:04 +00009862 // C++ [expr.prim.labda]p12:
9863 // An entity captured by a lambda-expression is odr-used (3.2) in
9864 // the scope containing the lambda-expression.
John McCallf4b88a42012-03-10 09:33:50 +00009865 Expr *Ref = new (S.Context) DeclRefExpr(Var, false, DeclRefType,
9866 VK_LValue, Loc);
Eli Friedman88530d52012-03-01 21:32:56 +00009867 Var->setReferenced(true);
Douglas Gregor73d90922012-02-10 09:26:04 +00009868 Var->setUsed(true);
Douglas Gregor18fe0842012-02-09 02:45:47 +00009869
9870 // When the field has array type, create index variables for each
9871 // dimension of the array. We use these index variables to subscript
9872 // the source array, and other clients (e.g., CodeGen) will perform
9873 // the necessary iteration with these index variables.
9874 SmallVector<VarDecl *, 4> IndexVariables;
Douglas Gregor18fe0842012-02-09 02:45:47 +00009875 QualType BaseType = FieldType;
9876 QualType SizeType = S.Context.getSizeType();
Douglas Gregor9daa7bf2012-02-13 16:35:30 +00009877 LSI->ArrayIndexStarts.push_back(LSI->ArrayIndexVars.size());
Douglas Gregor18fe0842012-02-09 02:45:47 +00009878 while (const ConstantArrayType *Array
9879 = S.Context.getAsConstantArrayType(BaseType)) {
Douglas Gregor18fe0842012-02-09 02:45:47 +00009880 // Create the iteration variable for this array index.
9881 IdentifierInfo *IterationVarName = 0;
9882 {
9883 SmallString<8> Str;
9884 llvm::raw_svector_ostream OS(Str);
9885 OS << "__i" << IndexVariables.size();
9886 IterationVarName = &S.Context.Idents.get(OS.str());
9887 }
9888 VarDecl *IterationVar
9889 = VarDecl::Create(S.Context, S.CurContext, Loc, Loc,
9890 IterationVarName, SizeType,
9891 S.Context.getTrivialTypeSourceInfo(SizeType, Loc),
9892 SC_None, SC_None);
9893 IndexVariables.push_back(IterationVar);
Douglas Gregor9daa7bf2012-02-13 16:35:30 +00009894 LSI->ArrayIndexVars.push_back(IterationVar);
9895
Douglas Gregor18fe0842012-02-09 02:45:47 +00009896 // Create a reference to the iteration variable.
9897 ExprResult IterationVarRef
9898 = S.BuildDeclRefExpr(IterationVar, SizeType, VK_LValue, Loc);
9899 assert(!IterationVarRef.isInvalid() &&
9900 "Reference to invented variable cannot fail!");
9901 IterationVarRef = S.DefaultLvalueConversion(IterationVarRef.take());
9902 assert(!IterationVarRef.isInvalid() &&
9903 "Conversion of invented variable cannot fail!");
9904
9905 // Subscript the array with this iteration variable.
9906 ExprResult Subscript = S.CreateBuiltinArraySubscriptExpr(
9907 Ref, Loc, IterationVarRef.take(), Loc);
9908 if (Subscript.isInvalid()) {
9909 S.CleanupVarDeclMarking();
9910 S.DiscardCleanupsInEvaluationContext();
9911 S.PopExpressionEvaluationContext();
9912 return ExprError();
9913 }
9914
9915 Ref = Subscript.take();
9916 BaseType = Array->getElementType();
9917 }
9918
9919 // Construct the entity that we will be initializing. For an array, this
9920 // will be first element in the array, which may require several levels
9921 // of array-subscript entities.
9922 SmallVector<InitializedEntity, 4> Entities;
9923 Entities.reserve(1 + IndexVariables.size());
Douglas Gregor47736542012-02-15 16:57:26 +00009924 Entities.push_back(
9925 InitializedEntity::InitializeLambdaCapture(Var, Field, Loc));
Douglas Gregor18fe0842012-02-09 02:45:47 +00009926 for (unsigned I = 0, N = IndexVariables.size(); I != N; ++I)
9927 Entities.push_back(InitializedEntity::InitializeElement(S.Context,
9928 0,
9929 Entities.back()));
9930
Douglas Gregor1f9a5db2012-02-09 01:56:40 +00009931 InitializationKind InitKind
9932 = InitializationKind::CreateDirect(Loc, Loc, Loc);
Douglas Gregor18fe0842012-02-09 02:45:47 +00009933 InitializationSequence Init(S, Entities.back(), InitKind, &Ref, 1);
Douglas Gregor1f9a5db2012-02-09 01:56:40 +00009934 ExprResult Result(true);
Douglas Gregor18fe0842012-02-09 02:45:47 +00009935 if (!Init.Diagnose(S, Entities.back(), InitKind, &Ref, 1))
9936 Result = Init.Perform(S, Entities.back(), InitKind,
Douglas Gregor1f9a5db2012-02-09 01:56:40 +00009937 MultiExprArg(S, &Ref, 1));
9938
9939 // If this initialization requires any cleanups (e.g., due to a
9940 // default argument to a copy constructor), note that for the
9941 // lambda.
9942 if (S.ExprNeedsCleanups)
9943 LSI->ExprNeedsCleanups = true;
9944
9945 // Exit the expression evaluation context used for the capture.
9946 S.CleanupVarDeclMarking();
9947 S.DiscardCleanupsInEvaluationContext();
9948 S.PopExpressionEvaluationContext();
9949 return Result;
Douglas Gregor18fe0842012-02-09 02:45:47 +00009950}
Douglas Gregor1f9a5db2012-02-09 01:56:40 +00009951
Douglas Gregor999713e2012-02-18 09:37:24 +00009952bool Sema::tryCaptureVariable(VarDecl *Var, SourceLocation Loc,
9953 TryCaptureKind Kind, SourceLocation EllipsisLoc,
9954 bool BuildAndDiagnose,
9955 QualType &CaptureType,
9956 QualType &DeclRefType) {
9957 bool Nested = false;
Douglas Gregorf8af9822012-02-12 18:42:33 +00009958
Eli Friedmanb942cb22012-02-03 22:47:37 +00009959 DeclContext *DC = CurContext;
Douglas Gregor999713e2012-02-18 09:37:24 +00009960 if (Var->getDeclContext() == DC) return true;
9961 if (!Var->hasLocalStorage()) return true;
Eli Friedman3c0e80e2012-02-03 02:04:35 +00009962
Douglas Gregorf8af9822012-02-12 18:42:33 +00009963 bool HasBlocksAttr = Var->hasAttr<BlocksAttr>();
Eli Friedman3c0e80e2012-02-03 02:04:35 +00009964
Douglas Gregor999713e2012-02-18 09:37:24 +00009965 // Walk up the stack to determine whether we can capture the variable,
9966 // performing the "simple" checks that don't depend on type. We stop when
9967 // we've either hit the declared scope of the variable or find an existing
9968 // capture of that variable.
9969 CaptureType = Var->getType();
9970 DeclRefType = CaptureType.getNonReferenceType();
9971 bool Explicit = (Kind != TryCapture_Implicit);
9972 unsigned FunctionScopesIndex = FunctionScopes.size() - 1;
Eli Friedman3c0e80e2012-02-03 02:04:35 +00009973 do {
Eli Friedmanb942cb22012-02-03 22:47:37 +00009974 // Only block literals and lambda expressions can capture; other
Eli Friedman3c0e80e2012-02-03 02:04:35 +00009975 // scopes don't work.
Eli Friedmanb942cb22012-02-03 22:47:37 +00009976 DeclContext *ParentDC;
9977 if (isa<BlockDecl>(DC))
9978 ParentDC = DC->getParent();
9979 else if (isa<CXXMethodDecl>(DC) &&
Douglas Gregorf8af9822012-02-12 18:42:33 +00009980 cast<CXXMethodDecl>(DC)->getOverloadedOperator() == OO_Call &&
Eli Friedmanb942cb22012-02-03 22:47:37 +00009981 cast<CXXRecordDecl>(DC->getParent())->isLambda())
9982 ParentDC = DC->getParent()->getParent();
Douglas Gregorf8af9822012-02-12 18:42:33 +00009983 else {
Douglas Gregor999713e2012-02-18 09:37:24 +00009984 if (BuildAndDiagnose)
Douglas Gregorf8af9822012-02-12 18:42:33 +00009985 diagnoseUncapturableValueReference(*this, Loc, Var, DC);
Douglas Gregor999713e2012-02-18 09:37:24 +00009986 return true;
Douglas Gregorf8af9822012-02-12 18:42:33 +00009987 }
Eli Friedman3c0e80e2012-02-03 02:04:35 +00009988
Eli Friedmanb942cb22012-02-03 22:47:37 +00009989 CapturingScopeInfo *CSI =
Douglas Gregorf8af9822012-02-12 18:42:33 +00009990 cast<CapturingScopeInfo>(FunctionScopes[FunctionScopesIndex]);
Eli Friedman3c0e80e2012-02-03 02:04:35 +00009991
Eli Friedmanb942cb22012-02-03 22:47:37 +00009992 // Check whether we've already captured it.
Douglas Gregorf8af9822012-02-12 18:42:33 +00009993 if (CSI->CaptureMap.count(Var)) {
Douglas Gregor999713e2012-02-18 09:37:24 +00009994 // If we found a capture, any subcaptures are nested.
Eli Friedman3c0e80e2012-02-03 02:04:35 +00009995 Nested = true;
Douglas Gregor999713e2012-02-18 09:37:24 +00009996
9997 // Retrieve the capture type for this variable.
9998 CaptureType = CSI->getCapture(Var).getCaptureType();
9999
10000 // Compute the type of an expression that refers to this variable.
10001 DeclRefType = CaptureType.getNonReferenceType();
10002
10003 const CapturingScopeInfo::Capture &Cap = CSI->getCapture(Var);
10004 if (Cap.isCopyCapture() &&
10005 !(isa<LambdaScopeInfo>(CSI) && cast<LambdaScopeInfo>(CSI)->Mutable))
10006 DeclRefType.addConst();
Eli Friedman3c0e80e2012-02-03 02:04:35 +000010007 break;
10008 }
10009
Douglas Gregorf8af9822012-02-12 18:42:33 +000010010 bool IsBlock = isa<BlockScopeInfo>(CSI);
Douglas Gregor999713e2012-02-18 09:37:24 +000010011 bool IsLambda = !IsBlock;
Eli Friedmanb942cb22012-02-03 22:47:37 +000010012
10013 // Lambdas are not allowed to capture unnamed variables
10014 // (e.g. anonymous unions).
10015 // FIXME: The C++11 rule don't actually state this explicitly, but I'm
10016 // assuming that's the intent.
Douglas Gregorf8af9822012-02-12 18:42:33 +000010017 if (IsLambda && !Var->getDeclName()) {
Douglas Gregor999713e2012-02-18 09:37:24 +000010018 if (BuildAndDiagnose) {
Douglas Gregorf8af9822012-02-12 18:42:33 +000010019 Diag(Loc, diag::err_lambda_capture_anonymous_var);
10020 Diag(Var->getLocation(), diag::note_declared_at);
10021 }
Douglas Gregor999713e2012-02-18 09:37:24 +000010022 return true;
Eli Friedmanb942cb22012-02-03 22:47:37 +000010023 }
10024
10025 // Prohibit variably-modified types; they're difficult to deal with.
Douglas Gregor999713e2012-02-18 09:37:24 +000010026 if (Var->getType()->isVariablyModifiedType()) {
10027 if (BuildAndDiagnose) {
Douglas Gregorf8af9822012-02-12 18:42:33 +000010028 if (IsBlock)
10029 Diag(Loc, diag::err_ref_vm_type);
10030 else
10031 Diag(Loc, diag::err_lambda_capture_vm_type) << Var->getDeclName();
10032 Diag(Var->getLocation(), diag::note_previous_decl)
10033 << Var->getDeclName();
10034 }
Douglas Gregor999713e2012-02-18 09:37:24 +000010035 return true;
Eli Friedman3c0e80e2012-02-03 02:04:35 +000010036 }
10037
Eli Friedmanb942cb22012-02-03 22:47:37 +000010038 // Lambdas are not allowed to capture __block variables; they don't
10039 // support the expected semantics.
Douglas Gregorf8af9822012-02-12 18:42:33 +000010040 if (IsLambda && HasBlocksAttr) {
Douglas Gregor999713e2012-02-18 09:37:24 +000010041 if (BuildAndDiagnose) {
Douglas Gregorf8af9822012-02-12 18:42:33 +000010042 Diag(Loc, diag::err_lambda_capture_block)
10043 << Var->getDeclName();
10044 Diag(Var->getLocation(), diag::note_previous_decl)
10045 << Var->getDeclName();
10046 }
Douglas Gregor999713e2012-02-18 09:37:24 +000010047 return true;
Eli Friedmanb942cb22012-02-03 22:47:37 +000010048 }
10049
Douglas Gregorf8af9822012-02-12 18:42:33 +000010050 if (CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_None && !Explicit) {
10051 // No capture-default
Douglas Gregor999713e2012-02-18 09:37:24 +000010052 if (BuildAndDiagnose) {
Douglas Gregorf8af9822012-02-12 18:42:33 +000010053 Diag(Loc, diag::err_lambda_impcap) << Var->getDeclName();
10054 Diag(Var->getLocation(), diag::note_previous_decl)
10055 << Var->getDeclName();
10056 Diag(cast<LambdaScopeInfo>(CSI)->Lambda->getLocStart(),
10057 diag::note_lambda_decl);
10058 }
Douglas Gregor999713e2012-02-18 09:37:24 +000010059 return true;
Douglas Gregorf8af9822012-02-12 18:42:33 +000010060 }
10061
10062 FunctionScopesIndex--;
10063 DC = ParentDC;
10064 Explicit = false;
10065 } while (!Var->getDeclContext()->Equals(DC));
10066
Douglas Gregor999713e2012-02-18 09:37:24 +000010067 // Walk back down the scope stack, computing the type of the capture at
10068 // each step, checking type-specific requirements, and adding captures if
10069 // requested.
10070 for (unsigned I = ++FunctionScopesIndex, N = FunctionScopes.size(); I != N;
10071 ++I) {
10072 CapturingScopeInfo *CSI = cast<CapturingScopeInfo>(FunctionScopes[I]);
Douglas Gregor68932842012-02-18 05:51:20 +000010073
Douglas Gregor999713e2012-02-18 09:37:24 +000010074 // Compute the type of the capture and of a reference to the capture within
10075 // this scope.
10076 if (isa<BlockScopeInfo>(CSI)) {
10077 Expr *CopyExpr = 0;
10078 bool ByRef = false;
10079
10080 // Blocks are not allowed to capture arrays.
10081 if (CaptureType->isArrayType()) {
10082 if (BuildAndDiagnose) {
10083 Diag(Loc, diag::err_ref_array_type);
10084 Diag(Var->getLocation(), diag::note_previous_decl)
10085 << Var->getDeclName();
10086 }
10087 return true;
10088 }
10089
10090 if (HasBlocksAttr || CaptureType->isReferenceType()) {
10091 // Block capture by reference does not change the capture or
10092 // declaration reference types.
10093 ByRef = true;
10094 } else {
10095 // Block capture by copy introduces 'const'.
10096 CaptureType = CaptureType.getNonReferenceType().withConst();
10097 DeclRefType = CaptureType;
10098
David Blaikie4e4d0842012-03-11 07:00:24 +000010099 if (getLangOpts().CPlusPlus && BuildAndDiagnose) {
Douglas Gregor999713e2012-02-18 09:37:24 +000010100 if (const RecordType *Record = DeclRefType->getAs<RecordType>()) {
10101 // The capture logic needs the destructor, so make sure we mark it.
10102 // Usually this is unnecessary because most local variables have
10103 // their destructors marked at declaration time, but parameters are
10104 // an exception because it's technically only the call site that
10105 // actually requires the destructor.
10106 if (isa<ParmVarDecl>(Var))
10107 FinalizeVarWithDestructor(Var, Record);
10108
10109 // According to the blocks spec, the capture of a variable from
10110 // the stack requires a const copy constructor. This is not true
10111 // of the copy/move done to move a __block variable to the heap.
John McCallf4b88a42012-03-10 09:33:50 +000010112 Expr *DeclRef = new (Context) DeclRefExpr(Var, false,
Douglas Gregor999713e2012-02-18 09:37:24 +000010113 DeclRefType.withConst(),
10114 VK_LValue, Loc);
10115 ExprResult Result
10116 = PerformCopyInitialization(
10117 InitializedEntity::InitializeBlock(Var->getLocation(),
10118 CaptureType, false),
10119 Loc, Owned(DeclRef));
10120
10121 // Build a full-expression copy expression if initialization
10122 // succeeded and used a non-trivial constructor. Recover from
10123 // errors by pretending that the copy isn't necessary.
10124 if (!Result.isInvalid() &&
10125 !cast<CXXConstructExpr>(Result.get())->getConstructor()
10126 ->isTrivial()) {
10127 Result = MaybeCreateExprWithCleanups(Result);
10128 CopyExpr = Result.take();
10129 }
10130 }
10131 }
10132 }
10133
10134 // Actually capture the variable.
10135 if (BuildAndDiagnose)
10136 CSI->addCapture(Var, HasBlocksAttr, ByRef, Nested, Loc,
10137 SourceLocation(), CaptureType, CopyExpr);
10138 Nested = true;
10139 continue;
10140 }
Douglas Gregor68932842012-02-18 05:51:20 +000010141
Douglas Gregor999713e2012-02-18 09:37:24 +000010142 LambdaScopeInfo *LSI = cast<LambdaScopeInfo>(CSI);
10143
10144 // Determine whether we are capturing by reference or by value.
10145 bool ByRef = false;
10146 if (I == N - 1 && Kind != TryCapture_Implicit) {
10147 ByRef = (Kind == TryCapture_ExplicitByRef);
Eli Friedmanb942cb22012-02-03 22:47:37 +000010148 } else {
Douglas Gregor999713e2012-02-18 09:37:24 +000010149 ByRef = (LSI->ImpCaptureStyle == LambdaScopeInfo::ImpCap_LambdaByref);
Eli Friedmanb942cb22012-02-03 22:47:37 +000010150 }
Douglas Gregor999713e2012-02-18 09:37:24 +000010151
10152 // Compute the type of the field that will capture this variable.
10153 if (ByRef) {
10154 // C++11 [expr.prim.lambda]p15:
10155 // An entity is captured by reference if it is implicitly or
10156 // explicitly captured but not captured by copy. It is
10157 // unspecified whether additional unnamed non-static data
10158 // members are declared in the closure type for entities
10159 // captured by reference.
10160 //
10161 // FIXME: It is not clear whether we want to build an lvalue reference
10162 // to the DeclRefType or to CaptureType.getNonReferenceType(). GCC appears
10163 // to do the former, while EDG does the latter. Core issue 1249 will
10164 // clarify, but for now we follow GCC because it's a more permissive and
10165 // easily defensible position.
10166 CaptureType = Context.getLValueReferenceType(DeclRefType);
10167 } else {
10168 // C++11 [expr.prim.lambda]p14:
10169 // For each entity captured by copy, an unnamed non-static
10170 // data member is declared in the closure type. The
10171 // declaration order of these members is unspecified. The type
10172 // of such a data member is the type of the corresponding
10173 // captured entity if the entity is not a reference to an
10174 // object, or the referenced type otherwise. [Note: If the
10175 // captured entity is a reference to a function, the
10176 // corresponding data member is also a reference to a
10177 // function. - end note ]
10178 if (const ReferenceType *RefType = CaptureType->getAs<ReferenceType>()){
10179 if (!RefType->getPointeeType()->isFunctionType())
10180 CaptureType = RefType->getPointeeType();
Eli Friedman3c0e80e2012-02-03 02:04:35 +000010181 }
10182 }
10183
Douglas Gregor999713e2012-02-18 09:37:24 +000010184 // Capture this variable in the lambda.
10185 Expr *CopyExpr = 0;
10186 if (BuildAndDiagnose) {
10187 ExprResult Result = captureInLambda(*this, LSI, Var, CaptureType,
10188 DeclRefType, Loc);
10189 if (!Result.isInvalid())
10190 CopyExpr = Result.take();
10191 }
10192
10193 // Compute the type of a reference to this captured variable.
10194 if (ByRef)
10195 DeclRefType = CaptureType.getNonReferenceType();
10196 else {
10197 // C++ [expr.prim.lambda]p5:
10198 // The closure type for a lambda-expression has a public inline
10199 // function call operator [...]. This function call operator is
10200 // declared const (9.3.1) if and only if the lambda-expression’s
10201 // parameter-declaration-clause is not followed by mutable.
10202 DeclRefType = CaptureType.getNonReferenceType();
10203 if (!LSI->Mutable && !CaptureType->isReferenceType())
10204 DeclRefType.addConst();
10205 }
10206
10207 // Add the capture.
10208 if (BuildAndDiagnose)
10209 CSI->addCapture(Var, /*IsBlock=*/false, ByRef, Nested, Loc,
10210 EllipsisLoc, CaptureType, CopyExpr);
Eli Friedman3c0e80e2012-02-03 02:04:35 +000010211 Nested = true;
10212 }
Douglas Gregor999713e2012-02-18 09:37:24 +000010213
10214 return false;
10215}
10216
10217bool Sema::tryCaptureVariable(VarDecl *Var, SourceLocation Loc,
10218 TryCaptureKind Kind, SourceLocation EllipsisLoc) {
10219 QualType CaptureType;
10220 QualType DeclRefType;
10221 return tryCaptureVariable(Var, Loc, Kind, EllipsisLoc,
10222 /*BuildAndDiagnose=*/true, CaptureType,
10223 DeclRefType);
10224}
10225
10226QualType Sema::getCapturedDeclRefType(VarDecl *Var, SourceLocation Loc) {
10227 QualType CaptureType;
10228 QualType DeclRefType;
10229
10230 // Determine whether we can capture this variable.
10231 if (tryCaptureVariable(Var, Loc, TryCapture_Implicit, SourceLocation(),
10232 /*BuildAndDiagnose=*/false, CaptureType, DeclRefType))
10233 return QualType();
10234
10235 return DeclRefType;
Eli Friedman3c0e80e2012-02-03 02:04:35 +000010236}
10237
Eli Friedmand2cce132012-02-02 23:15:15 +000010238static void MarkVarDeclODRUsed(Sema &SemaRef, VarDecl *Var,
10239 SourceLocation Loc) {
10240 // Keep track of used but undefined variables.
Eli Friedman0cc5d402012-02-04 00:54:05 +000010241 // FIXME: We shouldn't suppress this warning for static data members.
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +000010242 if (Var->hasDefinition(SemaRef.Context) == VarDecl::DeclarationOnly &&
Eli Friedman0cc5d402012-02-04 00:54:05 +000010243 Var->getLinkage() != ExternalLinkage &&
10244 !(Var->isStaticDataMember() && Var->hasInit())) {
Eli Friedmand2cce132012-02-02 23:15:15 +000010245 SourceLocation &old = SemaRef.UndefinedInternals[Var->getCanonicalDecl()];
10246 if (old.isInvalid()) old = Loc;
10247 }
10248
Douglas Gregor999713e2012-02-18 09:37:24 +000010249 SemaRef.tryCaptureVariable(Var, Loc);
Eli Friedman3c0e80e2012-02-03 02:04:35 +000010250
Eli Friedmand2cce132012-02-02 23:15:15 +000010251 Var->setUsed(true);
10252}
10253
10254void Sema::UpdateMarkingForLValueToRValue(Expr *E) {
10255 // Per C++11 [basic.def.odr], a variable is odr-used "unless it is
10256 // an object that satisfies the requirements for appearing in a
10257 // constant expression (5.19) and the lvalue-to-rvalue conversion (4.1)
10258 // is immediately applied." This function handles the lvalue-to-rvalue
10259 // conversion part.
10260 MaybeODRUseExprs.erase(E->IgnoreParens());
10261}
10262
Eli Friedmanac626012012-02-29 03:16:56 +000010263ExprResult Sema::ActOnConstantExpression(ExprResult Res) {
10264 if (!Res.isUsable())
10265 return Res;
10266
10267 // If a constant-expression is a reference to a variable where we delay
10268 // deciding whether it is an odr-use, just assume we will apply the
10269 // lvalue-to-rvalue conversion. In the one case where this doesn't happen
10270 // (a non-type template argument), we have special handling anyway.
10271 UpdateMarkingForLValueToRValue(Res.get());
10272 return Res;
10273}
10274
Eli Friedmand2cce132012-02-02 23:15:15 +000010275void Sema::CleanupVarDeclMarking() {
10276 for (llvm::SmallPtrSetIterator<Expr*> i = MaybeODRUseExprs.begin(),
10277 e = MaybeODRUseExprs.end();
10278 i != e; ++i) {
10279 VarDecl *Var;
10280 SourceLocation Loc;
John McCallf4b88a42012-03-10 09:33:50 +000010281 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(*i)) {
Eli Friedmand2cce132012-02-02 23:15:15 +000010282 Var = cast<VarDecl>(DRE->getDecl());
10283 Loc = DRE->getLocation();
10284 } else if (MemberExpr *ME = dyn_cast<MemberExpr>(*i)) {
10285 Var = cast<VarDecl>(ME->getMemberDecl());
10286 Loc = ME->getMemberLoc();
10287 } else {
10288 llvm_unreachable("Unexpcted expression");
10289 }
10290
10291 MarkVarDeclODRUsed(*this, Var, Loc);
10292 }
10293
10294 MaybeODRUseExprs.clear();
10295}
10296
10297// Mark a VarDecl referenced, and perform the necessary handling to compute
10298// odr-uses.
10299static void DoMarkVarDeclReferenced(Sema &SemaRef, SourceLocation Loc,
10300 VarDecl *Var, Expr *E) {
Eli Friedman5f2987c2012-02-02 03:46:19 +000010301 Var->setReferenced();
10302
Eli Friedmand2cce132012-02-02 23:15:15 +000010303 if (!IsPotentiallyEvaluatedContext(SemaRef))
Eli Friedman5f2987c2012-02-02 03:46:19 +000010304 return;
10305
10306 // Implicit instantiation of static data members of class templates.
Richard Smith37ce0102012-02-15 02:42:50 +000010307 if (Var->isStaticDataMember() && Var->getInstantiatedFromStaticDataMember()) {
Eli Friedman5f2987c2012-02-02 03:46:19 +000010308 MemberSpecializationInfo *MSInfo = Var->getMemberSpecializationInfo();
10309 assert(MSInfo && "Missing member specialization information?");
Richard Smith37ce0102012-02-15 02:42:50 +000010310 bool AlreadyInstantiated = !MSInfo->getPointOfInstantiation().isInvalid();
10311 if (MSInfo->getTemplateSpecializationKind() == TSK_ImplicitInstantiation &&
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +000010312 (!AlreadyInstantiated ||
10313 Var->isUsableInConstantExpressions(SemaRef.Context))) {
Richard Smith37ce0102012-02-15 02:42:50 +000010314 if (!AlreadyInstantiated) {
10315 // This is a modification of an existing AST node. Notify listeners.
10316 if (ASTMutationListener *L = SemaRef.getASTMutationListener())
10317 L->StaticDataMemberInstantiated(Var);
10318 MSInfo->setPointOfInstantiation(Loc);
10319 }
10320 SourceLocation PointOfInstantiation = MSInfo->getPointOfInstantiation();
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +000010321 if (Var->isUsableInConstantExpressions(SemaRef.Context))
Eli Friedman5f2987c2012-02-02 03:46:19 +000010322 // Do not defer instantiations of variables which could be used in a
10323 // constant expression.
Richard Smith37ce0102012-02-15 02:42:50 +000010324 SemaRef.InstantiateStaticDataMemberDefinition(PointOfInstantiation,Var);
Eli Friedman5f2987c2012-02-02 03:46:19 +000010325 else
Richard Smith37ce0102012-02-15 02:42:50 +000010326 SemaRef.PendingInstantiations.push_back(
10327 std::make_pair(Var, PointOfInstantiation));
Eli Friedman5f2987c2012-02-02 03:46:19 +000010328 }
10329 }
10330
Eli Friedmand2cce132012-02-02 23:15:15 +000010331 // Per C++11 [basic.def.odr], a variable is odr-used "unless it is
10332 // an object that satisfies the requirements for appearing in a
10333 // constant expression (5.19) and the lvalue-to-rvalue conversion (4.1)
10334 // is immediately applied." We check the first part here, and
10335 // Sema::UpdateMarkingForLValueToRValue deals with the second part.
10336 // Note that we use the C++11 definition everywhere because nothing in
Richard Smith16581332012-03-02 04:14:40 +000010337 // C++03 depends on whether we get the C++03 version correct. This does not
10338 // apply to references, since they are not objects.
Eli Friedmand2cce132012-02-02 23:15:15 +000010339 const VarDecl *DefVD;
Richard Smith16581332012-03-02 04:14:40 +000010340 if (E && !isa<ParmVarDecl>(Var) && !Var->getType()->isReferenceType() &&
Daniel Dunbar3d13c5a2012-03-09 01:51:51 +000010341 Var->isUsableInConstantExpressions(SemaRef.Context) &&
Eli Friedmand2cce132012-02-02 23:15:15 +000010342 Var->getAnyInitializer(DefVD) && DefVD->checkInitIsICE())
10343 SemaRef.MaybeODRUseExprs.insert(E);
10344 else
10345 MarkVarDeclODRUsed(SemaRef, Var, Loc);
10346}
Eli Friedman5f2987c2012-02-02 03:46:19 +000010347
Eli Friedmand2cce132012-02-02 23:15:15 +000010348/// \brief Mark a variable referenced, and check whether it is odr-used
10349/// (C++ [basic.def.odr]p2, C99 6.9p3). Note that this should not be
10350/// used directly for normal expressions referring to VarDecl.
10351void Sema::MarkVariableReferenced(SourceLocation Loc, VarDecl *Var) {
10352 DoMarkVarDeclReferenced(*this, Loc, Var, 0);
Eli Friedman5f2987c2012-02-02 03:46:19 +000010353}
10354
10355static void MarkExprReferenced(Sema &SemaRef, SourceLocation Loc,
10356 Decl *D, Expr *E) {
Eli Friedmand2cce132012-02-02 23:15:15 +000010357 if (VarDecl *Var = dyn_cast<VarDecl>(D)) {
10358 DoMarkVarDeclReferenced(SemaRef, Loc, Var, E);
10359 return;
10360 }
10361
Eli Friedman5f2987c2012-02-02 03:46:19 +000010362 SemaRef.MarkAnyDeclReferenced(Loc, D);
Douglas Gregorf6e2e022012-02-16 01:06:16 +000010363}
Eli Friedman5f2987c2012-02-02 03:46:19 +000010364
Eli Friedman5f2987c2012-02-02 03:46:19 +000010365/// \brief Perform reference-marking and odr-use handling for a DeclRefExpr.
10366void Sema::MarkDeclRefReferenced(DeclRefExpr *E) {
10367 MarkExprReferenced(*this, E->getLocation(), E->getDecl(), E);
10368}
10369
10370/// \brief Perform reference-marking and odr-use handling for a MemberExpr.
10371void Sema::MarkMemberReferenced(MemberExpr *E) {
10372 MarkExprReferenced(*this, E->getMemberLoc(), E->getMemberDecl(), E);
10373}
10374
Douglas Gregor73d90922012-02-10 09:26:04 +000010375/// \brief Perform marking for a reference to an arbitrary declaration. It
Eli Friedman5f2987c2012-02-02 03:46:19 +000010376/// marks the declaration referenced, and performs odr-use checking for functions
10377/// and variables. This method should not be used when building an normal
10378/// expression which refers to a variable.
10379void Sema::MarkAnyDeclReferenced(SourceLocation Loc, Decl *D) {
10380 if (VarDecl *VD = dyn_cast<VarDecl>(D))
10381 MarkVariableReferenced(Loc, VD);
10382 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
10383 MarkFunctionReferenced(Loc, FD);
10384 else
10385 D->setReferenced();
Douglas Gregore0762c92009-06-19 23:52:42 +000010386}
Anders Carlsson8c8d9192009-10-09 23:51:55 +000010387
Douglas Gregorb4eeaff2010-05-07 23:12:07 +000010388namespace {
Chandler Carruthdfc35e32010-06-09 08:17:30 +000010389 // Mark all of the declarations referenced
Douglas Gregorb4eeaff2010-05-07 23:12:07 +000010390 // FIXME: Not fully implemented yet! We need to have a better understanding
Chandler Carruthdfc35e32010-06-09 08:17:30 +000010391 // of when we're entering
Douglas Gregorb4eeaff2010-05-07 23:12:07 +000010392 class MarkReferencedDecls : public RecursiveASTVisitor<MarkReferencedDecls> {
10393 Sema &S;
10394 SourceLocation Loc;
Chandler Carruthdfc35e32010-06-09 08:17:30 +000010395
Douglas Gregorb4eeaff2010-05-07 23:12:07 +000010396 public:
10397 typedef RecursiveASTVisitor<MarkReferencedDecls> Inherited;
Chandler Carruthdfc35e32010-06-09 08:17:30 +000010398
Douglas Gregorb4eeaff2010-05-07 23:12:07 +000010399 MarkReferencedDecls(Sema &S, SourceLocation Loc) : S(S), Loc(Loc) { }
Chandler Carruthdfc35e32010-06-09 08:17:30 +000010400
10401 bool TraverseTemplateArgument(const TemplateArgument &Arg);
10402 bool TraverseRecordType(RecordType *T);
Douglas Gregorb4eeaff2010-05-07 23:12:07 +000010403 };
10404}
10405
Chandler Carruthdfc35e32010-06-09 08:17:30 +000010406bool MarkReferencedDecls::TraverseTemplateArgument(
10407 const TemplateArgument &Arg) {
Douglas Gregorb4eeaff2010-05-07 23:12:07 +000010408 if (Arg.getKind() == TemplateArgument::Declaration) {
Eli Friedman5f2987c2012-02-02 03:46:19 +000010409 S.MarkAnyDeclReferenced(Loc, Arg.getAsDecl());
Douglas Gregorb4eeaff2010-05-07 23:12:07 +000010410 }
Chandler Carruthdfc35e32010-06-09 08:17:30 +000010411
10412 return Inherited::TraverseTemplateArgument(Arg);
Douglas Gregorb4eeaff2010-05-07 23:12:07 +000010413}
10414
Chandler Carruthdfc35e32010-06-09 08:17:30 +000010415bool MarkReferencedDecls::TraverseRecordType(RecordType *T) {
Douglas Gregorb4eeaff2010-05-07 23:12:07 +000010416 if (ClassTemplateSpecializationDecl *Spec
10417 = dyn_cast<ClassTemplateSpecializationDecl>(T->getDecl())) {
10418 const TemplateArgumentList &Args = Spec->getTemplateArgs();
Douglas Gregor910f8002010-11-07 23:05:16 +000010419 return TraverseTemplateArguments(Args.data(), Args.size());
Douglas Gregorb4eeaff2010-05-07 23:12:07 +000010420 }
10421
Chandler Carruthe3e210c2010-06-10 10:31:57 +000010422 return true;
Douglas Gregorb4eeaff2010-05-07 23:12:07 +000010423}
10424
10425void Sema::MarkDeclarationsReferencedInType(SourceLocation Loc, QualType T) {
10426 MarkReferencedDecls Marker(*this, Loc);
Chandler Carruthdfc35e32010-06-09 08:17:30 +000010427 Marker.TraverseType(Context.getCanonicalType(T));
Douglas Gregorb4eeaff2010-05-07 23:12:07 +000010428}
10429
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +000010430namespace {
10431 /// \brief Helper class that marks all of the declarations referenced by
10432 /// potentially-evaluated subexpressions as "referenced".
10433 class EvaluatedExprMarker : public EvaluatedExprVisitor<EvaluatedExprMarker> {
10434 Sema &S;
Douglas Gregorf4b7de12012-02-21 19:11:17 +000010435 bool SkipLocalVariables;
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +000010436
10437 public:
10438 typedef EvaluatedExprVisitor<EvaluatedExprMarker> Inherited;
10439
Douglas Gregorf4b7de12012-02-21 19:11:17 +000010440 EvaluatedExprMarker(Sema &S, bool SkipLocalVariables)
10441 : Inherited(S.Context), S(S), SkipLocalVariables(SkipLocalVariables) { }
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +000010442
10443 void VisitDeclRefExpr(DeclRefExpr *E) {
Douglas Gregorf4b7de12012-02-21 19:11:17 +000010444 // If we were asked not to visit local variables, don't.
10445 if (SkipLocalVariables) {
10446 if (VarDecl *VD = dyn_cast<VarDecl>(E->getDecl()))
10447 if (VD->hasLocalStorage())
10448 return;
10449 }
10450
Eli Friedman5f2987c2012-02-02 03:46:19 +000010451 S.MarkDeclRefReferenced(E);
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +000010452 }
10453
10454 void VisitMemberExpr(MemberExpr *E) {
Eli Friedman5f2987c2012-02-02 03:46:19 +000010455 S.MarkMemberReferenced(E);
Douglas Gregor4fcf5b22010-09-11 23:32:50 +000010456 Inherited::VisitMemberExpr(E);
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +000010457 }
10458
John McCall80ee6e82011-11-10 05:35:25 +000010459 void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) {
Eli Friedman5f2987c2012-02-02 03:46:19 +000010460 S.MarkFunctionReferenced(E->getLocStart(),
John McCall80ee6e82011-11-10 05:35:25 +000010461 const_cast<CXXDestructorDecl*>(E->getTemporary()->getDestructor()));
10462 Visit(E->getSubExpr());
10463 }
10464
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +000010465 void VisitCXXNewExpr(CXXNewExpr *E) {
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +000010466 if (E->getOperatorNew())
Eli Friedman5f2987c2012-02-02 03:46:19 +000010467 S.MarkFunctionReferenced(E->getLocStart(), E->getOperatorNew());
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +000010468 if (E->getOperatorDelete())
Eli Friedman5f2987c2012-02-02 03:46:19 +000010469 S.MarkFunctionReferenced(E->getLocStart(), E->getOperatorDelete());
Douglas Gregor4fcf5b22010-09-11 23:32:50 +000010470 Inherited::VisitCXXNewExpr(E);
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +000010471 }
Sebastian Redl2aed8b82012-02-16 12:22:20 +000010472
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +000010473 void VisitCXXDeleteExpr(CXXDeleteExpr *E) {
10474 if (E->getOperatorDelete())
Eli Friedman5f2987c2012-02-02 03:46:19 +000010475 S.MarkFunctionReferenced(E->getLocStart(), E->getOperatorDelete());
Douglas Gregor5833b0b2010-09-14 22:55:20 +000010476 QualType Destroyed = S.Context.getBaseElementType(E->getDestroyedType());
10477 if (const RecordType *DestroyedRec = Destroyed->getAs<RecordType>()) {
10478 CXXRecordDecl *Record = cast<CXXRecordDecl>(DestroyedRec->getDecl());
Eli Friedman5f2987c2012-02-02 03:46:19 +000010479 S.MarkFunctionReferenced(E->getLocStart(),
Douglas Gregor5833b0b2010-09-14 22:55:20 +000010480 S.LookupDestructor(Record));
10481 }
10482
Douglas Gregor4fcf5b22010-09-11 23:32:50 +000010483 Inherited::VisitCXXDeleteExpr(E);
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +000010484 }
10485
10486 void VisitCXXConstructExpr(CXXConstructExpr *E) {
Eli Friedman5f2987c2012-02-02 03:46:19 +000010487 S.MarkFunctionReferenced(E->getLocStart(), E->getConstructor());
Douglas Gregor4fcf5b22010-09-11 23:32:50 +000010488 Inherited::VisitCXXConstructExpr(E);
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +000010489 }
10490
Douglas Gregor102ff972010-10-19 17:17:35 +000010491 void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *E) {
10492 Visit(E->getExpr());
10493 }
Eli Friedmand2cce132012-02-02 23:15:15 +000010494
10495 void VisitImplicitCastExpr(ImplicitCastExpr *E) {
10496 Inherited::VisitImplicitCastExpr(E);
10497
10498 if (E->getCastKind() == CK_LValueToRValue)
10499 S.UpdateMarkingForLValueToRValue(E->getSubExpr());
10500 }
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +000010501 };
10502}
10503
10504/// \brief Mark any declarations that appear within this expression or any
10505/// potentially-evaluated subexpressions as "referenced".
Douglas Gregorf4b7de12012-02-21 19:11:17 +000010506///
10507/// \param SkipLocalVariables If true, don't mark local variables as
10508/// 'referenced'.
10509void Sema::MarkDeclarationsReferencedInExpr(Expr *E,
10510 bool SkipLocalVariables) {
10511 EvaluatedExprMarker(*this, SkipLocalVariables).Visit(E);
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +000010512}
10513
Douglas Gregor1c7c3fb2009-12-22 01:01:55 +000010514/// \brief Emit a diagnostic that describes an effect on the run-time behavior
10515/// of the program being compiled.
10516///
10517/// This routine emits the given diagnostic when the code currently being
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +000010518/// type-checked is "potentially evaluated", meaning that there is a
Douglas Gregor1c7c3fb2009-12-22 01:01:55 +000010519/// possibility that the code will actually be executable. Code in sizeof()
10520/// expressions, code used only during overload resolution, etc., are not
10521/// potentially evaluated. This routine will suppress such diagnostics or,
10522/// in the absolutely nutty case of potentially potentially evaluated
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +000010523/// expressions (C++ typeid), queue the diagnostic to potentially emit it
Douglas Gregor1c7c3fb2009-12-22 01:01:55 +000010524/// later.
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +000010525///
Douglas Gregor1c7c3fb2009-12-22 01:01:55 +000010526/// This routine should be used for all diagnostics that describe the run-time
10527/// behavior of a program, such as passing a non-POD value through an ellipsis.
10528/// Failure to do so will likely result in spurious diagnostics or failures
10529/// during overload resolution or within sizeof/alignof/typeof/typeid.
Richard Trieuccd891a2011-09-09 01:45:06 +000010530bool Sema::DiagRuntimeBehavior(SourceLocation Loc, const Stmt *Statement,
Douglas Gregor1c7c3fb2009-12-22 01:01:55 +000010531 const PartialDiagnostic &PD) {
John McCallf85e1932011-06-15 23:02:42 +000010532 switch (ExprEvalContexts.back().Context) {
Douglas Gregor1c7c3fb2009-12-22 01:01:55 +000010533 case Unevaluated:
10534 // The argument will never be evaluated, so don't complain.
10535 break;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +000010536
Richard Smithf6702a32011-12-20 02:08:33 +000010537 case ConstantEvaluated:
10538 // Relevant diagnostics should be produced by constant evaluation.
10539 break;
10540
Douglas Gregor1c7c3fb2009-12-22 01:01:55 +000010541 case PotentiallyEvaluated:
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +000010542 case PotentiallyEvaluatedIfUsed:
Richard Trieuccd891a2011-09-09 01:45:06 +000010543 if (Statement && getCurFunctionOrMethodDecl()) {
Ted Kremenek351ba912011-02-23 01:52:04 +000010544 FunctionScopes.back()->PossiblyUnreachableDiags.
Richard Trieuccd891a2011-09-09 01:45:06 +000010545 push_back(sema::PossiblyUnreachableDiag(PD, Loc, Statement));
Ted Kremenek351ba912011-02-23 01:52:04 +000010546 }
10547 else
10548 Diag(Loc, PD);
10549
Douglas Gregor1c7c3fb2009-12-22 01:01:55 +000010550 return true;
Douglas Gregor1c7c3fb2009-12-22 01:01:55 +000010551 }
10552
10553 return false;
10554}
10555
Anders Carlsson8c8d9192009-10-09 23:51:55 +000010556bool Sema::CheckCallReturnType(QualType ReturnType, SourceLocation Loc,
10557 CallExpr *CE, FunctionDecl *FD) {
10558 if (ReturnType->isVoidType() || !ReturnType->isIncompleteType())
10559 return false;
10560
Richard Smith76f3f692012-02-22 02:04:18 +000010561 // If we're inside a decltype's expression, don't check for a valid return
10562 // type or construct temporaries until we know whether this is the last call.
10563 if (ExprEvalContexts.back().IsDecltype) {
10564 ExprEvalContexts.back().DelayedDecltypeCalls.push_back(CE);
10565 return false;
10566 }
10567
Anders Carlsson8c8d9192009-10-09 23:51:55 +000010568 PartialDiagnostic Note =
10569 FD ? PDiag(diag::note_function_with_incomplete_return_type_declared_here)
10570 << FD->getDeclName() : PDiag();
10571 SourceLocation NoteLoc = FD ? FD->getLocation() : SourceLocation();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +000010572
Anders Carlsson8c8d9192009-10-09 23:51:55 +000010573 if (RequireCompleteType(Loc, ReturnType,
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +000010574 FD ?
Anders Carlsson8c8d9192009-10-09 23:51:55 +000010575 PDiag(diag::err_call_function_incomplete_return)
10576 << CE->getSourceRange() << FD->getDeclName() :
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +000010577 PDiag(diag::err_call_incomplete_return)
Anders Carlsson8c8d9192009-10-09 23:51:55 +000010578 << CE->getSourceRange(),
10579 std::make_pair(NoteLoc, Note)))
10580 return true;
10581
10582 return false;
10583}
10584
Douglas Gregor92c3a042011-01-19 16:50:08 +000010585// Diagnose the s/=/==/ and s/\|=/!=/ typos. Note that adding parentheses
John McCall5a881bb2009-10-12 21:59:07 +000010586// will prevent this condition from triggering, which is what we want.
10587void Sema::DiagnoseAssignmentAsCondition(Expr *E) {
10588 SourceLocation Loc;
10589
John McCalla52ef082009-11-11 02:41:58 +000010590 unsigned diagnostic = diag::warn_condition_is_assignment;
Douglas Gregor92c3a042011-01-19 16:50:08 +000010591 bool IsOrAssign = false;
John McCalla52ef082009-11-11 02:41:58 +000010592
Chandler Carruthb33c19f2011-08-16 22:30:10 +000010593 if (BinaryOperator *Op = dyn_cast<BinaryOperator>(E)) {
Douglas Gregor92c3a042011-01-19 16:50:08 +000010594 if (Op->getOpcode() != BO_Assign && Op->getOpcode() != BO_OrAssign)
John McCall5a881bb2009-10-12 21:59:07 +000010595 return;
10596
Douglas Gregor92c3a042011-01-19 16:50:08 +000010597 IsOrAssign = Op->getOpcode() == BO_OrAssign;
10598
John McCallc8d8ac52009-11-12 00:06:05 +000010599 // Greylist some idioms by putting them into a warning subcategory.
10600 if (ObjCMessageExpr *ME
10601 = dyn_cast<ObjCMessageExpr>(Op->getRHS()->IgnoreParenCasts())) {
10602 Selector Sel = ME->getSelector();
10603
John McCallc8d8ac52009-11-12 00:06:05 +000010604 // self = [<foo> init...]
Douglas Gregorc737acb2011-09-27 16:10:05 +000010605 if (isSelfExpr(Op->getLHS()) && Sel.getNameForSlot(0).startswith("init"))
John McCallc8d8ac52009-11-12 00:06:05 +000010606 diagnostic = diag::warn_condition_is_idiomatic_assignment;
10607
10608 // <foo> = [<bar> nextObject]
Douglas Gregor813d8342011-02-18 22:29:55 +000010609 else if (Sel.isUnarySelector() && Sel.getNameForSlot(0) == "nextObject")
John McCallc8d8ac52009-11-12 00:06:05 +000010610 diagnostic = diag::warn_condition_is_idiomatic_assignment;
10611 }
John McCalla52ef082009-11-11 02:41:58 +000010612
John McCall5a881bb2009-10-12 21:59:07 +000010613 Loc = Op->getOperatorLoc();
Chandler Carruthb33c19f2011-08-16 22:30:10 +000010614 } else if (CXXOperatorCallExpr *Op = dyn_cast<CXXOperatorCallExpr>(E)) {
Douglas Gregor92c3a042011-01-19 16:50:08 +000010615 if (Op->getOperator() != OO_Equal && Op->getOperator() != OO_PipeEqual)
John McCall5a881bb2009-10-12 21:59:07 +000010616 return;
10617
Douglas Gregor92c3a042011-01-19 16:50:08 +000010618 IsOrAssign = Op->getOperator() == OO_PipeEqual;
John McCall5a881bb2009-10-12 21:59:07 +000010619 Loc = Op->getOperatorLoc();
10620 } else {
10621 // Not an assignment.
10622 return;
10623 }
10624
Douglas Gregor55b38842010-04-14 16:09:52 +000010625 Diag(Loc, diagnostic) << E->getSourceRange();
Douglas Gregor92c3a042011-01-19 16:50:08 +000010626
Daniel Dunbar96a00142012-03-09 18:35:03 +000010627 SourceLocation Open = E->getLocStart();
Argyrios Kyrtzidisabdd3b32011-04-25 23:01:29 +000010628 SourceLocation Close = PP.getLocForEndOfToken(E->getSourceRange().getEnd());
10629 Diag(Loc, diag::note_condition_assign_silence)
10630 << FixItHint::CreateInsertion(Open, "(")
10631 << FixItHint::CreateInsertion(Close, ")");
10632
Douglas Gregor92c3a042011-01-19 16:50:08 +000010633 if (IsOrAssign)
10634 Diag(Loc, diag::note_condition_or_assign_to_comparison)
10635 << FixItHint::CreateReplacement(Loc, "!=");
10636 else
10637 Diag(Loc, diag::note_condition_assign_to_comparison)
10638 << FixItHint::CreateReplacement(Loc, "==");
John McCall5a881bb2009-10-12 21:59:07 +000010639}
10640
Argyrios Kyrtzidis0e2dc3a2011-02-01 18:24:22 +000010641/// \brief Redundant parentheses over an equality comparison can indicate
10642/// that the user intended an assignment used as condition.
Richard Trieuccd891a2011-09-09 01:45:06 +000010643void Sema::DiagnoseEqualityWithExtraParens(ParenExpr *ParenE) {
Argyrios Kyrtzidiscf1620a2011-02-01 22:23:56 +000010644 // Don't warn if the parens came from a macro.
Richard Trieuccd891a2011-09-09 01:45:06 +000010645 SourceLocation parenLoc = ParenE->getLocStart();
Argyrios Kyrtzidiscf1620a2011-02-01 22:23:56 +000010646 if (parenLoc.isInvalid() || parenLoc.isMacroID())
10647 return;
Argyrios Kyrtzidis170a6a22011-03-28 23:52:04 +000010648 // Don't warn for dependent expressions.
Richard Trieuccd891a2011-09-09 01:45:06 +000010649 if (ParenE->isTypeDependent())
Argyrios Kyrtzidis170a6a22011-03-28 23:52:04 +000010650 return;
Argyrios Kyrtzidiscf1620a2011-02-01 22:23:56 +000010651
Richard Trieuccd891a2011-09-09 01:45:06 +000010652 Expr *E = ParenE->IgnoreParens();
Argyrios Kyrtzidis0e2dc3a2011-02-01 18:24:22 +000010653
10654 if (BinaryOperator *opE = dyn_cast<BinaryOperator>(E))
Argyrios Kyrtzidis70f23302011-02-01 19:32:59 +000010655 if (opE->getOpcode() == BO_EQ &&
10656 opE->getLHS()->IgnoreParenImpCasts()->isModifiableLvalue(Context)
10657 == Expr::MLV_Valid) {
Argyrios Kyrtzidis0e2dc3a2011-02-01 18:24:22 +000010658 SourceLocation Loc = opE->getOperatorLoc();
Ted Kremenek006ae382011-02-01 22:36:09 +000010659
Ted Kremenekf7275cd2011-02-02 02:20:30 +000010660 Diag(Loc, diag::warn_equality_with_extra_parens) << E->getSourceRange();
Daniel Dunbar96a00142012-03-09 18:35:03 +000010661 SourceRange ParenERange = ParenE->getSourceRange();
Ted Kremenekf7275cd2011-02-02 02:20:30 +000010662 Diag(Loc, diag::note_equality_comparison_silence)
Daniel Dunbar96a00142012-03-09 18:35:03 +000010663 << FixItHint::CreateRemoval(ParenERange.getBegin())
10664 << FixItHint::CreateRemoval(ParenERange.getEnd());
Argyrios Kyrtzidisabdd3b32011-04-25 23:01:29 +000010665 Diag(Loc, diag::note_equality_comparison_to_assign)
10666 << FixItHint::CreateReplacement(Loc, "=");
Argyrios Kyrtzidis0e2dc3a2011-02-01 18:24:22 +000010667 }
10668}
10669
John Wiegley429bb272011-04-08 18:41:53 +000010670ExprResult Sema::CheckBooleanCondition(Expr *E, SourceLocation Loc) {
John McCall5a881bb2009-10-12 21:59:07 +000010671 DiagnoseAssignmentAsCondition(E);
Argyrios Kyrtzidis0e2dc3a2011-02-01 18:24:22 +000010672 if (ParenExpr *parenE = dyn_cast<ParenExpr>(E))
10673 DiagnoseEqualityWithExtraParens(parenE);
John McCall5a881bb2009-10-12 21:59:07 +000010674
John McCall864c0412011-04-26 20:42:42 +000010675 ExprResult result = CheckPlaceholderExpr(E);
10676 if (result.isInvalid()) return ExprError();
10677 E = result.take();
Argyrios Kyrtzidis11ab7902010-11-01 18:49:26 +000010678
John McCall864c0412011-04-26 20:42:42 +000010679 if (!E->isTypeDependent()) {
David Blaikie4e4d0842012-03-11 07:00:24 +000010680 if (getLangOpts().CPlusPlus)
John McCallf6a16482010-12-04 03:47:34 +000010681 return CheckCXXBooleanCondition(E); // C++ 6.4p4
10682
John Wiegley429bb272011-04-08 18:41:53 +000010683 ExprResult ERes = DefaultFunctionArrayLvalueConversion(E);
10684 if (ERes.isInvalid())
10685 return ExprError();
10686 E = ERes.take();
John McCallabc56c72010-12-04 06:09:13 +000010687
10688 QualType T = E->getType();
John Wiegley429bb272011-04-08 18:41:53 +000010689 if (!T->isScalarType()) { // C99 6.8.4.1p1
10690 Diag(Loc, diag::err_typecheck_statement_requires_scalar)
10691 << T << E->getSourceRange();
10692 return ExprError();
10693 }
John McCall5a881bb2009-10-12 21:59:07 +000010694 }
10695
John Wiegley429bb272011-04-08 18:41:53 +000010696 return Owned(E);
John McCall5a881bb2009-10-12 21:59:07 +000010697}
Douglas Gregor586596f2010-05-06 17:25:47 +000010698
John McCall60d7b3a2010-08-24 06:29:42 +000010699ExprResult Sema::ActOnBooleanCondition(Scope *S, SourceLocation Loc,
Richard Trieuccd891a2011-09-09 01:45:06 +000010700 Expr *SubExpr) {
10701 if (!SubExpr)
Douglas Gregor586596f2010-05-06 17:25:47 +000010702 return ExprError();
John Wiegley429bb272011-04-08 18:41:53 +000010703
Richard Trieuccd891a2011-09-09 01:45:06 +000010704 return CheckBooleanCondition(SubExpr, Loc);
Douglas Gregor586596f2010-05-06 17:25:47 +000010705}
John McCall2a984ca2010-10-12 00:20:44 +000010706
John McCall1de4d4e2011-04-07 08:22:57 +000010707namespace {
John McCall755d8492011-04-12 00:42:48 +000010708 /// A visitor for rebuilding a call to an __unknown_any expression
10709 /// to have an appropriate type.
10710 struct RebuildUnknownAnyFunction
10711 : StmtVisitor<RebuildUnknownAnyFunction, ExprResult> {
10712
10713 Sema &S;
10714
10715 RebuildUnknownAnyFunction(Sema &S) : S(S) {}
10716
10717 ExprResult VisitStmt(Stmt *S) {
10718 llvm_unreachable("unexpected statement!");
John McCall755d8492011-04-12 00:42:48 +000010719 }
10720
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010721 ExprResult VisitExpr(Expr *E) {
10722 S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_call)
10723 << E->getSourceRange();
John McCall755d8492011-04-12 00:42:48 +000010724 return ExprError();
10725 }
10726
10727 /// Rebuild an expression which simply semantically wraps another
10728 /// expression which it shares the type and value kind of.
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010729 template <class T> ExprResult rebuildSugarExpr(T *E) {
10730 ExprResult SubResult = Visit(E->getSubExpr());
10731 if (SubResult.isInvalid()) return ExprError();
John McCall755d8492011-04-12 00:42:48 +000010732
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010733 Expr *SubExpr = SubResult.take();
10734 E->setSubExpr(SubExpr);
10735 E->setType(SubExpr->getType());
10736 E->setValueKind(SubExpr->getValueKind());
10737 assert(E->getObjectKind() == OK_Ordinary);
10738 return E;
John McCall755d8492011-04-12 00:42:48 +000010739 }
10740
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010741 ExprResult VisitParenExpr(ParenExpr *E) {
10742 return rebuildSugarExpr(E);
John McCall755d8492011-04-12 00:42:48 +000010743 }
10744
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010745 ExprResult VisitUnaryExtension(UnaryOperator *E) {
10746 return rebuildSugarExpr(E);
John McCall755d8492011-04-12 00:42:48 +000010747 }
10748
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010749 ExprResult VisitUnaryAddrOf(UnaryOperator *E) {
10750 ExprResult SubResult = Visit(E->getSubExpr());
10751 if (SubResult.isInvalid()) return ExprError();
John McCall755d8492011-04-12 00:42:48 +000010752
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010753 Expr *SubExpr = SubResult.take();
10754 E->setSubExpr(SubExpr);
10755 E->setType(S.Context.getPointerType(SubExpr->getType()));
10756 assert(E->getValueKind() == VK_RValue);
10757 assert(E->getObjectKind() == OK_Ordinary);
10758 return E;
John McCall755d8492011-04-12 00:42:48 +000010759 }
10760
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010761 ExprResult resolveDecl(Expr *E, ValueDecl *VD) {
10762 if (!isa<FunctionDecl>(VD)) return VisitExpr(E);
John McCall755d8492011-04-12 00:42:48 +000010763
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010764 E->setType(VD->getType());
John McCall755d8492011-04-12 00:42:48 +000010765
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010766 assert(E->getValueKind() == VK_RValue);
David Blaikie4e4d0842012-03-11 07:00:24 +000010767 if (S.getLangOpts().CPlusPlus &&
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010768 !(isa<CXXMethodDecl>(VD) &&
10769 cast<CXXMethodDecl>(VD)->isInstance()))
10770 E->setValueKind(VK_LValue);
John McCall755d8492011-04-12 00:42:48 +000010771
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010772 return E;
John McCall755d8492011-04-12 00:42:48 +000010773 }
10774
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010775 ExprResult VisitMemberExpr(MemberExpr *E) {
10776 return resolveDecl(E, E->getMemberDecl());
John McCall755d8492011-04-12 00:42:48 +000010777 }
10778
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010779 ExprResult VisitDeclRefExpr(DeclRefExpr *E) {
10780 return resolveDecl(E, E->getDecl());
John McCall755d8492011-04-12 00:42:48 +000010781 }
10782 };
10783}
10784
10785/// Given a function expression of unknown-any type, try to rebuild it
10786/// to have a function type.
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010787static ExprResult rebuildUnknownAnyFunction(Sema &S, Expr *FunctionExpr) {
10788 ExprResult Result = RebuildUnknownAnyFunction(S).Visit(FunctionExpr);
10789 if (Result.isInvalid()) return ExprError();
10790 return S.DefaultFunctionArrayConversion(Result.take());
John McCall755d8492011-04-12 00:42:48 +000010791}
10792
10793namespace {
John McCall379b5152011-04-11 07:02:50 +000010794 /// A visitor for rebuilding an expression of type __unknown_anytype
10795 /// into one which resolves the type directly on the referring
10796 /// expression. Strict preservation of the original source
10797 /// structure is not a goal.
John McCall1de4d4e2011-04-07 08:22:57 +000010798 struct RebuildUnknownAnyExpr
John McCalla5fc4722011-04-09 22:50:59 +000010799 : StmtVisitor<RebuildUnknownAnyExpr, ExprResult> {
John McCall1de4d4e2011-04-07 08:22:57 +000010800
10801 Sema &S;
10802
10803 /// The current destination type.
10804 QualType DestType;
10805
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010806 RebuildUnknownAnyExpr(Sema &S, QualType CastType)
10807 : S(S), DestType(CastType) {}
John McCall1de4d4e2011-04-07 08:22:57 +000010808
John McCalla5fc4722011-04-09 22:50:59 +000010809 ExprResult VisitStmt(Stmt *S) {
John McCall379b5152011-04-11 07:02:50 +000010810 llvm_unreachable("unexpected statement!");
John McCall1de4d4e2011-04-07 08:22:57 +000010811 }
10812
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010813 ExprResult VisitExpr(Expr *E) {
10814 S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_expr)
10815 << E->getSourceRange();
John McCall379b5152011-04-11 07:02:50 +000010816 return ExprError();
John McCall1de4d4e2011-04-07 08:22:57 +000010817 }
10818
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010819 ExprResult VisitCallExpr(CallExpr *E);
10820 ExprResult VisitObjCMessageExpr(ObjCMessageExpr *E);
John McCall379b5152011-04-11 07:02:50 +000010821
John McCalla5fc4722011-04-09 22:50:59 +000010822 /// Rebuild an expression which simply semantically wraps another
10823 /// expression which it shares the type and value kind of.
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010824 template <class T> ExprResult rebuildSugarExpr(T *E) {
10825 ExprResult SubResult = Visit(E->getSubExpr());
10826 if (SubResult.isInvalid()) return ExprError();
10827 Expr *SubExpr = SubResult.take();
10828 E->setSubExpr(SubExpr);
10829 E->setType(SubExpr->getType());
10830 E->setValueKind(SubExpr->getValueKind());
10831 assert(E->getObjectKind() == OK_Ordinary);
10832 return E;
John McCalla5fc4722011-04-09 22:50:59 +000010833 }
John McCall1de4d4e2011-04-07 08:22:57 +000010834
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010835 ExprResult VisitParenExpr(ParenExpr *E) {
10836 return rebuildSugarExpr(E);
John McCalla5fc4722011-04-09 22:50:59 +000010837 }
10838
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010839 ExprResult VisitUnaryExtension(UnaryOperator *E) {
10840 return rebuildSugarExpr(E);
John McCalla5fc4722011-04-09 22:50:59 +000010841 }
10842
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010843 ExprResult VisitUnaryAddrOf(UnaryOperator *E) {
10844 const PointerType *Ptr = DestType->getAs<PointerType>();
10845 if (!Ptr) {
10846 S.Diag(E->getOperatorLoc(), diag::err_unknown_any_addrof)
10847 << E->getSourceRange();
John McCall755d8492011-04-12 00:42:48 +000010848 return ExprError();
10849 }
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010850 assert(E->getValueKind() == VK_RValue);
10851 assert(E->getObjectKind() == OK_Ordinary);
10852 E->setType(DestType);
John McCall755d8492011-04-12 00:42:48 +000010853
10854 // Build the sub-expression as if it were an object of the pointee type.
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010855 DestType = Ptr->getPointeeType();
10856 ExprResult SubResult = Visit(E->getSubExpr());
10857 if (SubResult.isInvalid()) return ExprError();
10858 E->setSubExpr(SubResult.take());
10859 return E;
John McCall755d8492011-04-12 00:42:48 +000010860 }
10861
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010862 ExprResult VisitImplicitCastExpr(ImplicitCastExpr *E);
John McCalla5fc4722011-04-09 22:50:59 +000010863
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010864 ExprResult resolveDecl(Expr *E, ValueDecl *VD);
John McCalla5fc4722011-04-09 22:50:59 +000010865
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010866 ExprResult VisitMemberExpr(MemberExpr *E) {
10867 return resolveDecl(E, E->getMemberDecl());
John McCall755d8492011-04-12 00:42:48 +000010868 }
John McCalla5fc4722011-04-09 22:50:59 +000010869
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010870 ExprResult VisitDeclRefExpr(DeclRefExpr *E) {
10871 return resolveDecl(E, E->getDecl());
John McCall1de4d4e2011-04-07 08:22:57 +000010872 }
10873 };
10874}
10875
John McCall379b5152011-04-11 07:02:50 +000010876/// Rebuilds a call expression which yielded __unknown_anytype.
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010877ExprResult RebuildUnknownAnyExpr::VisitCallExpr(CallExpr *E) {
10878 Expr *CalleeExpr = E->getCallee();
John McCall379b5152011-04-11 07:02:50 +000010879
10880 enum FnKind {
John McCallf5307512011-04-27 00:36:17 +000010881 FK_MemberFunction,
John McCall379b5152011-04-11 07:02:50 +000010882 FK_FunctionPointer,
10883 FK_BlockPointer
10884 };
10885
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010886 FnKind Kind;
10887 QualType CalleeType = CalleeExpr->getType();
10888 if (CalleeType == S.Context.BoundMemberTy) {
10889 assert(isa<CXXMemberCallExpr>(E) || isa<CXXOperatorCallExpr>(E));
10890 Kind = FK_MemberFunction;
10891 CalleeType = Expr::findBoundMemberType(CalleeExpr);
10892 } else if (const PointerType *Ptr = CalleeType->getAs<PointerType>()) {
10893 CalleeType = Ptr->getPointeeType();
10894 Kind = FK_FunctionPointer;
John McCall379b5152011-04-11 07:02:50 +000010895 } else {
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010896 CalleeType = CalleeType->castAs<BlockPointerType>()->getPointeeType();
10897 Kind = FK_BlockPointer;
John McCall379b5152011-04-11 07:02:50 +000010898 }
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010899 const FunctionType *FnType = CalleeType->castAs<FunctionType>();
John McCall379b5152011-04-11 07:02:50 +000010900
10901 // Verify that this is a legal result type of a function.
10902 if (DestType->isArrayType() || DestType->isFunctionType()) {
10903 unsigned diagID = diag::err_func_returning_array_function;
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010904 if (Kind == FK_BlockPointer)
John McCall379b5152011-04-11 07:02:50 +000010905 diagID = diag::err_block_returning_array_function;
10906
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010907 S.Diag(E->getExprLoc(), diagID)
John McCall379b5152011-04-11 07:02:50 +000010908 << DestType->isFunctionType() << DestType;
10909 return ExprError();
10910 }
10911
10912 // Otherwise, go ahead and set DestType as the call's result.
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010913 E->setType(DestType.getNonLValueExprType(S.Context));
10914 E->setValueKind(Expr::getValueKindForType(DestType));
10915 assert(E->getObjectKind() == OK_Ordinary);
John McCall379b5152011-04-11 07:02:50 +000010916
10917 // Rebuild the function type, replacing the result type with DestType.
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010918 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FnType))
John McCall379b5152011-04-11 07:02:50 +000010919 DestType = S.Context.getFunctionType(DestType,
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010920 Proto->arg_type_begin(),
10921 Proto->getNumArgs(),
10922 Proto->getExtProtoInfo());
John McCall379b5152011-04-11 07:02:50 +000010923 else
10924 DestType = S.Context.getFunctionNoProtoType(DestType,
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010925 FnType->getExtInfo());
John McCall379b5152011-04-11 07:02:50 +000010926
10927 // Rebuild the appropriate pointer-to-function type.
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010928 switch (Kind) {
John McCallf5307512011-04-27 00:36:17 +000010929 case FK_MemberFunction:
John McCall379b5152011-04-11 07:02:50 +000010930 // Nothing to do.
10931 break;
10932
10933 case FK_FunctionPointer:
10934 DestType = S.Context.getPointerType(DestType);
10935 break;
10936
10937 case FK_BlockPointer:
10938 DestType = S.Context.getBlockPointerType(DestType);
10939 break;
10940 }
10941
10942 // Finally, we can recurse.
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010943 ExprResult CalleeResult = Visit(CalleeExpr);
10944 if (!CalleeResult.isUsable()) return ExprError();
10945 E->setCallee(CalleeResult.take());
John McCall379b5152011-04-11 07:02:50 +000010946
10947 // Bind a temporary if necessary.
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010948 return S.MaybeBindToTemporary(E);
John McCall379b5152011-04-11 07:02:50 +000010949}
10950
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010951ExprResult RebuildUnknownAnyExpr::VisitObjCMessageExpr(ObjCMessageExpr *E) {
John McCall755d8492011-04-12 00:42:48 +000010952 // Verify that this is a legal result type of a call.
10953 if (DestType->isArrayType() || DestType->isFunctionType()) {
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010954 S.Diag(E->getExprLoc(), diag::err_func_returning_array_function)
John McCall755d8492011-04-12 00:42:48 +000010955 << DestType->isFunctionType() << DestType;
10956 return ExprError();
John McCall379b5152011-04-11 07:02:50 +000010957 }
10958
John McCall48218c62011-07-13 17:56:40 +000010959 // Rewrite the method result type if available.
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010960 if (ObjCMethodDecl *Method = E->getMethodDecl()) {
10961 assert(Method->getResultType() == S.Context.UnknownAnyTy);
10962 Method->setResultType(DestType);
John McCall48218c62011-07-13 17:56:40 +000010963 }
John McCall755d8492011-04-12 00:42:48 +000010964
John McCall379b5152011-04-11 07:02:50 +000010965 // Change the type of the message.
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010966 E->setType(DestType.getNonReferenceType());
10967 E->setValueKind(Expr::getValueKindForType(DestType));
John McCall379b5152011-04-11 07:02:50 +000010968
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010969 return S.MaybeBindToTemporary(E);
John McCall379b5152011-04-11 07:02:50 +000010970}
10971
Richard Trieu5e4c80b2011-09-09 03:59:41 +000010972ExprResult RebuildUnknownAnyExpr::VisitImplicitCastExpr(ImplicitCastExpr *E) {
John McCall755d8492011-04-12 00:42:48 +000010973 // The only case we should ever see here is a function-to-pointer decay.
Sean Callananba66c6c2012-03-06 23:12:57 +000010974 if (E->getCastKind() == CK_FunctionToPointerDecay) {
Sean Callanance9c8312012-03-06 21:34:12 +000010975 assert(E->getValueKind() == VK_RValue);
10976 assert(E->getObjectKind() == OK_Ordinary);
10977
10978 E->setType(DestType);
10979
10980 // Rebuild the sub-expression as the pointee (function) type.
10981 DestType = DestType->castAs<PointerType>()->getPointeeType();
10982
10983 ExprResult Result = Visit(E->getSubExpr());
10984 if (!Result.isUsable()) return ExprError();
10985
10986 E->setSubExpr(Result.take());
10987 return S.Owned(E);
Sean Callananba66c6c2012-03-06 23:12:57 +000010988 } else if (E->getCastKind() == CK_LValueToRValue) {
Sean Callanance9c8312012-03-06 21:34:12 +000010989 assert(E->getValueKind() == VK_RValue);
10990 assert(E->getObjectKind() == OK_Ordinary);
John McCall379b5152011-04-11 07:02:50 +000010991
Sean Callanance9c8312012-03-06 21:34:12 +000010992 assert(isa<BlockPointerType>(E->getType()));
John McCall755d8492011-04-12 00:42:48 +000010993
Sean Callanance9c8312012-03-06 21:34:12 +000010994 E->setType(DestType);
John McCall379b5152011-04-11 07:02:50 +000010995
Sean Callanance9c8312012-03-06 21:34:12 +000010996 // The sub-expression has to be a lvalue reference, so rebuild it as such.
10997 DestType = S.Context.getLValueReferenceType(DestType);
John McCall379b5152011-04-11 07:02:50 +000010998
Sean Callanance9c8312012-03-06 21:34:12 +000010999 ExprResult Result = Visit(E->getSubExpr());
11000 if (!Result.isUsable()) return ExprError();
11001
11002 E->setSubExpr(Result.take());
11003 return S.Owned(E);
Sean Callananba66c6c2012-03-06 23:12:57 +000011004 } else {
Sean Callanance9c8312012-03-06 21:34:12 +000011005 llvm_unreachable("Unhandled cast type!");
11006 }
John McCall379b5152011-04-11 07:02:50 +000011007}
11008
Richard Trieu5e4c80b2011-09-09 03:59:41 +000011009ExprResult RebuildUnknownAnyExpr::resolveDecl(Expr *E, ValueDecl *VD) {
11010 ExprValueKind ValueKind = VK_LValue;
11011 QualType Type = DestType;
John McCall379b5152011-04-11 07:02:50 +000011012
11013 // We know how to make this work for certain kinds of decls:
11014
11015 // - functions
Richard Trieu5e4c80b2011-09-09 03:59:41 +000011016 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(VD)) {
11017 if (const PointerType *Ptr = Type->getAs<PointerType>()) {
11018 DestType = Ptr->getPointeeType();
11019 ExprResult Result = resolveDecl(E, VD);
11020 if (Result.isInvalid()) return ExprError();
11021 return S.ImpCastExprToType(Result.take(), Type,
John McCalla19950e2011-08-10 04:12:23 +000011022 CK_FunctionToPointerDecay, VK_RValue);
11023 }
11024
Richard Trieu5e4c80b2011-09-09 03:59:41 +000011025 if (!Type->isFunctionType()) {
11026 S.Diag(E->getExprLoc(), diag::err_unknown_any_function)
11027 << VD << E->getSourceRange();
John McCalla19950e2011-08-10 04:12:23 +000011028 return ExprError();
11029 }
John McCall379b5152011-04-11 07:02:50 +000011030
Richard Trieu5e4c80b2011-09-09 03:59:41 +000011031 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD))
11032 if (MD->isInstance()) {
11033 ValueKind = VK_RValue;
11034 Type = S.Context.BoundMemberTy;
John McCallf5307512011-04-27 00:36:17 +000011035 }
11036
John McCall379b5152011-04-11 07:02:50 +000011037 // Function references aren't l-values in C.
David Blaikie4e4d0842012-03-11 07:00:24 +000011038 if (!S.getLangOpts().CPlusPlus)
Richard Trieu5e4c80b2011-09-09 03:59:41 +000011039 ValueKind = VK_RValue;
John McCall379b5152011-04-11 07:02:50 +000011040
11041 // - variables
Richard Trieu5e4c80b2011-09-09 03:59:41 +000011042 } else if (isa<VarDecl>(VD)) {
11043 if (const ReferenceType *RefTy = Type->getAs<ReferenceType>()) {
11044 Type = RefTy->getPointeeType();
11045 } else if (Type->isFunctionType()) {
11046 S.Diag(E->getExprLoc(), diag::err_unknown_any_var_function_type)
11047 << VD << E->getSourceRange();
John McCall755d8492011-04-12 00:42:48 +000011048 return ExprError();
John McCall379b5152011-04-11 07:02:50 +000011049 }
11050
11051 // - nothing else
11052 } else {
Richard Trieu5e4c80b2011-09-09 03:59:41 +000011053 S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_decl)
11054 << VD << E->getSourceRange();
John McCall379b5152011-04-11 07:02:50 +000011055 return ExprError();
11056 }
11057
Richard Trieu5e4c80b2011-09-09 03:59:41 +000011058 VD->setType(DestType);
11059 E->setType(Type);
11060 E->setValueKind(ValueKind);
11061 return S.Owned(E);
John McCall379b5152011-04-11 07:02:50 +000011062}
11063
John McCall1de4d4e2011-04-07 08:22:57 +000011064/// Check a cast of an unknown-any type. We intentionally only
11065/// trigger this for C-style casts.
Richard Trieuccd891a2011-09-09 01:45:06 +000011066ExprResult Sema::checkUnknownAnyCast(SourceRange TypeRange, QualType CastType,
11067 Expr *CastExpr, CastKind &CastKind,
11068 ExprValueKind &VK, CXXCastPath &Path) {
John McCall1de4d4e2011-04-07 08:22:57 +000011069 // Rewrite the casted expression from scratch.
Richard Trieuccd891a2011-09-09 01:45:06 +000011070 ExprResult result = RebuildUnknownAnyExpr(*this, CastType).Visit(CastExpr);
John McCalla5fc4722011-04-09 22:50:59 +000011071 if (!result.isUsable()) return ExprError();
John McCall1de4d4e2011-04-07 08:22:57 +000011072
Richard Trieuccd891a2011-09-09 01:45:06 +000011073 CastExpr = result.take();
11074 VK = CastExpr->getValueKind();
11075 CastKind = CK_NoOp;
John McCalla5fc4722011-04-09 22:50:59 +000011076
Richard Trieuccd891a2011-09-09 01:45:06 +000011077 return CastExpr;
John McCall1de4d4e2011-04-07 08:22:57 +000011078}
11079
Douglas Gregorf1d1ca52011-12-01 01:37:36 +000011080ExprResult Sema::forceUnknownAnyToType(Expr *E, QualType ToType) {
11081 return RebuildUnknownAnyExpr(*this, ToType).Visit(E);
11082}
11083
Richard Trieuccd891a2011-09-09 01:45:06 +000011084static ExprResult diagnoseUnknownAnyExpr(Sema &S, Expr *E) {
11085 Expr *orig = E;
John McCall379b5152011-04-11 07:02:50 +000011086 unsigned diagID = diag::err_uncasted_use_of_unknown_any;
John McCall1de4d4e2011-04-07 08:22:57 +000011087 while (true) {
Richard Trieuccd891a2011-09-09 01:45:06 +000011088 E = E->IgnoreParenImpCasts();
11089 if (CallExpr *call = dyn_cast<CallExpr>(E)) {
11090 E = call->getCallee();
John McCall379b5152011-04-11 07:02:50 +000011091 diagID = diag::err_uncasted_call_of_unknown_any;
11092 } else {
John McCall1de4d4e2011-04-07 08:22:57 +000011093 break;
John McCall379b5152011-04-11 07:02:50 +000011094 }
John McCall1de4d4e2011-04-07 08:22:57 +000011095 }
11096
John McCall379b5152011-04-11 07:02:50 +000011097 SourceLocation loc;
11098 NamedDecl *d;
Richard Trieuccd891a2011-09-09 01:45:06 +000011099 if (DeclRefExpr *ref = dyn_cast<DeclRefExpr>(E)) {
John McCall379b5152011-04-11 07:02:50 +000011100 loc = ref->getLocation();
11101 d = ref->getDecl();
Richard Trieuccd891a2011-09-09 01:45:06 +000011102 } else if (MemberExpr *mem = dyn_cast<MemberExpr>(E)) {
John McCall379b5152011-04-11 07:02:50 +000011103 loc = mem->getMemberLoc();
11104 d = mem->getMemberDecl();
Richard Trieuccd891a2011-09-09 01:45:06 +000011105 } else if (ObjCMessageExpr *msg = dyn_cast<ObjCMessageExpr>(E)) {
John McCall379b5152011-04-11 07:02:50 +000011106 diagID = diag::err_uncasted_call_of_unknown_any;
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +000011107 loc = msg->getSelectorStartLoc();
John McCall379b5152011-04-11 07:02:50 +000011108 d = msg->getMethodDecl();
John McCall819e7452011-08-31 20:57:36 +000011109 if (!d) {
11110 S.Diag(loc, diag::err_uncasted_send_to_unknown_any_method)
11111 << static_cast<unsigned>(msg->isClassMessage()) << msg->getSelector()
11112 << orig->getSourceRange();
11113 return ExprError();
11114 }
John McCall379b5152011-04-11 07:02:50 +000011115 } else {
Richard Trieuccd891a2011-09-09 01:45:06 +000011116 S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_expr)
11117 << E->getSourceRange();
John McCall379b5152011-04-11 07:02:50 +000011118 return ExprError();
11119 }
11120
11121 S.Diag(loc, diagID) << d << orig->getSourceRange();
John McCall1de4d4e2011-04-07 08:22:57 +000011122
11123 // Never recoverable.
11124 return ExprError();
11125}
11126
John McCall2a984ca2010-10-12 00:20:44 +000011127/// Check for operands with placeholder types and complain if found.
11128/// Returns true if there was an error and no recovery was possible.
John McCallfb8721c2011-04-10 19:13:55 +000011129ExprResult Sema::CheckPlaceholderExpr(Expr *E) {
John McCall5acb0c92011-10-17 18:40:02 +000011130 const BuiltinType *placeholderType = E->getType()->getAsPlaceholderType();
11131 if (!placeholderType) return Owned(E);
11132
11133 switch (placeholderType->getKind()) {
John McCall2a984ca2010-10-12 00:20:44 +000011134
John McCall1de4d4e2011-04-07 08:22:57 +000011135 // Overloaded expressions.
John McCall5acb0c92011-10-17 18:40:02 +000011136 case BuiltinType::Overload: {
John McCall6dbba4f2011-10-11 23:14:30 +000011137 // Try to resolve a single function template specialization.
11138 // This is obligatory.
11139 ExprResult result = Owned(E);
11140 if (ResolveAndFixSingleFunctionTemplateSpecialization(result, false)) {
11141 return result;
11142
11143 // If that failed, try to recover with a call.
11144 } else {
11145 tryToRecoverWithCall(result, PDiag(diag::err_ovl_unresolvable),
11146 /*complain*/ true);
11147 return result;
11148 }
11149 }
John McCall1de4d4e2011-04-07 08:22:57 +000011150
John McCall864c0412011-04-26 20:42:42 +000011151 // Bound member functions.
John McCall5acb0c92011-10-17 18:40:02 +000011152 case BuiltinType::BoundMember: {
John McCall6dbba4f2011-10-11 23:14:30 +000011153 ExprResult result = Owned(E);
11154 tryToRecoverWithCall(result, PDiag(diag::err_bound_member_function),
11155 /*complain*/ true);
11156 return result;
John McCall5acb0c92011-10-17 18:40:02 +000011157 }
11158
11159 // ARC unbridged casts.
11160 case BuiltinType::ARCUnbridgedCast: {
11161 Expr *realCast = stripARCUnbridgedCast(E);
11162 diagnoseARCUnbridgedCast(realCast);
11163 return Owned(realCast);
11164 }
John McCall864c0412011-04-26 20:42:42 +000011165
John McCall1de4d4e2011-04-07 08:22:57 +000011166 // Expressions of unknown type.
John McCall5acb0c92011-10-17 18:40:02 +000011167 case BuiltinType::UnknownAny:
John McCall1de4d4e2011-04-07 08:22:57 +000011168 return diagnoseUnknownAnyExpr(*this, E);
11169
John McCall3c3b7f92011-10-25 17:37:35 +000011170 // Pseudo-objects.
11171 case BuiltinType::PseudoObject:
11172 return checkPseudoObjectRValue(E);
11173
John McCalle0a22d02011-10-18 21:02:43 +000011174 // Everything else should be impossible.
11175#define BUILTIN_TYPE(Id, SingletonId) \
11176 case BuiltinType::Id:
11177#define PLACEHOLDER_TYPE(Id, SingletonId)
11178#include "clang/AST/BuiltinTypes.def"
John McCall5acb0c92011-10-17 18:40:02 +000011179 break;
11180 }
11181
11182 llvm_unreachable("invalid placeholder type!");
John McCall2a984ca2010-10-12 00:20:44 +000011183}
Richard Trieubb9b80c2011-04-21 21:44:26 +000011184
Richard Trieuccd891a2011-09-09 01:45:06 +000011185bool Sema::CheckCaseExpression(Expr *E) {
11186 if (E->isTypeDependent())
Richard Trieubb9b80c2011-04-21 21:44:26 +000011187 return true;
Richard Trieuccd891a2011-09-09 01:45:06 +000011188 if (E->isValueDependent() || E->isIntegerConstantExpr(Context))
11189 return E->getType()->isIntegralOrEnumerationType();
Richard Trieubb9b80c2011-04-21 21:44:26 +000011190 return false;
11191}
Ted Kremenekebcb57a2012-03-06 20:05:56 +000011192
11193/// ActOnObjCBoolLiteral - Parse {__objc_yes,__objc_no} literals.
11194ExprResult
11195Sema::ActOnObjCBoolLiteral(SourceLocation OpLoc, tok::TokenKind Kind) {
11196 assert((Kind == tok::kw___objc_yes || Kind == tok::kw___objc_no) &&
11197 "Unknown Objective-C Boolean value!");
11198 return Owned(new (Context) ObjCBoolLiteralExpr(Kind == tok::kw___objc_yes,
11199 Context.ObjCBuiltinBoolTy, OpLoc));
11200}